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
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
|
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-03-30 17:00+0200\n"
"PO-Revision-Date: 2024-04-19 17:04+0000\n"
"Last-Translator: ssantos <ssantos@web.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsfirewall/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:48
msgid ""
"%{src?%{dest?Forwarded:Incoming}:Outgoing} %{ipv6?%{ipv4?<var>IPv4</var> and "
"<var>IPv6</var>:<var>IPv6</var>}:<var>IPv4</var>}%{proto?, protocol "
"%{proto#%{next?, }%{item.types?<var class=\"cbi-tooltip-container\">%{item."
"name}<span class=\"cbi-tooltip\">ICMP with types %{item.types#%{next?, }"
"<var>%{item}</var>}</span></var>:<var>%{item.name}</var>}}}%{mark?, mark "
"<var%{mark.inv? data-tooltip=\"Match fwmarks except %{mark.num}%{mark.mask? "
"with mask %{mark.mask}}.\":%{mark.mask? data-tooltip=\"Mask fwmark value "
"with %{mark.mask} before compare.\"}}>%{mark.val}</var>}%{dscp?, DSCP %{dscp."
"inv?<var data-tooltip=\"Match DSCP classifications except %{dscp.num?:%{dscp."
"name}}\">%{dscp.val}</var>:<var>%{dscp.val}</var>}}%{helper?, helper "
"%{helper.inv?<var data-tooltip=\"Match any helper except "%{helper.name}"
""\">%{helper.val}</var>:<var data-tooltip=\"%{helper.name}\">%{helper."
"val}</var>}}"
msgstr ""
"%{src?%{dest?Weitergeleiteter:Eingehender}:Ausgehender} %{ipv6?%{ipv4?"
"<var>IPv4</var>- und <var>IPv6</var>:<var>IPv6</var>}:<var>IPv4</var>}-"
"Verkehr%{proto?, Protokoll %{proto#%{next?, }%{item.types?<var class=\"cbi-"
"tooltip-container\">%{item.name}<span class=\"cbi-tooltip\">ICMP mit Typen "
"%{item.types#%{next?, }<var>%{item}</var>}</span></var>:<var>%{item.name}</"
"var>}}}%{mark?, mark <var%{mark.inv? data-tooltip=\"Selektiert Firewall-"
"Markierungen außer %{mark.num}%{mark.mask? mit Maske %{mark.mask}}.\":%{mark."
"mask? data-tooltip=\"Maskiert Markierungswert mit %{mark.mask} vorm "
"Vergleich.\"}}>%{mark.val}</var>}%{dscp?, DSCP %{dscp.inv?<var data-"
"tooltip=\"Selektiert DSCP-Klassifizierungen außer %{dscp.num?:%{dscp."
"name}}\">%{dscp.val}</var>:<var>%{dscp.val}</var>}}%{helper?, Tracking-"
"Helfer %{helper.inv?<var data-tooltip=\"Selektiert Helfer außer ""
"%{helper.name}"\">%{helper.val}</var>:<var data-tooltip=\"%{helper."
"name}\">%{helper.val}</var>}}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:463
msgid "-- add IP --"
msgstr "-- IP hinzufügen --"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:521
msgid "-- add MAC --"
msgstr "-- MAC hinzufügen --"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:198
msgid "0"
msgstr "0"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:181
msgid "1024"
msgstr "1024"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:118
msgid ""
"<var data-tooltip=\"ACCEPT\">Accept</var> %{src?%{dest?forward:input}:output}"
msgstr ""
"%{src?%{dest?Weiterleitung:Eingang}:Ausgang} <var data-"
"tooltip=\"ACCEPT\">erlauben</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93
msgid "<var data-tooltip=\"ACCEPT\">Prevent source rewrite</var>"
msgstr "<var data-tooltip=\"ACCEPT\">Quellmaskierung unterbinden</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:85
msgid ""
"<var data-tooltip=\"DNAT\">Forward</var> to %{dest}%{dest_ip? IP "
"<var>%{dest_ip}</var>}%{dest_port? port <var>%{dest_port}</var>}"
msgstr ""
"<var data-tooltip=\"DNAT\">Weiterleiten</var> zu %{dest}%{dest_ip? IP "
"<var>%{dest_ip}</var>}%{dest_port? Port <var>%{dest_port}</var>}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:115
msgid ""
"<var data-tooltip=\"DROP\">Drop</var> %{src?%{dest?forward:input}:output}"
msgstr ""
"%{src?%{dest?Weiterleitung:Eingang}:Ausgang} <var data-"
"tooltip=\"DROP\">verwerfen</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:133
msgid ""
"<var data-tooltip=\"DSCP\">Assign DSCP</var> classification <var>%{set_dscp}"
"</var>"
msgstr ""
"<var data-tooltip=\"DSCP\">Setze DSCP</var>-Klassifizierung auf "
"<var>%{set_dscp}</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:127
msgid ""
"<var data-tooltip=\"HELPER\">Assign conntrack</var> helper "
"<var%{helper_name? data-tooltip=\"%{helper_name}\"}>%{set_helper}</var>"
msgstr ""
"<var data-tooltip=\"HELPER\">Assoziiere Tracking</var>-Helfer "
"<var%{helper_name? data-tooltip=\"%{helper_name}\"}>%{set_helper}</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:130
msgid ""
"<var data-tooltip=\"MARK\">%{set_mark?Assign:XOR}</var> firewall mark "
"<var>%{set_mark?:%{set_xmark}}</var>"
msgstr ""
"<var data-tooltip=\"MARK\">%{set_mark?Setze:XOR}</var> Firewall-Markierung "
"<var>%{set_mark?:%{set_xmark}}</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:90
msgid "<var data-tooltip=\"MASQUERADE\">Automatically rewrite</var> source IP"
msgstr "Quell-IP <var data-tooltip=\"MASQUERADE\">automatisch maskieren</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:124
msgid ""
"<var data-tooltip=\"NOTRACK\">Do not track</var> %{src?%{dest?forward:input}:"
"output}"
msgstr ""
"%{src?%{dest?Weiterleitungs:Eingangs}:Ausgangs}-<var data-"
"tooltip=\"NOTRACK\">Tracking verhindern</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:121
msgid ""
"<var data-tooltip=\"REJECT\">Reject</var> %{src?%{dest?forward:input}:output}"
msgstr ""
"%{src?%{dest?Weiterleitung:Eingang}:Ausgang} <var data-"
"tooltip=\"REJECT\">ablehnen</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:87
msgid ""
"<var data-tooltip=\"SNAT\">Statically rewrite</var> to source %{snat_ip?IP "
"<var>%{snat_ip}</var>} %{snat_port?port <var>%{snat_port}</var>}"
msgstr ""
"Quell%{snat_ip?-IP <var>%{snat_ip}</var>} %{snat_port?Port <var>%{snat_port}"
"</var>} <var data-tooltip=\"SNAT\">statisch umschreiben</var>"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:305
msgid "A rewrite IP must be specified!"
msgstr "Es muss eine IP-Adresse zum Umschreiben angegeben werden!"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:291
msgid "ACCEPT - Disable address rewriting"
msgstr "ACCEPT - Umschreiben von IP-Adressen deaktivieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:410
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:203
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:286
msgid "Action"
msgstr "Aktion"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:316
msgid ""
"Additional raw <em>iptables</em> arguments to classify zone destination "
"traffic, e.g. <code>-p tcp --dport 443</code> to only match outbound HTTPS "
"traffic."
msgstr ""
"Zusätzliche rohe <em>iptables</em>-Argumente zur Klassifizierung des "
"Zonenzielverkehrs, z.B. <code>-p tcp --dport 443</code>, um nur ausgehenden "
"HTTPS-Verkehr übereinstimmen zu lassen."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:306
msgid ""
"Additional raw <em>iptables</em> arguments to classify zone source traffic, "
"e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic."
msgstr ""
"Zusätzliche rohe <em>iptables</em>-Argumente zur Klassifizierung von "
"Zonenquellenverkehr, z.B. <code>-p tcp --sport 443</code>, um nur "
"eingehenden HTTPS-Verkehr übereinstimmen zu lassen."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:107
msgid "Address family, Internal IP address must match"
msgstr "Adressfamilie, interne IP-Adresse muss übereinstimmen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:135
msgid ""
"Address family, source address, destination address, rewrite IP address must "
"match"
msgstr ""
"Adressfamilie, Quelladresse, Zieladresse, IP-Adressenumschreibung muss "
"übereinstimmen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:161
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:182
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:181
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:108
msgid "Advanced Settings"
msgstr "Erweiterte Einstellungen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:277
msgid "Allow \"invalid\" traffic"
msgstr "Erlaube \"ungültigen\" Verkehr"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:379
msgid "Allow forward from <em>source zones</em>:"
msgstr "Erlaube Weiterleitung von <em>Quellzone</em>:"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:338
msgid "Allow forward to <em>destination zones</em>:"
msgstr "Erlaube Weiterleitung zu <em>Zielzone</em>:"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:551
msgid "Any"
msgstr "Beliebig"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:478
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:494
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:351
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:367
msgid "Any day"
msgstr "Beliebig"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:317
msgid ""
"Apply a bitwise XOR of the given value and the existing mark value on "
"established connections. Format is value[/mask]. If a mask is specified then "
"those bits set in the mask are zeroed out."
msgstr ""
"Bitweises XOR von angegebenem Wert und Maske auf etablierte Verbindungen "
"anwenden. Format ist Wert[/Maske]. Wenn eine Maske angegeben ist, werden die "
"korrespondierenden Bits des Wertes genullt."
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:264
msgid "Apply the given DSCP class or value to established connections."
msgstr ""
"Wende die angegebene DSCP-Klasse oder den angegebenen DSCP-Wert auf "
"etablierte Verbindungen an."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438
msgid "Assign the specified connection tracking helper to matched traffic."
msgstr ""
"Weise den angegebenen Verbindungs-Tracking-Helfer selektiertem Verkehr zu."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:280
msgid "Automatic helper assignment"
msgstr "Automatische Helferzuordnung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:280
msgid ""
"Automatically assign conntrack helpers based on traffic protocol and port"
msgstr ""
"Automatische Zuweisung von Conntrack-Helfern basierend auf Traffic-Protokoll "
"und Port"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:60
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:61
msgid "Comment"
msgstr "Kommentar"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:109
msgid "Conntrack Settings"
msgstr "Conntrack-Einstellungen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:284
msgid "Conntrack helpers"
msgstr "Conntrack-Helfer"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js:16
msgid "Contents have been saved."
msgstr "Inhalte wurden gespeichert."
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:700
msgid "Continue"
msgstr "Fortfahren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:203
msgid "Counters"
msgstr "Zähler"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:225
msgid "Covered devices"
msgstr "Abgedeckte Geräte"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:177
msgid "Covered networks"
msgstr "Abgedeckte Netzwerke"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:230
msgid "Covered subnets"
msgstr "Abgedeckte Subnetze"
#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:62
msgid "Custom Rules"
msgstr "Benutzerdefinierte Regeln"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js:26
msgid ""
"Custom rules allow you to execute arbitrary iptables commands which are not "
"otherwise covered by the firewall framework. The commands are executed after "
"each firewall restart, right after the default ruleset has been loaded."
msgstr ""
"Benutzerdefinierte Regeln ermöglichen das Ausführen belieber iptables-"
"Befehle welche durch das Firewall-Framework nicht unterstützt werden. Die "
"Befehle werden mit jedem Firewall-Neustart abgearbeitet, direkt nach dem "
"Laden der Basisregeln."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:420
msgid "DSCP classification"
msgstr "DSCP-Klassifizierung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:263
msgid "DSCP mark"
msgstr "DSCP-Markierung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297
msgid "DSCP mark required"
msgstr "DSCP-Markierung benötigt"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269
msgid "Destination address"
msgstr "Zieladresse"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:403
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:277
msgid "Destination port"
msgstr "Zielport"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395
msgid "Destination zone"
msgstr "Ziel-Zone"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268
msgid "Device name"
msgstr "Gerätename"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:277
msgid ""
"Do not install extra rules to reject forwarded traffic with conntrack state "
"<em>invalid</em>. This may be required for complex asymmetric route setups."
msgstr ""
"Installiere keine zusätzlichen Regeln, um weitergeleiteten Traffic mit "
"Conntrack-Status <em>invalid</em> abzulehnen. Dies kann bei komplexen "
"asymmetrischen Routen erforderlich sein."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:59
msgid "Drop invalid packets"
msgstr "Ungültige Pakete verwerfen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:209
msgid "Enable"
msgstr "Aktivieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:305
msgid "Enable NAT Loopback"
msgstr "NAT-Loopback aktivieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45
msgid "Enable SYN-flood protection"
msgstr "Schutz vor SYN-flood-Attacken"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:290
msgid "Enable logging on this zone"
msgstr "Protokollierung innerhalb der Zone aktivieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:162
msgid ""
"Enable network address and port translation IPv4 (NAT4 or NAPT4) for "
"outbound traffic on this zone. This is typically enabled on the <em>wan</em> "
"zone."
msgstr ""
"Aktivieren der Netzwerkadressen- und Portübersetzung IPv4 (NAT4 oder NAPT4) "
"für den ausgehenden Verkehr in dieser Zone. Dies wird normalerweise für die "
"Zone <em>wan</em> aktiviert."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:237
msgid ""
"Enable network address and port translation IPv6 (NAT6 or NAPT6) for "
"outbound traffic on this zone."
msgstr ""
"Aktivieren der Netzwerkadressen- und Portübersetzung IPv6 (NAT6 oder NAPT6) "
"für den ausgehenden Verkehr in dieser Zone."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:210
msgid "Enabled"
msgstr "Aktiviert"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:204
msgid "Enables packet and byte count tracking for the set."
msgstr "Aktiviert die Paket- und Byte-Zählungsverfolgung für das Set."
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:339
msgid "Expecting: %s"
msgstr "Erwarte: %s"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77
msgid "Experimental feature. Not fully compatible with QoS/SQM."
msgstr "Experimentelle Funktion. Nicht vollständig kompatibel mit QoS/SQM."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:284
msgid "Explicitly choses allowed connection tracking helpers for zone traffic"
msgstr ""
"Wählt explizit zulässige Verbindungs-Tracking-Helfer für den Zonenverkehr aus"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:273
msgid "External IP address"
msgstr "Externe IP-Adresse"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278
msgid "External port"
msgstr "Externer Port"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:348
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:469
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341
msgid "Extra arguments"
msgstr "Zusätzliche Argumente"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:316
msgid "Extra destination arguments"
msgstr "Zusätzliche Ziel-Argumente"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:110
msgid "Extra iptables arguments"
msgstr "Zusätzliche iptables-Argumente"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:306
msgid "Extra source arguments"
msgstr "Zusätzliche Quell-Argumente"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:66
msgid "Family"
msgstr "Familie"
#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:3
msgid "Firewall"
msgstr "Firewall"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js:25
msgid "Firewall - Custom Rules"
msgstr "Firewall - Benutzerdefinierte Regeln"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:20
msgid "Firewall - IP sets"
msgstr "Firewall - IP-Sets"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:172
msgid "Firewall - NAT Rules"
msgstr "Firewall - NAT Regeln"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152
msgid "Firewall - Port Forwards"
msgstr "Firewall - Portweiterleitungen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:173
msgid "Firewall - Traffic Rules"
msgstr "Firewall - Traffic-Regeln"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:38
msgid "Firewall - Zone Settings"
msgstr "Firewall - Zoneneinstellungen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:693
msgid "Firewall configuration migration"
msgstr "Migration der Firewall-Konfiguration"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:64
msgid "Forward"
msgstr "Weiterleitung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:34
#, fuzzy
msgid ""
"Forwarded %{ipv6?%{ipv4?<var>IPv4</var> and <var>IPv6</var>:<var>IPv6</var>}:"
"<var>IPv4</var>}%{proto?, protocol %{proto#%{next?, }<var>%{item.name}</"
"var>}}%{mark?, mark <var%{mark.inv? data-tooltip=\"Match fwmarks except "
"%{mark.num}%{mark.mask? with mask %{mark.mask}}.\":%{mark.mask? data-"
"tooltip=\"Mask fwmark value with %{mark.mask} before compare.\"}}>%{mark.val}"
"</var>}"
msgstr ""
"Weitergeleiteter %{ipv6?%{ipv4?<var>IPv4</var>- und <var>IPv6</var>:"
"<var>IPv6-</var>}:<var>IPv4</var>}-Verkehr%{proto?, Protokoll "
"%{proto#%{next?, }<var>%{item.name}</var>}}%{mark?, Markierung <var%{mark."
"inv? data-tooltip=\"Finde fwmarks außer %{mark.num}%{mark.mask? mit Maske "
"%{mark.mask}}.\":%{mark.mask? data-tooltip=\"Maskiere fwmark-Wert mit %{mark."
"mask} vor dem Vergleich.\"}}>%{mark.val}</var>}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:484
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:357
msgid "Friday"
msgstr "Freitag"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:45
msgid ""
"From %{src}%{src_device?, interface <var>%{src_device}</var>}%{src_ip?, IP "
"%{src_ip#%{next?, }<var%{item.inv? data-tooltip=\"Match IP addresses except "
"%{item.val}.\"}>%{item.ival}</var>}}%{src_port?, port %{src_port#%{next?, }"
"<var%{item.inv? data-tooltip=\"Match ports except %{item.val}.\"}>%{item."
"ival}</var>}}"
msgstr ""
"Von %{src}%{src_device?, Schnittstelle <var>%{src_device}</var>}%{src_ip?, "
"IP %{src_ip#%{next?, }<var%{item.inv? data-tooltip=\"Selektiert IP-Adressen "
"außer %{item.val}.\"}>%{item.ival}</var>}}%{src_port?, Port "
"%{src_port#%{next?, }<var%{item.inv? data-tooltip=\"Selektiert Ports außer "
"%{item.val}.\"}>%{item.ival}</var>}}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:64
msgid ""
"From %{src}%{src_device?, interface <var>%{src_device}</var>}%{src_ip?, IP "
"%{src_ip#%{next?, }<var%{item.inv? data-tooltip=\"Match IP addresses except "
"%{item.val}.\"}>%{item.ival}</var>}}%{src_port?, port %{src_port#%{next?, }"
"<var%{item.inv? data-tooltip=\"Match ports except %{item.val}.\"}>%{item."
"ival}</var>}}%{src_mac?, MAC %{src_mac#%{next?, }<var%{item.inv? data-"
"tooltip=\"Match MACs except %{item.val}%{item.hint.name? a.k.a. %{item.hint."
"name}}.\":%{item.hint.name? data-tooltip=\"%{item.hint.name}\"}}>%{item.ival}"
"</var>}}"
msgstr ""
"Von %{src}%{src_device?, Schnittstelle <var>%{src_device}</var>}%{src_ip?, "
"IP %{src_ip#%{next?, }<var%{item.inv? data-tooltip=\"Selektiert IP-Adressen "
"außer %{item.val}.\"}>%{item.ival}</var>}}%{src_port?, port "
"%{src_port#%{next?, }<var%{item.inv? data-tooltip=\"Selektiert Ports außer "
"%{item.val}.\"}>%{item.ival}</var>}}%{src_mac?, MAC %{src_mac#%{next?, }"
"<var%{item.inv? data-tooltip=\"Selektiert MAC-Adressen außer %{item."
"val}%{item.hint.name? a.k.a. %{item.hint.name}}.\":%{item.hint.name? data-"
"tooltip=\"%{item.hint.name}\"}}>%{item.ival}</var>}}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52
msgid ""
"From %{src}%{src_ip?, IP %{src_ip#%{next?, }<var%{item.inv? data-"
"tooltip=\"Match IP addresses except %{item.val}.\"}>%{item.ival}</"
"var>}}%{src_port?, port %{src_port#%{next?, }<var%{item.inv? data-"
"tooltip=\"Match ports except %{item.val}.\"}>%{item.ival}</var>}}%{src_mac?, "
"MAC %{src_mac#%{next?, }<var%{item.inv? data-tooltip=\"Match MACs except "
"%{item.val}%{item.hint.name? a.k.a. %{item.hint.name}}.\":%{item.hint.name? "
"data-tooltip=\"%{item.hint.name}\"}}>%{item.ival}</var>}}"
msgstr ""
"Von %{src}%{src_ip?, IP %{src_ip#%{next?, }<var%{item.inv? data-"
"tooltip=\"Selektiert IP-Adressen außer %{item.val}.\"}>%{item.ival}</"
"var>}}%{src_port?, port %{src_port#%{next?, }<var%{item.inv? data-"
"tooltip=\"Selektiert Ports außer %{item.val}.\"}>%{item.ival}</"
"var>}}%{src_mac?, MAC %{src_mac#%{next?, }<var%{item.inv? data-"
"tooltip=\"Selektiert MAC-Adressen außer %{item.val}%{item.hint.name? genannt "
"%{item.hint.name}}.\":%{item.hint.name? data-tooltip=\"%{item.hint.name}\"}}"
">%{item.ival}</var>}}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:160
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:181
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:180
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:41
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107
#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:17
msgid "General Settings"
msgstr "Allgemeine Einstellungen"
#: applications/luci-app-firewall/root/usr/share/rpcd/acl.d/luci-app-firewall.json:3
msgid "Grant access to firewall configuration"
msgstr "Zugriff auf die Firewall-Konfiguration gewähren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:88
msgid "Hardware flow offloading"
msgstr "Hardwarebeschleunigte Flusskontrolle"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:143
msgid "IP (range)"
msgstr "IP (Bereich)"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:32
#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53
msgid "IP Sets"
msgstr "IP-Sets"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:151
msgid "IPs/Networks"
msgstr "IPs/Netzwerke"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:106
msgid "IPs/Networks/MACs"
msgstr "IPs/Netzwerke/MACs"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:67
msgid "IPv4"
msgstr "IPv4"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:190
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:279
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:218
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:250
msgid "IPv4 and IPv6"
msgstr "IPv4 und IPv6"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:280
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:251
msgid "IPv4 only"
msgstr "nur IPv4"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:68
msgid "IPv6"
msgstr "IPv6"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:236
msgid "IPv6 Masquerading"
msgstr "IPv6-Masquerading"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:192
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:281
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:220
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:252
msgid "IPv6 only"
msgstr "nur IPv6"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:251
msgid "Inbound device"
msgstr "Eingehendes Gerät"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:186
msgid "Include File"
msgstr "Datei einschließen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:40
msgid ""
"Incoming %{ipv6?%{ipv4?<var>IPv4</var> and <var>IPv6</var>:<var>IPv6</var>}:"
"<var>IPv4</var>}%{proto?, protocol %{proto#%{next?, }%{item.types?<var "
"class=\"cbi-tooltip-container\">%{item.name}<span class=\"cbi-tooltip\">ICMP "
"with types %{item.types#%{next?, }<var>%{item}</var>}</span></var>:"
"<var>%{item.name}</var>}}}%{mark?, mark <var%{mark.inv? data-tooltip=\"Match "
"fwmarks except %{mark.num}%{mark.mask? with mask %{mark.mask}}.\":%{mark."
"mask? data-tooltip=\"Mask fwmark value with %{mark.mask} before compare.\"}}"
">%{mark.val}</var>}%{helper?, helper %{helper.inv?<var data-tooltip=\"Match "
"any helper except "%{helper.name}"\">%{helper.val}</var>:<var data-"
"tooltip=\"%{helper.name}\">%{helper.val}</var>}}"
msgstr ""
"Eingehende %{ipv6?%{ipv4?<var>IPv4</var> und <var>IPv6</var>:<var>IPv6</"
"var>}:<var>IPv4</var>}%{proto?, Protokoll %{proto#%{next?, }%{item.types?"
"<var class=\"cbi-tooltip-container\">%{item.name}<span class=\"cbi-"
"tooltip\">ICMP mit Typen %{item.types#%{next?, }<var>%{item}</var>}</span></"
"var>:<var>%{item.name}</var>}}}%{mark? mark <var%{mark.inv? data-"
"tooltip=\"Vergleiche fwmarks außer %{mark.num}%{mark.mask? mit Maske %{mark."
"mask}}.\":%{mark.mask? data-tooltip=\"Maskiere fwmark-Wert mit %{mark.mask} "
"vor dem Vergleich.\"}}>%{mark.val}</var>}%{helper?, helper %{helper.inv?<var "
"data-tooltip=\"Vergleiche jeden helper außer "%{helper.name}""
"\">%{helper.val}</var>:<var data-tooltip=\"%{helper.name}\">%{helper.val}</"
"var>}}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:179
msgid "Initial Hash Size"
msgstr "Initiale Hash Größe"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:62
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:145
msgid "Input"
msgstr "Eingehend"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:291
msgid "Internal IP address"
msgstr "Interne IP-Adresse"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:296
msgid "Internal port"
msgstr "Interner Port"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286
msgid "Internal zone"
msgstr "Interne Zone"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:147
msgid "Intra zone forward"
msgstr ""
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:305
msgid "Invalid DSCP mark"
msgstr "Ungültige DSCP-Markierung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:373
msgid "Invalid limit value"
msgstr "Ungültiger Limit-Wert"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:46
msgid "Invalid set name"
msgstr "Falscher Setname"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383
msgid "Limit burst"
msgstr "Limit-Häufung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:293
msgid "Limit log messages"
msgstr "Protokollnachrichten limitieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349
msgid "Limit matching"
msgstr "Limitiere Vergleiche"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:79
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:96
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:74
msgid ""
"Limit matching to <var>%{limit.num}</var> packets per <var>%{limit.unit}</"
"var>%{limit.burst? burst <var>%{limit.burst}</var>}"
msgstr ""
"Limitiere Vergleiche auf <var>%{limit.num}</var> Pakete pro <var>%{limit."
"unit}</var>%{limit.burst? Häufung <var>%{limit.burst}</var>}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:169
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:244
msgid "Limited masquerading enabled"
msgstr "Eingeschränktes Masquerading aktiviert"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:350
msgid "Limits traffic matching to the specified rate."
msgstr "Limitiere Verkehrsvergleiche auf die angegebene Rate."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:310
msgid "Loopback source IP"
msgstr "Loopback Quell-IP"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:290
msgid "MASQUERADE - Automatically rewrite to outbound interface IP"
msgstr ""
"MASQUERADE - Automatisch auf IP-Adresse der ausgehenden Schnittstelle "
"umschreiben"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:174
msgid "MSS clamping"
msgstr "MSS Korrektur"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:161
msgid "Masquerading"
msgstr "NAT aktivieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:213
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:192
msgid "Match"
msgstr "Filter"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:263
msgid "Match DSCP"
msgstr "DSCP selektieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:292
msgid "Match ICMP type"
msgstr "Nach ICMP-Typ filtern"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:248
msgid "Match device"
msgstr "Gerät selektieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270
msgid "Match forwarded traffic directed at the given IP address."
msgstr "Selektiert an die angegebene IP-Adresse gerichteten Verkehr."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:278
msgid ""
"Match forwarded traffic directed at the given destination port or port range."
msgstr ""
"Selektiert an den angegeben Port oder Port-Bereich gerichteten Verkehr."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:253
msgid "Match forwarded traffic from this IP or range."
msgstr ""
"Selektiert weitergeleiteten Verkehr von dieser IP oder diesem IP-Bereich."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:261
msgid ""
"Match forwarded traffic originating from the given source port or port range."
msgstr ""
"Selektiert weitergeleiteten Verkehr vom angegebenem Quellport oder "
"Portbereich."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:325
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:445
msgid "Match helper"
msgstr "Helfer selektieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279
msgid ""
"Match incoming traffic directed at the given destination port or port range "
"on this host"
msgstr ""
"Eingehende Verbindungen filtern welche an den angegebenen Port oder "
"Portbereich auf dem lokalen Gerät gerichtet sind"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316
msgid "Match mark"
msgstr "Erfasse Markierung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:325
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:445
msgid "Match traffic using the specified connection tracking helper."
msgstr "Selektiere Verkehr welcher den angegebenen Tracking-Helfer benutzt."
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:319
msgid "Matches a specific firewall mark or a range of different marks."
msgstr ""
"Selektiert Verkehr mit einer spezifischen Firewall-Markierung oder einem "
"Bereich von Markierungen."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331
msgid "Matches forwarded traffic using the specified outbound network device."
msgstr ""
"Selektiert weitergeleiteten Verkehr welcher die angegebene "
"Netzwerkschnittstelle benutzt."
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:264
msgid "Matches traffic carrying the specified DSCP marking."
msgstr "Selektiere Verkehr welcher die angegebene DSCP-Markierung trägt."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:112
msgid "Max Entries"
msgstr "Maximale Einträge"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:171
msgid "Max Length"
msgstr "Maximale Länge"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:384
msgid ""
"Maximum initial number of packets to match: this number gets recharged by "
"one every time the limit specified above is not reached, up to this number."
msgstr ""
"Maximale initiale Menge von Paketen die selektiert werden. Die Nummer wird "
"jedes Mal erhöht, wenn das oben genannte Limit nicht erreicht wird, bis zur "
"hier angegeben Anzahl."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:480
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:353
msgid "Monday"
msgstr "Montag"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:490
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:363
msgid "Month Days"
msgstr "Monatstage"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:175
#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:44
msgid "NAT Rules"
msgstr "NAT-Regeln"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:173
msgid ""
"NAT rules allow fine grained control over the source IP to use for outbound "
"or forwarded traffic."
msgstr ""
"NAT-Regeln erlauben eine detaillierte Kontrolle über die verwendete Quell-IP-"
"Adresse für ausgehenden oder weitergeleiteten Verkehr."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:41
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:51
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:209
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:188
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123
msgid "Name"
msgstr "Name"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:165
msgid "Netmask"
msgstr "Netzmaske"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:274
msgid "Only match incoming traffic directed at the given IP address."
msgstr "Selektiert nur Traffic der an die angegebene IP-Adresse gerichtet ist."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255
msgid "Only match incoming traffic from these MACs."
msgstr "Selektiert nur Traffic von den angegebenen MAC-Adressen."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260
msgid "Only match incoming traffic from this IP or range."
msgstr "Selektiert nur Traffic vom angebenem Quell-IP-Adressbereich."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:265
msgid ""
"Only match incoming traffic originating from the given source port or port "
"range on the client host"
msgstr ""
"Nur eingehenden Datenverkehr, der vom angegebenen Quellport oder Portbereich "
"des Client-Host stammt, selektieren"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:252
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330
msgid "Outbound device"
msgstr "Ausgehende Schnittstelle"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:245
msgid "Outbound zone"
msgstr "Ausgehende Zone"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:63
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:146
msgid "Output"
msgstr "Ausgehend"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:74
msgid "Packet Field Match"
msgstr "Paket-Feld Übereinstimmung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:75
msgid ""
"Packet fields to match upon.<br />Syntax: <em>direction_datatype</em>. e.g.: "
"<code>src_port, dest_net</code>.<br />Directions: <code>src, dst</code>. "
"Datatypes: <code>ip, port, mac, net, set</code>.<br />Direction prefixes are "
"optional.<br />*Note: datatype <code>set</code> is unsupported in fw4."
msgstr ""
"Übereinstimmende Paketfelder.<br />Syntax: <em>direction_datatype</em>. e."
"g.: <code>src_port, dest_net</code>.<br />Richtung: <code>src, dst</code>. "
"Datentypen: <code>ip, port, mac, net, set</code>.<br />Richtungspräfix ist "
"optional.<br />*Hinweis: Datentyp <code>set</code> wird von fw4 nicht "
"unterstützt."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:349
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:342
msgid "Passes additional arguments to iptables. Use with care!"
msgstr ""
"Gibt zusätzliche Kommandozeilenargumente an iptables weiter. Mit Vorsicht "
"benutzen!"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:303
msgid ""
"Passing raw iptables arguments to source and destination traffic "
"classification rules allows to match packets based on other criteria than "
"interfaces or subnets. These options should be used with extreme care as "
"invalid values could render the firewall ruleset broken, completely exposing "
"all services."
msgstr ""
"Die Übergabe von rohen iptables-Argumenten an die Klassifizierungsregeln für "
"den Quell- und Zielverkehr ermöglicht es, Pakete abzugleichen, die auf "
"anderen Kriterien als Schnittstellen oder Subnetzen basieren. Diese Optionen "
"sollten mit äußerster Vorsicht verwendet werden, da ungültige Werte dazu "
"führen können, dass der Firewall-Regelsatz außer Funktion gesetzt wird und "
"alle Dienste vollständig offengelegt werden."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:187
msgid "Path to file of CIDRs, subnets, host IPs, etc.<br />"
msgstr "Pfad zu Datei mit CIDRs, Subnetzen, Host IPs, etc.<br />"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:155
#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:26
msgid "Port Forwards"
msgstr "Portweiterleitungen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:153
msgid ""
"Port forwarding allows remote computers on the Internet to connect to a "
"specific computer or service within the private LAN."
msgstr ""
"Portweiterleitungen ermöglichen es entfernten Rechnern im Internet auf "
"bestimmte Computer oder Dienste im lokalen LAN zuzugreifen."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:157
msgid "Port range"
msgstr "Port-Bereich"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:236
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:241
msgid "Protocol"
msgstr "Protokoll"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:297
msgid ""
"Redirect matched incoming traffic to the given port on the internal host"
msgstr ""
"Gefilterte Verbindungen an den angegeben Port auf dem internen Host "
"weiterleiten"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:292
msgid "Redirect matched incoming traffic to the specified internal host"
msgstr "Gefilterte Verbindungen an den angegeben internen Host weiterleiten"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:121
msgid "Refer To External Set"
msgstr "Verweis auf externes Set"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:319
msgid "Reflection zones"
msgstr "Reflection-Zonen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:89
msgid "Requires hardware NAT support."
msgstr "Erfordert Hardware-NAT-Unterstützung."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:266
msgid "Restrict Masquerading to given destination subnets"
msgstr "NAT auf die angegebenen Ziel-Subnetze beschränken"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:255
msgid "Restrict Masquerading to given source subnets"
msgstr "NAT auf die angegebenen Quell-Subnetze beschränken"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:276
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:249
msgid "Restrict to address family"
msgstr "Auf Adressfamilie beschränken"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:296
msgid "Rewrite IP address"
msgstr "IP-Adresse umschreiben"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:297
msgid "Rewrite matched traffic to the specified source IP address."
msgstr "Selektierten Verkehr auf die angegebene Quell-IP-Adresse umschreiben."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311
msgid "Rewrite matched traffic to the specified source port or port range."
msgstr ""
"Selektierten Verkehr auf den angegebenen Quell-Port bzw. Port-Bereich "
"umschreiben."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310
msgid "Rewrite port"
msgstr "Port umschreiben"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:76
msgid "Routing/NAT Offloading"
msgstr "Routing/NAT-Beschleunigung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:289
msgid "SNAT - Rewrite to specific source IP or port"
msgstr "SNAT - Umschreiben auf spezifische Quell-IP oder Port"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:358
msgid "Saturday"
msgstr "Samstag"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316
msgid "Set mark"
msgstr "Markierung setzen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:318
msgid ""
"Set the given mark value on established connections. Format is value[/mask]. "
"If a mask is specified then only those bits set in the mask are modified."
msgstr ""
"Setzt die angegebenen Markierung auf etablierten Verbindungen. Das Format "
"ist Wert[/Maske]. Wenn eine Maske spezifiziert ist, werden nur die "
"korrespondierenden Bits des Markierungswertes verändert."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:84
msgid "Software based offloading for routing/NAT"
msgstr "Softwarebasierte Auslagerung von Routing/NAT"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:83
msgid "Software flow offloading"
msgstr "Beschleunigte Flusskontrolle"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259
msgid "Source IP address"
msgstr "Quell-IP-Adresse"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:254
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:385
msgid "Source MAC address"
msgstr "Quell-MAC-Adresse"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252
msgid "Source address"
msgstr "Quelladresse"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:264
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:260
msgid "Source port"
msgstr "Quellport"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371
msgid "Source zone"
msgstr "Quell-Zone"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269
msgid ""
"Specifies whether to tie this traffic rule to a specific inbound or outbound "
"network device."
msgstr ""
"Gibt an, ob diese Verkehrsregel an eine spezifische Eingangs- oder "
"Ausgangsschnittstelle gebunden wird."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:310
msgid ""
"Specifies whether to use the external or the internal IP address for "
"reflected traffic."
msgstr ""
"Gibt an, ob die externe oder die interne IP-Adresse für reflektierten "
"Verkehr genutzt wird."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:509
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:382
msgid "Start Date (yyyy-mm-dd)"
msgstr "Startdatum (JJJJ-MM-TT)"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:501
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:374
msgid "Start Time (hh:mm:ss)"
msgstr "Startzeit (hh:mm:ss)"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:513
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:386
msgid "Stop Date (yyyy-mm-dd)"
msgstr "Enddatum (JJJJ-MM-TT)"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:505
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:378
msgid "Stop Time (hh:mm:ss)"
msgstr "Stoppzeit (hh:mm:ss)"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:129
msgid "Storage Method"
msgstr "Speichermethode"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:479
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352
msgid "Sunday"
msgstr "Sonntag"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:694
msgid ""
"The existing firewall configuration needs to be changed for LuCI to function "
"properly."
msgstr ""
"Die existierende Firewall-Konfiguration muss geändert werden damit LuCI "
"richtig funktioniert."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39
msgid ""
"The firewall creates zones over your network interfaces to control network "
"traffic flow."
msgstr ""
"Die Firewall erstellt Netzwerkzonen über bestimmte Netzwerkschnittstellen um "
"den Netzwerk-Traffic zu trennen."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:221
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:334
msgid ""
"The options below control the forwarding policies between this zone (%s) and "
"other zones. <em>Destination zones</em> cover forwarded traffic "
"<strong>originating from %q</strong>. <em>Source zones</em> match forwarded "
"traffic from other zones <strong>targeted at %q</strong>. The forwarding "
"rule is <em>unidirectional</em>, e.g. a forward from lan to wan does "
"<em>not</em> imply a permission to forward from wan to lan as well."
msgstr ""
"Die untenstehenden Optionen regeln die Verfahrensweisen für Traffic zwischen "
"dieser Zone (%s) und anderen Zonen. <em>Ziel-Zonen</em> decken "
"weitergeleiteten Traffic <strong>von %q</strong> ab. <em>Quell-Zonen</em> "
"treffen auf weitergeleiteten Traffic aus anderen Zonen zu, welcher "
"<strong>an %q gerichtet</strong> ist. Die Weiterleitung gilt nur in eine "
"Richtung, d. h. eine erlaubte Weiterleitung von LAN nach WAN bedeutet "
"<em>nicht</em> zusätzlich die Erlaubnis, auch von WAN nach LAN "
"weiterzuleiten."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:119
msgid ""
"This section defines common properties of %q. The <em>input</em> and "
"<em>output</em> options set the default policies for traffic entering and "
"leaving this zone while the <em>forward</em> option describes the policy for "
"forwarded traffic between different networks within the zone. <em>Covered "
"networks</em> specifies which available networks are members of this zone."
msgstr ""
"Dieser Abschnitt definiert allgemeine Eigenschaften der %q-Zone. Die "
"<em>input</em>- und <em>output</em>-Optionen definieren die Regeln für "
"Datenverkehr, der in diese Zone eintritt oder diese verlässt. <em>forward</"
"em> trifft auf Datenverkehr zwischen verschiedenen Schnittstellen innerhalb "
"dieser Zone zu. <em>Covered networks</em> definiert welche der verfügbaren "
"Netzwerke zu dieser Zone gehören."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:483
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356
msgid "Thursday"
msgstr "Donnerstag"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:183
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:182
msgid "Time Restrictions"
msgstr "Zeitbeschränkungen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:517
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:390
msgid "Time in UTC"
msgstr "Zeit ist UTC"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:243
msgid "Time restrictions are enabled for this rule"
msgstr "Zeitbeschränkungen sind aktiviert für diese Regel"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:195
msgid "Timeout"
msgstr "Zeitüberschreitung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:77
msgid ""
"To %{dest}%{dest_device?, interface <var>%{dest_device}</var>}%{dest_ip?, IP "
"%{dest_ip#%{next?, }<var%{item.inv? data-tooltip=\"Match IP addresses except "
"%{item.val}.\"}>%{item.ival}</var>}}%{dest_port?, port %{dest_port#%{next?, }"
"<var%{item.inv? data-tooltip=\"Match ports except %{item.val}.\"}>%{item."
"ival}</var>}}"
msgstr ""
"Nach %{dest}%{dest_device?, Schnittstelle <var>%{dest_device}</"
"var>}%{dest_ip?, IP %{dest_ip#%{next?, }<var%{item.inv? data-"
"tooltip=\"Selektiert IP-Adressen außer %{item.val}.\"}>%{item.ival}</"
"var>}}%{dest_port?, Port %{dest_port#%{next?, }<var%{item.inv? data-"
"tooltip=\"Selektiert Ports außer %{item.val}.\"}>%{item.ival}</var>}}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:55
msgid ""
"To %{dest}%{dest_device?, via interface <var>%{dest_device}</"
"var>}%{dest_ip?, IP %{dest_ip#%{next?, }<var%{item.inv? data-tooltip=\"Match "
"IP addresses except %{item.val}.\"}>%{item.ival}</var>}}%{dest_port?, port "
"%{dest_port#%{next?, }<var%{item.inv? data-tooltip=\"Match ports except "
"%{item.val}.\"}>%{item.ival}</var>}}"
msgstr ""
"Nach %{dest}%{dest_device?, über Schnittstelle <var>%{dest_device}</"
"var>}%{dest_ip?, IP %{dest_ip#%{next?, }<var%{item.inv? data-"
"tooltip=\"Selektiert IP-Adressen außer %{item.val}.\"}>%{item.ival}</"
"var>}}%{dest_port?, Port %{dest_port#%{next?, }<var%{item.inv? data-"
"tooltip=\"Selektiert Ports außer %{item.val}.\"}>%{item.ival}</var>}}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:61
msgid ""
"To %{dest}%{dest_ip?, IP %{dest_ip#%{next?, }<var%{item.inv? data-"
"tooltip=\"Match IP addresses except %{item.val}.\"}>%{item.ival}</"
"var>}}%{dest_port?, port %{dest_port#%{next?, }<var%{item.inv? data-"
"tooltip=\"Match ports except %{item.val}.\"}>%{item.ival}</var>}}"
msgstr ""
"Nach %{dest}%{dest_ip?, IP %{dest_ip#%{next?, }<var%{item.inv? data-"
"tooltip=\"Selektiert IP-Adressen außer %{item.val}.\"}>%{item.ival}</"
"var>}}%{dest_port?, Port %{dest_port#%{next?, }<var%{item.inv? data-"
"tooltip=\"Selektiert Ports außer %{item.val}.\"}>%{item.ival}</var>}}"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438
msgid "Tracking helper"
msgstr "Tracking-Helfer"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:176
#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:35
msgid "Traffic Rules"
msgstr "Traffic-Regeln"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:174
msgid ""
"Traffic rules define policies for packets traveling between different zones, "
"for example to reject traffic between certain hosts or to open WAN ports on "
"the router."
msgstr ""
"Traffic-Regeln bestimmen den Fluss der Pakete zwischen verschiedenen Zonen, "
"zum Beispiel um Traffic zwischen bestimmten Rechnern zu unterbinden oder um "
"WAN-Ports auf dem Router zu öffnen."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:354
msgid "Tuesday"
msgstr "Dienstag"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js:19
msgid "Unable to save contents: %s"
msgstr "Inhalt kann nicht gespeichert werden: %s"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:196
msgid ""
"Unit: seconds. Default <code>0</code> means the entry is added permanently "
"to the set.<br />Max: 2147483 seconds."
msgstr ""
"Einheit: Sekunden. Voreinstellung <code>0</code> bedeutet der Eintrag wird "
"dauerhaft hinzugefügt.<br />Maximaler Wert: 2147483 Sekunden."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:340
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460
msgid "Unknown or not installed conntrack helper \"%s\""
msgstr "Unbekannter oder nicht installierter Tracking-Helfer \"%s\""
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:185
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:189
msgid "Unnamed NAT"
msgstr "Unbenannte NAT-Regel"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:168
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:183
msgid "Unnamed forward"
msgstr "Unbenannte Portweiterleitung"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:190
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210
msgid "Unnamed rule"
msgstr "Unbennante Regel"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:56
msgid "Unnamed set"
msgstr "Unbenanntes Set"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:124
msgid "Unnamed zone"
msgstr "Unbenannte Zone"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:597
msgid "Unrecognized protocol"
msgstr "Unbekanntes Protokoll"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:695
msgid ""
"Upon pressing \"Continue\", \"redirect\" sections with target \"SNAT\" will "
"be converted to \"nat\" sections and the firewall will be restarted to apply "
"the updated configuration."
msgstr ""
"Beim Fortfahren werden \"redirect\" Sektionen mit \"SNAT\" Aktion in \"nat\" "
"Sektionen konvertiert und die Firewall wird neu gestartet um die geänderte "
"Konfiguration anzuwenden."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:314
msgid "Use external IP address"
msgstr "Externe IP-Adresse nutzen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:313
msgid "Use internal IP address"
msgstr "Interne IP-Adresse nutzen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:246
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321
msgid "Use ipset"
msgstr "Benutze ipset"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:225
msgid ""
"Use this option to classify zone traffic by raw, non-<em>uci</em> managed "
"network devices."
msgstr ""
"Diese Option verwenden, um den Zonenverkehr nach rohen, nicht <em>uci</em>-"
"verwalteten Netzwerkgeräten zu klassifizieren."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:230
msgid ""
"Use this option to classify zone traffic by source or destination subnet "
"instead of networks or devices."
msgstr ""
"Diese Option verwenden, um den Zonenverkehr nach Quell- oder Zielsubnetz "
"anstelle von Netzwerken oder Geräten zu klassifizieren."
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:331
msgid "Valid firewall mark required"
msgstr "Gültige Firewall-Markierung benötigt"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:482
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:355
msgid "Wednesday"
msgstr "Mittwoch"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:474
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:347
msgid "Week Days"
msgstr "Wochentage"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:419
msgid "XOR firewall mark"
msgstr "Firewallmarkierung XOR-en"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316
msgid "XOR mark"
msgstr "Markierungen XOR-en"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:28
msgid "Your device does not run firewall4."
msgstr "Firewall4 ist auf Ihrem Gerät nicht aktiviert."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:26
msgid "Your device runs firewall4."
msgstr "Firewall4 ist auf Ihrem Gerät aktiviert."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:137
msgid "Zone ⇒ Forwardings"
msgstr "Zone ⇒ Weiterleitungen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:95
msgid "Zones"
msgstr "Zonen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:319
msgid ""
"Zones from which reflection rules shall be created. If unset, only the "
"destination zone is used."
msgstr ""
"Zonen, aus denen Reflection-Regeln erstellt werden sollen. Wenn nicht "
"festgelegt, wird nur die Zielzone verwendet."
# Die richtige Übersetzung von ACCEPT im Firewallkontext ist nicht "Annehmen" sondern "Zulassen". Man kann ja keinen
# ausgehenden Traffic annehmen.
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:414
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:70
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:153
msgid "accept"
msgstr "zulassen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:268
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:463
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:486
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:269
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:300
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:327
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:406
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:440
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:281
msgid "any"
msgstr "beliebig"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:86
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:65
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:78
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:46
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:56
msgid "any zone"
msgstr "beliebige Zone"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:297
msgid "any/all"
msgstr "beliebig/alle"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418
msgid "apply firewall mark"
msgstr "Firewallmarkierung anwenden"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:417
msgid "assign conntrack helper"
msgstr "Tracking-Helfer zuordnen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:193
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:221
msgid "automatic"
msgstr "Automatisch"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:130
msgid "bitmap"
msgstr "Bitmap"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:136
msgid "bitmap is ipv4 only"
msgstr "Bitmap ist nur IPv4"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:89
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:67
msgid "day"
msgstr "Tag"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:92
msgid "dest_ip: Destination IP"
msgstr "dest_ip: Ziel IP"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:94
msgid "dest_mac: Destination MAC addr"
msgstr "dest_mac: Ziel MAC addr"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:95
msgid "dest_net: Destination (sub)net"
msgstr "dest_net: Ziel (Sub)netz"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:93
msgid "dest_port: Destination Port"
msgstr "dest_port: Ziel Port"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:97
msgid "dest_set: Destination ipset*"
msgstr "dest_set: Ziel ipset*"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:314
msgid "do not rewrite"
msgstr "nicht umschreiben"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416
msgid "don't track"
msgstr "nicht verfolgen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:413
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:69
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:152
msgid "drop"
msgstr "verwerfen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:21
msgid ""
"firewall4 supports referencing and creating IP sets to simplify matching of "
"large address lists without the need to create one rule per item to match. "
"Port ranges in ipsets are unsupported by firewall4.<br />"
msgstr ""
"Firewall4 unterstützt die Referenzierung und Erzeugung von IP sets, um die "
"Übereinstimmung mit großen Adresslisten zu vereinfachen, ohne dass für jede "
"Adresse eine eigene Regel erzeugt werden muss. Portbereiche in ipsets werden "
"von Firewall4 nicht unterstützt.<br />"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:158
msgid "fromport-toport"
msgstr "vonPort-bisPort"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:131
msgid "hash"
msgstr "Hash"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:89
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:67
msgid "hour"
msgstr "Stunde"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:80
msgid "ip: IP addr"
msgstr "ip: IP-Adr"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:152
msgid "ip[/cidr]<br />"
msgstr "ip[/cidr]<br />"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:144
msgid "ip[/cidr]<br />For use with Match datatypes: <code>*_ip</code>."
msgstr ""
"ip[/cidr]<br />Zur Verwendung mit Übereinstimmungs-Datentypen: <code>*_ip</"
"code>."
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:69
msgid "ipv4"
msgstr "ipv4"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:132
msgid "list"
msgstr "Liste"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:82
msgid "mac: MAC addr"
msgstr "mac: MAC-Addr"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:107
msgid "macaddr|ip[/cidr]<br />"
msgstr "macAdr|ip[/cidr]<br />"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:89
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:67
msgid "minute"
msgstr "Minute"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:83
msgid "net: (sub)net"
msgstr "net: (Sub-)Netz"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:81
msgid "port: Port"
msgstr "port: Port"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:415
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:68
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:151
msgid "reject"
msgstr "zurückweisen"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:89
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:67
msgid "second"
msgstr "Sekunde"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:85
msgid "set: ipset*"
msgstr "set: ipset*"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:91
msgid "src_Set: Source ipset*"
msgstr "src_Set: Quell-ipset*"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:86
msgid "src_ip: Source IP"
msgstr "src_ip: Quell-IP"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:88
msgid "src_mac: Source MAC addr"
msgstr "src_mac: Quell-MAC-Adr"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:89
msgid "src_net: Source (sub)net"
msgstr "src_net: Quell-(sub)netz"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:87
msgid "src_port: Source Port"
msgstr "src_port: Quell-Port"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:62
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:86
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:65
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:78
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:56
msgid "this device"
msgstr "dieses Gerät"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:118
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:220
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:333
msgid "this new zone"
msgstr "diese neue Zone"
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:354
msgid "unlimited"
msgstr "unlimitiert"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:250
msgid "unspecified"
msgstr "unspezifiziert"
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:113
#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/ipsets.js:172
msgid "up to 65536 entries."
msgstr "bis zu 65536 Einträgen."
#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:339
msgid "valid firewall mark"
msgstr "gültige Firewall-Markierung"
#~ msgid ""
#~ "Enable network address and port translation (NAT or NAPT) for outbound "
#~ "traffic on this zone. This is typically enabled on the <em>wan</em> zone."
#~ msgstr ""
#~ "Ativar a conversão de endereços e portas de rede (NAT ou NAPT) para o "
#~ "tráfego de saída nessa zona. Isto é normalmente ativado na zona <em>wan</"
#~ "em>."
#~ msgid ""
#~ "Forwarded IPv4%{proto?, protocol %{proto#%{next?, }<var>%{item.name}</"
#~ "var>}}%{mark?, mark <var%{mark.inv? data-tooltip=\"Match fwmarks except "
#~ "%{mark.num}%{mark.mask? with mask %{mark.mask}}.\":%{mark.mask? data-"
#~ "tooltip=\"Mask fwmark value with %{mark.mask} before compare.\"}}>%{mark."
#~ "val}</var>}"
#~ msgstr ""
#~ "Weitergeleiteter IPv4-Verkehr%{proto?, Protokoll %{proto#%{next?, }"
#~ "<var>%{item.name}</var>}}%{mark?, Markierung <var%{mark.inv? data-"
#~ "tooltip=\"Selektiert Markierungen außer %{mark.num}%{mark.mask? mit Maske "
#~ "%{mark.mask}}.\":%{mark.mask? data-tooltip=\"Maskiere Firewall-Markierung "
#~ "mit %{mark.mask} vorm Vergleich.\"}}>%{mark.val}</var>}"
#~ msgid ""
#~ "Incoming IPv4%{proto?, protocol %{proto#%{next?, }%{item.types?<var "
#~ "class=\"cbi-tooltip-container\">%{item.name}<span class=\"cbi-"
#~ "tooltip\">ICMP with types %{item.types#%{next?, }<var>%{item}</var>}</"
#~ "span></var>:<var>%{item.name}</var>}}}%{mark?, mark <var%{mark.inv? data-"
#~ "tooltip=\"Match fwmarks except %{mark.num}%{mark.mask? with mask %{mark."
#~ "mask}}.\":%{mark.mask? data-tooltip=\"Mask fwmark value with %{mark.mask} "
#~ "before compare.\"}}>%{mark.val}</var>}%{helper?, helper %{helper.inv?<var "
#~ "data-tooltip=\"Match any helper except "%{helper.name}""
#~ "\">%{helper.val}</var>:<var data-tooltip=\"%{helper.name}\">%{helper.val}"
#~ "</var>}}"
#~ msgstr ""
#~ "Eingehender IPv4-Verkehr%{proto?, Protokoll %{proto#%{next?, }%{item."
#~ "types?<var class=\"cbi-tooltip-container\">%{item.name}<span class=\"cbi-"
#~ "tooltip\">ICMP mit Typen %{item.types#%{next?, }<var>%{item}</var>}</"
#~ "span></var>:<var>%{item.name}</var>}}}%{mark?, mark <var%{mark.inv? data-"
#~ "tooltip=\"Selektiert Firewall-Markierungen außer %{mark.num}%{mark.mask? "
#~ "mit Maske %{mark.mask}}.\":%{mark.mask? data-tooltip=\"Maskiere Firewall-"
#~ "Markierung mit %{mark.mask} vorm Vergleich.\"}}>%{mark.val}</"
#~ "var>}%{helper?, Helfer %{helper.inv?<var data-tooltip=\"Selektiert "
#~ "Tracking-Helfer außer "%{helper.name}"\">%{helper.val}</var>:"
#~ "<var data-tooltip=\"%{helper.name}\">%{helper.val}</var>}}"
|