Put zip feature back until debug until new agent.
Ylian Saint-Hilaire committed
Aug 19, 2020 at 14:01 UTC
972e254d915145cd61252fcc7b83e3c350c1f8fb
3 files changed
+1121
-1123
agents/meshcore.js
+14
-20
@@ -2140,34 +2140,28 @@ function createMeshCore(agent) {
2140
}
2141
case 'zip':
2142
// Zip a bunch of files
2143
+ if (this.zip != null) return; // Zip operating is currently running, exit now.
2144
+
2145
+ // Check that the specified files exist & build full paths
2146
var fp, stat, p = [];
2144
- for (var i in cmd.files) {
2145
- // Right now, we only zip files.
2146
- // TODO: Support folder compression
2147
- // TODO: Support compression relative to a root path
2148
- // TODO: Support the 'cancel' operation below
2149
- fp = cmd.path + '/' + cmd.files[i];
2150
- stat = null;
2151
- try { stat = fs.statSync(fp); } catch (e) { }
2152
- if ((stat != null) && (stat.isDirectory() == false) && (stat.size != null) && (stat.size > 0)) { p.push(fp); }
2153
- }
2154
- if (p.length == 0) return;
2147
+ for (var i in cmd.files) { fp = cmd.path + '/' + cmd.files[i]; stat = null; try { stat = fs.statSync(fp); } catch (e) { } if (stat != null) { p.push(fp); } }
2148
+ if (p.length == 0) return; // No files, quit now.
2149
+
2150
+ // Setup file compression
2151
var ofile = cmd.path + '/' + cmd.output;
2152
this.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'zipping' })));
2153
var out = require('fs').createWriteStream(ofile, { flags: 'wb' });
2158
- out.fname = ofile;
2154
out.xws = this;
2160
- out.on('close', function () {
2161
- this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: null })));
2162
- this.xws.write(Buffer.from(JSON.stringify({ action: 'refresh' })));
2163
- });
2164
- this.zip = require('zip-writer').write({ files: p });
2155
+ out.on('close', function () { this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: null }))); this.xws.write(Buffer.from(JSON.stringify({ action: 'refresh' }))); this.xws.zip = null; });
2156
+ this.zip = require('zip-writer').write({ files: p, basePath: cmd.path });
2157
+ this.zip.xws = this;
2158
+ this.zip.on('progress', require('events').moderated(function (name, p) { this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'zippingFile', file: ((process.platform == 'win32') ? (name.split('/').join('\\')) : name), progress: p }))); }, 2000));
2159
this.zip.pipe(out);
2160
break;
2161
case 'cancel':
2168
- // TODO: Cancel zip operation if present
2169
- //sendConsoleText('Cancel operation');
2170
- try { this.zip.cancel(function () { sendConsoleText('Zip operation was cancelled'); }); } catch (ex) { }
2162
+ // Cancel zip operation if present
2163
+ try { this.zip.cancel(function () { }); } catch (ex) { }
2164
+ this.zip = null;
2165
break;
2166
default:
2167
// Unknown action, ignore it.
translate/translate.json
+1104
-1103
@@ -15,8 +15,8 @@
15
"zh-chs": " + CIRA",
16
"fi": " + CIRA",
17
"xloc": [
18
- "default.handlebars->27->1303",
19
- "default.handlebars->27->1305"
18
+ "default.handlebars->27->1304",
19
+ "default.handlebars->27->1306"
20
]
21
},
22
{
@@ -184,7 +184,7 @@
184
"zh-chs": " 可以使用密碼提示,但不建議使用。",
185
"fi": " Salasanavihjeitä voidaan käyttää, mutta niitä ei suositella.",
186
"xloc": [
187
- "default.handlebars->27->1226"
187
+ "default.handlebars->27->1227"
188
]
189
},
190
{
@@ -202,8 +202,8 @@
202
"zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
203
"fi": " Käyttäjien on kirjauduttava sisään tähän palvelimeen kerran, ennen kuin heidät voidaan lisätä laiteryhmään.",
204
"xloc": [
205
- "default.handlebars->27->1378",
206
- "default.handlebars->27->1723"
205
+ "default.handlebars->27->1379",
206
+ "default.handlebars->27->1724"
207
]
208
},
209
{
@@ -418,7 +418,7 @@
418
"zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
419
"fi": "* Jätä tyhjäksi antaaksesi satunnaisen salasanan jokaiselle laitteelle.",
420
"xloc": [
421
- "default.handlebars->27->1350"
421
+ "default.handlebars->27->1351"
422
]
423
},
424
{
@@ -454,7 +454,7 @@
454
"fi": ", ",
455
"xloc": [
456
"default-mobile.handlebars->9->449",
457
- "default.handlebars->27->1445"
457
+ "default.handlebars->27->1446"
458
]
459
},
460
{
@@ -491,7 +491,7 @@
491
"zh-chs": ",MQTT在線",
492
"fi": ", MQTT on online-tilassa",
493
"xloc": [
494
- "default.handlebars->27->969"
494
+ "default.handlebars->27->970"
495
]
496
},
497
{
@@ -684,9 +684,9 @@
684
"xloc": [
685
"default-mobile.handlebars->9->108",
686
"default-mobile.handlebars->9->295",
687
- "default.handlebars->27->1486",
688
- "default.handlebars->27->1878",
689
- "default.handlebars->27->852"
687
+ "default.handlebars->27->1487",
688
+ "default.handlebars->27->1879",
689
+ "default.handlebars->27->853"
690
]
691
},
692
{
@@ -738,7 +738,7 @@
738
"zh-chs": "1個活動會話",
739
"fi": "1 aktiivinen istunto",
740
"xloc": [
741
- "default.handlebars->27->1792"
741
+ "default.handlebars->27->1793"
742
]
743
},
744
{
@@ -758,7 +758,7 @@
758
"xloc": [
759
"default-mobile.handlebars->9->118",
760
"default-mobile.handlebars->9->453",
761
- "default.handlebars->27->1510"
761
+ "default.handlebars->27->1511"
762
]
763
},
764
{
@@ -807,7 +807,7 @@
807
"zh-chs": "1組",
808
"fi": "1 ryhmä",
809
"xloc": [
810
- "default.handlebars->27->1757"
810
+ "default.handlebars->27->1758"
811
]
812
},
813
{
@@ -898,7 +898,7 @@
898
"zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
899
"fi": "1 muuta käyttäjää ei näy, käytä hakukenttää etsiäksesi käyttäjiä ...",
900
"xloc": [
901
- "default.handlebars->27->1559"
901
+ "default.handlebars->27->1560"
902
]
903
},
904
{
@@ -958,7 +958,7 @@
958
"default-mobile.handlebars->9->168",
959
"default-mobile.handlebars->9->171",
960
"default-mobile.handlebars->9->174",
961
- "default.handlebars->27->1563",
961
+ "default.handlebars->27->1564",
962
"default.handlebars->27->239",
963
"default.handlebars->27->242",
964
"default.handlebars->27->245",
@@ -1278,8 +1278,8 @@
1278
"zh-chs": "啟用第二因素身份驗證",
1279
"fi": "kaksivaiheinen todennus käytössä",
1280
"xloc": [
1281
- "default.handlebars->27->1576",
1282
- "default.handlebars->27->1779"
1281
+ "default.handlebars->27->1577",
1282
+ "default.handlebars->27->1780"
1283
]
1284
},
1285
{
@@ -2073,7 +2073,7 @@
2073
"zh-chs": "拒絕訪問",
2074
"fi": "Pääsy Evätty",
2075
"xloc": [
2076
- "default.handlebars->27->970"
2076
+ "default.handlebars->27->971"
2077
]
2078
},
2079
{
@@ -2110,7 +2110,7 @@
2110
"zh-chs": "訪問服務器文件",
2111
"fi": "Pääsy palvelintiedostoihin",
2112
"xloc": [
2113
- "default.handlebars->27->1729"
2113
+ "default.handlebars->27->1730"
2114
]
2115
},
2116
{
@@ -2189,8 +2189,8 @@
2189
"default-mobile.handlebars->9->93",
2190
"default-mobile.handlebars->9->95",
2191
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2192
- "default.handlebars->27->1235",
2193
- "default.handlebars->27->1237",
2192
+ "default.handlebars->27->1236",
2193
+ "default.handlebars->27->1238",
2194
"default.handlebars->27->529",
2195
"default.handlebars->27->531"
2196
]
@@ -2241,8 +2241,8 @@
2241
"zh-chs": "帐户已被锁定",
2242
"fi": "Tili on lukittu",
2243
"xloc": [
2244
- "default.handlebars->27->1578",
2245
- "default.handlebars->27->1726"
2244
+ "default.handlebars->27->1579",
2245
+ "default.handlebars->27->1727"
2246
]
2247
},
2248
{
@@ -2335,7 +2335,7 @@
2335
"zh-chs": "行動",
2336
"fi": "Toiminta",
2337
"xloc": [
2338
- "default.handlebars->27->975",
2338
+ "default.handlebars->27->976",
2339
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2340
]
2341
},
@@ -2438,7 +2438,7 @@
2438
"default-mobile.handlebars->9->358",
2439
"default.handlebars->27->553",
2440
"default.handlebars->27->555",
2441
- "default.handlebars->27->933"
2441
+ "default.handlebars->27->934"
2442
]
2443
},
2444
{
@@ -2456,8 +2456,8 @@
2456
"zh-chs": "激活",
2457
"fi": "Aktivointi",
2458
"xloc": [
2459
- "default.handlebars->27->1316",
2460
- "default.handlebars->27->1318",
2459
+ "default.handlebars->27->1317",
2460
+ "default.handlebars->27->1319",
2461
"default.handlebars->27->272",
2462
"default.handlebars->27->274"
2463
]
@@ -2495,7 +2495,7 @@
2495
"zh-chs": "添加代理",
2496
"fi": "Lisää agentti",
2497
"xloc": [
2498
- "default.handlebars->27->1320",
2498
+ "default.handlebars->27->1321",
2499
"default.handlebars->27->276"
2500
]
2501
},
@@ -2532,8 +2532,8 @@
2532
"zh-chs": "添加設備",
2533
"fi": "Lisää Laite",
2534
"xloc": [
2535
- "default.handlebars->27->1703",
2536
- "default.handlebars->27->1827"
2535
+ "default.handlebars->27->1704",
2536
+ "default.handlebars->27->1828"
2537
]
2538
},
2539
{
@@ -2569,9 +2569,9 @@
2569
"zh-chs": "添加設備組",
2570
"fi": "Lisää laiteryhmä",
2571
"xloc": [
2572
- "default.handlebars->27->1411",
2573
- "default.handlebars->27->1697",
2574
- "default.handlebars->27->1815",
2572
+ "default.handlebars->27->1412",
2573
+ "default.handlebars->27->1698",
2574
+ "default.handlebars->27->1816",
2575
"default.handlebars->27->227"
2576
]
2577
},
@@ -2587,7 +2587,7 @@
2587
"zh-chs": "添加设备组权限",
2588
"fi": "Lisää laiteryhmän käyttöoikeudet",
2589
"xloc": [
2590
- "default.handlebars->27->1408"
2590
+ "default.handlebars->27->1409"
2591
]
2592
},
2593
{
@@ -2604,8 +2604,8 @@
2604
"zh-chs": "添加设备权限",
2605
"fi": "Lisää laitteen käyttöoikeudet",
2606
"xloc": [
2607
- "default.handlebars->27->1413",
2608
- "default.handlebars->27->1415"
2607
+ "default.handlebars->27->1414",
2608
+ "default.handlebars->27->1416"
2609
]
2610
},
2611
{
@@ -2695,7 +2695,7 @@
2695
"zh-chs": "添加會員",
2696
"fi": "Lisää jäsenyys",
2697
"xloc": [
2698
- "default.handlebars->27->1845"
2698
+ "default.handlebars->27->1846"
2699
]
2700
},
2701
{
@@ -2731,8 +2731,8 @@
2731
"zh-chs": "添加安全密鑰",
2732
"fi": "Lisää suojausavain",
2733
"xloc": [
2734
- "default.handlebars->27->1003",
2734
"default.handlebars->27->1004",
2735
+ "default.handlebars->27->1005",
2736
"default.handlebars->27->149",
2737
"default.handlebars->27->151",
2738
"default.handlebars->27->154",
@@ -2772,7 +2772,7 @@
2772
"zh-chs": "添加用户设备权限",
2773
"fi": "Lisää käyttäjän laitteen käyttöoikeudet",
2774
"xloc": [
2775
- "default.handlebars->27->1418"
2775
+ "default.handlebars->27->1419"
2776
]
2777
},
2778
{
@@ -2790,9 +2790,9 @@
2790
"zh-chs": "添加用戶組",
2791
"fi": "Lisää Käyttäjä Ryhmä",
2792
"xloc": [
2793
- "default.handlebars->27->1310",
2794
- "default.handlebars->27->1410",
2795
- "default.handlebars->27->1821",
2793
+ "default.handlebars->27->1311",
2794
+ "default.handlebars->27->1411",
2795
+ "default.handlebars->27->1822",
2796
"default.handlebars->27->649"
2797
]
2798
},
@@ -2808,7 +2808,7 @@
2808
"zh-chs": "添加用户组设备权限",
2809
"fi": "Lisää käyttäjäryhmän laiteoikeudet",
2810
"xloc": [
2811
- "default.handlebars->27->1420"
2811
+ "default.handlebars->27->1421"
2812
]
2813
},
2814
{
@@ -2856,8 +2856,8 @@
2856
"zh-chs": "添加用戶",
2857
"fi": "Lisää Käyttäjiä",
2858
"xloc": [
2859
- "default.handlebars->27->1309",
2860
- "default.handlebars->27->1692"
2859
+ "default.handlebars->27->1310",
2860
+ "default.handlebars->27->1693"
2861
]
2862
},
2863
{
@@ -2875,7 +2875,7 @@
2875
"zh-chs": "將用戶添加到設備組",
2876
"fi": "Lisää käyttäjiä laiteryhmään",
2877
"xloc": [
2878
- "default.handlebars->27->1407"
2878
+ "default.handlebars->27->1408"
2879
]
2880
},
2881
{
@@ -2893,7 +2893,7 @@
2893
"zh-chs": "將用戶添加到用戶組",
2894
"fi": "Lisää käyttäjät käyttäjäryhmään",
2895
"xloc": [
2896
- "default.handlebars->27->1725"
2896
+ "default.handlebars->27->1726"
2897
]
2898
},
2899
{
@@ -2947,7 +2947,7 @@
2947
"zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。",
2948
"fi": "Lisää uusi Intel® AMT-tietokone, joka sijaitsee Internetissä.",
2949
"xloc": [
2950
- "default.handlebars->27->1311",
2950
+ "default.handlebars->27->1312",
2951
"default.handlebars->27->265"
2952
]
2953
},
@@ -2966,7 +2966,7 @@
2966
"zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。",
2967
"fi": "Lisää uusi Intel® AMT-tietokone, joka sijaitsee lähiverkossa.",
2968
"xloc": [
2969
- "default.handlebars->27->1313",
2969
+ "default.handlebars->27->1314",
2970
"default.handlebars->27->267"
2971
]
2972
},
@@ -3000,7 +3000,7 @@
3000
"zh-chs": "通过安装网状代理,将新计算机添加到该设备组。",
3001
"fi": "Lisää uusi tietokone tähän laiteryhmään asentamalla MeshAgent.",
3002
"xloc": [
3003
- "default.handlebars->27->1319",
3003
+ "default.handlebars->27->1320",
3004
"default.handlebars->27->275"
3005
]
3006
},
@@ -3065,7 +3065,7 @@
3065
"fi": "Järjestelmänvalvojan hallintatila (ACM)",
3066
"xloc": [
3067
"default-mobile.handlebars->9->360",
3068
- "default.handlebars->27->935"
3068
+ "default.handlebars->27->936"
3069
]
3070
},
3071
{
@@ -3084,7 +3084,7 @@
3084
"fi": "Järjestelmänvalvojan tunnukset",
3085
"xloc": [
3086
"default-mobile.handlebars->9->366",
3087
- "default.handlebars->27->941"
3087
+ "default.handlebars->27->942"
3088
]
3089
},
3090
{
@@ -3121,7 +3121,7 @@
3121
"zh-chs": "管理領域",
3122
"fi": "Pääkäyttäjän alueet",
3123
"xloc": [
3124
- "default.handlebars->27->1761"
3124
+ "default.handlebars->27->1762"
3125
]
3126
},
3127
{
@@ -3158,7 +3158,7 @@
3158
"zh-chs": "行政領域",
3159
"fi": "Hallinnollinen alue",
3160
"xloc": [
3161
- "default.handlebars->27->1641"
3161
+ "default.handlebars->27->1642"
3162
]
3163
},
3164
{
@@ -3176,7 +3176,7 @@
3176
"zh-chs": "管理員",
3177
"fi": "Järjestelmänvalvoja",
3178
"xloc": [
3179
- "default.handlebars->27->1570"
3179
+ "default.handlebars->27->1571"
3180
]
3181
},
3182
{
@@ -3193,7 +3193,7 @@
3193
"ru": "Африканский",
3194
"zh-chs": "南非語",
3195
"xloc": [
3196
- "default.handlebars->27->1006"
3196
+ "default.handlebars->27->1007"
3197
]
3198
},
3199
{
@@ -3214,8 +3214,8 @@
3214
"default-mobile.handlebars->9->199",
3215
"default-mobile.handlebars->9->223",
3216
"default-mobile.handlebars->9->239",
3217
- "default.handlebars->27->1472",
3218
- "default.handlebars->27->1480",
3217
+ "default.handlebars->27->1473",
3218
+ "default.handlebars->27->1481",
3219
"default.handlebars->27->206",
3220
"default.handlebars->27->431",
3221
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -3236,8 +3236,8 @@
3236
"zh-chs": "代理+英特爾AMT",
3237
"fi": "Agentti + Intel AMT",
3238
"xloc": [
3239
- "default.handlebars->27->1474",
3240
- "default.handlebars->27->1482"
3239
+ "default.handlebars->27->1475",
3240
+ "default.handlebars->27->1483"
3241
]
3242
},
3243
{
@@ -3274,7 +3274,7 @@
3274
"fi": "Agentin konsoli",
3275
"xloc": [
3276
"default-mobile.handlebars->9->433",
3277
- "default.handlebars->27->1428"
3277
+ "default.handlebars->27->1429"
3278
]
3279
},
3280
{
@@ -3292,7 +3292,7 @@
3292
"zh-chs": "座席錯誤計數器",
3293
"fi": "Agentin virhe laskurit",
3294
"xloc": [
3295
- "default.handlebars->27->1888"
3295
+ "default.handlebars->27->1889"
3296
]
3297
},
3298
{
@@ -3374,7 +3374,7 @@
3374
"zh-chs": "座席會議",
3375
"fi": "Agenttien istunnot",
3376
"xloc": [
3377
- "default.handlebars->27->1904"
3377
+ "default.handlebars->27->1905"
3378
]
3379
},
3380
{
@@ -3411,7 +3411,7 @@
3411
"zh-chs": "代理類型",
3412
"fi": "Agenttityypit",
3413
"xloc": [
3414
- "default.handlebars->27->1478",
3414
+ "default.handlebars->27->1479",
3415
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3416
]
3417
},
@@ -3468,7 +3468,7 @@
3468
"zh-chs": "代理離線",
3469
"fi": "Agentti on offline-tilassa",
3470
"xloc": [
3471
- "default.handlebars->27->968"
3471
+ "default.handlebars->27->969"
3472
]
3473
},
3474
{
@@ -3486,7 +3486,7 @@
3486
"zh-chs": "代理在線",
3487
"fi": "Agentti on online-tilassa",
3488
"xloc": [
3489
- "default.handlebars->27->967"
3489
+ "default.handlebars->27->968"
3490
]
3491
},
3492
{
@@ -3504,7 +3504,7 @@
3504
"zh-chs": "代理商",
3505
"fi": "Agentit",
3506
"xloc": [
3507
- "default.handlebars->27->1920"
3507
+ "default.handlebars->27->1921"
3508
]
3509
},
3510
{
@@ -3522,7 +3522,7 @@
3522
"zh-chs": "阿爾巴尼亞語",
3523
"fi": "Albanialainen",
3524
"xloc": [
3525
- "default.handlebars->27->1007"
3525
+ "default.handlebars->27->1008"
3526
]
3527
},
3528
{
@@ -3552,7 +3552,7 @@
3552
"fr": "Tous ceux disponibles",
3553
"fi": "Kaikki käytettävissä olevat",
3554
"xloc": [
3555
- "default.handlebars->27->1533"
3555
+ "default.handlebars->27->1534"
3556
]
3557
},
3558
{
@@ -3577,7 +3577,7 @@
3577
"es": "Todos los eventos",
3578
"fr": "Tous les évènements",
3579
"xloc": [
3580
- "default.handlebars->27->1531"
3580
+ "default.handlebars->27->1532"
3581
]
3582
},
3583
{
@@ -3614,8 +3614,8 @@
3614
"zh-chs": "允許用戶管理此設備組和該組中的設備。",
3615
"fi": "Salli käyttäjien hallita tätä laiteryhmää ja tämän ryhmän laitteita.",
3616
"xloc": [
3617
- "default.handlebars->27->1376",
3618
- "default.handlebars->27->1722"
3617
+ "default.handlebars->27->1377",
3618
+ "default.handlebars->27->1723"
3619
]
3620
},
3621
{
@@ -3632,7 +3632,7 @@
3632
"zh-chs": "允许用户管理此设备。",
3633
"fi": "Salli käyttäjien hallita tätä laitetta.",
3634
"xloc": [
3635
- "default.handlebars->27->1377"
3635
+ "default.handlebars->27->1378"
3636
]
3637
},
3638
{
@@ -3727,8 +3727,8 @@
3727
"zh-chs": "始終通知",
3728
"fi": "Ilmoita aina",
3729
"xloc": [
3730
- "default.handlebars->27->1290",
3731
- "default.handlebars->27->1770",
3730
+ "default.handlebars->27->1291",
3731
+ "default.handlebars->27->1771",
3732
"default.handlebars->27->589"
3733
]
3734
},
@@ -3747,8 +3747,8 @@
3747
"zh-chs": "總是提示",
3748
"fi": "Kysy Aina",
3749
"xloc": [
3750
- "default.handlebars->27->1291",
3751
- "default.handlebars->27->1771",
3750
+ "default.handlebars->27->1292",
3751
+ "default.handlebars->27->1772",
3752
"default.handlebars->27->590"
3753
]
3754
},
@@ -3957,7 +3957,7 @@
3957
"zh-chs": "阿拉伯文(阿爾及利亞)",
3958
"fi": "Arabia (Algeria)",
3959
"xloc": [
3960
- "default.handlebars->27->1009"
3960
+ "default.handlebars->27->1010"
3961
]
3962
},
3963
{
@@ -3975,7 +3975,7 @@
3975
"zh-chs": "阿拉伯文(巴林)",
3976
"fi": "Arabia (Bahrain)",
3977
"xloc": [
3978
- "default.handlebars->27->1010"
3978
+ "default.handlebars->27->1011"
3979
]
3980
},
3981
{
@@ -3993,7 +3993,7 @@
3993
"zh-chs": "阿拉伯文(埃及)",
3994
"fi": "Arabia (Egypti)",
3995
"xloc": [
3996
- "default.handlebars->27->1011"
3996
+ "default.handlebars->27->1012"
3997
]
3998
},
3999
{
@@ -4011,7 +4011,7 @@
4011
"zh-chs": "阿拉伯文(伊拉克)",
4012
"fi": "Arabia (Irak)",
4013
"xloc": [
4014
- "default.handlebars->27->1012"
4014
+ "default.handlebars->27->1013"
4015
]
4016
},
4017
{
@@ -4029,7 +4029,7 @@
4029
"zh-chs": "阿拉伯語(約旦)",
4030
"fi": "Arabia (Jordania)",
4031
"xloc": [
4032
- "default.handlebars->27->1013"
4032
+ "default.handlebars->27->1014"
4033
]
4034
},
4035
{
@@ -4047,7 +4047,7 @@
4047
"zh-chs": "阿拉伯文(科威特)",
4048
"fi": "Arabia (Kuwait)",
4049
"xloc": [
4050
- "default.handlebars->27->1014"
4050
+ "default.handlebars->27->1015"
4051
]
4052
},
4053
{
@@ -4065,7 +4065,7 @@
4065
"zh-chs": "阿拉伯語(黎巴嫩)",
4066
"fi": "Arabia (Libanon)",
4067
"xloc": [
4068
- "default.handlebars->27->1015"
4068
+ "default.handlebars->27->1016"
4069
]
4070
},
4071
{
@@ -4083,7 +4083,7 @@
4083
"zh-chs": "阿拉伯文(利比亞)",
4084
"fi": "Arabia (Libya)",
4085
"xloc": [
4086
- "default.handlebars->27->1016"
4086
+ "default.handlebars->27->1017"
4087
]
4088
},
4089
{
@@ -4101,7 +4101,7 @@
4101
"zh-chs": "阿拉伯文(摩洛哥)",
4102
"fi": "Arabia (Marokko)",
4103
"xloc": [
4104
- "default.handlebars->27->1017"
4104
+ "default.handlebars->27->1018"
4105
]
4106
},
4107
{
@@ -4119,7 +4119,7 @@
4119
"zh-chs": "阿拉伯文(阿曼)",
4120
"fi": "Arabia (Oman)",
4121
"xloc": [
4122
- "default.handlebars->27->1018"
4122
+ "default.handlebars->27->1019"
4123
]
4124
},
4125
{
@@ -4137,7 +4137,7 @@
4137
"zh-chs": "阿拉伯語(卡塔爾)",
4138
"fi": "Arabia (Qatar)",
4139
"xloc": [
4140
- "default.handlebars->27->1019"
4140
+ "default.handlebars->27->1020"
4141
]
4142
},
4143
{
@@ -4155,7 +4155,7 @@
4155
"zh-chs": "阿拉伯語(沙特阿拉伯)",
4156
"fi": "Arabia (Saudi-Arabia)",
4157
"xloc": [
4158
- "default.handlebars->27->1020"
4158
+ "default.handlebars->27->1021"
4159
]
4160
},
4161
{
@@ -4173,7 +4173,7 @@
4173
"zh-chs": "阿拉伯語(標準)",
4174
"fi": "Arabia (vakio)",
4175
"xloc": [
4176
- "default.handlebars->27->1008"
4176
+ "default.handlebars->27->1009"
4177
]
4178
},
4179
{
@@ -4191,7 +4191,7 @@
4191
"zh-chs": "阿拉伯語(敘利亞)",
4192
"fi": "Arabia (Syyria)",
4193
"xloc": [
4194
- "default.handlebars->27->1021"
4194
+ "default.handlebars->27->1022"
4195
]
4196
},
4197
{
@@ -4209,7 +4209,7 @@
4209
"zh-chs": "阿拉伯文(突尼斯)",
4210
"fi": "Arabia (Tunisia)",
4211
"xloc": [
4212
- "default.handlebars->27->1022"
4212
+ "default.handlebars->27->1023"
4213
]
4214
},
4215
{
@@ -4227,7 +4227,7 @@
4227
"zh-chs": "阿拉伯文(阿聯酋)",
4228
"fi": "Arabia (U..E.)",
4229
"xloc": [
4230
- "default.handlebars->27->1023"
4230
+ "default.handlebars->27->1024"
4231
]
4232
},
4233
{
@@ -4245,7 +4245,7 @@
4245
"zh-chs": "阿拉伯文(也門)",
4246
"fi": "Arabia (Jemen)",
4247
"xloc": [
4248
- "default.handlebars->27->1024"
4248
+ "default.handlebars->27->1025"
4249
]
4250
},
4251
{
@@ -4263,7 +4263,7 @@
4263
"zh-chs": "阿拉貢人",
4264
"fi": "Aragonian",
4265
"xloc": [
4266
- "default.handlebars->27->1025"
4266
+ "default.handlebars->27->1026"
4267
]
4268
},
4269
{
@@ -4282,7 +4282,7 @@
4282
"fi": "Arkkitehtuuri",
4283
"xloc": [
4284
"default-mobile.handlebars->9->330",
4285
- "default.handlebars->27->895"
4285
+ "default.handlebars->27->896"
4286
]
4287
},
4288
{
@@ -4319,7 +4319,7 @@
4319
"fi": "Haluatko varmasti poistaa ryhmän {0}? Laiteryhmän poistaminen poistaa myös kaikki tämän ryhmän laitteiden tiedot.",
4320
"xloc": [
4321
"default-mobile.handlebars->9->404",
4322
- "default.handlebars->27->1354"
4322
+ "default.handlebars->27->1355"
4323
]
4324
},
4325
{
@@ -4391,7 +4391,7 @@
4391
"zh-chs": "您確定要{0}插件嗎:{1}",
4392
"fi": "Haluatko varmasti {0} laajennuksen: {1}",
4393
"xloc": [
4394
- "default.handlebars->27->1960"
4394
+ "default.handlebars->27->1961"
4395
]
4396
},
4397
{
@@ -4409,7 +4409,7 @@
4409
"zh-chs": "亞美尼亞人",
4410
"fi": "Armenian",
4411
"xloc": [
4412
- "default.handlebars->27->1026"
4412
+ "default.handlebars->27->1027"
4413
]
4414
},
4415
{
@@ -4457,7 +4457,7 @@
4457
"zh-chs": "阿薩姆語",
4458
"fi": "Assami",
4459
"xloc": [
4460
- "default.handlebars->27->1027"
4460
+ "default.handlebars->27->1028"
4461
]
4462
},
4463
{
@@ -4475,7 +4475,7 @@
4475
"zh-chs": "阿斯圖里亞斯人",
4476
"fi": "Asturian",
4477
"xloc": [
4478
- "default.handlebars->27->1028"
4478
+ "default.handlebars->27->1029"
4479
]
4480
},
4481
{
@@ -4493,7 +4493,7 @@
4493
"zh-chs": "身份驗證應用",
4494
"fi": "Todennussovellus",
4495
"xloc": [
4496
- "default.handlebars->27->1774"
4496
+ "default.handlebars->27->1775"
4497
]
4498
},
4499
{
@@ -4517,8 +4517,8 @@
4517
"default-mobile.handlebars->9->73",
4518
"default.handlebars->27->125",
4519
"default.handlebars->27->130",
4520
- "default.handlebars->27->992",
4521
- "default.handlebars->27->994"
4520
+ "default.handlebars->27->993",
4521
+ "default.handlebars->27->995"
4522
]
4523
},
4524
{
@@ -4590,7 +4590,7 @@
4590
"zh-chs": "自動刪除",
4591
"fi": "Automaattinen-Poisto",
4592
"xloc": [
4593
- "default.handlebars->27->1278"
4593
+ "default.handlebars->27->1279"
4594
]
4595
},
4596
{
@@ -4637,7 +4637,7 @@
4637
"en": "Available Memory",
4638
"fr": "Mémoire disponible",
4639
"xloc": [
4640
- "default.handlebars->27->1913"
4640
+ "default.handlebars->27->1914"
4641
]
4642
},
4643
{
@@ -4655,7 +4655,7 @@
4655
"zh-chs": "阿塞拜疆",
4656
"fi": "Azerbaidžanin",
4657
"xloc": [
4658
- "default.handlebars->27->1029"
4658
+ "default.handlebars->27->1030"
4659
]
4660
},
4661
{
@@ -4674,7 +4674,7 @@
4674
"fi": "BIOS",
4675
"xloc": [
4676
"default-mobile.handlebars->9->372",
4677
- "default.handlebars->27->947"
4677
+ "default.handlebars->27->948"
4678
]
4679
},
4680
{
@@ -4775,8 +4775,8 @@
4775
"zh-chs": "背景與互動",
4776
"fi": "Tausta ja vuorovaikutteinen",
4777
"xloc": [
4778
- "default.handlebars->27->1455",
4779
- "default.handlebars->27->1462",
4778
+ "default.handlebars->27->1456",
4779
+ "default.handlebars->27->1463",
4780
"default.handlebars->27->346",
4781
"default.handlebars->27->360"
4782
]
@@ -4796,8 +4796,8 @@
4796
"zh-chs": "僅背景",
4797
"fi": "Vain tausta",
4798
"xloc": [
4799
- "default.handlebars->27->1456",
4800
- "default.handlebars->27->1463",
4799
+ "default.handlebars->27->1457",
4800
+ "default.handlebars->27->1464",
4801
"default.handlebars->27->347",
4802
"default.handlebars->27->361",
4803
"default.handlebars->27->375"
@@ -4836,7 +4836,7 @@
4836
"zh-chs": "備用碼",
4837
"fi": "Varmuuskoodit",
4838
"xloc": [
4839
- "default.handlebars->27->1776"
4839
+ "default.handlebars->27->1777"
4840
]
4841
},
4842
{
@@ -4854,7 +4854,7 @@
4854
"zh-chs": "錯誤的簽名",
4855
"fi": "Huono allekirjoitus",
4856
"xloc": [
4857
- "default.handlebars->27->1895"
4857
+ "default.handlebars->27->1896"
4858
]
4859
},
4860
{
@@ -4872,7 +4872,7 @@
4872
"zh-chs": "錯誤的網絡證書",
4873
"fi": "Huono Web-varmenne",
4874
"xloc": [
4875
- "default.handlebars->27->1894"
4875
+ "default.handlebars->27->1895"
4876
]
4877
},
4878
{
@@ -4890,7 +4890,7 @@
4890
"zh-chs": "巴斯克",
4891
"fi": "Baski",
4892
"xloc": [
4893
- "default.handlebars->27->1030"
4893
+ "default.handlebars->27->1031"
4894
]
4895
},
4896
{
@@ -4926,7 +4926,7 @@
4926
"zh-chs": "白俄羅斯語",
4927
"fi": "Valkovenäjä",
4928
"xloc": [
4929
- "default.handlebars->27->1032"
4929
+ "default.handlebars->27->1033"
4930
]
4931
},
4932
{
@@ -4944,7 +4944,7 @@
4944
"zh-chs": "孟加拉",
4945
"fi": "Bengali",
4946
"xloc": [
4947
- "default.handlebars->27->1033"
4947
+ "default.handlebars->27->1034"
4948
]
4949
},
4950
{
@@ -4982,7 +4982,7 @@
4982
"zh-chs": "波斯尼亞人",
4983
"fi": "Bosnia",
4984
"xloc": [
4985
- "default.handlebars->27->1034"
4985
+ "default.handlebars->27->1035"
4986
]
4987
},
4988
{
@@ -5000,7 +5000,7 @@
5000
"zh-chs": "布列塔尼",
5001
"fi": "Breton",
5002
"xloc": [
5003
- "default.handlebars->27->1035"
5003
+ "default.handlebars->27->1036"
5004
]
5005
},
5006
{
@@ -5018,7 +5018,7 @@
5018
"zh-chs": "廣播",
5019
"fi": "Yleislähetys",
5020
"xloc": [
5021
- "default.handlebars->27->1690",
5021
+ "default.handlebars->27->1691",
5022
"default.handlebars->container->column_l->p4->3->1->0->3->1"
5023
]
5024
},
@@ -5037,7 +5037,7 @@
5037
"zh-chs": "廣播消息",
5038
"fi": "Lähetä viesti",
5039
"xloc": [
5040
- "default.handlebars->27->1623"
5040
+ "default.handlebars->27->1624"
5041
]
5042
},
5043
{
@@ -5055,7 +5055,7 @@
5055
"zh-chs": "向所有連接的用戶廣播消息。",
5056
"fi": "Lähetä viesti kaikille yhteydessä oleville käyttäjille.",
5057
"xloc": [
5058
- "default.handlebars->27->1618"
5058
+ "default.handlebars->27->1619"
5059
]
5060
},
5061
{
@@ -5073,7 +5073,7 @@
5073
"zh-chs": "保加利亞語",
5074
"fi": "Bulgarialainen",
5075
"xloc": [
5076
- "default.handlebars->27->1031"
5076
+ "default.handlebars->27->1032"
5077
]
5078
},
5079
{
@@ -5091,7 +5091,7 @@
5091
"zh-chs": "緬甸人",
5092
"fi": "Burmalainen",
5093
"xloc": [
5094
- "default.handlebars->27->1036"
5094
+ "default.handlebars->27->1037"
5095
]
5096
},
5097
{
@@ -5129,8 +5129,8 @@
5129
"fi": "CIRA",
5130
"xloc": [
5131
"default-mobile.handlebars->9->200",
5132
- "default.handlebars->27->1342",
5133
- "default.handlebars->27->1347",
5132
+ "default.handlebars->27->1343",
5133
+ "default.handlebars->27->1348",
5134
"default.handlebars->27->208",
5135
"default.handlebars->27->433"
5136
]
@@ -5150,7 +5150,7 @@
5150
"zh-chs": "CIRA服務器",
5151
"fi": "CIRA-Palvelin",
5152
"xloc": [
5153
- "default.handlebars->27->1948"
5153
+ "default.handlebars->27->1949"
5154
]
5155
},
5156
{
@@ -5168,7 +5168,7 @@
5168
"zh-chs": "CIRA服務器命令",
5169
"fi": "CIRA-palvelimen komennot",
5170
"xloc": [
5171
- "default.handlebars->27->1949"
5171
+ "default.handlebars->27->1950"
5172
]
5173
},
5174
{
@@ -5186,7 +5186,7 @@
5186
"fi": "Prosessori",
5187
"xloc": [
5188
"default-mobile.handlebars->9->378",
5189
- "default.handlebars->27->953"
5189
+ "default.handlebars->27->954"
5190
]
5191
},
5192
{
@@ -5204,7 +5204,7 @@
5204
"zh-chs": "CPU負載",
5205
"fi": "Prosessori kuorma",
5206
"xloc": [
5207
- "default.handlebars->27->1909"
5207
+ "default.handlebars->27->1910"
5208
]
5209
},
5210
{
@@ -5222,7 +5222,7 @@
5222
"zh-chs": "最近15分鐘的CPU負載",
5223
"fi": "Prosessorin kuorma viimeisen 15 minuutin aikana",
5224
"xloc": [
5225
- "default.handlebars->27->1912"
5225
+ "default.handlebars->27->1913"
5226
]
5227
},
5228
{
@@ -5240,7 +5240,7 @@
5240
"zh-chs": "最近5分鐘的CPU負載",
5241
"fi": "Prosessorin kuorma viimeisen 5 minuutin aikana",
5242
"xloc": [
5243
- "default.handlebars->27->1911"
5243
+ "default.handlebars->27->1912"
5244
]
5245
},
5246
{
@@ -5258,7 +5258,7 @@
5258
"zh-chs": "最後一分鐘的CPU負載",
5259
"fi": "Prosessorin kuorma viimeisen minuutin aikana",
5260
"xloc": [
5261
- "default.handlebars->27->1910"
5261
+ "default.handlebars->27->1911"
5262
]
5263
},
5264
{
@@ -5295,7 +5295,7 @@
5295
"zh-chs": "CSV",
5296
"fi": "CSV",
5297
"xloc": [
5298
- "default.handlebars->27->1541"
5298
+ "default.handlebars->27->1542"
5299
]
5300
},
5301
{
@@ -5313,8 +5313,8 @@
5313
"zh-chs": "CSV格式",
5314
"fi": "CSV muoto",
5315
"xloc": [
5316
- "default.handlebars->27->1545",
5317
- "default.handlebars->27->1610",
5316
+ "default.handlebars->27->1546",
5317
+ "default.handlebars->27->1611",
5318
"default.handlebars->27->474"
5319
]
5320
},
@@ -5333,7 +5333,7 @@
5333
"zh-chs": "通話錯誤",
5334
"fi": "Soitto virhe",
5335
"xloc": [
5336
- "default.handlebars->27->1961"
5336
+ "default.handlebars->27->1962"
5337
]
5338
},
5339
{
@@ -5353,7 +5353,7 @@
5353
"xloc": [
5354
"default-mobile.handlebars->9->82",
5355
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
5356
- "default.handlebars->27->1256",
5356
+ "default.handlebars->27->1257",
5357
"default.handlebars->container->dialog->idx_dlgButtonBar",
5358
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
5359
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -5375,8 +5375,8 @@
5375
"xloc": [
5376
"default-mobile.handlebars->9->386",
5377
"default-mobile.handlebars->9->388",
5378
- "default.handlebars->27->961",
5379
- "default.handlebars->27->963"
5378
+ "default.handlebars->27->962",
5379
+ "default.handlebars->27->964"
5380
]
5381
},
5382
{
@@ -5395,7 +5395,7 @@
5395
"fi": "Kapasiteetti / Nopeus",
5396
"xloc": [
5397
"default-mobile.handlebars->9->381",
5398
- "default.handlebars->27->956"
5398
+ "default.handlebars->27->957"
5399
]
5400
},
5401
{
@@ -5413,7 +5413,7 @@
5413
"zh-chs": "加泰羅尼亞語",
5414
"fi": "Katalaani",
5415
"xloc": [
5416
- "default.handlebars->27->1037"
5416
+ "default.handlebars->27->1038"
5417
]
5418
},
5419
{
@@ -5449,7 +5449,7 @@
5449
"zh-chs": "查莫羅",
5450
"fi": "Chamorro",
5451
"xloc": [
5452
- "default.handlebars->27->1038"
5452
+ "default.handlebars->27->1039"
5453
]
5454
},
5455
{
@@ -5482,7 +5482,7 @@
5482
"zh-chs": "更改{0}的電子郵件",
5483
"fi": "Vaihda sähköpostiosoite käyttäjälle {0}",
5484
"xloc": [
5485
- "default.handlebars->27->1804"
5485
+ "default.handlebars->27->1805"
5486
]
5487
},
5488
{
@@ -5521,8 +5521,8 @@
5521
"fi": "Vaihda Salasana",
5522
"xloc": [
5523
"default-mobile.handlebars->9->90",
5524
- "default.handlebars->27->1232",
5525
- "default.handlebars->27->1791"
5524
+ "default.handlebars->27->1233",
5525
+ "default.handlebars->27->1792"
5526
]
5527
},
5528
{
@@ -5540,7 +5540,7 @@
5540
"zh-chs": "更改{0}的密碼",
5541
"fi": "Vaihda Salasana käyttäjälle {0}",
5542
"xloc": [
5543
- "default.handlebars->27->1811"
5543
+ "default.handlebars->27->1812"
5544
]
5545
},
5546
{
@@ -5550,7 +5550,7 @@
5550
"es": "Cambiar nombre real por {0}",
5551
"fr": "Changer le Nom complet pour {0}",
5552
"xloc": [
5553
- "default.handlebars->27->1799"
5553
+ "default.handlebars->27->1800"
5554
]
5555
},
5556
{
@@ -5624,7 +5624,7 @@
5624
"zh-chs": "更改該用戶的密碼",
5625
"fi": "Vaihda tämän käyttäjän salasana",
5626
"xloc": [
5627
- "default.handlebars->27->1790"
5627
+ "default.handlebars->27->1791"
5628
]
5629
},
5630
{
@@ -5660,7 +5660,7 @@
5660
"zh-chs": "在此處更改您的帳戶電子郵件地址。",
5661
"fi": "Vaihda tilisi sähköpostiosoite tästä.",
5662
"xloc": [
5663
- "default.handlebars->27->1219"
5663
+ "default.handlebars->27->1220"
5664
]
5665
},
5666
{
@@ -5678,7 +5678,7 @@
5678
"zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5679
"fi": "Vaihda tilisi salasana kirjoittamalla vanha ja uusi salasana kahdesti alla oleviin kenttiin.",
5680
"xloc": [
5681
- "default.handlebars->27->1225"
5681
+ "default.handlebars->27->1226"
5682
]
5683
},
5684
{
@@ -5696,7 +5696,7 @@
5696
"zh-chs": "更改語言將需要刷新頁面。",
5697
"fi": "Kielen vaihtaminen vaatii sivun päivittämisen.",
5698
"xloc": [
5699
- "default.handlebars->27->1204"
5699
+ "default.handlebars->27->1205"
5700
]
5701
},
5702
{
@@ -5714,7 +5714,7 @@
5714
"zh-chs": "聊天室",
5715
"fi": "Chat",
5716
"xloc": [
5717
- "default.handlebars->27->1562",
5717
+ "default.handlebars->27->1563",
5718
"default.handlebars->27->669",
5719
"default.handlebars->27->688"
5720
]
@@ -5736,8 +5736,8 @@
5736
"xloc": [
5737
"default-mobile.handlebars->9->425",
5738
"default-mobile.handlebars->9->443",
5739
- "default.handlebars->27->1404",
5740
- "default.handlebars->27->1439"
5739
+ "default.handlebars->27->1405",
5740
+ "default.handlebars->27->1440"
5741
]
5742
},
5743
{
@@ -5765,7 +5765,7 @@
5765
"zh-chs": "車臣",
5766
"fi": "Tšetšenian",
5767
"xloc": [
5768
- "default.handlebars->27->1039"
5768
+ "default.handlebars->27->1040"
5769
]
5770
},
5771
{
@@ -5851,8 +5851,8 @@
5851
"zh-chs": "檢查...",
5852
"fi": "Tarkistetaan...",
5853
"xloc": [
5854
- "default.handlebars->27->1005",
5855
- "default.handlebars->27->1955"
5854
+ "default.handlebars->27->1006",
5855
+ "default.handlebars->27->1956"
5856
]
5857
},
5858
{
@@ -5870,7 +5870,7 @@
5870
"zh-chs": "中文",
5871
"fi": "Kiinalainen",
5872
"xloc": [
5873
- "default.handlebars->27->1040"
5873
+ "default.handlebars->27->1041"
5874
]
5875
},
5876
{
@@ -5888,7 +5888,7 @@
5888
"zh-chs": "中文(香港)",
5889
"fi": "Kiinalainen (Hong Kong)",
5890
"xloc": [
5891
- "default.handlebars->27->1041"
5891
+ "default.handlebars->27->1042"
5892
]
5893
},
5894
{
@@ -5906,7 +5906,7 @@
5906
"zh-chs": "中文(中國)",
5907
"fi": "Kiinalainen (PRC)",
5908
"xloc": [
5909
- "default.handlebars->27->1042"
5909
+ "default.handlebars->27->1043"
5910
]
5911
},
5912
{
@@ -5924,7 +5924,7 @@
5924
"zh-chs": "简体中文)",
5925
"fi": "Kiinalainen (yksinkertaistettu)",
5926
"xloc": [
5927
- "default.handlebars->27->1202"
5927
+ "default.handlebars->27->1203"
5928
]
5929
},
5930
{
@@ -5942,7 +5942,7 @@
5942
"zh-chs": "中文(新加坡)",
5943
"fi": "Kiinalainen (Singapore)",
5944
"xloc": [
5945
- "default.handlebars->27->1043"
5945
+ "default.handlebars->27->1044"
5946
]
5947
},
5948
{
@@ -5960,7 +5960,7 @@
5960
"zh-chs": "中文(台灣)",
5961
"fi": "Kiinalainen (Taiwan)",
5962
"xloc": [
5963
- "default.handlebars->27->1044"
5963
+ "default.handlebars->27->1045"
5964
]
5965
},
5966
{
@@ -5997,7 +5997,7 @@
5997
"zh-chs": "楚瓦什",
5998
"fi": "Tšuvassi",
5999
"xloc": [
6000
- "default.handlebars->27->1045"
6000
+ "default.handlebars->27->1046"
6001
]
6002
},
6003
{
@@ -6039,11 +6039,11 @@
6039
"default-mobile.handlebars->9->318",
6040
"default-mobile.handlebars->9->320",
6041
"default-mobile.handlebars->9->59",
6042
- "default.handlebars->27->1525",
6043
- "default.handlebars->27->872",
6044
- "default.handlebars->27->874",
6045
- "default.handlebars->27->876",
6046
- "default.handlebars->27->878",
6042
+ "default.handlebars->27->1526",
6043
+ "default.handlebars->27->873",
6044
+ "default.handlebars->27->875",
6045
+ "default.handlebars->27->877",
6046
+ "default.handlebars->27->879",
6047
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
6048
"default.handlebars->container->column_l->p41->3->1",
6049
"messenger.handlebars->xbottom"
@@ -6079,7 +6079,7 @@
6079
"zh-chs": "全部清除",
6080
"fi": "Tyhjennä kaikki",
6081
"xloc": [
6082
- "default.handlebars->27->1882"
6082
+ "default.handlebars->27->1883"
6083
]
6084
},
6085
{
@@ -6097,7 +6097,7 @@
6097
"zh-chs": "清除核心",
6098
"fi": "Tyhjennä ydin",
6099
"xloc": [
6100
- "default.handlebars->27->977"
6100
+ "default.handlebars->27->978"
6101
]
6102
},
6103
{
@@ -6132,7 +6132,7 @@
6132
"zh-chs": "清除此通知",
6133
"fi": "Kuittaa tämä ilmoitus",
6134
"xloc": [
6135
- "default.handlebars->27->1881"
6135
+ "default.handlebars->27->1882"
6136
]
6137
},
6138
{
@@ -6180,8 +6180,8 @@
6180
"zh-chs": "单击此处编辑设备组名称",
6181
"fi": "Muokkaa laiteryhmän nimeä napsauttamalla tätä",
6182
"xloc": [
6183
- "default.handlebars->27->1267",
6184
- "default.handlebars->27->1476"
6183
+ "default.handlebars->27->1268",
6184
+ "default.handlebars->27->1477"
6185
]
6186
},
6187
{
@@ -6213,7 +6213,7 @@
6213
"zh-chs": "单击此处编辑用户组名称",
6214
"fi": "Napsauta tätä muokataksesi käyttäjäryhmän nimeä",
6215
"xloc": [
6216
- "default.handlebars->27->1679"
6216
+ "default.handlebars->27->1680"
6217
]
6218
},
6219
{
@@ -6266,7 +6266,7 @@
6266
"fi": "Napsauta OK lähettääksesi varmennusviestin osoitteeseen:",
6267
"xloc": [
6268
"default-mobile.handlebars->9->75",
6269
- "default.handlebars->27->1216"
6269
+ "default.handlebars->27->1217"
6270
]
6271
},
6272
{
@@ -6303,7 +6303,7 @@
6303
"fi": "Asiakasohjaustila (CCM)",
6304
"xloc": [
6305
"default-mobile.handlebars->9->359",
6306
- "default.handlebars->27->934"
6306
+ "default.handlebars->27->935"
6307
]
6308
},
6309
{
@@ -6321,8 +6321,8 @@
6321
"zh-chs": "客戶端啟動的遠程訪問",
6322
"fi": "Asiakkaan aloittama etäkäyttö",
6323
"xloc": [
6324
- "default.handlebars->27->1341",
6325
- "default.handlebars->27->1346"
6324
+ "default.handlebars->27->1342",
6325
+ "default.handlebars->27->1347"
6326
]
6327
},
6328
{
@@ -6410,8 +6410,8 @@
6410
"zh-chs": "通用設備組",
6411
"fi": "Yleiset laiteryhmät",
6412
"xloc": [
6413
- "default.handlebars->27->1698",
6414
- "default.handlebars->27->1816"
6413
+ "default.handlebars->27->1699",
6414
+ "default.handlebars->27->1817"
6415
]
6416
},
6417
{
@@ -6429,8 +6429,8 @@
6429
"zh-chs": "通用設備",
6430
"fi": "Yleiset laitteet",
6431
"xloc": [
6432
- "default.handlebars->27->1704",
6433
- "default.handlebars->27->1828"
6432
+ "default.handlebars->27->1705",
6433
+ "default.handlebars->27->1829"
6434
]
6435
},
6436
{
@@ -6457,7 +6457,7 @@
6457
"fi": "Haluatko varmasti {0} {1} kohdetta tänne?",
6458
"xloc": [
6459
"default-mobile.handlebars->9->127",
6460
- "default.handlebars->27->1520"
6460
+ "default.handlebars->27->1521"
6461
]
6462
},
6463
{
@@ -6477,11 +6477,11 @@
6477
"xloc": [
6478
"default-mobile.handlebars->9->276",
6479
"default-mobile.handlebars->9->405",
6480
- "default.handlebars->27->1355",
6481
- "default.handlebars->27->1590",
6482
- "default.handlebars->27->1669",
6483
- "default.handlebars->27->1718",
6484
- "default.handlebars->27->1814",
6480
+ "default.handlebars->27->1356",
6481
+ "default.handlebars->27->1591",
6482
+ "default.handlebars->27->1670",
6483
+ "default.handlebars->27->1719",
6484
+ "default.handlebars->27->1815",
6485
"default.handlebars->27->458",
6486
"default.handlebars->27->743",
6487
"default.handlebars->27->752"
@@ -6503,7 +6503,7 @@
6503
"fi": "Haluatko varmasti kopioida kohteen tänne?",
6504
"xloc": [
6505
"default-mobile.handlebars->9->309",
6506
- "default.handlebars->27->867"
6506
+ "default.handlebars->27->868"
6507
]
6508
},
6509
{
@@ -6522,7 +6522,7 @@
6522
"fi": "Haluatko varmasti kopioida {0} kojdetta tänne?",
6523
"xloc": [
6524
"default-mobile.handlebars->9->308",
6525
- "default.handlebars->27->866"
6525
+ "default.handlebars->27->867"
6526
]
6527
},
6528
{
@@ -6537,7 +6537,7 @@
6537
"zh-chs": "确认删除选定的帐户?",
6538
"fi": "Haluatko varmasti poistaa valitut tilit?",
6539
"xloc": [
6540
- "default.handlebars->27->1589"
6540
+ "default.handlebars->27->1590"
6541
]
6542
},
6543
{
@@ -6570,7 +6570,7 @@
6570
"zh-chs": "确认删除选定的用户组?",
6571
"fi": "Haluatko varmasti poistaa valitut käyttäjäryhmät?",
6572
"xloc": [
6573
- "default.handlebars->27->1668"
6573
+ "default.handlebars->27->1669"
6574
]
6575
},
6576
{
@@ -6588,7 +6588,7 @@
6588
"zh-chs": "確認刪除用戶{0}?",
6589
"fi": "Haluatko varmasti poistaa käyttäjän {0}?",
6590
"xloc": [
6591
- "default.handlebars->27->1813"
6591
+ "default.handlebars->27->1814"
6592
]
6593
},
6594
{
@@ -6603,7 +6603,7 @@
6603
"zh-chs": "确认删除用户\\“ {0} \\”的成员身份?",
6604
"fi": "Haluatko varmasti poistaa käytäjän \\\"{0}\\\" jäsenyyden?",
6605
"xloc": [
6606
- "default.handlebars->27->1721"
6606
+ "default.handlebars->27->1722"
6607
]
6608
},
6609
{
@@ -6618,7 +6618,7 @@
6618
"zh-chs": "确认删除用户组 “{0}” 的成员身份?",
6619
"fi": "Haluatko varmasti poistaa käyttäjäryhmän \\\"{0}\\\" jäsenyyden?",
6620
"xloc": [
6621
- "default.handlebars->27->1843"
6621
+ "default.handlebars->27->1844"
6622
]
6623
},
6624
{
@@ -6637,7 +6637,7 @@
6637
"fi": "Haluatko varmasti siirtää kohteen tänne?",
6638
"xloc": [
6639
"default-mobile.handlebars->9->311",
6640
- "default.handlebars->27->869"
6640
+ "default.handlebars->27->870"
6641
]
6642
},
6643
{
@@ -6656,7 +6656,7 @@
6656
"fi": "Haluatko varmasti siirtää {0} kohdetta tänne?",
6657
"xloc": [
6658
"default-mobile.handlebars->9->310",
6659
- "default.handlebars->27->868"
6659
+ "default.handlebars->27->869"
6660
]
6661
},
6662
{
@@ -6674,7 +6674,7 @@
6674
"zh-chs": "確認覆蓋?",
6675
"fi": "Haluatko varmasti korvata olemassa olevan?",
6676
"xloc": [
6677
- "default.handlebars->27->1519"
6677
+ "default.handlebars->27->1520"
6678
]
6679
},
6680
{
@@ -6689,8 +6689,8 @@
6689
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
6690
"fi": "Haluatko varmasti poistaa laitteen \\\"{0}\\\" käyttöoikeudet?",
6691
"xloc": [
6692
- "default.handlebars->27->1711",
6693
- "default.handlebars->27->1834"
6692
+ "default.handlebars->27->1712",
6693
+ "default.handlebars->27->1835"
6694
]
6695
},
6696
{
@@ -6705,8 +6705,8 @@
6705
"zh-chs": "是否确认删除设备组“ {0}”的访问权限?",
6706
"fi": "Haluatko varmasti poistaa laiteryhmän \\\"{0}\\\" käyttöoikeudet?",
6707
"xloc": [
6708
- "default.handlebars->27->1713",
6709
- "default.handlebars->27->1847"
6708
+ "default.handlebars->27->1714",
6709
+ "default.handlebars->27->1848"
6710
]
6711
},
6712
{
@@ -6721,7 +6721,7 @@
6721
"zh-chs": "确认删除用户\\“ {0} \\”的访问权限?",
6722
"fi": "Haluatko varmasti poistaa käyttäjän \\\"{0}\\\" käyttöoikeudet?",
6723
"xloc": [
6724
- "default.handlebars->27->1836"
6724
+ "default.handlebars->27->1837"
6725
]
6726
},
6727
{
@@ -6736,7 +6736,7 @@
6736
"zh-chs": "确认删除用户组“ {0}”的访问权限?",
6737
"fi": "Haluatko varmasti poistaa käyttäjäryhmän \\\"{0}\\\" käyttöoikeudet?",
6738
"xloc": [
6739
- "default.handlebars->27->1839"
6739
+ "default.handlebars->27->1840"
6740
]
6741
},
6742
{
@@ -6751,8 +6751,8 @@
6751
"zh-chs": "确认删除访问权限?",
6752
"fi": "Haluatko varmasti poistaa käyttöoikeudet?",
6753
"xloc": [
6754
- "default.handlebars->27->1837",
6755
- "default.handlebars->27->1840"
6754
+ "default.handlebars->27->1838",
6755
+ "default.handlebars->27->1841"
6756
]
6757
},
6758
{
@@ -6771,7 +6771,7 @@
6771
"fi": "Haluatko varmasti poistaa kaksivaiheisen kirjautumisen todennussovelluksen?",
6772
"xloc": [
6773
"default-mobile.handlebars->9->74",
6774
- "default.handlebars->27->995"
6774
+ "default.handlebars->27->996"
6775
]
6776
},
6777
{
@@ -6830,7 +6830,7 @@
6830
"zh-chs": "确认删除用户“ {0} ”的权限?",
6831
"fi": "Haluatko varmasti poistaa käyttäjän \\\"{0}\\\" oikeudet?",
6832
"xloc": [
6833
- "default.handlebars->27->1448"
6833
+ "default.handlebars->27->1449"
6834
]
6835
},
6836
{
@@ -6845,7 +6845,7 @@
6845
"zh-chs": "确认删除用户组“ {0} ”的权限?",
6846
"fi": "Haluatko varmasti poistaa käyttäjäryhmän \\\"{0}\\\" oikeudet?",
6847
"xloc": [
6848
- "default.handlebars->27->1450"
6848
+ "default.handlebars->27->1451"
6849
]
6850
},
6851
{
@@ -6896,7 +6896,7 @@
6896
"default-mobile.handlebars->9->291",
6897
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
6898
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
6899
- "default.handlebars->27->1294",
6899
+ "default.handlebars->27->1295",
6900
"default.handlebars->27->846",
6901
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
6902
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -6940,8 +6940,8 @@
6940
"zh-chs": "連接到服務器",
6941
"fi": "Yhdistä palvelimeen",
6942
"xloc": [
6943
- "default.handlebars->27->1345",
6944
- "default.handlebars->27->1349"
6943
+ "default.handlebars->27->1346",
6944
+ "default.handlebars->27->1350"
6945
]
6946
},
6947
{
@@ -7018,7 +7018,7 @@
7018
"zh-chs": "連接的英特爾®AMT",
7019
"fi": "Yhdistetyt Intel® AMT",
7020
"xloc": [
7021
- "default.handlebars->27->1900"
7021
+ "default.handlebars->27->1901"
7022
]
7023
},
7024
{
@@ -7036,7 +7036,7 @@
7036
"zh-chs": "關聯用戶",
7037
"fi": "Yhdistetyt käyttäjät",
7038
"xloc": [
7039
- "default.handlebars->27->1905"
7039
+ "default.handlebars->27->1906"
7040
]
7041
},
7042
{
@@ -7055,7 +7055,7 @@
7055
"fi": "Yhdistetty nyt",
7056
"xloc": [
7057
"default-mobile.handlebars->9->334",
7058
- "default.handlebars->27->899"
7058
+ "default.handlebars->27->900"
7059
]
7060
},
7061
{
@@ -7097,7 +7097,7 @@
7097
"default.handlebars->27->233",
7098
"default.handlebars->27->236",
7099
"default.handlebars->27->262",
7100
- "default.handlebars->27->890",
7100
+ "default.handlebars->27->891",
7101
"default.handlebars->27->9",
7102
"desktop.handlebars->3->2",
7103
"xterm.handlebars->9->2"
@@ -7118,7 +7118,7 @@
7118
"zh-chs": "連接數",
7119
"fi": "Yhteysmäärä",
7120
"xloc": [
7121
- "default.handlebars->27->1919"
7121
+ "default.handlebars->27->1920"
7122
]
7123
},
7124
{
@@ -7135,7 +7135,7 @@
7135
"ru": "Ретранслятор подключения",
7136
"zh-chs": "連接繼電器",
7137
"xloc": [
7138
- "default.handlebars->27->1947"
7138
+ "default.handlebars->27->1948"
7139
]
7140
},
7141
{
@@ -7190,7 +7190,7 @@
7190
"fi": "Liitettävyys",
7191
"xloc": [
7192
"default-mobile.handlebars->9->244",
7193
- "default.handlebars->27->1483",
7193
+ "default.handlebars->27->1484",
7194
"default.handlebars->27->224",
7195
"default.handlebars->27->603",
7196
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -7270,7 +7270,7 @@
7270
"zh-chs": "Cookie編碼器",
7271
"fi": "Evästekooderi",
7272
"xloc": [
7273
- "default.handlebars->27->1933"
7273
+ "default.handlebars->27->1934"
7274
]
7275
},
7276
{
@@ -7401,8 +7401,8 @@
7401
"zh-chs": "複製鏈接到剪貼板",
7402
"fi": "Kopioi linkki leikepöydälle",
7403
"xloc": [
7404
- "default.handlebars->27->1488",
7405
- "default.handlebars->27->1507",
7404
+ "default.handlebars->27->1489",
7405
+ "default.handlebars->27->1508",
7406
"default.handlebars->27->192",
7407
"default.handlebars->27->363"
7408
]
@@ -7608,7 +7608,7 @@
7608
"zh-chs": "核心服務器",
7609
"fi": "Ydin palvelin",
7610
"xloc": [
7611
- "default.handlebars->27->1932"
7611
+ "default.handlebars->27->1933"
7612
]
7613
},
7614
{
@@ -7626,7 +7626,7 @@
7626
"zh-chs": "科西嘉人",
7627
"fi": "Korsikalainen",
7628
"xloc": [
7629
- "default.handlebars->27->1046"
7629
+ "default.handlebars->27->1047"
7630
]
7631
},
7632
{
@@ -7644,7 +7644,7 @@
7644
"zh-chs": "創建帳號",
7645
"fi": "Luo käyttäjätunnus",
7646
"xloc": [
7647
- "default.handlebars->27->1637",
7647
+ "default.handlebars->27->1638",
7648
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
7649
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
7650
]
@@ -7682,7 +7682,7 @@
7682
"zh-chs": "創建用戶組",
7683
"fi": "Luo käyttäjäryhmä",
7684
"xloc": [
7685
- "default.handlebars->27->1676"
7685
+ "default.handlebars->27->1677"
7686
]
7687
},
7688
{
@@ -7709,7 +7709,7 @@
7709
"zh-chs": "使用以下選項創建一個新的設備組。",
7710
"fi": "Luo uusi laiteryhmä käyttäen alla olevia vaihtoehtoja.",
7711
"xloc": [
7712
- "default.handlebars->27->1239"
7712
+ "default.handlebars->27->1240"
7713
]
7714
},
7715
{
@@ -7745,7 +7745,7 @@
7745
"zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
7746
"fi": "Luo useita tilejä kerralla tuomalla JSON-tiedosto seuraavassa muodossa:",
7747
"xloc": [
7748
- "default.handlebars->27->1601"
7748
+ "default.handlebars->27->1602"
7749
]
7750
},
7751
{
@@ -7791,13 +7791,13 @@
7791
"zh-chs": "創建",
7792
"fi": "Luotu",
7793
"xloc": [
7794
- "default.handlebars->27->1750"
7794
+ "default.handlebars->27->1751"
7795
]
7796
},
7797
{
7798
"en": "Creation Time",
7799
"xloc": [
7800
- "default.handlebars->27->1277"
7800
+ "default.handlebars->27->1278"
7801
]
7802
},
7803
{
@@ -7822,8 +7822,8 @@
7822
{
7823
"en": "Creator",
7824
"xloc": [
7825
- "default.handlebars->27->1275",
7826
- "default.handlebars->27->1276"
7825
+ "default.handlebars->27->1276",
7826
+ "default.handlebars->27->1277"
7827
]
7828
},
7829
{
@@ -7841,7 +7841,7 @@
7841
"zh-chs": "克里",
7842
"fi": "Cree",
7843
"xloc": [
7844
- "default.handlebars->27->1047"
7844
+ "default.handlebars->27->1048"
7845
]
7846
},
7847
{
@@ -7859,7 +7859,7 @@
7859
"zh-chs": "克羅地亞語",
7860
"fi": "Kroatialainen",
7861
"xloc": [
7862
- "default.handlebars->27->1048"
7862
+ "default.handlebars->27->1049"
7863
]
7864
},
7865
{
@@ -8010,7 +8010,7 @@
8010
"zh-chs": "捷克文",
8011
"fi": "Tshekkiläinen",
8012
"xloc": [
8013
- "default.handlebars->27->1049"
8013
+ "default.handlebars->27->1050"
8014
]
8015
},
8016
{
@@ -8046,7 +8046,7 @@
8046
"zh-chs": "丹麥文",
8047
"fi": "Tanskalainen",
8048
"xloc": [
8049
- "default.handlebars->27->1050"
8049
+ "default.handlebars->27->1051"
8050
]
8051
},
8052
{
@@ -8083,7 +8083,7 @@
8083
"zh-chs": "日期和時間",
8084
"fi": "Päivämäärät ja aika",
8085
"xloc": [
8086
- "default.handlebars->27->1207"
8086
+ "default.handlebars->27->1208"
8087
]
8088
},
8089
{
@@ -8120,7 +8120,7 @@
8120
"zh-chs": "停用客戶端控制模式(CCM)",
8121
"fi": "Poista asiakashallintatila (CCM) käytöstä",
8122
"xloc": [
8123
- "default.handlebars->27->1333"
8123
+ "default.handlebars->27->1334"
8124
]
8125
},
8126
{
@@ -8149,10 +8149,10 @@
8149
"fr": "Par défaut",
8150
"fi": "Oletus",
8151
"xloc": [
8152
- "default.handlebars->27->1624",
8153
- "default.handlebars->27->1672",
8154
- "default.handlebars->27->1683",
8155
- "default.handlebars->27->1739"
8152
+ "default.handlebars->27->1625",
8153
+ "default.handlebars->27->1673",
8154
+ "default.handlebars->27->1684",
8155
+ "default.handlebars->27->1740"
8156
]
8157
},
8158
{
@@ -8174,9 +8174,9 @@
8174
"default-mobile.handlebars->9->301",
8175
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
8176
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
8177
- "default.handlebars->27->1514",
8177
+ "default.handlebars->27->1515",
8178
"default.handlebars->27->507",
8179
- "default.handlebars->27->858",
8179
+ "default.handlebars->27->859",
8180
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
8181
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
8182
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -8202,7 +8202,7 @@
8202
"fi": "Poista Tili",
8203
"xloc": [
8204
"default-mobile.handlebars->9->84",
8205
- "default.handlebars->27->1224"
8205
+ "default.handlebars->27->1225"
8206
]
8207
},
8208
{
@@ -8217,7 +8217,7 @@
8217
"zh-chs": "删除帐号",
8218
"fi": "Poista tilit",
8219
"xloc": [
8220
- "default.handlebars->27->1591"
8220
+ "default.handlebars->27->1592"
8221
]
8222
},
8223
{
@@ -8256,8 +8256,8 @@
8256
"xloc": [
8257
"default-mobile.handlebars->9->403",
8258
"default-mobile.handlebars->9->406",
8259
- "default.handlebars->27->1326",
8260
- "default.handlebars->27->1356"
8259
+ "default.handlebars->27->1327",
8260
+ "default.handlebars->27->1357"
8261
]
8262
},
8263
{
@@ -8312,7 +8312,7 @@
8312
"zh-chs": "刪除用戶",
8313
"fi": "Poista Käyttäjä",
8314
"xloc": [
8315
- "default.handlebars->27->1789"
8315
+ "default.handlebars->27->1790"
8316
]
8317
},
8318
{
@@ -8330,8 +8330,8 @@
8330
"zh-chs": "刪除用戶組",
8331
"fi": "Poista käyttäjäryhmä",
8332
"xloc": [
8333
- "default.handlebars->27->1709",
8334
- "default.handlebars->27->1719"
8333
+ "default.handlebars->27->1710",
8334
+ "default.handlebars->27->1720"
8335
]
8336
},
8337
{
@@ -8346,7 +8346,7 @@
8346
"zh-chs": "删除用户组",
8347
"fi": "Poista käyttäjäryhmät",
8348
"xloc": [
8349
- "default.handlebars->27->1670"
8349
+ "default.handlebars->27->1671"
8350
]
8351
},
8352
{
@@ -8364,7 +8364,7 @@
8364
"zh-chs": "刪除用戶{0}",
8365
"fi": "Poista Käyttäjä {0}",
8366
"xloc": [
8367
- "default.handlebars->27->1812"
8367
+ "default.handlebars->27->1813"
8368
]
8369
},
8370
{
@@ -8383,7 +8383,7 @@
8383
"fi": "Poista tili",
8384
"xloc": [
8385
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
8386
- "default.handlebars->27->1587",
8386
+ "default.handlebars->27->1588",
8387
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
8388
]
8389
},
@@ -8417,7 +8417,7 @@
8417
"zh-chs": "删除群组",
8418
"fi": "Poista ryhmä",
8419
"xloc": [
8420
- "default.handlebars->27->1666"
8420
+ "default.handlebars->27->1667"
8421
]
8422
},
8423
{
@@ -8455,8 +8455,8 @@
8455
"xloc": [
8456
"default-mobile.handlebars->9->124",
8457
"default-mobile.handlebars->9->303",
8458
- "default.handlebars->27->1516",
8459
- "default.handlebars->27->860"
8458
+ "default.handlebars->27->1517",
8459
+ "default.handlebars->27->861"
8460
]
8461
},
8462
{
@@ -8474,7 +8474,7 @@
8474
"zh-chs": "刪除用戶組{0}?",
8475
"fi": "Poistetaanko käyttäjäryhmä {0}?",
8476
"xloc": [
8477
- "default.handlebars->27->1717"
8477
+ "default.handlebars->27->1718"
8478
]
8479
},
8480
{
@@ -8494,8 +8494,8 @@
8494
"xloc": [
8495
"default-mobile.handlebars->9->123",
8496
"default-mobile.handlebars->9->302",
8497
- "default.handlebars->27->1515",
8498
- "default.handlebars->27->859"
8497
+ "default.handlebars->27->1516",
8498
+ "default.handlebars->27->860"
8499
]
8500
},
8501
{
@@ -8616,19 +8616,19 @@
8616
"default-mobile.handlebars->9->340",
8617
"default-mobile.handlebars->9->395",
8618
"default-mobile.handlebars->9->408",
8619
- "default.handlebars->27->1244",
8620
- "default.handlebars->27->1272",
8621
- "default.handlebars->27->1358",
8622
- "default.handlebars->27->1675",
8623
- "default.handlebars->27->1685",
8619
+ "default.handlebars->27->1245",
8620
+ "default.handlebars->27->1273",
8621
+ "default.handlebars->27->1359",
8622
+ "default.handlebars->27->1676",
8623
"default.handlebars->27->1686",
8625
- "default.handlebars->27->1715",
8624
+ "default.handlebars->27->1687",
8625
+ "default.handlebars->27->1716",
8626
"default.handlebars->27->548",
8627
"default.handlebars->27->549",
8628
"default.handlebars->27->77",
8629
"default.handlebars->27->786",
8630
- "default.handlebars->27->905",
8631
- "default.handlebars->27->915",
8630
+ "default.handlebars->27->906",
8631
+ "default.handlebars->27->916",
8632
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
8633
]
8634
},
@@ -8663,8 +8663,8 @@
8663
"fi": "Työpöytä",
8664
"xloc": [
8665
"default-mobile.handlebars->9->256",
8666
- "default.handlebars->27->1363",
8667
- "default.handlebars->27->1859",
8666
+ "default.handlebars->27->1364",
8667
+ "default.handlebars->27->1860",
8668
"default.handlebars->27->513",
8669
"default.handlebars->27->831",
8670
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
@@ -8705,8 +8705,8 @@
8705
"zh-chs": "桌面通知",
8706
"fi": "Työpöytä ilmoitus",
8707
"xloc": [
8708
- "default.handlebars->27->1285",
8709
- "default.handlebars->27->1765",
8708
+ "default.handlebars->27->1286",
8709
+ "default.handlebars->27->1766",
8710
"default.handlebars->27->584"
8711
]
8712
},
@@ -8725,8 +8725,8 @@
8725
"zh-chs": "桌面提示",
8726
"fi": "Työpöydän kehote",
8727
"xloc": [
8728
- "default.handlebars->27->1284",
8729
- "default.handlebars->27->1764",
8728
+ "default.handlebars->27->1285",
8729
+ "default.handlebars->27->1765",
8730
"default.handlebars->27->583"
8731
]
8732
},
@@ -8745,8 +8745,8 @@
8745
"zh-chs": "桌面提示+工具欄",
8746
"fi": "Työpöydän kehote+työkalurivi",
8747
"xloc": [
8748
- "default.handlebars->27->1282",
8749
- "default.handlebars->27->1762",
8748
+ "default.handlebars->27->1283",
8749
+ "default.handlebars->27->1763",
8750
"default.handlebars->27->581"
8751
]
8752
},
@@ -8781,8 +8781,8 @@
8781
"zh-chs": "桌面工具欄",
8782
"fi": "Työpöydän työkalurivi",
8783
"xloc": [
8784
- "default.handlebars->27->1283",
8785
- "default.handlebars->27->1763",
8784
+ "default.handlebars->27->1284",
8785
+ "default.handlebars->27->1764",
8786
"default.handlebars->27->582"
8787
]
8788
},
@@ -8866,9 +8866,9 @@
8866
"zh-chs": "設備",
8867
"fi": "Laite",
8868
"xloc": [
8869
- "default.handlebars->27->1385",
8869
+ "default.handlebars->27->1386",
8870
"default.handlebars->27->183",
8871
- "default.handlebars->27->1831",
8871
+ "default.handlebars->27->1832",
8872
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
8873
]
8874
},
@@ -8906,14 +8906,14 @@
8906
"zh-chs": "設備組",
8907
"fi": "Laiteryhmä",
8908
"xloc": [
8909
- "default.handlebars->27->1380",
8910
- "default.handlebars->27->1383",
8909
+ "default.handlebars->27->1381",
8910
"default.handlebars->27->1384",
8912
- "default.handlebars->27->1538",
8913
- "default.handlebars->27->1701",
8914
- "default.handlebars->27->1707",
8915
- "default.handlebars->27->1819",
8916
- "default.handlebars->27->1868"
8911
+ "default.handlebars->27->1385",
8912
+ "default.handlebars->27->1539",
8913
+ "default.handlebars->27->1702",
8914
+ "default.handlebars->27->1708",
8915
+ "default.handlebars->27->1820",
8916
+ "default.handlebars->27->1869"
8917
]
8918
},
8919
{
@@ -8932,7 +8932,7 @@
8932
"fi": "Laiteryhmän käyttäjä",
8933
"xloc": [
8934
"default-mobile.handlebars->9->450",
8935
- "default.handlebars->27->1446"
8935
+ "default.handlebars->27->1447"
8936
]
8937
},
8938
{
@@ -8951,11 +8951,11 @@
8951
"fi": "Laiteryhmät",
8952
"xloc": [
8953
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
8954
- "default.handlebars->27->1554",
8955
- "default.handlebars->27->1660",
8956
- "default.handlebars->27->1688",
8957
- "default.handlebars->27->1759",
8958
- "default.handlebars->27->1903",
8954
+ "default.handlebars->27->1555",
8955
+ "default.handlebars->27->1661",
8956
+ "default.handlebars->27->1689",
8957
+ "default.handlebars->27->1760",
8958
+ "default.handlebars->27->1904",
8959
"default.handlebars->container->column_l->p2->p2info->7"
8960
]
8961
},
@@ -9021,7 +9021,7 @@
9021
"fi": "Laitteen Nimi",
9022
"xloc": [
9023
"default-mobile.handlebars->9->278",
9024
- "default.handlebars->27->1867",
9024
+ "default.handlebars->27->1868",
9025
"default.handlebars->27->280",
9026
"default.handlebars->27->784",
9027
"player.handlebars->3->9"
@@ -9077,8 +9077,8 @@
9077
"zh-chs": "設備連接。",
9078
"fi": "Laiteyhteydet.",
9079
"xloc": [
9080
- "default.handlebars->27->1212",
9081
- "default.handlebars->27->1467"
9080
+ "default.handlebars->27->1213",
9081
+ "default.handlebars->27->1468"
9082
]
9083
},
9084
{
@@ -9096,8 +9096,8 @@
9096
"zh-chs": "設備斷開連接。",
9097
"fi": "Laitteen irtikytkennät.",
9098
"xloc": [
9099
- "default.handlebars->27->1213",
9100
- "default.handlebars->27->1468"
9099
+ "default.handlebars->27->1214",
9100
+ "default.handlebars->27->1469"
9101
]
9102
},
9103
{
@@ -9448,8 +9448,8 @@
9448
"zh-chs": "设备",
9449
"fi": "Laitteet",
9450
"xloc": [
9451
- "default.handlebars->27->1661",
9452
- "default.handlebars->27->1689"
9451
+ "default.handlebars->27->1662",
9452
+ "default.handlebars->27->1690"
9453
]
9454
},
9455
{
@@ -9487,7 +9487,7 @@
9487
"xloc": [
9488
"default-mobile.handlebars->9->292",
9489
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9490
- "default.handlebars->27->1295",
9490
+ "default.handlebars->27->1296",
9491
"default.handlebars->27->847",
9492
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
9493
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -9597,7 +9597,7 @@
9597
"zh-chs": "顯示設備組名稱",
9598
"fi": "Näytä laiteryhmän nimi",
9599
"xloc": [
9600
- "default.handlebars->27->1211"
9600
+ "default.handlebars->27->1212"
9601
]
9602
},
9603
{
@@ -9632,7 +9632,7 @@
9632
"zh-chs": "显示公共链接",
9633
"fi": "Näytä julkinen linkki",
9634
"xloc": [
9635
- "default.handlebars->27->1487"
9635
+ "default.handlebars->27->1488"
9636
]
9637
},
9638
{
@@ -9650,7 +9650,7 @@
9650
"zh-chs": "沒做什麼",
9651
"fi": "Älä tee mitään",
9652
"xloc": [
9653
- "default.handlebars->27->1339"
9653
+ "default.handlebars->27->1340"
9654
]
9655
},
9656
{
@@ -9659,10 +9659,10 @@
9659
"es": "Dominio",
9660
"fr": "Domaine",
9661
"xloc": [
9662
- "default.handlebars->27->1625",
9663
- "default.handlebars->27->1673",
9664
- "default.handlebars->27->1682",
9665
- "default.handlebars->27->1738",
9662
+ "default.handlebars->27->1626",
9663
+ "default.handlebars->27->1674",
9664
+ "default.handlebars->27->1683",
9665
+ "default.handlebars->27->1739",
9666
"mstsc.handlebars->main->1->3->1->2->1->0",
9667
"mstsc.handlebars->main->1->3->1->2->3"
9668
]
@@ -9678,8 +9678,8 @@
9678
"zh-chs": "不要配置",
9679
"fi": "Älä määritä",
9680
"xloc": [
9681
- "default.handlebars->27->1343",
9682
- "default.handlebars->27->1348"
9681
+ "default.handlebars->27->1344",
9682
+ "default.handlebars->27->1349"
9683
]
9684
},
9685
{
@@ -9693,7 +9693,7 @@
9693
"zh-chs": "不要连接到服务器",
9694
"fi": "Älä muodosta yhteyttä palvelimeen",
9695
"xloc": [
9696
- "default.handlebars->27->1344"
9696
+ "default.handlebars->27->1345"
9697
]
9698
},
9699
{
@@ -9800,7 +9800,7 @@
9800
"fi": "Lataa tiedosto",
9801
"xloc": [
9802
"default-mobile.handlebars->9->322",
9803
- "default.handlebars->27->879"
9803
+ "default.handlebars->27->880"
9804
]
9805
},
9806
{
@@ -9882,7 +9882,7 @@
9882
"fr": "Télécharger le rapport",
9883
"fi": "Lataa raportti",
9884
"xloc": [
9885
- "default.handlebars->27->1543",
9885
+ "default.handlebars->27->1544",
9886
"default.handlebars->container->column_l->p3->3->1->0->3"
9887
]
9888
},
@@ -10045,7 +10045,7 @@
10045
"zh-chs": "使用以下一種文件格式下載事件列表。",
10046
"fi": "Lataa luettelo tapahtumista, jollakin alla olevista tiedostomuodoista.",
10047
"xloc": [
10048
- "default.handlebars->27->1544"
10048
+ "default.handlebars->27->1545"
10049
]
10050
},
10051
{
@@ -10063,7 +10063,7 @@
10063
"zh-chs": "使用以下一種文件格式下載用戶列表。",
10064
"fi": "Lataa luettelo käyttäjistä, jollakin alla olevista tiedostomuodoista.",
10065
"xloc": [
10066
- "default.handlebars->27->1609"
10066
+ "default.handlebars->27->1610"
10067
]
10068
},
10069
{
@@ -10151,7 +10151,7 @@
10151
"zh-chs": "代理重复",
10152
"fi": "Monista Agentti",
10153
"xloc": [
10154
- "default.handlebars->27->1899"
10154
+ "default.handlebars->27->1900"
10155
]
10156
},
10157
{
@@ -10187,7 +10187,7 @@
10187
"zh-chs": "重複的用戶組",
10188
"fi": "Monista käyttäjäryhmä",
10189
"xloc": [
10190
- "default.handlebars->27->1677"
10190
+ "default.handlebars->27->1678"
10191
]
10192
},
10193
{
@@ -10220,8 +10220,8 @@
10220
"zh-chs": "持續時間",
10221
"fi": "Kesto",
10222
"xloc": [
10223
- "default.handlebars->27->1853",
10224
- "default.handlebars->27->1873",
10223
+ "default.handlebars->27->1854",
10224
+ "default.handlebars->27->1874",
10225
"player.handlebars->3->2"
10226
]
10227
},
@@ -10240,7 +10240,7 @@
10240
"zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
10241
"fi": "Aktivoinnin aikana agentilla on pääsy järjestelmänvalvojan salasanan tietoihin.",
10242
"xloc": [
10243
- "default.handlebars->27->1353"
10243
+ "default.handlebars->27->1354"
10244
]
10245
},
10246
{
@@ -10258,7 +10258,7 @@
10258
"zh-chs": "荷蘭語(比利時)",
10259
"fi": "Hollantilainen (Belgialainen)",
10260
"xloc": [
10261
- "default.handlebars->27->1052"
10261
+ "default.handlebars->27->1053"
10262
]
10263
},
10264
{
@@ -10276,7 +10276,7 @@
10276
"zh-chs": "荷蘭語(標準)",
10277
"fi": "Hollantilainen (standardi)",
10278
"xloc": [
10279
- "default.handlebars->27->1051"
10279
+ "default.handlebars->27->1052"
10280
]
10281
},
10282
{
@@ -10500,10 +10500,10 @@
10500
"default-mobile.handlebars->9->409",
10501
"default-mobile.handlebars->9->411",
10502
"default-mobile.handlebars->9->429",
10503
- "default.handlebars->27->1359",
10504
- "default.handlebars->27->1389",
10505
- "default.handlebars->27->1412",
10506
- "default.handlebars->27->1424"
10503
+ "default.handlebars->27->1360",
10504
+ "default.handlebars->27->1390",
10505
+ "default.handlebars->27->1413",
10506
+ "default.handlebars->27->1425"
10507
]
10508
},
10509
{
@@ -10521,7 +10521,7 @@
10521
"zh-chs": "編輯設備組功能",
10522
"fi": "Muokkaa laiteryhmän ominaisuuksia",
10523
"xloc": [
10524
- "default.handlebars->27->1375"
10524
+ "default.handlebars->27->1376"
10525
]
10526
},
10527
{
@@ -10539,8 +10539,8 @@
10539
"zh-chs": "編輯設備組權限",
10540
"fi": "Muokkaa laiteryhmän käyttöoikeuksia",
10541
"xloc": [
10542
- "default.handlebars->27->1409",
10543
- "default.handlebars->27->1421"
10542
+ "default.handlebars->27->1410",
10543
+ "default.handlebars->27->1422"
10544
]
10545
},
10546
{
@@ -10558,7 +10558,7 @@
10558
"zh-chs": "編輯設備組用戶同意",
10559
"fi": "Muokkaa laiteryhmän käyttäjän suostumusta",
10560
"xloc": [
10561
- "default.handlebars->27->1360"
10561
+ "default.handlebars->27->1361"
10562
]
10563
},
10564
{
@@ -10577,7 +10577,7 @@
10577
"fi": "Muokkaa laitehuomautuksia",
10578
"xloc": [
10579
"default-mobile.handlebars->9->423",
10580
- "default.handlebars->27->1402"
10580
+ "default.handlebars->27->1403"
10581
]
10582
},
10583
{
@@ -10594,8 +10594,8 @@
10594
"zh-chs": "编辑设备权限",
10595
"fi": "Muokkaa laitteen käyttöoikeuksia",
10596
"xloc": [
10597
- "default.handlebars->27->1414",
10598
- "default.handlebars->27->1416"
10597
+ "default.handlebars->27->1415",
10598
+ "default.handlebars->27->1417"
10599
]
10600
},
10601
{
@@ -10619,7 +10619,7 @@
10619
"zh-chs": "编辑设备用户同意",
10620
"fi": "Muokkaa laitteen käyttäjän suostumusta",
10621
"xloc": [
10622
- "default.handlebars->27->1362"
10622
+ "default.handlebars->27->1363"
10623
]
10624
},
10625
{
@@ -10676,7 +10676,7 @@
10676
"fi": "Muokkaa muistiinpanoja",
10677
"xloc": [
10678
"default-mobile.handlebars->9->436",
10679
- "default.handlebars->27->1431"
10679
+ "default.handlebars->27->1432"
10680
]
10681
},
10682
{
@@ -10691,7 +10691,7 @@
10691
"zh-chs": "编辑用户同意",
10692
"fi": "Muokkaa käyttäjän suostumusta",
10693
"xloc": [
10694
- "default.handlebars->27->1361"
10694
+ "default.handlebars->27->1362"
10695
]
10696
},
10697
{
@@ -10709,7 +10709,7 @@
10709
"zh-chs": "編輯用戶設備組權限",
10710
"fi": "Muokkaa käyttäjän laiteryhmän oikeuksia",
10711
"xloc": [
10712
- "default.handlebars->27->1422"
10712
+ "default.handlebars->27->1423"
10713
]
10714
},
10715
{
@@ -10726,7 +10726,7 @@
10726
"zh-chs": "编辑用户设备权限",
10727
"fi": "Muokkaa käyttäjän laitteen käyttöoikeuksia",
10728
"xloc": [
10729
- "default.handlebars->27->1417"
10729
+ "default.handlebars->27->1418"
10730
]
10731
},
10732
{
@@ -10744,7 +10744,7 @@
10744
"zh-chs": "編輯用戶組",
10745
"fi": "Muokkaa käyttäjäryhmää",
10746
"xloc": [
10747
- "default.handlebars->27->1716"
10747
+ "default.handlebars->27->1717"
10748
]
10749
},
10750
{
@@ -10759,7 +10759,7 @@
10759
"zh-chs": "编辑用户组设备权限",
10760
"fi": "Muokkaa käyttäjäryhmän laiteoikeuksia",
10761
"xloc": [
10762
- "default.handlebars->27->1419"
10762
+ "default.handlebars->27->1420"
10763
]
10764
},
10765
{
@@ -10806,11 +10806,11 @@
10806
"fi": "Sähköposti",
10807
"xloc": [
10808
"default-mobile.handlebars->9->78",
10809
- "default.handlebars->27->1627",
10810
- "default.handlebars->27->1742",
10811
- "default.handlebars->27->1744",
10812
- "default.handlebars->27->1784",
10813
- "default.handlebars->27->1800",
10809
+ "default.handlebars->27->1628",
10810
+ "default.handlebars->27->1743",
10811
+ "default.handlebars->27->1745",
10812
+ "default.handlebars->27->1785",
10813
+ "default.handlebars->27->1801",
10814
"default.handlebars->27->330",
10815
"login-mobile.handlebars->5->42",
10816
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -10834,7 +10834,7 @@
10834
"fi": "Sähköpostiosoitteen vaihto",
10835
"xloc": [
10836
"default-mobile.handlebars->9->79",
10837
- "default.handlebars->27->1220"
10837
+ "default.handlebars->27->1221"
10838
]
10839
},
10840
{
@@ -10853,7 +10853,7 @@
10853
"fi": "Sähköposti todennus",
10854
"xloc": [
10855
"default-mobile.handlebars->9->68",
10856
- "default.handlebars->27->989"
10856
+ "default.handlebars->27->990"
10857
]
10858
},
10859
{
@@ -10901,7 +10901,7 @@
10901
"fi": "Sähköpostivarmistus",
10902
"xloc": [
10903
"default-mobile.handlebars->9->77",
10904
- "default.handlebars->27->1218"
10904
+ "default.handlebars->27->1219"
10905
]
10906
},
10907
{
@@ -10933,7 +10933,7 @@
10933
"zh-chs": "邮件未验证",
10934
"fi": "Sähköposti osoitetta ei ole vahvistettu",
10935
"xloc": [
10936
- "default.handlebars->27->1573"
10936
+ "default.handlebars->27->1574"
10937
]
10938
},
10939
{
@@ -10951,8 +10951,8 @@
10951
"zh-chs": "電子郵件已驗證",
10952
"fi": "Sähköposti osoite on vahvistettu",
10953
"xloc": [
10954
- "default.handlebars->27->1574",
10955
- "default.handlebars->27->1736"
10954
+ "default.handlebars->27->1575",
10955
+ "default.handlebars->27->1737"
10956
]
10957
},
10958
{
@@ -10970,7 +10970,7 @@
10970
"zh-chs": "電子郵件已驗證。",
10971
"fi": "Sähköposti osoite on vahvistettu.",
10972
"xloc": [
10973
- "default.handlebars->27->1633"
10973
+ "default.handlebars->27->1634"
10974
]
10975
},
10976
{
@@ -10988,7 +10988,7 @@
10988
"zh-chs": "電子郵件未驗證",
10989
"fi": "Sähköposti osoitetta ei ole vahvistettu",
10990
"xloc": [
10991
- "default.handlebars->27->1737"
10991
+ "default.handlebars->27->1738"
10992
]
10993
},
10994
{
@@ -11031,7 +11031,7 @@
11031
"es": "Se requiere restablecimiento de contraseña verificado y forzado por correo electrónico.",
11032
"fi": "Sähköposti osoite vahvistettu ja salasanan palautus pakotettu.",
11033
"xloc": [
11034
- "default.handlebars->27->1634"
11034
+ "default.handlebars->27->1635"
11035
]
11036
},
11037
{
@@ -11045,7 +11045,7 @@
11045
"zh-chs": "电子邮件/短信流量",
11046
"fi": "Sähköposti/tekstiviesti liikenne",
11047
"xloc": [
11048
- "default.handlebars->27->1941"
11048
+ "default.handlebars->27->1942"
11049
]
11050
},
11051
{
@@ -11086,7 +11086,7 @@
11086
"zh-chs": "啟用邀請代碼",
11087
"fi": "Ota kutsukoodit käyttöön",
11088
"xloc": [
11089
- "default.handlebars->27->1452"
11089
+ "default.handlebars->27->1453"
11090
]
11091
},
11092
{
@@ -11123,7 +11123,7 @@
11123
"fi": "Ota käyttöön kaksi vaihenen todennus sähköpostitse.",
11124
"xloc": [
11125
"default-mobile.handlebars->9->70",
11126
- "default.handlebars->27->991"
11126
+ "default.handlebars->27->992"
11127
]
11128
},
11129
{
@@ -11151,7 +11151,7 @@
11151
"fr": "Activer",
11152
"fi": "Käytössä",
11153
"xloc": [
11154
- "default.handlebars->27->1875"
11154
+ "default.handlebars->27->1876"
11155
]
11156
},
11157
{
@@ -11179,7 +11179,7 @@
11179
"es": "Tiempo de finalización",
11180
"fr": "Heure de fin",
11181
"xloc": [
11182
- "default.handlebars->27->1872"
11182
+ "default.handlebars->27->1873"
11183
]
11184
},
11185
{
@@ -11197,7 +11197,7 @@
11197
"zh-chs": "英語",
11198
"fi": "Englanti",
11199
"xloc": [
11200
- "default.handlebars->27->1053"
11200
+ "default.handlebars->27->1054"
11201
]
11202
},
11203
{
@@ -11215,7 +11215,7 @@
11215
"zh-chs": "英文(澳洲)",
11216
"fi": "Englanti (Australia)",
11217
"xloc": [
11218
- "default.handlebars->27->1054"
11218
+ "default.handlebars->27->1055"
11219
]
11220
},
11221
{
@@ -11233,7 +11233,7 @@
11233
"zh-chs": "英語(伯利茲)",
11234
"fi": "Englanti (Belize)",
11235
"xloc": [
11236
- "default.handlebars->27->1055"
11236
+ "default.handlebars->27->1056"
11237
]
11238
},
11239
{
@@ -11251,7 +11251,7 @@
11251
"zh-chs": "英文(加拿大)",
11252
"fi": "Englanti (Kanada)",
11253
"xloc": [
11254
- "default.handlebars->27->1056"
11254
+ "default.handlebars->27->1057"
11255
]
11256
},
11257
{
@@ -11269,7 +11269,7 @@
11269
"zh-chs": "英文(愛爾蘭)",
11270
"fi": "Englanti (Irlanti)",
11271
"xloc": [
11272
- "default.handlebars->27->1057"
11272
+ "default.handlebars->27->1058"
11273
]
11274
},
11275
{
@@ -11287,7 +11287,7 @@
11287
"zh-chs": "英文(牙買加)",
11288
"fi": "Englanti (Jamaika)",
11289
"xloc": [
11290
- "default.handlebars->27->1058"
11290
+ "default.handlebars->27->1059"
11291
]
11292
},
11293
{
@@ -11305,7 +11305,7 @@
11305
"zh-chs": "英文(紐西蘭)",
11306
"fi": "Englanti (Uusi-Seelanti)",
11307
"xloc": [
11308
- "default.handlebars->27->1059"
11308
+ "default.handlebars->27->1060"
11309
]
11310
},
11311
{
@@ -11323,7 +11323,7 @@
11323
"zh-chs": "英文(菲律賓)",
11324
"fi": "Englanti (Filippiinit)",
11325
"xloc": [
11326
- "default.handlebars->27->1060"
11326
+ "default.handlebars->27->1061"
11327
]
11328
},
11329
{
@@ -11341,7 +11341,7 @@
11341
"zh-chs": "英語(南非)",
11342
"fi": "Englanti (Etelä-Afrikka)",
11343
"xloc": [
11344
- "default.handlebars->27->1061"
11344
+ "default.handlebars->27->1062"
11345
]
11346
},
11347
{
@@ -11359,7 +11359,7 @@
11359
"zh-chs": "英文(特立尼達和多巴哥)",
11360
"fi": "Englanti (Trinidad ja Tobago)",
11361
"xloc": [
11362
- "default.handlebars->27->1062"
11362
+ "default.handlebars->27->1063"
11363
]
11364
},
11365
{
@@ -11377,7 +11377,7 @@
11377
"zh-chs": "英文(英國)",
11378
"fi": "Englanti (Yhdistynyt kuningaskunta)",
11379
"xloc": [
11380
- "default.handlebars->27->1063"
11380
+ "default.handlebars->27->1064"
11381
]
11382
},
11383
{
@@ -11395,7 +11395,7 @@
11395
"zh-chs": "美國英語)",
11396
"fi": "Englanti (Yhdysvallat)",
11397
"xloc": [
11398
- "default.handlebars->27->1064"
11398
+ "default.handlebars->27->1065"
11399
]
11400
},
11401
{
@@ -11413,7 +11413,7 @@
11413
"zh-chs": "英文(津巴布韋)",
11414
"fi": "Englanti (Zimbabwe)",
11415
"xloc": [
11416
- "default.handlebars->27->1065"
11416
+ "default.handlebars->27->1066"
11417
]
11418
},
11419
{
@@ -11430,8 +11430,8 @@
11430
"ru": "Ввод",
11431
"zh-chs": "輸入",
11432
"xloc": [
11433
- "default.handlebars->27->1246",
11434
- "default.handlebars->27->1247"
11433
+ "default.handlebars->27->1247",
11434
+ "default.handlebars->27->1248"
11435
]
11436
},
11437
{
@@ -11449,7 +11449,7 @@
11449
"zh-chs": "輸入管理領域名稱的逗號分隔列表。",
11450
"fi": "Syötä pilkulla eroteltu luettelo hallinnollisten alueiden nimistä.",
11451
"xloc": [
11452
- "default.handlebars->27->1638"
11452
+ "default.handlebars->27->1639"
11453
]
11454
},
11455
{
@@ -11537,7 +11537,7 @@
11537
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
11538
"fi": "Kirjoita tekstiviestihin pystyvä puhelinnumerosi. Kun numero on vahvistettu, sitä voidaan käyttää kirjautumisen varmentamiseen ja muihin ilmoituksiin.",
11539
"xloc": [
11540
- "default.handlebars->27->986"
11540
+ "default.handlebars->27->987"
11541
]
11542
},
11543
{
@@ -11591,7 +11591,7 @@
11591
"zh-chs": "世界語",
11592
"fi": "Esperanto",
11593
"xloc": [
11594
- "default.handlebars->27->1066"
11594
+ "default.handlebars->27->1067"
11595
]
11596
},
11597
{
@@ -11609,7 +11609,7 @@
11609
"zh-chs": "愛沙尼亞語",
11610
"fi": "Virolainen",
11611
"xloc": [
11612
- "default.handlebars->27->1067"
11612
+ "default.handlebars->27->1068"
11613
]
11614
},
11615
{
@@ -11627,7 +11627,7 @@
11627
"zh-chs": "活動詳情",
11628
"fi": "Tapahtuman lisätiedot",
11629
"xloc": [
11630
- "default.handlebars->27->892"
11630
+ "default.handlebars->27->893"
11631
]
11632
},
11633
{
@@ -11645,7 +11645,7 @@
11645
"zh-chs": "活動列表導出",
11646
"fi": "Tapahtumaluettelon vienti",
11647
"xloc": [
11648
- "default.handlebars->27->1549"
11648
+ "default.handlebars->27->1550"
11649
]
11650
},
11651
{
@@ -11794,7 +11794,7 @@
11794
"zh-chs": "外部",
11795
"fi": "Ulkoinen",
11796
"xloc": [
11797
- "default.handlebars->27->1926"
11797
+ "default.handlebars->27->1927"
11798
]
11799
},
11800
{
@@ -11822,7 +11822,7 @@
11822
"zh-chs": "FYRO馬其頓語",
11823
"fi": "FYRO Makedonialainen",
11824
"xloc": [
11825
- "default.handlebars->27->1117"
11825
+ "default.handlebars->27->1118"
11826
]
11827
},
11828
{
@@ -11840,7 +11840,7 @@
11840
"zh-chs": "法羅語",
11841
"fi": "Färsaarelainen",
11842
"xloc": [
11843
- "default.handlebars->27->1068"
11843
+ "default.handlebars->27->1069"
11844
]
11845
},
11846
{
@@ -11891,7 +11891,7 @@
11891
"zh-chs": "波斯語(波斯語)",
11892
"fi": "Persia (persia)",
11893
"xloc": [
11894
- "default.handlebars->27->1069"
11894
+ "default.handlebars->27->1070"
11895
]
11896
},
11897
{
@@ -11929,7 +11929,7 @@
11929
"zh-chs": "特徵",
11930
"fi": "Ominaisuudet",
11931
"xloc": [
11932
- "default.handlebars->27->1281"
11932
+ "default.handlebars->27->1282"
11933
]
11934
},
11935
{
@@ -11947,7 +11947,7 @@
11947
"zh-chs": "斐濟",
11948
"fi": "Fidzi",
11949
"xloc": [
11950
- "default.handlebars->27->1070"
11950
+ "default.handlebars->27->1071"
11951
]
11952
},
11953
{
@@ -11967,7 +11967,7 @@
11967
"xloc": [
11968
"default-mobile.handlebars->9->306",
11969
"default.handlebars->27->505",
11970
- "default.handlebars->27->863"
11970
+ "default.handlebars->27->864"
11971
]
11972
},
11973
{
@@ -11975,7 +11975,8 @@
11975
"nl": "Bestandsbewerking",
11976
"fr": "Opération sur les fichiers",
11977
"xloc": [
11978
- "default.handlebars->27->849"
11978
+ "default.handlebars->27->849",
11979
+ "default.handlebars->27->851"
11980
]
11981
},
11982
{
@@ -12031,8 +12032,8 @@
12032
"xloc": [
12033
"default-mobile.handlebars->9->167",
12034
"default-mobile.handlebars->9->257",
12034
- "default.handlebars->27->1370",
12035
- "default.handlebars->27->1860",
12035
+ "default.handlebars->27->1371",
12036
+ "default.handlebars->27->1861",
12037
"default.handlebars->27->247",
12038
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
12039
"default.handlebars->contextMenu->cxfiles"
@@ -12071,8 +12072,8 @@
12072
"zh-chs": "文件通知",
12073
"fi": "Tiedostot Ilmoita",
12074
"xloc": [
12074
- "default.handlebars->27->1289",
12075
- "default.handlebars->27->1769",
12075
+ "default.handlebars->27->1290",
12076
+ "default.handlebars->27->1770",
12077
"default.handlebars->27->588"
12078
]
12079
},
@@ -12091,8 +12092,8 @@
12092
"zh-chs": "文件提示",
12093
"fi": "Tiedostot kysy",
12094
"xloc": [
12094
- "default.handlebars->27->1288",
12095
- "default.handlebars->27->1768",
12095
+ "default.handlebars->27->1289",
12096
+ "default.handlebars->27->1769",
12097
"default.handlebars->27->587"
12098
]
12099
},
@@ -12132,7 +12133,7 @@
12133
"zh-chs": "芬蘭",
12134
"fi": "Suomalainen",
12135
"xloc": [
12135
- "default.handlebars->27->1071"
12136
+ "default.handlebars->27->1072"
12137
]
12138
},
12139
{
@@ -12258,8 +12259,8 @@
12259
"zh-chs": "下次登錄時強制重置密碼。",
12260
"fi": "Pakota salasanan palautus seuraavan kirjautumisen yhteydessä.",
12261
"xloc": [
12261
- "default.handlebars->27->1632",
12262
- "default.handlebars->27->1809"
12262
+ "default.handlebars->27->1633",
12263
+ "default.handlebars->27->1810"
12264
]
12265
},
12266
{
@@ -12323,7 +12324,7 @@
12324
"es": "Formato",
12325
"fi": "Muoto",
12326
"xloc": [
12326
- "default.handlebars->27->1540"
12327
+ "default.handlebars->27->1541"
12328
]
12329
},
12330
{
@@ -12360,8 +12361,8 @@
12361
"zh-chs": "自由",
12362
"fi": "Vapaata",
12363
"xloc": [
12363
- "default.handlebars->27->1884",
12364
- "default.handlebars->27->1886"
12364
+ "default.handlebars->27->1885",
12365
+ "default.handlebars->27->1887"
12366
]
12367
},
12368
{
@@ -12398,7 +12399,7 @@
12399
"zh-chs": "法語(比利時)",
12400
"fi": "Ranska (Belgia)",
12401
"xloc": [
12401
- "default.handlebars->27->1073"
12402
+ "default.handlebars->27->1074"
12403
]
12404
},
12405
{
@@ -12416,7 +12417,7 @@
12417
"zh-chs": "法語(加拿大)",
12418
"fi": "Ranska (Kanada)",
12419
"xloc": [
12419
- "default.handlebars->27->1074"
12420
+ "default.handlebars->27->1075"
12421
]
12422
},
12423
{
@@ -12434,7 +12435,7 @@
12435
"zh-chs": "法語(法國)",
12436
"fi": "Ranska (Ranska)",
12437
"xloc": [
12437
- "default.handlebars->27->1075"
12438
+ "default.handlebars->27->1076"
12439
]
12440
},
12441
{
@@ -12452,7 +12453,7 @@
12453
"zh-chs": "法語(盧森堡)",
12454
"fi": "Ranska (Luxemburg)",
12455
"xloc": [
12455
- "default.handlebars->27->1076"
12456
+ "default.handlebars->27->1077"
12457
]
12458
},
12459
{
@@ -12470,7 +12471,7 @@
12471
"zh-chs": "法語(摩納哥)",
12472
"fi": "Ranska (Monaco)",
12473
"xloc": [
12473
- "default.handlebars->27->1077"
12474
+ "default.handlebars->27->1078"
12475
]
12476
},
12477
{
@@ -12488,7 +12489,7 @@
12489
"zh-chs": "法語(標準)",
12490
"fi": "Ranska (standardi)",
12491
"xloc": [
12491
- "default.handlebars->27->1072"
12492
+ "default.handlebars->27->1073"
12493
]
12494
},
12495
{
@@ -12506,7 +12507,7 @@
12507
"zh-chs": "法語(瑞士)",
12508
"fi": "Ranska (Sveitsi)",
12509
"xloc": [
12509
- "default.handlebars->27->1078"
12510
+ "default.handlebars->27->1079"
12511
]
12512
},
12513
{
@@ -12524,7 +12525,7 @@
12525
"zh-chs": "弗里斯蘭語",
12526
"fi": "Friisiläinen",
12527
"xloc": [
12527
- "default.handlebars->27->1079"
12528
+ "default.handlebars->27->1080"
12529
]
12530
},
12531
{
@@ -12542,7 +12543,7 @@
12543
"zh-chs": "弗留利",
12544
"fi": "Friulilainen",
12545
"xloc": [
12545
- "default.handlebars->27->1080"
12546
+ "default.handlebars->27->1081"
12547
]
12548
},
12549
{
@@ -12564,9 +12565,9 @@
12565
"default-mobile.handlebars->9->401",
12566
"default-mobile.handlebars->9->410",
12567
"default-mobile.handlebars->9->428",
12567
- "default.handlebars->27->1253",
12568
- "default.handlebars->27->1388",
12569
- "default.handlebars->27->1644"
12568
+ "default.handlebars->27->1254",
12569
+ "default.handlebars->27->1389",
12570
+ "default.handlebars->27->1645"
12571
]
12572
},
12573
{
@@ -12584,7 +12585,7 @@
12585
"zh-chs": "正式管理員(保留所有權利)",
12586
"fi": "Täysi Järjestelmänvalvoja (kaikki oikeudet)",
12587
"xloc": [
12587
- "default.handlebars->27->1423"
12588
+ "default.handlebars->27->1424"
12589
]
12590
},
12591
{
@@ -12671,7 +12672,7 @@
12672
"zh-chs": "正式管理員",
12673
"fi": "Täysi järjestelmänvalvoja",
12674
"xloc": [
12674
- "default.handlebars->27->1730"
12675
+ "default.handlebars->27->1731"
12676
]
12677
},
12678
{
@@ -12686,7 +12687,7 @@
12687
"fi": "GPU",
12688
"xloc": [
12689
"default-mobile.handlebars->9->379",
12689
- "default.handlebars->27->954"
12690
+ "default.handlebars->27->955"
12691
]
12692
},
12693
{
@@ -12704,7 +12705,7 @@
12705
"zh-chs": "蓋爾語(愛爾蘭)",
12706
"fi": "Gaeli (Irlantilainen)",
12707
"xloc": [
12707
- "default.handlebars->27->1082"
12708
+ "default.handlebars->27->1083"
12709
]
12710
},
12711
{
@@ -12722,7 +12723,7 @@
12723
"zh-chs": "蓋爾語(蘇格蘭語)",
12724
"fi": "Gaeli (Skotlantilainen)",
12725
"xloc": [
12725
- "default.handlebars->27->1081"
12726
+ "default.handlebars->27->1082"
12727
]
12728
},
12729
{
@@ -12740,7 +12741,7 @@
12741
"zh-chs": "加拉契人",
12742
"fi": "Gaelinkielinen",
12743
"xloc": [
12743
- "default.handlebars->27->1083"
12744
+ "default.handlebars->27->1084"
12745
]
12746
},
12747
{
@@ -12853,7 +12854,7 @@
12854
"zh-chs": "格魯吉亞人",
12855
"fi": "Georgialainen",
12856
"xloc": [
12856
- "default.handlebars->27->1084"
12857
+ "default.handlebars->27->1085"
12858
]
12859
},
12860
{
@@ -12871,7 +12872,7 @@
12872
"zh-chs": "德語(奧地利)",
12873
"fi": "Saksalainen (Itävalta)",
12874
"xloc": [
12874
- "default.handlebars->27->1086"
12875
+ "default.handlebars->27->1087"
12876
]
12877
},
12878
{
@@ -12889,7 +12890,7 @@
12890
"zh-chs": "德文(德國)",
12891
"fi": "Saksalainen (Saksa)",
12892
"xloc": [
12892
- "default.handlebars->27->1087"
12893
+ "default.handlebars->27->1088"
12894
]
12895
},
12896
{
@@ -12907,7 +12908,7 @@
12908
"zh-chs": "德文(列支敦士登)",
12909
"fi": "Saksalainen (Liechtenstein)",
12910
"xloc": [
12910
- "default.handlebars->27->1088"
12911
+ "default.handlebars->27->1089"
12912
]
12913
},
12914
{
@@ -12925,7 +12926,7 @@
12926
"zh-chs": "德語(盧森堡)",
12927
"fi": "Saksalainen (Luxemburg)",
12928
"xloc": [
12928
- "default.handlebars->27->1089"
12929
+ "default.handlebars->27->1090"
12930
]
12931
},
12932
{
@@ -12943,7 +12944,7 @@
12944
"zh-chs": "德語(標準)",
12945
"fi": "Saksalainen (Standardi)",
12946
"xloc": [
12946
- "default.handlebars->27->1085"
12947
+ "default.handlebars->27->1086"
12948
]
12949
},
12950
{
@@ -12961,7 +12962,7 @@
12962
"zh-chs": "德語(瑞士)",
12963
"fi": "Saksalainen (Sveitsi)",
12964
"xloc": [
12964
- "default.handlebars->27->1090"
12965
+ "default.handlebars->27->1091"
12966
]
12967
},
12968
{
@@ -13049,7 +13050,7 @@
13050
"zh-chs": "好",
13051
"fi": "Hyvä",
13052
"xloc": [
13052
- "default.handlebars->27->1249"
13053
+ "default.handlebars->27->1250"
13054
]
13055
},
13056
{
@@ -13088,7 +13089,7 @@
13089
"zh-chs": "希臘語",
13090
"fi": "Kreikkalainen",
13091
"xloc": [
13091
- "default.handlebars->27->1091"
13092
+ "default.handlebars->27->1092"
13093
]
13094
},
13095
{
@@ -13126,8 +13127,8 @@
13127
"zh-chs": "集體行動",
13128
"fi": "Ryhmätoiminta",
13129
"xloc": [
13129
- "default.handlebars->27->1588",
13130
- "default.handlebars->27->1667",
13130
+ "default.handlebars->27->1589",
13131
+ "default.handlebars->27->1668",
13132
"default.handlebars->27->456",
13133
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
13134
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -13141,7 +13142,7 @@
13142
"fr": "Grouper par",
13143
"fi": "Ryhmittele",
13144
"xloc": [
13144
- "default.handlebars->27->1536"
13145
+ "default.handlebars->27->1537"
13146
]
13147
},
13148
{
@@ -13151,7 +13152,7 @@
13152
"fr": "Identifiant de groupe",
13153
"fi": "Ryhmän tunniste",
13154
"xloc": [
13154
- "default.handlebars->27->1684"
13155
+ "default.handlebars->27->1685"
13156
]
13157
},
13158
{
@@ -13169,7 +13170,7 @@
13170
"zh-chs": "小組成員",
13171
"fi": "Ryhmän jäsenet",
13172
"xloc": [
13172
- "default.handlebars->27->1693"
13173
+ "default.handlebars->27->1694"
13174
]
13175
},
13176
{
@@ -13187,7 +13188,7 @@
13188
"zh-chs": "用戶{0}的組權限。",
13189
"fi": "Ryhmän käyttöoikeudet käyttäjälle {0}.",
13190
"xloc": [
13190
- "default.handlebars->27->1387"
13191
+ "default.handlebars->27->1388"
13192
]
13193
},
13194
{
@@ -13205,7 +13206,7 @@
13206
"zh-chs": "{0}的組權限。",
13207
"fi": "Ryhmän käyttöoikeudet {0}:lle.",
13208
"xloc": [
13208
- "default.handlebars->27->1386"
13209
+ "default.handlebars->27->1387"
13210
]
13211
},
13212
{
@@ -13269,7 +13270,7 @@
13270
"zh-chs": "古久拉提",
13271
"fi": "Gujurati",
13272
"xloc": [
13272
- "default.handlebars->27->1092"
13273
+ "default.handlebars->27->1093"
13274
]
13275
},
13276
{
@@ -13307,7 +13308,7 @@
13308
"zh-chs": "海地",
13309
"fi": "Haitilainen",
13310
"xloc": [
13310
- "default.handlebars->27->1093"
13311
+ "default.handlebars->27->1094"
13312
]
13313
},
13314
{
@@ -13343,7 +13344,7 @@
13344
"zh-chs": "硬斷開劑",
13345
"fi": "Kova irrota agentti",
13346
"xloc": [
13346
- "default.handlebars->27->981"
13347
+ "default.handlebars->27->982"
13348
]
13349
},
13350
{
@@ -13361,7 +13362,7 @@
13362
"zh-chs": "堆總數",
13363
"fi": "Pino yhteensä",
13364
"xloc": [
13364
- "default.handlebars->27->1928"
13365
+ "default.handlebars->27->1929"
13366
]
13367
},
13368
{
@@ -13379,7 +13380,7 @@
13380
"zh-chs": "堆使用",
13381
"fi": "Pinoa käytetty",
13382
"xloc": [
13382
- "default.handlebars->27->1927"
13383
+ "default.handlebars->27->1928"
13384
]
13385
},
13386
{
@@ -13397,7 +13398,7 @@
13398
"zh-chs": "希伯來語",
13399
"fi": "Heprealainen",
13400
"xloc": [
13400
- "default.handlebars->27->1094"
13401
+ "default.handlebars->27->1095"
13402
]
13403
},
13404
{
@@ -13433,7 +13434,7 @@
13434
"zh-chs": "幫助翻譯MeshCentral",
13435
"fi": "Auta MeshCentralin kääntämisessä",
13436
"xloc": [
13436
- "default.handlebars->27->1208"
13437
+ "default.handlebars->27->1209"
13438
]
13439
},
13440
{
@@ -13524,7 +13525,7 @@
13525
"zh-chs": "印地語",
13526
"fi": "Hindi",
13527
"xloc": [
13527
- "default.handlebars->27->1095"
13528
+ "default.handlebars->27->1096"
13529
]
13530
},
13531
{
@@ -13558,7 +13559,7 @@
13559
"fi": "Yksi valittu kopiointia varten",
13560
"xloc": [
13561
"default-mobile.handlebars->9->315",
13561
- "default.handlebars->27->873"
13562
+ "default.handlebars->27->874"
13563
]
13564
},
13565
{
@@ -13577,7 +13578,7 @@
13578
"fi": "Yksi valittu siirtoa varten",
13579
"xloc": [
13580
"default-mobile.handlebars->9->319",
13580
- "default.handlebars->27->877"
13581
+ "default.handlebars->27->878"
13582
]
13583
},
13584
{
@@ -13596,7 +13597,7 @@
13597
"fi": "{0} kohdetta valittu kopiointia varten",
13598
"xloc": [
13599
"default-mobile.handlebars->9->313",
13599
- "default.handlebars->27->871"
13600
+ "default.handlebars->27->872"
13601
]
13602
},
13603
{
@@ -13615,7 +13616,7 @@
13616
"fi": "{0} kohdetta valittu siirtoa varten",
13617
"xloc": [
13618
"default-mobile.handlebars->9->317",
13618
- "default.handlebars->27->875"
13619
+ "default.handlebars->27->876"
13620
]
13621
},
13622
{
@@ -13634,7 +13635,7 @@
13635
"fi": "{0} kohde{1} valittu {2} varten",
13636
"xloc": [
13637
"default-mobile.handlebars->9->129",
13637
- "default.handlebars->27->1522"
13638
+ "default.handlebars->27->1523"
13639
]
13640
},
13641
{
@@ -13676,7 +13677,7 @@
13677
"zh-chs": "主機名同步",
13678
"fi": "Isäntänimen synkronointi",
13679
"xloc": [
13679
- "default.handlebars->27->1279"
13680
+ "default.handlebars->27->1280"
13681
]
13682
},
13683
{
@@ -13694,7 +13695,7 @@
13695
"zh-chs": "匈牙利",
13696
"fi": "Unkarilainen",
13697
"xloc": [
13697
- "default.handlebars->27->1096"
13698
+ "default.handlebars->27->1097"
13699
]
13700
},
13701
{
@@ -13752,9 +13753,9 @@
13753
"xloc": [
13754
"default-mobile.handlebars->9->348",
13755
"default-mobile.handlebars->9->352",
13755
- "default.handlebars->27->913",
13756
- "default.handlebars->27->923",
13757
- "default.handlebars->27->927"
13756
+ "default.handlebars->27->914",
13757
+ "default.handlebars->27->924",
13758
+ "default.handlebars->27->928"
13759
]
13760
},
13761
{
@@ -13774,9 +13775,9 @@
13775
"xloc": [
13776
"default-mobile.handlebars->9->346",
13777
"default-mobile.handlebars->9->350",
13777
- "default.handlebars->27->911",
13778
- "default.handlebars->27->921",
13779
- "default.handlebars->27->925"
13778
+ "default.handlebars->27->912",
13779
+ "default.handlebars->27->922",
13780
+ "default.handlebars->27->926"
13781
]
13782
},
13783
{
@@ -13796,10 +13797,10 @@
13797
"xloc": [
13798
"default-mobile.handlebars->9->345",
13799
"default-mobile.handlebars->9->347",
13799
- "default.handlebars->27->910",
13800
- "default.handlebars->27->912",
13801
- "default.handlebars->27->920",
13802
- "default.handlebars->27->922"
13800
+ "default.handlebars->27->911",
13801
+ "default.handlebars->27->913",
13802
+ "default.handlebars->27->921",
13803
+ "default.handlebars->27->923"
13804
]
13805
},
13806
{
@@ -13867,8 +13868,8 @@
13868
"xloc": [
13869
"default-mobile.handlebars->9->349",
13870
"default-mobile.handlebars->9->351",
13870
- "default.handlebars->27->924",
13871
- "default.handlebars->27->926"
13871
+ "default.handlebars->27->925",
13872
+ "default.handlebars->27->927"
13873
]
13874
},
13875
{
@@ -13916,7 +13917,7 @@
13917
"zh-chs": "冰島的",
13918
"fi": "Islantilainen",
13919
"xloc": [
13919
- "default.handlebars->27->1097"
13920
+ "default.handlebars->27->1098"
13921
]
13922
},
13923
{
@@ -13954,7 +13955,7 @@
13955
"fi": "Tunniste",
13956
"xloc": [
13957
"default-mobile.handlebars->9->377",
13957
- "default.handlebars->27->952"
13958
+ "default.handlebars->27->953"
13959
]
13960
},
13961
{
@@ -14075,7 +14076,7 @@
14076
"zh-chs": "印度尼西亞",
14077
"fi": "Indonesialainen",
14078
"xloc": [
14078
- "default.handlebars->27->1098"
14079
+ "default.handlebars->27->1099"
14080
]
14081
},
14082
{
@@ -14200,7 +14201,7 @@
14201
"zh-chs": "安裝CIRA",
14202
"fi": "Asenna CIRA",
14203
"xloc": [
14203
- "default.handlebars->27->1312"
14204
+ "default.handlebars->27->1313"
14205
]
14206
},
14207
{
@@ -14218,7 +14219,7 @@
14219
"zh-chs": "安裝本地",
14220
"fi": "Asenna paikallinen",
14221
"xloc": [
14221
- "default.handlebars->27->1314"
14222
+ "default.handlebars->27->1315"
14223
]
14224
},
14225
{
@@ -14236,8 +14237,8 @@
14237
"zh-chs": "安裝類型",
14238
"fi": "Asennustyyppi",
14239
"xloc": [
14239
- "default.handlebars->27->1454",
14240
- "default.handlebars->27->1461",
14240
+ "default.handlebars->27->1455",
14241
+ "default.handlebars->27->1462",
14242
"default.handlebars->27->345",
14243
"default.handlebars->27->359",
14244
"default.handlebars->27->373"
@@ -14277,10 +14278,10 @@
14278
"zh-chs": "英特爾AMT",
14279
"fi": "Intel AMT",
14280
"xloc": [
14280
- "default.handlebars->27->1473",
14281
- "default.handlebars->27->1481",
14282
- "default.handlebars->27->1924",
14283
- "default.handlebars->27->1946"
14281
+ "default.handlebars->27->1474",
14282
+ "default.handlebars->27->1482",
14283
+ "default.handlebars->27->1925",
14284
+ "default.handlebars->27->1947"
14285
]
14286
},
14287
{
@@ -14326,7 +14327,7 @@
14327
"fr": "Redirection Intel AMT",
14328
"fi": "Intel AMT uudelleenohjaus",
14329
"xloc": [
14329
- "default.handlebars->27->1862"
14330
+ "default.handlebars->27->1863"
14331
]
14332
},
14333
{
@@ -14336,7 +14337,7 @@
14337
"fr": "WSMAN Intel AMT",
14338
"fi": "Intel AMT WSMAN",
14339
"xloc": [
14339
- "default.handlebars->27->1861"
14340
+ "default.handlebars->27->1862"
14341
]
14342
},
14343
{
@@ -14481,8 +14482,8 @@
14482
"default-mobile.handlebars->9->201",
14483
"default-mobile.handlebars->9->236",
14484
"default-mobile.handlebars->9->241",
14484
- "default.handlebars->27->1296",
14485
- "default.handlebars->27->1306",
14485
+ "default.handlebars->27->1297",
14486
+ "default.handlebars->27->1307",
14487
"default.handlebars->27->515",
14488
"default.handlebars->27->570",
14489
"default.handlebars->27->598"
@@ -14577,7 +14578,7 @@
14578
"zh-chs": "英特爾®AMT政策",
14579
"fi": "Intel® AMT politiikka",
14580
"xloc": [
14580
- "default.handlebars->27->1335"
14581
+ "default.handlebars->27->1336"
14582
]
14583
},
14584
{
@@ -14687,8 +14688,8 @@
14688
"zh-chs": "英特爾®AMT桌面和串行事件。",
14689
"fi": "Intel® AMT työpöytä ja sarjaliikenne ilmoitukset.",
14690
"xloc": [
14690
- "default.handlebars->27->1214",
14691
- "default.handlebars->27->1469"
14691
+ "default.handlebars->27->1215",
14692
+ "default.handlebars->27->1470"
14693
]
14694
},
14695
{
@@ -14780,8 +14781,8 @@
14781
"fi": "Vain Intel® AMT, ei agenttia",
14782
"xloc": [
14783
"default-mobile.handlebars->9->392",
14783
- "default.handlebars->27->1243",
14784
- "default.handlebars->27->1269"
14784
+ "default.handlebars->27->1244",
14785
+ "default.handlebars->27->1270"
14786
]
14787
},
14788
{
@@ -14818,7 +14819,7 @@
14819
"fi": "Intel® Active Management-tekniikka (Inter® AMT)",
14820
"xloc": [
14821
"default-mobile.handlebars->9->369",
14821
- "default.handlebars->27->944"
14822
+ "default.handlebars->27->945"
14823
]
14824
},
14825
{
@@ -15013,8 +15014,8 @@
15014
"zh-chs": "僅限互動",
15015
"fi": "Vain interaktiivinen",
15016
"xloc": [
15016
- "default.handlebars->27->1457",
15017
- "default.handlebars->27->1464",
15017
+ "default.handlebars->27->1458",
15018
+ "default.handlebars->27->1465",
15019
"default.handlebars->27->348",
15020
"default.handlebars->27->362",
15021
"default.handlebars->27->376"
@@ -15053,7 +15054,7 @@
15054
"zh-chs": "因紐特人",
15055
"fi": "Inuktitut",
15056
"xloc": [
15056
- "default.handlebars->27->1099"
15057
+ "default.handlebars->27->1100"
15058
]
15059
},
15060
{
@@ -15071,7 +15072,7 @@
15072
"zh-chs": "無效的設備組類型",
15073
"fi": "Virheellinen laiteryhmän tyyppi",
15074
"xloc": [
15074
- "default.handlebars->27->1898"
15075
+ "default.handlebars->27->1899"
15076
]
15077
},
15078
{
@@ -15089,7 +15090,7 @@
15090
"zh-chs": "無效的JSON",
15091
"fi": "Virheellinen JSON",
15092
"xloc": [
15092
- "default.handlebars->27->1892"
15093
+ "default.handlebars->27->1893"
15094
]
15095
},
15096
{
@@ -15107,8 +15108,8 @@
15108
"zh-chs": "無效的JSON文件格式。",
15109
"fi": "Virheellinen JSON-tiedostomuoto.",
15110
"xloc": [
15110
- "default.handlebars->27->1606",
15111
- "default.handlebars->27->1608"
15111
+ "default.handlebars->27->1607",
15112
+ "default.handlebars->27->1609"
15113
]
15114
},
15115
{
@@ -15126,7 +15127,7 @@
15127
"zh-chs": "無效的JSON文件:{0}。",
15128
"fi": "JSON-tiedosto {0} on virheellinen.",
15129
"xloc": [
15129
- "default.handlebars->27->1604"
15130
+ "default.handlebars->27->1605"
15131
]
15132
},
15133
{
@@ -15144,7 +15145,7 @@
15145
"zh-chs": "無效的PKCS簽名",
15146
"fi": "Virheellinen PKCS-allekirjoitus",
15147
"xloc": [
15147
- "default.handlebars->27->1890"
15148
+ "default.handlebars->27->1891"
15149
]
15150
},
15151
{
@@ -15162,7 +15163,7 @@
15163
"zh-chs": "無效的RSA密碼",
15164
"fi": "Virheellinen RSA-allekirjoitus",
15165
"xloc": [
15165
- "default.handlebars->27->1891"
15166
+ "default.handlebars->27->1892"
15167
]
15168
},
15169
{
@@ -15247,7 +15248,7 @@
15248
"fr": "Email invalide",
15249
"fi": "Mitätöi sähköpostiosoite",
15250
"xloc": [
15250
- "default.handlebars->27->1582"
15251
+ "default.handlebars->27->1583"
15252
]
15253
},
15254
{
@@ -15315,7 +15316,7 @@
15316
"ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:",
15317
"zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
15318
"xloc": [
15318
- "default.handlebars->27->1459"
15319
+ "default.handlebars->27->1460"
15320
]
15321
},
15322
{
@@ -15350,7 +15351,7 @@
15351
"zh-chs": "邀請",
15352
"fi": "Kutsu",
15353
"xloc": [
15353
- "default.handlebars->27->1322",
15354
+ "default.handlebars->27->1323",
15355
"default.handlebars->27->278",
15356
"default.handlebars->27->364"
15357
]
@@ -15370,11 +15371,11 @@
15371
"zh-chs": "邀請碼",
15372
"fi": "Kutsu koodit",
15373
"xloc": [
15373
- "default.handlebars->27->1300",
15374
- "default.handlebars->27->1453",
15375
- "default.handlebars->27->1458",
15376
- "default.handlebars->27->1460",
15377
- "default.handlebars->27->1465"
15374
+ "default.handlebars->27->1301",
15375
+ "default.handlebars->27->1454",
15376
+ "default.handlebars->27->1459",
15377
+ "default.handlebars->27->1461",
15378
+ "default.handlebars->27->1466"
15379
]
15380
},
15381
{
@@ -15406,7 +15407,7 @@
15407
"zh-chs": "邀请某人在该设备组上安装网状代理。",
15408
"fi": "Kutsu joku asentamaan Mesh agentti tähän laiteryhmään.",
15409
"xloc": [
15409
- "default.handlebars->27->1321",
15410
+ "default.handlebars->27->1322",
15411
"default.handlebars->27->277"
15412
]
15413
},
@@ -15442,7 +15443,7 @@
15443
"zh-chs": "愛爾蘭人",
15444
"fi": "Irlantilainen",
15445
"xloc": [
15445
- "default.handlebars->27->1100"
15446
+ "default.handlebars->27->1101"
15447
]
15448
},
15449
{
@@ -15460,7 +15461,7 @@
15461
"zh-chs": "意大利語(標準)",
15462
"fi": "Italialainen (Standardi)",
15463
"xloc": [
15463
- "default.handlebars->27->1101"
15464
+ "default.handlebars->27->1102"
15465
]
15466
},
15467
{
@@ -15478,7 +15479,7 @@
15479
"zh-chs": "義大利文(瑞士)",
15480
"fi": "Italialainen (Sveitsi)",
15481
"xloc": [
15481
- "default.handlebars->27->1102"
15482
+ "default.handlebars->27->1103"
15483
]
15484
},
15485
{
@@ -15496,7 +15497,7 @@
15497
"zh-chs": "JSON",
15498
"fi": "JSON",
15499
"xloc": [
15499
- "default.handlebars->27->1542"
15500
+ "default.handlebars->27->1543"
15501
]
15502
},
15503
{
@@ -15514,8 +15515,8 @@
15515
"zh-chs": "JSON格式",
15516
"fi": "JSON Muoto",
15517
"xloc": [
15517
- "default.handlebars->27->1547",
15518
- "default.handlebars->27->1612",
15518
+ "default.handlebars->27->1548",
15519
+ "default.handlebars->27->1613",
15520
"default.handlebars->27->476"
15521
]
15522
},
@@ -15534,7 +15535,7 @@
15535
"zh-chs": "日本",
15536
"fi": "Japanilainen",
15537
"xloc": [
15537
- "default.handlebars->27->1103"
15538
+ "default.handlebars->27->1104"
15539
]
15540
},
15541
{
@@ -15551,7 +15552,7 @@
15552
"ru": "Каннада",
15553
"zh-chs": "卡納達語",
15554
"xloc": [
15554
- "default.handlebars->27->1104"
15555
+ "default.handlebars->27->1105"
15556
]
15557
},
15558
{
@@ -15568,7 +15569,7 @@
15569
"ru": "Кашмирский",
15570
"zh-chs": "克什米爾語",
15571
"xloc": [
15571
- "default.handlebars->27->1105"
15572
+ "default.handlebars->27->1106"
15573
]
15574
},
15575
{
@@ -15585,7 +15586,7 @@
15586
"ru": "Казахский",
15587
"zh-chs": "哈薩克語",
15588
"xloc": [
15588
- "default.handlebars->27->1106"
15589
+ "default.handlebars->27->1107"
15590
]
15591
},
15592
{
@@ -15621,8 +15622,8 @@
15622
"zh-chs": "鍵名",
15623
"fi": "Avaimen nimi",
15624
"xloc": [
15624
- "default.handlebars->27->1000",
15625
- "default.handlebars->27->997"
15625
+ "default.handlebars->27->1001",
15626
+ "default.handlebars->27->998"
15627
]
15628
},
15629
{
@@ -15667,7 +15668,7 @@
15668
"ru": "Кхмерский",
15669
"zh-chs": "高棉語",
15670
"xloc": [
15670
- "default.handlebars->27->1107"
15671
+ "default.handlebars->27->1108"
15672
]
15673
},
15674
{
@@ -15684,7 +15685,7 @@
15685
"ru": "Киргизский",
15686
"zh-chs": "吉爾吉斯",
15687
"xloc": [
15687
- "default.handlebars->27->1108"
15688
+ "default.handlebars->27->1109"
15689
]
15690
},
15691
{
@@ -15702,7 +15703,7 @@
15703
"zh-chs": "克林貢",
15704
"fi": "Klingon",
15705
"xloc": [
15705
- "default.handlebars->27->1109"
15706
+ "default.handlebars->27->1110"
15707
]
15708
},
15709
{
@@ -15721,7 +15722,7 @@
15722
"fi": "Tunnettu",
15723
"xloc": [
15724
"default-mobile.handlebars->9->368",
15724
- "default.handlebars->27->943"
15725
+ "default.handlebars->27->944"
15726
]
15727
},
15728
{
@@ -15739,7 +15740,7 @@
15740
"zh-chs": "韓語",
15741
"fi": "Korealainen",
15742
"xloc": [
15742
- "default.handlebars->27->1110"
15743
+ "default.handlebars->27->1111"
15744
]
15745
},
15746
{
@@ -15757,7 +15758,7 @@
15758
"zh-chs": "韓語(朝鮮)",
15759
"fi": "Korealainen (Pohjois-Korea)",
15760
"xloc": [
15760
- "default.handlebars->27->1111"
15761
+ "default.handlebars->27->1112"
15762
]
15763
},
15764
{
@@ -15775,7 +15776,7 @@
15776
"zh-chs": "韓語(韓國)",
15777
"fi": "Korealainen (Etelä-Korea)",
15778
"xloc": [
15778
- "default.handlebars->27->1112"
15779
+ "default.handlebars->27->1113"
15780
]
15781
},
15782
{
@@ -15812,7 +15813,7 @@
15813
"zh-chs": "語言",
15814
"fi": "Kieli",
15815
"xloc": [
15815
- "default.handlebars->27->1206"
15816
+ "default.handlebars->27->1207"
15817
]
15818
},
15819
{
@@ -16040,7 +16041,7 @@
16041
"zh-chs": "最後訪問",
16042
"fi": "Viimeisin käyttö",
16043
"xloc": [
16043
- "default.handlebars->27->1555"
16044
+ "default.handlebars->27->1556"
16045
]
16046
},
16047
{
@@ -16058,7 +16059,7 @@
16059
"zh-chs": "上次登錄",
16060
"fi": "Edellinen kirjautuminen",
16061
"xloc": [
16061
- "default.handlebars->27->1751"
16062
+ "default.handlebars->27->1752"
16063
]
16064
},
16065
{
@@ -16082,9 +16083,9 @@
16083
"default.handlebars->27->69",
16084
"default.handlebars->27->71",
16085
"default.handlebars->27->73",
16085
- "default.handlebars->27->901",
16086
"default.handlebars->27->902",
16087
- "default.handlebars->27->903"
16087
+ "default.handlebars->27->903",
16088
+ "default.handlebars->27->904"
16089
]
16090
},
16091
{
@@ -16105,8 +16106,8 @@
16106
"default-mobile.handlebars->9->333",
16107
"default-mobile.handlebars->9->335",
16108
"default.handlebars->27->68",
16108
- "default.handlebars->27->898",
16109
- "default.handlebars->27->900"
16109
+ "default.handlebars->27->899",
16110
+ "default.handlebars->27->901"
16111
]
16112
},
16113
{
@@ -16124,7 +16125,7 @@
16125
"zh-chs": "上次更改:{0}",
16126
"fi": "Muutettu viimeksi: {0}",
16127
"xloc": [
16127
- "default.handlebars->27->1755"
16128
+ "default.handlebars->27->1756"
16129
]
16130
},
16131
{
@@ -16178,7 +16179,7 @@
16179
"zh-chs": "上次登錄:{0}",
16180
"fi": "Edellinen kirjautuminen: {0}",
16181
"xloc": [
16181
- "default.handlebars->27->1565"
16182
+ "default.handlebars->27->1566"
16183
]
16184
},
16185
{
@@ -16269,7 +16270,7 @@
16270
"zh-chs": "拉丁",
16271
"fi": "Latinalainen",
16272
"xloc": [
16272
- "default.handlebars->27->1113"
16273
+ "default.handlebars->27->1114"
16274
]
16275
},
16276
{
@@ -16287,7 +16288,7 @@
16288
"zh-chs": "拉脫維亞語",
16289
"fi": "Latvialainen",
16290
"xloc": [
16290
- "default.handlebars->27->1114"
16291
+ "default.handlebars->27->1115"
16292
]
16293
},
16294
{
@@ -16330,7 +16331,7 @@
16331
"nl": "Leeg laten voor geen.",
16332
"zh-chs": "一无所有。",
16333
"xloc": [
16333
- "default.handlebars->27->1795"
16334
+ "default.handlebars->27->1796"
16335
]
16336
},
16337
{
@@ -16371,7 +16372,7 @@
16372
"zh-chs": "減",
16373
"fi": "Vähemmän",
16374
"xloc": [
16374
- "default.handlebars->27->1963"
16375
+ "default.handlebars->27->1964"
16376
]
16377
},
16378
{
@@ -16426,7 +16427,7 @@
16427
"fi": "Rajoitettu syöttö",
16428
"xloc": [
16429
"default-mobile.handlebars->9->441",
16429
- "default.handlebars->27->1437",
16430
+ "default.handlebars->27->1438",
16431
"default.handlebars->27->661",
16432
"default.handlebars->27->680"
16433
]
@@ -16447,7 +16448,7 @@
16448
"fi": "Vain rajoitettu syöttö",
16449
"xloc": [
16450
"default-mobile.handlebars->9->416",
16450
- "default.handlebars->27->1394"
16451
+ "default.handlebars->27->1395"
16452
]
16453
},
16454
{
@@ -16822,7 +16823,7 @@
16823
"zh-chs": "立陶宛語",
16824
"fi": "Liettualainen",
16825
"xloc": [
16825
- "default.handlebars->27->1115"
16826
+ "default.handlebars->27->1116"
16827
]
16828
},
16829
{
@@ -16841,11 +16842,11 @@
16842
"fi": "Ladataan...",
16843
"xloc": [
16844
"default-mobile.handlebars->9->72",
16844
- "default.handlebars->27->1260",
16845
- "default.handlebars->27->1264",
16846
- "default.handlebars->27->1849",
16845
+ "default.handlebars->27->1261",
16846
+ "default.handlebars->27->1265",
16847
+ "default.handlebars->27->1850",
16848
"default.handlebars->27->756",
16848
- "default.handlebars->27->993"
16849
+ "default.handlebars->27->994"
16850
]
16851
},
16852
{
@@ -16917,7 +16918,7 @@
16918
"zh-chs": "本地化設置",
16919
"fi": "Lokalisointiasetukset",
16920
"xloc": [
16920
- "default.handlebars->27->1209",
16921
+ "default.handlebars->27->1210",
16922
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
16923
]
16924
},
@@ -16972,7 +16973,7 @@
16973
"zh-chs": "鎖定賬戶",
16974
"fi": "Lukitse Tili",
16975
"xloc": [
16975
- "default.handlebars->27->1652"
16976
+ "default.handlebars->27->1653"
16977
]
16978
},
16979
{
@@ -16981,8 +16982,8 @@
16982
"es": "Bloquear configuración de la cuenta",
16983
"fr": "Verrouiller les paramètres de compte",
16984
"xloc": [
16984
- "default.handlebars->27->1406",
16985
- "default.handlebars->27->1655"
16985
+ "default.handlebars->27->1407",
16986
+ "default.handlebars->27->1656"
16987
]
16988
},
16989
{
@@ -17000,7 +17001,7 @@
17001
"zh-chs": "鎖定賬戶",
17002
"fi": "Lukitse tili",
17003
"xloc": [
17003
- "default.handlebars->27->1585"
17004
+ "default.handlebars->27->1586"
17005
]
17006
},
17007
{
@@ -17018,7 +17019,7 @@
17019
"zh-chs": "已鎖定",
17020
"fi": "Lukittu",
17021
"xloc": [
17021
- "default.handlebars->27->1566"
17022
+ "default.handlebars->27->1567"
17023
]
17024
},
17025
{
@@ -17036,7 +17037,7 @@
17037
"zh-chs": "賬戶鎖定",
17038
"fi": "Lukittu tili",
17039
"xloc": [
17039
- "default.handlebars->27->1727"
17040
+ "default.handlebars->27->1728"
17041
]
17042
},
17043
{
@@ -17233,7 +17234,7 @@
17234
"zh-chs": "盧森堡語",
17235
"fi": "Luxemburgilainen",
17236
"xloc": [
17236
- "default.handlebars->27->1116"
17237
+ "default.handlebars->27->1117"
17238
]
17239
},
17240
{
@@ -17253,10 +17254,10 @@
17254
"xloc": [
17255
"default-mobile.handlebars->9->341",
17256
"default-mobile.handlebars->9->343",
17256
- "default.handlebars->27->906",
17257
- "default.handlebars->27->908",
17258
- "default.handlebars->27->916",
17259
- "default.handlebars->27->918"
17257
+ "default.handlebars->27->907",
17258
+ "default.handlebars->27->909",
17259
+ "default.handlebars->27->917",
17260
+ "default.handlebars->27->919"
17261
]
17262
},
17263
{
@@ -17294,8 +17295,8 @@
17295
"fi": "MAC: {0}",
17296
"xloc": [
17297
"default-mobile.handlebars->9->344",
17297
- "default.handlebars->27->909",
17298
- "default.handlebars->27->919"
17298
+ "default.handlebars->27->910",
17299
+ "default.handlebars->27->920"
17300
]
17301
},
17302
{
@@ -17314,8 +17315,8 @@
17315
"fi": "MAC: {0}, Yhdyskäytävä: {1}",
17316
"xloc": [
17317
"default-mobile.handlebars->9->342",
17317
- "default.handlebars->27->907",
17318
- "default.handlebars->27->917"
17318
+ "default.handlebars->27->908",
17319
+ "default.handlebars->27->918"
17320
]
17321
},
17322
{
@@ -17376,8 +17377,8 @@
17377
"default.handlebars->27->214",
17378
"default.handlebars->27->439",
17379
"default.handlebars->27->602",
17379
- "default.handlebars->27->971",
17380
"default.handlebars->27->972",
17381
+ "default.handlebars->27->973",
17382
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
17383
]
17384
},
@@ -17562,7 +17563,7 @@
17563
"zh-chs": "主服務器消息",
17564
"fi": "Pääpalvelimen viestit",
17565
"xloc": [
17565
- "default.handlebars->27->1935"
17566
+ "default.handlebars->27->1936"
17567
]
17568
},
17569
{
@@ -17580,7 +17581,7 @@
17581
"zh-chs": "馬來語",
17582
"fi": "Malaiji",
17583
"xloc": [
17583
- "default.handlebars->27->1118"
17584
+ "default.handlebars->27->1119"
17585
]
17586
},
17587
{
@@ -17598,7 +17599,7 @@
17599
"zh-chs": "馬拉雅拉姆語",
17600
"fi": "Malajalam",
17601
"xloc": [
17601
- "default.handlebars->27->1119"
17602
+ "default.handlebars->27->1120"
17603
]
17604
},
17605
{
@@ -17616,7 +17617,7 @@
17617
"zh-chs": "馬耳他語",
17618
"fi": "Maltalainen",
17619
"xloc": [
17619
- "default.handlebars->27->1120"
17620
+ "default.handlebars->27->1121"
17621
]
17622
},
17623
{
@@ -17655,8 +17656,8 @@
17656
"xloc": [
17657
"default-mobile.handlebars->9->413",
17658
"default-mobile.handlebars->9->431",
17658
- "default.handlebars->27->1391",
17659
- "default.handlebars->27->1426"
17659
+ "default.handlebars->27->1392",
17660
+ "default.handlebars->27->1427"
17661
]
17662
},
17663
{
@@ -17676,8 +17677,8 @@
17677
"xloc": [
17678
"default-mobile.handlebars->9->412",
17679
"default-mobile.handlebars->9->430",
17679
- "default.handlebars->27->1390",
17680
- "default.handlebars->27->1425"
17680
+ "default.handlebars->27->1391",
17681
+ "default.handlebars->27->1426"
17682
]
17683
},
17684
{
@@ -17704,7 +17705,7 @@
17705
"es": "Administrar Grabaciones",
17706
"fr": "Gérer les enregistrements",
17707
"xloc": [
17707
- "default.handlebars->27->1650"
17708
+ "default.handlebars->27->1651"
17709
]
17710
},
17711
{
@@ -17740,7 +17741,7 @@
17741
"zh-chs": "管理用戶組",
17742
"fi": "Hallitse käyttäjäryhmiä",
17743
"xloc": [
17743
- "default.handlebars->27->1649"
17744
+ "default.handlebars->27->1650"
17745
]
17746
},
17747
{
@@ -17758,7 +17759,7 @@
17759
"zh-chs": "管理用戶",
17760
"fi": "Hallitse käyttäjiä",
17761
"xloc": [
17761
- "default.handlebars->27->1648",
17762
+ "default.handlebars->27->1649",
17763
"default.handlebars->27->674"
17764
]
17765
},
@@ -17869,7 +17870,7 @@
17870
"zh-chs": "使用軟件代理進行管理",
17871
"fi": "Hallitse ohjelmistoagentilla",
17872
"xloc": [
17872
- "default.handlebars->27->1242"
17873
+ "default.handlebars->27->1243"
17874
]
17875
},
17876
{
@@ -17888,7 +17889,7 @@
17889
"fi": "Hallinnoidaan ohjelmistoagentin avulla",
17890
"xloc": [
17891
"default-mobile.handlebars->9->393",
17891
- "default.handlebars->27->1270"
17892
+ "default.handlebars->27->1271"
17893
]
17894
},
17895
{
@@ -17906,7 +17907,7 @@
17907
"zh-chs": "經理",
17908
"fi": "Johtaja",
17909
"xloc": [
17909
- "default.handlebars->27->1571"
17910
+ "default.handlebars->27->1572"
17911
]
17912
},
17913
{
@@ -17960,7 +17961,7 @@
17961
"zh-chs": "毛利人",
17962
"fi": "Maori",
17963
"xloc": [
17963
- "default.handlebars->27->1121"
17964
+ "default.handlebars->27->1122"
17965
]
17966
},
17967
{
@@ -17997,7 +17998,7 @@
17998
"zh-chs": "馬拉地語",
17999
"fi": "Marathi",
18000
"xloc": [
18000
- "default.handlebars->27->1122"
18001
+ "default.handlebars->27->1123"
18002
]
18003
},
18004
{
@@ -18015,7 +18016,7 @@
18016
"zh-chs": "達到的會話數上限",
18017
"fi": "Istuntojen enimmäismäärä saavutettu",
18018
"xloc": [
18018
- "default.handlebars->27->1896"
18019
+ "default.handlebars->27->1897"
18020
]
18021
},
18022
{
@@ -18073,7 +18074,7 @@
18074
"zh-chs": "兆字節",
18075
"fi": "Megatavua",
18076
"xloc": [
18076
- "default.handlebars->27->1925"
18077
+ "default.handlebars->27->1926"
18078
]
18079
},
18080
{
@@ -18092,8 +18093,8 @@
18093
"fi": "Muisti",
18094
"xloc": [
18095
"default-mobile.handlebars->9->384",
18095
- "default.handlebars->27->1916",
18096
- "default.handlebars->27->959",
18096
+ "default.handlebars->27->1917",
18097
+ "default.handlebars->27->960",
18098
"default.handlebars->container->column_l->p40->3->1->p40type->3"
18099
]
18100
},
@@ -18123,8 +18124,8 @@
18124
"default.handlebars->27->403",
18125
"default.handlebars->27->550",
18126
"default.handlebars->27->594",
18126
- "default.handlebars->27->897",
18127
- "default.handlebars->27->904"
18127
+ "default.handlebars->27->898",
18128
+ "default.handlebars->27->905"
18129
]
18130
},
18131
{
@@ -18143,7 +18144,7 @@
18144
"fi": "Mesh Agentint pääte",
18145
"xloc": [
18146
"default-mobile.handlebars->9->420",
18146
- "default.handlebars->27->1399"
18147
+ "default.handlebars->27->1400"
18148
]
18149
},
18150
{
@@ -18235,7 +18236,7 @@
18236
"zh-chs": "MeshAgent流量",
18237
"fi": "MeshAgent liikenne",
18238
"xloc": [
18238
- "default.handlebars->27->1937"
18239
+ "default.handlebars->27->1938"
18240
]
18241
},
18242
{
@@ -18253,7 +18254,7 @@
18254
"zh-chs": "MeshAgent更新",
18255
"fi": "MeshAgent päivitys",
18256
"xloc": [
18256
- "default.handlebars->27->1938"
18257
+ "default.handlebars->27->1939"
18258
]
18259
},
18260
{
@@ -18289,7 +18290,7 @@
18290
"zh-chs": "網格中心錯誤",
18291
"fi": "MeshCentral virheet",
18292
"xloc": [
18292
- "default.handlebars->27->1263"
18293
+ "default.handlebars->27->1264"
18294
]
18295
},
18296
{
@@ -18360,7 +18361,7 @@
18361
"ru": "Соединения сервера MeshCentral",
18362
"zh-chs": "MeshCentral服務器對等",
18363
"xloc": [
18363
- "default.handlebars->27->1936"
18364
+ "default.handlebars->27->1937"
18365
]
18366
},
18367
{
@@ -18397,7 +18398,7 @@
18398
"xloc": [
18399
"default.handlebars->27->115",
18400
"default.handlebars->27->117",
18400
- "default.handlebars->27->1259"
18401
+ "default.handlebars->27->1260"
18402
]
18403
},
18404
{
@@ -18635,7 +18636,7 @@
18636
"zh-chs": "郵件調度程序",
18637
"fi": "Viestin lähettäjä",
18638
"xloc": [
18638
- "default.handlebars->27->1934"
18639
+ "default.handlebars->27->1935"
18640
]
18641
},
18642
{
@@ -18739,7 +18740,7 @@
18740
"fi": "Malli",
18741
"xloc": [
18742
"default-mobile.handlebars->9->385",
18742
- "default.handlebars->27->960"
18743
+ "default.handlebars->27->961"
18744
]
18745
},
18746
{
@@ -18775,7 +18776,7 @@
18776
"zh-chs": "摩爾達維亞人",
18777
"fi": "Moldovalainen",
18778
"xloc": [
18778
- "default.handlebars->27->1123"
18779
+ "default.handlebars->27->1124"
18780
]
18781
},
18782
{
@@ -18793,7 +18794,7 @@
18794
"zh-chs": "更多",
18795
"fi": "Lisää",
18796
"xloc": [
18796
- "default.handlebars->27->1962"
18797
+ "default.handlebars->27->1963"
18798
]
18799
},
18800
{
@@ -18812,7 +18813,7 @@
18813
"fi": "Emolevy",
18814
"xloc": [
18815
"default-mobile.handlebars->9->380",
18815
- "default.handlebars->27->955"
18816
+ "default.handlebars->27->956"
18817
]
18818
},
18819
{
@@ -18873,7 +18874,7 @@
18874
"nl": "Multiplexor",
18875
"es": "Multiplexor",
18876
"xloc": [
18876
- "default.handlebars->27->1874"
18877
+ "default.handlebars->27->1875"
18878
]
18879
},
18880
{
@@ -18993,7 +18994,7 @@
18994
"ru": "Консоль моего сервера",
18995
"zh-chs": "我的服務器控制台",
18996
"xloc": [
18996
- "default.handlebars->27->966"
18997
+ "default.handlebars->27->967"
18998
]
18999
},
19000
{
@@ -19126,8 +19127,8 @@
19127
"zh-chs": "我的鑰匙",
19128
"fi": "Avaimeni",
19129
"xloc": [
19129
- "default.handlebars->27->1001",
19130
- "default.handlebars->27->998"
19130
+ "default.handlebars->27->1002",
19131
+ "default.handlebars->27->999"
19132
]
19133
},
19134
{
@@ -19152,21 +19153,21 @@
19153
"default-mobile.handlebars->9->407",
19154
"default-mobile.handlebars->9->97",
19155
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
19155
- "default.handlebars->27->1240",
19156
- "default.handlebars->27->1271",
19157
- "default.handlebars->27->1357",
19158
- "default.handlebars->27->1553",
19159
- "default.handlebars->27->1658",
19160
- "default.handlebars->27->1674",
19161
- "default.handlebars->27->1681",
19162
- "default.handlebars->27->1714",
19163
- "default.handlebars->27->1733",
19156
+ "default.handlebars->27->1241",
19157
+ "default.handlebars->27->1272",
19158
+ "default.handlebars->27->1358",
19159
+ "default.handlebars->27->1554",
19160
+ "default.handlebars->27->1659",
19161
+ "default.handlebars->27->1675",
19162
+ "default.handlebars->27->1682",
19163
+ "default.handlebars->27->1715",
19164
+ "default.handlebars->27->1734",
19165
"default.handlebars->27->538",
19166
"default.handlebars->27->76",
19167
"default.handlebars->27->815",
19167
- "default.handlebars->27->893",
19168
+ "default.handlebars->27->894",
19169
"default.handlebars->27->90",
19169
- "default.handlebars->27->949",
19170
+ "default.handlebars->27->950",
19171
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
19172
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3",
19173
"default.handlebars->container->column_l->p42->p42tbl->1->0->2"
@@ -19205,7 +19206,7 @@
19206
"zh-chs": "名稱1,名稱2,名稱3",
19207
"fi": "Nimi1, Nimi2, Nimi3",
19208
"xloc": [
19208
- "default.handlebars->27->1640"
19209
+ "default.handlebars->27->1641"
19210
]
19211
},
19212
{
@@ -19222,7 +19223,7 @@
19223
"ru": "Навахо",
19224
"zh-chs": "納瓦霍人",
19225
"xloc": [
19225
- "default.handlebars->27->1124"
19226
+ "default.handlebars->27->1125"
19227
]
19228
},
19229
{
@@ -19239,7 +19240,7 @@
19240
"ru": "Ндонга",
19241
"zh-chs": "恩東加",
19242
"xloc": [
19242
- "default.handlebars->27->1125"
19243
+ "default.handlebars->27->1126"
19244
]
19245
},
19246
{
@@ -19256,7 +19257,7 @@
19257
"ru": "Непальский",
19258
"zh-chs": "尼泊爾文",
19259
"xloc": [
19259
- "default.handlebars->27->1126"
19260
+ "default.handlebars->27->1127"
19261
]
19262
},
19263
{
@@ -19308,8 +19309,8 @@
19309
"fi": "Verkko",
19310
"xloc": [
19311
"default-mobile.handlebars->9->353",
19311
- "default.handlebars->27->914",
19312
- "default.handlebars->27->928"
19312
+ "default.handlebars->27->915",
19313
+ "default.handlebars->27->929"
19314
]
19315
},
19316
{
@@ -19365,8 +19366,8 @@
19366
"fi": "Uusi laiteryhmä",
19367
"xloc": [
19368
"default-mobile.handlebars->9->91",
19368
- "default.handlebars->27->1233",
19369
- "default.handlebars->27->1245",
19369
+ "default.handlebars->27->1234",
19370
+ "default.handlebars->27->1246",
19371
"default.handlebars->27->747"
19372
]
19373
},
@@ -19387,8 +19388,8 @@
19388
"xloc": [
19389
"default-mobile.handlebars->9->120",
19390
"default-mobile.handlebars->9->299",
19390
- "default.handlebars->27->1512",
19391
- "default.handlebars->27->856",
19391
+ "default.handlebars->27->1513",
19392
+ "default.handlebars->27->857",
19393
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
19394
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
19395
]
@@ -19445,8 +19446,8 @@
19446
"xloc": [
19447
"default-mobile.handlebars->9->86",
19448
"default-mobile.handlebars->9->87",
19448
- "default.handlebars->27->1228",
19449
- "default.handlebars->27->1229"
19449
+ "default.handlebars->27->1229",
19450
+ "default.handlebars->27->1230"
19451
]
19452
},
19453
{
@@ -19535,7 +19536,7 @@
19536
"zh-chs": "沒有桌面",
19537
"fi": "Ei työpöytää",
19538
"xloc": [
19538
- "default.handlebars->27->1433",
19539
+ "default.handlebars->27->1434",
19540
"default.handlebars->27->662",
19541
"default.handlebars->27->681"
19542
]
@@ -19555,7 +19556,7 @@
19556
"zh-chs": "沒有桌面訪問",
19557
"fi": "Ei työpöytä yhteyttä",
19558
"xloc": [
19558
- "default.handlebars->27->1395"
19559
+ "default.handlebars->27->1396"
19560
]
19561
},
19562
{
@@ -19573,9 +19574,9 @@
19574
"zh-chs": "找不到活動",
19575
"fi": "Ei tapahtumia",
19576
"xloc": [
19576
- "default.handlebars->27->1529",
19577
- "default.handlebars->27->1848",
19578
- "default.handlebars->27->891"
19577
+ "default.handlebars->27->1530",
19578
+ "default.handlebars->27->1849",
19579
+ "default.handlebars->27->892"
19580
]
19581
},
19582
{
@@ -19594,7 +19595,7 @@
19595
"fi": "Ei tiedostojen käyttöä",
19596
"xloc": [
19597
"default-mobile.handlebars->9->418",
19597
- "default.handlebars->27->1397"
19598
+ "default.handlebars->27->1398"
19599
]
19600
},
19601
{
@@ -19613,7 +19614,7 @@
19614
"fi": "Ei tiedostoja",
19615
"xloc": [
19616
"default-mobile.handlebars->9->439",
19616
- "default.handlebars->27->1435",
19617
+ "default.handlebars->27->1436",
19618
"default.handlebars->27->659",
19619
"default.handlebars->27->678"
19620
]
@@ -19652,8 +19653,8 @@
19653
"xloc": [
19654
"default-mobile.handlebars->9->419",
19655
"default-mobile.handlebars->9->440",
19655
- "default.handlebars->27->1398",
19656
- "default.handlebars->27->1436"
19656
+ "default.handlebars->27->1399",
19657
+ "default.handlebars->27->1437"
19658
]
19659
},
19660
{
@@ -19723,7 +19724,7 @@
19724
"zh-chs": "沒有會員",
19725
"fi": "Ei jäseniä",
19726
"xloc": [
19726
- "default.handlebars->27->1696"
19727
+ "default.handlebars->27->1697"
19728
]
19729
},
19730
{
@@ -19741,7 +19742,7 @@
19742
"zh-chs": "沒有新的設備組",
19743
"fi": "Ei uusia laiteryhmiä.",
19744
"xloc": [
19744
- "default.handlebars->27->1653"
19745
+ "default.handlebars->27->1654"
19746
]
19747
},
19748
{
@@ -19759,9 +19760,9 @@
19760
"zh-chs": "沒有政策",
19761
"fi": "Ei politiikkaa",
19762
"xloc": [
19762
- "default.handlebars->27->1301",
19763
- "default.handlebars->27->1329",
19764
- "default.handlebars->27->1332"
19763
+ "default.handlebars->27->1302",
19764
+ "default.handlebars->27->1330",
19765
+ "default.handlebars->27->1333"
19766
]
19767
},
19768
{
@@ -19782,8 +19783,8 @@
19783
"default-mobile.handlebars->9->106",
19784
"default-mobile.handlebars->9->402",
19785
"default-mobile.handlebars->9->445",
19785
- "default.handlebars->27->1254",
19786
- "default.handlebars->27->1441",
19786
+ "default.handlebars->27->1255",
19787
+ "default.handlebars->27->1442",
19788
"default.handlebars->27->671",
19789
"default.handlebars->27->690"
19790
]
@@ -19824,7 +19825,7 @@
19825
"fi": "Ei päätettä",
19826
"xloc": [
19827
"default-mobile.handlebars->9->438",
19827
- "default.handlebars->27->1434",
19828
+ "default.handlebars->27->1435",
19829
"default.handlebars->27->658",
19830
"default.handlebars->27->677"
19831
]
@@ -19844,7 +19845,7 @@
19845
"zh-chs": "沒有終端訪問",
19846
"xloc": [
19847
"default-mobile.handlebars->9->417",
19847
- "default.handlebars->27->1396"
19848
+ "default.handlebars->27->1397"
19849
]
19850
},
19851
{
@@ -19862,7 +19863,7 @@
19863
"zh-chs": "沒有工具(MeshCmd /路由器)",
19864
"fi": "Estä työkalut (MeshCmd/Router)",
19865
"xloc": [
19865
- "default.handlebars->27->1654"
19866
+ "default.handlebars->27->1655"
19867
]
19868
},
19869
{
@@ -19879,8 +19880,8 @@
19880
"ru": "Нет общих групп устройств",
19881
"zh-chs": "沒有共同的設備組",
19882
"xloc": [
19882
- "default.handlebars->27->1702",
19883
- "default.handlebars->27->1820"
19883
+ "default.handlebars->27->1703",
19884
+ "default.handlebars->27->1821"
19885
]
19886
},
19887
{
@@ -19979,8 +19980,8 @@
19980
"ru": "Нет общих устройств",
19981
"zh-chs": "沒有共同的設備",
19982
"xloc": [
19982
- "default.handlebars->27->1708",
19983
- "default.handlebars->27->1832"
19983
+ "default.handlebars->27->1709",
19984
+ "default.handlebars->27->1833"
19985
]
19986
},
19987
{
@@ -19998,7 +19999,7 @@
19999
"zh-chs": "該設備組中沒有設備。",
20000
"fi": "Ei laitteita tässä laiteryhmässä",
20001
"xloc": [
20001
- "default.handlebars->27->1484"
20002
+ "default.handlebars->27->1485"
20003
]
20004
},
20005
{
@@ -20071,7 +20072,7 @@
20072
"zh-chs": "找不到群組。",
20073
"fi": "Ryhmiä ei löytynyt.",
20074
"xloc": [
20074
- "default.handlebars->27->1657"
20075
+ "default.handlebars->27->1658"
20076
]
20077
},
20078
{
@@ -20090,7 +20091,7 @@
20091
"fi": "Tälle laitteelle ei ole tietoja.",
20092
"xloc": [
20093
"default-mobile.handlebars->9->390",
20093
- "default.handlebars->27->965"
20094
+ "default.handlebars->27->966"
20095
]
20096
},
20097
{
@@ -20170,7 +20171,7 @@
20171
"es": "No hay Grabaciones.",
20172
"fr": "Pas d'enregistrements.",
20173
"xloc": [
20173
- "default.handlebars->27->1850"
20174
+ "default.handlebars->27->1851"
20175
]
20176
},
20177
{
@@ -20188,7 +20189,7 @@
20189
"zh-chs": "沒有服務器權限",
20190
"fi": "Ei palvelin oikeuksia",
20191
"xloc": [
20191
- "default.handlebars->27->1728"
20192
+ "default.handlebars->27->1729"
20193
]
20194
},
20195
{
@@ -20206,7 +20207,7 @@
20207
"zh-chs": "沒有用戶組成員身份",
20208
"fi": "Ei käyttäjäryhmien jäsenyyksiä",
20209
"xloc": [
20209
- "default.handlebars->27->1826"
20210
+ "default.handlebars->27->1827"
20211
]
20212
},
20213
{
@@ -20224,7 +20225,7 @@
20225
"zh-chs": "未找到相應的用戶。",
20226
"fi": "Käyttäjiä ei löytynyt.",
20227
"xloc": [
20227
- "default.handlebars->27->1561"
20228
+ "default.handlebars->27->1562"
20229
]
20230
},
20231
{
@@ -20302,23 +20303,23 @@
20303
"default-mobile.handlebars->9->245",
20304
"default-mobile.handlebars->9->297",
20305
"default-mobile.handlebars->9->396",
20305
- "default.handlebars->27->1266",
20306
- "default.handlebars->27->1273",
20307
- "default.handlebars->27->1280",
20308
- "default.handlebars->27->1292",
20309
- "default.handlebars->27->1297",
20310
- "default.handlebars->27->1299",
20311
- "default.handlebars->27->1475",
20312
- "default.handlebars->27->1494",
20313
- "default.handlebars->27->1499",
20314
- "default.handlebars->27->1537",
20315
- "default.handlebars->27->1678",
20316
- "default.handlebars->27->1680",
20306
+ "default.handlebars->27->1267",
20307
+ "default.handlebars->27->1274",
20308
+ "default.handlebars->27->1281",
20309
+ "default.handlebars->27->1293",
20310
+ "default.handlebars->27->1298",
20311
+ "default.handlebars->27->1300",
20312
+ "default.handlebars->27->1476",
20313
+ "default.handlebars->27->1495",
20314
+ "default.handlebars->27->1500",
20315
+ "default.handlebars->27->1538",
20316
+ "default.handlebars->27->1679",
20317
+ "default.handlebars->27->1681",
20318
"default.handlebars->27->174",
20318
- "default.handlebars->27->1747",
20319
- "default.handlebars->27->1756",
20320
- "default.handlebars->27->1760",
20321
- "default.handlebars->27->1772",
20319
+ "default.handlebars->27->1748",
20320
+ "default.handlebars->27->1757",
20321
+ "default.handlebars->27->1761",
20322
+ "default.handlebars->27->1773",
20323
"default.handlebars->27->189",
20324
"default.handlebars->27->201",
20325
"default.handlebars->27->202",
@@ -20364,7 +20365,7 @@
20365
"zh-chs": "挪威",
20366
"fi": "Norjalainen",
20367
"xloc": [
20367
- "default.handlebars->27->1127"
20368
+ "default.handlebars->27->1128"
20369
]
20370
},
20371
{
@@ -20382,7 +20383,7 @@
20383
"zh-chs": "挪威文(Bokmal)",
20384
"fi": "Norjalainen (Bokmal)",
20385
"xloc": [
20385
- "default.handlebars->27->1128"
20386
+ "default.handlebars->27->1129"
20387
]
20388
},
20389
{
@@ -20400,7 +20401,7 @@
20401
"zh-chs": "挪威文(尼諾斯克)",
20402
"fi": "Norjalainen (Nynorks)",
20403
"xloc": [
20403
- "default.handlebars->27->1129"
20404
+ "default.handlebars->27->1130"
20405
]
20406
},
20407
{
@@ -20421,7 +20422,7 @@
20422
"default-mobile.handlebars->9->225",
20423
"default-mobile.handlebars->9->357",
20424
"default.handlebars->27->552",
20424
- "default.handlebars->27->932"
20425
+ "default.handlebars->27->933"
20426
]
20427
},
20428
{
@@ -20442,7 +20443,7 @@
20443
"default-mobile.handlebars->9->224",
20444
"default-mobile.handlebars->9->356",
20445
"default.handlebars->27->551",
20445
- "default.handlebars->27->931"
20446
+ "default.handlebars->27->932"
20447
]
20448
},
20449
{
@@ -20460,8 +20461,8 @@
20461
"zh-chs": "未連接",
20462
"fi": "Ei yhteyttä",
20463
"xloc": [
20463
- "default.handlebars->27->1471",
20464
- "default.handlebars->27->1479"
20464
+ "default.handlebars->27->1472",
20465
+ "default.handlebars->27->1480"
20466
]
20467
},
20468
{
@@ -20480,7 +20481,7 @@
20481
"fi": "Ei tunnettu",
20482
"xloc": [
20483
"default-mobile.handlebars->9->367",
20483
- "default.handlebars->27->942"
20484
+ "default.handlebars->27->943"
20485
]
20486
},
20487
{
@@ -20490,7 +20491,7 @@
20491
"fr": "Pas sur le serveur",
20492
"fi": "Ei palvelimella",
20493
"xloc": [
20493
- "default.handlebars->27->1866"
20494
+ "default.handlebars->27->1867"
20495
]
20496
},
20497
{
@@ -20508,8 +20509,8 @@
20509
"zh-chs": "沒有設置",
20510
"fi": "Ei asetettu",
20511
"xloc": [
20511
- "default.handlebars->27->1734",
20512
- "default.handlebars->27->1735"
20512
+ "default.handlebars->27->1735",
20513
+ "default.handlebars->27->1736"
20514
]
20515
},
20516
{
@@ -20527,7 +20528,7 @@
20528
"zh-chs": "未經審核的",
20529
"fi": "Ei vahvistettu",
20530
"xloc": [
20530
- "default.handlebars->27->1802"
20531
+ "default.handlebars->27->1803"
20532
]
20533
},
20534
{
@@ -20545,8 +20546,8 @@
20546
"zh-chs": "筆記",
20547
"fi": "Muistiinpanot",
20548
"xloc": [
20548
- "default.handlebars->27->1307",
20549
- "default.handlebars->27->1780",
20549
+ "default.handlebars->27->1308",
20550
+ "default.handlebars->27->1781",
20551
"default.handlebars->27->607",
20552
"default.handlebars->27->667",
20553
"default.handlebars->27->686",
@@ -20586,8 +20587,8 @@
20587
"zh-chs": "通知設置",
20588
"fi": "Ilmoitusasetukset",
20589
"xloc": [
20589
- "default.handlebars->27->1215",
20590
- "default.handlebars->27->1470",
20590
+ "default.handlebars->27->1216",
20591
+ "default.handlebars->27->1471",
20592
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10"
20593
]
20594
},
@@ -20606,7 +20607,7 @@
20607
"zh-chs": "通知設置還必須在帳戶設置中啟用。",
20608
"fi": "Ilmoitusasetusten on oltava käytössä myös tiliasetuksissa.",
20609
"xloc": [
20609
- "default.handlebars->27->1466"
20610
+ "default.handlebars->27->1467"
20611
]
20612
},
20613
{
@@ -20624,7 +20625,7 @@
20625
"zh-chs": "通知聲音。",
20626
"fi": "Ilmoitusääni.",
20627
"xloc": [
20627
- "default.handlebars->27->1210"
20628
+ "default.handlebars->27->1211"
20629
]
20630
},
20631
{
@@ -20642,7 +20643,7 @@
20643
"zh-chs": "通知事項",
20644
"fi": "Ilmoitukset",
20645
"xloc": [
20645
- "default.handlebars->27->1298"
20646
+ "default.handlebars->27->1299"
20647
]
20648
},
20649
{
@@ -20660,7 +20661,7 @@
20661
"zh-chs": "通知",
20662
"fi": "Ilmoita",
20663
"xloc": [
20663
- "default.handlebars->27->1786",
20664
+ "default.handlebars->27->1787",
20665
"default.handlebars->27->186"
20666
]
20667
},
@@ -20688,9 +20689,9 @@
20689
"zh-chs": "通知使用者",
20690
"fi": "Ilmoita käyttäjälle",
20691
"xloc": [
20691
- "default.handlebars->27->1364",
20692
- "default.handlebars->27->1368",
20693
- "default.handlebars->27->1371"
20692
+ "default.handlebars->27->1365",
20693
+ "default.handlebars->27->1369",
20694
+ "default.handlebars->27->1372"
20695
]
20696
},
20697
{
@@ -20708,7 +20709,7 @@
20709
"zh-chs": "通知{0}",
20710
"fi": "Ilmoita {0}",
20711
"xloc": [
20711
- "default.handlebars->27->1600"
20712
+ "default.handlebars->27->1601"
20713
]
20714
},
20715
{
@@ -20728,7 +20729,7 @@
20729
"xloc": [
20730
"default-mobile.handlebars->9->83",
20731
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
20731
- "default.handlebars->27->1257",
20732
+ "default.handlebars->27->1258",
20733
"default.handlebars->27->578",
20734
"default.handlebars->container->dialog->idx_dlgButtonBar",
20735
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
@@ -20772,7 +20773,7 @@
20773
"ru": "Окситанский",
20774
"zh-chs": "歐舒丹",
20775
"xloc": [
20775
- "default.handlebars->27->1130"
20776
+ "default.handlebars->27->1131"
20777
]
20778
},
20779
{
@@ -20790,7 +20791,7 @@
20791
"zh-chs": "發生在{0}",
20792
"fi": "Tapahtui {0}",
20793
"xloc": [
20793
- "default.handlebars->27->1880"
20794
+ "default.handlebars->27->1881"
20795
]
20796
},
20797
{
@@ -20808,7 +20809,7 @@
20809
"zh-chs": "離線用戶",
20810
"fi": "Offline-tilassa olevat käyttäjät",
20811
"xloc": [
20811
- "default.handlebars->27->1558"
20812
+ "default.handlebars->27->1559"
20813
]
20814
},
20815
{
@@ -20827,7 +20828,7 @@
20828
"fi": "Vanha salasana:",
20829
"xloc": [
20830
"default-mobile.handlebars->9->85",
20830
- "default.handlebars->27->1227"
20831
+ "default.handlebars->27->1228"
20832
]
20833
},
20834
{
@@ -20837,7 +20838,7 @@
20838
"fr": "Un jour",
20839
"fi": "Yksi päivä",
20840
"xloc": [
20840
- "default.handlebars->27->1534"
20841
+ "default.handlebars->27->1535"
20842
]
20843
},
20844
{
@@ -20885,7 +20886,7 @@
20886
"zh-chs": "在線用戶",
20887
"fi": "Online-tilassa olevat käyttäjät",
20888
"xloc": [
20888
- "default.handlebars->27->1557"
20889
+ "default.handlebars->27->1558"
20890
]
20891
},
20892
{
@@ -20905,7 +20906,7 @@
20906
"xloc": [
20907
"default-mobile.handlebars->9->307",
20908
"default.handlebars->27->506",
20908
- "default.handlebars->27->864"
20909
+ "default.handlebars->27->865"
20910
]
20911
},
20912
{
@@ -21041,7 +21042,7 @@
21042
"default.handlebars->27->365",
This file is too large to show in full.
views/default.handlebars
+3
@@ -7730,6 +7730,9 @@
7730
} else if ((data.msg == 'zipping') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) {
7731
// Show the dialog box message
7732
setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '<div style=margin:10px>' + "Compressing files..." + '<div>', 'fileMsgDialog');
7733
+ } else if ((data.msg == 'zippingFile') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) {
7734
+ // Show the dialog box message
7735
+ setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '<div style=margin:10px>' + EscapeHtml(data.file) + '<div><br /><progress value=' + EscapeHtml(data.progress) + ' style=width:100% max=100 />', 'fileMsgDialog');
7736
}
7737
return;
7738
}