luci-app-travelmate: sync with travelmate 2.0.6
authorDirk Brenken <[email protected]>
Sun, 22 Aug 2021 07:19:15 +0000 (09:19 +0200)
committerDirk Brenken <[email protected]>
Sun, 22 Aug 2021 07:19:15 +0000 (09:19 +0200)
* a few (visual) fixes reported in the forum
* emphasize normal uplinks in blue, vpn uplinks in green
* sync translations

Signed-off-by: Dirk Brenken <[email protected]>
(cherry picked from commit f1d1e752b8b08b7803b6c027d9c44dded97d2a4c)
Signed-off-by: Dirk Brenken <[email protected]>
36 files changed:
applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js
applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js
applications/luci-app-travelmate/po/ar/travelmate.po
applications/luci-app-travelmate/po/bg/travelmate.po
applications/luci-app-travelmate/po/bn_BD/travelmate.po
applications/luci-app-travelmate/po/ca/travelmate.po
applications/luci-app-travelmate/po/cs/travelmate.po
applications/luci-app-travelmate/po/de/travelmate.po
applications/luci-app-travelmate/po/el/travelmate.po
applications/luci-app-travelmate/po/en/travelmate.po
applications/luci-app-travelmate/po/es/travelmate.po
applications/luci-app-travelmate/po/fi/travelmate.po
applications/luci-app-travelmate/po/fr/travelmate.po
applications/luci-app-travelmate/po/he/travelmate.po
applications/luci-app-travelmate/po/hi/travelmate.po
applications/luci-app-travelmate/po/hu/travelmate.po
applications/luci-app-travelmate/po/it/travelmate.po
applications/luci-app-travelmate/po/ja/travelmate.po
applications/luci-app-travelmate/po/ko/travelmate.po
applications/luci-app-travelmate/po/mr/travelmate.po
applications/luci-app-travelmate/po/ms/travelmate.po
applications/luci-app-travelmate/po/nb_NO/travelmate.po
applications/luci-app-travelmate/po/pl/travelmate.po
applications/luci-app-travelmate/po/pt/travelmate.po
applications/luci-app-travelmate/po/pt_BR/travelmate.po
applications/luci-app-travelmate/po/ro/travelmate.po
applications/luci-app-travelmate/po/ru/travelmate.po
applications/luci-app-travelmate/po/sk/travelmate.po
applications/luci-app-travelmate/po/sv/travelmate.po
applications/luci-app-travelmate/po/templates/travelmate.pot
applications/luci-app-travelmate/po/tr/travelmate.po
applications/luci-app-travelmate/po/uk/travelmate.po
applications/luci-app-travelmate/po/vi/travelmate.po
applications/luci-app-travelmate/po/zh_Hans/travelmate.po
applications/luci-app-travelmate/po/zh_Hant/travelmate.po
applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json

index 9dde97dd3476e415bbf317dcdbff37d2d920d11e..5b8f58e2982f6e33d4f1eaf14f04a9439e1ccb0d 100644 (file)
@@ -14,8 +14,9 @@ function handleAction(ev) {
        var ifaceValue;
        if (ev === 'restart') {
                ifaceValue = String(uci.get('travelmate', 'global', 'trm_iface') || 'trm_wwan');
-               return fs.exec('/sbin/ifup', [ifaceValue])
-                       .then(fs.exec('/etc/init.d/travelmate', ['restart']))
+               return fs.exec('/etc/init.d/travelmate', ['stop'])
+                       .then(fs.exec('/sbin/ifup', [ifaceValue]))
+                       .then(fs.exec('/etc/init.d/travelmate', ['start']))
        }
        if (ev === 'setup') {
                ifaceValue = String(uci.get('travelmate', 'global', 'trm_iface') || '');
@@ -132,7 +133,6 @@ function handleAction(ev) {
                                ])
                        ]);
                });
-               return;
        }
 }
 
