1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
|
#
# Yangfl <mmyangfl@gmail.com>, 2017-2019.
#
msgid ""
msgstr ""
"PO-Revision-Date: 2021-08-14 14:43+0000\n"
"Last-Translator: Hulen <shift0106@gmail.com>\n"
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsmwan3/zh_Hant/>\n"
"Language: zh_Hant\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.8-dev\n"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:186
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:202
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:224
msgid "%d hour"
msgstr "%d 小時"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:181
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:197
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:219
msgid "%d minute"
msgstr "%d 分鐘"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:182
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:183
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:184
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:185
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:198
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:199
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:200
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:201
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:220
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:221
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:222
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:223
msgid "%d minutes"
msgstr "%d 分鐘"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:170
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:175
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:191
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:213
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d 秒"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:176
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:177
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:178
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:179
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:180
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:192
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:193
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:194
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:195
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:196
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:214
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:215
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:216
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:217
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:218
msgid "%d seconds"
msgstr "%d 秒"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:45
msgid ""
"%s: Name of Physical device which interface went up or down (e.g. \"eth0\" "
"or \"wwan0\")"
msgstr "%s:介面啟動或停止時物理裝置的名稱 (如:「eth0」或「wwan0」)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:39
msgid "%s: Name of the action that triggered this event"
msgstr "%s:觸發此事件的操作的名稱"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:44
msgid ""
"%s: Name of the interface which went up or down (e.g. \"wan\" or \"wwan\")"
msgstr "%s:啟動或停止的介面名稱 (如:「wan」或「wwan」)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:40
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:41
msgid "* %s: Is called by netifd and mwan3track"
msgstr "* %s:被 netifd 和 mwan3track 呼叫"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:43
msgid "* %s: Is only called by mwan3track if tracking has failed"
msgstr "* %s:僅在跟蹤失敗時由 mwan3track 呼叫"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:42
msgid "* %s: Is only called by mwan3track if tracking was successful"
msgstr "* %s:僅在跟蹤成功時由 mwan3track 呼叫"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:71
msgid "-- Interface Selection --"
msgstr "-- 介面選擇 --"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:83
msgid "-- Please choose --"
msgstr "-- 請選擇 --"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:75
msgid ""
"Acceptable values: 1-100. This many Tracking IP addresses must respond for "
"the link to be deemed up"
msgstr ""
"取值範圍:1-100。這個設定項指定了當多少個 IP 位址能夠連通時介面會被認為在線"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/member.js:38
msgid "Acceptable values: 1-1000. Defaults to 1 if not set"
msgstr "取值範圍:1-1000。如果不填寫,預設值為 1"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/member.js:34
msgid "Acceptable values: 1-256. Defaults to 1 if not set"
msgstr "取值範圍:1-256。如果不填寫,預設值為 1"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:26
msgid "Alert"
msgstr "警示"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:37
msgid "Also scan this Routing table for connected networks"
msgstr "同時掃描此路由表,以檢視已連接的網路"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:65
msgid "Check IP rules"
msgstr "檢查 IP 規則"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:116
msgid "Check link quality"
msgstr "檢查連線數量"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:66
msgid "Check routing table"
msgstr "檢查路由表"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:95
msgid "Collecting data ..."
msgstr "收集資料中 ..."
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:18
msgid "Contents have been saved."
msgstr "內容已儲存。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:27
msgid "Critical"
msgstr "致命錯誤"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:32
msgid "Debug"
msgstr "除錯"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:50
msgid "Destination address"
msgstr "目標位址"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:54
msgid "Destination port"
msgstr "目的通訊埠"
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:29
msgid "Diagnostics"
msgstr "診斷"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:56
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:65
msgid "Disabled"
msgstr "已停用"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:242
msgid ""
"Downed interface will be deemed up after this many successful ping tests"
msgstr "當 Ping 成功次數達到這個數值後,已經被認為離線的介面將會重新上線"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:40
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:48
msgid "Downtime"
msgstr "故障時間"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:25
msgid "Emergency"
msgstr "緊急"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:68
msgid "Enable ssl tracking"
msgstr "啟用 SSL 跟蹤"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:31
msgid "Enabled"
msgstr "啟用"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:92
msgid ""
"Enables firewall rule logging (global mwan3 logging must also be enabled)"
msgstr "啟用防火牆規則日誌 (必須啟用全域 mwan3 日誌)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:20
msgid "Enables global firewall logging"
msgstr "啟用全域防火牆日誌"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:69
msgid "Enables https tracking on ssl port 443"
msgstr "啟用在 SSL 連接埠 443 上的 https 跟蹤"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:15
msgid "Enter value in hex, starting with <code>0x</code>"
msgstr "輸入十六進位制值,以 <code>0x</code> 開頭"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:28
msgid "Error"
msgstr "錯誤"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:108
msgid "Execute"
msgstr "執行"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:35
msgid "Expect interface state on up event"
msgstr "在 up 事件發生時的預期介面狀態"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:188
msgid "Failure interval"
msgstr "故障檢測間隔"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:121
msgid "Failure latency [ms]"
msgstr "故障等待時間[ms]"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:134
msgid "Failure packet loss [%]"
msgstr "失敗封包遺失[%]"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:23
msgid "Firewall loglevel"
msgstr "防火牆日誌級別"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:14
msgid "Firewall mask"
msgstr "防火牆掩碼"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:255
msgid "Flush conntrack table"
msgstr "重新整理連線跟蹤表"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:256
msgid "Flush global firewall conntrack table on interface events"
msgstr "在介面事件觸發時重新整理全局防火牆連線跟蹤表"
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:56
msgid "Globals"
msgstr "全局"
#: applications/luci-app-mwan3/root/usr/share/rpcd/acl.d/luci-app-mwan3.json:3
msgid "Grant UCI access for luci-app-mwan3"
msgstr "授予 luci-app-mwan3 擁有 UCI 存取的權限"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:68
msgid "Hotplug ifdown"
msgstr "熱插拔ifdown"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:67
msgid "Hotplug ifup"
msgstr "熱插拔 ifup"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:81
msgid "IPset"
msgstr "IPset"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:43
msgid "IPv4"
msgstr "IPv4"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:36
msgid "IPv4 and IPv6"
msgstr "IPv4 和 IPv6"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:37
msgid "IPv4 only"
msgstr "僅 IPv4"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:44
msgid "IPv6"
msgstr "IPv6"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:38
msgid "IPv6 only"
msgstr "僅 IPv6"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:31
msgid "Info"
msgstr "資訊"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:34
msgid "Initial state"
msgstr "初始狀態"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/member.js:26
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:83
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:64
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:76
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:100
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:64
msgid "Interface"
msgstr "介面"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:227
msgid "Interface down"
msgstr "介面離線"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:241
msgid "Interface up"
msgstr "介面在線"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:228
msgid "Interface will be deemed down after this many failed ping tests"
msgstr "當 Ping 失敗次數達到這個數值後,介面會被認為離線"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:24
msgid ""
"Interfaces may not share the same name as configured members, policies or "
"rules."
msgstr "介面名稱不能與已設定的成員、策略或規則相同。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:41
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:34
msgid "Internet Protocol"
msgstr "網際網路協議"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:205
msgid "Keep failure interval"
msgstr "保持故障檢測間隔"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:206
msgid "Keep ping failure interval during failure state"
msgstr "在故障狀態期間保持的 Ping 故障檢測間隔"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:37
msgid "Last resort"
msgstr "備用成員"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:34
msgid "Lines beginning with # are comments and are not executed."
msgstr "以 # 開頭的行是註解,不會被執行。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:20
msgid ""
"Load-balanced member interfaces distribute more traffic out those with "
"higher weights."
msgstr "權重較高的負載均衡成員介面將分配到更多的流量。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:19
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:91
msgid "Logging"
msgstr "日誌"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:22
msgid "Loglevel"
msgstr "日誌級別"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:103
msgid "Max TTL"
msgstr "最大 TTL"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:46
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:55
msgid ""
"May be entered as a single or multiple port(s) (eg \"22\" or \"80,443\") or "
"as a portrange (eg \"1024:2048\") without quotes"
msgstr ""
"可以輸入一個或多個埠(例如“22”或者“80,443”),或者是一個埠範圍(例"
"如“1024:2048”),不含引號"
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:72
msgid "Member"
msgstr "成員"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:18
msgid "Member interfaces with lower metrics are used first."
msgstr "優先使用躍點數較低的成員介面。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:19
msgid "Member interfaces with the same metric will be load-balanced."
msgstr "系統對躍點數相同的成員介面執行負載均衡。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:30
msgid "Member used"
msgstr "使用的成員"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/member.js:17
msgid ""
"Members are profiles attaching a metric and weight to an MWAN interface."
msgstr "成員用於設定某個 MWAN 介面的躍點數和權重。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/member.js:19
msgid ""
"Members may not share the same name as configured interfaces, policies or "
"rules."
msgstr "成員名稱不能與設定的介面、策略或規則相同。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:263
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/member.js:33
msgid "Metric"
msgstr "公測數"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:18
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:3
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:46
msgid "MultiWAN Manager"
msgstr "MultiWAN 管理器"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:79
msgid "MultiWAN Manager - Diagnostics"
msgstr "MultiWAN 管理器 - 診斷"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:10
msgid "MultiWAN Manager - Globals"
msgstr "MultiWAN 管理器 - 全域"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:20
msgid "MultiWAN Manager - Interfaces"
msgstr "MultiWAN 管理器 - 介面"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/member.js:16
msgid "MultiWAN Manager - Members"
msgstr "MultiWAN 管理器 - 成員"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:26
msgid "MultiWAN Manager - Notify"
msgstr "MultiWAN 管理器 - 通知"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:92
msgid "MultiWAN Manager - Overview"
msgstr "MultiWAN 管理器 - 概覽"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:16
msgid "MultiWAN Manager - Policies"
msgstr "MultiWAN 管理器 - 策略"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:18
msgid "MultiWAN Manager - Rules"
msgstr "MultiWAN 管理器 - 規則"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/detail.js:12
msgid "MultiWAN Manager - Status"
msgstr "MultiWAN 管理器 - 狀態"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/troubleshooting.js:12
msgid "MultiWAN Manager - Troubleshooting"
msgstr "MultiWAN 管理器 - 故障排除"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:21
msgid ""
"Mwan3 requires that all interfaces have a unique metric configured in /etc/"
"config/network."
msgstr "Mwan3 要求所有介面都有一個在 /etc/config/network 中設定的唯一躍點數。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:82
msgid ""
"Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/"
"youtube.com/youtube\")"
msgstr ""
"匹配 IPset 規則列表名稱。需要先配置 /etc/dnsmasq.conf 中的 IPset 規則(例"
"如:“ipset=/youtube.com/youtube”)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:23
msgid "Names may contain characters A-Z, a-z, 0-9, _ and no spaces-"
msgstr "名稱可包含字元 A-Z、a-z、0-9 和 _,但不能有空格"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/member.js:18
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:21
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:26
msgid "Names may contain characters A-Z, a-z, 0-9, _ and no spaces."
msgstr "名稱可以包含字元A-Z、a-z、0-9,但不包含空格。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:22
msgid "Names must be 15 characters or less."
msgstr "名稱最多 15 個字元。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:22
msgid "Names must match the interface name found in /etc/config/network."
msgstr "名稱必須與 /etc/config/network 中找到的介面名稱相符。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:73
msgid "No"
msgstr "不"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:20
msgid "No MWAN interfaces found"
msgstr "沒有找到 MWAN 介面"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:43
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:51
msgid "No Tracking"
msgstr "無跟蹤"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:271
msgid "No interface metric set!"
msgstr "未設定介面躍點數!"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:31
msgid "Notes:"
msgstr "附註:"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:30
msgid "Notice"
msgstr "注意"
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:96
msgid "Notify"
msgstr "通知"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:38
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:37
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:45
msgid "Offline"
msgstr "離線"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:37
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:30
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:39
msgid "Online"
msgstr "在線"
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:13
msgid "Overview"
msgstr "概覽"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:79
msgid "Ping count"
msgstr "Ping 計數"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:63
msgid "Ping default gateway"
msgstr "Ping 預設閘道器"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:173
msgid "Ping interval"
msgstr "Ping 間隔"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:189
msgid "Ping interval during failure detection"
msgstr "故障檢測期間的 Ping 間隔"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:211
msgid "Ping interval during failure recovering"
msgstr "故障恢復期間的 Ping 間隔"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:88
msgid "Ping size"
msgstr "Ping 大小"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:167
msgid "Ping timeout"
msgstr "Ping 超時"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:64
msgid "Ping tracking IP"
msgstr "Ping 跟蹤 IP"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:17
msgid ""
"Policies are profiles grouping one or more members controlling how Mwan3 "
"distributes traffic."
msgstr "策略是將一個或多個成員分組的設定檔案,這些成員控制 Mwan3 如何分配流量。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:23
msgid ""
"Policies may not share the same name as configured interfaces, members or "
"rules"
msgstr "策略名稱不能與設定的介面、成員或規則相同"
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:80
msgid "Policy"
msgstr "政策"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:95
msgid "Policy assigned"
msgstr "分配的策略"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:59
msgid "Protocol"
msgstr "協定"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:35
msgid ""
"Put your custom mwan3 action here, they will be executed with each netifd "
"hotplug interface event on interfaces for which mwan3 is enabled."
msgstr "您可以在此自訂 mwan3 事件回應指令碼,該指令碼將在啟用了 mwan3 的介面觸發 netifd 熱插拔介面事件時執行。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:210
msgid "Recovery interval"
msgstr "故障恢復間隔"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:144
msgid "Recovery latency [ms]"
msgstr "恢復延遲[ms]"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:157
msgid "Recovery packet loss [%]"
msgstr "恢復封包遺失[%]"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:39
msgid "Routing table %d"
msgstr "路由表 %d"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:36
msgid "Routing table lookup"
msgstr "路由表查詢"
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:88
msgid "Rule"
msgstr "規則"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:20
msgid "Rules are based on IP address, port or protocol."
msgstr "規則基於 IP 位址、連接埠或協定。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:21
msgid "Rules are matched from top to bottom."
msgstr "規則從上到下進行相符。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:22
msgid "Rules below a matching rule are ignored."
msgstr "相符規則下面的規則將被忽略。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:27
msgid ""
"Rules may not share the same name as configured interfaces, members or "
"policies."
msgstr "規則名稱不能與設定的介面、成員或策略的名稱一樣。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:19
msgid "Rules specify which traffic will use a particular MWAN policy."
msgstr "規則指定哪些流量將使用特定的 MWAN 策略。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:77
msgid "Seconds. Acceptable values: 1-1000000. Defaults to 600 if not set"
msgstr "單位為秒。接受的值:1-1000000。留空則使用預設值 600 秒"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:41
msgid "Source address"
msgstr "來源位址"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:45
msgid "Source port"
msgstr "來源埠"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:65
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:82
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:106
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:21
msgid "Status"
msgstr "狀態"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:69
msgid "Sticky"
msgstr "粘滯模式"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:76
msgid "Sticky timeout"
msgstr "粘滯超時"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:42
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:51
msgid "Supports CIDR notation (eg \"192.168.100.0/24\") without quotes"
msgstr "支援 CIDR 記法(例如:\"192.168.100.0/24\")不含引號"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/diagnostics.js:91
msgid "Task"
msgstr "任務"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:29
msgid "The file is also preserved during sysupgrade."
msgstr "在系統升級期間,該檔案也被保留。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:33
msgid ""
"The first line of the script must be "#!/bin/sh" without quotes."
msgstr "指令碼的第一行必須是不帶引號的 "#!/bin/sh"。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:37
msgid ""
"There are three main environment variables that are passed to this script."
msgstr "傳遞到這個指令碼的主要環境變數有三個。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:264
msgid ""
"This displays the metric assigned to this interface in /etc/config/network"
msgstr "這裡顯示了這個介面在 /etc/config/network 中配置的躍點數"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:32
msgid "This file is interpreted as a shell script."
msgstr "這個檔案被解釋為一個 shell 指令碼。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:48
msgid ""
"This hostname or IP address will be pinged to determine if the link is up or "
"down. Leave blank to assume interface is always online"
msgstr "通過 ping 此主機或 IP 位址來確定鏈路是否在線。留空則認為介面始終在線"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:28
msgid "This section allows you to modify the content of \"/etc/mwan3.user\"."
msgstr "這個部分允許您修改「/etc/mwan3.user」的內容。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:47
msgid "Tracking hostname or IP address"
msgstr "跟蹤的主機或 IP 位址"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:52
msgid "Tracking method"
msgstr "跟蹤方式"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:74
msgid "Tracking reliability"
msgstr "跟蹤可靠性"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:24
msgid ""
"Traffic destined for known (other than default) networks is handled by the "
"main routing table."
msgstr "傳送到已知 (非預設) 網路的流量由主路由表處理。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:70
msgid ""
"Traffic from the same source IP address that previously matched this rule "
"within the sticky timeout period will use the same WAN interface"
msgstr ""
"來自相同源 IP 的流量,如果已經匹配過此規則並且在粘滯超時時間內,將會使用相同"
"的 WAN 介面"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:25
msgid ""
"Traffic matching a rule, but all WAN interfaces for that policy are down "
"will be blackholed."
msgstr "流量相符了一條規則,但該策略的所有WAN介面都停止運作,流量將被黑洞。"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:23
msgid "Traffic not matching any rule is routed using the main routing table."
msgstr "不相符任何規則的流量使用主路由表進行路由。"
#: applications/luci-app-mwan3/root/usr/share/luci/menu.d/luci-app-mwan3.json:37
msgid "Troubleshooting"
msgstr "故障排除"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/notify.js:20
msgid "Unable to save contents: %s"
msgstr "無法儲存內容:%s"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:33
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js:47
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:42
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js:55
msgid "Uptime"
msgstr "上線時間"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:60
msgid "View the content of /etc/protocols for protocol description"
msgstr "檢視協議描述的 /etc/protocols 的內容"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/globals.js:29
msgid "Warning"
msgstr "警告"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:38
msgid ""
"When all policy members are offline use this behavior for matched traffic"
msgstr "當所有策略成員都無法使用的時候,對使用該策略的流量使用這個操作"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:72
msgid "Yes"
msgstr "是"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:41
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:102
msgid "blackhole (drop)"
msgstr "黑洞(丟棄)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:259
msgid "connected (mwan3)"
msgstr "已連線 (mwan3)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:42
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:103
msgid "default (use main routing table)"
msgstr "預設(使用主路由表)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:260
msgid "disconnected (mwan3)"
msgstr "未連線 (mwan3)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:258
msgid "ifdown (netifd)"
msgstr "ifdown (netifd)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/interface.js:257
msgid "ifup (netifd)"
msgstr "ifup (netifd)"
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/policy.js:40
#: applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/network/rule.js:101
msgid "unreachable (reject)"
msgstr "不可達(拒絕)"
#~ msgid "All required IP rules for interface %s found"
#~ msgstr "要找到介面 %s 所需的全部 IP 規則"
#~ msgid "Collecting data..."
#~ msgstr "正在收集資料中…"
#~ msgid "Detail"
#~ msgstr "詳細"
#~ msgid "INFO: MWAN not running"
#~ msgstr "資訊:MWAN 沒有執行"
#~ msgid "Interfaces"
#~ msgstr "介面"
#~ msgid "Load Balancing"
#~ msgstr "負載均衡"
#~ msgid "Loading"
#~ msgstr "正在載入中"
#~ msgid "MWAN - Globals"
#~ msgstr "MWAN - 全域"
#~ msgid "MWAN - Interfaces"
#~ msgstr "MWAN - 介面"
#~ msgid "MWAN - Members"
#~ msgstr "MWAN - 成員"
#~ msgid "MWAN - Notification"
#~ msgstr "MWAN - 通知"
#~ msgid "MWAN - Policies"
#~ msgstr "MWAN - 策略"
#~ msgid "MWAN - Rules"
#~ msgstr "MWAN - 規則"
#~ msgid "MWAN Interface Configuration - %s"
#~ msgstr "MWAN 介面配置 - %s"
#~ msgid "MWAN Interfaces"
#~ msgstr "MWAN 介面"
#~ msgid "MWAN Member Configuration - %s"
#~ msgstr "MWAN 成員配置 - %s"
#~ msgid "MWAN Policy Configuration - %s"
#~ msgstr "MWAN 策略配置 - %s"
#~ msgid "MWAN Rule Configuration - %s"
#~ msgstr "MWAN 規則配置 - %s"
#~ msgid "MWAN Status - Detail"
#~ msgstr "MWAN 狀態-詳細"
#~ msgid "MWAN Status - Diagnostics"
#~ msgstr "MWAN 狀態 - 診斷"
#~ msgid "MWAN Status - Troubleshooting"
#~ msgstr "MWAN 狀態 - 故障排除"
#~ msgid "Members"
#~ msgstr "成員"
#~ msgid ""
#~ "Members are profiles attaching a metric and weight to an MWAN "
#~ "interface<br />Names may contain characters A-Z, a-z, 0-9, _ and no "
#~ "spaces<br />Members may not share the same name as configured interfaces, "
#~ "policies or rules"
#~ msgstr ""
#~ "“成員”用來設定每一個 MWAN 介面的躍點數(即介面優先順序)和所佔比重。<br />"
#~ "名稱允許包括 A-Z、 a-、0-9、_ 但是不能有空格。<br />成員不應該與介面、策"
#~ "略、規則中的任意一個設定項使用相同的名稱"
#~ msgid "Members assigned"
#~ msgstr "分配的成員"
#~ msgid "Missing both IP rules for interface %s"
#~ msgstr "缺少介面 %s 的兩個 IP 規則"
#~ msgid "No gateway for interface %s found."
#~ msgstr "沒有找到介面 %s 的閘道器。"
#~ msgid "No tracking Hosts for interface %s defined."
#~ msgstr "未定義介面 %s 的跟蹤主機。"
#~ msgid "Notification"
#~ msgstr "通知"
#~ msgid "Only one IP rules for interface %s found"
#~ msgstr "只找到介面 %s 的一個 IP 規則"
#~ msgid "Policies"
#~ msgstr "政策"
#~ msgid ""
#~ "Policies are profiles grouping one or more members controlling how MWAN "
#~ "distributes traffic<br />Member interfaces with lower metrics are used "
#~ "first<br />Member interfaces with the same metric will be load-"
#~ "balanced<br />Load-balanced member interfaces distribute more traffic out "
#~ "those with higher weights<br />Names may contain characters A-Z, a-z, "
#~ "0-9, _ and no spaces<br />Names must be 15 characters or less<br /"
#~ ">Policies may not share the same name as configured interfaces, members "
#~ "or rules"
#~ msgstr ""
#~ "「政策」設定檔用來劃分一個或多個成員,並控制 MWAN 如何散發流量<br />擁有較"
#~ "低權值的成員介面將被優先使用<br />擁有相同權值的成員介面將被負載平衡<br />"
#~ "負載平衡的成員介面中,擁有較高權重的成員介面將散發到更多流量<br />名稱允許"
#~ "包含 \"A-Z, a-z, 0-9, _\",不能使用空格<br />名稱不得超過 15 個字元<br /"
#~ ">「政策」名稱不應該與配置的介面、成員或規則名稱相同"
#~ msgid "Routing table %s for interface %s found"
#~ msgstr "找到路由表 %s,為介面 %s"
#~ msgid "Routing table %s for interface %s not found"
#~ msgstr "沒有找到路由表 %s,為介面 %s"
#~ msgid "Rules"
#~ msgstr "規則"
#~ msgid ""
#~ "Rules specify which traffic will use a particular MWAN policy<br />Rules "
#~ "are based on IP address, port or protocol<br />Rules are matched from top "
#~ "to bottom<br />Rules below a matching rule are ignored<br />Traffic not "
#~ "matching any rule is routed using the main routing table<br />Traffic "
#~ "destined for known (other than default) networks is handled by the main "
#~ "routing table<br />Traffic matching a rule, but all WAN interfaces for "
#~ "that policy are down will be blackholed<br />Names may contain characters "
#~ "A-Z, a-z, 0-9, _ and no spaces<br />Rules may not share the same name as "
#~ "configured interfaces, members or policies"
#~ msgstr ""
#~ "規則指定哪些流量將使用特定的 MWAN 策略<br />規則基於 IP 位址,埠或協議"
#~ "<br />規則從上到下匹配<br />匹配規則以下的規則被忽略<br />不符合任何規則的"
#~ "流量將使用主路由表進行路由<br />目的地為已知(非預設)網路的流量由主路由表"
#~ "處理<br />流量符合規則,但該策略的所有 WAN 介面關閉後都會被失效<br />名稱"
#~ "可包含字元 A-Z,a-z,0-9,_ 和空格<br />規則不能與配置的介面、成員或策略共"
#~ "享相同的名稱"
#~ msgid "There are currently %d of %d supported interfaces configured"
#~ msgstr "當前已配置 %d 個介面,最大支援 %d 個"
#~ msgid ""
#~ "This section allows you to modify the content of \"/etc/mwan3.user\".<br /"
#~ ">The file is also preserved during sysupgrade.<br /><br />Notes:<br /"
#~ ">This file is interpreted as a shell script.<br />The first line of the "
#~ "script must be "#!/bin/sh" without quotes.<br />Lines beginning "
#~ "with # are comments and are not executed.<br />Put your custom mwan3 "
#~ "action here, they will<br />be executed with each netifd hotplug "
#~ "interface event<br />on interfaces for which mwan3 is enabled.<br /><br /"
#~ ">There are three main environment variables that are passed to this "
#~ "script.<br /><br />$ACTION <br />* \"ifup\" Is called by netifd and "
#~ "mwan3track <br />* \"ifdown\" Is called by netifd and mwan3track <br />* "
#~ "\"connected\" Is only called by mwan3track if tracking was successful "
#~ "<br />* \"disconnected\" Is only called by mwan3track if tracking has "
#~ "failed <br />$INTERFACE Name of the interface which went up or down (e.g. "
#~ "\"wan\" or \"wwan\")<br />$DEVICE Physical device name which interface "
#~ "went up or down (e.g. \"eth0\" or \"wwan0\")<br /><br />"
#~ msgstr ""
#~ "您可以在這裡修改 \"/etc/mwan3.user\" 的內容。<br />在執行 sysupgrade 期"
#~ "間,該檔案也會被保留。<br /><br />請注意:<br />該檔案會被解譯為「Shell 指"
#~ "令碼」。<br />指令碼的第一行必須是 "#!/bin/sh"(引號之內)。<br />"
#~ "以 \"#\" 開頭的行是註解,不會被執行。<br />請您在此處自訂 mwan3 動作,他們"
#~ "將<br />在已啟用 mwan3 的介面上<br />被每個 netifd 熱插拔介面事件執行。"
#~ "<br /><br />傳遞到該指令碼的主要環境變數有三個。<br /><br />$ACTION<br /"
#~ ">* \"ifup\" 藉由 netifd 與 mwan3track 呼叫<br />* \"ifdown\" 也藉由 "
#~ "netifd 與 mwan3track 呼叫<br />* \"connected\" 只在追蹤成功時藉由 "
#~ "mwan3track 呼叫<br />* \"disconnected\" 只在追蹤失敗時藉由 mwan3track 呼叫"
#~ "<br />$INTERFACE 為開啟或關閉的介面名稱(例如:\"WAN\" 抑或 \"WWAN\")"
#~ "<br />$DEVICE 為開啟或關閉的介面實體裝置(例如:\"eth0\" 抑或 \"wwan0\")"
#~ "<br /><br />"
#~ msgid "WARNING: %d interfaces are configured exceeding the maximum of %d!"
#~ msgstr "警告:已配置 %d 個介面,超過最大值 %d!"
#~ msgid "WARNING: Interface %s are not found in /etc/config/network"
#~ msgstr "警告:介面 %s 在 /etc/config/network 中未找到"
#~ msgid "WARNING: Interface %s has a duplicate metric %s configured"
#~ msgstr "警告:介面 %s 的 metric %s 配置重複"
#~ msgid ""
#~ "WARNING: Interface %s has a higher reliability requirement than tracking "
#~ "hosts (%d)"
#~ msgstr "警告:介面 %s 比跟蹤主機具有更高的可靠性要求(%d)"
#~ msgid "WARNING: Interface %s has no default route in the main routing table"
#~ msgstr "警告:介面 %s 在主路由表中沒有預設的路由"
#~ msgid "WARNING: Policy %s has exceeding the maximum name of 15 characters"
#~ msgstr "警告:策略 %s 名稱超過 15 個字元"
#~ msgid ""
#~ "WARNING: Rule %s have a port configured with no or improper protocol "
#~ "specified!"
#~ msgstr "警告:規則 %s 有一個埠配置沒有指定或協議不正確!"
#~ msgid "Waiting for command to complete..."
#~ msgstr "正在等待指令完成…"
#~ msgid "Weight"
#~ msgstr "重量"
#~ msgid ""
#~ "mwan3 requires that all interfaces have a unique metric configured in /"
#~ "etc/config/network<br />Names must match the interface name found in /etc/"
#~ "config/network<br />Names may contain characters A-Z, a-z, 0-9, _ and no "
#~ "spaces<br />Interfaces may not share the same name as configured members, "
#~ "policies or rules"
#~ msgstr ""
#~ "mwan3 要求所有在 /etc/config/network 中的介面 (interface) 設定獨立的 "
#~ "metric 參數<br />介面名稱要和/etc/config/network的一致<br />名稱可以包含字"
#~ "元 A-Z,a-z,0-9,_ ,但不能有空格<br />介面名稱也不能和設定的成員,原則,"
#~ "或者規則相同"
#~ msgid "Max packet latency [ms]"
#~ msgstr "最大資料包延遲 [ms]"
#~ msgid "Max packet loss [%]"
#~ msgstr "最大資料包丟失率 [%]"
#~ msgid "Min packet latency [ms]"
#~ msgstr "最小資料包延遲 [ms]"
#~ msgid "Min packet loss [%]"
#~ msgstr "最小資料包丟失率 [%]"
#~ msgid "How often should rtmon update the interface routing table"
#~ msgstr "rtmon 應該多久更新一次介面路由表"
#~ msgid ""
#~ "MWAN supports up to 252 physical and/or logical interfaces<br />MWAN "
#~ "requires that all interfaces have a unique metric configured in /etc/"
#~ "config/network<br />Names must match the interface name found in /etc/"
#~ "config/network<br />Names may contain characters A-Z, a-z, 0-9, _ and no "
#~ "spaces<br />Interfaces may not share the same name as configured members, "
#~ "policies or rules"
#~ msgstr ""
#~ "MWAN 支援最多 252 個物理或邏輯介面。<br />MWAN 要求所有介面必須在 /etc/"
#~ "config/network 中設定唯一的閘道器躍點。<br />名稱必須與 /etc/config/"
#~ "network 中的介面名稱匹配。<br />名稱允許包括 A-Z、a-z、0-9、_ 但是不能有空"
#~ "格。<br />介面不應該與成員、策略、規則中的任意一個設定項使用相同的名稱"
#~ msgid "Update interval"
#~ msgstr "更新間隔"
#~ msgid "always"
#~ msgstr "總是"
#~ msgid "ifdown"
#~ msgstr "ifdown"
#~ msgid "ifup"
#~ msgstr "ifup"
#~ msgid "never"
#~ msgstr "從不"
|