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
|
msgid ""
msgstr ""
"Project-Id-Version: luci-app-ddns 2.4.2-1\n"
"POT-Creation-Date: 2016-09-25 10:43+0200\n"
"PO-Revision-Date: 2026-04-21 11:00+0000\n"
"Last-Translator: Werner Schleifer <werner.schleifer@gmail.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsddns/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.17.1-dev\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-Basepath: .\n"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
msgid "\"../\" not allowed in path for Security Reason."
msgstr "\"../\" ist aus Sicherheitsgründen nicht als Pfad erlaubt."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
msgid "A.k.a. the TOKEN at e.g. afraid.org"
msgstr "Bekannt als der TOKEN, auf z.B. afraid.org"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:458
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
msgid "Add new services..."
msgstr "Neue Dienste hinzufügen..."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607
msgid "Advanced Settings"
msgstr "Erweiterte Einstellungen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
msgid "Allow non-public IPs"
msgstr "Erlaube Nicht-öffentliche IPs"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903
msgid "Bind Network"
msgstr "Bind-Netzwerk"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332
msgid "Binding to a specific network not supported"
msgstr "'Bind' an ein bestimmtes Netzwerk wird nicht unterstützt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
msgid ""
"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
"when sending requests to the DNS server!"
msgstr ""
"BusyBox's nslookup und hostip unterstützen es nicht das TCP-Protokoll für "
"DNS Anfragen anstelle des standardmäßigen UDP-Protokolls zu verwenden!"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
msgid ""
"BusyBox's nslookup in the current compiled version does not handle given DNS "
"Servers correctly!"
msgstr ""
"BusyBox nslookup in der aktuellen compilierten Version kann gegebenen DNS-"
"Server nicht korrekt verarbeiten!"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
msgid "CA cert bundle file"
msgstr "Pfad zu CA-Zertifikaten"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
msgid ""
"CA certificate bundle file that will be used to download services data. Set "
"IGNORE to skip certificate validation."
msgstr ""
"Ca Certs Pfad, der für das Herunterladen von Servicedaten verwendet werden "
"soll. Stellen Sie IGNORE ein, um die Zertifikatsüberprüfung zu überspringen."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
msgid "Cancel"
msgstr "Abbrechen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981
msgid "Check Interval"
msgstr "Kontrollintervall"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996
msgid "Check Unit"
msgstr "Einheit prüfen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27
msgid "Configuration"
msgstr "Konfiguration"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1134
msgid "Configuration Error"
msgstr "Konfigurations-Fehler"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
msgid "Contains Log files for each running section."
msgstr "Verzeichnis enthält für jeden aktiven Abschnitt Log-Dateien."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
msgid "Contains PID and other status information for each running section."
msgstr ""
"Verzeichnis enthält für jeden aktiven Abschnitt PID und andere "
"Statusinformationen."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
msgid "Create service"
msgstr "Dienst erstellen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:405
msgid "Current setting:"
msgstr "Aktuelle Einstellungen:"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:209
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:276
msgid "Currently DDNS updates are not started at boot or on interface events."
msgstr ""
"Zur Zeit werden DDNS-Updates weder bei Systemstart, noch bei Schnittstellen-"
"Events gestartet."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:727
msgid "Custom update script for updating your DDNS Provider."
msgstr "Update-Skript um Aktualisierungen an Ihren DDNS Anbieter zu senden."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
msgid "Custom update-URL"
msgstr "Eigene Update-URL"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:726
msgid "Custom update-script"
msgstr "Eigenes Update-Skript"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:284
msgid "DDNS"
msgstr "DDNS"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:279
msgid "DDNS Autostart disabled"
msgstr "DDNS Autostart deaktiviert"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:279
msgid "DDNS Autostart enabled"
msgstr "DDNS-Autostart aktiviert"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640
msgid "DDNS Service provider"
msgstr "DDNS-Dienstanbieter"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
msgid "DDns Service"
msgstr "DDNS-Dienst"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
msgid "DNS requests via TCP not supported"
msgstr "DNS Anfragen über TCP nicht unterstützt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:924
msgid "DNS-Server"
msgstr "DNS-Server"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
msgid "Date format"
msgstr "Datumsformat"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853
msgid "Defines the Web page to read systems IP-Address from."
msgstr "Bestimmt die Webseite von der die IP-Adresse des Systems gelesen wird."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:863
msgid "Defines the interface to read systems IP-Address from"
msgstr ""
"Definiert die Schnittstelle, von der die aktuelle IP-Adresse des Systems "
"gelesen wird"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:845
msgid "Defines the network to read systems IP-Address from"
msgstr ""
"Definiert das Netzwerk, von dem die IP-Adresse des Systems gelesen wird"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18
msgid "Disabled"
msgstr "Deaktiviert"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
msgid "Domain"
msgstr "Domäne"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:260
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7
#: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3
msgid "Dynamic DNS"
msgstr "Dynamisches DNS"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267
msgid "Dynamic DNS Version"
msgstr "Dynamic-DNS-Version"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:545
msgid "Edit"
msgstr "Bearbeitung"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:783
msgid "Enable secure communication with DDNS provider"
msgstr "Aktiviert sichere Kommunikation mit dem DDNS Anbieter"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1140
msgid "Enabled"
msgstr "Aktiviert"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
msgid "Error"
msgstr "Fehler"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1040
msgid "Error Max Retry Counter"
msgstr "Höchstwiederholungszähler bei Fehlern"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1050
msgid "Error Retry Interval"
msgstr "Wiederholungsintervall bei Fehler"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:877
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887
msgid "Event Network"
msgstr "Ereignis Netzwerk"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
msgid "Example for IPv4"
msgstr "Beispiel für IPv4"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
msgid "Example for IPv6"
msgstr "Beispiel für IPv6"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
msgid "File"
msgstr "Datei"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
msgid "Follow instructions found on their WEB page."
msgstr "Folge den Instruktionen auf ihrer Webseite."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
msgid "For supported codes look here"
msgstr "Unterstützte Kodierungen finden Sie hier"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:915
msgid "Force IP Version"
msgstr "Erzwinge IP-Version"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1005
msgid "Force Interval"
msgstr "Erzwungene Aktualisierung"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:936
msgid "Force TCP on DNS"
msgstr "Erzwinge TCP bei DNS-Anfragen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1031
msgid "Force Unit"
msgstr "Erzwinge Abschnitt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
msgid "Format"
msgstr "Format"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927
msgid "Format: IP or FQDN"
msgstr "Format: IP-Adresse oder FQDN"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
msgid ""
"GNU Wget will use the IP of given network, cURL will use the physical "
"interface."
msgstr ""
"GNU Wget verwendet die IP des gewählten Netzwerkes; cURL verwendet die "
"physikalische Schnittstelle."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265
msgid "Global Settings"
msgstr "Globale Einstellungen"
#: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3
msgid "Grant access to ddns procedures"
msgstr "Zugriff zu ddns Abläufen gewähren"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320
msgid "HTTPS not supported"
msgstr "HTTPS nicht unterstützt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
msgid "Hostname/FQDN to validate, whether an IP update is necessary"
msgstr ""
"Hostname/FQDN um zu überprüfen, ob eine Aktualisierung stattgefunden hat "
"oder notwendig ist"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806
msgid "IP address source"
msgstr "IP-Adressquelle"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:503
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
msgid "IP address version"
msgstr "IP-Adressversion"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634
msgid "IPv4-Address"
msgstr "IPv4-Adresse"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
msgid "IPv6 address must be given in square brackets"
msgstr "Eine IPv6 Adresse muss in eckigen Klammern angegeben werden"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
msgid "IPv6 is not supported by this system"
msgstr "IPv6 wird von diesem System derzeit nicht (voll) unterstützt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
msgid "IPv6 not supported"
msgstr "IPv6 nicht unterstützt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:636
msgid "IPv6-Address"
msgstr "IPv6-Adresse"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436
msgid ""
"If Wget and cURL package are installed, Wget is used for communication by "
"default."
msgstr ""
"Falls die Pakete Wget und cURL installiert sind, wird standardmäßig Wget für "
"die Kommunikation verwendet."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
msgid "If this service section is disabled it will not be started."
msgstr ""
"Wenn dieser Service-Abschnitt deaktiviert ist, konnte es nicht gestartet "
"werden."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
msgid "If using secure communication you should verify server certificates!"
msgstr ""
"Wenn Sie sichere Kommunikation verwenden, sollten Sie Serverzertifikate "
"überprüfen!"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
msgid ""
"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
msgstr ""
"In einigen Versionen von OpenWrt wurde cURL/libcurl ohne Proxy Unterstützung "
"compiliert."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
msgid "Info"
msgstr "Info"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264
msgid "Information"
msgstr "Informationen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
msgid ""
"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
"TCP for DNS requests."
msgstr ""
"Sie sollten das Programmpakete 'bind-host' oder 'knot-host' oder 'drill' für "
"DNS Anfragen installieren."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
msgid ""
"Install 'ca-certificates' package or needed certificates by hand into /etc/"
"ssl/certs default directory"
msgstr ""
"Installieren Sie das 'ca-certificates' Paket oder die benötigten Zertifikate "
"von Hand in das Standardverzeichnis /etc/ssl/certs"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:670
msgid "Install Service"
msgstr "Service installieren"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:812
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
msgid "Interface"
msgstr "Schnittstelle"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006
msgid "Interval to force an update at the DDNS Provider"
msgstr "Intervall für das Senden von zwangsmässigen Updates an DDNS Provider"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
msgid "Interval unit for forced updates sent to DDNS Provider."
msgstr "Intervall für ein Zwangsupdate des DDNS-Eintrags"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:997
msgid "Interval unit to check for changed IP"
msgstr "Intervalleinheit zur Überprüfung auf geänderte IP"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1145
msgid "Last Update"
msgstr "Letzte Aktualisierung"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:609
msgid "Log File Viewer"
msgstr "Protokolldateibetrachter"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
msgid "Log directory"
msgstr "Protokollverzeichnis"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
msgid "Log length"
msgstr "Protokolllänge"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
msgid "Log to file"
msgstr "Protokoll in Datei schreiben"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:957
msgid "Log to syslog"
msgstr "Ins Syslog protokollieren"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1130
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29
msgid "Lookup Hostname"
msgstr "Hostname nachschlagen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807
msgid "Method used to determine the system IP-Address to send in updates"
msgstr "Methode zur Bestimmung der System-IP-Adresse zum Senden von Updates"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:491
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124
msgid "Name"
msgstr "Name"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
msgid ""
"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
"for communication."
msgstr ""
"Weder GNU Wget mit SSL noch cURL sind installiert um ein Netzwerk zur "
"Kommunikation festzulegen."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
msgid ""
"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
"via HTTPS protocol."
msgstr ""
"Weder GNU Wget mit SSL noch cURL sind installiert um sichere "
"Aktualisierungen über HTTPS Protokoll zu unterstützen."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
msgid "Neither from LuCI interface nor from console."
msgstr "Weder vom LuCI interface noch von der Konsole."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:810
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31
msgid "Network"
msgstr "Netzwerk"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906
msgid "Network on which the ddns-updater scripts will be started"
msgstr "Netzwerk auf dem die ddns-updater Skripte starten werden"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:228
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1149
msgid "Never"
msgstr "Niemals"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:494
msgid "New DDns Service…"
msgstr "Neuer DDns-Dienst…"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1145
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28
msgid "Next Update"
msgstr "Nächste Aktualisierung"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1145
msgid "Next Verify"
msgstr "Nächste Überprüfung"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
msgid "No Data"
msgstr "Keine Daten"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
msgid "No certificates found"
msgstr "Keine Zertifikate gefunden"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962
msgid "No logging"
msgstr "Keine Protokollierung"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
msgid "Non-public and by default blocked IPs"
msgstr "Nicht-öffentliche und standardmäßig blockierte IPs"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
msgid "Not Running"
msgstr "Angehalten"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:964
msgid "Notice"
msgstr "Hinweis"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
msgid "Number of last lines stored in log files"
msgstr ""
"Anzahl der letzten Zeilen, die in der Protokolldatei gespeichert werden"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:916
msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
msgstr ""
"OPTIONAL: Erzwingt die Verwendung einer reinen IPv4/IPv6 Kommunikation."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:937
msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
msgstr ""
"OPTIONAL: Erzwingt die Verwendung von TCP anstelle von UDP bei DNS Anfragen."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:904
msgid "OPTIONAL: Network to use for communication"
msgstr "OPTIONAL: Netzwerk, das zur Kommunikation verwendet werden soll"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946
msgid "OPTIONAL: Proxy-Server for detection and updates."
msgstr "OPTIONAL: Proxy-Server für Adresserkennung und Aktualisierungen."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:925
msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
msgstr ""
"OPTIONAL: Ersetzt den voreingestellten DNS-Server um die 'Registrierte IP' "
"zu ermitteln."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1041
msgid ""
"On Error the script will stop execution after the given number of retries."
msgstr ""
"Bei einem Fehler bricht das Skript die Ausführung nach einer bestimmten "
"Anzahl von Wiederholungsversuchen ab."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
msgid "Optional Encoded Parameter"
msgstr "Optionaler codierten Parameter"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
msgid "Optional Parameter"
msgstr "Optionaler Parameter"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:770
msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
msgstr "Optional: Ersetzt [PARAMENC] in der Update-URL (URL-codiert)"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
msgstr "Optional: Ersetzt [PARAMENC] in der Update-URL (NICHT URL-codiert)"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945
msgid "PROXY-Server"
msgstr "Proxy-Server"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
msgid "Password"
msgstr "Passwort"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788
msgid "Path to CA-Certificate"
msgstr "Pfad zum CA-Zertifikat"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:312
msgid ""
"Please follow the instructions on OpenWrt's homepage to enable IPv6 support"
msgstr ""
"Bitte den Anweisungen auf der OpenWrt-Homepage folgen, um IPv6-Unterstützung "
"zu aktivieren"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1086
msgid "Please press [Read] button"
msgstr "Bitte Protokolldatei einlesen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
msgid "Provide either an Update Script OR an Update URL"
msgstr "Update-Skript oder Update-URL hier einfügen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1069
msgid "Read / Reread log file"
msgstr "Protokolldatei (neu) einlesen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
msgid "Really switch service?"
msgstr "Den Dienst wirklich wechseln?"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1130
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30
msgid "Registered IP"
msgstr "Registrierte IP"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
msgid "Reload"
msgstr "Neu laden"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
msgid "Reload this service"
msgstr "Diesen Service neu laden"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:749
msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
msgstr "Ersetzt [DOMAIN] in Update-URL (URL-verschlüsselt)"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761
msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
msgstr "Ersetzt [PASSWORD] in der Update-URL (URL-codiert)"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755
msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
msgstr "Ersetzt [USERNAME] in der Update-URL (URL-codiert)"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:290
msgid "Restart DDns"
msgstr "DDns neustarten"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
msgid "Retry Unit"
msgstr "Abschnitt erneut versuchen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17
msgid "Run once"
msgstr "Einmalig ausführen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
msgid "Running"
msgstr "Läuft"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:870
msgid "Script"
msgstr "Skript"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657
msgid "Select a service"
msgstr "Einen Dienst auswählen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:679
msgid "Service doesn't support this IP type"
msgstr "Der Dienst unterstützt diesen IP-Typ nicht"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669
msgid "Service not installed"
msgstr "Dienst nicht installiert"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455
msgid "Services"
msgstr "Dienste"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450
msgid "Services URL Download"
msgstr "Herunterladen von Dienst-URLs"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294
msgid "Services list last update"
msgstr "Letzte Aktualisierung der Diensteliste"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008
msgid "Setting this parameter to 0 will force the script to only run once"
msgstr "Ist dieser Wert auf 0 gesetzt, wird das Skript nur einmal ausgeführt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
msgid ""
"Source URL for services file. Defaults to the master openwrt ddns package "
"repo."
msgstr ""
"Url, die zum Herunterladen der Servicedatei verwendet wird. Standardmäßig "
"ist dies das Master-Openwrt-Ddns-Paket-Repositorium."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:201
msgid "Start DDNS"
msgstr "DDNS starten"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:272
msgid "State"
msgstr "Zustand"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
msgid "Status"
msgstr "Status"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
msgid "Status directory"
msgstr "Status-Verzeichnis"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
msgid "Stop"
msgstr "Stopp"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:201
msgid "Stop DDNS"
msgstr "DDNS anhalten"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
msgid "Stop this service"
msgstr "Diesen Dienst anhalten"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19
msgid "Stopped"
msgstr "Angehalten"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694
msgid "Switch service"
msgstr "Dienst wechseln"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
msgid "The default setting of '0' will retry infinitely."
msgstr "Beim Standard-Wert von '0' wird es endlos erneut versucht."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1051
msgid "The interval between which each subsequent retry commences."
msgstr ""
"Das Intervall, in dem jeder aufeinanderfolgende Wiederholungsversuch "
"gestartet wird."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:497
msgid "The service name is already used"
msgstr "Dieser Dienstname ist bereits in Benutzung"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:43
msgid "There is no service configured."
msgstr "Kein Dienst konfiguriert."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
msgid ""
"This is only a problem with multiple WAN interfaces and your DDNS provider "
"is unreachable via one of them."
msgstr ""
"Dies ist nur ein Problem mit mehreren WAN-Schnittstellen und Ihr DDNS-"
"Anbieter ist nicht über eine von ihnen erreichbar."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1085
msgid "This is the current content of the log file in %h for this service."
msgstr ""
"Dies ist der aktuelle Inhalt der Protokolldatei in %h für diesen Dienst."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:210
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277
msgid ""
"This is the default if you run DDNS scripts by yourself (i.e. via cron with "
"force_interval set to '0')"
msgstr ""
"Dies ist die Standardeinstellung, wenn DDNS-Skripte selbst ausgeführt werden "
"(z. B. via cron mit force_interval gesetzt auf '1')"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:893
msgid "This will be autoset to the selected interface"
msgstr "Dies wird automatisch auf die ausgewählte Schnittstelle eingestellt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
msgid "Timer Settings"
msgstr "Zeitgeber-Einstellungen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:811
msgid "URL"
msgstr "URL"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852
msgid "URL to detect"
msgstr "URL zur Adresserkennung für"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:230
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1150
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1151
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38
msgid "Unknown"
msgstr "Unbekannt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:301
msgid "Update DDns Services List"
msgstr "Aktualisiere Liste der DDNS-Anbieter"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684
msgid "Update URL"
msgstr "URL aktualisieren"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:709
msgid "Update URL for updating your DDNS Provider."
msgstr ""
"Aktualisiere die URL welche benutzt wird, um den DDNS Provider zu "
"aktualisieren."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
msgid "Use HTTP Secure"
msgstr "Verwende sicheres HTTP"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
msgid "Use cURL"
msgstr "Verwende cURL"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
msgid "User defined script to read system IP-Address"
msgstr ""
"Benutzerdefiniertes Skript, mit dem die aktuelle IP-Adresse des Systems "
"gelesen wird"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
msgid "Username"
msgstr "Benutzername"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
msgid "Using specific DNS Server not supported"
msgstr "Verwendung spezifischer DNS-Server wird nicht unterstützt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
msgid "Values below 5 minutes == 300 seconds are not supported"
msgstr "Werte unter 5 Minuten === 300 Sekunden werden nicht unterstützt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
msgid "Values lower than 'Check Interval' except '0' are invalid"
msgstr ""
"Ausgenommen von \"0\" werden keine Werte kleine als der \"Prüfintervall\" "
"unterstützt"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16
msgid "Verify"
msgstr "Überprüfen"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965
msgid "Warning"
msgstr "Warnung"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:630
msgid "Which record type to update at the DDNS provider (A/AAAA)"
msgstr ""
"Legt fest welche IP-Adresse 'IPv4/IPv6' zum DDNS Anbieter gesendet wird"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
msgid "Which time units to use for retry counters."
msgstr "Welche Zeiteinheiten für Wiederholungszähler verwendet werden sollen."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974
msgid ""
"Writes detailed messages to log file. File will be truncated automatically."
msgstr ""
"Schreibt detaillierte Meldungen in die Protokolldatei. Die Datei wird "
"automatisch gekürzt."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
msgid ""
"Writes log messages to syslog. Critical Errors will always be written to "
"syslog."
msgstr ""
"Schreibt Meldungen ins Systemprotokoll. Kritische Fehler werden immer in das "
"Systemprotokoll geschrieben."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
msgid ""
"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
"package, if you need to specify a DNS server to detect your registered IP."
msgstr ""
"Sie sollten das Programmpakete 'bind-host' oder 'knot-host' oder 'drill' "
"oder 'hostip' installieren, wenn Sie einen DNS Server angeben müssen um Ihre "
"registrierte IP zu ermitteln."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
msgid ""
"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
"*ssl' package."
msgstr ""
"Sie sollten das Programmpaket 'wget' oder 'curl' oder 'uclient-fetch' mit "
"'libustream-*ssl' installieren."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
msgid "You should install 'wget' or 'curl' package."
msgstr "Sie sollten das Programmpaket 'wget' oder 'curl' installieren."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
msgid ""
"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
msgstr ""
"Sie sollten das Programmpaket 'wget' oder 'uclient-fetch' installieren oder "
"libcurl ersetzen."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
msgid "cURL is installed, but libcurl was compiled without proxy support."
msgstr ""
"cURL ist installiert, aber libcurl wurde ohne Proxy-Unterstützung kompiliert."
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
msgid "cURL without Proxy Support"
msgstr "cURL ohne Proxy Unterstützung"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642
msgid "custom"
msgstr "benutzerdefiniert"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1037
msgid "days"
msgstr "Tage"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789
msgid "directory or path/file"
msgstr "Verzeichnis oder Pfad/zur/Datei"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
msgid "hours"
msgstr "Stunden"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1063
msgid "minutes"
msgstr "Minuten"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791
msgid "or"
msgstr "oder"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:313
msgid "or update your system to the latest OpenWrt Release"
msgstr "oder aktualisieren Sie Ihr System auf die neueste OpenWrt Version"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1062
msgid "seconds"
msgstr "Sekunden"
#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793
msgid "to run HTTPS without verification of server certificates (insecure)"
msgstr ""
"um HTTPS ohne Überprüfung der Server Zertifikate auszuführen (unsicher)"
#~ msgid "DDns"
#~ msgstr "DDns"
|