@@ -156,7 +156,7 @@ return view.extend({
                pollData: poll.add(function () {
                        return L.resolveDefault(fs.stat('/tmp/trm_runtime.json'), null).then(function (res) {
                                var status = document.getElementById('status');
-                               if (res) {
+                               if (res && res.size > 0) {
                                        L.resolveDefault(fs.read_direct('/tmp/trm_runtime.json'), null).then(function (res) {
                                                if (res) {
                                                        var info = JSON.parse(res);
@@ -207,6 +207,11 @@ return view.extend({
                                                        }
                                                }
                                        });
+                               } else if (status) {
+                                       status.textContent = '-';
+                                       if (status.classList.contains("spinning")) {
+                                               status.classList.remove("spinning");
+                                       }
                                }
                        });
                }, 1);
index 53bc2ec5aa24f76774cdba0311acef536e4850dc..fbf146de2c7a032111bbf546699fae310b92c0cf 100644 (file)
@@ -167,11 +167,11 @@ function handleStatus() {
                                        if (res) {
                                                var info = JSON.parse(res);
                                                if (info) {
-                                                       var t_device, t_ssid, t_bssid, oldUplinkView, newUplinkView,
+                                                       var t_device, t_ssid, t_bssid, oldUplinkView, newUplinkView, uplinkColor,
                                                                uplinkId = info.data.station_id.trim().split('/'),
                                                                oldUplinkView = document.getElementsByName('uplinkStation'),
-                                                               w_sections = uci.sections('wireless', 'wifi-iface');
-
+                                                               w_sections = uci.sections('wireless', 'wifi-iface'),
+                                                               vpnStatus = info.data.ext_hooks.substr(13, 1);
                                                        t_device = uplinkId[0];
                                                        t_bssid = uplinkId[uplinkId.length - 1];
                                                        for (var i = 1; i < uplinkId.length - 1; i++) {
@@ -189,18 +189,22 @@ function handleStatus() {
                                                                }
                                                        }
                                                        else {
+                                                               uplinkColor = (vpnStatus === "✔" ? 'rgb(68, 170, 68)' : 'rgb(51, 119, 204)');
                                                                for (var i = 0; i < w_sections.length; i++) {
                                                                        newUplinkView = document.getElementById('cbi-wireless-' + w_sections[i]['.name']);
                                                                        if (t_device === w_sections[i].device && t_ssid === w_sections[i].ssid && t_bssid === (w_sections[i].bssid || '-')) {
                                                                                if (oldUplinkView.length === 0 && newUplinkView) {
                                                                                        newUplinkView.setAttribute('name', 'uplinkStation');
-                                                                                       newUplinkView.setAttribute('style', 'text-align: left !important; color: #37c !important;font-weight: bold !important;');
+                                                                                       newUplinkView.setAttribute('style', 'text-align: left !important; color: ' + uplinkColor + ' !important;font-weight: bold !important;');
                                                                                }
                                                                                else if (oldUplinkView.length > 0 && newUplinkView && oldUplinkView[0].getAttribute('id') !== newUplinkView.getAttribute('id')) {
                                                                                        oldUplinkView[0].removeAttribute('style');
                                                                                        oldUplinkView[0].removeAttribute('name', 'uplinkStation');
                                                                                        newUplinkView.setAttribute('name', 'uplinkStation');
-                                                                                       newUplinkView.setAttribute('style', 'text-align: left !important; color: #37c !important;font-weight: bold !important;');
+                                                                                       newUplinkView.setAttribute('style', 'text-align: left !important; color: ' + uplinkColor + ' !important;font-weight: bold !important;');
+                                                                               }
+                                                                               else if (newUplinkView && newUplinkView.style.color != uplinkColor) {
+                                                                                       newUplinkView.setAttribute('style', 'text-align: left !important; color: ' + uplinkColor + ' !important;font-weight: bold !important;');
                                                                                }
                                                                        }
                                                                }
@@ -228,8 +232,10 @@ return view.extend({
 
                m = new form.Map('wireless');
                m.chain('travelmate');
-               s = m.section(form.GridSection, 'wifi-iface', null, _('Overview of all configured uplinks for travelmate.<br /> \
-                       You can edit, remove or prioritize existing uplinks by drag \&#38; drop and scan for new ones. The currently used uplink is emphasized in blue.'));
+               s = m.section(form.GridSection, 'wifi-iface', null, _('Overview of all configured uplinks for travelmate. \
+                       You can edit, remove or prioritize existing uplinks by drag \&#38; drop and scan for new ones.<br /> \
+                       The currently used uplink connection is emphasized in <span style="color:rgb(51, 119, 204);font-weight:bold">blue</span>, \
+                       an encrypted VPN uplink connection is emphasized in <span style="color:rgb(68, 170, 68);font-weight:bold">green</span>.'));
                s.anonymous = true;
                s.sortable = true;
                s.filter = function (section_id) {
@@ -685,7 +691,7 @@ return view.extend({
                                        radio = radios[i].sid;
                                        if (radio) {
                                                btns.push(E('button', {
-                                                       'class': 'cbi-button cbi-button-positive',
+                                                       'class': 'cbi-button cbi-button-apply',
                                                        'id': radio,
                                                        'click': ui.createHandlerFn(this, 'handleScan', radio)
                                                }, [_('Scan on ' + radio + '...')]),
index 622a9c8597dac6382f941f3c64f57c083f5ed8f3..80623409d300e35160c8121deb1060727e9489ab 100644 (file)
@@ -11,102 +11,98 @@ msgstr ""
 "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
 "X-Generator: Weblate 4.5.1\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "المصادقة"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "قناة"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -122,145 +118,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "جهاز"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "إلغاء"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "اسحب لإعادة ترتيب"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "ملف تعريف البريد الإلكتروني"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "عنوان مستقبل البريد الإلكتروني"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "عنوان مرسل البريد الإلكتروني"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "موضوع البريد الإلكتروني"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "طريقة EAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "تحرير"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "قم بتحرير هذه الشبكة"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr "تمكين التسجيل المطول لتصحيح الأخطاء في حالة وجود أي أخطاء في المعالجة."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "مفعل"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "التشفير"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "الاعدادات العامة"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -268,79 +264,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "معلومة"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "آخر تشغيل"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "عرض السجل"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -348,19 +348,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -368,237 +368,240 @@ msgstr ""
 msgid "Overview"
 msgstr "نظرة عامة"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "كلمة المرور"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "كلمة مرور المفتاح الخاص"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "المسار إلى CA-Certificate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "مسار شهادة العميل"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "المسار إلى المفتاح الخاص"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "تشغيل الإشارات"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "إحفض"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "إعدادات"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "الحالة / الإصدار"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -608,28 +611,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -637,155 +640,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "تأخير الزناد"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "تسجيل مطول للتصحيح"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -793,34 +796,34 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "لا شيء"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
index eb9692d2c89fb0a5234ed8e1bc44bd88f17dfaf0..ad4dd299e4b5ecaa061c852c94195d2a2eb21c77 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.8-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Откажи"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "E-Mail Профил"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "E-Mail Изпращач"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "E-Mail Тема"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr "Включи подрбони журнали в случай на работни грешки."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Разрешен"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Информация"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Запази"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 3ee25fec48851b7cfa7f2cc13832f994906a32a1..35706af3471b28f3414a21b3981f087d1141e666 100644 (file)
@@ -4,102 +4,98 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -115,145 +111,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -261,79 +257,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -341,19 +341,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -361,237 +361,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -601,28 +604,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -630,155 +633,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -786,33 +789,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index c1e9d2ed508f822f5c2ada6a3bd68bcbba6a8263..b7687d9f9de521df7144de226ba8b4d5b5a509fc 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.5.1\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Autenticació"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "Script d’inici de sessió automàtic"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "Detecció de portals captius"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "Límit de connexions"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Dispositiu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "Adreça del destinatari de correu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Edita"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Activat"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Xifratge"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Paràmetres generals"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Darrera execució"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr "Visió de conjunt"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Contrasenya"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Contrasenya de la clau privada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Camí cap al certificat CA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Camí cap al certificat de client"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Camí cap a la clau privada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (amagat)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Desar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Paràmetres"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr "Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "Enregistrament detallat de depuració"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 66124ff1b96bd2ab10325a53c1e7a7cf8bc72948..657b1069fa1a486d4c1254e35dda7c72596b06a8 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Weblate 4.7-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- výběr přístupového bodu --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr "QR kódy AP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Další nastavení"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Ověřování se"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Kanál"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Zařízení"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "E-mailový profil"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Adresa odesílatele e-mailu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "Téma e-mailu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "Metoda EAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Upravit"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Zapnuto"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Šifrování"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Obecná nastavení"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Informace"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Poslední spuštění"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Zobrazení protokolu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr "Přehled"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Heslo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Heslo privátního klíče"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Cesta k certifikátu CA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Cesta k certifikátu klienta"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Cesta k privátnímu klíči"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Uložit"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Prodleva spuštění"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index b843d67617fcc63834d171c8ffedcb7127361d98..7dcea9aeaf664d24e5e5aa6414b403476596879d 100644 (file)
@@ -10,49 +10,49 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.5.2-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- AP-Auswahl --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr "AP QR-Codes..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr "Uplink hinzufügen %q"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr "Uplink hinzufügen..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Zusätzliche Einstellungen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr "Zusätzliche Trigger-Verzögerung in Sekunden, bevor Travelmate startet."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Authentifizierung"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "Auto-Login-Skript"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr "Automatisch offene Uplinks hinzufügen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
@@ -61,7 +61,7 @@ msgstr ""
 "nach fehlgeschlagenen Anmeldeversuchen. <br /> Die Standardeinstellung '0' "
 "deaktiviert diese Funktion."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
@@ -69,7 +69,7 @@ msgstr ""
 "Füge der Netzwerk-Konfiguration automatisch offene Uplinks wie Hotel-"
 "HotSpots hinzu."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
@@ -78,42 +78,38 @@ msgstr ""
 "zeitgesteuerte Verbindungen. <br /> Die Standardeinstellung '0' deaktiviert "
 "diese Funktion."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr "Puffergröße in Bytes, um die Scan-Resultate aufzubereiten."
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr "CHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "Captive-Portal-Erkennung"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr "Captive-Portal-URL"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Kanal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -131,131 +127,131 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr "Verbindungsende"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr "Verbindungsende-Ablauf"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "Verbindungslimit"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr "Verbindungsstart"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr "Verbindungsstart-Ablauf"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Gerät"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "Gerätename"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Verwerfen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Ziehen zur Neuanordnung"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr "E-Mail-Hook"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "E-Mail-Profil"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "E-Mail Empfängeradresse"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "E-Mail Absenderadresse"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr "E-Mail-Einstellungen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "E-Mail-Thema"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr "EAP-GTC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr "EAP-MD5"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr "EAP-MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "EAP-Methode"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr "EAP-TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Bearbeiten"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Dieses Netzwerk bearbeiten"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr "Travelmate-Service aktivieren."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 "Aktiviere das ausführliche Anwendungs-Logging bei Verarbeitungsfehlern."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Aktiviert"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Verschlüsselung"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr "Ext. Hooks"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
@@ -263,16 +259,16 @@ msgstr ""
 "Externe Skriptreferenz, die für automatisierte Captive-Portal-Anmeldungen "
 "aufgerufen wird."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr "SCHNELL"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Allgemeine Einstellungen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 "Generieren Sie für jede Uplink-Verbindung eine zufällige Unicast-MAC-Adresse."
@@ -281,75 +277,79 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr "Zugriff auf LuCI App Travelmate gewähren"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 "Wie lange Travelmate auf eine erfolgreiche WLAN-Uplink-Verbindung warten "
 "sollte."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr "Identifizieren"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "BSSID ignorieren"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Informationen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr "Name der Schnittstelle"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "Zeitüberschreitung der Schnittstelle"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "Schnittstellenassistent"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr "Schnittstellen-Assistent ..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Letzter Durchgang"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Protokollansicht"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr "MSCHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr "MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
@@ -357,7 +357,7 @@ msgstr ""
 "Mindestschwelle für die Signalqualität in Prozent für bedingte Uplink-"
 "Verbindungen/Unterbrechungen."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr "Netzfehlerprüfung"
 
@@ -365,19 +365,19 @@ msgstr "Netzfehlerprüfung"
 msgid "No travelmate related logs yet!"
 msgstr "Es existieren noch keine Travelmate-bezogenen Protokolle!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr "OWE"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "Gesamt-Timeout"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr "Gesamtzeitlimit für Wiederholungen in Sekunden."
 
@@ -385,57 +385,56 @@ msgstr "Gesamtzeitlimit für Wiederholungen in Sekunden."
 msgid "Overview"
 msgstr "Übersicht"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
-"Übersicht aller konfigurierten Uplinks für Travelmate. <br /> Sie können "
-"vorhandene Uplinks bearbeiten, entfernen oder priorisieren, indem Sie diese "
-"per drag &#38; drop ablegen und nach neuen suchen. Der aktuell verwendete "
-"Uplink wird blau hervorgehoben."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr "PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr "PEAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Passwort"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Passwort des privaten Schlüssels"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Pfad zum CA-Zertifikat"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Pfad zum Client-Zertifikat"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Pfad zum Privaten Schlüssel"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr "Bitte installieren Sie das separate 'qrencode'-Paket."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
@@ -443,11 +442,11 @@ msgstr ""
 "Bitte beachten Sie: Für E-Mail-Benachrichtigungen muss das Paket <em>mstmp</"
 "em> separat eingerichtet werden.<br /><p>&#xa0;</p>"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr "ProActive-Uplink-Switch"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
@@ -455,37 +454,37 @@ msgstr ""
 "Trotz einer bereits bestehenden Verbindung proaktiv scannen und zu einem "
 "Uplink mit höherer Priorität wechseln."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 "Profil, das von 'msmtp' zur Benachrichtigung von Travelmate-E-Mails "
 "verwendet wird."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr "QR-Code Übersicht"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr "Funkmodulauswahl"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr "MAC-Adressen randomisieren"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr "Empfängeradresse für Travelmate-Benachrichtigungs-E-Mails."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
@@ -493,77 +492,77 @@ msgstr ""
 "Legen Sie den QR-Code des ausgewählten Access Points vor, um die WLAN-"
 "Anmeldeinformationen bequem auf Ihre Mobilgeräte zu übertragen."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr "Scan wiederholen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr "Wiederholungslimit für eine Verbindung zu einem Uplink."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "Laufzeit-Flags"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (versteckt)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Speichern"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
-msgstr "Scan-Puffergröße"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
+msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr "Weiterscannen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr "Skriptargumente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr "Absenderadresse für Travelmate-Benachrichtigungs-E-Mails."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 "Sendet nach jeder erfolgreichen Uplink-Verbindung Benachrichtigungs-E-Mails."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr "Servicepriorität"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Einstellungen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr "Signalqualitätsschwelle"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
@@ -571,68 +570,68 @@ msgstr ""
 "Durch Leerzeichen getrennte Liste zusätzlicher Argumente, die an das "
 "automatische Anmeldeskript übergeben werden, z.B. Benutzername und Kennwort"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr "Starten des drahtlosen Scans am '"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr "Stations-ID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "Stationsschnittstelle"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr "Stations-MAC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Status / Version"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr "Stärke"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr "TTLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr "Der QR-Code konnte nicht generiert werden!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr "Der Name der Firewall-Zone"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr "Die Schnittstellenmetrik"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr "Die logische VPN-Netzwerkschnittstelle, z.B. 'wg0' oder 'tun0'."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 "Die ausgewählte URL wird für Konnektivitäts- und Captive-Portal-Prüfungen "
 "verwendet."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr "Die ausgewählte Priorität wird für Travelmate-Prozesse verwendet."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -646,21 +645,21 @@ msgstr ""
 "Die Syslog-Ausgabe, die nur für Travelmate-bezogene Nachrichten vorgefiltert "
 "ist."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr "Die Uplink-Schnittstelle wurde aktualisiert."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr "Der Name der Uplink-Schnittstelle"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
@@ -671,7 +670,7 @@ msgstr ""
 "Alias-Netzwerkschnittstelle mit allen erforderlichen Netzwerk- und Firewall-"
 "Einstellungen."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr "Thema für Travelmate-Benachrichtigungs-E-Mails."
 
@@ -679,155 +678,155 @@ msgstr "Thema für Travelmate-Benachrichtigungs-E-Mails."
 msgid "Travelmate"
 msgstr "Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr "Travelmate-Einstellungen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr "Fehlende Internetverfügbarkeit als Fehler behandeln."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Verzögerung der Trigger-Bedingung"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr "User-Agent"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr "VPN-Hook"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr "VPN-Schnittstelle"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr "VPN-Dienst"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr "VPN-Einstellungen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "Ausführliche Debug-Protokollierung"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr "WPA Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr "WPA Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr "WPA-Flags"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr "WPA Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr "WPA Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr "WPA Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr "WPA/WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr "WPA/WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr "WPA/WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr "WPA/WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr "WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr "WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr "WPA2 Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr "WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr "WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr "WPA2/WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr "WPA2/WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr "WPA2/WPA3 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr "WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr "WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr "WPA3 OWE (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr "WPA3 Pers. (SAE)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "Drahtloser Scan"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr "Drahtlose Einstellungen"
 
@@ -835,37 +834,53 @@ msgstr "Drahtlose Einstellungen"
 msgid "Wireless Stations"
 msgstr "Drahtlose Stationen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr "auth=MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr "auth=PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "kein"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
+#~ msgid "Buffer size in bytes to prepare nearby scan results."
+#~ msgstr "Puffergröße in Bytes, um die Scan-Resultate aufzubereiten."
+
+#~ msgid ""
+#~ "Overview of all configured uplinks for travelmate.<br /> You can edit, "
+#~ "remove or prioritize existing uplinks by drag &#38; drop and scan for new "
+#~ "ones. The currently used uplink is emphasized in blue."
+#~ msgstr ""
+#~ "Übersicht aller konfigurierten Uplinks für Travelmate. <br /> Sie können "
+#~ "vorhandene Uplinks bearbeiten, entfernen oder priorisieren, indem Sie "
+#~ "diese per drag &#38; drop ablegen und nach neuen suchen. Der aktuell "
+#~ "verwendete Uplink wird blau hervorgehoben."
+
+#~ msgid "Scan Buffer Size"
+#~ msgstr "Scan-Puffergröße"
+
 #~ msgid "Automatically handle VPN (re-) connections."
 #~ msgstr "Automatisch den Auf- und Abbau von VPN-Verbindungen regeln."
 
index 7148ffef59549f7364ff82e877ae0e8a3d0fc50f..6c5e3edfedba11bd21fe362fc5244de6bd12db01 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.5-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Επιπρόσθετες ρυθμίσεις"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Συσκευή"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Ενεργοποιήθηκε"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Γενικές ρυθμίσεις"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index c7be250e2ca1cf6a4b9587808efd7081c9078f1c..8ecd4081eaa2622d424a048d9ec4d80c12707a90 100644 (file)
@@ -4,102 +4,98 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -115,145 +111,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -261,79 +257,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -341,19 +341,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -361,237 +361,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -601,28 +604,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -630,155 +633,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -786,33 +789,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 790f0175642c84d4cdabb7ebcc15e13a61ba2411..46f06c3859b1c63ca1f0d2b15055a591018485f0 100644 (file)
@@ -13,51 +13,51 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.7.2-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- Selección de AP --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr "Códigos QR del AP..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr "Agregar enlace ascendente %q"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr "Agregar enlace ascendente..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Configuración adicional"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 "Demora adicional del disparador en segundos antes de que comience el "
 "procesamiento de travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Autenticación"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "Script de inicio de sesión automático"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr "Auto agregar enlaces ascendentes abiertos"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
@@ -66,7 +66,7 @@ msgstr ""
 "minutos, p.e. después de intentos fallidos de inicio de sesión.<br/> El "
 "valor predeterminado de '0' desactiva esta función."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
@@ -74,7 +74,7 @@ msgstr ""
 "Agregue automáticamente enlaces ascendentes abiertos como portales cautivos "
 "de hotel a su configuración inalámbrica."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
@@ -83,43 +83,38 @@ msgstr ""
 "minutos, p.e. para conexiones temporizadas.<br/> El valor predeterminado de "
 "'0' desactiva esta función."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-"Tamaño del búfer en bytes para preparar resultados de escaneo cercanos."
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr "CHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "Detección de portal cautivo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr "URL del portal cautivo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Canal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -144,132 +139,132 @@ msgstr ""
 "\"Asistente de interfaz\" para realizar los ajustes necesarios de red y "
 "firewall."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr "Fin de conexión"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr "Caducidad de fin de conexión"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "Límite de conexión"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr "Inicio de conexión"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr "Vencimiento de inicio de conexión"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Dispositivo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "Nombre del dispositivo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Descartar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Arrastrar para reordenar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr "Gancho de correo electrónico"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "Perfil de correo electrónico"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "Dirección del destinatario de correo electrónico"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Dirección del remitente de correo electrónico"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr "Configuraciones del correo electrónico"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "Tema del correo electrónico"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr "EAP-GTC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr "EAP-MD5"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr "EAP-MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "Método EAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr "EAP-TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Editar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Editar esta red"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr "Activar el servicio TravelMate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 "Activar el registro de depuración detallado en caso de errores de "
 "procesamiento."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Activado"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Encriptación"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr "Manos ext."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
@@ -277,16 +272,16 @@ msgstr ""
 "Referencia de script externo que se llamará para inicios de sesión cautivos "
 "automatizados del portal."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr "RÁPIDO"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Configuración general"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 "Genere una dirección MAC de unidifusión aleatoria para cada conexión de "
@@ -296,75 +291,79 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr "Otorgar acceso a la aplicación Travelmate de LuCI"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 "Cuánto tiempo debe esperar travelmate para una conexión de enlace wlan sea "
 "exitosa."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr "Identificar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "Ignorar BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Información"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr "Nombre de interfaz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "Tiempo de espera de la interfaz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "Asistente de interfaz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr "Asistente de interfaz..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Último inicio"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Vista de registro"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr "MSCHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr "MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
@@ -372,7 +371,7 @@ msgstr ""
 "Umbral de calidad de señal mínimo como porcentaje para conexiones (dis-) de "
 "enlace condicional."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr "Comprobación de error neto"
 
@@ -380,19 +379,19 @@ msgstr "Comprobación de error neto"
 msgid "No travelmate related logs yet!"
 msgstr "¡Aún no hay registros relacionados con Travelmate!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr "OWE"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "Tiempo de espera total"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr "Tiempo de espera de reintento global en segundos."
 
@@ -400,57 +399,56 @@ msgstr "Tiempo de espera de reintento global en segundos."
 msgid "Overview"
 msgstr "Visión general"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
-"Descripción general de todos los enlaces ascendentes configurados para "
-"Travelmate.<br /> Puede editar, eliminar o priorizar los enlaces ascendentes "
-"existentes arrastrando y soltando y buscando nuevos. El enlace ascendente "
-"utilizado actualmente se resalta en azul."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr "PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr "PEAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Contraseña"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Contraseña de clave privada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Ruta al certificado CA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Ruta al certificado del cliente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Ruta a la clave privada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr "Instale el paquete 'qrencode' por separado."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
@@ -458,11 +456,11 @@ msgstr ""
 "Tenga en cuenta: las notificaciones por correo electrónico requieren la "
 "configuración por separado del paquete <em>mstmp</em>.<br /><p>&#xa0;</p>"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr "Interruptor de enlace proactivo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
@@ -470,39 +468,39 @@ msgstr ""
 "Escanee de forma proactiva y cambie a un enlace de mayor prioridad, a pesar "
 "de una conexión ya existente."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 "Perfil utilizado por 'msmtp' para los correos electrónicos de notificación "
 "de travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr "Descripción general del código QR"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr "Selección de radio"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr "Aleatorizar direcciones MAC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 "Dirección del destinatario de los correos electrónicos de notificación de "
 "travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
@@ -510,80 +508,80 @@ msgstr ""
 "Genere el código QR del AP seleccionado para transferir cómodamente las "
 "credenciales WLAN a sus dispositivos móviles."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr "Repetir escaneo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr "Vuelva a intentar el límite para conectarse a un enlace ."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "Ejecutar banderas"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (oculto)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Guardar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
-msgstr "Tamaño del búfer de escaneo"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
+msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr "Escanear en"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr "Argumentos de script"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 "Dirección del remitente para los correos electrónicos de notificación de "
 "Travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 "Envía notificaciones por correo electrónico después de cada conexión de "
 "enlace ascendente exitosa."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr "Prioridad de servicio"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Configuraciones"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr "Umbral de calidad de señal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
@@ -592,69 +590,69 @@ msgstr ""
 "de comandos de inicio de sesión automático, es decir, nombre de usuario y "
 "contraseña"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr "Iniciando escaneo inalámbrico en '"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr "ID de estación"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "Interfaz de estación"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr "MAC de la estación"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Estado/Versión"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr "Intensidad"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr "TTLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr "¡No se pudo generar el código QR!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr "El nombre de la zona de firewall"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr "La métrica de la interfaz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr "La interfaz de red lógica vpn, p.ej. 'wg0' o 'tun0'."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 "La URL seleccionada se utilizará para las comprobaciones de conectividad y "
 "del portal cautivo."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 "La prioridad seleccionada se utilizará para los procesos de Travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -668,21 +666,21 @@ msgstr ""
 "La salida de syslog, prefiltrada solo para mensajes relacionados con "
 "travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr "La interfaz de enlace ascendente se ha actualizado."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr "El nombre de la interfaz de enlace ascendente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
@@ -692,7 +690,7 @@ msgstr ""
 "una vez. Este asistente crea una interfaz de red de alias IPv4 e IPv6 con "
 "todas las configuraciones de red y cortafuegos requeridas."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr "Tema para correos electrónicos de notificación de compañeros de viaje."
 
@@ -700,155 +698,155 @@ msgstr "Tema para correos electrónicos de notificación de compañeros de viaje
 msgid "Travelmate"
 msgstr "Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr "Configuración de Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr "Trate la falta de disponibilidad de Internet como un error."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Retraso de disparo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr "Agente de usuario"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr "Gancho VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr "Interfaz VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr "Servicio VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr "Configuración de VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "Registro de depuración detallado"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr "Encriptación WPA (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr "Encriptación WPA (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr "Banderas WPA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr "WPA personal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr "WPA personal (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr "WPA personal (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr "Encriptación WPA/WPA2 (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr "Encriptación WPA/WPA2 (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr "Encriptación WPA/WPA2 (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr "WPA/WPA2 personal (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr "Encriptación WPA2 (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr "Encriptación WPA2 (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr "WPA2 personal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr "WPA2 personal (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr "WPA2 personal (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr "Encriptación WPA2/WPA3"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr "WPA2/WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr "WPA2/WPA3 personal (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr "Encriptación WPA3"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr "WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr "WPA3 OWE (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr "WPA3 personal (SAE)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "Escanear red Wi-Fi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr "Configuración Wi-Fi"
 
@@ -856,37 +854,54 @@ msgstr "Configuración Wi-Fi"
 msgid "Wireless Stations"
 msgstr "Estaciones Wi-Fi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr "auth=MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr "auth=PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "ninguno"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
+#~ msgid "Buffer size in bytes to prepare nearby scan results."
+#~ msgstr ""
+#~ "Tamaño del búfer en bytes para preparar resultados de escaneo cercanos."
+
+#~ msgid ""
+#~ "Overview of all configured uplinks for travelmate.<br /> You can edit, "
+#~ "remove or prioritize existing uplinks by drag &#38; drop and scan for new "
+#~ "ones. The currently used uplink is emphasized in blue."
+#~ msgstr ""
+#~ "Descripción general de todos los enlaces ascendentes configurados para "
+#~ "Travelmate.<br /> Puede editar, eliminar o priorizar los enlaces "
+#~ "ascendentes existentes arrastrando y soltando y buscando nuevos. El "
+#~ "enlace ascendente utilizado actualmente se resalta en azul."
+
+#~ msgid "Scan Buffer Size"
+#~ msgstr "Tamaño del búfer de escaneo"
+
 #~ msgid "Automatically handle VPN (re-) connections."
 #~ msgstr "Maneja automáticamente las (rec-) conexiones VPN."
 
index 66b757a53dbc79cccfd9eb2e6edbaedb3acd62d6..c5b815b0ec68483831341df809204cf5a92cf2a8 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.5-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Todennus"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Kanava"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Laite"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Hylkää"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Vedä järjestääksesi uudelleen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "EAP-menetelmä"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Muokkaa"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Muokkaa tätä verkkoa"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Käytössä"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Salaus"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Yleisasetukset"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Tietoja"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Viimeksi ajettu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr "Yleiskatsaus"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Salasana"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Yksityisen avaimen salasana"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Polku CA-varmenteeseen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Polku asiakasvarmenteeseen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Polku yksityiseen avaimeen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Tallenna"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Asetukset"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,34 +795,34 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "ei mitään"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
index 49b8e91cc50d5d0fe245328a1381f98383b61345..80da8b110beec52bc2c4eb250746c01358620cb2 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 4.7-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- Sélection AP --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Paramètres supplémentaires"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Authentification"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Canal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,147 +117,147 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Appareil"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Effacer"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Faites glisser pour réorganiser"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "E-mail du profil"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "Adresse e-mail du destinataire"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Adresse e-mail de l'expéditeur"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "Objet de l'e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Éditer"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Éditer ce réseau"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 "Activez la journalisation de débogage verbeuse en cas d'erreurs de "
 "traitement."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Activé"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Chiffrement"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Paramètres généraux"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -269,79 +265,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Information"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Dernière exécution"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Vue du journal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -349,19 +349,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -369,237 +369,240 @@ msgstr ""
 msgid "Overview"
 msgstr "Aperçu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Mot de passe"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Mot de passe de la clé privée"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Chemin du certificat CA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Chemin du certificat-client"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Chemin de la clé privée"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "Drapeaux d'exécution"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Enregistrer"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Paramètres"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Statut / Version"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -609,28 +612,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -638,155 +641,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Délai de déclenchement"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "Logs en mode verbeux"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -794,34 +797,34 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "aucun"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
index 0cf99182854035c45fec0c7716240b7e07b6defc..ae493047b17e6d680e602d43883b6b6356c4a53d 100644 (file)
@@ -11,102 +11,98 @@ msgstr ""
 "n % 10 == 0) ? 2 : 3));\n"
 "X-Generator: Weblate 4.5-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -122,145 +118,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "מכשיר"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "התעלמות"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -268,79 +264,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -348,19 +348,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -368,237 +368,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "הגדרות"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -608,28 +611,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -637,155 +640,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -793,33 +796,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 669a74f20168739d5fd2b8ff062ccbc58d27efd2..63a44d9752de3f8d66062fdf5d7cc474e74598af 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 3.11-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 77854b00a4da05d91cbf851483a8d202c49e0bf1..09cec3ec50657d63d55ae31836e1dfe3bd4d5b9d 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.7.2-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Hitelesítés"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Eszköz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "EAP módszer"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Szerkesztés"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Engedélyezve"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Titkosítás"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Általános Beállítások"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Utolsó futás"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr "Áttekintés"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Jelszó"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Személyes kulcs jelszava"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Útvonal a CA-tanúsítványhoz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Útvonal az ügyféltanúsítványhoz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Útvonal a személyes kulcshoz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Mentés"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Beállítások"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Aktiváló késleltetése"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 7d6ce45cb6711242d0207c8231df3ad4622f949e..c95de3156d72f61f84119ae85492353abfe8662b 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.7-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Impostazioni aggiuntive"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Autenticazione"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Canale"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,146 +117,146 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Dispositivo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "Profilo e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "Indirizzo e-mail destinatario"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Indirizzo e-mail mittente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "Oggetto e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "Metodo EAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Modifica"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 "Abilita log di debug verboso in caso di qualsiasi errore di elaborazione."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Abilitato"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Criptazione"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Impostazioni Generali"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -268,79 +264,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -348,19 +348,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -368,237 +368,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Password"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Salva"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Impostazioni"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -608,28 +611,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -637,155 +640,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -793,33 +796,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 26195ead20639519f41488ea17d648593ddd7b78..cd7f829a5bf6e618eb5919977e578bf715aaba65 100644 (file)
@@ -13,55 +13,55 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.6-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "追加設定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr "Travelmate の処理が開始されるまでの、追加の遅延時間(秒)です。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "認証"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "自動ログイン スクリプト"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
@@ -69,48 +69,44 @@ msgstr ""
 "ホテルのキャプティブ ポータルのような、オープンなアップリンクを自動的に無線設"
 "定に追加します。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr "スキャン結果を準備するためのバッファー サイズ (byte) です。"
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "キャプティブポータル検知"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "チャンネル"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -126,130 +122,130 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "接続制限"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "デバイス"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "閉じる"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "ドラッグして並び替え"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "Eメールプロファイル"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "Eメール受信アドレス"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Eメール送信者アドレス"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "Eメールトピック"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "EAPメソッド"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "編集"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "このネットワークを編集"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr "エラーが発生した際に詳細なデバッグロギングを有効にします。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "有効"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "暗号化"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
@@ -257,16 +253,16 @@ msgstr ""
 "キャプティブ ポータルへの自動ログインのために呼び出される、外部スクリプトへの"
 "参照です。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "一般設定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -274,73 +270,77 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr "Travelmate が無線アップリンクへの接続成功を待つ時間です。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "BSSID の無視"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "情報"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "インターフェース タイムアウト"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "インターフェース ウィザード"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "最終実行"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "ログビュー"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
@@ -348,7 +348,7 @@ msgstr ""
 "条件付きアップリンク接続(または切断)のための、シグナル品質閾値の下限(%)で"
 "す。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr "ネット エラーチェック"
 
@@ -356,19 +356,19 @@ msgstr "ネット エラーチェック"
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "実行間隔"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr "全体的な再試行タイムアウト(秒)です。"
 
@@ -376,63 +376,66 @@ msgstr "全体的な再試行タイムアウト(秒)です。"
 msgid "Overview"
 msgstr "概要"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "パスワード"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "秘密鍵のパスワード"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "CA証明書のパス"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "クライアント証明書のパス"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "秘密鍵のパス"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr "積極的なアップリンク切替"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
@@ -440,175 +443,175 @@ msgstr ""
 "既存の接続に関わらず、より優先度の高いアップリンクへの積極的なスキャンと切り"
 "替えを行います。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr "アップリンクへの接続を試行する回数です。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "実行フラグ"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID(ステルス)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "保存"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
-msgstr "スキャンバッファー サイズ"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
+msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr "サービス優先度"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "設定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr "シグナル品質閾値"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "ステーション インターフェース"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "ステータス / バージョン"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -620,28 +623,28 @@ msgstr ""
 "このフォームには、システムログ内の Travelmate に関するメッセージのみが表示さ"
 "れます。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -649,155 +652,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr "Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr "インターネット可用性が無い場合をエラーとして扱います。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "トリガ遅延"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "詳細なデバッグ ログ"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "無線スキャン"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -805,36 +808,42 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr "無線ステーション"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "なし"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
+#~ msgid "Buffer size in bytes to prepare nearby scan results."
+#~ msgstr "スキャン結果を準備するためのバッファー サイズ (byte) です。"
+
+#~ msgid "Scan Buffer Size"
+#~ msgstr "スキャンバッファー サイズ"
+
 #~ msgid "Delete this network"
 #~ msgstr "このネットワークを削除"
index c8e7cdbb08ebf9dee97f72eaed884dc0b6628153..e2ae3ebf8244606e3b58acd1f51b8488c376bad4 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.5.2-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "활성화"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "기본 설정"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "없음"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index de914a2c2e7da075461de9aa6458fa0fa913689e..b5b286c777744b8c7e71c0af1bf6a233692c38da 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 4.3-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "डिव्हाइस"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "डिसमिस करा"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr "आढावा"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "संकेतशब्द"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 02a0d1046445ec0601b0ca37c432458fcb3a0ffa..02a4dc63c7828f6073bd1b91120d335070ac4634 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 3.11-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index bfead072acd1f4c28efe2deb02f19a3e72e02d95..d6427c0cbb8f12e11f254ef9f2fda0b4bb3c1c8e 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.6-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Ytterligere innstillinger"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Kanal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Enhet"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "E-postprofil"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "E-postsenderadresse"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "E-postemne"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Påskrudd"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Kryptering"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Generelle innstillinger"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Info"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Sist kjørt"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Loggvisning"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,238 +367,241 @@ msgstr ""
 msgid "Overview"
 msgstr "Oversikt"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Passord"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 #, fuzzy
 msgid "Run Flags"
 msgstr "Kjøringsflagg"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Lagre"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Innstillinger"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Status/versjon"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -608,28 +611,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -637,155 +640,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Utløserforsinkelse"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -793,33 +796,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index a22b2770732f963ed58e36b6c8abd51a04957120..ddfbdbd0ab506ab209ffb20e9cadf787d626f192 100644 (file)
@@ -11,51 +11,51 @@ msgstr ""
 "|| n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 4.8-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- Wybór AP --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr "Kody QR AP..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr "Dodaj Uplink %q"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr "Dodaj Uplink..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Dodatkowe ustawienia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 "Dodatkowe opóźnienie wyzwalacza w sekundach zanim travelmate zacznie "
 "przetwarzać."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Uwierzytelnienie"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "Automatyczny skrypt logowania"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr "Automatycznie dodawaj otwarte łącza uplink"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
@@ -63,7 +63,7 @@ msgstr ""
 "Automatyczne (ponowne) włączenie uplink po <em>n</em> minutach, np. po "
 "nieudanych próbach logowania.<br /> Domyślna wartość '0' wyłącza tę funkcję."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
@@ -71,7 +71,7 @@ msgstr ""
 "Automatycznie dodawaj otwarte łącza zwrotne takie jak strony logowania w "
 "sieci w hotelu do swojej bezprzewodowej konfiguracji."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
@@ -79,43 +79,38 @@ msgstr ""
 "Automatycznie wyłącza łącze uplink po <em>n</em> minutach, np. dla połączeń "
 "czasowych.<br /> Domyślna wartość '0' wyłącza tę funkcję."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-"Rozmiar bufora w bajtach do przygotowania rezultatu skanowania okolicy."
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr "CHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "Wykrywanie logowania w sieci"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr "Adres URL portalu przechwytującego"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Kanał"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -139,132 +134,132 @@ msgstr ""
 "<em>Uwaga: </em> przy pierwszym uruchomieniu wywołaj raz 'Kreatora "
 "interfejsu', aby dokonać niezbędnych ustawień sieci i zapory."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr "Koniec połączenia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr "Wygaśnięcie zakończenia połączenia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "Limit połączenia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr "Rozpoczęcie połączenia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr "Wygaśnięcie zakończenia połączenia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Urządzenie"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "Nazwa urządzenia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Odrzuć"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Przeciągnij, aby zmienić kolejność"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr "E-Mail Hook"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "Profil e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "Adres e-mail odbiorcy"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Adres e-mail nadawcy"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr "Ustawienia e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "Temat e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr "EAP-GTC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr "EAP-MD5"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr "EAP-MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "Metoda protokołu rozszerzonego uwierzytelniania (EAP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr "EAP-TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Edytuj"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Edytuj tę sieć"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr "Włącz usługę Travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 "Włącz rejestrowanie debugowania w przypadku wystąpienia błędów w "
 "przetwarzaniu."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Włączone"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Szyfrowanie"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr "Zewnętrzne Hooks'y"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
@@ -272,16 +267,16 @@ msgstr ""
 "Nawiązanie do zewnętrznego skryptu który będzie użyty do automatycznego "
 "logowania w sieci."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr "FAST"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Ustawienia główne"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr "Wygeneruj losowy adres MAC unicast dla każdego połączenia uplink."
 
@@ -289,74 +284,78 @@ msgstr "Wygeneruj losowy adres MAC unicast dla każdego połączenia uplink."
 msgid "Grant access to LuCI app travelmate"
 msgstr "Przyznaj dostęp LuCI do aplikacji Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 "Jak długo travelmate powinien czekać na udane połączenie bezprzewodowe."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr "Identyfikuj"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "Ignoruj BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Informacje"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr "Nazwa interfejsu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "Limit czasu interfejsu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "Kreator interfejsu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr "Kreator interfejsu..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Ostatnie uruchomienie"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Widok dziennika"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr "MSCHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr "MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
@@ -364,7 +363,7 @@ msgstr ""
 "Minimalny próg jakości sygnału jako wartość procentowa dla warunkowych "
 "(ujemnych) połączeń."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr "Kontrola błędów sieci"
 
@@ -372,19 +371,19 @@ msgstr "Kontrola błędów sieci"
 msgid "No travelmate related logs yet!"
 msgstr "Brak powiązanych dzienników travelmate!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr "OWE"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "Ogólny limit czasu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr "Ogólny limit czasu powtarzania w sekundach."
 
@@ -392,57 +391,56 @@ msgstr "Ogólny limit czasu powtarzania w sekundach."
 msgid "Overview"
 msgstr "Przegląd"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
-"Przegląd wszystkich skonfigurowanych łączy nadrzędnych dla travelmate. <br /"
-"> Możesz edytować, usuwać lub ustalać priorytety istniejących łączy "
-"nadrzędnych, przeciągając &#38; upuszczanie i skanowanie w poszukiwaniu "
-"nowych. Aktualnie używane uplink jest podkreślone na niebiesko."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr "PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr "PEAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Hasło"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Hasło klucza prywatnego"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Ścieżka do certyfikatu CA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Ścieżka do certyfikatu klienta"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Ścieżka do klucza prywatnego"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr "Zainstaluj osobny pakiet „qrencode”."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
@@ -450,11 +448,11 @@ msgstr ""
 "Uwaga: Powiadomienia e-mail wymagają oddzielnej konfiguracji <em>mstmp</em> "
 "pakietu. <br /> <p> &#xa0; </p>"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr "Przełącznik połączenia ProActive"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
@@ -462,35 +460,35 @@ msgstr ""
 "Aktywnie skanuj i przełączaj na łącze o wyższym priorytecie, pomimo już "
 "istniejącego połączenia."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr "Profil używany przez \"msmtp\" do powiadomień travelmate e-mail."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr "Przegląd kodów QR"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr "Wybór radia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr "Losowe adresy MAC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr "Adres odbiorcy wiadomości e-mail z powiadomieniem o travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
@@ -498,77 +496,77 @@ msgstr ""
 "Renderuj kod QR wybranego punktu dostępowego, aby w wygodny sposób przesłać "
 "dane uwierzytelniające WLAN do urządzeń mobilnych."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr "Powtórz skanowanie"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr "Limit powtórzeń do połączenia."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "Uruchomione flagi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (ukryty)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Zapisz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
-msgstr "Rozmiar bufora skanowania"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
+msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr "Skanowanie włączone"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr "Argumenty skryptu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr "Adres nadawcy dla powiadomień e-mail dla travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 "Wysyła powiadomienie e-mail po każdym udanym połączeniu przez sieć uplink."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr "Priorytet usługi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Ustawienia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr "Próg jakości sygnału"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
@@ -576,68 +574,68 @@ msgstr ""
 "Rozdzielona spacjami lista dodatkowych argumentów przekazanych do skryptu "
 "automatycznego logowania, np. nazwa użytkownika i hasło"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr "Rozpoczynanie skanowania"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr "Identyfikator stacji"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "Interfejs stacji"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr "Stacja MAC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Status / Wersja"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr "Siła"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr "TTLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr "Nie można wygenerować kodu QR!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr "Nazwa strefy zapory"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr "Metryka interfejsu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr "Logiczny interfejs sieci VPN, np. „wg0” lub „tun0”."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 "Wybrany adres URL będzie używany do sprawdzania łączności i portalu "
 "dostępowego."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr "Wybrany priorytet będzie używany w procesach travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -651,21 +649,21 @@ msgstr ""
 "Wyjście dziennika systemowego, wstępnie filtrowane aby zawierało tylko "
 "informacje związane z travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr "Interfejs uplink został zaktualizowany."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr "Nazwa interfejsu uplink"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
@@ -675,7 +673,7 @@ msgstr ""
 "Kreator ten tworzy interfejs sieciowy IPv4- i IPv6 alias z wszystkimi "
 "wymaganymi ustawieniami sieci i zapory sieciowej."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr "Temat powiadomień e-mail travelmate."
 
@@ -683,155 +681,155 @@ msgstr "Temat powiadomień e-mail travelmate."
 msgid "Travelmate"
 msgstr "Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr "Ustawienia Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr "Traktuj brak dostępu do internetu jako błąd."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Opóźnienie wyzwalacza"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr "Agent użytkownika"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr "VPN Hook"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr "Interfejs VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr "Usługa VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr "Ustawienia VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "Pełne rejestrowanie debugowania"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr "WPA Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr "WPA Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr "Flagi WPA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr "WPA Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr "WPA Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr "WPA Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr "WPA/WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr "WPA/WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr "WPA/WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr "WPA/WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr "WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr "WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr "WPA2 Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr "WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr "WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr "WPA2/WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr "WPA2/WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr "WPA2/WPA3 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr "WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr "WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr "WPA3 OWE (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr "WPA3 Pers. (SAE)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "Bezprzewodowe skanowanie"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr "Ustawienia sieci bezprzewodowej"
 
@@ -839,37 +837,54 @@ msgstr "Ustawienia sieci bezprzewodowej"
 msgid "Wireless Stations"
 msgstr "Stacje bezprzewodowe"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr "auth=MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr "auth=PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "brak"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
+#~ msgid "Buffer size in bytes to prepare nearby scan results."
+#~ msgstr ""
+#~ "Rozmiar bufora w bajtach do przygotowania rezultatu skanowania okolicy."
+
+#~ msgid ""
+#~ "Overview of all configured uplinks for travelmate.<br /> You can edit, "
+#~ "remove or prioritize existing uplinks by drag &#38; drop and scan for new "
+#~ "ones. The currently used uplink is emphasized in blue."
+#~ msgstr ""
+#~ "Przegląd wszystkich skonfigurowanych łączy nadrzędnych dla travelmate. "
+#~ "<br /> Możesz edytować, usuwać lub ustalać priorytety istniejących łączy "
+#~ "nadrzędnych, przeciągając &#38; upuszczanie i skanowanie w poszukiwaniu "
+#~ "nowych. Aktualnie używane uplink jest podkreślone na niebiesko."
+
+#~ msgid "Scan Buffer Size"
+#~ msgstr "Rozmiar bufora skanowania"
+
 #~ msgid "Automatically handle VPN (re-) connections."
 #~ msgstr "Automatyczna obsługa połączeń VPN."
 
index 0d217bc738ffd15a51917d3c5e834b36559c5da1..ddcff8ae17a590c3c2cad68f6275f93da4a5c4b4 100644 (file)
@@ -10,49 +10,49 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 4.7-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- Seleção do AP --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr "Códigos QR do AP..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr "Adicionar ligação ascendente %q"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr "Adicionar ligação ascendente..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Configurações adicionais"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr "Atraso adicional em segundos antes do travelmate processe os gatilhos."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Autenticação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "Script de Login Automático"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr "Adicionar ligações ascendentes abertos automaticamente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
@@ -61,7 +61,7 @@ msgstr ""
 "minutos, por exemplo, quando as tentativas de login fracassarem. <br /> O "
 "valor predefinido '0' desativa esse recurso."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
@@ -69,7 +69,7 @@ msgstr ""
 "Adicionar ligações ascendentes abertas automaticamente, como portais cativos "
 "de hotéis, à sua configuração wireless."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
@@ -78,43 +78,38 @@ msgstr ""
 "por exemplo, para conexões que forem cronometradas. <br /> A predefinição "
 "'0' desativa esse recurso."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-"Tamanho do buffer em bytes para preparar resultados de varreduras próximas."
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr "CHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "Detecção de Portal de Autenticação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr "URL do portal cativo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Canal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -138,132 +133,132 @@ msgstr ""
 "Nota:</em> Na primeira inicialização chame o 'Assistente da interface', para "
 "fazer as configurações necessárias da rede e do firewall."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr "Fim da conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr "Validade do fim da conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "Limite de conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr "Início da conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr "Validade do inicio da conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Aparelho"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "Nome do aparelho"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Dispensar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Arraste para reordenar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr "Gancho do e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "Perfil de e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "Endereço de e-mail do destinatário"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Endereço de e-mail do remetente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr "Configurações do e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "Assunto do e-mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr "EAP-GTC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr "EAP-MD5"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr "EAP-MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "Método EAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr "EAP-TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Editar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Editar esta rede"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr "Ative o serviço travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 "Ativa o registo de depuração detalhado para casos de todos os erros de "
 "processamento."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Ativado"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Encriptação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr "Ganchos externos"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
@@ -271,16 +266,16 @@ msgstr ""
 "Referência de script externo que será chamado para logins automatizados de "
 "portal cativo."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr "RÁPIDO"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Configurações gerais"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 "Gerar um endereço MAC unicast aleatório para cada ligação ascendente da "
@@ -290,75 +285,79 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr "Conceder acesso ao LuCI ao app travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 "Quanto tempo o travelmate irá esperar pelo sucesso da ligação ascendente sem "
 "fio."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr "Identificar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "Ignore o BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Informação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr "Nome da interface"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "Estouro de Tempo da Interface"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "Assistente da Interface"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr "Assistente da interface..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Última Execução"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Vista do registo log"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr "MSCHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr "MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
@@ -366,7 +365,7 @@ msgstr ""
 "Limite percentual mínimo da qualidade do sinal para (des)conexões de ligação "
 "ascendente."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr "Verificação de Erros de Rede"
 
@@ -374,19 +373,19 @@ msgstr "Verificação de Erros de Rede"
 msgid "No travelmate related logs yet!"
 msgstr "Ainda não há registos log relacionados com o travelmate!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr "OWE"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "Estouro de Tempo Global"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr "Estouro de tempo global em segundos."
 
@@ -394,58 +393,56 @@ msgstr "Estouro de tempo global em segundos."
 msgid "Overview"
 msgstr "Visão Geral"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
-"Visão geral de todos as ligações ascendentes configuradas para o travelmate. "
-"<br /> Pode editar, remover ou priorizar as ligações ascendentes já "
-"existentes ao arrastar &#38; soltar e fazer uma varredura para novas "
-"ligações ascendentes. A ligação ascendente atualmente utilizada está "
-"destacada em azul."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr "PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr "PEAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Palavra-passe"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Palavra-passe da Chave Privada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Caminho para o certificado da AC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Caminho para o Certificado do Cliente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Caminho para a Chave Privada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr "Instale o pacote separado 'qrencode'."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
@@ -453,11 +450,11 @@ msgstr ""
 "Observação: as notificações do e-mail requerem a configuração separada do "
 "pacote <em>mstmp</em>.<br /><p>&#xa0;</p>"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr "Comutador de ligação ascendente ProActive"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
@@ -465,38 +462,38 @@ msgstr ""
 "Analise e mude proativamente para uma ligação ascendente priorizado mais "
 "alto, apesar de uma conexão já existente."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 "Perfil usado pelo 'msmtp' para a notificação dos e-mails do travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr "Visão geral do código QR"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr "Seleção do rádio"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr "Randomizar os endereços MAC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 "Endereço do e-mail do destinatário para o recebimento das notificações do "
 "travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
@@ -504,78 +501,78 @@ msgstr ""
 "Renderize o código QR do ponto de acesso selecionado para transferir "
 "confortavelmente as credenciais do WLAN para os seus aparelhos móveis."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr "Repetir a varredura"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr "Limite de retentiva de conexão com uma ligação ascendente."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "Flags de Execução"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (oculto)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Guardar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
-msgstr "Tamanho do Buffer de Varredura"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
+msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr "Varredura ligada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr "Argumentos do script"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr "Endereço e-mail do remetente para as notificações do travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 "Envia e-mails de notificação após cada conexão bem-recebida da ligação "
 "ascendente."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr "Prioridade do serviço"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Configurações"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr "Limite da Qualidade do Sinal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
@@ -583,68 +580,68 @@ msgstr ""
 "Lista separada por espaços de argumentos adicionais passados ao Script de "
 "Login Automático, ou seja, nome de utilizador e palavra-passe"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr "A iniciar a varredura sem fio em '"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr "ID da estação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "Interface da Estação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr "MAC da estação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Condição geral / versão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr "Força"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr "TTLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr "O código QR não pôde ser gerado!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr "O nome da zona do firewall"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr "A métrica de interface"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr "A interface lógica da rede de vpn, por exemplo, 'wg0' ou 'tun0'."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 "A URL selecionada será utilizada para as verificações do portal de "
 "conectividade e do portal cativo."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr "A prioridade selecionada será usada pelos processos do travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -656,21 +653,21 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr "Mensagens do syslog relacionadas ao travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr "A interface da ligação ascendente foi atualizada."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr "O nome da interface da ligação ascendente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
@@ -680,7 +677,7 @@ msgstr ""
 "Este assistente cria uma interface pseudónima de rede IPv4 e de IPv6 com "
 "todas as configurações necessárias da rede e do firewall."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr "O assunto do e-mail usado pela notificação do travelmate."
 
@@ -688,155 +685,155 @@ msgstr "O assunto do e-mail usado pela notificação do travelmate."
 msgid "Travelmate"
 msgstr "Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr "Configurações do Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr "Tratar a falta de disponibilidade da Internet como um erro."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Atraso do Gatilho"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr "Agente do utilizador"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr "Gancho de VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr "Interface da VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr "Serviço de VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr "Configurações da VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "Registos detalhados de depuração"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr "WPA Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr "WPA Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr "Sinalizadores do WPA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr "WPA Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr "WPA Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr "WPA Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr "WPA/WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr "WPA/WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr "WPA/WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr "WPA/WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr "WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr "WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr "WPA2 Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr "WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr "WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr "WPA2/WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr "WPA2/WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr "WPA2/WPA3 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr "WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr "WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr "WPA3 OWE (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr "WPA3 Pers. (SAE)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "Escaneamento da Rede Sem Fio"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr "Configurações da rede sem fio"
 
@@ -844,37 +841,56 @@ msgstr "Configurações da rede sem fio"
 msgid "Wireless Stations"
 msgstr "Estações Associadas"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr "auth=MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr "auth=PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "nenhum"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
+#~ msgid "Buffer size in bytes to prepare nearby scan results."
+#~ msgstr ""
+#~ "Tamanho do buffer em bytes para preparar resultados de varreduras "
+#~ "próximas."
+
+#~ msgid ""
+#~ "Overview of all configured uplinks for travelmate.<br /> You can edit, "
+#~ "remove or prioritize existing uplinks by drag &#38; drop and scan for new "
+#~ "ones. The currently used uplink is emphasized in blue."
+#~ msgstr ""
+#~ "Visão geral de todos as ligações ascendentes configuradas para o "
+#~ "travelmate. <br /> Pode editar, remover ou priorizar as ligações "
+#~ "ascendentes já existentes ao arrastar &#38; soltar e fazer uma varredura "
+#~ "para novas ligações ascendentes. A ligação ascendente atualmente "
+#~ "utilizada está destacada em azul."
+
+#~ msgid "Scan Buffer Size"
+#~ msgstr "Tamanho do Buffer de Varredura"
+
 #~ msgid "Automatically handle VPN (re-) connections."
 #~ msgstr "Lidar com (re-)conexões do VPN automaticamente."
 
index 3df3ea0f334e33a7eec81ae21710d8cbd5da26d5..69327bfc02c711c73cfc800fd647c72c07cd4f2e 100644 (file)
@@ -13,49 +13,49 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 4.7-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- Seleção do AP --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr "Códigos QR do AP..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr "Adicionar Enlace %q"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr "Adicionar o Enlace..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Configurações Adicionais"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr "Atraso adicional em segundos antes do travelmate processe os gatilhos."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Autenticação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "Script de Login Automático"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr "Adicionar Automaticamente os Uplinks Abertos"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
@@ -64,7 +64,7 @@ msgstr ""
 "tentativas de login fracassarem. <br /> O valor predefinido '0' desativa "
 "esse recurso."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
@@ -72,7 +72,7 @@ msgstr ""
 "Adicione automaticamente uplinks abertos, como os usados em portais cativos "
 "de hotéis na sua configuração sem fio."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
@@ -81,44 +81,38 @@ msgstr ""
 "para conexões que forem cronometradas. <br /> A predefinição '0' desativa "
 "esse recurso."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-"Tamanho do buffer em bytes para preparar os resultados de varredura mais "
-"próximos."
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr "CHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "Detecção de Portal de Autenticação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr "URL do Portal Cativo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Canal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -142,147 +136,147 @@ msgstr ""
 "Nota:</em> Na primeira inicialização chame o 'Assistente da interface', para "
 "fazer as configurações necessárias da rede e do firewall."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr "Fim da conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr "Validade do fim da conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "Limite de conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr "Início da conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr "Validade do inicio da conexão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Dispositivo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "Nome do dispositivo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Dispensar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Arraste para reordenar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr "Gancho do E-Mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "E-Mail do Perfil"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "Endereço de E-Mail do Destinatário"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Endereço de E-Mail do Remetente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr "Configurações do E-Mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "Assunto do E-Mail"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr "EAP-GTC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr "EAP-MD5"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr "EAP-MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "Método EAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr "EAP-TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Editar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Editar esta rede"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr "Ative o serviço travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 "Ativa o registro de depuração detalhada nos casos de qualquer erro de "
 "processamento."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Ativado"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Criptografia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr "Ganchos Externos"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr "Script externo de referência que será usado para logins automatizados."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr "RÁPIDO"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Configurações gerais"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr "Gere um endereço MAC unicast aleatório para cada enlace da conexão."
 
@@ -290,75 +284,79 @@ msgstr "Gere um endereço MAC unicast aleatório para cada enlace da conexão."
 msgid "Grant access to LuCI app travelmate"
 msgstr "Conceda ao aplicativo travelmate acesso ao LuCI"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 "Quanto tempo o travelmate irá esperar pelo sucesso da conexão sem fio "
 "externa."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr "Identificar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "Ignore o BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Informações"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr "Nome da Interface"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "Estouro de Tempo da Interface"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "Assistente da Interface"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr "Assistente da Interface..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Última Execução"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Exiba o registro log"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr "MSCHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr "MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
@@ -366,7 +364,7 @@ msgstr ""
 "Limite percentual mínimo da qualidade do sinal para (des)conexões de enlaces "
 "para fora."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr "Verificação de Erros da Rede"
 
@@ -374,19 +372,19 @@ msgstr "Verificação de Erros da Rede"
 msgid "No travelmate related logs yet!"
 msgstr "Ainda não há registos log relacionados com o travelmate!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr "OWE"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "Estouro de Tempo Global"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr "Estouro de tempo global em segundos."
 
@@ -394,57 +392,56 @@ msgstr "Estouro de tempo global em segundos."
 msgid "Overview"
 msgstr "Visão geral"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
-"Visão geral de todos os enlaces configurados para o travelmate. <br /> Você "
-"pode editar, remover ou priorizar os enlaces já existentes ao arrastar &#38; "
-"soltar e fazer uma varredura para novos enlaces. O enlace atualmente "
-"utilizado está destacado em azul."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr "PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr "PEAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Senha"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Senha da chave privada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Caminho para o certificado CA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Caminho para o certificado do cliente"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Caminho para a chave privada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr "Instale o pacote 'qrencode' separado."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
@@ -452,11 +449,11 @@ msgstr ""
 "Observação: As notificações do e-mail requerem a configuração separada do "
 "pacote <em>mstmp</em>.<br /><p>&#xa0;</p>"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr "ProActive Switch de Ligação Acendente (Uplink)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
@@ -464,38 +461,38 @@ msgstr ""
 "Faça uma varredura de forma proativa e selecione um switch com prioridade "
 "mais alta, mesmo que já exista uma conexão."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 "Perfil usado pelo 'msmtp' para a notificação dos E-mails do travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr "Visão geral do código QR"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr "Seleção do Rádio"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr "Randomize os endereços MAC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 "Endereço do E-Mail do destinatário para o recebimento das notificações do "
 "travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
@@ -503,76 +500,76 @@ msgstr ""
 "Renderize o código QR do Ponto de Acesso selecionado para transferir "
 "confortavelmente as credenciais do WLAN para os seus dispositivos móveis."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr "Repetir a varredura"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr "Limite de novas tentativas de conexão com um enlace externo."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "Executar Flags"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (oculto)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Salvar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
-msgstr "Tamanho do Buffer de Varredura"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
+msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr "Varredura ligada"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr "Argumentos do script"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr "Endereço E-Mail do remetente para as notificações do travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr "Envia e-mails de notificação após cada conexão bem-recebida do enlace."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr "Prioridade do serviço"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Configurações"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr "Limite da Qualidade do Sinal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
@@ -580,68 +577,68 @@ msgstr ""
 "Lista de argumentos adicionais separados por espaço que serão passados ao "
 "Script de Login Automático, por exemplo, nome de usuário e senha"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr "Iniciando a varredura sem fio em '"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr "ID da estação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "Interface da Estação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr "MAC da estação"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Condição Geral / Versão"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr "Força"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr "TTLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr "O Código QR não pôde ser gerado!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr "O nome da zona do firewall"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr "A métrica de interface"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr "A interface lógica da rede vpn, por exemplo, 'wg0' ou 'tun0'."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 "A URL selecionada será utilizada para as verificações do portal de "
 "conectividade e do portal cativo."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr "A prioridade selecionada será usada pelos processos do travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -653,21 +650,21 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr "Mensagens do syslog relacionadas ao travelmate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr "A interface do enlace foi atualizada."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr "O nome da interface do enlace"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
@@ -677,7 +674,7 @@ msgstr ""
 "enlace. Este assistente cria uma interface de rede IPv4 e uma interface IPv6 "
 "com todas as configurações necessárias da rede e do firewall."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr "O assunto do E-mail usado pela notificação do travelmate."
 
@@ -685,155 +682,155 @@ msgstr "O assunto do E-mail usado pela notificação do travelmate."
 msgid "Travelmate"
 msgstr "Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr "Configurações do Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr "Tratar a falta de disponibilidade da Internet como um erro."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Gatilho de Atraso"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr "Agente do usuário"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr "Gancho VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr "Interface da VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr "Serviço VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr "Configurações da VPN"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "Registros Detalhados de Depuração"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr "WPA Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr "WPA Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr "Sinalizadores do WPA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr "WPA Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr "WPA Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr "WPA Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr "WPA/WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr "WPA/WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr "WPA/WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr "WPA/WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr "WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr "WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr "WPA2 Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr "WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr "WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr "WPA2/WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr "WPA2/WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr "WPA2/WPA3 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr "WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr "WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr "WPA3 OWE (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr "WPA3 Pers. (SAE)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "Escaneamento da Rede Sem Fio"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr "Configurações da rede sem fio"
 
@@ -841,37 +838,55 @@ msgstr "Configurações da rede sem fio"
 msgid "Wireless Stations"
 msgstr "Estações Associadas"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr "auth=MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr "auth=PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "nenhum"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
+#~ msgid "Buffer size in bytes to prepare nearby scan results."
+#~ msgstr ""
+#~ "Tamanho do buffer em bytes para preparar os resultados de varredura mais "
+#~ "próximos."
+
+#~ msgid ""
+#~ "Overview of all configured uplinks for travelmate.<br /> You can edit, "
+#~ "remove or prioritize existing uplinks by drag &#38; drop and scan for new "
+#~ "ones. The currently used uplink is emphasized in blue."
+#~ msgstr ""
+#~ "Visão geral de todos os enlaces configurados para o travelmate. <br /> "
+#~ "Você pode editar, remover ou priorizar os enlaces já existentes ao "
+#~ "arrastar &#38; soltar e fazer uma varredura para novos enlaces. O enlace "
+#~ "atualmente utilizado está destacado em azul."
+
+#~ msgid "Scan Buffer Size"
+#~ msgstr "Tamanho do Buffer de Varredura"
+
 #~ msgid "Automatically handle VPN (re-) connections."
 #~ msgstr "Lide automaticamente com as (re-)conexões VPN."
 
index ca12b43467aea170c0c8e67aa612d30d77723764..4c5c9506ee84c155578548c70f59adde5433f187 100644 (file)
@@ -11,102 +11,98 @@ msgstr ""
 "20)) ? 1 : 2;\n"
 "X-Generator: Weblate 3.11-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -122,145 +118,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Modifică"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -268,79 +264,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Ultima rulare"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -348,19 +348,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -368,237 +368,240 @@ msgstr ""
 msgid "Overview"
 msgstr "Prezentare generală"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Salvează"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -608,28 +611,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -637,155 +640,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Intârzierea declanșării"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -793,33 +796,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 5b35929ef8c27386e4d80e7931bdfa345adceb61..7022b055eb166cecfc62a28baa9cd787d869297d 100644 (file)
@@ -16,102 +16,98 @@ msgstr ""
 "Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
 "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- Выбор точки доступа --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr "Добавить канал %q"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr "Добавить канал..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Дополнительные настройки"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr "Дополнительная задержка в секундах до запуска TravelMate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Аутентификация"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "Скрипт автоматического входа"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "Обнаружение Captive Portal-а"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Канал"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -127,145 +123,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "Ограничение соединений"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Устройство"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "Имя устройства"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Закрыть"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Перетащите, чтобы изменить порядок"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "Профиль электронной почты"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "Адрес получателя"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Адрес отправителя"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "Тема"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "Метод EAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Изменить"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Изменить эту сеть"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr "Включить подробное формирование отчёта на случай возникновения ошибок."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Включено"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Шифрование"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Общие настройки"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -273,79 +269,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr "Предоставить доступ LuCI к приложению travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "Игнорировать BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Информация"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "Временная задержка интерфейса"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "Помощник настройки интерфейса"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Последний запуск"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Просмотр журнала"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -353,19 +353,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "Общее время ожидания"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -373,238 +373,241 @@ msgstr ""
 msgid "Overview"
 msgstr "Обзор"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Пароль"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Пароль к Приватному ключу"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Путь к CA-сертификату"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Путь к client-сертификату"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Путь к Приватному ключу"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 #, fuzzy
 msgid "Run Flags"
 msgstr "Рабочие флаги"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (скрытый)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Сохранить"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Настройки"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "Интерфейс клиента"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Статус / Версия"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -616,28 +619,28 @@ msgstr ""
 "Страница просмотра системного журнала, показаны только события связанные с "
 "работой утилиты TravelMate."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -645,155 +648,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr "TravelMate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Задержка запуска"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "Подробный журнал отладки"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "Найденные точки доступа Wi-Fi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -801,34 +804,34 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr "Клиенты беспроводной сети"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "ничего"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
index 890ae0832f7f503ce9b562a440b710045ef84bdd..fba84b37a3b225caa7c628ca109157e4f8fba259 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Weblate 4.7\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Overenie totožnosti"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Zariadenie"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Zahodiť"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "Spôsob EAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Upraviť"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Šifrovanie"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr "Prehľad"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Heslo"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Heslo súkromného kľúča"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Cesta k súkromnému kľúču"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Uložiť"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Nastavenia"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 0a10f1f64c255f04014198ef6b8ed7be6537b4c6..866ede9555b972d0306d5ef5e5bbf49f4801de2d 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.5.2-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Fler inställningar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Autentisering"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "Automatiskt inloggningsskript"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Kanal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Enhet"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "Enhetens namn"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Avfärda"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Dra för att sortera om"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "E-postprofil"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "Avsändaradress för e-post"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "E-postämne"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr "EAP-MD5"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr "EAP-MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "EAP-metod"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Redigera"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Redigera det här nätverket"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr "Aktivera utförlig avlusningsloggning i händelse av behandlingsfel."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Aktiverad"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Kryptering"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr "SNABB"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Generella inställningar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr "Identifiera"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "Ignorera BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Information"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Kördes senast"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Logutsikt"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr "MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr "OWE"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr "Överblick"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr "PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr "PEAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Lösenord"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Den privata nyckelns lösenord"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Genväg till CA-certifikat"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Genväg till klient-certifikat"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Genväg till privat nyckel"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr "Val av radio"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr "Slumpa MAC-adresser"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr "Upprepa skanning"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "Förflaggor"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (gömd)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Spara"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Inställningar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr "Stationens ID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "Stationens gränssnitt"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr "Stationens MAC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Status / Version"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr "Styrka"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr "TTLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr "QR-koden kunde inte genereras!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr "Namnet på brandväggszonen"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr "Reskompis"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr "Användaragent"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr "VPN-gränsnitt"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr "VPN-tjänst"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr "WPA-flaggor"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "Trådlös skanning"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,34 +795,34 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr "Trådlösa stationer"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr "auth=pap"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "inga"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
index d1c8e08efd88c02a0c9d9625cb0f50dba87b9c12..cf94988279ed6f9f41ae45558e8a856046b00539 100644 (file)
 msgid ""
 msgstr "Content-Type: text/plain; charset=UTF-8"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -112,145 +108,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -258,79 +254,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -338,19 +338,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -358,237 +358,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -598,28 +601,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -627,155 +630,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -783,33 +786,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index fa2507ef7e969004cda1c21eb51cdab0ecaf863a..5b7586fd714d61d64d2b4fb9828d605f23d8f36c 100644 (file)
@@ -10,50 +10,50 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.7-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- Erişim Noktası Seçimi --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr "Bağlantı Noktası QR-Kodları..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr "Yukarı Bağlantı Ekle %q"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr "Yukarı Bağlantı Ekle..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "Ek Ayarlar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 "Travelmate işleme başlamadan önce saniye cinsinden ek tetikleme gecikmesi."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Kimlik Doğrulama"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "Otomatik Oturum Açma Betiği"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr "Açık Yukarı Bağlantılarıları Otomatik Ekle"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
@@ -62,7 +62,7 @@ msgstr ""
 "etkinleştirin, ör. başarısız giriş denemelerinden sonra.<br /> Varsayılan "
 "\"0\" bu özelliği devre dışı bırakır."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
@@ -70,7 +70,7 @@ msgstr ""
 "Kablosuz yapılandırmanıza otomatik olarak otel giriş portalları gibi açık "
 "yukarı bağlantıları ekleyin."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
@@ -79,43 +79,38 @@ msgstr ""
 "bırakın, ör. zamanlanmış bağlantılar için.<br /> Varsayılan \"0\" bu "
 "özelliği devre dışı bırakır."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-"Yakındaki tarama sonuçlarını hazırlamak için bayt cinsinden arabellek boyutu."
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr "CHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "Captive portal algılama"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr "Captive Portal URL'si"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "Kanal"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -139,132 +134,132 @@ msgstr ""
 "dikkat: </em> İlk başlangıçta gerekli ağ ve güvenlik duvarı ayarlarını "
 "yapmak için lütfen 'Arayüz Sihirbazı'nı bir kez çalıştırın."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr "Bağlantı Sonu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr "Bağlantı Sonu Son kullanma tarihi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "Bağlantı Sınırı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr "Bağlantı Başlatma"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr "Bağlantı Başlangıcı Son kullanma tarihi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Cihaz"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "Cihaz adı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Kapat"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "Yeniden sıralamak için sürükleyin"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr "E-Posta Kancası"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "E-Posta Profili"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "E-Posta Alıcı Adresi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "E-Posta Gönderen Adresi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr "E-Posta ayarları"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "E-Posta Konusu"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr "EAP-GTC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr "EAP-MD5"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr "EAP-MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "EAP Yöntemi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr "EAP-TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Düzenle"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "Bu ağı düzenle"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr "Travelmate hizmetini etkinleştir."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 "Herhangi bir işleme hatası durumunda ayrıntılı hata ayıklama günlüğünü "
 "etkinleştirin."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Etkin"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Şifreleme"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr "Harici Kancalar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
@@ -272,16 +267,16 @@ msgstr ""
 "Otomatik sabit portal oturum açma işlemleri için çağrılacak harici komut "
 "dosyası referansı."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr "HIZLI"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Genel Ayarlar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 "Her yukarı bağlantı bağlantısı için rastgele bir tek noktaya yayın MAC "
@@ -291,74 +286,78 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr "LuCI uygulaması travelmate'e erişim izni verin"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 "Travelmate başarılı bir wlan uplink bağlantısı için ne kadar beklemelidir."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr "Tanımla"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "BSSID'yi Yoksay"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "Bilgi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr "Arayüz Adı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "Arayüz Zaman Aşımı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "Arayüz Sihirbazı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr "Arayüz Sihirbazı..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "Son çalışma zamanı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "Günlük Kayıtlarını Göster"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr "MSCHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr "MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
@@ -366,7 +365,7 @@ msgstr ""
 "Koşullu uplink, bağlantı(bağ. kopması) için yüzde olarak minimum sinyal "
 "kalitesi eşiği."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr "Net Hata Kontrolü"
 
@@ -374,19 +373,19 @@ msgstr "Net Hata Kontrolü"
 msgid "No travelmate related logs yet!"
 msgstr "Henüz travelmate ile ilgili kayıt yok!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr "OWE"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "Genel Zaman Aşımı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr "Saniye cinsinden genel yeniden deneme zaman aşımı."
 
@@ -394,57 +393,56 @@ msgstr "Saniye cinsinden genel yeniden deneme zaman aşımı."
 msgid "Overview"
 msgstr "Genel bakış"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
-"Seyahat arkadaşı için yapılandırılmış tüm yukarı bağlantılara genel bakış. "
-"<br /> Mevcut yukarı bağlantıları sürükleyerek &#38;; düzenleyebilir, "
-"kaldırabilir veya önceliklendirebilirsiniz. bırakın ve yenileri için "
-"tarayın. Şu anda kullanılan yukarı bağlantı mavi renkle vurgulanmıştır."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr "PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr "PEAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Parola"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Özel Anahtarın Şifresi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "CA-Sertifikasına Giden Yol"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "İstemci Sertifikasına Giden Yol"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Özel Anahtara Giden Yol"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr "Lütfen ayrı 'qrencode' paketini kurun."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
@@ -452,11 +450,11 @@ msgstr ""
 "Lütfen dikkat: E-posta bildirimleri, <em>mstmp</em> paketinin ayrı "
 "kurulumunu gerektirir.<br /><p>&#xa0;</p>"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr "ProActive Uplink Switchi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
@@ -464,36 +462,36 @@ msgstr ""
 "Önceden var olan bir bağlantıya rağmen proaktif olarak tarayın ve daha "
 "yüksek öncelikli bir yukarı bağlantıya geçin."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 "'Msmtp' tarafından travelmate bildirim e-postaları için kullanılan profil."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr "QR Koduna Genel Bakış"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr "Kablosuz Seçimi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr "MAC Adreslerini Rastgeleleştir"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr "Travelmate bildirim e-postaları için alıcı adresi."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
@@ -501,77 +499,77 @@ msgstr ""
 "WLAN kimlik bilgilerini mobil cihazlarınıza rahatça aktarmak için seçilen "
 "Erişim Noktasının QR Kodunu işle."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr "Taramayı Tekrarla"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr "Uplink bağlanma yeniden deneme sınırı."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "Bayrakları Çalıştır"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (gizli)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Kaydet"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
-msgstr "Tarama Arabelleği Boyutu"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
+msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr "Tarama açık"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr "Komut Dosyası Bağımsız Değişkenleri"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr "Travelmate bildirim e-postaları için gönderen adresi."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 "Her başarılı uplink bağlantısından sonra bildirim e-postaları gönderir."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr "Hizmet Önceliği"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Ayarlar"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr "Sinyal Kalitesi Eşiği"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
@@ -579,68 +577,68 @@ msgstr ""
 "Otomatik Oturum Açma Komut Dosyasına iletilen ek argümanların boşlukla "
 "ayrılmış listesi, yani kullanıcı adı ve parola"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr "Kablosuz tarama başlatılıyor '"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr "İstasyon kimliği"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "İstasyon Arayüzü"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr "İstasyon MAC'i"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "Durum / Sürüm"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr "Güç"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr "TTLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr "QR Kodu oluşturulamadı!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr "Güvenlik duvarı bölgesi adı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr "Arayüz metriği"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr "Mantıksal vpn ağ arayüzü, ör. 'wg0' veya 'tun0'."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 "Seçilen URL, bağlantı ve doğrulama amacıyla yönlendirme yapan portal "
 "kontrolleri için kullanılacaktır."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr "Seçilen öncelik travelmate işlemleri için kullanılacaktır."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -654,21 +652,21 @@ msgstr ""
 "Yalnızca travelmate ile ilgili mesajlar için önceden filtrelenmiş syslog "
 "çıktısı."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr "Uplink arayüzü güncellendi."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr "Uplink arayüzü adı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
@@ -678,7 +676,7 @@ msgstr ""
 "sihirbaz, gerekli tüm ağ ve güvenlik duvarı ayarlarıyla bir IPv4 ve IPv6 "
 "diğer ad ağ arabirimi oluşturur."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr "Travelmate bildirim e-postaları için konu."
 
@@ -686,155 +684,155 @@ msgstr "Travelmate bildirim e-postaları için konu."
 msgid "Travelmate"
 msgstr "Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr "Travelmate Ayarları"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr "Eksik internet kullanılabilirliğini bir hata olarak ele al."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Tetikleme Gecikmesi"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr "Kullanıcı Aracısı"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr "VPN Kancası"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr "VPN Arayüzü"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr "VPN Hizmeti"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr "VPN Ayarları"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "Ayrıntılı Hata Ayıklama Günlüğü"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr "WPA Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr "WPA Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr "WPA Bayrakları"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr "WPA Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr "WPA Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr "WPA Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr "WPA/WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr "WPA/WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr "WPA/WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr "WPA/WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr "WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr "WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr "WPA2 Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr "WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr "WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr "WPA2/WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr "WPA2/WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr "WPA2/WPA3 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr "WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr "WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr "WPA3 OWE (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr "WPA3 Pers. (SAE)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "Kablosuz Tarama"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr "Kablosuz Ağ Ayarları"
 
@@ -842,37 +840,56 @@ msgstr "Kablosuz Ağ Ayarları"
 msgid "Wireless Stations"
 msgstr "Kablosuz İstasyonları"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr "auth=MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr "auth=PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "hiçbiri"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
+#~ msgid "Buffer size in bytes to prepare nearby scan results."
+#~ msgstr ""
+#~ "Yakındaki tarama sonuçlarını hazırlamak için bayt cinsinden arabellek "
+#~ "boyutu."
+
+#~ msgid ""
+#~ "Overview of all configured uplinks for travelmate.<br /> You can edit, "
+#~ "remove or prioritize existing uplinks by drag &#38; drop and scan for new "
+#~ "ones. The currently used uplink is emphasized in blue."
+#~ msgstr ""
+#~ "Seyahat arkadaşı için yapılandırılmış tüm yukarı bağlantılara genel "
+#~ "bakış. <br /> Mevcut yukarı bağlantıları sürükleyerek &#38;; "
+#~ "düzenleyebilir, kaldırabilir veya önceliklendirebilirsiniz. bırakın ve "
+#~ "yenileri için tarayın. Şu anda kullanılan yukarı bağlantı mavi renkle "
+#~ "vurgulanmıştır."
+
+#~ msgid "Scan Buffer Size"
+#~ msgstr "Tarama Arabelleği Boyutu"
+
 #~ msgid "Automatically handle VPN (re-) connections."
 #~ msgstr "VPN (yeniden) bağlantılarını otomatik olarak işle."
 
index 42c2a6670184c3f83db6e22ed29a191be02931ac..7976f12fa771965695b56c8db652fc5cd3cbb90f 100644 (file)
@@ -11,102 +11,98 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 4.7-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "Автентифікація"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -122,145 +118,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "Пристрій"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "Закрити"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "Метод EAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "Редагувати"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Увімкнено"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "Шифрування"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "Загальні налаштування"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -268,79 +264,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -348,19 +348,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -368,237 +368,240 @@ msgstr ""
 msgid "Overview"
 msgstr "Огляд"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "Пароль"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "Пароль закритого ключа"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "Шлях до сертифіката CA"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "Шлях до сертифіката клієнта"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "Шлях до закритого ключа"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "Зберегти"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "Налаштування"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -608,28 +611,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -637,155 +640,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -793,33 +796,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index 5d9c2e3989575f5e360c83698ee07234fe73b77e..564fce327c8a08e8dcded29bd6135f3436a465b7 100644 (file)
@@ -10,102 +10,98 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.4-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr ""
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -121,145 +117,145 @@ msgid ""
 "once, to make the necessary network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "Bật"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr ""
 
@@ -267,79 +263,83 @@ msgstr ""
 msgid "Grant access to LuCI app travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr ""
 
@@ -347,19 +347,19 @@ msgstr ""
 msgid "No travelmate related logs yet!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr ""
 
@@ -367,237 +367,240 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -607,28 +610,28 @@ msgstr ""
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
 "network- and firewall settings."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr ""
 
@@ -636,155 +639,155 @@ msgstr ""
 msgid "Travelmate"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "Kích hoạt độ trễ"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr ""
 
@@ -792,33 +795,33 @@ msgstr ""
 msgid "Wireless Stations"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
index fe3d8b30dc403eb8450ef9d9c3d92178c6285f4a..d3ba54e01061186f851a7ff9a69adfcea8b4f764 100644 (file)
@@ -16,49 +16,49 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.7-dev\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- 选择 AP --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr "AP二维码..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr "添加上行链路%q"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr "添加上行链路..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "额外设置"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr "在 travelmate 处理开始前的额外触发延迟(秒)。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "身份验证"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "自动登录脚本"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr "自动添加开放的上行链路"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
@@ -66,13 +66,13 @@ msgstr ""
 "在登录失败等情况下,等待<em>n</em>分钟后(重新)启用上行链路。<br />默认数"
 "值“0”将禁用此功能。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr "自动将开放的上行链路(例如酒店的强制登录门户)添加到您的无线配置中。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
@@ -80,42 +80,38 @@ msgstr ""
 "在连接超时等情况下,等待<em>n</em>分钟后自动禁用上行链路。<br />默认数值“0”将"
 "禁用此功能。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr "用于暂存扫描结果的缓冲区大小(单位为字节)。"
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr "CHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "强制登录门户检测"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr "强制登录门户网址"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "信道"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -137,145 +133,145 @@ msgstr ""
 "请注意:</em>第一次启动时,请调用“接口向导”一次,以进行必要的网络和防火墙设"
 "置。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr "连接终止"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr "连接终止超时"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "连接限制"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr "连接启动"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr "连接启动超时"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "设备"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "设备名称"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "关闭"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "拖动以重排"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr "电子邮件接口"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "电子邮件概要"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "电子邮件收件人地址"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "电子邮件发件人地址"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr "电子邮件设置"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "电子邮件主题"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr "EAP-GTC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr "EAP-MD5"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr "EAP-MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "EAP 类型"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr "EAP-TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "编辑"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "编辑此网络"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr "启用travelmate服务。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr "在出现任何处理错误时启用详细的调试日志。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "已启用"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "加密"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr "外部接口"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr "引用外部脚本,将用于强制登录门户的登录。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr "FAST"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "常规设置"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr "为每个上行链路生成一个随机的unicast MAC地址。"
 
@@ -283,79 +279,83 @@ msgstr "为每个上行链路生成一个随机的unicast MAC地址。"
 msgid "Grant access to LuCI app travelmate"
 msgstr "授予访问 LuCI 应用 travelmate 的权限"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr "travelmate 等待 wlan 上行链路连接成功的最长时间。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr "认证"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "忽略 BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "信息"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr "接口名称"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "接口超时"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "接口向导"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr "接口向导..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "最后运行"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "日志视图"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr "MSCHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr "MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr "最小信号质量阈值(百分比),作为连接(断开)上行链路的条件。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr "网络错误检查"
 
@@ -363,19 +363,19 @@ msgstr "网络错误检查"
 msgid "No travelmate related logs yet!"
 msgstr "还没有和travlemate相关的日志!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr "OWE"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "总体超时"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr "总体重试超时(秒)。"
 
@@ -383,240 +383,240 @@ msgstr "总体重试超时(秒)。"
 msgid "Overview"
 msgstr "概览"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
-"travelmate已配置的所有上行链路概览。<br />你可以通过拖放来对已有的上行链路进"
-"行编辑、移除、排序,或者扫描新的上行链路。目前使用中的上行链路会用蓝色予以强"
-"调。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr "PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr "PEAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "密码"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "私钥密码"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "CA 证书路径"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "客户端证书路径"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "私钥路径"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr "请安装“qrencode”软件包。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr "请注意:电子邮件通知需要安装<em>mstmp</em>软件包<br /><p>&#xa0;</p>"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr "ProActive 上行链路切换器"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr "不管已经存在的连接,主动扫描并切换到更高优先级的上行链路。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr "用于travelmate电子邮件提醒的“msmtp”资料。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr "二维码概览"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr "发射天线选择"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr "随机MAC地址"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr "travelmate电子邮件提醒的收件人地址。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr "为选中的AP生成二维码来便利的传输登录信息至移动设备。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr "重复扫描"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr "连接到上行链路的重试次数限制。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "运行标记"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID(隐藏)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "保存"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
-msgstr "扫描用缓冲区大小"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
+msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr "在此扫描"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr "脚本参数"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr "travelmate电子邮件提醒的发件人地址。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr "在每次上行链路连接成功后都发送电子邮件提醒。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr "服务优先级"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "设置"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr "信号质量阈值"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr "分隔传递给自动登录脚本的其他可选参数的列表,比如用户名和密码"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr "在此开始无线扫描"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr "站点ID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "站点接口"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr "站点MAC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "状态 / 版本"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr "强度"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr "TTLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr "无法生成二维码!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr "防火墙区域名称"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr "接口跃点"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr "VPN网络逻辑接口,如“wg0”或“tun0”。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr "选中的网址将用于网络可连接性和强制登录门户检查。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr "travelmate进程的优先级。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -626,21 +626,21 @@ msgstr "选中的用户将用于网络可连接性和强制登录门户检查。
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr "此表单显示 syslog 输出,仅针对 travelmate 相关消息进行预过滤。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr "上行链路接口已被更新。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr "上行链路接口名称"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
@@ -649,7 +649,7 @@ msgstr ""
 "为了使用travelmate,你需要设置一次上行链路接口。此向导将生成IPv4和IPv6的相关"
 "网络接口及其相关的防火墙和网络设置。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr "travelmate电子邮件提醒的标题。"
 
@@ -657,155 +657,155 @@ msgstr "travelmate电子邮件提醒的标题。"
 msgid "Travelmate"
 msgstr "Travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr "Travelmate设置"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr "将无法连接互联网视为错误。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "触发延时"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr "User Agent"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr "VPN接口"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr "VPN接口"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr "VPN服务"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr "VPN设置"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "详细的调试记录"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr "WPA Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr "WPA Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr "WPA参数"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr "WPA Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr "WPA Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr "WPA Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr "WPA/WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr "WPA/WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr "WPA/WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr "WPA/WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr "WPA2 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr "WPA2 Ent. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr "WPA2 Pers."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr "WPA2 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr "WPA2 Pers. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr "WPA2/WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr "WPA2/WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr "WPA2/WPA3 Pers. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr "WPA3 Ent."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr "WPA3 Ent. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr "WPA3 OWE (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr "WPA3 Pers. (SAE)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "无线扫描"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr "无线设置"
 
@@ -813,37 +813,52 @@ msgstr "无线设置"
 msgid "Wireless Stations"
 msgstr "无线站点"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr "auth=MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr "auth=PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "无"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
+#~ msgid "Buffer size in bytes to prepare nearby scan results."
+#~ msgstr "用于暂存扫描结果的缓冲区大小(单位为字节)。"
+
+#~ msgid ""
+#~ "Overview of all configured uplinks for travelmate.<br /> You can edit, "
+#~ "remove or prioritize existing uplinks by drag &#38; drop and scan for new "
+#~ "ones. The currently used uplink is emphasized in blue."
+#~ msgstr ""
+#~ "travelmate已配置的所有上行链路概览。<br />你可以通过拖放来对已有的上行链路"
+#~ "进行编辑、移除、排序,或者扫描新的上行链路。目前使用中的上行链路会用蓝色予"
+#~ "以强调。"
+
+#~ msgid "Scan Buffer Size"
+#~ msgstr "扫描用缓冲区大小"
+
 #~ msgid "Automatically handle VPN (re-) connections."
 #~ msgstr "自动处理VPN(重)连接。"
 
index b1ef03187c649f73f7d780190bdd2a85c5c5b57b..5fa8282c45b75ce9988f292d43eb47fb90819d54 100644 (file)
@@ -16,49 +16,49 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.7\n"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
 msgid "-- AP Selection --"
 msgstr "-- 選擇AP --"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270
 msgid "AP QR-Codes..."
 msgstr "AP QR-Codes..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
 msgid "Add Uplink %q"
 msgstr "新增上行連接 %q"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819
 msgid "Add Uplink..."
 msgstr "上行連接..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
 msgid "Additional Settings"
 msgstr "附加設定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid ""
 "Additional trigger delay in seconds before travelmate processing begins."
 msgstr "附加觸發 travelmate 行程開始延遲的秒數。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
 msgid "Authentication"
 msgstr "認證"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
 msgid "Auto Added Open Uplink"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574
 msgid "Auto Login Script"
 msgstr "自動登入指令碼"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid "AutoAdd Open Uplinks"
 msgstr "自動新增開放的上行連接"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
 msgid ""
 "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
 "failed login attempts.<br /> The default of '0' disables this feature."
@@ -66,13 +66,13 @@ msgstr ""
 "在登錄失敗等情況下,等待<em>n</em>分鍾後 (重新) 啟用上傳。<br />預設數值 '0' "
 "將停用此功能。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:332
 msgid ""
 "Automatically add open uplinks like hotel captive portals to your wireless "
 "config."
 msgstr "自動新增開放的上行連接 (例如旅館的強制登錄門戶) 加入到您的無線設定中。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:533
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
 msgid ""
 "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
 "connections.<br /> The default of '0' disables this feature."
@@ -80,42 +80,38 @@ msgstr ""
 "在連接逾時等情況下,等待<em>n</em>分鍾後自動停用上行連接。<br />預設數值 '0' "
 "將停用此功能。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid ""
 "Automatically handle VPN connections.<br /> Please note: This feature "
 "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
 "em>."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:288
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:876
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
 msgid "BSSID"
 msgstr "BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Buffer size in bytes to prepare nearby scan results."
-msgstr "緩衝區大小(以位元組為單位)以準備附近的掃描結果。"
-
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
 msgid "CHAP"
 msgstr "CHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid "Captive Portal Detection"
 msgstr "網頁驗證入口偵測"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid "Captive Portal URL"
 msgstr "網頁驗證入口網址"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:706
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712
 msgid "Channel"
 msgstr "頻道"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315
 msgid ""
 "Check the internet availability, handle captive portal redirections and keep "
 "the uplink connection 'alive'."
@@ -137,145 +133,145 @@ msgstr ""
 "請注意:</em>第一次啟動時,請呼叫「介面精靈」一次,以進行必要的網路和防火牆設"
 "定。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:478
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484
 msgid "Connection End"
 msgstr "連接終止"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:550
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
 msgid "Connection End Expiry"
 msgstr "連線終止逾時"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Connection Limit"
 msgstr "連線限制"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473
 msgid "Connection Start"
 msgstr "連線啟動"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:532
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538
 msgid "Connection Start Expiry"
 msgstr "連線啟動逾時"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:281
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287
 msgid "Device"
 msgstr "裝置"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:849
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855
 msgid "Device Name"
 msgstr "裝置名稱"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:45
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968
 msgid "Dismiss"
 msgstr "關閉"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
 msgid "Drag to reorder"
 msgstr "拖動來排序"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "E-Mail Hook"
 msgstr "電子郵件掛鉤"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "E-Mail Profile"
 msgstr "電郵設定檔"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "E-Mail Receiver Address"
 msgstr "電郵收件人位址"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "E-Mail Sender Address"
 msgstr "電郵寄件人位址"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid "E-Mail Settings"
 msgstr "電子郵件設定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "E-Mail Topic"
 msgstr "電郵主旨"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:401
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932
 msgid "EAP-GTC"
 msgstr "EAP-GTC"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933
 msgid "EAP-MD5"
 msgstr "EAP-MD5"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
 msgid "EAP-MSCHAPV2"
 msgstr "EAP-MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:387
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:912
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918
 msgid "EAP-Method"
 msgstr "可擴展身份驗證協定(EAP)-方式"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
 msgid "EAP-TLS"
 msgstr "EAP-TLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260
 msgid "Edit"
 msgstr "編輯"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258
 msgid "Edit this network"
 msgstr "編輯此網路"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
 msgid "Enable the travelmate service."
 msgstr "啟用 travelmate 服務。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Enable verbose debug logging in case of any processing errors."
 msgstr "在出現任何處理錯誤的情況下,請啟用詳細除錯日誌記錄。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263
 msgid "Enable/Disable this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275
 msgid "Enabled"
 msgstr "啟用"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:292
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
 msgid "Encryption"
 msgstr "加密(Encryption)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251
 msgid "Ext. Hooks"
 msgstr "外部掛勾"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:569
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575
 msgid ""
 "External script reference which will be called for automated captive portal "
 "logins."
 msgstr "引用外部指令碼,將用於網頁驗證入口的登錄。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:391
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:917
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923
 msgid "FAST"
 msgstr "快速"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
 msgid "General Settings"
 msgstr "一般設定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Generate a random unicast MAC address for each uplink connection."
 msgstr "為每個上行連路產生一個隨機的單播MAC 位址。"
 
@@ -283,79 +279,83 @@ msgstr "為每個上行連路產生一個隨機的單播MAC 位址。"
 msgid "Grant access to LuCI app travelmate"
 msgstr "授予 luci-app-travelmate 擁有 UCI 存取的權限"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid ""
 "How long should travelmate wait for a successful wlan uplink connection."
 msgstr "travelmate 等待 wlan 上行連線成功最長時間。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
 msgid "Identify"
 msgstr "識別"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874
 msgid "Ignore BSSID"
 msgstr "忽略 BSSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:220
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225
 msgid "Information"
 msgstr "資訊"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:853
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859
 msgid "Interface Name"
 msgstr "介面名稱"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
 msgid "Interface Timeout"
 msgstr "介面逾時"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:22
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
 msgid "Interface Wizard"
 msgstr "介面精靈"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284
 msgid "Interface Wizard..."
 msgstr "介面精靈..."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255
 msgid "Last Run"
 msgstr "最後執行"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid "Limit AutoAdd"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336
 msgid ""
 "Limit the maximum number of automatically added open uplinks. To disable "
 "this limitation set it to '0'."
 msgstr ""
 
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Limit the nearby scan results to process only the strongest uplinks."
+msgstr ""
+
 #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
 msgid "Log View"
 msgstr "日誌檢視"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512
 msgid "MAC Address"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:399
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:924
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
 msgid "MSCHAP"
 msgstr "MSCHAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:400
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:925
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
 msgid "MSCHAPV2"
 msgstr "MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid ""
 "Minimum signal quality threshold as percent for conditional uplink (dis-) "
 "connections."
 msgstr "最小訊號品質閾值 (百分比),作為 (中斷) 連線上行的條件。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Net Error Check"
 msgstr "網路錯誤檢查"
 
@@ -363,19 +363,19 @@ msgstr "網路錯誤檢查"
 msgid "No travelmate related logs yet!"
 msgstr "還沒有和 travlemate 相關的日誌!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
 msgid "OWE"
 msgstr "OWE"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265
 msgid "On/Off"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall Timeout"
 msgstr "總體逾時"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:360
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
 msgid "Overall retry timeout in seconds."
 msgstr "總體重試逾時 (秒)。"
 
@@ -383,239 +383,240 @@ msgstr "總體重試逾時 (秒)。"
 msgid "Overview"
 msgstr "概覽"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:231
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235
 msgid ""
-"Overview of all configured uplinks for travelmate.<br /> You can edit, "
-"remove or prioritize existing uplinks by drag &#38; drop and scan for new "
-"ones. The currently used uplink is emphasized in blue."
+"Overview of all configured uplinks for travelmate. You can edit, remove or "
+"prioritize existing uplinks by drag &#38; drop and scan for new ones.<br /> "
+"The currently used uplink connection is emphasized in <span style=\"color:"
+"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
+"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
+"bold\">green</span>."
 msgstr ""
-"travelmate 已設定的所有上行概覽。<br />您可以透過拖曳來對已有的上行進行編輯、"
-"移除、排序,或者掃描新的上行。目前使用中的上行會用藍色予以強調。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
 msgid "PAP"
 msgstr "PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:390
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:916
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:922
 msgid "PEAP"
 msgstr "PEAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911
 msgid "Password"
 msgstr "密碼"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
 msgid "Password of Private Key"
 msgstr "私鑰密碼"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
 msgid "Path to CA-Certificate"
 msgstr "CA 憑證路徑"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
 msgid "Path to Client-Certificate"
 msgstr "用戶憑證的路徑"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
 msgid "Path to Private Key"
 msgstr "私鑰的路徑"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267
 msgid "Please install the separate 'qrencode' package."
 msgstr "請安裝「qrencode」套件。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297
 msgid ""
 "Please note: E-Mail notifications require the separate setup of the "
 "<em>mstmp</em> package.<br /><p>&#xa0;</p>"
 msgstr "請注意:電子郵件通知需要安裝<em>mstmp</em>套件<br /><p>&#xa0;</p>"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid "ProActive Uplink Switch"
 msgstr "ProActive 上行切換器"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:324
 msgid ""
 "Proactively scan and switch to a higher prioritized uplink, despite of an "
 "already existing connection."
 msgstr "不管已經存在的連線,主動掃描並切換到更高優先順序的上行。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:423
 msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
 msgstr "用於 travelmate 電子郵件提醒的「msmtp」資料。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
 msgid "QR-Code Overview"
 msgstr "QR-Code 概覽"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid "Radio Selection"
 msgstr "發射天線選擇"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
 msgid "Randomize MAC Addresses"
 msgstr "隨機 MAC 位址"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
 msgid "Receiver address for travelmate notification E-Mails."
 msgstr "travelmate 電子郵件提醒的收件人位址。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270
 msgid "Remove"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268
 msgid "Remove this network"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118
 msgid ""
 "Render the QR-Code of the selected Access Point to comfortably transfer the "
 "WLAN credentials to your mobile devices."
 msgstr "為選取的 AP 產生 QR-Code 來便利的傳輸登錄資訊至行動裝置。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732
 msgid "Repeat Scan"
 msgstr "重複掃描"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277
 msgid "Restart Interface"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
 msgid ""
 "Restrict travelmate to a single radio or change the overall scanning order."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
 msgid "Retry limit to connect to an uplink."
 msgstr "連線到上行連線的重試限制。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247
 msgid "Run Flags"
 msgstr "執行旗標"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868
 msgid "SSID"
 msgstr "SSID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864
 msgid "SSID (hidden)"
 msgstr "SSID (隱藏)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
 msgid "Save"
 msgstr "儲存"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
-msgid "Scan Buffer Size"
-msgstr "掃描緩衝區大小"
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+msgid "Scan Limit"
+msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697
 msgid "Scan on"
 msgstr "在此掃描"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613
 msgid "Script Arguments"
 msgstr "指令碼參數"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
 msgid "Sender address for travelmate notification E-Mails."
 msgstr "travelmate 電子郵件提醒的發件人位址。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:405
 msgid "Sends notification E-Mails after every succesful uplink connect."
 msgstr "在每次上行連接成功後都傳送電子郵件提醒。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "Service Priority"
 msgstr "服務優先權"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293
 msgid "Settings"
 msgstr "設定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355
 msgid "Signal Quality Threshold"
 msgstr "訊號品質閾值"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614
 msgid ""
 "Space separated list of additional arguments passed to the Auto Login "
 "Script, i.e. username and password"
 msgstr "分隔傳遞給自動登錄指令碼的其他可選參數的列表,比如使用者名稱和密碼"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:719
 msgid "Starting wireless scan on '"
 msgstr "在此開始無線掃描"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231
 msgid "Station ID"
 msgstr "站台 ID"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239
 msgid "Station Interface"
 msgstr "站台介面"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235
 msgid "Station MAC"
 msgstr "站台MAC位址"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227
 msgid "Status / Version"
 msgstr "狀態/版本"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711
 msgid "Strength"
 msgstr "強度"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
 msgid "TLS"
 msgstr "傳輸層安全性協定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921
 msgid "TTLS"
 msgstr "TTLS"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108
 msgid "The QR-Code could not be generated!"
 msgstr "無法產生 QR-Code!"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
 msgid "The firewall zone name"
 msgstr "防火牆區域名稱"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
 msgid "The interface metric"
 msgstr "介面指標"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
 msgstr "VPN 網路邏輯介面,如「wg0」或「tun0」。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
 msgid ""
 "The selected URL will be used for connectivity- and captive portal checks."
 msgstr "選取的網址將用於網路可連接性和網頁驗證入口檢查。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:393
 msgid "The selected priority will be used for travelmate processes."
 msgstr "travelmate 行程將使用已選擇的優先權。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid ""
 "The selected user agent will be used for connectivity- and captive portal "
 "checks."
@@ -625,21 +626,21 @@ msgstr "選取的使用者將用於網路可連接性和網頁驗證入口檢查
 msgid "The syslog output, pre-filtered for travelmate related messages only."
 msgstr "此表單顯示 syslog 輸出,僅針對 travelmate 相關訊息進行預過濾。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
 msgid "The uplink interface has been updated."
 msgstr "上行介面已被更新。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
 msgid "The uplink interface name"
 msgstr "上行介面名稱"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496
 msgid ""
 "This option is selected by default if this uplink was added automatically "
 "and counts as 'Open Uplink'."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
 msgid ""
 "To use Travelmate, you have to set up an uplink interface once. This wizard "
 "creates an IPv4- and an IPv6 alias network interface with all required "
@@ -648,7 +649,7 @@ msgstr ""
 "為了使用 travelmate,您需要設定一次上行介面。此精靈將產生 IPv4 和 IPv6 的相關"
 "網路介面及其相關的防火牆和網路設定。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418
 msgid "Topic for travelmate notification E-Mails."
 msgstr "travelmate 電子郵件提醒的標題。"
 
@@ -656,155 +657,155 @@ msgstr "travelmate 電子郵件提醒的標題。"
 msgid "Travelmate"
 msgstr "travelmate"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245
 msgid "Travelmate Settings"
 msgstr "travelmate 設定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319
 msgid "Treat missing internet availability as an error."
 msgstr "將無法連接網際網路視為錯誤。"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345
 msgid "Trigger Delay"
 msgstr "觸發延遲"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513
 msgid "Use the specified MAC address for this uplink."
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:384
 msgid "User Agent"
 msgstr "用戶代理"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634
 msgid "VPN Hook"
 msgstr "VPN掛鉤"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666
 msgid "VPN Interface"
 msgstr "VPN 介面"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651
 msgid "VPN Service"
 msgstr "VPN 服務"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246
 msgid "VPN Settings"
 msgstr "VPN 設定"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
 msgid "Verbose Debug Logging"
 msgstr "詳細除錯日誌"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903
 msgid "WPA Ent. (CCMP)"
 msgstr "WPA企業(CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904
 msgid "WPA Ent. (TKIP)"
 msgstr "WPA 企業. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243
 msgid "WPA Flags"
 msgstr "WPA 參數"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
 msgid "WPA Pers."
 msgstr "WPA 個人."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
 msgid "WPA Pers. (CCMP)"
 msgstr "WPA 個人. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
 msgid "WPA Pers. (TKIP)"
 msgstr "WPA 個人. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
 msgid "WPA/WPA2 Ent. (CCMP)"
 msgstr "WPA/WPA2 企業. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906
 msgid "WPA/WPA2 Ent. (TKIP)"
 msgstr "WPA/WPA2 個人. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897
 msgid "WPA/WPA2 Pers. (CCMP)"
 msgstr "WPA/WPA2 個人. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898
 msgid "WPA/WPA2 Pers. (TKIP)"
 msgstr "WPA/WPA2 個人. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
 msgid "WPA2 Ent. (CCMP)"
 msgstr "WPA2 企業. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
 msgid "WPA2 Ent. (TKIP)"
 msgstr "WPA2 企業. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891
 msgid "WPA2 Pers."
 msgstr "WPA2 個人."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892
 msgid "WPA2 Pers. (CCMP)"
 msgstr "WPA2 個人. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
 msgid "WPA2 Pers. (TKIP)"
 msgstr "WPA2 個人. (TKIP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900
 msgid "WPA2/WPA3 Ent."
 msgstr "WPA2/WPA3 企業."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
 msgid "WPA2/WPA3 Ent. (CCMP)"
 msgstr "WPA2/WPA3 企業 (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890
 msgid "WPA2/WPA3 Pers. (CCMP)"
 msgstr "WPA2/WPA3 個人. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899
 msgid "WPA3 Ent."
 msgstr "WPA3 企業."
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
 msgid "WPA3 Ent. (CCMP)"
 msgstr "WPA3 企業. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907
 msgid "WPA3 OWE (CCMP)"
 msgstr "WPA3 OWE (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889
 msgid "WPA3 Pers. (SAE)"
 msgstr "WPA3 個人. (CCMP)"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721
 msgid "Wireless Scan"
 msgstr "無線掃描"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
 msgid "Wireless Settings"
 msgstr "無線設定"
 
@@ -812,37 +813,51 @@ msgstr "無線設定"
 msgid "Wireless Stations"
 msgstr "無線站點"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
 msgid "auth=MSCHAPV2"
 msgstr "驗證= MSCHAPV2"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
 msgid "auth=PAP"
 msgstr "驗證= PAP"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908
 msgid "none"
 msgstr "無"
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
 msgid "use both radios, normal sort order (radio0 radio1)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312
 msgid "use both radios, reverse sort order (radio1 radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
 msgid "use the first radio only (radio0)"
 msgstr ""
 
-#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305
+#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
 msgid "use the second radio only (radio1)"
 msgstr ""
 
+#~ msgid "Buffer size in bytes to prepare nearby scan results."
+#~ msgstr "緩衝區大小(以位元組為單位)以準備附近的掃描結果。"
+
+#~ msgid ""
+#~ "Overview of all configured uplinks for travelmate.<br /> You can edit, "
+#~ "remove or prioritize existing uplinks by drag &#38; drop and scan for new "
+#~ "ones. The currently used uplink is emphasized in blue."
+#~ msgstr ""
+#~ "travelmate 已設定的所有上行概覽。<br />您可以透過拖曳來對已有的上行進行編"
+#~ "輯、移除、排序,或者掃描新的上行。目前使用中的上行會用藍色予以強調。"
+
+#~ msgid "Scan Buffer Size"
+#~ msgstr "掃描緩衝區大小"
+
 #~ msgid "Automatically handle VPN (re-) connections."
 #~ msgstr "自動處理 VPN (重新) 連接。"
 
index ffd5fe3bdb0bf145e174179d64ea5f5ca325cf86..4c91d6e8ebfae5b56c8e5e3943c581e0f2c46986 100644 (file)
@@ -17,6 +17,8 @@
                                "/sbin/logread -e trm-": [ "exec" ],
                                "/usr/sbin/logread -e trm-": [ "exec" ],
                                "/usr/sbin/ifup *": [ "exec" ],
+                               "/etc/init.d/travelmate start" : [ "exec" ],
+                               "/etc/init.d/travelmate stop" : [ "exec" ],
                                "/etc/init.d/travelmate reload" : [ "exec" ],
                                "/etc/init.d/travelmate restart" : [ "exec" ],
                                "/etc/init.d/travelmate assoc" : [ "exec" ],