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
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
|
# Andreas Krennmair <ak@newsbeuter.org>, 2007-2008
#
msgid ""
msgstr ""
"Project-Id-Version: newsboat 0.3\n"
"Report-Msgid-Bugs-To: https://github.com/newsboat/newsboat/issues\n"
"POT-Creation-Date: 2024-09-09 19:36+0300\n"
"PO-Revision-Date: 2024-09-11 18:15+0200\n"
"Last-Translator: Lysander Trischler <github@lyse.isobeef.org>\n"
"Language-Team: Andreas Krennmair <ak@newsbeuter.org>, Simon Nagl "
"<simonnagl@aim.com>, Lysander Trischler <github@lyse.isobeef.org>\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"
#: newsboat.cpp:34
#, c-format
msgid ""
"%s %s\n"
"usage: %s [-i <file>|-e] [-u <urlfile>] [-c <cachefile>] [-x <command> ...] "
"[-h]\n"
msgstr ""
"%s %s\n"
"Verwendung: %s [-i <datei>|-e] [-u <urldatei>] [-c <cachedatei>] [-x "
"<befehl> ...] [-h]\n"
#: newsboat.cpp:49
msgid "export OPML feed to stdout"
msgstr "OPML-Feed auf die Standardausgabe exportieren"
#: newsboat.cpp:50
msgid "export OPML 2.0 feed including tags to stdout"
msgstr "OPML-2.0-Feed mitsamt Tags auf die Standardausgabe exportieren"
#: newsboat.cpp:51
msgid "refresh feeds on start"
msgstr "Feeds beim Start neu laden"
#: newsboat.cpp:52 newsboat.cpp:56 newsboat.cpp:62 newsboat.cpp:68
#: newsboat.cpp:74 newsboat.cpp:80 newsboat.cpp:86 newsboat.cpp:108
#: newsboat.cpp:114 newsboat.cpp:120 src/pbcontroller.cpp:352
#: src/pbcontroller.cpp:358 src/pbcontroller.cpp:364 src/pbcontroller.cpp:378
msgid "<file>"
msgstr "<datei>"
#: newsboat.cpp:52
msgid "import OPML file"
msgstr "OPML-Datei importieren"
#: newsboat.cpp:57
msgid "read RSS feed URLs from <file>"
msgstr "RSS-Feed-URLs aus <datei> lesen"
#: newsboat.cpp:63
msgid "use <file> as cache file"
msgstr "<datei> als Zwischenspeicherdatei verwenden"
#: newsboat.cpp:69 src/pbcontroller.cpp:353
msgid "read configuration from <file>"
msgstr "Konfiguration aus <datei> lesen"
#: newsboat.cpp:75 src/pbcontroller.cpp:359
msgid "use <file> as podcast queue file"
msgstr "<datei> als Podcast-Warteschlangendatei verwenden"
#: newsboat.cpp:81
msgid "save the input history of the search to <file>"
msgstr "Historie der Sucheingaben in <datei> speichern"
#: newsboat.cpp:87
msgid "save the input history of the command line to <file>"
msgstr "Historie der Kommandozeileneingaben in <datei> speichern"
# Es wird ein SQLite-VACUUM-Befehl ausgeführt.
#: newsboat.cpp:89
msgid "compact the cache"
msgstr "Zwischenspeicherdatei kompaktifizieren"
#: newsboat.cpp:93
msgid "<command>..."
msgstr "<befehl>..."
#: newsboat.cpp:94
msgid "execute list of commands"
msgstr "Liste von Befehlen ausführen"
#: newsboat.cpp:96
msgid "quiet startup"
msgstr "ruhiger Start"
#: newsboat.cpp:97
msgid "get version information"
msgstr "Versionsinformation anzeigen"
#: newsboat.cpp:101 src/pbcontroller.cpp:371
msgid "<loglevel>"
msgstr "<loglevel>"
#: newsboat.cpp:102 src/pbcontroller.cpp:372
msgid ""
"write a log with a certain log level (valid values: 1 to 6, for user error, "
"critical, error, warning, info, and debug respectively)"
msgstr ""
"Logdatei mit einem bestimmten Loglevel schreiben (gültige Werte: 1 bis 6 für "
"Benutzerfehler, kritischer Fehler, Fehler, Warnung, Info und Debug)"
#: newsboat.cpp:109 src/pbcontroller.cpp:379
msgid "use <file> as output log file"
msgstr "Logs nach <datei> schreiben"
#: newsboat.cpp:115
msgid "export list of read articles to <file>"
msgstr "Liste von gelesenen Artikeln nach <datei> exportieren"
#: newsboat.cpp:121
msgid "import list of read articles from <file>"
msgstr "Liste von gelesenen Artikeln aus <datei> importieren"
#: newsboat.cpp:123 src/pbcontroller.cpp:381
msgid "this help"
msgstr "diese Hilfe anzeigen"
#: newsboat.cpp:124
msgid "remove unreferenced items from cache"
msgstr "nicht referenzierte Einträge aus Cache löschen"
#: newsboat.cpp:152
msgid "Files:"
msgstr "Dateien:"
#. i18n: This is printed out by --help before the path to the config file
#: newsboat.cpp:154
msgid "configuration"
msgstr "Konfiguration"
#. i18n This is printed out by --help before the path to the urls file
#: newsboat.cpp:156
msgid "feed URLs"
msgstr "Feed-URLs"
#. i18n This is printed out by --help before the path to the cache file
#: newsboat.cpp:158
msgid "cache"
msgstr "Zwischenspeicher"
#. i18n: This is printed out by --help before the path to the queue file
#: newsboat.cpp:160
msgid "podcast queue"
msgstr "Podcast-Warteschlange"
#. i18n: This is printed out by --help before the path to the search history file
#: newsboat.cpp:162
msgid "search history"
msgstr "Suchhistorie"
#. i18n: This is printed out by --help before the path to the cmdline history file
#: newsboat.cpp:164
msgid "command line history"
msgstr "Kommandozeilenhistorie"
#: newsboat.cpp:182 src/pbcontroller.cpp:409
msgid ""
"Support at #newsboat at https://libera.chat or on our mailing list https://"
"groups.google.com/g/newsboat"
msgstr ""
"Unterstützung im Kanal #newsboat auf https://libera.chat oder auf unserer "
"Mailingliste unter https://groups.google.com/g/newsboat"
#: newsboat.cpp:185 src/pbcontroller.cpp:412
msgid "For more information, check out https://newsboat.org/"
msgstr "Weitere Informationen unter https://newsboat.org/"
#: newsboat.cpp:206
#, c-format
msgid ""
"Newsboat is free software licensed under the MIT License. (Type `%s -vv' to "
"see the full text.)"
msgstr ""
"newsboat ist Freie Software und steht unter der MIT-Lizenz. („%s -vv“ zeigt "
"den vollständigen Lizenztext an.)"
#: newsboat.cpp:211
msgid "It bundles:"
msgstr "Mitgeliefert wird:"
#: newsboat.cpp:212
msgid ""
"- JSON for Modern C++ library, licensed under the MIT License: https://"
"github.com/nlohmann/json"
msgstr ""
"- JSON für Modernes C++, unter der MIT-Lizenz stehende Bibliothek: https://"
"github.com/nlohmann/json"
#: newsboat.cpp:215
msgid ""
"- optional-lite library, licensed under the Boost Software License: https://"
"github.com/martinmoene/optional-lite"
msgstr ""
"- optional-lite, unter der Boost-Software-Lizenz stehende Bibliothek: "
"https://github.com/martinmoene/optional-lite"
#: newsboat.cpp:218
msgid ""
"- expected-lite library, licensed under the Boost Software License: https://"
"github.com/martinmoene/expected-lite"
msgstr ""
"- expected-lite, unter der Boost-Software-Lizenz stehende Bibliothek: "
"https://github.com/martinmoene/expected-lite"
#: newsboat.cpp:294
#, c-format
msgid "Caught newsboat::DbException with message: %s"
msgstr "newsboat::DbException gefangen mit Nachricht: %s"
#: newsboat.cpp:301
#, c-format
msgid "Caught newsboat::MatcherException with message: %s"
msgstr "newsboat::MatcherException gefangen mit Nachricht: %s"
#: newsboat.cpp:307 podboat.cpp:40
#, c-format
msgid "Caught newsboat::Exception with message: %s"
msgstr "newsboat::Exception gefangen mit Nachricht: %s"
#: src/colormanager.cpp:46 src/colormanager.cpp:50 src/regexmanager.cpp:139
#: src/regexmanager.cpp:153 src/regexmanager.cpp:217 src/regexmanager.cpp:229
#, c-format
msgid "`%s' is not a valid color"
msgstr "„%s“ ist keine gültige Farbe"
#: src/colormanager.cpp:59 src/regexmanager.cpp:169 src/regexmanager.cpp:244
#, c-format
msgid "`%s' is not a valid attribute"
msgstr "„%s“ ist kein gültiges Attribut"
#: src/colormanager.cpp:88
#, c-format
msgid "`%s' is not a valid configuration element"
msgstr "„%s“ ist kein gültiges Konfigurationselement"
#: src/configcontainer.cpp:166
#, c-format
msgid "Newsboat: finished reload, %f unread feeds (%n unread articles total)"
msgstr ""
"Newsboat: Neuladen beendet, %f ungelesene Feeds (%n ungelesene Artikel "
"insgesamt)"
#: src/configcontainer.cpp:195
msgid "%4i [%6dMB/%6tMB] [%5p %%] [%12K] %-20S %u -> %F"
msgstr "%4i [%6dMB/%6tMB] [%5p %%] [%12K] %-20S %u -> %F"
#: src/configcontainer.cpp:303
msgid ""
"%N %V - Articles in feed '%T' (%u unread, %t total)%?F? matching filter "
"'%F'&? - %U"
msgstr ""
"%N %V - Artikel im Feed „%T“ (%u ungelesen, %t gesamt)%?F? passend auf "
"Filter „%F“&? - %U"
#: src/configcontainer.cpp:307
msgid "%N %V - Dialogs"
msgstr "%N %V - Dialoge"
#: src/configcontainer.cpp:310
msgid ""
"%N %V - %?F?Feeds&Your feeds? (%u unread, %t total)%?F? matching filter "
"'%F'&?%?T? - tag '%T'&?"
msgstr ""
"%N %V - %?F?Feeds&Ihre Feeds? (%u ungelesen, %t gesamt)%?F? passend auf "
"Filter „%F“&?%?T? - Tag „%T“&?"
#: src/configcontainer.cpp:314
msgid "%N %V - %?O?Open File&Save File? - %f"
msgstr "%N %V - %?O?Datei öffnen&Datei speichern? - %f"
#: src/configcontainer.cpp:318
msgid "%N %V - %?O?Open Directory&Save File? - %f"
msgstr "%N %V - %?O?Verzeichnis öffnen&Datei speichern? - %f"
#: src/configcontainer.cpp:322
msgid "%N %V - Help"
msgstr "%N %V - Hilfe"
#: src/configcontainer.cpp:325
msgid "%N %V - Article '%T' (%u unread, %t total)"
msgstr "%N %V - Artikel „%T“ (%u ungelesen, %t gesamt)"
#: src/configcontainer.cpp:329
msgid ""
"%N %V - Search results for '%s' (%u unread, %t total)%?F? matching filter "
"'%F'&?"
msgstr ""
"%N %V - Suchergebnis für „%s“ (%u ungelesen, %t gesamt)%?F? passend auf "
"Filter „%F“&?"
#: src/configcontainer.cpp:333
msgid "%N %V - Select Filter"
msgstr "%N %V - Filter auswählen"
#: src/configcontainer.cpp:337
msgid "%N %V - Select Tag"
msgstr "%N %V - Tag auswählen"
#: src/configcontainer.cpp:341
msgid "%N %V - URLs"
msgstr "%N %V - URLs"
#: src/configdata.cpp:54
#, c-format
msgid "expected boolean value, found `%s' instead"
msgstr "erwartete Wahrheitswert, fand stattdessen „%s“"
#: src/configdata.cpp:64
#, c-format
msgid "expected integer value, found `%s' instead"
msgstr "erwartete Ganzzahl, fand stattdessen „%s“"
#: src/configdata.cpp:74
#, c-format
msgid "invalid configuration value `%s'"
msgstr "ungültiger Konfigurationswert „%s“"
#: src/confighandlerexception.cpp:19
msgid "invalid parameters."
msgstr "ungültige Parameter."
#: src/confighandlerexception.cpp:21
msgid "too few parameters."
msgstr "zu wenige Parameter."
#: src/confighandlerexception.cpp:23
msgid "too many parameters."
msgstr "zu viele Parameter."
#: src/confighandlerexception.cpp:25
msgid "unknown command (bug)."
msgstr "Unbekannter Befehl (Bug)."
#: src/confighandlerexception.cpp:27
msgid "file couldn't be opened."
msgstr "Datei konnte nicht geöffnet werden."
#: src/configparser.cpp:101
#, c-format
msgid "%s line %u"
msgstr "%s Zeile %u"
#: src/configparser.cpp:128
#, c-format
msgid "unknown command `%s'"
msgstr "unbekannter Befehl „%s“"
#: src/configparser.cpp:135
#, c-format
msgid "Error while processing command `%s' (%s): %s"
msgstr "Fehler beim Verarbeiten von Befehl „%s“ (%s): %s"
#: src/controller.cpp:156 src/pbcontroller.cpp:250
#, c-format
msgid "Starting %s %s..."
msgstr "Starte %s %s..."
#: src/controller.cpp:163 src/pbcontroller.cpp:270
msgid "Loading configuration..."
msgstr "Lade Konfiguration..."
#: src/controller.cpp:200 src/controller.cpp:250 src/controller.cpp:392
#: src/controller.cpp:453 src/controller.cpp:457 src/controller.cpp:498
#: src/controller.cpp:505 src/controller.cpp:520 src/controller.cpp:538
#: src/controller.cpp:549 src/controller.cpp:593 src/pbcontroller.cpp:306
#: src/pbcontroller.cpp:322
msgid "done."
msgstr "Fertig."
#: src/controller.cpp:214 src/pbcontroller.cpp:259
#, c-format
msgid "Error: an instance of %s is already running (PID: %s)"
msgstr "Fehler: Eine Instanz von %s läuft bereits (PID: %s)"
#: src/controller.cpp:220 src/pbcontroller.cpp:265
msgid "Error: "
msgstr "Fehler: "
#: src/controller.cpp:226 src/controller.cpp:452
msgid "Opening cache..."
msgstr "Öffne Zwischenspeicher..."
#: src/controller.cpp:233 src/controller.cpp:241
#, c-format
msgid "Error: opening the cache file `%s' failed: %s"
msgstr "Fehler: Das Öffnen der Zwischenspeicherdatei „%s“ schlug fehl: %s"
#: src/controller.cpp:271
msgid "ERROR: You must set `cookie-cache` to use NewsBlur.\n"
msgstr ""
"Fehler: Sie müssen „cookie-cache“ setzen, um NewsBlur verwenden zu können.\n"
#: src/controller.cpp:279
#, c-format
msgid "%s is inaccessible and can't be created\n"
msgstr "Die Datei %s kann weder gelesen noch erstellt werden\n"
#: src/controller.cpp:298
msgid ""
"ERROR: You must set `feedbin-login` and one of `feedbin-password`, `feedbin-"
"passwordfile` or `feedbin-passwordeval` to use Feedbin\n"
msgstr ""
"Fehler: Sie müssen „feedbin-login“ und entweder „feedbin-password“, „feedbin-"
"passwordfile“ oder „feedbin-passwordeval“ setzen, um Feedbin verwenden zu "
"können\n"
#: src/controller.cpp:310
msgid "ERROR: You must set `freshrss-url` to use FreshRSS\n"
msgstr ""
"Fehler: Sie müssen „freshrss-url“ setzen, um Miniflux verwenden zu können\n"
#: src/controller.cpp:322
msgid ""
"ERROR: You must set `freshrss-login` and one of `freshrss-password`, "
"`freshrss-passwordfile` or `freshrss-passwordeval` to use FreshRSS\n"
msgstr ""
"Fehler: Sie müssen „freshrss-login“ und entweder „freshrss-password“, "
"„freshrss-passwordfile“ oder „freshrss-passwordeval“ setzen, um FreshRSS "
"verwenden zu können\n"
#: src/controller.cpp:337
msgid "ERROR: You must set `miniflux-url` to use Miniflux\n"
msgstr ""
"Fehler: Sie müssen „miniflux-url“ setzen, um Miniflux verwenden zu können\n"
#: src/controller.cpp:354
msgid ""
"ERROR: You must provide an API token or a login/password pair to use "
"Miniflux. Please set the appropriate miniflux-* settings\n"
msgstr ""
"Fehler: Sie müssen ein API-Token oder eine Kombination aus Benutzernamen und "
"Passwort angeben, um Miniflux verwenden zu können. Bitte setzen Sie die "
"entsprechenden „miniflux-*“-Einstellungen\n"
#: src/controller.cpp:365
msgid ""
"ERROR: You must set *both* `inoreader-app-id` and `inoreader-app-key` to use "
"Inoreader.\n"
msgstr ""
"Fehler: Sie müssen *sowohl* „inoreader-app-id“ als auch „inoreader-app-key“ "
"setzen, um Inoreader zu verwenden.\n"
#: src/controller.cpp:372
#, c-format
msgid "ERROR: Unknown urls-source `%s'"
msgstr "Fehler: Unbekannte urls-source „%s“"
#: src/controller.cpp:379
#, c-format
msgid "Loading URLs from %s..."
msgstr "Lade URLs von %s..."
#: src/controller.cpp:400
#, c-format
msgid ""
"Error: no URLs configured. Please fill the file %s with RSS feed URLs or "
"import an OPML file."
msgstr ""
"Fehler: keine URLs konfiguriert. Bitte füllen Sie die Datei %s mit RSS-Feed-"
"URLs oder importieren Sie eine OPML-Datei."
#: src/controller.cpp:406
msgid ""
"It looks like the OPML feed you subscribed contains no feeds. Please fill it "
"with feeds, and try again."
msgstr ""
"Es sieht so aus als würde die konfigurierte OPML-Datei keine Feeds "
"enthalten. Bitte füllen Sie diese mit Feeds und probieren Sie es erneut."
#: src/controller.cpp:411
msgid ""
"It looks like you haven't configured any feeds in your The Old Reader "
"account. Please do so, and try again."
msgstr ""
"Es sieht so aus als hätten Sie keine Feeds in Ihrem The-Old-Reader-Konto "
"konfiguriert. Bitte tun Sie das und probieren Sie es erneut."
#: src/controller.cpp:416
msgid ""
"It looks like you haven't configured any feeds in your Tiny Tiny RSS "
"account. Please do so, and try again."
msgstr ""
"Es sieht so aus als hätten Sie keine Feeds in Ihrem Tiny-Tiny-RSS-Konto "
"konfiguriert. Bitte tun Sie das und probieren Sie es erneut."
#: src/controller.cpp:421
msgid ""
"It looks like you haven't configured any feeds in your NewsBlur account. "
"Please do so, and try again."
msgstr ""
"Es sieht so aus als hätten Sie keine Feeds in Ihrem NewsBlur-Konto "
"konfiguriert. Bitte tun Sie das und probieren Sie es erneut."
#: src/controller.cpp:426
msgid ""
"It looks like you haven't configured any feeds in your Inoreader account. "
"Please do so, and try again."
msgstr ""
"Es sieht so aus als hätten Sie keine Feeds in Ihrem Inoreader-Konto "
"konfiguriert. Bitte tun Sie das und probieren Sie es erneut."
#: src/controller.cpp:431
msgid ""
"It looks like you haven't configured any feeds in your Miniflux account. "
"Please do so, and try again."
msgstr ""
"Es sieht so aus als hätten Sie keine Feeds in Ihrem Miniflux-Konto "
"konfiguriert. Bitte tun Sie das und probieren Sie es erneut."
#: src/controller.cpp:436
msgid ""
"It looks like you haven't configured any feeds in your Feedbin account. "
"Please do so, and try again."
msgstr ""
"Es sieht so aus als hätten Sie keine Feeds in Ihrem Feedbin-Konto "
"konfiguriert. Bitte tun Sie das und probieren Sie es erneut."
#: src/controller.cpp:441
msgid ""
"It looks like you haven't configured any feeds in your Owncloud/Nextcloud "
"account. Please do so, and try again."
msgstr ""
"Es sieht so aus als hätten Sie keine Feeds in Ihrem Owncloud-/Nextcloud-"
"Konto konfiguriert. Bitte tun Sie das und probieren Sie es erneut."
#: src/controller.cpp:454
msgid "Cleaning up cache thoroughly..."
msgstr "Bereinige Zwischenspeicher gründlich..."
#: src/controller.cpp:462
msgid "Loading articles from cache..."
msgstr "Lade Artikel aus dem Zwischenspeicher..."
#: src/controller.cpp:479
msgid "Error while loading feeds from database: "
msgstr "Fehler beim Laden der Feeds aus der Datenbank: "
#: src/controller.cpp:485
#, c-format
msgid "Error while loading feed '%s': %s"
msgstr "Fehler beim Laden des Feeds „%s“: %s"
#: src/controller.cpp:502 src/controller.cpp:586
msgid "Cleaning up cache..."
msgstr "Bereinige Zwischenspeicher..."
#: src/controller.cpp:513
msgid "Prepopulating query feeds..."
msgstr "Query-Feed vorbefüllen..."
#: src/controller.cpp:535
msgid "Importing list of read articles..."
msgstr "Importiere Liste von gelesenen Artikeln..."
#: src/controller.cpp:546
msgid "Exporting list of read articles..."
msgstr "Exportierte Liste von gelesenen Artikeln..."
#: src/controller.cpp:601
#, c-format
msgid ""
"%<PRIu64> unreachable feeds found. See `cleanup-on-quit` in newsboat(1) for "
"details."
msgstr ""
"Es wurden %<PRIu64> nicht erreichbare Feeds gefunden. Mehr Details dazu "
"unter „cleanup-on-quit“ in newsboat(1)."
#: src/controller.cpp:609
msgid "failed: "
msgstr "Fehlgeschlagen: "
#: src/controller.cpp:633
#, c-format
msgid "Error: couldn't mark all feeds read: %s"
msgstr "Fehler: Konnte nicht alle Feeds als gelesen markieren: %s"
#: src/controller.cpp:736 src/itemutils.cpp:34
#, c-format
msgid "Generated filename (%s) is used already."
msgstr "Generierter Dateiname (%s) wird bereits verwendet."
#: src/controller.cpp:741 src/itemutils.cpp:39
#, c-format
msgid "Failed to open queue file: %s."
msgstr "Öffnen der Warteschlangendatei fehlgeschlagen: %s."
#: src/controller.cpp:763
#, c-format
msgid "Error importing OPML to urls file %s: %s"
msgstr "Fehler beim OPML-Import in die urls-Datei %s: %s"
#: src/controller.cpp:772
#, c-format
msgid "An error occurred while parsing %s: %s"
msgstr "Ein Fehler ist beim Parsen von %s aufgetreten: %s"
#: src/controller.cpp:779
#, c-format
msgid "Import of %s finished."
msgstr "Import von %s fertig."
#: src/controller.cpp:915
#, c-format
msgid "%u unread articles"
msgstr "%u ungelesene Artikel"
#: src/controller.cpp:920
#, c-format
msgid "%s: %s: unknown command"
msgstr "%s: %s: unbekannter Befehl"
#: src/controller.cpp:1039
#, c-format
msgid "Error: couldn't open configuration file `%s'!"
msgstr "Fehler: Konnte Konfigurationsdatei „%s“ nicht öffnen!"
#: src/dialogsformaction.cpp:66
msgid "Close"
msgstr "Schließen"
#: src/dialogsformaction.cpp:67
msgid "Goto Dialog"
msgstr "gehe zu Dialog"
#: src/dialogsformaction.cpp:68
msgid "Close Dialog"
msgstr "Dialog schließen"
#: src/dialogsformaction.cpp:90
msgid "Error: you can't remove the feed list!"
msgstr "Fehler: Sie können die Feedliste nicht entfernen!"
#: src/dialogsformaction.cpp:122 src/feedlistformaction.cpp:1027
#: src/itemlistformaction.cpp:1419 src/urlviewformaction.cpp:172
msgid "Invalid position!"
msgstr "Ungültige Position!"
#: src/dirbrowserformaction.cpp:277
msgid "Directory: "
msgstr "Verzeichnis: "
#: src/dirbrowserformaction.cpp:297 src/filebrowserformaction.cpp:321
#: src/pbview.cpp:381 src/selectformaction.cpp:254 src/selectformaction.cpp:257
msgid "Cancel"
msgstr "Abbrechen"
#: src/dirbrowserformaction.cpp:298 src/filebrowserformaction.cpp:322
#: src/itemlistformaction.cpp:1398 src/itemviewformaction.cpp:581
msgid "Save"
msgstr "Speichern"
#: src/dirbrowserformaction.cpp:348
#, c-format
msgid "Save Files - %s"
msgstr "Dateien speichern - %s"
#: src/download.cpp:64
msgid "queued"
msgstr "in Warteschlange"
#: src/download.cpp:66
msgid "downloading"
msgstr "wird heruntergeladen"
#: src/download.cpp:68
msgid "cancelled"
msgstr "abgebrochen"
#: src/download.cpp:70
msgid "deleted"
msgstr "gelöscht"
#: src/download.cpp:72
msgid "finished"
msgstr "fertig"
#: src/download.cpp:74
msgid "failed"
msgstr "fehlgeschlagen"
#: src/download.cpp:76
msgid "missing"
msgstr "verschwunden"
#: src/download.cpp:78
msgid "ready"
msgstr "bereit"
#: src/download.cpp:80
msgid "played"
msgstr "abgespielt"
#: src/download.cpp:82
msgid "rename failed"
msgstr "Umbenennen fehlgeschlagen"
#: src/download.cpp:84
msgid "unknown (bug)."
msgstr "Unbekannt (Bug)."
#: src/feedhqurlreader.cpp:48 src/oldreaderurlreader.cpp:49
msgid "People you follow"
msgstr "Personen, deren regelmäßiger Leser Sie sind"
#: src/feedhqurlreader.cpp:50 src/freshrssurlreader.cpp:34
#: src/inoreaderurlreader.cpp:50 src/minifluxurlreader.cpp:33
#: src/oldreaderurlreader.cpp:51
msgid "Starred items"
msgstr "markierte Artikel"
#: src/feedhqurlreader.cpp:51 src/oldreaderurlreader.cpp:52
msgid "Shared items"
msgstr "empfohlene Artikel"
#: src/feedlistformaction.cpp:107 src/feedlistformaction.cpp:119
#: src/feedlistformaction.cpp:240 src/feedlistformaction.cpp:315
#: src/feedlistformaction.cpp:535 src/feedlistformaction.cpp:542
msgid "No feed selected!"
msgstr "Kein Feed ausgewählt!"
#. i18n: This string is related to the letters in parentheses in the
#. "Sort by (f)irsttag/..." and "Reverse Sort by
#. (f)irsttag/..." messages
#: src/feedlistformaction.cpp:130 src/feedlistformaction.cpp:170
msgid "ftauln"
msgstr "etauzn"
#: src/feedlistformaction.cpp:132
msgid ""
"Sort by (f)irsttag/(t)itle/(a)rticlecount/(u)nreadarticlecount/(l)astupdated/"
"(n)one?"
msgstr ""
"Sortieren nach (e)rstemtag/(t)itel/(a)rtikelzahl/(u)ngeleseneartikel/"
"(z)uletztaktualisiert/(n)ichts?"
#: src/feedlistformaction.cpp:172
msgid ""
"Reverse Sort by (f)irsttag/(t)itle/(a)rticlecount/(u)nreadarticlecount/"
"(l)astupdated/(n)one?"
msgstr ""
"Umgekehrt sortieren nach (e)rstemtag/(t)itel/(a)rtikelzahl/"
"(u)ngeleseneartikel/(z)uletztaktualisiert/(n)ichts?"
#: src/feedlistformaction.cpp:231 src/feedlistformaction.cpp:258
#: src/feedlistformaction.cpp:578 src/itemlistformaction.cpp:183
#: src/itemlistformaction.cpp:206 src/itemlistformaction.cpp:890
#: src/itemviewformaction.cpp:568
msgid "Failed to spawn browser"
msgstr "Konnte den Browser nicht starten"
#: src/feedlistformaction.cpp:234 src/feedlistformaction.cpp:261
#: src/feedlistformaction.cpp:581 src/itemlistformaction.cpp:186
#: src/itemlistformaction.cpp:209 src/itemlistformaction.cpp:893
#: src/itemviewformaction.cpp:571
#, c-format
msgid "Browser returned error code %i"
msgstr "Browser brach mit Rückgabestatus %i ab"
#: src/feedlistformaction.cpp:293 src/itemlistformaction.cpp:526
msgid "Do you really want to mark this feed as read (y:Yes n:No)? "
msgstr "Möchten Sie wirklich diesen Feed als gelesen markieren (j:Ja n:Nein)? "
#: src/feedlistformaction.cpp:294 src/feedlistformaction.cpp:379
#: src/feedlistformaction.cpp:508 src/filebrowserformaction.cpp:115
#: src/itemlistformaction.cpp:109 src/itemlistformaction.cpp:527
#: src/view.cpp:190
msgid "yn"
msgstr "jn"
#: src/feedlistformaction.cpp:294 src/feedlistformaction.cpp:379
#: src/feedlistformaction.cpp:508 src/itemlistformaction.cpp:109
#: src/itemlistformaction.cpp:527 src/view.cpp:190
msgid "y"
msgstr "j"
#: src/feedlistformaction.cpp:300 src/itemlistformaction.cpp:531
msgid "Marking feed read..."
msgstr "Markiere Feed als gelesen..."
#: src/feedlistformaction.cpp:310 src/itemlistformaction.cpp:577
#, c-format
msgid "Error: couldn't mark feed read: %s"
msgstr "Fehler: Konnte Feed nicht als gelesen markieren: %s"
#: src/feedlistformaction.cpp:336 src/feedlistformaction.cpp:345
#: src/feedlistformaction.cpp:371
msgid "No feeds with unread items."
msgstr "Keine Feeds mit ungelesenen Artikeln."
#: src/feedlistformaction.cpp:353 src/itemlistformaction.cpp:515
msgid "Already on last feed."
msgstr "Bereits beim letzten Feed."
#: src/feedlistformaction.cpp:362 src/itemlistformaction.cpp:520
msgid "Already on first feed."
msgstr "Bereits beim ersten Feed."
#: src/feedlistformaction.cpp:378
msgid "Do you really want to mark all feeds as read (y:Yes n:No)? "
msgstr "Möchten Sie wirklich alle Feeds als gelesen markieren (j:Ja n:Nein)? "
#: src/feedlistformaction.cpp:382
msgid "Marking all feeds read..."
msgstr "Markiere alle Feeds als gelesen..."
#: src/feedlistformaction.cpp:425 src/itemlistformaction.cpp:713
#, c-format
msgid "No filter found with name `%s'."
msgstr "Keinen Filter mit dem Namen „%s“ gefunden."
#: src/feedlistformaction.cpp:433 src/itemlistformaction.cpp:721
msgid "No filters defined."
msgstr "Keine Filter definiert."
#: src/feedlistformaction.cpp:447 src/helpformaction.cpp:41
#: src/itemlistformaction.cpp:652 src/itemlistformaction.cpp:667
#: src/itemviewformaction.cpp:280 src/itemviewformaction.cpp:295
msgid "Search for: "
msgstr "Suche nach: "
#: src/feedlistformaction.cpp:457 src/feedlistformaction.cpp:473
#: src/formaction.cpp:562 src/formaction.cpp:564 src/itemlistformaction.cpp:679
#: src/itemlistformaction.cpp:695 src/itemrenderer.cpp:76
msgid "Title: "
msgstr "Titel: "
#: src/feedlistformaction.cpp:490 src/itemlistformaction.cpp:730
#: src/itemlistformaction.cpp:747
msgid "Filter: "
msgstr "Filter: "
#: src/feedlistformaction.cpp:507 src/view.cpp:188
msgid "Do you really want to quit (y:Yes n:No)? "
msgstr "Wollen Sie wirklich beenden (j:Ja n:Nein)? "
#: src/feedlistformaction.cpp:547
msgid "Cannot open query feeds in the browser!"
msgstr "Query-Feeds können nicht im Browser geöffnet werden!"
#: src/feedlistformaction.cpp:640 src/helpformaction.cpp:190
#: src/itemlistformaction.cpp:1396 src/itemviewformaction.cpp:580
#: src/pbview.cpp:372 src/pbview.cpp:379 src/searchresultslistformaction.cpp:18
#: src/urlviewformaction.cpp:159
msgid "Quit"
msgstr "Beenden"
#: src/feedlistformaction.cpp:641 src/itemlistformaction.cpp:1397
#: src/searchresultslistformaction.cpp:19
msgid "Open"
msgstr "Öffnen"
#: src/feedlistformaction.cpp:642 src/itemlistformaction.cpp:1400
#: src/itemviewformaction.cpp:582
msgid "Next Unread"
msgstr "nächster Ungelesener"
#: src/feedlistformaction.cpp:643 src/itemlistformaction.cpp:1399
msgid "Reload"
msgstr "neu laden"
#: src/feedlistformaction.cpp:644
msgid "Reload All"
msgstr "alle neu laden"
#: src/feedlistformaction.cpp:645
msgid "Mark Read"
msgstr "gelesen markieren"
#: src/feedlistformaction.cpp:646 src/itemlistformaction.cpp:1401
msgid "Mark All Read"
msgstr "alle gelesen markieren"
#: src/feedlistformaction.cpp:647 src/helpformaction.cpp:191
#: src/itemlistformaction.cpp:1402 src/searchresultslistformaction.cpp:21
msgid "Search"
msgstr "Suchen"
#: src/feedlistformaction.cpp:648 src/helpformaction.cpp:214
#: src/itemlistformaction.cpp:1403 src/itemviewformaction.cpp:585
#: src/pbview.cpp:301 src/pbview.cpp:387 src/searchresultslistformaction.cpp:22
#: src/urlviewformaction.cpp:162
msgid "Help"
msgstr "Hilfe"
#: src/feedlistformaction.cpp:990 src/itemlistformaction.cpp:986
msgid "Searching..."
msgstr "Suche..."
#: src/feedlistformaction.cpp:999 src/itemlistformaction.cpp:992
#, c-format
msgid "Error while searching for `%s': %s"
msgstr "Fehler beim Suchen nach „%s“: %s"
#: src/feedlistformaction.cpp:1011 src/itemlistformaction.cpp:999
msgid "No results."
msgstr "Keine Ergebnisse."
#: src/feedlistformaction.cpp:1022 src/itemlistformaction.cpp:1414
msgid "Position not visible!"
msgstr "Position nicht sichtbar!"
#: src/feedlistformaction.cpp:1104
#, c-format
msgid "Feed List - %u unread, %u total"
msgstr "Feedliste - %u ungelesen, %u gesamt"
#: src/feedlistformaction.cpp:1118 src/itemlistformaction.cpp:1693
#, c-format
msgid "Error: couldn't parse filter expression `%s': %s"
msgstr "Fehler: Konnte Filterausdruck „%s“ nicht parsen: %s"
#: src/feedretriever.cpp:79
#, c-format
msgid "Error: unsupported URL: %s"
msgstr "Fehler: Nicht unterstützte URL: %s"
#: src/filebrowserformaction.cpp:112
#, c-format
msgid "Do you really want to overwrite `%s' (y:Yes n:No)? "
msgstr "Wollen Sie wirklich „%s“ überschreiben (j:Ja n:Nein)? "
#: src/filebrowserformaction.cpp:115
msgid "n"
msgstr "n"
#: src/filebrowserformaction.cpp:301
msgid "File: "
msgstr "Datei: "
#: src/filebrowserformaction.cpp:371
#, c-format
msgid "Save File - %s"
msgstr "Datei speichern - %s"
#: src/fileurlreader.cpp:66
#, c-format
msgid "Error: failed to open file \"%s\": %s"
msgstr "Fehler: Öffnen der Datei „%s“ fehlgeschlagen: %s"
#: src/filtercontainer.cpp:37 src/regexmanager.cpp:255 src/rssfeed.cpp:57
#: src/rssignores.cpp:33
#, c-format
msgid "couldn't parse filter expression `%s': %s"
msgstr "Fehler: Konnte Filterausdruck „%s“ nicht parsen: %s"
#: src/formaction.cpp:130
msgid "usage: set <config-option> <value>"
msgstr "Verwendung: set <konfigurationseinstellung> <wert>"
#: src/formaction.cpp:258
msgid "usage: set <variable>[=<value>]"
msgstr "Verwendung: set <variable>[=<wert>]"
#: src/formaction.cpp:272
msgid "usage: source <file> [...]"
msgstr "Verwendung: source <datei> [...]"
#: src/formaction.cpp:290
msgid "usage: dumpconfig <file>"
msgstr "Verwendung: dumpconfig <datei> [...]"
#: src/formaction.cpp:295
#, c-format
msgid "Saved configuration to %s"
msgstr "Konfiguration nach %s gespeichert"
#: src/formaction.cpp:303
msgid "usage: exec <operation>"
msgstr "Verwendung: exec <operation>"
#: src/formaction.cpp:310
msgid "Operation not found"
msgstr "Operation nicht gefunden"
#: src/formaction.cpp:334
#, c-format
msgid "Not a command: %s"
msgstr "Kein Befehl: „%s“"
#: src/formaction.cpp:510
msgid "Saving bookmark..."
msgstr "Speichere Lesezeichen..."
#: src/formaction.cpp:516 src/formaction.cpp:588
msgid "Saved bookmark."
msgstr "Lesezeichen gespeichert."
#: src/formaction.cpp:519 src/formaction.cpp:591
msgid "Error while saving bookmark: "
msgstr "Fehler beim Speichern des Lesezeichens: "
#: src/formaction.cpp:559
msgid "URL: "
msgstr "URL: "
#: src/formaction.cpp:566
msgid "Description: "
msgstr "Beschreibung: "
#: src/formaction.cpp:567
msgid "Feed title: "
msgstr "Feed-Titel: "
#: src/formaction.cpp:582
msgid "Saving bookmark on autopilot..."
msgstr "Speichere Lesezeichen im Autopilot-Modus..."
#: src/formaction.cpp:724
msgid ""
"bookmarking support is not configured. Please set the configuration variable "
"`bookmark-cmd' accordingly."
msgstr ""
"Die Lesezeichen-Unterstützung ist nicht konfiguriert. Bitte setzen Sie die "
"Konfigurationsvariable „bookmark-cmd“ entsprechend."
#: src/helpformaction.cpp:127
msgid "Generic bindings:"
msgstr "Allgemeine Tastenbelegungen:"
#: src/helpformaction.cpp:145
msgid "Unbound functions:"
msgstr "Unbelegte Funktionen:"
#: src/helpformaction.cpp:161
msgid "Macros:"
msgstr "Makros:"
#: src/helpformaction.cpp:192
msgid "Clear"
msgstr "Löschen"
#: src/htmlrenderer.cpp:206
msgid "embedded flash:"
msgstr "Eingebettetes Flash: "
#: src/htmlrenderer.cpp:1030 src/htmlrenderer.cpp:1033
msgid "link"
msgstr "Link"
#: src/inoreaderurlreader.cpp:52
msgid "Broadcast items"
msgstr "geteilte Artikel"
#: src/inoreaderurlreader.cpp:53
msgid "Liked items"
msgstr "für gut befundene Artikel"
#: src/inoreaderurlreader.cpp:55
msgid "Saved web pages"
msgstr "gespeicherte Webseiten"
#: src/itemlistformaction.cpp:79 src/itemlistformaction.cpp:102
#: src/itemlistformaction.cpp:316 src/itemlistformaction.cpp:363
#: src/itemlistformaction.cpp:401 src/itemlistformaction.cpp:644
#: src/itemlistformaction.cpp:844 src/itemlistformaction.cpp:899
#: src/itemlistformaction.cpp:960 src/searchresultslistformaction.cpp:56
msgid "No item selected!"
msgstr "Kein Element ausgewählt!"
#: src/itemlistformaction.cpp:108
msgid "Do you really want to delete all articles (y:Yes n:No)? "
msgstr "Wollen Sie wirklich alle Artikel löschen (j:Ja n:Nein)? "
#: src/itemlistformaction.cpp:222 src/itemviewformaction.cpp:439
msgid "Toggling read flag for article..."
msgstr "Schalte Gelesen-Flag für Artikel um..."
#: src/itemlistformaction.cpp:261
#, c-format
msgid "Error while toggling read flag: %s"
msgstr "Fehler beim Umschalten des Gelesen-Flags: %s"
#: src/itemlistformaction.cpp:306 src/itemviewformaction.cpp:364
msgid "URL list empty."
msgstr "URL-Liste leer."
#: src/itemlistformaction.cpp:374 src/itemlistformaction.cpp:393
#: src/itemrenderer.cpp:81 src/itemviewformaction.cpp:337
#: src/itemviewformaction.cpp:351
msgid "Flags: "
msgstr "Flags: "
#: src/itemlistformaction.cpp:433 src/itemlistformaction.cpp:1494
msgid "Error: no item selected!"
msgstr "Fehler: Keinen Artikel ausgewählt!"
#: src/itemlistformaction.cpp:466 src/itemlistformaction.cpp:475
#: src/itemlistformaction.cpp:499 src/itemviewformaction.cpp:387
#: src/itemviewformaction.cpp:399 src/itemviewformaction.cpp:432
#: src/view.cpp:779 src/view.cpp:850
msgid "No unread items."
msgstr "Keine ungelesenen Artikel."
#: src/itemlistformaction.cpp:483 src/itemviewformaction.cpp:410
#: src/view.cpp:921
msgid "Already on last item."
msgstr "Bereits beim letzten Artikel."
#: src/itemlistformaction.cpp:492 src/itemviewformaction.cpp:421
#: src/view.cpp:887
msgid "Already on first item."
msgstr "Bereits beim ersten Artikel."
#: src/itemlistformaction.cpp:505 src/itemlistformaction.cpp:510
msgid "No unread feeds."
msgstr "Keine ungelesenen Feeds."
#: src/itemlistformaction.cpp:586
msgid "Marking all above as read..."
msgstr "Markiere alle obenstehenden Artikel als gelesen..."
#: src/itemlistformaction.cpp:622 src/itemlistformaction.cpp:638
#: src/itemviewformaction.cpp:307 src/itemviewformaction.cpp:323
msgid "Pipe article to command: "
msgstr "Artikel zu Befehl umleiten: "
#. i18n: This string is related to the letters in parentheses in the
#. "Sort by (d)ate/..." and "Reverse Sort by (d)ate/..."
#. messages
#: src/itemlistformaction.cpp:762 src/itemlistformaction.cpp:800
msgid "dtfalgr"
msgstr "dtfalgz"
#: src/itemlistformaction.cpp:764
msgid "Sort by (d)ate/(t)itle/(f)lags/(a)uthor/(l)ink/(g)uid/(r)andom?"
msgstr ""
"Sortieren nach (d)atum/(t)itel/(f)lags/(a)utor/(l)ink/(g)uid/(z)ufällig?"
#: src/itemlistformaction.cpp:802
msgid "Reverse Sort by (d)ate/(t)itle/(f)lags/(a)uthor/(l)ink/(g)uid/(r)andom?"
msgstr ""
"Umgekehrt sortieren nach (d)atum/(t)itel/(f)lags/(a)utor/(l)ink/(g)uid/"
"(z)ufällig?"
#: src/itemlistformaction.cpp:968 src/itemviewformaction.cpp:658
msgid "Flags updated."
msgstr "Flags aktualisiert."
#: src/itemlistformaction.cpp:1104 src/view.cpp:422 src/view.cpp:445
#, c-format
msgid "Error: applying the filter failed: %s"
msgstr "Fehler: Anwenden des Filters fehlgeschlagen: %s"
#: src/itemlistformaction.cpp:1164
#, c-format
msgid "1 day ago"
msgid_plural "%u days ago"
msgstr[0] "gestern"
msgstr[1] "vor %u Tagen"
#: src/itemlistformaction.cpp:1473 src/itemviewformaction.cpp:213
#: src/itemviewformaction.cpp:633
msgid "Aborted saving."
msgstr "Speichern abgebrochen."
#: src/itemlistformaction.cpp:1478 src/itemviewformaction.cpp:639
#, c-format
msgid "Saved article to %s"
msgstr "Artikel nach %s gespeichert"
#: src/itemlistformaction.cpp:1481 src/itemviewformaction.cpp:643
#, c-format
msgid "Error: couldn't save article to %s"
msgstr "Fehler: Konnte Artikel nicht nach %s speichern"
#: src/itemlistformaction.cpp:1490
msgid "Error: no filename provided"
msgstr "Fehler: Keinen Dateinamen angegeben"
#: src/itemlistformaction.cpp:1575
#, c-format
msgid "Query Feed - %s"
msgstr "Query-Feed - %s"
#: src/itemlistformaction.cpp:1582
#, c-format
msgid "Article List - %s"
msgstr "Artikelliste - %s"
#: src/itemlistformaction.cpp:1629
msgid "yanq"
msgstr "jank"
#: src/itemlistformaction.cpp:1651
#, c-format
msgid ""
"Overwrite `%s' in `%s'? There are %d more conflicts like this (y:Yes a:Yes "
"to all n:No q:No to all)"
msgstr ""
"„%s“ in „%s“ überschreiben? Es gibt %d weitere Konflikte (j:Ja a:Alle "
"überschreiben n:Nein k:Keine überschreiben)"
#: src/itemlistformaction.cpp:1658
#, c-format
msgid "Overwrite `%s' in `%s'? (y:Yes n:No)"
msgstr "„%s“ in „%s“ überschreiben (j:Ja n:Nein)"
#: src/itemrenderer.cpp:74
msgid "Feed: "
msgstr "Feed: "
#: src/itemrenderer.cpp:78
msgid "Author: "
msgstr "Autor: "
#: src/itemrenderer.cpp:79
msgid "Date: "
msgstr "Datum: "
#: src/itemrenderer.cpp:80
msgid "Link: "
msgstr "Link: "
#: src/itemrenderer.cpp:89
msgid "Podcast Download URL: "
msgstr "Podcast-Download-URL: "
#: src/itemrenderer.cpp:94
msgid "type: "
msgstr "Typ: "
#: src/itemrenderer.cpp:128
msgid "Image"
msgstr "Bild"
#: src/itemrenderer.cpp:128
msgid "Link"
msgstr "Link"
#: src/itemrenderer.cpp:220
msgid "Links: "
msgstr "Links: "
#: src/itemutils.cpp:12
msgid "Item has no enclosures."
msgstr "Der Eintrag hat keine Anlage."
#: src/itemutils.cpp:16
#, c-format
msgid "Item's enclosure has non-http link: '%s'"
msgstr "Die Anlage des Eintrags besitzt einen Nicht-HTTP-Link: „%s“"
#: src/itemutils.cpp:24
#, c-format
msgid "Added %s to download queue."
msgstr "%s zur Download-Warteschlange hinzugefügt."
#: src/itemutils.cpp:29
#, c-format
msgid "%s is already queued."
msgstr "%s ist bereits eingereiht."
#: src/itemviewformaction.cpp:60 src/itemviewformaction.cpp:729
msgid "Top"
msgstr "Anfang"
#: src/itemviewformaction.cpp:61 src/itemviewformaction.cpp:731
msgid "Bottom"
msgstr "Ende"
#: src/itemviewformaction.cpp:177 src/view.cpp:555
#, c-format
msgid "Error while marking article as read: %s"
msgstr "Fehler beim Markieren des Artikels als gelesen: %s"
#: src/itemviewformaction.cpp:218
#, c-format
msgid "Saved article to %s."
msgstr "Artikel nach %s gespeichert."
#: src/itemviewformaction.cpp:221
#, c-format
msgid "Error: couldn't write article to file %s"
msgstr "Fehler: Konnte Artikel nicht nach %s speichern"
#: src/itemviewformaction.cpp:455
#, c-format
msgid "Error while marking article as unread: %s"
msgstr "Fehler beim Markieren des Artikels als ungelesen: %s"
#: src/itemviewformaction.cpp:500 src/itemviewformaction.cpp:515
#: src/keymap.cpp:247
msgid "Goto URL #"
msgstr "Gehe zu URL #"
#: src/itemviewformaction.cpp:583 src/urlviewformaction.cpp:160
msgid "Open in Browser"
msgstr "im Browser öffnen"
#: src/itemviewformaction.cpp:584
msgid "Enqueue"
msgstr "in Warteschlange"
#. i18n: `%3u` gets replaced by a number between 0 and 100.
#. The `%%` is replaced by a single percent sign.
#: src/itemviewformaction.cpp:735
#, c-format
msgid "%3u %% "
msgstr "%3u %% "
#: src/itemviewformaction.cpp:744
#, c-format
msgid "Article - %s"
msgstr "Artikel - %s"
#: src/itemviewformaction.cpp:794
msgid "Error: invalid regular expression!"
msgstr "Fehler: Ungültiger regulärer Ausdruck!"
#: src/keymap.cpp:35
msgid "Open feed/article"
msgstr "Feed/Artikel öffnen"
#: src/keymap.cpp:43
msgid "Switch focus between widgets"
msgstr "Fokus zwischen Steuerelementen wechseln"
#: src/keymap.cpp:50
msgid "Return to previous dialog/Quit"
msgstr "Zum vorherigen Dialog zurückkehren/Beenden"
#: src/keymap.cpp:57
msgid "Quit program, no confirmation"
msgstr "Programm beenden, keine Bestätigung"
#: src/keymap.cpp:64
msgid "Reload currently selected feed"
msgstr "Aktuell ausgewählten Feed neu laden"
#: src/keymap.cpp:71
msgid "Reload all feeds"
msgstr "Alle Feeds neu laden"
#: src/keymap.cpp:78
msgid "Mark feed read"
msgstr "Feed als gelesen markieren"
#: src/keymap.cpp:85
msgid "Mark all feeds read"
msgstr "Alle Feeds als gelesen markieren"
#: src/keymap.cpp:92
msgid "Mark all above as read"
msgstr "Alle obenstehenden Artikel als gelesen markieren"
#: src/keymap.cpp:99
msgid "Save article"
msgstr "Artikel speichern"
#: src/keymap.cpp:106
msgid "Save articles"
msgstr "Artikel speichern"
#: src/keymap.cpp:113
msgid "Go to next entry"
msgstr "Zum nächsten Eintrag gehen"
#: src/keymap.cpp:120
msgid "Go to previous entry"
msgstr "Zum vorherigen Eintrag gehen"
#: src/keymap.cpp:127
msgid "Go to next unread article"
msgstr "Zum nächsten ungelesenen Artikel gehen"
#: src/keymap.cpp:134
msgid "Go to previous unread article"
msgstr "Zum vorherigen ungelesenen Artikel gehen"
#: src/keymap.cpp:141
msgid "Go to a random unread article"
msgstr "Zu einem zufälligen, ungelesenen Artikel gehen"
#: src/keymap.cpp:148
msgid "Open URL of article, or entry in URL view. Mark read"
msgstr ""
"URL des Artikels oder Eintrags in der URL-Ansicht öffnen and als gelesen "
"markieren"
#: src/keymap.cpp:155
msgid "Open all unread items of selected feed in browser"
msgstr "Alle ungelesenen Artikel des gewählten Feeds im Browser öffnen"
#: src/keymap.cpp:162
msgid "Open all unread items of selected feed in browser and mark read"
msgstr ""
"Alle ungelesenen Artikel des gewählten Feeds im Browser öffnen and als "
"gelesen markieren"
#: src/keymap.cpp:170
msgid "Open URL of article, feed, or entry in URL view"
msgstr "URL des Artikels, Feeds oder Eintrags in der URL-Ansicht öffnen"
#: src/keymap.cpp:177
msgid "Open URL of article, feed, or entry in a browser, non-interactively"
msgstr ""
"URL des Artikels, Feeds oder Eintrags nicht-interaktiv im Browser öffnen"
#: src/keymap.cpp:184
msgid "Open help dialog"
msgstr "Hilfe-Dialog öffnen"
#: src/keymap.cpp:191
msgid "Toggle source view"
msgstr "Quellansicht umschalten"
#: src/keymap.cpp:198
msgid "Toggle read status for article"
msgstr "Gelesen-Status für Artikel umschalten"
#: src/keymap.cpp:205
msgid "Toggle show read feeds/articles"
msgstr "Ansicht der gelesenen Feeds/Artikel umschalten"
#: src/keymap.cpp:212
msgid "Show URLs in current article"
msgstr "URLs im aktuellen Artikel zeigen"
#: src/keymap.cpp:219
msgid "Clear current tag"
msgstr "Aktuellen Tag löschen"
#: src/keymap.cpp:226 src/keymap.cpp:233
msgid "Select tag"
msgstr "Tag auswählen"
#: src/keymap.cpp:240
msgid "Open search dialog"
msgstr "Suchdialog öffnen"
#: src/keymap.cpp:254
msgid "Goto item with title"
msgstr "Springe zu Eintrag mit Titel"
#: src/keymap.cpp:261
msgid "Add download to queue"
msgstr "Download zur Warteschlange hinzufügen"
#: src/keymap.cpp:268
msgid "Reload the list of URLs from the configuration"
msgstr "Liste der URLs aus der Konfiguration neu laden"
#: src/keymap.cpp:275
msgid "Download file"
msgstr "Datei herunterladen"
#: src/keymap.cpp:282
msgid "Cancel download"
msgstr "Download abbrechen"
#: src/keymap.cpp:289
msgid "Mark download as deleted"
msgstr "Download als gelöscht markieren"
#: src/keymap.cpp:296
msgid "Purge finished and deleted downloads from queue"
msgstr "Fertige und gelöschte Downloads aus Warteschlange aufräumen"
#: src/keymap.cpp:303
msgid "Toggle automatic download on/off"
msgstr "Automatisches Herunterladen ein-/ausschalten"
#: src/keymap.cpp:310
msgid "Start player with currently selected download"
msgstr "Player mit aktuell ausgewähltem Download starten"
#: src/keymap.cpp:317
msgid "Mark file as finished (not played)"
msgstr "Markiere Datei als fertig (nicht gespielt)"
#: src/keymap.cpp:324
msgid "Increase the number of concurrent downloads"
msgstr "Anzahl der parallelen Downloads erhöhen"
#: src/keymap.cpp:331
msgid "Decrease the number of concurrent downloads"
msgstr "Anzahl der parallelen Downloads verringern"
#: src/keymap.cpp:338
msgid "Redraw screen"
msgstr "Bildschirm neu zeichnen"
#: src/keymap.cpp:345
msgid "Open the commandline"
msgstr "Die Kommandozeile öffnen"
#: src/keymap.cpp:352
msgid "Set a filter"
msgstr "Einen Filter setzen"
#: src/keymap.cpp:359
msgid "Select a predefined filter"
msgstr "Einen vordefinierten Filter auswählen"
#: src/keymap.cpp:366
msgid "Clear currently set filter"
msgstr "Aktuell gesetzten Filter löschen"
#: src/keymap.cpp:373
msgid "Bookmark current link/article"
msgstr "Lesezeichen für aktuellen Link/Artikel speichern"
#: src/keymap.cpp:380
msgid "Edit flags"
msgstr "Flags bearbeiten"
#: src/keymap.cpp:387
msgid "Go to next feed"
msgstr "Zum nächsten Feed gehen"
#: src/keymap.cpp:394
msgid "Go to previous feed"
msgstr "Zum vorherigen Feed gehen"
#: src/keymap.cpp:401
msgid "Go to next unread feed"
msgstr "Zum nächsten ungelesenen Feed gehen"
#: src/keymap.cpp:408
msgid "Go to previous unread feed"
msgstr "Zum vorherigen ungelesenen Feed gehen"
#: src/keymap.cpp:415
msgid "Call a macro"
msgstr "Makro aufrufen"
#: src/keymap.cpp:422
msgid "Delete article"
msgstr "Artikel löschen"
#: src/keymap.cpp:429
msgid "Delete all articles"
msgstr "Alle Artikel löschen"
#: src/keymap.cpp:436
msgid "Purge deleted articles"
msgstr "Gelöschte Artikel entfernen"
#: src/keymap.cpp:443
msgid "Edit subscribed URLs"
msgstr "Abonnierte URLs bearbeiten"
#: src/keymap.cpp:450
msgid "Close currently selected dialog"
msgstr "Aktuell ausgewählten Feed schließen"
#: src/keymap.cpp:457
msgid "View list of open dialogs"
msgstr "Liste von offenen Dialogen ansehen"
#: src/keymap.cpp:464
msgid "Go to next dialog"
msgstr "Zum nächsten Dialog gehen"
#: src/keymap.cpp:471
msgid "Go to previous dialog"
msgstr "Zum vorherigen Dialog gehen"
#: src/keymap.cpp:478
msgid "Pipe article to command"
msgstr "Artikel zu Befehl umleiten"
#: src/keymap.cpp:485
msgid "Sort current list"
msgstr "Aktuelle Liste sortieren"
#: src/keymap.cpp:492
msgid "Sort current list (reverse)"
msgstr "Aktuelle Liste sortieren (umgekehrt)"
#: src/keymap.cpp:500
msgid "Return to previous search results (if any)"
msgstr "Zum vorherigen Suchergebnis zurückkehren (sofern vorhanden)"
#: src/keymap.cpp:507
msgid "Go to the feed of the article"
msgstr "Zum Feed des Artikels gehen"
#: src/keymap.cpp:515
msgid "Open URL 1"
msgstr "Öffne URL 1"
#: src/keymap.cpp:522
msgid "Open URL 2"
msgstr "Öffne URL 2"
#: src/keymap.cpp:529
msgid "Open URL 3"
msgstr "Öffne URL 3"
#: src/keymap.cpp:536
msgid "Open URL 4"
msgstr "Öffne URL 4"
#: src/keymap.cpp:543
msgid "Open URL 5"
msgstr "Öffne URL 5"
#: src/keymap.cpp:550
msgid "Open URL 6"
msgstr "Öffne URL 6"
#: src/keymap.cpp:557
msgid "Open URL 7"
msgstr "Öffne URL 7"
#: src/keymap.cpp:564
msgid "Open URL 8"
msgstr "Öffne URL 8"
#: src/keymap.cpp:571
msgid "Open URL 9"
msgstr "Öffne URL 9"
#: src/keymap.cpp:578
msgid "Open URL 10"
msgstr "Öffne URL 10"
#: src/keymap.cpp:586
msgid "Start cmdline with 1"
msgstr "Kommandozeile mit 1 starten"
#: src/keymap.cpp:593
msgid "Start cmdline with 2"
msgstr "Kommandozeile mit 2 starten"
#: src/keymap.cpp:600
msgid "Start cmdline with 3"
msgstr "Kommandozeile mit 3 starten"
#: src/keymap.cpp:607
msgid "Start cmdline with 4"
msgstr "Kommandozeile mit 4 starten"
#: src/keymap.cpp:614
msgid "Start cmdline with 5"
msgstr "Kommandozeile mit 5 starten"
#: src/keymap.cpp:621
msgid "Start cmdline with 6"
msgstr "Kommandozeile mit 6 starten"
#: src/keymap.cpp:628
msgid "Start cmdline with 7"
msgstr "Kommandozeile mit 7 starten"
#: src/keymap.cpp:635
msgid "Start cmdline with 8"
msgstr "Kommandozeile mit 8 starten"
#: src/keymap.cpp:642
msgid "Start cmdline with 9"
msgstr "Kommandozeile mit 9 starten"
#: src/keymap.cpp:650
msgid "Move to the previous entry"
msgstr "Zum vorherigen Eintrag gehen"
#: src/keymap.cpp:657
msgid "Move to the next entry"
msgstr "Zum nächsten Eintrag gehen"
#: src/keymap.cpp:664
msgid "Move to the previous page"
msgstr "Zur vorherigen Seite gehen"
#: src/keymap.cpp:671
msgid "Move to the next page"
msgstr "Zur nächsten Seite gehen"
#: src/keymap.cpp:678
msgid "Move half page up"
msgstr "Halbe Seite nach oben gehen"
#: src/keymap.cpp:685
msgid "Move half page down"
msgstr "Halbe Seite nach unten gehen"
#: src/keymap.cpp:693
msgid "Move to the start of page/list"
msgstr "Zum Anfang der Seite/Liste gehen"
#: src/keymap.cpp:700
msgid "Move to the end of page/list"
msgstr "Zum Ende der Seite/Liste gehen"
#: src/keymap.cpp:951
#, c-format
msgid "`%s' is not a valid context"
msgstr "„%s“ ist kein gültiger Kontext"
#: src/keymap.cpp:956
#, c-format
msgid "`%s' is not a valid key command"
msgstr "„%s“ ist kein gültiges Tastenkommando"
#: src/keymap.cpp:982
msgid "failed to parse binding"
msgstr "Parsen der Tastenbelegung fehlgeschlagen"
#: src/keymap.cpp:1014
#, c-format
msgid "failed to parse operation sequence for %s"
msgstr "Parsen der Operationssequenz von %s fehlgeschlagen"
#: src/keymap.cpp:1032
#, c-format
msgid "`%s' is not a valid operation"
msgstr "„%s“ ist keine gültige Operation"
#: src/matcherexception.cpp:15
#, c-format
msgid "attribute `%s' is not available."
msgstr "Attribut „%s“ ist nicht verfügbar."
#: src/matcherexception.cpp:19
#, c-format
msgid "regular expression '%s' is invalid: %s"
msgstr "Regulärer Ausdruck „%s“ ist ungültig: %s"
#: src/opml.cpp:210
#, c-format
msgid "Error: failed to parse OPML file \"%s\""
msgstr "Fehler: Parsen der OPML-Datei „%s“ fehlgeschlagen"
#: src/pbcontroller.cpp:82
#, c-format
msgid "XDG: configuration directory '%s' not accessible, using '%s' instead."
msgstr ""
"XDG: Konfigurationsverzeichnis „%s“ nicht zugänglich, benutze stattdessen "
"„%s“."
#: src/pbcontroller.cpp:134
msgid "Fatal error: couldn't determine home directory!"
msgstr "Schwerer Fehler: Konnte das Home-Verzeichnis nicht feststellen!"
#: src/pbcontroller.cpp:138
#, c-format
msgid ""
"Please set the HOME environment variable or add a valid user for UID %u!"
msgstr ""
"Bitte setzen Sie die Umgebungsvariable HOME oder fügen Sie einen gültigen "
"Benutzer für UID %u hinzu!"
#: src/pbcontroller.cpp:159
#, c-format
msgid "Fatal error: couldn't create configuration directory `%s': (%i) %s"
msgstr ""
"Fataler Fehler: Konnte Konfigurationsverzeichnis „%s“ nicht anlegen: (%i) %s"
#: src/pbcontroller.cpp:219
#, c-format
msgid "%s: %d: invalid loglevel value"
msgstr "%s: %d: ungültiger Loglevel-Wert"
#: src/pbcontroller.cpp:317
msgid "Cleaning up queue..."
msgstr "Bereinige Warteschlange..."
#: src/pbcontroller.cpp:335
#, c-format
msgid ""
"%s %s\n"
"usage %s [-C <file>] [-q <file>] [-h]\n"
msgstr ""
"%s %s\n"
"Verwendung: %s [-C <configdatei>] [-q <warteschlangendatei>] [-h]\n"
#: src/pbcontroller.cpp:365
msgid "use <file> as lock file"
msgstr "<datei> als Sperrdatei verwenden"
#: src/pbcontroller.cpp:367
msgid "start download on startup"
msgstr "beim Programmstart automatisch herunterladen"
#: src/pbview.cpp:64
#, c-format
msgid "Queue (%u downloads in progress, %u total) - %.2f %s total"
msgstr ""
"Warteschlange (%u Downloads im Gange, %u insgesamt) - %.2f %s insgesamt"
#: src/pbview.cpp:71
#, c-format
msgid " - %u parallel downloads"
msgstr " - %u parallele Downloads"
#: src/pbview.cpp:168
msgid "Error: can't quit: download(s) in progress."
msgstr "Fehler: Kann nicht beenden: Download(s) im Gange."
#: src/pbview.cpp:203
msgid "Error: download needs to be finished before the file can be played."
msgstr ""
"Fehler: Download muss abgeschlossen sein bevor die Datei abgespielt werden "
"kann."
#: src/pbview.cpp:251
msgid "Error: unable to perform operation: download(s) in progress."
msgstr "Fehler: Kann Vorgang nicht durchführen: Download(s) im Gange."
#: src/pbview.cpp:289
msgid "KB/s"
msgstr "KiB/s"
#: src/pbview.cpp:291
msgid "MB/s"
msgstr "MiB/s"
#: src/pbview.cpp:293
msgid "GB/s"
msgstr "GiB/s"
#: src/pbview.cpp:380
msgid "Download"
msgstr "Herunterladen"
#: src/pbview.cpp:382
msgid "Delete"
msgstr "Löschen"
#: src/pbview.cpp:383
msgid "Purge Finished"
msgstr "fertige aufräumen"
#: src/pbview.cpp:384
msgid "Toggle Automatic Download"
msgstr "automatisches Herunterladen umschalten"
#: src/pbview.cpp:385
msgid "Play"
msgstr "Abspielen"
#: src/pbview.cpp:386
msgid "Mark as Finished"
msgstr "als fertig markieren"
#: src/queueloader.cpp:125
#, c-format
msgid ""
"WARNING: Comment found in %s. The queue file is regenerated when Podboat "
"exits and comments will be deleted. Press Enter to continue or Ctrl+C to "
"abort"
msgstr ""
"WARNUNG: Kommentar in %s gefunden. Die Warteschlangendatei wird beim Beenden "
"von Podboat neu generiert und alle Kommentare dabei gelöscht. Drücken Sie "
"Enter, um fortzufahren oder Strg+C, um abzubrechen"
#: src/regexmanager.cpp:123
#, c-format
msgid "`%s' is an invalid dialog type"
msgstr "„%s“ ist ein ungültiger Dialogtyp"
#: src/regexmanager.cpp:130 src/rssignores.cpp:46
#, c-format
msgid "`%s' is not a valid regular expression: %s"
msgstr "„%s“ is kein gültiger regulärer Ausdruck: %s"
#: src/reloader.cpp:92
#, c-format
msgid "%sLoading %s..."
msgstr "%sLade %s..."
#: src/reloader.cpp:129 src/reloader.cpp:134 src/reloader.cpp:139
#, c-format
msgid "Error while retrieving %s: %s"
msgstr "Fehler beim Abholen von %s: %s"
#: src/reloader.cpp:152
msgid "Error: invalid feed!"
msgstr "Fehler: Ungültiger Feed!"
#: src/rssfeed.cpp:42
msgid "too few arguments"
msgstr "zu wenige Parameter"
#: src/rssitem.cpp:127
msgid "%a, %d %b %Y %T %z"
msgstr "%a, %d %b %Y %T %z"
#: src/searchresultslistformaction.cpp:20
msgid "Prev search results"
msgstr "Vorheriges Suchergebnis"
#: src/searchresultslistformaction.cpp:65
msgid "Already in first search result."
msgstr "Bereits beim ersten Suchergebnis."
#: src/searchresultslistformaction.cpp:89
#, c-format
msgid "Search Result - '%s'"
msgstr "Suchergebnis - „%s“"
#: src/selectformaction.cpp:255 src/selectformaction.cpp:278
msgid "Select Tag"
msgstr "Tag auswählen"
#: src/selectformaction.cpp:258 src/selectformaction.cpp:280
msgid "Select Filter"
msgstr "Filter auswählen"
#: src/urlviewformaction.cpp:61 src/urlviewformaction.cpp:118
msgid "No links available!"
msgstr "Keine Links verfügbar!"
#: src/urlviewformaction.cpp:161
msgid "Save Bookmark"
msgstr "Lesezeichen speichern"
#: src/urlviewformaction.cpp:183
msgid "URLs"
msgstr "URLs"
#: src/utils.cpp:758
#, c-format
msgid "Failed to open file: %s"
msgstr "Öffnen der Datei fehlgeschlagen: %s"
#: src/utils.cpp:762
#, c-format
msgid "Failed to read line %u: %s"
msgstr "Lesen der Zeile %u fehlgeschlagen: %s"
#: src/view.cpp:165
msgid "Error: failed to execute startup commands"
msgstr "Fehler: Konnte die Programmstartbefehle nicht ausführen"
#: src/view.cpp:291
msgid "Operation ignored in modal dialog"
msgstr "Operation in modalem Dialog ignoriert"
#: src/view.cpp:408
#, c-format
msgid "Running browser: %s"
msgstr "Starte Browser: %s"
#: src/view.cpp:475 src/view.cpp:501
msgid "Error: feed contains no items!"
msgstr "Fehler: Feed enthält keine Elemente!"
#: src/view.cpp:644
msgid "No tags defined."
msgstr "Keine Tags definiert."
#: src/view.cpp:980
msgid "Updating query feed..."
msgstr "Aktualisiere Query-Feed..."
#: src/view.cpp:993
#, c-format
msgid "Error: couldn't prepare query feed: %s"
msgstr "Fehler: Konnte Query-Feed nicht aktualisieren: %s"
#: rss/atomparser.cpp:17 rss/parser.cpp:379 rss/rss09xparser.cpp:21
#: rss/rss10parser.cpp:18 rss/rss20parser.cpp:17
msgid "XML root node is NULL"
msgstr "XML-Rootknoten ist NULL"
#: rss/parser.cpp:263
msgid "could not parse buffer"
msgstr "konnte Puffer nicht parsen"
#: rss/parser.cpp:287
msgid "could not parse file"
msgstr "konnte Datei nicht parsen"
#: rss/parser.cpp:312
msgid "no RSS version"
msgstr "keine RSS-Version"
#: rss/parser.cpp:328
msgid "invalid RSS version"
msgstr "ungültige RSS-Version"
#: rss/parser.cpp:349 rss/parser.cpp:360
msgid "invalid Atom version"
msgstr "ungültige Atom-Version"
#: rss/parser.cpp:365
msgid "no Atom version"
msgstr "keine Atom-Version"
#: rss/rss09xparser.cpp:32
msgid "no RSS channel found"
msgstr "kein RSS-Channel gefunden"
#: rss/rssparserfactory.cpp:31
msgid "unsupported feed format"
msgstr "nicht unterstütztes Feed-Format"
#: rust/libnewsboat/src/cliargsparser.rs:236
msgid "%s: %s: invalid loglevel value"
msgstr "%s: %s: ungültiger Loglevel-Wert"
#: rust/libnewsboat/src/configpaths.rs:85
msgid ""
"Fatal error: couldn't determine home directory!\n"
"Please set the HOME environment variable or add a valid user for UID %u!"
msgstr ""
"Fataler Fehler: Das Heimatverzeichnis konnte nicht ermittelt werden!\n"
"Bitte setzen Sie die Umgebungsvariable HOME oder fügen Sie einen gültigen "
"Benutzer für UID %u hinzu!"
#: rust/libnewsboat/src/configpaths.rs:146
msgid "Migrating configs and data from Newsbeuter's XDG dirs..."
msgstr ""
"Migriere Konfigurationen und Daten aus Newsbeuters XDG-Verzeichnissen..."
#: rust/libnewsboat/src/configpaths.rs:202
msgid "Migrating configs and data from ~/.newsbeuter/..."
msgstr "Migriere Konfigurationen und Daten aus „~/.newsbeuter/“..."
#: rust/libnewsboat/src/configpaths.rs:214
msgid "Aborting migration because mkdir on `%s' failed: %s"
msgstr ""
"Abbruch der Migration aufgrund eines Fehlers beim Anlegen des Verzeichnisses "
"„%s“: %s"
#: rust/libnewsboat/src/filterparser.rs:129
msgid "attribute name"
msgstr "Attributname"
#. Don't translate "between" -- it's a keyword, not an English word.
#: rust/libnewsboat/src/filterparser.rs:131
msgid "one of: =~, ==, =, !~, !=, <=, >=, <, >, between, #, !#"
msgstr "einer aus: =~, ==, =, !~, !=, <=, >=, <, >, between, #, !#"
#. The options ("quoted string" etc.) are not keywords, so please translate them.
#: rust/libnewsboat/src/filterparser.rs:133
msgid "one of: quoted string, range, number"
msgstr "einer aus: Text in Anführungszeichen, Bereich, Zahl"
#. The first %s is an integer offset at which trailing characters start, the
#. second %s is the tail itself.
#: rust/libnewsboat/src/filterparser.rs:426
msgid "Parse error: trailing characters after position %s: %s"
msgstr "Parsefehler: nachstehende Zeichen nach Position %s: %s"
#. The first %s is a zero-based offset into the string, the second %s is the
#. description of what the program expected at that point.
#: rust/libnewsboat/src/filterparser.rs:433
msgid "Parse error at position %s: expected %s"
msgstr "Parsefehler an Position %s: %s erwartet"
#: rust/libnewsboat/src/filterparser.rs:437
msgid "Internal parse error"
msgstr "Interner Parsefehler"
#: rust/libnewsboat/src/fslock.rs:60
msgid "Failed to open lock file '%s': %s"
msgstr "Öffnen der Sperrdatei „%s“ fehlgeschlagen: %s"
#: rust/libnewsboat/src/fslock.rs:63 rust/libnewsboat/src/fslock.rs:83
#: rust/libnewsboat/src/fslock.rs:115
msgid "<filename containing invalid UTF-8 codepoint>"
msgstr "<Dateiname enthält ungültigen UTF-8-Codepunkt>"
#: rust/libnewsboat/src/fslock.rs:80
msgid "Failed to write PID to lock file '%s': %s"
msgstr "Schreiben der PID in die Sperrdatei „%s“ fehlgeschlagen: %s"
#: rust/libnewsboat/src/fslock.rs:112
msgid "Failed to lock '%s', already locked by process with PID %s"
msgstr ""
"Sperren von „%s“ fehlgeschlagen, bereits von Prozess mit PID %s gesperrt"
#: rust/regex-rs/src/lib.rs:159 rust/regex-rs/src/lib.rs:164
msgid "regcomp returned code %i"
msgstr "regcomp brach mit Rückgabestatus %i ab"
#: rust/regex-rs/src/lib.rs:244 rust/regex-rs/src/lib.rs:248
msgid "regexec returned code %i"
msgstr "regexec brach mit Rückgabestatus %i ab"
|