aboutsummaryrefslogtreecommitdiffstats
path: root/view/de/hstrings.php
blob: 2c7ba67d4e71ddec272e5c2699efb404947bfcb8 (plain) (blame)
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
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
<?php

if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
	return ($n != 1);;
}}
;
App::$strings["parent"] = "Übergeordnetes Verzeichnis";
App::$strings["Collection"] = "Sammlung";
App::$strings["Principal"] = "Prinzipal";
App::$strings["Addressbook"] = "Adressbuch";
App::$strings["Calendar"] = "Kalender";
App::$strings["Schedule Inbox"] = "Posteingang für überwachte Kalender";
App::$strings["Schedule Outbox"] = "Postausgang für überwachte Kalender";
App::$strings["Unknown"] = "Unbekannt";
App::$strings["Files"] = "Dateien";
App::$strings["Total"] = "Summe";
App::$strings["Shared"] = "Geteilt";
App::$strings["Create"] = "Erstelle";
App::$strings["Upload"] = "Hochladen";
App::$strings["Name"] = "Name";
App::$strings["Type"] = "Typ";
App::$strings["Size"] = "Größe";
App::$strings["Last Modified"] = "Zuletzt geändert";
App::$strings["Edit"] = "Bearbeiten";
App::$strings["Delete"] = "Löschen";
App::$strings["You are using %1\$s of your available file storage."] = "Sie verwenden %1\$s von Ihrem verfügbaren Dateispeicher.";
App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Sie verwenden %1\$s von %2\$s verfügbarem Dateispeicher. (%3\$s&#37;)";
App::$strings["WARNING:"] = "WARNUNG:";
App::$strings["Create new folder"] = "Neuen Ordner anlegen";
App::$strings["Upload file"] = "Datei hochladen";
App::$strings["Permission denied."] = "Berechtigung verweigert.";
App::$strings["Not Found"] = "Nicht gefunden";
App::$strings["Page not found."] = "Seite nicht gefunden.";
App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut.";
App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
App::$strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar.";
App::$strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist";
App::$strings["network"] = "Netzwerk";
App::$strings["RSS"] = "RSS";
App::$strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert.";
App::$strings["Item not found."] = "Element nicht gefunden.";
App::$strings["# Accounts"] = "Anzahl der Konten";
App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten";
App::$strings["# expired accounts"] = "Anzahl der abgelaufenen Konten";
App::$strings["# expiring accounts"] = "Anzahl der ablaufenden Konten";
App::$strings["# Channels"] = "Anzahl der Kanäle";
App::$strings["# primary"] = "Anzahl der primären Kanäle";
App::$strings["# clones"] = "Anzahl der Klone";
App::$strings["Message queues"] = "Nachrichten-Warteschlangen";
App::$strings["Your software should be updated"] = "Die installierte Software sollte aktualisiert werden";
App::$strings["Administration"] = "Administration";
App::$strings["Summary"] = "Zusammenfassung";
App::$strings["Registered accounts"] = "Registrierte Konten";
App::$strings["Pending registrations"] = "Ausstehende Registrierungen";
App::$strings["Registered channels"] = "Registrierte Kanäle";
App::$strings["Active plugins"] = "Aktive Plug-Ins";
App::$strings["Version"] = "Version";
App::$strings["Repository version (master)"] = "Repository-Version (master)";
App::$strings["Repository version (dev)"] = "Repository-Version (dev)";
App::$strings["Site settings updated."] = "Site-Einstellungen aktualisiert.";
App::$strings["Default"] = "Standard";
App::$strings["mobile"] = "mobil";
App::$strings["experimental"] = "experimentell";
App::$strings["unsupported"] = "nicht unterstützt";
App::$strings["No"] = "Nein";
App::$strings["Yes - with approval"] = "Ja - mit Zustimmung";
App::$strings["Yes"] = "Ja";
App::$strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server";
App::$strings["My site has paid access only"] = "Meine Seite hat nur bezahlten Zugriff";
App::$strings["My site has free access only"] = "Meine Seite hat nur freien Zugriff";
App::$strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades";
App::$strings["Site"] = "Seite";
App::$strings["Submit"] = "Bestätigen";
App::$strings["Registration"] = "Registrierung";
App::$strings["File upload"] = "Dateiupload";
App::$strings["Policies"] = "Richtlinien";
App::$strings["Advanced"] = "Fortgeschritten";
App::$strings["Site name"] = "Seitenname";
App::$strings["Banner/Logo"] = "Banner/Logo";
App::$strings["Administrator Information"] = "Administrator-Informationen";
App::$strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden.";
App::$strings["System language"] = "System-Sprache";
App::$strings["System theme"] = "System-Theme";
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>";
App::$strings["Mobile system theme"] = "Mobile System-Theme:";
App::$strings["Theme for mobile devices"] = "Theme für mobile Geräte";
App::$strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben";
App::$strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)";
App::$strings["Maximum image size"] = "Maximale Bildgröße";
App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung).";
App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?";
App::$strings["Invitation only"] = "Nur mit Einladung";
App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden.";
App::$strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?";
App::$strings["Register text"] = "Registrierungstext";
App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt.";
App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)";
App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen.";
App::$strings["Preserve site homepage URL"] = "Homepage-URL schützen";
App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten.";
App::$strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt";
App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit.";
App::$strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
App::$strings["Allowed email domains"] = "Erlaubte Domains für E-Mails";
App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
App::$strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails";
App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde.";
App::$strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen";
App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen).";
App::$strings["Force publish"] = "Veröffentlichung erzwingen";
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen.";
App::$strings["Import Public Streams"] = "Öffentliche Beiträge importieren";
App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert.";
App::$strings["Login on Homepage"] = "Log-in auf der Startseite";
App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden.";
App::$strings["Enable context help"] = "Kontext-Hilfe aktivieren";
App::$strings["Display contextual help for the current page when the help button is pressed."] = "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird.";
App::$strings["Directory Server URL"] = "Verzeichnisserver-URL";
App::$strings["Default directory server"] = "Standard-Verzeichnisserver";
App::$strings["Proxy user"] = "Proxy Benutzer";
App::$strings["Proxy URL"] = "Proxy URL";
App::$strings["Network timeout"] = "Netzwerk-Timeout";
App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen).";
App::$strings["Delivery interval"] = "Auslieferung Intervall";
App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server.";
App::$strings["Deliveries per process"] = "Zustellungen pro Prozess";
App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5.";
App::$strings["Poll interval"] = "Abfrageintervall";
App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet.";
App::$strings["Maximum Load Average"] = "Maximales Load Average";
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50";
App::$strings["Expiration period in days for imported (grid/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen";
App::$strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte";
App::$strings["Off"] = "Aus";
App::$strings["On"] = "An";
App::$strings["Lock feature %s"] = "Blockiere die Funktion %s";
App::$strings["Manage Additional Features"] = "Zusätzliche Funktionen verwalten";
App::$strings["No server found"] = "Kein Server gefunden";
App::$strings["ID"] = "ID";
App::$strings["for channel"] = "für Kanal";
App::$strings["on server"] = "auf Server";
App::$strings["Status"] = "Status";
App::$strings["Server"] = "Server";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Alle anderen eingebetteten Inhalte werden gefiltert, <strong>es sei denn</strong>, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert.";
App::$strings["Security"] = "Sicherheit";
App::$strings["Block public"] = "Öffentlichen Zugriff blockieren";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist.";
App::$strings["Set \"Transport Security\" HTTP header"] = "Setze den \"Transport Security\" HTTP Header";
App::$strings["Set \"Content Security Policy\" HTTP header"] = "Setze den \"Content Security Policy\" HTTP Header";
App::$strings["Allow communications only from these sites"] = "Kommunikation nur von diesen Seiten erlauben";
App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben.";
App::$strings["Block communications from these sites"] = "Kommunikation von diesen Seiten blockieren";
App::$strings["Allow communications only from these channels"] = "Kommunikation nur von diesen Kanälen erlauben";
App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. ";
App::$strings["Block communications from these channels"] = "Kommunikation von folgenden Kanälen blockieren";
App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links.";
App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains";
App::$strings["One site per line. By default embedded content is filtered."] = "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert.";
App::$strings["Block embedded HTML from these domains"] = "Eingebettete HTML Inhalte von diesen Seiten blockieren";
App::$strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle.";
App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt.";
App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt.";
App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden.";
App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen.";
App::$strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen";
App::$strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)";
App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen";
App::$strings["Queue Statistics"] = "Warteschlangenstatistiken";
App::$strings["Total Entries"] = "Einträge insgesamt";
App::$strings["Priority"] = "Priorität";
App::$strings["Destination URL"] = "Ziel-URL";
App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markieren";
App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren";
App::$strings["Last known contact"] = "Letzter Kontakt";
App::$strings["%s account blocked/unblocked"] = array(
	0 => "%s Konto blockiert/freigegeben",
	1 => "%s Konten blockiert/freigegeben",
);
App::$strings["%s account deleted"] = array(
	0 => "%s Konto gelöscht",
	1 => "%s Konten gelöscht",
);
App::$strings["Account not found"] = "Konto nicht gefunden";
App::$strings["Account '%s' deleted"] = "Konto '%s' gelöscht";
App::$strings["Account '%s' blocked"] = "Konto '%s' blockiert";
App::$strings["Account '%s' unblocked"] = "Konto '%s' freigegeben";
App::$strings["Users"] = "Benutzer";
App::$strings["select all"] = "Alle auswählen";
App::$strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
App::$strings["Request date"] = "Antragsdatum";
App::$strings["Email"] = "E-Mail";
App::$strings["No registrations."] = "Keine Registrierungen.";
App::$strings["Approve"] = "Genehmigen";
App::$strings["Deny"] = "Verweigern";
App::$strings["Block"] = "Blockieren";
App::$strings["Unblock"] = "Freigeben";
App::$strings["All Channels"] = "Alle Kanäle";
App::$strings["Register date"] = "Registrierungs-Datum";
App::$strings["Last login"] = "Letzte Anmeldung";
App::$strings["Expires"] = "Verfällt";
App::$strings["Service Class"] = "Service-Klasse";
App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?";
App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?";
App::$strings["%s channel censored/uncensored"] = array(
	0 => "%s Kanal gesperrt/freigegeben",
	1 => "%s Kanäle gesperrt/freigegeben",
);
App::$strings["%s channel code allowed/disallowed"] = array(
	0 => "Code für %s Kanal gesperrt/freigegeben",
	1 => "Code für %s Kanäle gesperrt/freigegeben",
);
App::$strings["%s channel deleted"] = array(
	0 => "%s Kanal gelöscht",
	1 => "%s Kanäle gelöscht",
);
App::$strings["Channel not found"] = "Kanal nicht gefunden";
App::$strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht";
App::$strings["Channel '%s' censored"] = "Kanal '%s' gesperrt";
App::$strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben";
App::$strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben";
App::$strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt";
App::$strings["Channels"] = "Kanäle";
App::$strings["Censor"] = "Sperren";
App::$strings["Uncensor"] = "Freigeben";
App::$strings["Allow Code"] = "Code erlauben";
App::$strings["Disallow Code"] = "Code sperren";
App::$strings["Channel"] = "Kanal";
App::$strings["UID"] = "UID";
App::$strings["Address"] = "Adresse";
App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?";
App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?";
App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert.";
App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert.";
App::$strings["Disable"] = "Deaktivieren";
App::$strings["Enable"] = "Aktivieren";
App::$strings["Plugins"] = "Plug-Ins";
App::$strings["Toggle"] = "Umschalten";
App::$strings["Settings"] = "Einstellungen";
App::$strings["Author: "] = "Autor: ";
App::$strings["Maintainer: "] = "Betreuer:";
App::$strings["Minimum project version: "] = "Minimale Version des Projekts:";
App::$strings["Maximum project version: "] = "Maximale Version des Projekts:";
App::$strings["Minimum PHP version: "] = "Minimale PHP Version:";
App::$strings["Requires: "] = "Benötigt:";
App::$strings["Disabled - version incompatibility"] = "Abgeschaltet - Versionsinkompatibilität";
App::$strings["Enter the public git repository URL of the plugin repo."] = "Gib die öffentliche Git-Repository-URL des Plugin-Repository an.";
App::$strings["Plugin repo git URL"] = "Plugin-Repository Git URL";
App::$strings["Custom repo name"] = "Benutzerdefinierter Repository-Name";
App::$strings["(optional)"] = "(optional)";
App::$strings["Download Plugin Repo"] = "Plugin-Repository herunterladen";
App::$strings["Install new repo"] = "Neues Repository installieren";
App::$strings["Install"] = "Installieren";
App::$strings["Cancel"] = "Abbrechen";
App::$strings["Add Plugin Repo"] = "Plugin-Repository hinzufügen";
App::$strings["Update"] = "Aktualisieren";
App::$strings["Switch branch"] = "Zweig/Branch wechseln";
App::$strings["Remove"] = "Entferne";
App::$strings["No themes found."] = "Keine Theme gefunden.";
App::$strings["Screenshot"] = "Bildschirmfoto";
App::$strings["Themes"] = "Themes";
App::$strings["[Experimental]"] = "[Experimentell]";
App::$strings["[Unsupported]"] = "[Nicht unterstützt]";
App::$strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert.";
App::$strings["Logs"] = "Protokolle";
App::$strings["Clear"] = "Leeren";
App::$strings["Debugging"] = "Debugging";
App::$strings["Log file"] = "Protokolldatei";
App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Webserver schreibbar sein. Relativ zum \$Projectname-Stammverzeichnis.";
App::$strings["Log level"] = "Protokollstufe";
App::$strings["New Profile Field"] = "Neues Profilfeld";
App::$strings["Field nickname"] = "Kurzname für das Feld";
App::$strings["System name of field"] = "Systemname des Feldes";
App::$strings["Input type"] = "Art des Inhalts";
App::$strings["Field Name"] = "Feldname";
App::$strings["Label on profile pages"] = "Bezeichnung auf Profilseiten";
App::$strings["Help text"] = "Hilfetext";
App::$strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)";
App::$strings["Save"] = "Speichern";
App::$strings["Field definition not found"] = "Feld-Definition nicht gefunden";
App::$strings["Edit Profile Field"] = "Profilfeld bearbeiten";
App::$strings["Profile Fields"] = "Profil Felder";
App::$strings["Basic Profile Fields"] = "Notwendige Profil Felder";
App::$strings["Advanced Profile Fields"] = "Erweiterte Profil Felder";
App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Felder)";
App::$strings["All available fields"] = "Alle verfügbaren Felder";
App::$strings["Custom Fields"] = "Benutzerdefinierte Felder";
App::$strings["Create Custom Field"] = "Erstelle benutzerdefiniertes Feld";
App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren";
App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:";
App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen.";
App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?";
App::$strings["App installed."] = "App installiert.";
App::$strings["Malformed app."] = "Fehlerhafte App.";
App::$strings["Embed code"] = "Code einbetten";
App::$strings["Edit App"] = "App bearbeiten";
App::$strings["Create App"] = "App erstellen";
App::$strings["Name of app"] = "Name der App";
App::$strings["Required"] = "Benötigt";
App::$strings["Location (URL) of app"] = "Ort (URL) der App";
App::$strings["Description"] = "Beschreibung";
App::$strings["Photo icon URL"] = "URL zum Icon";
App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional";
App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)";
App::$strings["Version ID"] = "Versions-ID";
App::$strings["Price of app"] = "Preis der App";
App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen";
App::$strings["Apps"] = "Apps";
App::$strings["Item not available."] = "Element nicht verfügbar.";
App::$strings["Invalid item."] = "Ungültiges Element.";
App::$strings["Channel not found."] = "Kanal nicht gefunden.";
App::$strings["Block Name"] = "Block-Name";
App::$strings["Blocks"] = "Blöcke";
App::$strings["Block Title"] = "Titel des Blocks";
App::$strings["Created"] = "Erstellt";
App::$strings["Edited"] = "Geändert";
App::$strings["Share"] = "Teilen";
App::$strings["View"] = "Ansicht";
App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt";
App::$strings["My Bookmarks"] = "Meine Lesezeichen";
App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte";
App::$strings["Permissions denied."] = "Berechtigung verweigert.";
App::$strings["l, F j"] = "l, j. F";
App::$strings["Link to Source"] = "Link zur Quelle";
App::$strings["Edit Event"] = "Termin bearbeiten";
App::$strings["Create Event"] = "Termin anlegen";
App::$strings["Previous"] = "Voriges";
App::$strings["Next"] = "Nächste";
App::$strings["Export"] = "Exportieren";
App::$strings["Import"] = "Import";
App::$strings["Today"] = "Heute";
App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können.";
App::$strings["Posts and comments"] = "Beiträge und Kommentare";
App::$strings["Only posts"] = "Nur Beiträge";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet.";
App::$strings["Room not found"] = "Chatraum nicht gefunden";
App::$strings["Leave Room"] = "Raum verlassen";
App::$strings["Delete Room"] = "Raum löschen";
App::$strings["I am away right now"] = "Ich bin gerade nicht da";
App::$strings["I am online"] = "Ich bin online";
App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen";
App::$strings["Please enter a link URL:"] = "Gib eine URL ein:";
App::$strings["Encrypt text"] = "Text verschlüsseln";
App::$strings["Insert web link"] = "Link einfügen";
App::$strings["Feature disabled."] = "Funktion deaktiviert.";
App::$strings["New Chatroom"] = "Neuer Chatraum";
App::$strings["Chatroom name"] = "Chatraumname";
App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)";
App::$strings["Permissions"] = "Berechtigungen";
App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume";
App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar";
App::$strings["Create New"] = "Neu anlegen";
App::$strings["Expiration"] = "Verfall";
App::$strings["min"] = "min";
App::$strings["Away"] = "Abwesend";
App::$strings["Online"] = "Online";
App::$strings["No channel."] = "Kein Kanal.";
App::$strings["Common connections"] = "Gemeinsame Verbindungen";
App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen.";
App::$strings["Continue"] = "Fortfahren";
App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung";
App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren";
App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc.";
App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig.";
App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:";
App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite.";
App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)";
App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal";
App::$strings["Blocked"] = "Blockiert";
App::$strings["Ignored"] = "Ignoriert";
App::$strings["Hidden"] = "Versteckt";
App::$strings["Archived"] = "Archiviert";
App::$strings["New"] = "Neu";
App::$strings["All"] = "Alle";
App::$strings["New Connections"] = "Neue Verbindungen";
App::$strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen";
App::$strings["All Connections"] = "Alle Verbindungen";
App::$strings["Show all connections"] = "Alle Verbindungen anzeigen";
App::$strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen";
App::$strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen";
App::$strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen";
App::$strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen";
App::$strings["Pending approval"] = "Wartet auf Genehmigung";
App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
App::$strings["Edit connection"] = "Verbindung bearbeiten";
App::$strings["Delete connection"] = "Verbindung löschen";
App::$strings["Channel address"] = "Kanaladresse";
App::$strings["Network"] = "Netzwerk";
App::$strings["Connected"] = "Verbunden";
App::$strings["Approve connection"] = "Verbindung genehmigen";
App::$strings["Ignore connection"] = "Verbindung ignorieren";
App::$strings["Ignore"] = "Ignorieren";
App::$strings["Recent activity"] = "Kürzliche Aktivitäten";
App::$strings["Connections"] = "Verbindungen";
App::$strings["Search"] = "Suche";
App::$strings["Search your connections"] = "Verbindungen durchsuchen";
App::$strings["Connections search"] = "Verbindung suchen";
App::$strings["Find"] = "Finde";
App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen.";
App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden.";
App::$strings["Connection updated."] = "Verbindung aktualisiert.";
App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren.";
App::$strings["is now connected to"] = "ist jetzt verbunden mit";
App::$strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen.";
App::$strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar.";
App::$strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen.";
App::$strings["Connection has been removed."] = "Verbindung wurde gelöscht.";
App::$strings["View Profile"] = "Profil ansehen";
App::$strings["View %s's profile"] = "%ss Profil ansehen";
App::$strings["Refresh Permissions"] = "Zugriffsrechte neu laden";
App::$strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen";
App::$strings["Recent Activity"] = "Kürzliche Aktivitäten";
App::$strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare";
App::$strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen";
App::$strings["This connection is blocked!"] = "Die Verbindung ist geblockt!";
App::$strings["Unignore"] = "Nicht ignorieren";
App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen";
App::$strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!";
App::$strings["Unarchive"] = "Aus Archiv zurückholen";
App::$strings["Archive"] = "Archivieren";
App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)";
App::$strings["This connection is archived!"] = "Die Verbindung ist archiviert!";
App::$strings["Unhide"] = "Wieder sichtbar machen";
App::$strings["Hide"] = "Verstecken";
App::$strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen";
App::$strings["This connection is hidden!"] = "Die Verbindung ist versteckt!";
App::$strings["Delete this connection"] = "Verbindung löschen";
App::$strings["Me"] = "Ich";
App::$strings["Family"] = "Familie";
App::$strings["Friends"] = "Freunde";
App::$strings["Acquaintances"] = "Bekannte";
App::$strings["Approve this connection"] = "Verbindung genehmigen";
App::$strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen";
App::$strings["Set Affinity"] = "Beziehung festlegen";
App::$strings["Set Profile"] = "Profil festlegen";
App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen";
App::$strings["none"] = "Keine";
App::$strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:";
App::$strings["Connection: %s"] = "Verbindung: %s";
App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden";
App::$strings["Connection requests will be approved without your interaction"] = "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist.";
App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist";
App::$strings["Available locations:"] = "Verfügbare Klone:";
App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet.";
App::$strings["Connection Tools"] = "Verbindungswerkzeuge";
App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen";
App::$strings["Rating"] = "Bewertung";
App::$strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen";
App::$strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen";
App::$strings["Custom Filter"] = "Benutzerdefinierter Filter";
App::$strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren";
App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren.";
App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren";
App::$strings["This information is public!"] = "Diese Information ist öffentlich!";
App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung";
App::$strings["inherited"] = "geerbt";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird.";
App::$strings["Their Settings"] = "Deren Einstellungen";
App::$strings["My Settings"] = "Meine Einstellungen";
App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen <a href=\"settings\">Sicherheits- und Privatsphäre-Einstellungen</a> dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden.";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen <a href=\"settings\">Sicherheits- und Privatsphäre-Einstellungen</a> dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen.";
App::$strings["Last update:"] = "Letzte Aktualisierung:";
App::$strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl.";
App::$strings["Cover Photos"] = "Cover Foto";
App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen.";
App::$strings["Unable to process image"] = "Kann Bild nicht verarbeiten";
App::$strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen.";
App::$strings["Unable to process image."] = "Kann Bild nicht verarbeiten.";
App::$strings["female"] = "weiblich";
App::$strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert";
App::$strings["male"] = "männlich";
App::$strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert";
App::$strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert";
App::$strings["cover photo"] = "Cover Foto";
App::$strings["Photo not available."] = "Foto nicht verfügbar.";
App::$strings["Upload File:"] = "Datei hochladen:";
App::$strings["Select a profile:"] = "Wähle ein Profil:";
App::$strings["Upload Cover Photo"] = "Cover Foto hochladen";
App::$strings["or"] = "oder";
App::$strings["skip this step"] = "diesen Schritt überspringen";
App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben";
App::$strings["Crop Image"] = "Bild zuschneiden";
App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu.";
App::$strings["Done Editing"] = "Bearbeitung fertigstellen";
App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert.";
App::$strings["%d rating"] = array(
	0 => "%d Bewertung",
	1 => "%d Bewertungen",
);
App::$strings["Gender: "] = "Geschlecht:";
App::$strings["Status: "] = "Status:";
App::$strings["Homepage: "] = "Webseite:";
App::$strings["Age:"] = "Alter:";
App::$strings["Location:"] = "Ort:";
App::$strings["Description:"] = "Beschreibung:";
App::$strings["Hometown:"] = "Heimatstadt:";
App::$strings["About:"] = "Über:";
App::$strings["Connect"] = "Verbinden";
App::$strings["Public Forum:"] = "Öffentliches Forum:";
App::$strings["Keywords: "] = "Schlüsselwörter:";
App::$strings["Don't suggest"] = "Nicht vorschlagen";
App::$strings["Common connections:"] = "Gemeinsame Verbindungen:";
App::$strings["Global Directory"] = "Globales Verzeichnis";
App::$strings["Local Directory"] = "Lokales Verzeichnis";
App::$strings["Finding:"] = "Ergebnisse:";
App::$strings["Channel Suggestions"] = "Kanal-Vorschläge";
App::$strings["next page"] = "nächste Seite";
App::$strings["previous page"] = "vorherige Seite";
App::$strings["Sort options"] = "Sortieroptionen";
App::$strings["Alphabetic"] = "alphabetisch";
App::$strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch";
App::$strings["Newest to Oldest"] = "Neueste zuerst";
App::$strings["Oldest to Newest"] = "Älteste zuerst";
App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein).";
App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver";
App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken";
App::$strings["Permission denied"] = "Keine Berechtigung";
App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)";
App::$strings["no results"] = "keine Ergebnisse";
App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s";
App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet";
App::$strings["queued"] = "zur Warteschlange hinzugefügt";
App::$strings["posted"] = "zugestellt";
App::$strings["accepted for delivery"] = "für Zustellung akzeptiert";
App::$strings["updated"] = "aktualisiert";
App::$strings["update ignored"] = "Aktualisierung ignoriert";
App::$strings["permission denied"] = "Zugriff verweigert";
App::$strings["recipient not found"] = "Empfänger nicht gefunden.";
App::$strings["mail recalled"] = "Mail widerrufen";
App::$strings["duplicate mail received"] = "Doppelte Mail erhalten";
App::$strings["mail delivered"] = "Mail zugestellt";
App::$strings["Item not found"] = "Element nicht gefunden";
App::$strings["Title (optional)"] = "Titel (optional)";
App::$strings["Edit Block"] = "Block bearbeiten";
App::$strings["Layout Name"] = "Layout-Name";
App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)";
App::$strings["Edit Layout"] = "Layout bearbeiten";
App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden.";
App::$strings["Edit post"] = "Bearbeite Beitrag";
App::$strings["Page link"] = "Seiten-Link";
App::$strings["Edit Webpage"] = "Webseite bearbeiten";
App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert.";
App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden.";
App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn.";
App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden.";
App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich.";
App::$strings["Event not found."] = "Termin nicht gefunden.";
App::$strings["event"] = "Termin";
App::$strings["Edit event title"] = "Termintitel bearbeiten";
App::$strings["Event title"] = "Termintitel";
App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)";
App::$strings["Edit Category"] = "Kategorie bearbeiten";
App::$strings["Category"] = "Kategorie";
App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten";
App::$strings["Start date and time"] = "Startdatum und -zeit";
App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant";
App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten";
App::$strings["Finish date and time"] = "Enddatum und -zeit";
App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen";
App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien.";
App::$strings["Edit Description"] = "Beschreibung bearbeiten";
App::$strings["Edit Location"] = "Ort bearbeiten";
App::$strings["Location"] = "Ort";
App::$strings["Share this event"] = "Den Termin teilen";
App::$strings["Preview"] = "Vorschau";
App::$strings["Permission settings"] = "Berechtigungs-Einstellungen";
App::$strings["Advanced Options"] = "Weitere Optionen";
App::$strings["Edit event"] = "Termin bearbeiten";
App::$strings["Delete event"] = "Termin löschen";
App::$strings["calendar"] = "Kalender";
App::$strings["Event removed"] = "Termin gelöscht";
App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden";
App::$strings["Photos"] = "Fotos";
App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen";
App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox";
App::$strings["Save to Folder:"] = "Speichern in Ordner:";
App::$strings["- select -"] = "– auswählen –";
App::$strings["Permission Denied."] = "Zugriff verweigert.";
App::$strings["File not found."] = "Datei nicht gefunden.";
App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten";
App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern";
App::$strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden";
App::$strings["Return to file list"] = "Zurück zur Dateiliste";
App::$strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen";
App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken";
App::$strings["Share this file"] = "Diese Datei freigeben";
App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen";
App::$strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen";
App::$strings["Channel added."] = "Kanal hinzugefügt.";
App::$strings["Contact not found."] = "Kontakt nicht gefunden";
App::$strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden.";
App::$strings["Suggest Friends"] = "Kontakte vorschlagen";
App::$strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
App::$strings["Privacy group created."] = "Gruppe wurde erstellt.";
App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden.";
App::$strings["Privacy group not found."] = "Gruppe nicht gefunden.";
App::$strings["Privacy group updated."] = "Gruppe wurde aktualisiert.";
App::$strings["Create a group of channels."] = "Erstelle eine Gruppe für Kanäle.";
App::$strings["Privacy group name: "] = "Gruppenname:";
App::$strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle";
App::$strings["Privacy group removed."] = "Gruppe wurde entfernt.";
App::$strings["Unable to remove privacy group."] = "Gruppe konnte nicht entfernt werden.";
App::$strings["Privacy group editor"] = "Gruppeneditor";
App::$strings["Members"] = "Mitglieder";
App::$strings["All Connected Channels"] = "Alle verbundenen Kanäle";
App::$strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus.";
App::$strings["Documentation Search"] = "Suche in der Dokumentation";
App::$strings["Help:"] = "Hilfe:";
App::$strings["Help"] = "Hilfe";
App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["Welcome to %s"] = "Willkommen auf %s";
App::$strings["First Name"] = "Vorname";
App::$strings["Last Name"] = "Nachname";
App::$strings["Nickname"] = "Spitzname";
App::$strings["Full Name"] = "Voller Name";
App::$strings["Profile Photo"] = "Profilfoto";
App::$strings["Profile Photo 16px"] = "Profilfoto 16 px";
App::$strings["Profile Photo 32px"] = "Profilfoto 32 px";
App::$strings["Profile Photo 48px"] = "Profilfoto 48 px";
App::$strings["Profile Photo 64px"] = "Profilfoto 64 px";
App::$strings["Profile Photo 80px"] = "Profilfoto 80 px";
App::$strings["Profile Photo 128px"] = "Profilfoto 128 px";
App::$strings["Timezone"] = "Zeitzone";
App::$strings["Homepage URL"] = "Homepage-URL";
App::$strings["Language"] = "Sprache";
App::$strings["Birth Year"] = "Geburtsjahr";
App::$strings["Birth Month"] = "Geburtsmonat";
App::$strings["Birth Day"] = "Geburtstag";
App::$strings["Birthdate"] = "Geburtsdatum";
App::$strings["Gender"] = "Geschlecht";
App::$strings["Male"] = "Männlich";
App::$strings["Female"] = "Weiblich";
App::$strings["webpage"] = "Webseite";
App::$strings["block"] = "Block";
App::$strings["layout"] = "Layout";
App::$strings["menu"] = "Menü";
App::$strings["%s element installed"] = "Element für %s installiert";
App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen";
App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle.";
App::$strings["Nothing to import."] = "Nichts zu importieren.";
App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden";
App::$strings["Imported file is empty."] = "Die importierte Datei ist leer.";
App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen.";
App::$strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen.";
App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen.";
App::$strings["Import completed."] = "Import abgeschlossen.";
App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen.";
App::$strings["Import Channel"] = "Kanal importieren";
App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk  oder aus einer exportierten Sicherheitskopie importieren.";
App::$strings["File to Upload"] = "Hochzuladende Datei:";
App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein";
App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)";
App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse";
App::$strings["Your old login password"] = "Dein altes Passwort";
App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige \$Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein.";
App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub.";
App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen.";
App::$strings["Import completed"] = "Import abgeschlossen";
App::$strings["Import Items"] = "Beiträge importieren";
App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren.";
App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten.";
App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse.";
App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!";
App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers.";
App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden.";
App::$strings["%d message sent."] = array(
	0 => "%d Nachricht gesendet.",
	1 => "%d Nachrichten gesendet.",
);
App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen";
App::$strings["Send invitations"] = "Einladungen senden";
App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:";
App::$strings["Your message:"] = "Deine Nachricht:";
App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!";
App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:";
App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)";
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein.";
App::$strings["or visit"] = "oder besuche";
App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]";
App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden.";
App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen.";
App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben.";
App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt.";
App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert.";
App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden.";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht.";
App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht.";
App::$strings["Layouts"] = "Layouts";
App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache";
App::$strings["Layout Description"] = "Layout-Beschreibung";
App::$strings["Download PDL file"] = "PDL-Datei herunterladen";
App::$strings["Like/Dislike"] = "Mögen/Nicht mögen";
App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden.";
App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "Um fortzufahren <a href=\"rmagic\">melde Dich bitte mit Deiner \$Projectname-ID an</a> oder <a href=\"register\">registriere Dich als neues \$Projectname-Mitglied</a>.";
App::$strings["Invalid request."] = "Ungültige Anfrage.";
App::$strings["channel"] = "Kanal";
App::$strings["thing"] = "Sache";
App::$strings["Channel unavailable."] = "Kanal nicht vorhanden.";
App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht.";
App::$strings["photo"] = "Foto";
App::$strings["status"] = "Status";
App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s";
App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht";
App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu";
App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab";
App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s";
App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil";
App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil";
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil";
App::$strings["Action completed."] = "Aktion durchgeführt.";
App::$strings["Thank you."] = "Vielen Dank.";
App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar.";
App::$strings["Visible to:"] = "Sichtbar für:";
App::$strings["Location not found."] = "Klon nicht gefunden.";
App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen";
App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst.";
App::$strings["Syncing locations"] = "Synchronisiere Klone";
App::$strings["No locations found."] = "Keine Klon-Adressen gefunden.";
App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten";
App::$strings["Primary"] = "Primär";
App::$strings["Drop"] = "Löschen";
App::$strings["Sync Now"] = "Jetzt synchronisieren";
App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!";
App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst.";
App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt.";
App::$strings["No valid account found."] = "Kein gültiges Konto gefunden.";
App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails.";
App::$strings["Site Member (%s)"] = "Nutzer (%s)";
App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert";
App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen.";
App::$strings["Password Reset"] = "Zurücksetzen des Kennworts";
App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt.";
App::$strings["Your new password is"] = "Dein neues Passwort lautet";
App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann";
App::$strings["click here to login"] = "Klicke hier, um dich anzumelden";
App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Dein Passwort kann unter <em>Einstellungen</em> nach einer erfolgreichen Anmeldung geändert werden.";
App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert";
App::$strings["Forgot your Password?"] = "Kennwort vergessen?";
App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail.";
App::$strings["Email Address"] = "E-Mail Adresse";
App::$strings["Reset"] = "Zurücksetzen";
App::$strings["Hub not found."] = "Server nicht gefunden.";
App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden.";
App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen.";
App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen.";
App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen.";
App::$strings["Messages"] = "Nachrichten";
App::$strings["Message recalled."] = "Nachricht widerrufen.";
App::$strings["Conversation removed."] = "Unterhaltung gelöscht.";
App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM";
App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk.";
App::$strings["Send Private Message"] = "Private Nachricht senden";
App::$strings["To:"] = "An:";
App::$strings["Subject:"] = "Betreff:";
App::$strings["Attach file"] = "Datei anhängen";
App::$strings["Send"] = "Absenden";
App::$strings["Set expiration date"] = "Verfallsdatum";
App::$strings["Delete message"] = "Nachricht löschen";
App::$strings["Delivery report"] = "Zustellungsbericht";
App::$strings["Recall message"] = "Nachricht widerrufen";
App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen.";
App::$strings["Delete Conversation"] = "Unterhaltung löschen";
App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
App::$strings["Send Reply"] = "Antwort senden";
App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):";
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet.";
App::$strings["Create a new channel"] = "Neuen Kanal anlegen";
App::$strings["Channel Manager"] = "Kanal-Manager";
App::$strings["Current Channel"] = "Aktueller Kanal";
App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst.";
App::$strings["Default Channel"] = "Standard Kanal";
App::$strings["Make Default"] = "Zum Standard machen";
App::$strings["%d new messages"] = "%d neue Nachrichten";
App::$strings["%d new introductions"] = "%d neue Vorstellungen";
App::$strings["Delegated Channel"] = "Delegierte Kanäle";
App::$strings["Profile Match"] = "Profil-Übereinstimmungen";
App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu.";
App::$strings["is interested in:"] = "interessiert sich für:";
App::$strings["No matches"] = "Keine Übereinstimmungen";
App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren.";
App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen.";
App::$strings["Menu Name"] = "Name des Menüs";
App::$strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich";
App::$strings["Menu Title"] = "Menütitel";
App::$strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen";
App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben";
App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden";
App::$strings["Submit and proceed"] = "Absenden und fortfahren";
App::$strings["Menus"] = "Menüs";
App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt";
App::$strings["Delete this menu"] = "Lösche dieses Menü";
App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte";
App::$strings["Edit this menu"] = "Dieses Menü bearbeiten";
App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden.";
App::$strings["Menu not found."] = "Menü nicht gefunden";
App::$strings["Edit Menu"] = "Menü bearbeiten";
App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen";
App::$strings["Menu name"] = "Menü Name";
App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar";
App::$strings["Menu title"] = "Menü Titel";
App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird";
App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen";
App::$strings["Not found."] = "Nicht gefunden.";
App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden.";
App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren.";
App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen.";
App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements";
App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
App::$strings["Link Name"] = "Name des Links";
App::$strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs";
App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen.";
App::$strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar";
App::$strings["Open link in new window"] = "Öffne Link in neuem Fenster";
App::$strings["Order in list"] = "Reihenfolge in der Liste";
App::$strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert";
App::$strings["Submit and finish"] = "Absenden und fertigstellen";
App::$strings["Submit and continue"] = "Absenden und fortfahren";
App::$strings["Menu:"] = "Menü:";
App::$strings["Link Target"] = "Ziel des Links";
App::$strings["Edit menu"] = "Menü bearbeiten";
App::$strings["Edit element"] = "Bestandteil bearbeiten";
App::$strings["Drop element"] = "Bestandteil löschen";
App::$strings["New element"] = "Neues Bestandteil";
App::$strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten";
App::$strings["Add menu element"] = "Menüelement hinzufügen";
App::$strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil";
App::$strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil";
App::$strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden.";
App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht.";
App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden.";
App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil";
App::$strings["Link text"] = "Link Text";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s";
App::$strings["Mood"] = "Laune";
App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden";
App::$strings["No such group"] = "Gruppe nicht gefunden";
App::$strings["No such channel"] = "Kanal nicht gefunden";
App::$strings["forum"] = "Forum";
App::$strings["Search Results For:"] = "Suchergebnisse für:";
App::$strings["Privacy group is empty"] = "Gruppe ist leer";
App::$strings["Privacy group: "] = "Gruppe:";
App::$strings["Invalid connection."] = "Ungültige Verbindung.";
App::$strings["Name or caption"] = "Name oder Titel";
App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ ";
App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen";
App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s";
App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen";
App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre.";
App::$strings["Read more about roles"] = "Mehr Informationen über Rollen";
App::$strings["Create Channel"] = "Einen neuen Kanal anlegen";
App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen.";
App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "oder <a href=\"import\">importiere einen bestehenden Kanal</a> von einem anderen Server.";
App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator.";
App::$strings["Discard"] = "Verwerfen";
App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr.";
App::$strings["System Notifications"] = "System-Benachrichtigungen";
App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen";
App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden.";
App::$strings["Post successful."] = "Veröffentlichung erfolgreich.";
App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
App::$strings["Login failed."] = "Login fehlgeschlagen.";
App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert.";
App::$strings["Configuration Editor"] = "Konfigurationseditor";
App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird.";
App::$strings["Layout updated."] = "Layout aktualisiert.";
App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten";
App::$strings["Layout not found."] = "Layout nicht gefunden.";
App::$strings["Module Name:"] = "Modulname:";
App::$strings["Layout Help"] = "Layout-Hilfe";
App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden.";
App::$strings["Profile Photos"] = "Profilfotos";
App::$strings["Album not found."] = "Album nicht gefunden.";
App::$strings["Delete Album"] = "Album löschen";
App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager";
App::$strings["Delete Photo"] = "Foto löschen";
App::$strings["No photos selected"] = "Keine Fotos ausgewählt";
App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt.";
App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt.";
App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt.";
App::$strings["Upload Photos"] = "Fotos hochladen";
App::$strings["Enter an album name"] = "Namen für ein neues Album eingeben";
App::$strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)";
App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen";
App::$strings["Caption (optional):"] = "Beschriftung (optional):";
App::$strings["Description (optional):"] = "Beschreibung (optional):";
App::$strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden";
App::$strings["Contact Photos"] = "Kontakt-Bilder";
App::$strings["Show Newest First"] = "Neueste zuerst anzeigen";
App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen";
App::$strings["View Photo"] = "Foto ansehen";
App::$strings["Edit Album"] = "Album bearbeiten";
App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden.";
App::$strings["Photo not available"] = "Foto nicht verfügbar";
App::$strings["Use as profile photo"] = "Als Profilfoto verwenden";
App::$strings["Use as cover photo"] = "Als Titelbild verwenden";
App::$strings["Private Photo"] = "Privates Foto";
App::$strings["View Full Size"] = "In voller Größe anzeigen";
App::$strings["Edit photo"] = "Foto bearbeiten";
App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)";
App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)";
App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein";
App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)";
App::$strings["Caption"] = "Bildunterschrift";
App::$strings["Add a Tag"] = "Schlagwort hinzufügen";
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com";
App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren";
App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)";
App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)";
App::$strings["Please wait"] = "Bitte warten";
App::$strings["This is you"] = "Das bist Du";
App::$strings["Comment"] = "Kommentar";
App::$strings["__ctx:title__ Likes"] = "Gefällt mir";
App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht";
App::$strings["__ctx:title__ Agree"] = "Zustimmungen";
App::$strings["__ctx:title__ Disagree"] = "Ablehnungen";
App::$strings["__ctx:title__ Abstain"] = "Enthaltungen";
App::$strings["__ctx:title__ Attending"] = "Zusagen";
App::$strings["__ctx:title__ Not attending"] = "Absagen";
App::$strings["__ctx:title__ Might attend"] = "Vielleicht";
App::$strings["View all"] = "Alles anzeigen";
App::$strings["__ctx:noun__ Like"] = array(
	0 => "Gefällt mir",
	1 => "Gefällt mir",
);
App::$strings["__ctx:noun__ Dislike"] = array(
	0 => "Gefällt nicht",
	1 => "Gefällt nicht",
);
App::$strings["Photo Tools"] = "Fotowerkzeuge";
App::$strings["In This Photo:"] = "Auf diesem Foto:";
App::$strings["Map"] = "Karte";
App::$strings["__ctx:noun__ Likes"] = "Gefällt mir";
App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht";
App::$strings["Close"] = "Schließen";
App::$strings["View Album"] = "Album ansehen";
App::$strings["Recent Photos"] = "Neueste Fotos";
App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt";
App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt";
App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r";
App::$strings["[today]"] = "[Heute]";
App::$strings["posted an event"] = "hat einen Termin veröffentlicht";
App::$strings["Poke"] = "Anstupsen";
App::$strings["Poke somebody"] = "Jemanden anstupsen";
App::$strings["Poke/Prod"] = "Anstupsen/Knuffen";
App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges";
App::$strings["Recipient"] = "Empfänger";
App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst";
App::$strings["Make this post private"] = "Diesen Beitrag privat machen";
App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s";
App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird.";
App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch";
App::$strings["Profile not found."] = "Profil nicht gefunden.";
App::$strings["Profile deleted."] = "Profil gelöscht.";
App::$strings["Profile-"] = "Profil-";
App::$strings["New profile created."] = "Neues Profil erstellt.";
App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden.";
App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden.";
App::$strings["Profile Name is required."] = "Profil-Name erforderlich.";
App::$strings["Marital Status"] = "Familienstand";
App::$strings["Romantic Partner"] = "Romantische Partner";
App::$strings["Likes"] = "Gefällt";
App::$strings["Dislikes"] = "Gefällt nicht";
App::$strings["Work/Employment"] = "Arbeit/Anstellung";
App::$strings["Religion"] = "Religion";
App::$strings["Political Views"] = "Politische Ansichten";
App::$strings["Sexual Preference"] = "Sexuelle Orientierung";
App::$strings["Homepage"] = "Webseite";
App::$strings["Interests"] = "Hobbys/Interessen";
App::$strings["Profile updated."] = "Profil aktualisiert.";
App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen";
App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details";
App::$strings["View this profile"] = "Dieses Profil ansehen";
App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
App::$strings["Profile Tools"] = "Profilwerkzeuge";
App::$strings["Change cover photo"] = "Titelbild ändern";
App::$strings["Change profile photo"] = "Profilfoto ändern";
App::$strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen";
App::$strings["Clone this profile"] = "Dieses Profil klonen";
App::$strings["Delete this profile"] = "Dieses Profil löschen";
App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen";
App::$strings["Personal"] = "Persönlich";
App::$strings["Relation"] = "Beziehung";
App::$strings["Miscellaneous"] = "Verschiedenes";
App::$strings["Import profile from file"] = "Profil aus einer Datei importieren";
App::$strings["Export profile to file"] = "Profil in eine Datei exportieren";
App::$strings["Your gender"] = "Dein Geschlecht";
App::$strings["Marital status"] = "Familienstand";
App::$strings["Sexual preference"] = "Sexuelle Orientierung";
App::$strings["Profile name"] = "Profilname";
App::$strings["This is your default profile."] = "Das ist Dein Standardprofil.";
App::$strings["Your full name"] = "Dein voller Name";
App::$strings["Title/Description"] = "Titel/Beschreibung";
App::$strings["Street address"] = "Straße und Hausnummer";
App::$strings["Locality/City"] = "Wohnort";
App::$strings["Region/State"] = "Region/Bundesstaat";
App::$strings["Postal/Zip code"] = "Postleitzahl";
App::$strings["Country"] = "Land";
App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)";
App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
App::$strings["Since (date)"] = "Seit (Datum)";
App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir";
App::$strings["Hometown"] = "Heimatort";
App::$strings["Political views"] = "Politische Ansichten";
App::$strings["Religious views"] = "Religiöse Ansichten";
App::$strings["Keywords used in directory listings"] = "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden";
App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software";
App::$strings["Musical interests"] = "Musikalische Interessen";
App::$strings["Books, literature"] = "Bücher, Literatur";
App::$strings["Television"] = "Fernsehen";
App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Tanz/Kultur/Unterhaltung";
App::$strings["Hobbies/Interests"] = "Hobbys/Interessen";
App::$strings["Love/Romance"] = "Liebe/Romantik";
App::$strings["School/Education"] = "Schule/Ausbildung";
App::$strings["Contact information and social networks"] = "Kontaktinformation und soziale Netzwerke";
App::$strings["My other channels"] = "Meine anderen Kanäle";
App::$strings["Profile Image"] = "Profilfoto:";
App::$strings["Edit Profiles"] = "Profile bearbeiten";
App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator";
App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor";
App::$strings["Profile"] = "Profil";
App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen.";
App::$strings["Visible To"] = "Sichtbar für";
App::$strings["Public Hubs"] = "Öffentliche Hubs";
App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs <strong>könnten</strong> jeweils nähere Informationen dazu stehen.";
App::$strings["Hub URL"] = "Hub-URL";
App::$strings["Access Type"] = "Zugriffstyp";
App::$strings["Registration Policy"] = "Registrierungsrichtlinien";
App::$strings["Ratings"] = "Bewertungen";
App::$strings["Rate"] = "Bewerten";
App::$strings["Website:"] = "Webseite:";
App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)";
App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)";
App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)";
App::$strings["No ratings"] = "Keine Bewertungen";
App::$strings["Rating: "] = "Bewertung: ";
App::$strings["Website: "] = "Webseite: ";
App::$strings["Description: "] = "Beschreibung: ";
App::$strings["Select a bookmark folder"] = "Lesezeichenordner wählen";
App::$strings["Save Bookmark"] = "Lesezeichen speichern";
App::$strings["URL of bookmark"] = "URL des Lesezeichens";
App::$strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein";
App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal.";
App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen.";
App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein.";
App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
App::$strings["Registration on this hub is disabled."] = "Die Registrierung auf diesem Hub ist nicht möglich.";
App::$strings["Registration on this hub is by approval only."] = "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator.";
App::$strings["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">Registriere Dich auf einem der anderen verbundenen Hubs.</a>";
App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal.";
App::$strings["Terms of Service"] = "Nutzungsbedingungen";
App::$strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite";
App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite";
App::$strings["Your email address"] = "Ihre E-Mail Adresse";
App::$strings["Choose a password"] = "Passwort";
App::$strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein";
App::$strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein";
App::$strings["no"] = "nein";
App::$strings["yes"] = "ja";
App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
App::$strings["Register"] = "Registrieren";
App::$strings["Proceed to create your first channel"] = "Fortfahren und Deinen ersten Kanal anlegen";
App::$strings["Please login."] = "Bitte melde dich an.";
App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt.";
App::$strings["Remove This Account"] = "Dieses Konto löschen";
App::$strings["WARNING: "] = "WARNUNG: ";
App::$strings["This account and all its channels will be completely removed from the network. "] = "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht.";
App::$strings["This action is permanent and can not be undone!"] = "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!";
App::$strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:";
App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen";
App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem \$Projectname-Hub aus dem Netzwerk entfernt";
App::$strings["Remove Account"] = "Konto entfernen";
App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden.";
App::$strings["Remove This Channel"] = "Diesen Kanal löschen";
App::$strings["This channel will be completely removed from the network. "] = "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht.";
App::$strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk";
App::$strings["Remove Channel"] = "Kanal löschen";
App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal.";
App::$strings["The error message was:"] = "Die Fehlermeldung war:";
App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen.";
App::$strings["Remote Authentication"] = "Entfernte Authentifizierung";
App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)";
App::$strings["Authenticate"] = "Authentifizieren";
App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s";
App::$strings["Search results for: %s"] = "Suchergebnisse für: %s";
App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden.";
App::$strings["Name is required"] = "Name ist erforderlich";
App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
App::$strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
App::$strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
App::$strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
App::$strings["Password verification failed."] = "Passwortüberprüfung fehlgeschlagen.";
App::$strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
App::$strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
App::$strings["Password changed."] = "Kennwort geändert.";
App::$strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
App::$strings["Settings updated."] = "Einstellungen aktualisiert.";
App::$strings["Add application"] = "Anwendung hinzufügen";
App::$strings["Name of application"] = "Name der Anwendung";
App::$strings["Consumer Key"] = "Consumer Key";
App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20";
App::$strings["Consumer Secret"] = "Consumer Secret";
App::$strings["Redirect"] = "Umleitung";
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert";
App::$strings["Icon url"] = "Symbol-URL";
App::$strings["Optional"] = "Optional";
App::$strings["Application not found."] = "Die Anwendung wurde nicht gefunden.";
App::$strings["Connected Apps"] = "Verbundene Apps";
App::$strings["Client key starts with"] = "Client Key beginnt mit";
App::$strings["No name"] = "Kein Name";
App::$strings["Remove authorization"] = "Authorisierung aufheben";
App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
App::$strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen";
App::$strings["Account Settings"] = "Konto-Einstellungen";
App::$strings["Current Password"] = "Aktuelles Passwort";
App::$strings["Enter New Password"] = "Gib ein neues Passwort ein";
App::$strings["Confirm New Password"] = "Bestätige das neue Passwort";
App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern";
App::$strings["Email Address:"] = "Email Adresse:";
App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen";
App::$strings["Additional Features"] = "Zusätzliche Funktionen";
App::$strings["Connector Settings"] = "Connector-Einstellungen";
App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
App::$strings["%s - (Experimental)"] = "%s – (experimentell)";
App::$strings["Display Settings"] = "Anzeige-Einstellungen";
App::$strings["Theme Settings"] = "Theme-Einstellungen";
App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen";
App::$strings["Content Settings"] = "Inhaltseinstellungen";
App::$strings["Display Theme:"] = "Anzeige-Theme:";
App::$strings["Mobile Theme:"] = "Mobile Theme:";
App::$strings["Preload images before rendering the page"] = "Bilder im voraus laden, bevor die Seite angezeigt wird";
App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird";
App::$strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren";
App::$strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum";
App::$strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:";
App::$strings["Maximum of 100 items"] = "Maximum: 100 Beiträge";
App::$strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen";
App::$strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken";
App::$strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)";
App::$strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden";
App::$strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)";
App::$strings["Use blog/list mode on grid page"] = "Blog-/Listenmodus auf der Netzwerkseite verwenden";
App::$strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)";
App::$strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden.";
App::$strings["Grid page max height of content (in pixels)"] = "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite";
App::$strings["Nobody except yourself"] = "Niemand außer Dir selbst";
App::$strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst";
App::$strings["Approved connections"] = "Angenommene Verbindungen";
App::$strings["Any connections"] = "Beliebige Verbindungen";
App::$strings["Anybody on this website"] = "Jeder auf dieser Website";
App::$strings["Anybody in this network"] = "Alle \$Projectname-Mitglieder";
App::$strings["Anybody authenticated"] = "Jeder authentifizierte";
App::$strings["Anybody on the internet"] = "Jeder im Internet";
App::$strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen";
App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
App::$strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
App::$strings["Channel Settings"] = "Kanal-Einstellungen";
App::$strings["Basic Settings"] = "Grundeinstellungen";
App::$strings["Full Name:"] = "Voller Name:";
App::$strings["Your Timezone:"] = "Ihre Zeitzone:";
App::$strings["Default Post Location:"] = "Standardstandort:";
App::$strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll";
App::$strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
App::$strings["Adult Content"] = "Nicht jugendfreie Inhalte";
App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)";
App::$strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
App::$strings["Your permissions are already configured. Click to view/adjust"] = "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern";
App::$strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
App::$strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil";
App::$strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen";
App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Komplett offen – <em>extrem ungeschützt (mit großer Vorsicht verwenden!)</em>";
App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Typisch – <em>Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)</em>";
App::$strings["Private - <em>default private, never open or public</em>"] = "Privat – <em>Standard privat, nie offen oder öffentlich</em>";
App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "Blockiert – <em>Alle standardmäßig blockiert</em>";
App::$strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten";
App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren";
App::$strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen";
App::$strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen";
App::$strings["0 or blank to use the website limit. The website expires after %d days."] = "0 oder leer lassen um das Webseiten limit zu nutzen. Die Webseite läuft nach %d Tagen ab.";
App::$strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
App::$strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
App::$strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte";
App::$strings["Use my default audience setting for the type of post"] = "Benutze meine Standard-Zielgruppen-Einstellungen für diesen Beitragstyp";
App::$strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:";
App::$strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
App::$strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern";
App::$strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
App::$strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:";
App::$strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst";
App::$strings["joining a forum/community"] = "Du einem Forum beitrittst";
App::$strings["making an <em>interesting</em> profile change"] = "Du eine <em>interessante</em> Änderung an Deinem Profil vornimmst";
App::$strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:";
App::$strings["You receive a connection request"] = "Du eine Verbindungsanfrage erhältst";
App::$strings["Your connections are confirmed"] = "Eine Verbindung bestätigt wurde";
App::$strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt";
App::$strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
App::$strings["You receive a private message"] = "Du eine private Nachricht erhältst";
App::$strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
App::$strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest";
App::$strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest";
App::$strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:";
App::$strings["Unseen grid activity"] = "Ungesehene Netzwerk-Aktivität";
App::$strings["Unseen channel activity"] = "Ungesehene Kanal-Aktivität";
App::$strings["Unseen private messages"] = "Ungelesene persönliche Nachrichten";
App::$strings["Recommended"] = "Empfohlen";
App::$strings["Upcoming events"] = "Baldige Termine";
App::$strings["Events today"] = "Heutige Termine";
App::$strings["Upcoming birthdays"] = "Baldige Geburtstage";
App::$strings["Not available in all themes"] = "Nicht in allen Themes verfügbar";
App::$strings["System (personal) notifications"] = "System – (persönliche) Benachrichtigungen";
App::$strings["System info messages"] = "System – Info-Nachrichten";
App::$strings["System critical alerts"] = "System – kritische Warnungen";
App::$strings["New connections"] = "Neue Verbindungen";
App::$strings["System Registrations"] = "System – Registrierungen";
App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen";
App::$strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus";
App::$strings["Must be greater than 0"] = "Muss größer als 0 sein";
App::$strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen";
App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen";
App::$strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Aktiviere den Expertenmodus (unter <a href=\"settings/features\">Settings > Zusätzliche Funktionen</a>), um hier Einstellungen vorzunehmen!";
App::$strings["Miscellaneous Settings"] = "Sonstige Einstellungen";
App::$strings["Default photo upload folder"] = "Voreingestellter Ordner für hochgeladene Fotos";
App::$strings["%Y - current year, %m -  current month"] = "%Y - aktuelles Jahr, %m -  aktueller Monat";
App::$strings["Default file upload folder"] = "Voreingestellter Ordner für hochgeladene Dateien";
App::$strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals";
App::$strings["Remove this channel."] = "Diesen Kanal löschen";
App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-Provider für Firefox Share";
App::$strings["Start calendar week on monday"] = "Montag als erster Tag der Kalenderwoche";
App::$strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung";
App::$strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden.";
App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS.";
App::$strings["Could not create table."] = "Kann Tabelle nicht erstellen.";
App::$strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert.";
App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren.";
App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\".";
App::$strings["System check"] = "Systemprüfung";
App::$strings["Check again"] = "Bitte nochmal prüfen";
App::$strings["Database connection"] = "Datenbank Verbindung";
App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können.";
App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast.";
App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst.";
App::$strings["Database Server Name"] = "Datenbank-Servername";
App::$strings["Default is 127.0.0.1"] = "Standard ist 127.0.0.1";
App::$strings["Database Port"] = "Datenbank-Port";
App::$strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung";
App::$strings["Database Login Name"] = "Datenbank-Benutzername";
App::$strings["Database Login Password"] = "Datenbank-Kennwort";
App::$strings["Database Name"] = "Datenbank-Name";
App::$strings["Database Type"] = "Datenbanktyp";
App::$strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators";
App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst.";
App::$strings["Website URL"] = "Server-URL";
App::$strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https).";
App::$strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server";
App::$strings["Site settings"] = "Seiteneinstellungen";
App::$strings["Enable \$Projectname <strong>advanced</strong> features?"] = "<strong>Erweiterte</strong> Funktionen für \$Projectname aktivieren?";
App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Einige erweiterte Funktionen können ungeachtet ihrer Nützlichkeit eher für eine technisch versierte Zielgruppe geeignet sein.";
App::$strings["PHP version 5.4 or greater is required."] = "PHP wird in Version 5.4 oder höher benötigt.";
App::$strings["PHP version"] = "PHP-Version";
App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden.";
App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen.";
App::$strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei";
App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren.";
App::$strings["Command line PHP"] = "PHP Befehlszeile";
App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert.";
App::$strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert.";
App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv";
App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden.";
App::$strings["You can adjust these settings in the servers php.ini."] = "Du kannst diese Einstellungen in der php.ini des Servers ändern.";
App::$strings["PHP upload limits"] = "PHP-Hochladebeschränkungen";
App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen.";
App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung.";
App::$strings["Generate encryption keys"] = "Verschlüsselungsschlüssel  generieren";
App::$strings["libCurl PHP module"] = "libCurl-PHP-Modul";
App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul";
App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul";
App::$strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul";
App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul";
App::$strings["mcrypt PHP module"] = "mcrypt-PHP-Modul";
App::$strings["xml PHP module"] = "xml-PHP-Modul";
App::$strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert.";
App::$strings["proc_open"] = "proc_open";
App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert";
App::$strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert.";
App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert.";
App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert.";
App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert.";
App::$strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert.";
App::$strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert.";
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert.";
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht.";
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst.";
App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst.";
App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt.";
App::$strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar";
App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "\$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen.";
App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Webserver Schreibzugriff auf das Verzeichnis %s unterhalb des \$Projectname-Installationsverzeichnisses.";
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat.";
App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält.";
App::$strings["%s is writable"] = "%s ist beschreibbar";
App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "\$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses";
App::$strings["store is writable"] = "store ist schreibbar";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server.";
App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich.";
App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können.";
App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer \$Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird).";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen.";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind.";
App::$strings["SSL certificate validation"] = "SSL Zertifikatverifizierung";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:";
App::$strings["Url rewrite is working"] = "Url rewrite funktioniert";
App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen.";
App::$strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten.";
App::$strings["<h1>What next</h1>"] = "<h1>Was als Nächstes</h1>";
App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten.";
App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden";
App::$strings["NEW"] = "NEU";
App::$strings["Remove all files"] = "Alle Dateien löschen";
App::$strings["Remove this file"] = "Diese Datei löschen";
App::$strings["Version %s"] = "Version %s";
App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen.";
App::$strings["Tag: "] = "Schlagwort: ";
App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:";
App::$strings["Current load average: "] = "Aktuelles Load Average:";
App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
App::$strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Bitte besuchen Sie <a href=\"http://hubzilla.org\">hubzilla.org</a>, um mehr über \$Projectname zu erfahren.";
App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
App::$strings["\$projectname issues"] = "\$projectname-Bugtracker";
App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com";
App::$strings["Site Administrators"] = "Administratoren";
App::$strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt.";
App::$strings["Source created."] = "Quelle erstellt.";
App::$strings["Source updated."] = "Quelle aktualisiert.";
App::$strings["*"] = "*";
App::$strings["Channel Sources"] = "Kanal-Quellen";
App::$strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten.";
App::$strings["New Source"] = "Neue Quelle";
App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals.";
App::$strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten";
App::$strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren";
App::$strings["Channel Name"] = "Name des Kanals";
App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)";
App::$strings["Source not found."] = "Quelle nicht gefunden.";
App::$strings["Edit Source"] = "Quelle bearbeiten";
App::$strings["Delete Source"] = "Quelle löschen";
App::$strings["Source removed"] = "Quelle gelöscht";
App::$strings["Unable to remove source."] = "Konnte die Quelle nicht löschen.";
App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s";
App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s folgt %2\$ss %3\$s nicht mehr";
App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal.";
App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken";
App::$strings["post"] = "Beitrag";
App::$strings["comment"] = "Kommentar";
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet";
App::$strings["Tag removed"] = "Schlagwort entfernt";
App::$strings["Remove Item Tag"] = "Schlagwort entfernen";
App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:";
App::$strings["Thing updated"] = "Sache aktualisiert";
App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen";
App::$strings["Thing added"] = "Sache hinzugefügt";
App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
App::$strings["Show Thing"] = "Sache anzeigen";
App::$strings["item not found."] = "Eintrag nicht gefunden";
App::$strings["Edit Thing"] = "Sache bearbeiten";
App::$strings["Select a profile"] = "Wähle ein Profil";
App::$strings["Post an activity"] = "Aktivitätsnachricht senden";
App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden";
App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas";
App::$strings["URL of thing (optional)"] = "URL der Sache (optional)";
App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)";
App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen";
App::$strings["Export Channel"] = "Kanal exportieren";
App::$strings["Export your basic channel information to a file.  This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält.";
App::$strings["Export Content"] = "Kanal und Inhalte exportieren";
App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large.  Please be patient - it may take several minutes for this download to begin."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet.";
App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres.";
App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne.";
App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke <a href=\"%1\$s\">%2\$s</a>.";
App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke <a href=\"%1\$s\">%2\$s</a>.";
App::$strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du <a href=\"%1\$s\">%2\$s</a> auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst.";
App::$strings["No connections."] = "Keine Verbindungen.";
App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen";
App::$strings["View Connections"] = "Verbindungen anzeigen";
App::$strings["Source of Item"] = "Quelle des Elements";
App::$strings["Webpages"] = "Webseiten";
App::$strings["Actions"] = "Aktionen";
App::$strings["Page Link"] = "Seiten-Link";
App::$strings["Page Title"] = "Seitentitel";
App::$strings["Xchan Lookup"] = "Xchan-Suche";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:";
App::$strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden.";
App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen.";
App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden";
App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
App::$strings["Empty name"] = "Namensfeld leer";
App::$strings["Name too long"] = "Name ist zu lang";
App::$strings["No account identifier"] = "Keine Account-Kennung";
App::$strings["Nickname is required."] = "Spitzname ist erforderlich.";
App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen.";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
App::$strings["Default Profile"] = "Standard-Profil";
App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
App::$strings["Create New Profile"] = "Neues Profil erstellen";
App::$strings["Edit Profile"] = "Profile bearbeiten";
App::$strings["Visible to everybody"] = "Für jeden sichtbar";
App::$strings["Gender:"] = "Geschlecht:";
App::$strings["Status:"] = "Status:";
App::$strings["Homepage:"] = "Homepage:";
App::$strings["Online Now"] = "gerade online";
App::$strings["F d"] = "d. F";
App::$strings["Birthday Reminders"] = "Geburtstags Erinnerungen";
App::$strings["Birthdays this week:"] = "Geburtstage in dieser Woche:";
App::$strings["[No description]"] = "[Keine Beschreibung]";
App::$strings["Event Reminders"] = "Termin-Erinnerungen";
App::$strings["Events this week:"] = "Termine in dieser Woche:";
App::$strings["Like this channel"] = "Dieser Kanal gefällt mir";
App::$strings["j F, Y"] = "j. F Y";
App::$strings["j F"] = "j. F";
App::$strings["Birthday:"] = "Geburtstag:";
App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s";
App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:";
App::$strings["Tags:"] = "Schlagworte:";
App::$strings["Political Views:"] = "Politische Ansichten:";
App::$strings["Religion:"] = "Religion:";
App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:";
App::$strings["Likes:"] = "Gefällt:";
App::$strings["Dislikes:"] = "Gefällt nicht:";
App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:";
App::$strings["My other channels:"] = "Meine anderen Kanäle:";
App::$strings["Musical interests:"] = "Musikalische Interessen:";
App::$strings["Books, literature:"] = "Bücher, Literatur:";
App::$strings["Television:"] = "Fernsehen:";
App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:";
App::$strings["Love/Romance:"] = "Liebe/Romantik:";
App::$strings["Work/employment:"] = "Arbeit/Anstellung:";
App::$strings["School/education:"] = "Schule/Ausbildung:";
App::$strings["Like this thing"] = "Gefällt mir";
App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt";
App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert";
App::$strings["Embedded content"] = "Eingebetteter Inhalt";
App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet";
App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen";
App::$strings["Limit access:"] = "Beschränke Zugriff:";
App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen.";
App::$strings["Show"] = "Anzeigen";
App::$strings["Don't show"] = "Nicht anzeigen";
App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen";
App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.<br />Diese Berechtigungen bestimmen, wer den Beitrag sehen kann.";
App::$strings["Currently Male"] = "Momentan männlich";
App::$strings["Currently Female"] = "Momentan weiblich";
App::$strings["Mostly Male"] = "Größtenteils männlich";
App::$strings["Mostly Female"] = "Größtenteils weiblich";
App::$strings["Transgender"] = "Transsexuell";
App::$strings["Intersex"] = "Zwischengeschlechtlich";
App::$strings["Transsexual"] = "Transsexuell";
App::$strings["Hermaphrodite"] = "Zwitter";
App::$strings["Neuter"] = "Geschlechtslos";
App::$strings["Non-specific"] = "unklar";
App::$strings["Other"] = "Andere";
App::$strings["Undecided"] = "Unentschieden";
App::$strings["Males"] = "Männer";
App::$strings["Females"] = "Frauen";
App::$strings["Gay"] = "Schwul";
App::$strings["Lesbian"] = "Lesbisch";
App::$strings["No Preference"] = "Keine Bevorzugung";
App::$strings["Bisexual"] = "Bisexuell";
App::$strings["Autosexual"] = "Autosexuell";
App::$strings["Abstinent"] = "Enthaltsam";
App::$strings["Virgin"] = "Jungfräulich";
App::$strings["Deviant"] = "Abweichend";
App::$strings["Fetish"] = "Fetisch";
App::$strings["Oodles"] = "Unmengen";
App::$strings["Nonsexual"] = "Sexlos";
App::$strings["Single"] = "Single";
App::$strings["Lonely"] = "Einsam";
App::$strings["Available"] = "Verfügbar";
App::$strings["Unavailable"] = "Nicht verfügbar";
App::$strings["Has crush"] = "Verguckt";
App::$strings["Infatuated"] = "Verknallt";
App::$strings["Dating"] = "Lerne gerade jemanden kennen";
App::$strings["Unfaithful"] = "Treulos";
App::$strings["Sex Addict"] = "Sexabhängig";
App::$strings["Friends/Benefits"] = "Freunde/Begünstigte";
App::$strings["Casual"] = "Lose";
App::$strings["Engaged"] = "Verlobt";
App::$strings["Married"] = "Verheiratet";
App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet";
App::$strings["Partners"] = "Partner";
App::$strings["Cohabiting"] = "Lebensgemeinschaft";
App::$strings["Common law"] = "Informelle Ehe";
App::$strings["Happy"] = "Glücklich";
App::$strings["Not looking"] = "Nicht Ausschau haltend";
App::$strings["Swinger"] = "Swinger";
App::$strings["Betrayed"] = "Betrogen";
App::$strings["Separated"] = "Getrennt";
App::$strings["Unstable"] = "Labil";
App::$strings["Divorced"] = "Geschieden";
App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden";
App::$strings["Widowed"] = "Verwitwet";
App::$strings["Uncertain"] = "Ungewiss";
App::$strings["It's complicated"] = "Es ist kompliziert";
App::$strings["Don't care"] = "Interessiert mich nicht";
App::$strings["Ask me"] = "Frag mich mal";
App::$strings[" and "] = "und";
App::$strings["public profile"] = "öffentliches Profil";
App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s auf &ldquo;%3\$s&rdquo; geändert";
App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s";
App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert.";
App::$strings["%d invitation available"] = array(
	0 => "%d Einladung verfügbar",
	1 => "%d Einladungen verfügbar",
);
App::$strings["Find Channels"] = "Finde Kanäle";
App::$strings["Enter name or interest"] = "Name oder Interessen eingeben";
App::$strings["Connect/Follow"] = "Verbinden/Folgen";
App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln";
App::$strings["Random Profile"] = "Zufallsprofil";
App::$strings["Invite Friends"] = "Lade Freunde ein";
App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland";
App::$strings["Saved Folders"] = "Gespeicherte Ordner";
App::$strings["Everything"] = "Alles";
App::$strings["Categories"] = "Kategorien";
App::$strings["%d connection in common"] = array(
	0 => "%d gemeinsame Verbindung",
	1 => "%d gemeinsame Verbindungen",
);
App::$strings["show more"] = "mehr zeigen";
App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i";
App::$strings["Starts:"] = "Beginnt:";
App::$strings["Finishes:"] = "Endet:";
App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt";
App::$strings["Not specified"] = "Keine Angabe";
App::$strings["Needs Action"] = "Aktion erforderlich";
App::$strings["Completed"] = "Abgeschlossen";
App::$strings["In Process"] = "In Bearbeitung";
App::$strings["Cancelled"] = "gestrichen";
App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes";
App::$strings["Image file is empty."] = "Bilddatei ist leer.";
App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen.";
App::$strings["a new photo"] = "ein neues Foto";
App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht";
App::$strings["Photo Albums"] = "Fotoalben";
App::$strings["Upload New Photos"] = "Neue Fotos hochladen";
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen.";
App::$strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen.";
App::$strings["Invalid data packet"] = "Ungültiges Datenpaket";
App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren";
App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren";
App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels";
App::$strings["System"] = "System";
App::$strings["New App"] = "Neue App";
App::$strings["Suggestions"] = "Vorschläge";
App::$strings["See more..."] = "Mehr anzeigen …";
App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen.";
App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen";
App::$strings["Enter channel address"] = "Adresse des Kanals eingeben";
App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara";
App::$strings["Notes"] = "Notizen";
App::$strings["Remove term"] = "Eintrag löschen";
App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen";
App::$strings["add"] = "hinzufügen";
App::$strings["Archives"] = "Archive";
App::$strings["Refresh"] = "Aktualisieren";
App::$strings["Account settings"] = "Konto-Einstellungen";
App::$strings["Channel settings"] = "Kanal-Einstellungen";
App::$strings["Additional features"] = "Zusätzliche Funktionen";
App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen";
App::$strings["Display settings"] = "Anzeige-Einstellungen";
App::$strings["Manage locations"] = "Klon-Adressen verwalten";
App::$strings["Export channel"] = "Kanal exportieren";
App::$strings["Connected apps"] = "Verbundene Apps";
App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen";
App::$strings["Private Mail Menu"] = "Private Nachrichten";
App::$strings["Combined View"] = "Kombinierte Anzeige";
App::$strings["Inbox"] = "Eingang";
App::$strings["Outbox"] = "Ausgang";
App::$strings["New Message"] = "Neue Nachricht";
App::$strings["Conversations"] = "Konversationen";
App::$strings["Received Messages"] = "Erhaltene Nachrichten";
App::$strings["Sent Messages"] = "Gesendete Nachrichten";
App::$strings["No messages."] = "Keine Nachrichten.";
App::$strings["Delete conversation"] = "Unterhaltung löschen";
App::$strings["Events Menu"] = "Kalendermenü";
App::$strings["Day View"] = "Tagesansicht";
App::$strings["Week View"] = "Wochenansicht";
App::$strings["Month View"] = "Monatsansicht";
App::$strings["Events Tools"] = "Kalenderwerkzeuge";
App::$strings["Export Calendar"] = "Kalender exportieren";
App::$strings["Import Calendar"] = "Kalender importieren";
App::$strings["Chatrooms"] = "Chaträume";
App::$strings["Overview"] = "Übersicht";
App::$strings["Chat Members"] = "Chatmitglieder";
App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms";
App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge";
App::$strings["photo/image"] = "Foto/Bild";
App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen";
App::$strings["Rating Tools"] = "Bewertungswerkzeuge";
App::$strings["Rate Me"] = "Bewerte mich";
App::$strings["View Ratings"] = "Bewertungen ansehen";
App::$strings["Forums"] = "Foren";
App::$strings["Tasks"] = "Aufgaben";
App::$strings["Documentation"] = "Dokumentation";
App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub";
App::$strings["For Members"] = "Für Mitglieder";
App::$strings["For Administrators"] = "Für Administratoren";
App::$strings["For Developers"] = "Für Entwickler";
App::$strings["Accounts"] = "Konten";
App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten";
App::$strings["Features"] = "Funktionen";
App::$strings["Inspect queue"] = "Warteschlange kontrollieren";
App::$strings["DB updates"] = "DB-Aktualisierungen";
App::$strings["Admin"] = "Administration";
App::$strings["Plugin Features"] = "Plug-In Funktionen";
App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen";
App::$strings["Missing room name"] = "Der Chatraum hat keinen Namen";
App::$strings["Duplicate room name"] = "Name des Chatraums bereits vergeben";
App::$strings["Invalid room specifier."] = "Ungültiger Raumbezeichner.";
App::$strings["Room not found."] = "Chatraum konnte nicht gefunden werden.";
App::$strings["Room is full"] = "Der Chatraum ist voll";
App::$strings["New window"] = "Neues Fenster";
App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab";
App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht";
App::$strings["Logged out."] = "Ausgeloggt.";
App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde.";
App::$strings["(Unknown)"] = "(Unbekannt)";
App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar.";
App::$strings["Visible to you only."] = "Nur für Dich sichtbar.";
App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar.";
App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist.";
App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar.";
App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar.";
App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar.";
App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen.";
App::$strings["Privacy group is empty."] = "Gruppe ist leer.";
App::$strings["Privacy group: %s"] = "Gruppe: %s";
App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden.";
App::$strings["profile photo"] = "Profilfoto";
App::$strings["Logout"] = "Abmelden";
App::$strings["End this session"] = "Beende diese Sitzung";
App::$strings["Home"] = "Home";
App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
App::$strings["Your profile page"] = "Deine Profilseite";
App::$strings["Manage/Edit profiles"] = "Profile verwalten";
App::$strings["Edit your profile"] = "Profil bearbeiten";
App::$strings["Your photos"] = "Deine Bilder";
App::$strings["Your files"] = "Deine Dateien";
App::$strings["Chat"] = "Chat";
App::$strings["Your chatrooms"] = "Deine Chaträume";
App::$strings["Bookmarks"] = "Lesezeichen";
App::$strings["Your bookmarks"] = "Deine Lesezeichen";
App::$strings["Your webpages"] = "Deine Webseiten";
App::$strings["Login"] = "Anmelden";
App::$strings["Sign in"] = "Anmelden";
App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden";
App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen";
App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren";
App::$strings["Home Page"] = "Homepage";
App::$strings["Create an account"] = "Erzeuge ein Konto";
App::$strings["Help and documentation"] = "Hilfe und Dokumentation";
App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele";
App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt";
App::$strings["Directory"] = "Verzeichnis";
App::$strings["Channel Directory"] = "Kanal-Verzeichnis";
App::$strings["Grid"] = "Grid";
App::$strings["Your grid"] = "Dein Grid";
App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren";
App::$strings["Channel Home"] = "Mein Kanal";
App::$strings["Channel home"] = "Mein Kanal";
App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen";
App::$strings["Notices"] = "Benachrichtigungen";
App::$strings["Notifications"] = "Benachrichtigungen";
App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen";
App::$strings["Mail"] = "Mail";
App::$strings["Private mail"] = "Persönliche Mail";
App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen";
App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen";
App::$strings["Events"] = "Termine";
App::$strings["Event Calendar"] = "Terminkalender";
App::$strings["See all events"] = "Alle Termine ansehen";
App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen";
App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle";
App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen";
App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration";
App::$strings["Loading..."] = "Lädt ...";
App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt";
App::$strings["Please wait..."] = "Bitte warten...";
App::$strings["view full size"] = "In Vollbildansicht anschauen";
App::$strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung";
App::$strings["\$projectname"] = "\$projectname";
App::$strings["Thank You,"] = "Danke.";
App::$strings["%s Administrator"] = "der Administrator von %s";
App::$strings["Administrator"] = "Administrator";
App::$strings["No Subject"] = "Kein Betreff";
App::$strings["Frequently"] = "Häufig";
App::$strings["Hourly"] = "Stündlich";
App::$strings["Twice daily"] = "Zwei Mal am Tag";
App::$strings["Daily"] = "Täglich";
App::$strings["Weekly"] = "Wöchentlich";
App::$strings["Monthly"] = "Monatlich";
App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["GNU-Social"] = "GNU-Social";
App::$strings["RSS/Atom"] = "RSS/Atom";
App::$strings["Diaspora"] = "Diaspora";
App::$strings["Facebook"] = "Facebook";
App::$strings["Zot"] = "Zot!";
App::$strings["LinkedIn"] = "LinkedIn";
App::$strings["XMPP/IM"] = "XMPP/IM";
App::$strings["MySpace"] = "MySpace";
App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden.";
App::$strings["No source file."] = "Keine Quelldatei.";
App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden";
App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden";
App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d";
App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht.";
App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess.";
App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen.";
App::$strings["Path not available."] = "Pfad nicht verfügbar.";
App::$strings["Empty pathname"] = "Leere Pfadangabe";
App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad";
App::$strings["Path not found."] = "Pfad nicht gefunden.";
App::$strings["mkdir failed."] = "mkdir fehlgeschlagen.";
App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen.";
App::$strings["Empty path"] = "Leere Pfadangabe";
App::$strings["Birthday"] = "Geburtstag";
App::$strings["Age: "] = "Alter:";
App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT";
App::$strings["never"] = "Nie";
App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde";
App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s";
App::$strings["__ctx:relative_date__ year"] = array(
	0 => "Jahr",
	1 => "Jahre",
);
App::$strings["__ctx:relative_date__ month"] = array(
	0 => "Monat",
	1 => "Monate",
);
App::$strings["__ctx:relative_date__ week"] = array(
	0 => "Woche",
	1 => "Wochen",
);
App::$strings["__ctx:relative_date__ day"] = array(
	0 => "Tag",
	1 => "Tage",
);
App::$strings["__ctx:relative_date__ hour"] = array(
	0 => "Stunde",
	1 => "Stunden",
);
App::$strings["__ctx:relative_date__ minute"] = array(
	0 => "Minute",
	1 => "Minuten",
);
App::$strings["__ctx:relative_date__ second"] = array(
	0 => "Sekunde",
	1 => "Sekunden",
);
App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag";
App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s";
App::$strings["Directory Options"] = "Verzeichnisoptionen";
App::$strings["Safe Mode"] = "Sicherer Modus";
App::$strings["Public Forums Only"] = "Nur öffentliche Foren";
App::$strings["This Website Only"] = "Nur dieser Hub";
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Benachrichtigung] Neue Mail empfangen auf %s";
App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet.";
App::$strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt.";
App::$strings["a private message"] = "eine private Nachricht";
App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten.";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]einen %4\$s[/zrl] kommentiert";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert";
App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s";
App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst.";
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren.";
App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Benachrichtigung] %s schrieb auf Deine Pinnwand";
App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben";
App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben";
App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Benachrichtigung] %s hat Dich erwähnt";
App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt";
App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl].";
App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Benachrichtigung] %1\$s hat Dich angestupst";
App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst";
App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl].";
App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Benachrichtigung] %s  hat Deinen Beitrag verschlagwortet";
App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet";
App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet";
App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Benachrichtigung] Vorstellung erhalten";
App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten";
App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten.";
App::$strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen";
App::$strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen.";
App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Benachrichtigung] Freundschaftsvorschlag erhalten";
App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten";
App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten.";
App::$strings["Name:"] = "Name:";
App::$strings["Photo:"] = "Foto:";
App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen.";
App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Benachrichtigung]";
App::$strings["Private Message"] = "Private Nachricht";
App::$strings["Select"] = "Auswählen";
App::$strings["Save to Folder"] = "In Ordner speichern";
App::$strings["I will attend"] = "Ich werde teilnehmen";
App::$strings["I will not attend"] = "Ich werde nicht teilnehmen";
App::$strings["I might attend"] = "Ich werde vielleicht teilnehmen";
App::$strings["I agree"] = "Ich stimme zu";
App::$strings["I disagree"] = "Ich lehne ab";
App::$strings["I abstain"] = "Ich enthalte mich";
App::$strings["Add Star"] = "Stern hinzufügen";
App::$strings["Remove Star"] = "Stern entfernen";
App::$strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten";
App::$strings["starred"] = "markiert";
App::$strings["Message signature validated"] = "Signatur überprüft";
App::$strings["Message signature incorrect"] = "Signatur nicht korrekt";
App::$strings["Add Tag"] = "Tag hinzufügen";
App::$strings["like"] = "mag";
App::$strings["dislike"] = "verurteile";
App::$strings["Share This"] = "Teilen";
App::$strings["share"] = "Teilen";
App::$strings["Delivery Report"] = "Zustellungsbericht";
App::$strings["%d comment"] = array(
	0 => "%d Kommentar",
	1 => "%d Kommentare",
);
App::$strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s";
App::$strings["to"] = "an";
App::$strings["via"] = "via";
App::$strings["Wall-to-Wall"] = "Wall-to-Wall";
App::$strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
App::$strings["from %s"] = "via %s";
App::$strings["last edited: %s"] = "zuletzt bearbeitet: %s";
App::$strings["Expires: %s"] = "Verfällt: %s";
App::$strings["Save Bookmarks"] = "Favoriten speichern";
App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen";
App::$strings["Mark all seen"] = "Alle als gelesen markieren";
App::$strings["[+] show all"] = "[+] Alle anzeigen";
App::$strings["Bold"] = "Fett";
App::$strings["Italic"] = "Kursiv";
App::$strings["Underline"] = "Unterstrichen";
App::$strings["Quote"] = "Zitat";
App::$strings["Code"] = "Code";
App::$strings["Image"] = "Bild";
App::$strings["Insert Link"] = "Link einfügen";
App::$strings["Video"] = "Video";
App::$strings["General Features"] = "Allgemeine Funktionen";
App::$strings["Content Expiration"] = "Verfall von Inhalten";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum.";
App::$strings["Multiple Profiles"] = "Mehrfachprofile";
App::$strings["Ability to create multiple profiles"] = "Ermöglicht das Anlegen mehrerer Profile pro Kanal";
App::$strings["Advanced Profiles"] = "Erweiterte Profile";
App::$strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung";
App::$strings["Profile Import/Export"] = "Profil-Import/Export";
App::$strings["Save and load profile details across sites/channels"] = "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren";
App::$strings["Web Pages"] = "Webseiten";
App::$strings["Provide managed web pages on your channel"] = "Ermöglicht das Erstellen von Webseiten in Deinem Kanal";
App::$strings["Hide Rating"] = "Bewertung verbergen";
App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten.";
App::$strings["Private Notes"] = "Private Notizen";
App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)";
App::$strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste";
App::$strings["Change channels directly from within the navigation dropdown menu"] = "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü";
App::$strings["Photo Location"] = "Aufnahmeort";
App::$strings["If location data is available on uploaded photos, link this to a map."] = "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte";
App::$strings["Access Controlled Chatrooms"] = "Zugriffskontrollierte Chaträume";
App::$strings["Provide chatrooms and chat services with access control."] = "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an.";
App::$strings["Smart Birthdays"] = "Smarte Geburtstage";
App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind.";
App::$strings["Expert Mode"] = "Expertenmodus";
App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt";
App::$strings["Premium Channel"] = "Premium-Kanal";
App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen";
App::$strings["Post Composition Features"] = "Nachbearbeitungsfunktionen";
App::$strings["Large Photos"] = "Große Fotos";
App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet.";
App::$strings["Automatically import channel content from other channels or feeds"] = "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds";
App::$strings["Even More Encryption"] = "Noch mehr Verschlüsselung";
App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)";
App::$strings["Enable Voting Tools"] = "Umfragewerkzeuge aktivieren";
App::$strings["Provide a class of post which others can vote on"] = "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)";
App::$strings["Delayed Posting"] = "Verzögertes Senden";
App::$strings["Allow posts to be published at a later date"] = "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen";
App::$strings["Suppress Duplicate Posts/Comments"] = "Doppelte Beiträge unterdrücken";
App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden.";
App::$strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter";
App::$strings["Search by Date"] = "Suche nach Datum";
App::$strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen";
App::$strings["Privacy Groups"] = "Gruppen";
App::$strings["Enable management and selection of privacy groups"] = "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren";
App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung";
App::$strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter";
App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast";
App::$strings["Network New Tab"] = "Netzwerkreiter Neu";
App::$strings["Enable tab to display all new Network activity"] = "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt";
App::$strings["Affinity Tool"] = "Beziehungs-Tool";
App::$strings["Filter stream activity by depth of relationships"] = "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann";
App::$strings["Connection Filtering"] = "Filter für Verbindungen";
App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)";
App::$strings["Suggest Channels"] = "Kanäle vorschlagen";
App::$strings["Show channel suggestions"] = "Kanalvorschläge anzeigen";
App::$strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools";
App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten";
App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge";
App::$strings["Post Categories"] = "Beitrags-Kategorien";
App::$strings["Add categories to your posts"] = "Aktiviert Kategorien für Beiträge";
App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln";
App::$strings["Dislike Posts"] = "Gefällt-mir-nicht-Beiträge";
App::$strings["Ability to dislike posts/comments"] = "Aktiviert die „Gefällt mir nicht“-Schaltfläche";
App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen";
App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol";
App::$strings["Tag Cloud"] = "Schlagwort-Wolke";
App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite";
App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert ";
App::$strings["Channel location missing."] = "Adresse des Kanals fehlt.";
App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig.";
App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr.";
App::$strings["Protocol disabled."] = "Protokoll deaktiviert.";
App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen";
App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden.";
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es <strong>könnten</strong> von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen.";
App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen";
App::$strings["edit"] = "Bearbeiten";
App::$strings["Edit group"] = "Gruppe ändern";
App::$strings["Add privacy group"] = "Gruppe hinzufügen";
App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind";
App::$strings["Image/photo"] = "Bild/Foto";
App::$strings["Encrypted content"] = "Verschlüsselter Inhalt";
App::$strings["Install %s element: "] = "Element %s installieren: ";
App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren.";
App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s";
App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen";
App::$strings["spoiler"] = "Spoiler";
App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen";
App::$strings["$1 wrote:"] = "$1 schrieb:";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden";
App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an";
App::$strings["poked"] = "stupste";
App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen";
App::$strings["Categories:"] = "Kategorien:";
App::$strings["Filed under:"] = "Gespeichert unter:";
App::$strings["View in context"] = "Im Zusammenhang anschauen";
App::$strings["remove"] = "lösche";
App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente";
App::$strings["View Source"] = "Quelle anzeigen";
App::$strings["Follow Thread"] = "Unterhaltung folgen";
App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen";
App::$strings["Activity/Posts"] = "Aktivitäten/Beiträge";
App::$strings["Edit Connection"] = "Verbindung bearbeiten";
App::$strings["Message"] = "Nachricht";
App::$strings["%s likes this."] = "%s gefällt das.";
App::$strings["%s doesn't like this."] = "%s gefällt das nicht.";
App::$strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "<span  %1\$s>%2\$d Person</span> gefällt das.",
	1 => "<span  %1\$s>%2\$d Leuten</span> gefällt das.",
);
App::$strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "<span  %1\$s>%2\$d Person</span> gefällt das nicht.",
	1 => "<span  %1\$s>%2\$d Leuten</span> gefällt das nicht.",
);
App::$strings["and"] = "und";
App::$strings[", and %d other people"] = array(
	0 => "",
	1 => ", und %d andere",
);
App::$strings["%s like this."] = "%s gefällt das.";
App::$strings["%s don't like this."] = "%s gefällt das nicht.";
App::$strings["Set your location"] = "Standort";
App::$strings["Clear browser location"] = "Browser-Standort löschen";
App::$strings["Tag term:"] = "Schlagwort:";
App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?";
App::$strings["Page link name"] = "Link zur Seite";
App::$strings["Post as"] = "Veröffentlichen als";
App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren";
App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)";
App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen";
App::$strings["OK"] = "Ok";
App::$strings["Discover"] = "Entdecken";
App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge";
App::$strings["Commented Order"] = "Neueste Kommentare";
App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert";
App::$strings["Posted Order"] = "Neueste Beiträge";
App::$strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert";
App::$strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits";
App::$strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert";
App::$strings["Starred"] = "Markiert";
App::$strings["Favourite Posts"] = "Markierte Beiträge";
App::$strings["Spam"] = "Spam";
App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden";
App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
App::$strings["About"] = "Über";
App::$strings["Profile Details"] = "Profil-Details";
App::$strings["Files and Storage"] = "Dateien und Speicher";
App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen";
App::$strings["Manage Webpages"] = "Webseiten verwalten";
App::$strings["__ctx:noun__ Attending"] = array(
	0 => "Zusage",
	1 => "Zusagen",
);
App::$strings["__ctx:noun__ Not Attending"] = array(
	0 => "Absage",
	1 => "Absagen",
);
App::$strings["__ctx:noun__ Undecided"] = array(
	0 => " Unentschlossen",
	1 => "Unentschlossene",
);
App::$strings["__ctx:noun__ Agree"] = array(
	0 => "Zustimmung",
	1 => "Zustimmungen",
);
App::$strings["__ctx:noun__ Disagree"] = array(
	0 => "Ablehnung",
	1 => "Ablehnungen",
);
App::$strings["__ctx:noun__ Abstain"] = array(
	0 => "Enthaltung",
	1 => "Enthaltungen",
);
App::$strings["prev"] = "vorherige";
App::$strings["first"] = "erste";
App::$strings["last"] = "letzte";
App::$strings["next"] = "nächste";
App::$strings["older"] = "älter";
App::$strings["newer"] = "neuer";
App::$strings["No connections"] = "Keine Verbindungen";
App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen";
App::$strings["poke"] = "anstupsen";
App::$strings["ping"] = "anpingen";
App::$strings["pinged"] = "pingte";
App::$strings["prod"] = "knuffen";
App::$strings["prodded"] = "knuffte";
App::$strings["slap"] = "ohrfeigen";
App::$strings["slapped"] = "ohrfeigte";
App::$strings["finger"] = "befummeln";
App::$strings["fingered"] = "befummelte";
App::$strings["rebuff"] = "eine Abfuhr erteilen";
App::$strings["rebuffed"] = "zurückgewiesen";
App::$strings["happy"] = "glücklich";
App::$strings["sad"] = "traurig";
App::$strings["mellow"] = "sanft";
App::$strings["tired"] = "müde";
App::$strings["perky"] = "frech";
App::$strings["angry"] = "sauer";
App::$strings["stupefied"] = "verblüfft";
App::$strings["puzzled"] = "verwirrt";
App::$strings["interested"] = "interessiert";
App::$strings["bitter"] = "verbittert";
App::$strings["cheerful"] = "fröhlich";
App::$strings["alive"] = "lebendig";
App::$strings["annoyed"] = "verärgert";
App::$strings["anxious"] = "unruhig";
App::$strings["cranky"] = "schrullig";
App::$strings["disturbed"] = "verstört";
App::$strings["frustrated"] = "frustriert";
App::$strings["depressed"] = "deprimiert";
App::$strings["motivated"] = "motiviert";
App::$strings["relaxed"] = "entspannt";
App::$strings["surprised"] = "überrascht";
App::$strings["Monday"] = "Montag";
App::$strings["Tuesday"] = "Dienstag";
App::$strings["Wednesday"] = "Mittwoch";
App::$strings["Thursday"] = "Donnerstag";
App::$strings["Friday"] = "Freitag";
App::$strings["Saturday"] = "Samstag";
App::$strings["Sunday"] = "Sonntag";
App::$strings["January"] = "Januar";
App::$strings["February"] = "Februar";
App::$strings["March"] = "März";
App::$strings["April"] = "April";
App::$strings["May"] = "Mai";
App::$strings["June"] = "Juni";
App::$strings["July"] = "Juli";
App::$strings["August"] = "August";
App::$strings["September"] = "September";
App::$strings["October"] = "Oktober";
App::$strings["November"] = "November";
App::$strings["December"] = "Dezember";
App::$strings["Unknown Attachment"] = "Unbekannter Anhang";
App::$strings["unknown"] = "unbekannt";
App::$strings["remove category"] = "Kategorie entfernen";
App::$strings["remove from file"] = "aus der Datei entfernen";
App::$strings["default"] = "Standard";
App::$strings["Page layout"] = "Seiten-Layout";
App::$strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen";
App::$strings["Page content type"] = "Art des Seiteninhalts";
App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache";
App::$strings["activity"] = "Aktivität";
App::$strings["Design Tools"] = "Gestaltungswerkzeuge";
App::$strings["Pages"] = "Seiten";
App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse";
App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt";
App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
App::$strings["An invitation is required."] = "Eine Einladung wird benötigt.";
App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden.";
App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein.";
App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen.";
App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s";
App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
App::$strings["your registration password"] = "Dein Registrierungspasswort";
App::$strings["Registration details for %s"] = "Registrierungsdetails für %s";
App::$strings["Account approved."] = "Nutzerkonto bestätigt.";
App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen";
App::$strings["Account verified. Please login."] = "Nutzerkonto wurde bestätigt. Bitte melde Dich an!";
App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen.";
App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements.";
App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar.";
App::$strings["Tags"] = "Schlagwörter";
App::$strings["Keywords"] = "Schlüsselwörter";
App::$strings["have"] = "habe";
App::$strings["has"] = "hat";
App::$strings["want"] = "will";
App::$strings["wants"] = "will";
App::$strings["likes"] = "gefällt";
App::$strings["dislikes"] = "missfällt";
App::$strings["Only me"] = "Nur ich";
App::$strings["Public"] = "Öffentlich";
App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks";
App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s";
App::$strings["Any of my connections"] = "Alle meine Verbindungen";
App::$strings["Only me (only specified contacts and me)"] = "Nur ich (nur ausgewählte Kontakte und ich)";
App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)";
App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten";
App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream).";
App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils.";
App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen.";
App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos.";
App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten.";
App::$strings["Delete this item?"] = "Dieses Element löschen?";
App::$strings["[-] show less"] = "[-] Weniger anzeigen";
App::$strings["[+] expand"] = "[+] aufklappen";
App::$strings["[-] collapse"] = "[-] einklappen";
App::$strings["Password too short"] = "Kennwort zu kurz";
App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein";
App::$strings["everybody"] = "alle";
App::$strings["Secret Passphrase"] = "geheime Passphrase";
App::$strings["Passphrase hint"] = "Hinweis zur Passphrase";
App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert.";
App::$strings["close all"] = "Alle schließen";
App::$strings["Nothing new here"] = "Nichts Neues hier";
App::$strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)";
App::$strings["Describe (optional)"] = "Beschreibung (optional)";
App::$strings["Please enter a link URL"] = "Gib eine URL ein:";
App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?";
App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
App::$strings["timeago.prefixFromNow"] = " ";
App::$strings["ago"] = "her";
App::$strings["from now"] = "von jetzt";
App::$strings["less than a minute"] = "weniger als eine Minute";
App::$strings["about a minute"] = "ungefähr eine Minute";
App::$strings["%d minutes"] = "%d Minuten";
App::$strings["about an hour"] = "ungefähr eine Stunde";
App::$strings["about %d hours"] = "ungefähr %d Stunden";
App::$strings["a day"] = "ein Tag";
App::$strings["%d days"] = "%d Tage";
App::$strings["about a month"] = "ungefähr ein Monat";
App::$strings["%d months"] = "%d Monate";
App::$strings["about a year"] = "ungefähr ein Jahr";
App::$strings["%d years"] = "%d Jahre";
App::$strings[" "] = " ";
App::$strings["timeago.numbers"] = "timeago.numbers";
App::$strings["__ctx:long__ May"] = "Mai";
App::$strings["Jan"] = "Jan";
App::$strings["Feb"] = "Feb";
App::$strings["Mar"] = "Mär";
App::$strings["Apr"] = "Apr";
App::$strings["__ctx:short__ May"] = "Mai";
App::$strings["Jun"] = "Jun";
App::$strings["Jul"] = "Jul";
App::$strings["Aug"] = "Aug";
App::$strings["Sep"] = "Sep";
App::$strings["Oct"] = "Okt";
App::$strings["Nov"] = "Nov";
App::$strings["Dec"] = "Dez";
App::$strings["Sun"] = "So";
App::$strings["Mon"] = "Mo";
App::$strings["Tue"] = "Di";
App::$strings["Wed"] = "Mi";
App::$strings["Thu"] = "Do";
App::$strings["Fri"] = "Fr";
App::$strings["Sat"] = "Sa";
App::$strings["__ctx:calendar__ today"] = "heute";
App::$strings["__ctx:calendar__ month"] = "Monat";
App::$strings["__ctx:calendar__ week"] = "Woche";
App::$strings["__ctx:calendar__ day"] = "Tag";
App::$strings["__ctx:calendar__ All day"] = "Ganztägig";
App::$strings["No recipient provided."] = "Kein Empfänger angegeben";
App::$strings["[no subject]"] = "[no subject]";
App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen.";
App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden.";
App::$strings["Public Timeline"] = "Öffentliche Zeitleiste";
App::$strings["New Page"] = "Neue Seite";
App::$strings["Title"] = "Titel";
App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen";
App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen";
App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen";
App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen";
App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen";
App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken";
App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen";
App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen";
App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken";
App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen";
App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare";
App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten";
App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen";
App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)";
App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben";
App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten";
App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden";
App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften";
App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren";
App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust";
App::$strings["Social Networking"] = "Soziales Netzwerk";
App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich";
App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt";
App::$strings["Social - Private"] = "Soziales Netzwerk - Privat";
App::$strings["Community Forum"] = "Forum";
App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich";
App::$strings["Forum - Restricted"] = "Forum - Beschränkt";
App::$strings["Forum - Private"] = "Forum - Privat";
App::$strings["Feed Republish"] = "Teilen von Feeds";
App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich";
App::$strings["Feed - Restricted"] = "Feeds - Beschränkt";
App::$strings["Special Purpose"] = "Für besondere Zwecke";
App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)";
App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv";
App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus";
App::$strings["Site Admin"] = "Hub-Administration";
App::$strings["Bug Report"] = "Fehler-Rückmeldung";
App::$strings["View Bookmarks"] = "Lesezeichen ansehen";
App::$strings["My Chatrooms"] = "Meine Chaträume";
App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox";
App::$strings["Remote Diagnostics"] = "Ferndiagnose";
App::$strings["Probe"] = "Testen";
App::$strings["Suggest"] = "Empfehlen";
App::$strings["Random Channel"] = "Zufälliger Kanal";
App::$strings["Invite"] = "Einladen";
App::$strings["Post"] = "Beitrag schreiben";
App::$strings["Purchase"] = "Kaufen";
App::$strings["Attachments:"] = "Anhänge:";
App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:";
App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)";
App::$strings["Theme settings"] = "Theme-Einstellungen";
App::$strings["Select scheme"] = "Schema wählen";
App::$strings["Narrow navbar"] = "Schmale Navigationsleiste";
App::$strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste";
App::$strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben";
App::$strings["Navigation bar gradient bottom color"] = "Farbverlauf der Navigationsleiste: Farbe unten";
App::$strings["Navigation active button gradient top color"] = "Navigations-Button aktiv: Farbe für Farbverlauf oben";
App::$strings["Navigation active button gradient bottom color"] = "Navigations-Button aktiv: Farbe für Farbverlauf unten";
App::$strings["Navigation bar border color "] = "Farbe für den Rand der Navigationsleiste";
App::$strings["Navigation bar icon color "] = "Farbe für die Icons der Navigationsleiste";
App::$strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste";
App::$strings["link color"] = "Farbe für Links";
App::$strings["Set font-color for banner"] = "Farbe der Schrift des Banners";
App::$strings["Set the background color"] = "Hintergrundfarbe";
App::$strings["Set the background image"] = "Hintergrundbild";
App::$strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge";
App::$strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare";
App::$strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren";
App::$strings["Set the indent for comments"] = "Einzugsbreite für Kommentare";
App::$strings["Set the basic color for item icons"] = "Grundfarbe für Beitrags-Icons";
App::$strings["Set the hover color for item icons"] = "Farbe für Beitrags-Icons unter dem Mauszeiger";
App::$strings["Set font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung";
App::$strings["Example: 14px"] = "Beispiel: 14px";
App::$strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare";
App::$strings["Set font-color for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare";
App::$strings["Set radius of corners"] = "Ecken-Radius";
App::$strings["Set shadow depth of photos"] = "Schattentiefe von Fotos";
App::$strings["Set maximum width of content region in pixel"] = "Maximalbreite des Inhaltsbereichs in Pixel festlegen";
App::$strings["Leave empty for default width"] = "Leer lassen für Standardbreite";
App::$strings["Left align page content"] = "Seiteninhalt linksbündig anzeigen";
App::$strings["Set minimum opacity of nav bar - to hide it"] = "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)";
App::$strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern";
App::$strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren";
App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Suche %1\$s (%2\$s)";
App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen.";
App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s";
App::$strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können.";
App::$strings["Password"] = "Kennwort";
App::$strings["Remember me"] = "Angaben speichern";
App::$strings["Forgot your password?"] = "Passwort vergessen?";
App::$strings["toggle mobile"] = "auf/von mobile Ansicht wechseln";
App::$strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben.";
App::$strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Website-SSL-Fehler für %s";
App::$strings["Cron/Scheduled tasks not running."] = "Cron-Aufgaben laufen nicht.";
App::$strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron-Aufgaben für %s laufen nicht";