aboutsummaryrefslogtreecommitdiffstats
path: root/view/de-de/hstrings.php
blob: 79fb84bf4cd7aa6056bf5b4247ac96b6abece740 (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
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
<?php

if(! function_exists("string_plural_select_de_de")) {
function string_plural_select_de_de($n){
	return ($n != 1);
}}
App::$rtl = 0;
App::$strings["plural_function_code"] = "(n != 1)";
App::$strings["Default"] = "Standard";
App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)";
App::$strings["Submit"] = "Absenden";
App::$strings["Theme settings"] = "Design-Einstellungen";
App::$strings["Narrow navbar"] = "Schmale Navigationsleiste";
App::$strings["No"] = "Nein";
App::$strings["Yes"] = "Ja";
App::$strings["Navigation bar background color"] = "Hintergrundfarbe 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"] = "Linkfarbe";
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 font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung";
App::$strings["Examples: 1rem, 100%, 16px"] = "Beispiele: 1rem, 100%, 16px";
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["Example: 4px"] = "Beispiel: 4px";
App::$strings["Set shadow depth of photos"] = "Schattentiefe von Fotos";
App::$strings["Set maximum width of content region in rem"] = "Festlegen der maximalen Breite des Inhaltsbereichs in rem";
App::$strings["Leave empty for default width"] = "Leer lassen für Standardbreite";
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["Show advanced settings"] = "Erweiterte Einstellungen anzeigen";
App::$strings["Source channel not found."] = "Quellkanal nicht gefunden.";
App::$strings["Access Denied"] = "Zugriff verweigert";
App::$strings["Enable Community Moderation"] = "Aktivieren der Community-Moderation";
App::$strings["Reputation automatically given to new members"] = "Automatischer Reputationswert, den neue Mitglieder erhalten";
App::$strings["Reputation will never fall below this value"] = "Reputation wird niemals unter diesen Wert fallen";
App::$strings["Minimum reputation before posting is allowed"] = "Mindester Reputationswert, ab dem es erlaubt ist, Beiträge zu senden";
App::$strings["Minimum reputation before commenting is allowed"] = "Mindester Reputationswert, ab dem zu kommentieren erlaubt ist";
App::$strings["Minimum reputation before a member is able to moderate other posts"] = "Minimaler Reputationswert, ab dem ein Mitglied andere Beiträge moderieren kann";
App::$strings["Max ratio of moderator's reputation that can be added to/deducted from reputation of person being moderated"] = "Maximales Verhältnis des Ansehens des Moderators, das zum Ansehen der zu moderierenden Person hinzugefügt oder davon abgezogen werden kann";
App::$strings["Reputation \"cost\" to post"] = "Reputation \"Kosten\" zum Posten";
App::$strings["Reputation \"cost\" to comment"] = "Reputation \"Kosten\" zu kommentieren";
App::$strings["Reputation automatically recovers at this rate per hour until it reaches minimum_to_post"] = "Die Reputation erholt sich automatisch mit dieser Rate pro Stunde, bis sie \"Minimum_to_post\" erreicht";
App::$strings["When minimum_to_moderate > reputation > minimum_to_post reputation recovers at this rate per hour"] = "Wenn Minimum_bis_Mäßig > Reputation > Minimum_bis_Post Reputation sich mit dieser Rate pro Stunde erholt";
App::$strings["Community Moderation Settings"] = "Einstellung der Gemeinschafts-Moderation";
App::$strings["Channel Reputation"] = "Kanal-Reputation";
App::$strings["Close"] = "Schließen";
App::$strings["An Error has occurred."] = "Ein Fehler ist aufgetreten.";
App::$strings["Upvote"] = "Hoch-Wählen";
App::$strings["Downvote"] = "Herunter-Wählen";
App::$strings["Can moderate reputation on my channel."] = "Kann die Reputation meines Kanals mäßigen.";
App::$strings["Block Completely"] = "Vollständig blockieren";
App::$strings["superblock settings updated"] = "Superblock Einstellungen aktualisiert";
App::$strings["Currently blocked"] = "Derzeit blockiert";
App::$strings["No channels currently blocked"] = "Momentan sind keine Kanäle blockiert";
App::$strings["Remove"] = "Entfernen";
App::$strings["NSA Bait App"] = "NSA Bait App";
App::$strings["Make yourself a political target."] = "Machen Sie sich zur politischen Zielscheibe.";
App::$strings["Recent Channel/Profile Viewers"] = "Kürzliche Kanal/Profil Besucher";
App::$strings["No entries."] = "Keine Einträge.";
App::$strings["Add new page"] = "Neue Seite hinzufügen";
App::$strings["Markdown"] = "Markdown";
App::$strings["BBcode"] = "BBcode";
App::$strings["Text"] = "Text";
App::$strings["Options"] = "Optionen";
App::$strings["Wiki Pages"] = "Wikiseiten";
App::$strings["Page name"] = "Seitenname";
App::$strings["Wikis"] = "Wikis";
App::$strings["Name"] = "Name";
App::$strings["__ctx:wiki_history__ Message"] = "Nachricht";
App::$strings["Date"] = "Datum";
App::$strings["Revert"] = "Rückgängig machen";
App::$strings["Compare"] = "Vergleichen";
App::$strings["Wiki updated successfully"] = "Wiki erfolgreich aktualisiert";
App::$strings["Wiki files deleted successfully"] = "Wiki-Dateien erfolgreich gelöscht";
App::$strings["(No Title)"] = "(Kein Titel)";
App::$strings["Wiki page create failed."] = "Anlegen der Wiki-Seite fehlgeschlagen.";
App::$strings["Wiki not found."] = "Wiki nicht gefunden.";
App::$strings["Destination name already exists"] = "Zielname bereits vorhanden";
App::$strings["Page not found"] = "Seite nicht gefunden";
App::$strings["Error reading page content"] = "Fehler beim Lesen des Seiteninhalts";
App::$strings["Error reading wiki"] = "Fehler beim Lesen des Wiki";
App::$strings["Page update failed."] = "Seitenaktualisierung fehlgeschlagen.";
App::$strings["Nothing deleted"] = "Nichts gelöscht";
App::$strings["Compare: object not found."] = "Vergleichen: Objekt nicht gefunden.";
App::$strings["Page updated"] = "Seite aktualisiert";
App::$strings["Wiki resource_id required for git commit"] = "Die resource_id des Wiki wird benötigt für den git commit.";
App::$strings["Page not found."] = "Seite nicht gefunden.";
App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen";
App::$strings["Profile Unavailable."] = "Profil nicht verfügbar.";
App::$strings["Permission denied."] = "Berechtigung verweigert.";
App::$strings["Invalid channel"] = "Ungültiger Kanal";
App::$strings["Error retrieving wiki"] = "Fehler beim Abrufen des Wiki";
App::$strings["Error creating zip file export folder"] = "Fehler bei der Erzeugung des Zip-Datei Export-Verzeichnisses ";
App::$strings["Error downloading wiki: "] = "Fehler beim Herunterladen des Wiki:";
App::$strings["Edit"] = "Bearbeiten";
App::$strings["Download"] = "Herunterladen";
App::$strings["View"] = "Ansicht";
App::$strings["Create New"] = "Neu anlegen";
App::$strings["Wiki name"] = "Name des Wiki";
App::$strings["Content type"] = "Inhaltstyp";
App::$strings["Type"] = "Typ";
App::$strings["Any&nbsp;type"] = "Alle&nbsp;Arten";
App::$strings["Lock content type"] = "Inhaltstyp sperren";
App::$strings["Create a status post for this wiki"] = "Erzeuge einen Statusbeitrag für dieses Wiki";
App::$strings["Edit Wiki Name"] = "Wiki-Namen bearbeiten";
App::$strings["Wiki not found"] = "Wiki nicht gefunden";
App::$strings["Rename page"] = "Seite umbenennen";
App::$strings["Share"] = "Teilen";
App::$strings["Error retrieving page content"] = "Fehler beim Abrufen des Seiteninhalts";
App::$strings["New page"] = "Neue Seite";
App::$strings["Revision Comparison"] = "Revisionsvergleich";
App::$strings["Cancel"] = "Abbrechen";
App::$strings["Short description of your changes (optional)"] = "Kurze Beschreibung Ihrer Änderungen (optional)";
App::$strings["Source"] = "Quelle";
App::$strings["New page name"] = "Neuer Seitenname";
App::$strings["Embed image from photo albums"] = "Bild aus Fotoalben einbetten";
App::$strings["Embed an image from your albums"] = "Betten Sie ein Bild aus Ihren Alben ein";
App::$strings["OK"] = "Ok";
App::$strings["Choose images to embed"] = "Wählen Sie Bilder zum Einbetten aus";
App::$strings["Choose an album"] = "Wählen Sie ein Album aus";
App::$strings["Choose a different album"] = "Wählen Sie ein anderes Album aus";
App::$strings["Error getting album list"] = "Fehler beim Holen der Albenliste";
App::$strings["Error getting photo link"] = "Fehler beim Holen des Fotolinks";
App::$strings["Error getting album"] = "Fehler beim Holen des Albums";
App::$strings["History"] = "Historie";
App::$strings["Error creating wiki. Invalid name."] = "Fehler beim Erstellen des Wiki. Ungültiger Name.";
App::$strings["A wiki with this name already exists."] = "Es existiert bereits ein Wiki mit diesem Namen.";
App::$strings["Wiki created, but error creating Home page."] = "Das Wiki wurde erzeugt, aber es gab einen Fehler bei der Erstellung der Startseite";
App::$strings["Error creating wiki"] = "Fehler beim Erstellen des Wiki";
App::$strings["Error updating wiki. Invalid name."] = "Fehler beim Aktualisieren des Wikis. Ungültiger Name.";
App::$strings["Error updating wiki"] = "Fehler beim Aktualisieren des Wikis";
App::$strings["Wiki delete permission denied."] = "Wiki-Löschberechtigung verweigert.";
App::$strings["Error deleting wiki"] = "Fehler beim Löschen des Wiki";
App::$strings["New page created"] = "Neue Seite erstellt";
App::$strings["Cannot delete Home"] = "Kann die Startseite nicht löschen";
App::$strings["Current Revision"] = "Aktuelle Revision";
App::$strings["Selected Revision"] = "Ausgewählte Revision";
App::$strings["You must be authenticated."] = "Sie müssen authenzifiziert sein.";
App::$strings["System defaults:"] = "Systemstandardeinstellungen:";
App::$strings["Preferred Clipart IDs"] = "Bevorzugte Clipart-IDs";
App::$strings["List of preferred clipart ids. These will be shown first."] = "Liste bevorzugter Clipart-IDs. Diese werden zuerst angezeigt.";
App::$strings["Default Search Term"] = "Standard-Suchbegriff";
App::$strings["The default search term. These will be shown second."] = "Der Standard-Suchbegriff. Dieser wird an zweiter Stelle angezeigt.";
App::$strings["Return After"] = "Zurückkehren nach";
App::$strings["Page to load after image selection."] = "Die Seite, die nach Auswahl eines Bildes geladen werden soll.";
App::$strings["View Profile"] = "Profil ansehen";
App::$strings["Edit Profile"] = "Profil bearbeiten";
App::$strings["Profile List"] = "Profilliste";
App::$strings["Order of Preferred"] = "Reihenfolge der Bevorzugten";
App::$strings["Sort order of preferred clipart ids."] = "Sortierreihenfolge der bevorzugten Clipart-IDs.";
App::$strings["Newest first"] = "Neueste zuerst";
App::$strings["As entered"] = "Wie eingegeben";
App::$strings["Order of other"] = "Sortierung aller anderen";
App::$strings["Sort order of other clipart ids."] = "Sortierreihenfolge der übrigen Clipart-IDs.";
App::$strings["Most downloaded first"] = "Meist heruntergeladene zuerst";
App::$strings["Most liked first"] = "Beliebteste zuerst";
App::$strings["Preferred IDs Message"] = "Nachricht für bevorzugte IDs";
App::$strings["Message to display above preferred results."] = "Nachricht, die über den Ergebnissen mit den bevorzugten IDs angezeigt werden soll.";
App::$strings["Uploaded by: "] = "Hochgeladen von: ";
App::$strings["Drawn by: "] = "Gezeichnet von: ";
App::$strings["Use this image"] = "Dieses Bild verwenden";
App::$strings["Or select from a free OpenClipart.org image:"] = "Oder wähle ein freies Bild von OpenClipart.org:";
App::$strings["Search Term"] = "Suchbegriff";
App::$strings["Unknown error. Please try again later."] = "Unbekannter Fehler. Bitte versuchen Sie es später erneut.";
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["Profile photo updated successfully."] = "Profilfoto erfolgreich aktualisiert.";
App::$strings["Save Bookmarks"] = "Favoriten speichern";
App::$strings["Max queueworker threads"] = "Maximale Threads der Warteschlange";
App::$strings["Minimum 4, default 4"] = "Minimum 4, Standard 4";
App::$strings["Assume workers dead after"] = "Assume workers dead after";
App::$strings["Minimum 120, default 300 seconds"] = "Minimum 120, Standard 300 Sekunden";
App::$strings["Pause before starting next task"] = "Pausiere vor Beginn der nächsten Aufgabe";
App::$strings["Minimum 100, default 100 microseconds"] = "Minimum 100, Standard 100 Mikrosekunden";
App::$strings["Queueworker Settings"] = "Queueworker-Einstellungen";
App::$strings["Save"] = "Speichern";
App::$strings["Rainbow Tag App"] = "Rainbow Tag App";
App::$strings["Add some colour to tag clouds"] = "Macht die Stichwortsammlung bunter.";
App::$strings["Rainbow Tag"] = "Rainbow Tag";
App::$strings["Photo Cache settings saved."] = "Photo Cache-Einstellungen gesichert.";
App::$strings["Saves a copy of images from external sites locally to increase your anonymity in the web."] = "Speichert eine Kopie von Bildern von externen Websites lokal, um Ihre Anonymität im Web zu erhöhen.";
App::$strings["Minimal photo size for caching"] = "Minimale Bildgröße für die Zwischenspeicherung";
App::$strings["In pixels. From 1 up to 1024, 0 will be replaced with system default."] = "In Pixeln. Von 1 bis 1024 wird 0 durch die Systemvorgabe ersetzt.";
App::$strings["Photo Cache"] = "Foto Cache";
App::$strings["Gallery"] = "Galerie";
App::$strings["Photo Gallery"] = "Fotogalerie";
App::$strings["Requested profile is not available."] = "Das angefragte Profil ist nicht verfügbar.";
App::$strings["Random Planet App"] = "Zufallsplaneten-App";
App::$strings["Set a random planet from the Star Wars Empire as your location when posting"] = "Legt beim Versenden von Nachrichten einen zufällig ausgewählten Planeten aus der StarWars-Welt als Deinen/Ihren Standort fest.";
App::$strings["Male"] = "Männlich";
App::$strings["Female"] = "Weiblich";
App::$strings["OpenID protocol error. No ID returned."] = "OpenID-Protokollfehler. Keine Kennung zurückgegeben.";
App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
App::$strings["Login failed."] = "Login fehlgeschlagen.";
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["First Name"] = "Vorname";
App::$strings["Last Name"] = "Nachname";
App::$strings["Nickname"] = "Spitzname";
App::$strings["Full Name"] = "Voller Name";
App::$strings["Email"] = "E-Mail";
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["lonely"] = "einsam";
App::$strings["drunk"] = "betrunken";
App::$strings["horny"] = "geil";
App::$strings["stoned"] = "bekifft";
App::$strings["fucked up"] = "beschissen";
App::$strings["clusterfucked"] = "clusterfucked";
App::$strings["crazy"] = "verrückt";
App::$strings["hurt"] = "verletzt";
App::$strings["sleepy"] = "müde";
App::$strings["grumpy"] = "mürrisch";
App::$strings["high"] = "hoch";
App::$strings["semi-conscious"] = "halb bewusstlos";
App::$strings["in love"] = "verliebt";
App::$strings["in lust"] = "gamsig";
App::$strings["naked"] = "nackt";
App::$strings["stinky"] = "stinkend";
App::$strings["sweaty"] = "verschwitzt";
App::$strings["bleeding out"] = "blutend";
App::$strings["victorious"] = "siegreich";
App::$strings["defeated"] = "besiegt";
App::$strings["envious"] = "neidisch";
App::$strings["jealous"] = "eifersüchtig";
App::$strings["Hubzilla Directory Stats"] = "Hubzilla-Verzeichnisstatistiken";
App::$strings["Total Hubs"] = "Hubs insgesamt";
App::$strings["Hubzilla Hubs"] = "Hubzilla Hubs";
App::$strings["Friendica Hubs"] = "Friendica Hubs";
App::$strings["Diaspora Pods"] = "Diaspora Pods";
App::$strings["Hubzilla Channels"] = "Hubzilla-Kanäle";
App::$strings["Friendica Channels"] = "Friendica-Kanäle";
App::$strings["Diaspora Channels"] = "Diaspora-Kanäle";
App::$strings["Aged 35 and above"] = "35 und älter";
App::$strings["Aged 34 and under"] = "34 und jünger";
App::$strings["Average Age"] = "Durchschnittsalter";
App::$strings["Known Chatrooms"] = "Bekannte Chaträume";
App::$strings["Known Tags"] = "Bekannte Schlagwörter";
App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network.  This also applies to chatrooms,"] = "Bitte berücksichtige, dass Diaspora und Friendica Statistiken nur solche einschließen, die **diesem Verzeichnis** bekannt sind, nicht alle im Netzwerk bekannten. Das gilt auch für Chaträume.";
App::$strings["Channel is required."] = "Kanal ist erforderlich.";
App::$strings["Invalid channel."] = "Ungültiger Kanal.";
App::$strings["Hubzilla Crosspost Connector Settings saved."] = "Hubzilla Crosspost Connector Einstellungen gesichert.";
App::$strings["Send public postings to Hubzilla channel by default"] = "Sende öffentliche Beiträge standardmäßig an den Hubzilla Kanal";
App::$strings["Hubzilla API Path"] = "Hubzilla-API-Pfad";
App::$strings["https://{sitename}/api"] = "https://{sitename}/api";
App::$strings["Hubzilla login name"] = "Hubzilla-Anmeldename";
App::$strings["Hubzilla channel name"] = "Hubzilla-Kanalname";
App::$strings["Hubzilla password"] = "Hubzilla-Passwort";
App::$strings["Hubzilla Crosspost Connector"] = "Hubzilla Crosspost Connector";
App::$strings["Post to Hubzilla"] = "Verfasse einen Beitrag auf Hubzilla";
App::$strings["Photos imported"] = "Fotos importiert";
App::$strings["Permission denied"] = "Keine Berechtigung";
App::$strings["Redmatrix Photo Album Import"] = "Redmatrix-Fotoalbumimport";
App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Hiermit werden all deine Fotoalben von Redmatrix in diesen Kanal importiert.";
App::$strings["Redmatrix Server base URL"] = "Basis-URL des Redmatrix Servers";
App::$strings["Redmatrix Login Username"] = "Redmatrix-Anmeldebenutzername";
App::$strings["Redmatrix Login Password"] = "Redmatrix-Anmeldepasswort";
App::$strings["Import just this album"] = "Nur dieses Album importieren";
App::$strings["Leave blank to import all albums"] = "Leer lassen um alle Alben zu importieren";
App::$strings["Maximum count to import"] = "Maximal zu importierende Anzahl";
App::$strings["0 or blank to import all available"] = "0 oder leer lassen um alles zu importieren";
App::$strings["photo"] = "Foto";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Bitte kontaktiere den Administrator deines Hubs.<br />Die angegebene API URL ist nicht korrekt.";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "Mit dem angegebenen Pfad war es uns nicht möglich, die GNU social API zu erreichen.";
App::$strings["GNU social settings updated."] = "GNU social Einstellungen aktualisiert.";
App::$strings["Globally Available GNU social OAuthKeys"] = "Global verfügbare GNU social OAuthKeys";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br />If not feel free to connect to any other GNU social instance (see below)."] = "Für einige GNU social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. <br />Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen GNU social Server her (siehe unten).";
App::$strings["Provide your own OAuth Credentials"] = "Stelle deine eigenen OAuth Credentials zur Verfügung";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Kein Consumer-Schlüsselpaar für GNU social gefunden. Registriere deinen Hubzilla-Account als Desktop-Client bei deinem GNU social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Hubzilla-Servers, ob schon ein Schlüsselpaar für diesen Hubzilla-Server auf diesem GNU social-Server existiert.";
App::$strings["OAuth Consumer Key"] = "OAuth Consumer Key";
App::$strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
App::$strings["Base API Path"] = "Basis Pfad der API";
App::$strings["Remember the trailing /"] = "Denke an das abschließende /";
App::$strings["GNU social application name"] = "GNU social Anwendungsname";
App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to GNU social."] = "Um dich mit deinem GNU social Konto zu verbinden, klicke den Button unten und kopiere dann den Sicherheitscode von GNU social in das Formular weiter unten. Es werden ausschließlich deine <strong>öffentlichen</strong> Beiträge auf GNU social veröffentlicht.";
App::$strings["Log in with GNU social"] = "Mit GNU social anmelden";
App::$strings["Copy the security code from GNU social here"] = "Kopiere den Sicherheitscode von GNU social hier her";
App::$strings["Cancel Connection Process"] = "Verbindungsprozes abbrechen";
App::$strings["Current GNU social API is"] = "Aktuelle GNU social API ist";
App::$strings["Cancel GNU social Connection"] = "GNU social Verbindung trennen";
App::$strings["Currently connected to: "] = "Momentan verbunden mit:";
App::$strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis:</strong> Entsprechend Deiner Privatsphären-Einstellungen (<em>Profil-Details vor nicht angemeldeten Besuchern verbergen?</em>) kann ein ggf. zu GNU social geteilter Link in öffentlichen Beiträgen Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist.";
App::$strings["Post to GNU social by default"] = "Standardmäßig bei GNU social veröffentlichen";
App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Konto veröffentlicht.";
App::$strings["Clear OAuth configuration"] = "OAuth Konfiguration löschen";
App::$strings["GNU-Social Crosspost Connector"] = "GNU-Social Crosspost Connector";
App::$strings["Post to GNU social"] = "Bei GNU social veröffentlichen";
App::$strings["Site name"] = "Seitenname";
App::$strings["API URL"] = "API-URL";
App::$strings["Consumer Secret"] = "Consumer Secret";
App::$strings["Consumer Key"] = "Consumer Key";
App::$strings["Application name"] = "Anwendungsname";
App::$strings["Friendica Crosspost Connector Settings saved."] = "Friendica Crosspost Connector Einstellungen gespeichert.";
App::$strings["Send public postings to Friendica by default"] = "Standardmäßig öffentliche Beiträge bei Friendica veröffentlichen";
App::$strings["Friendica API Path"] = "Friendica-API-Pfad";
App::$strings["Friendica login name"] = "Friendica-Anmeldename";
App::$strings["Friendica password"] = "Friendica-Passwort";
App::$strings["Friendica Crosspost Connector"] = "Friendica Crosspost Connector";
App::$strings["Post to Friendica"] = "Bei Friendica veröffentlichen";
App::$strings["Post to WordPress"] = "Auf WordPress posten";
App::$strings["Wordpress Settings saved."] = "Wordpress-Einstellungen gespeichert.";
App::$strings["WordPress username"] = "WordPress-Benutzername";
App::$strings["WordPress password"] = "WordPress-Passwort";
App::$strings["WordPress API URL"] = "WordPress-API-URL";
App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Normalerweise https://your-blog.tld/xmlrpc.php";
App::$strings["WordPress blogid"] = "WordPress blogid";
App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Nötig für Mehrbenutzer Seiten wie wordpress.com, andernfalls frei lassen";
App::$strings["Post to WordPress by default"] = "Standardmäßig auf auf WordPress posten";
App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Kommentare weiterleiten (benötigt hubzilla_wp Plugin)";
App::$strings["Add link to original post"] = "Link zum Originalbeitrag hinzufügen";
App::$strings["Link description (default:"] = "Linkbeschreibung (Standard:";
App::$strings["Wordpress Post"] = "Wordpress-Beitrag";
App::$strings["No server specified"] = "Kein Server angegeben";
App::$strings["Posts imported"] = "Die Beiträge wurden importiert";
App::$strings["Files imported"] = "Die Dateien wurden importiert";
App::$strings["Content Import"] = "Inhalte-Import";
App::$strings["This will import all your conversations and cloud files from a cloned channel on another server. This may take a while if you have lots of posts and or files."] = "Dadurch werden alle Ihre Unterhaltungen und Cloud-Dateien von einem geklonten Kanal auf einem anderen Server importiert. Dies kann eine Weile dauern, wenn Sie viele Beiträge und/oder Dateien haben.";
App::$strings["Include posts"] = "Include posts";
App::$strings["Conversations, Articles, Cards, and other posted content"] = "Conversations, Articles, Cards, and other posted content";
App::$strings["Include files"] = "Include files";
App::$strings["Files, Photos and other cloud storage"] = "Files, Photos and other cloud storage";
App::$strings["Original Server base URL"] = "Original Server base URL";
App::$strings["Since modified date yyyy-mm-dd"] = "Seit Modifizierungsdatum yyyy-mm-dd";
App::$strings["Until modified date yyyy-mm-dd"] = "Bis Modifizierungsdatum yyyy-mm-dd";
App::$strings["Set your location"] = "Standort";
App::$strings["Clear browser location"] = "Browser-Standort löschen";
App::$strings["Insert web link"] = "Link einfügen";
App::$strings["Embed (existing) photo from your photo albums"] = "Bette ein (existierendes) Foto von Deinem Foto-Album ein";
App::$strings["Please enter a link URL:"] = "Gib eine URL ein:";
App::$strings["Tag term:"] = "Schlagwort:";
App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?";
App::$strings["Choose a different album..."] = "Wählen Sie ein anderes Album aus...";
App::$strings["Comments enabled"] = "Kommentare aktiviert";
App::$strings["Comments disabled"] = "Kommentare deaktiviert";
App::$strings["Preview"] = "Vorschau";
App::$strings["Page link name"] = "Link zur Seite";
App::$strings["Post as"] = "Veröffentlichen als";
App::$strings["Bold"] = "Fett";
App::$strings["Italic"] = "Kursiv";
App::$strings["Underline"] = "Unterstrichen";
App::$strings["Quote"] = "Zitat";
App::$strings["Code"] = "Code";
App::$strings["Attach/Upload file"] = "Datei anhängen/hochladen";
App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren";
App::$strings["Disable comments"] = "Kommentare deaktivieren";
App::$strings["Toggle comments"] = "Kommentare umschalten";
App::$strings["Title (optional)"] = "Titel (optional)";
App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)";
App::$strings["Permission settings"] = "Berechtigungs-Einstellungen";
App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen";
App::$strings["Set expiration date"] = "Verfallsdatum";
App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen";
App::$strings["Encrypt text"] = "Text verschlüsseln";
App::$strings["WYSIWYG status editor"] = "WYSIWYG-Statuseditor";
App::$strings["WYSIWYG Status App"] = "WYSIWYG Status App";
App::$strings["WYSIWYG Status"] = "WYSIWYG-Status";
App::$strings["View Larger"] = "Größer anzeigen";
App::$strings["Tile Server URL"] = "Kachelserver-URL";
App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Eine Liste <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">öffentlicher Kachelserver</a>";
App::$strings["Nominatim (reverse geocoding) Server URL"] = "Nominatim (reverse Geokodierung) Server URL";
App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=\"_blank\">Nominatim servers</a>"] = "Eine Liste der <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=\"_blank\">Nominatim Server</a>";
App::$strings["Default zoom"] = "Standardzoom";
App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Die Standard-Vergrößerungsstufe (1:Welt, 18:höchste, hängt außerdem vom Kachelserver ab).";
App::$strings["Include marker on map"] = "Markierung auf der Karte einschließen";
App::$strings["Include a marker on the map."] = "Binde eine Markierung auf der Karte ein.";
App::$strings["Settings updated."] = "Einstellungen aktualisiert.";
App::$strings["Insane Journal Crosspost Connector Settings saved."] = "Insane Journal Crosspost Connector Settings saved.";
App::$strings["Insane Journal Crosspost Connector App"] = "Insane Journal Crosspost Connector App";
App::$strings["Not Installed"] = "Nicht installiert";
App::$strings["Relay public postings to Insane Journal"] = "Relay public postings to Insane Journal";
App::$strings["InsaneJournal username"] = "InsaneJournal-Benutzername";
App::$strings["InsaneJournal password"] = "InsaneJournal-Passwort";
App::$strings["Post to InsaneJournal by default"] = "Standardmäßig bei InsaneJournal veröffentlichen";
App::$strings["Insane Journal Crosspost Connector"] = "Insane Journal Crosspost Connector";
App::$strings["Post to Insane Journal"] = "Post to Insane Journal";
App::$strings["Who likes me?"] = "Wer mag mich?";
App::$strings["QR code"] = "QR-Code";
App::$strings["QR Generator"] = "QR-Generator";
App::$strings["Enter some text"] = "Etwas Text eingeben";
App::$strings["ActivityPub"] = "ActivityPub";
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["ActivityPub Protocol Settings updated."] = "ActivityPub Protokoll Einstellungen aktualisiert";
App::$strings["The activitypub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das ActivityPub-Protokoll ist nicht standortunabhängig. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Standorten (Klonen) dieses Kanals aus unerreichbar sein.";
App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Liefere an ActivityPub-Empfänger in Privacy Gruppen";
App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "Könnte zu einer großen Anzahl an Erwähnungen führen und die Mitglieder deiner privaten Gruppe exponieren.";
App::$strings["Send multi-media HTML articles"] = "Multimedia HTML Artikel versenden";
App::$strings["Not supported by some microblog services such as Mastodon"] = "Wird von einigen Microblogging-Plattformen wie Mastodon nicht unterstützt";
App::$strings["Activitypub Protocol"] = "ActivityPub-Protokoll";
App::$strings["ERROR: word length is not correct!"] = "ERROR: Die Wortlänge ist nicht korrekt!";
App::$strings["Fediwordle App"] = "Fediwordle App";
App::$strings["A distributed word game inspired by wordle."] = "Ein distributieves Wortspiel, inspiriert von Wordle.";
App::$strings["To start a game, enter [wordle]your_word[/wordle] somewhere in a toplevel post."] = "Um ein Spiel zu starten, geben Sie [wordle]Ihr_Wort[/wordle] irgendwo in einer Toplevel-Post ein.";
App::$strings["Your contacts can post their guess in the comments."] = "Ihre Kontakte können ihre Vermutungen in den Kommentaren abgeben.";
App::$strings["Your channel will evaluate the guess and automatically post the response."] = "Ihr Kanal wird den Tipp auswerten und die Antwort automatisch veröffentlichen.";
App::$strings["Correct letters"] = "Richtige Buchstaben";
App::$strings["Letters contained in the word but at the wrong spot"] = "Buchstaben im Wort enthalten, aber an der falschen Stelle";
App::$strings["Letters not contained in the word"] = "Buchstaben, die nicht im Wort enthalten sind";
App::$strings["An account has been created for you."] = "Ein Konto wurde für Sie erstellt.";
App::$strings["Authentication successful but rejected: account creation is disabled."] = "Authentifizierung war erfolgreich, wurde aber abgewiesen! Das Anlegen von Konten wurde deaktiviert.";
App::$strings["Dreamwidth Crosspost Connector Settings saved."] = "Dreamwidth Crosspost Connector Settings saved.";
App::$strings["Dreamwidth username"] = "Dreamwidth-Benutzername";
App::$strings["Dreamwidth password"] = "Dreamwidth-Passwort";
App::$strings["Post to Dreamwidth by default"] = "Standardmäßig auf auf Dreamwidth posten";
App::$strings["Dreamwidth Crosspost Connector"] = "Dreamwidth Crosspost Connector";
App::$strings["Post to Dreamwidth"] = "Bei Dreamwidth veröffentlichen";
App::$strings["bitchslap"] = "Ohrfeige";
App::$strings["bitchslapped"] = "geohrfeigt";
App::$strings["shag"] = "bumsen";
App::$strings["shagged"] = "gebumst";
App::$strings["patent"] = "Patent";
App::$strings["patented"] = "patentiert";
App::$strings["hug"] = "umarmen";
App::$strings["hugged"] = "umarmt";
App::$strings["murder"] = "ermorden";
App::$strings["murdered"] = "ermordet";
App::$strings["worship"] = "Anbetung";
App::$strings["worshipped"] = "angebetet";
App::$strings["kiss"] = "küssen";
App::$strings["kissed"] = "geküsst";
App::$strings["tempt"] = "verlocken";
App::$strings["tempted"] = "verlockt";
App::$strings["raise eyebrows at"] = "Augenbrauen hochziehen";
App::$strings["raised their eyebrows at"] = "zog die Augenbrauen hoch";
App::$strings["insult"] = "beleidigen";
App::$strings["insulted"] = "beleidigt";
App::$strings["praise"] = "loben";
App::$strings["praised"] = "gelobt";
App::$strings["be dubious of"] = "be dubious of";
App::$strings["was dubious of"] = "was dubious of";
App::$strings["eat"] = "essen";
App::$strings["ate"] = "aß";
App::$strings["giggle and fawn at"] = "giggle and fawn at";
App::$strings["giggled and fawned at"] = "giggled and fawned at";
App::$strings["doubt"] = "anzweifeln";
App::$strings["doubted"] = "angezweifelt";
App::$strings["glare"] = "glare";
App::$strings["glared at"] = "glared at";
App::$strings["fuck"] = "ficken";
App::$strings["fucked"] = "gefickt";
App::$strings["bonk"] = "bonk";
App::$strings["bonked"] = "bonked";
App::$strings["declare undying love for"] = "erkläre unsterbliche Liebe";
App::$strings["declared undying love for"] = "erklärte unsterbliche Liebe";
App::$strings["Errors encountered deleting database table "] = "Beim Löschen der Datenbanktabelle sind Fehler aufgetreten.";
App::$strings["Submit Settings"] = "Einstellungen absenden";
App::$strings["Drop tables when uninstalling?"] = "Lösche Tabellen beim Deinstallieren?";
App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Wenn ausgewählt, werden die Rendezvous-Tabellen in der Datenbank gelöscht, sobald das Plugin deinstalliert wird.";
App::$strings["Mapbox Access Token"] = "Mapbox Zugangs-Token";
App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Wenn Du ein Mapbox Zugangs-Token eingibst, werden die Kartendaten (Kacheln) damit von Mapbox geladen, anstatt von OpenStreetMap, welches die Voreinstellung ist.";
App::$strings["Rendezvous"] = "Rendezvous";
App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Diese Identität wurde von einem anderen Mitglied aufgrund von Inaktivität gelöscht. Bitte klicke auf \"Neue Identität\" oder aktualisiere die Website im Browser, um eine neue Identität zu registrieren. Du kannst dabei den selben Namen verwenden.";
App::$strings["Welcome to Rendezvous!"] = "Willkommen bei Rendezvous!";
App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Gib Deinen Namen ein, um diesem Rendezvous beizutreten. Um Deinen Standort mit anderen Mitgliedern zu teilen, klicke auf das GPS Symbol. Sobald Dein Standort ermittelt ist, erscheint ein roter Punkt, und die Anderen werden Dich auf der Karte sehen können.";
App::$strings["Let's meet here"] = "Lasst uns hier treffen";
App::$strings["Description"] = "Beschreibung";
App::$strings["New marker"] = "Neue Markierung";
App::$strings["Edit marker"] = "Markierung bearbeiten";
App::$strings["New identity"] = "Neue Identität";
App::$strings["Delete marker"] = "Markierung löschen";
App::$strings["Delete member"] = "Mitglied löschen";
App::$strings["Edit proximity alert"] = "Annäherungsalarm bearbeiten";
App::$strings["A proximity alert will be issued when this member is within a certain radius of you.<br><br>Enter a radius in meters (0 to disable):"] = "Ein Annäherungsalarm wird ausgelöst werden, sobald sich dieses Mitglied innerhalb eines bestimmten Radius von Dir aufhält.<br><br>Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):";
App::$strings["distance"] = "Entfernung";
App::$strings["Proximity alert distance (meters)"] = "Entfernung für Annäherungsalarm (in Metern)";
App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.<br><br>Enter a radius in meters (0 to disable):"] = "Ein Annäherungsalarm wird ausgelöst werden, sobald Du Dich innerhalb eines bestimmten Radius der Markierung aufhält.<br><br>Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):";
App::$strings["Marker proximity alert"] = "Annäherungsalarm für Markierung";
App::$strings["Reminder note"] = "Erinnerungshinweis";
App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Gib eine Nachricht ein, die angezeigt werden soll, wenn Du Dich in der festgelegten Nähe befindest...";
App::$strings["Add new rendezvous"] = "Neues Rendezvous hinzufügen";
App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Erstelle ein neues Rendezvous und teile den Zugriffslink mit allen, die Du in die Gruppe einladen möchtest. Die, die den Link öffnen, werden Mitglieder des Rendezvous. Sie können die Standorte der anderen Mitglieder sehen, Marker zur Karte hinzufügen oder ihre eigenen Standorte mit der Gruppe teilen.";
App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "Du hast kein Rendezvous. Drücke den Knopf oben, um ein Rendezvous zu erstellen!";
App::$strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten.";
App::$strings["Page to load after login"] = "Seite, die nach dem Login geladen werden soll";
App::$strings["Examples: &quot;apps&quot;, &quot;network?f=&gid=37&quot; (privacy collection), &quot;channel&quot; or &quot;notifications/system&quot; (leave blank for default network page (grid)."] = "Beispiele: &quot;apps&quot;, &quot;network?f=&gid=37&quot; (Gruppen-gefilterte Beiträge), &quot;channel&quot; oder &quot;notifications/system&quot; (freilassen für die Standard-Netzwerkseite (grid).";
App::$strings["Startpage"] = "Startseite";
App::$strings["Your channel has been upgraded to \$Projectname version"] = "Ihr Kanal wurde auf die Version \$Projectname aktualisiert";
App::$strings["Please have a look at the"] = "Bitte sehen Sie sich das an";
App::$strings["git history"] = "git history";
App::$strings["change log"] = "change log";
App::$strings["for further info."] = "für weitere Informationen.";
App::$strings["Upgrade Info"] = "Upgrade Info";
App::$strings["Do not show this again"] = "nicht mehr anzeigen";
App::$strings["Twitter settings updated."] = "Twitter-Einstellungen aktualisiert.";
App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Es wurde kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte kontaktiere deinen Seiten-Administrator.";
App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "Auf diesem Hubzilla-Server ist das Twitter-Plugin aktiviert, aber Du hast Dich hier noch nicht mit Deinem Twitter-Konto verbunden. Um dies zu tun, klicke die Schaltfläche unten, um eine PIN von Twitter zu erhalten, die Du dann in das Eingabefeld darunter einfügen und das Formular bestätigen musst. Nur Deine <strong>öffentlichen</strong> Beiträge werden auf Twitter geteilt.";
App::$strings["Log in with Twitter"] = "Mit Twitter anmelden";
App::$strings["Copy the PIN from Twitter here"] = "PIN von Twitter hier her kopieren";
App::$strings["<strong>Note:</strong> Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis:</strong> Entsprechend Deiner Privatsphären-Einstellungen (<em>Profil-Details vor nicht angemeldeten Besuchern verbergen?</em>) kann ein ggf. zu Twitter geteilter Link Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist.";
App::$strings["Twitter post length"] = "Länge von Twitter Beiträgen";
App::$strings["Maximum tweet length"] = "Maximale Länge eines Tweets";
App::$strings["Send public postings to Twitter by default"] = "Standardmäßig öffentliche Beiträge bei Twitter veröffentlichen";
App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Wenn aktiv werden deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden.";
App::$strings["Twitter Crosspost Connector"] = "Twitter Crosspost Connector";
App::$strings["Post to Twitter"] = "Bei Twitter veröffentlichen";
App::$strings["You are now authenticated to pumpio."] = "Du bist nun bei pumpio authenzifiziert.";
App::$strings["return to the featured settings page"] = "Zur Funktions-Einstellungsseite zurückkehren";
App::$strings["Post to Pump.io"] = "Bei pumpio veröffentlichen";
App::$strings["Pump.io Settings saved."] = "Pump.io Settings saved.";
App::$strings["Pump.io servername"] = "Pump.io-Servername";
App::$strings["Without \"http://\" or \"https://\""] = "Ohne \"http://\" oder \"https://\"";
App::$strings["Pump.io username"] = "Pump.io-Benutzername";
App::$strings["Without the servername"] = "Ohne dem Servernamen";
App::$strings["You are not authenticated to pumpio"] = "Du bist nicht bei pumpio authentifiziert.";
App::$strings["(Re-)Authenticate your pump.io connection"] = "Deine pumpio Verbindung (erneut) authentifizieren";
App::$strings["Post to pump.io by default"] = "Standardmäßig bei pumpio veröffentlichen";
App::$strings["Should posts be public"] = "Sollen die Beiträge öffentlich sein";
App::$strings["Mirror all public posts"] = "Öffentliche Beiträge spiegeln";
App::$strings["Pump.io Crosspost Connector"] = "Pump.io Crosspost Connector";
App::$strings["generic profile image"] = "generisches Profilbild";
App::$strings["random geometric pattern"] = "zufälliges geometrisches Muster";
App::$strings["monster face"] = "Monstergesicht";
App::$strings["computer generated face"] = "computergeneriertes Gesicht";
App::$strings["retro arcade style face"] = "Gesicht im Retro-Arcade Stil";
App::$strings["Hub default profile photo"] = "Standard-Profilfoto für diesen Hub";
App::$strings["Information"] = "Information";
App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere entweder das Libreavatar oder das Gravatar Addon.<br>Das Libravatar Addon verwendet als Notfalllösung Gravatar, sollte bei Libravatar kein Profilbild gefunden werden.";
App::$strings["Save Settings"] = "Einstellungen speichern";
App::$strings["Default avatar image"] = "Standard-Avatarbild";
App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Wähle das Standardprofilbild aus, sollte bei Gravatar keines gefunden werden. Beachte auch die README.";
App::$strings["Rating of images"] = "Bewertungen der Bilder";
App::$strings["Select the appropriate avatar rating for your site. See README"] = "Wähle die für deine Seite angemessene Profilbildeinstufung. Beachte auch die README.";
App::$strings["Gravatar settings updated."] = "Gravatar-Einstellungen aktualisiert.";
App::$strings["text to include in all outgoing posts from this site"] = "Test der in alle Beiträge angefügt werden soll, die von dieser Seite ausgehen";
App::$strings["Send your identity to all websites"] = "Send your identity to all websites";
App::$strings["Send ZID"] = "Sende die ZID";
App::$strings["Price"] = "Preis";
App::$strings["Error: order mismatch. Please try again."] = "Fehler: Bestellungen stimmen nicht überein. Bitte versuche es noch einmal.";
App::$strings["Manual payments are not enabled."] = "Manuelle Zahlungen sind nicht aktiviert.";
App::$strings["Order not found."] = "Bestellung nicht gefunden.";
App::$strings["Finished"] = "Fertig";
App::$strings["Enable Subscription Management Module"] = "Modul Abonnementverwaltung aktivieren";
App::$strings["Cannot include subscription items with different terms in the same order."] = "";
App::$strings["Select Subscription to Edit"] = "Wählen Sie Abonnement zum Bearbeiten";
App::$strings["Edit Subscriptions"] = "Abonnements bearbeiten";
App::$strings["Subscription SKU"] = "Subscription SKU";
App::$strings["Catalog Description"] = "Katalogbeschreibung";
App::$strings["Subscription available for purchase."] = "Abo zum Erwerb verfügbar.";
App::$strings["Maximum active subscriptions to this item per account."] = "Maximal aktive Abonnements für diesen Artikel pro Konto.";
App::$strings["Subscription price."] = "Preis des Abonnements.";
App::$strings["Quantity"] = "Menge";
App::$strings["Term"] = "Term";
App::$strings["Enable Hubzilla Services Module"] = "Enable Hubzilla Services Module";
App::$strings["New Sku"] = "New Sku";
App::$strings["Cannot save edits to locked item."] = "Bearbeitungen an gesperrten Artikeln können nicht gespeichert werden.";
App::$strings["SKU not found."] = "SKU nicht gefunden.";
App::$strings["Invalid Activation Directive."] = "Ungültige Aktivierungsrichtlinie.";
App::$strings["Invalid Deactivation Directive."] = "Ungültige Deaktivierungsrichtlinie";
App::$strings["Add to this privacy group"] = "Zu dieser Privacy Gruppe hinzufügen";
App::$strings["Set user service class"] = "Benutzerdienstklasse festlegen";
App::$strings["You must be using a local account to purchase this service."] = "Sie müssen ein lokales Konto verwenden, um diesen Dienst zu erwerben.";
App::$strings["Changes Locked"] = "Änderungen gesperrt";
App::$strings["Item available for purchase."] = "Artikel zum Kauf verfügbar.";
App::$strings["Photo URL"] = "URL zum Bild";
App::$strings["Add buyer to privacy group"] = "Käufer zur Privacy Gruppe hinzufügen";
App::$strings["Add buyer as connection"] = "Käufer als Verbindung hinzufügen";
App::$strings["Set Service Class"] = "Dienstklasse festlegen";
App::$strings["Enable Order/Item Options"] = "Enable Order/Item Options";
App::$strings["Label"] = "Label";
App::$strings["Required"] = "Benötigt";
App::$strings["Instructions"] = "Anleitung";
App::$strings["Enable Paypal Button Module"] = "Paypal Button Modul aktivieren";
App::$strings["Use Production Key"] = "Use Production Key";
App::$strings["Paypal Sandbox Client Key"] = "Paypal Sandbox Client Key";
App::$strings["Paypal Sandbox Secret Key"] = "Paypal Sandbox Secret Key";
App::$strings["Paypal Production Client Key"] = "Paypal Production Client Key";
App::$strings["Paypal Production Secret Key"] = "Paypal Production Secret Key";
App::$strings["Paypal button payments are not enabled."] = "Paypal button payments are not enabled.";
App::$strings["Paypal button payments are not properly configured.  Please choose another payment option."] = "Paypal button payments are not properly configured.  Please choose another payment option.";
App::$strings["Enable Paypal Button Module (API-v2)"] = "Enable Paypal Button Module (API-v2)";
App::$strings["Enable Manual Cart Module"] = "Manuelles Warenkorbmodul einschalten";
App::$strings["Access Denied."] = "Zugang abgelehnt.";
App::$strings["Order Not Found"] = "Bestellung nicht gefunden";
App::$strings["Invalid Item"] = "Ungültiges Element";
App::$strings["Enable Test Catalog"] = "Aktiviere den Test-Warenbestand";
App::$strings["Enable Manual Payments"] = "Aktiviere manuelle Zahlungen";
App::$strings["Base Merchant Currency"] = "Base Merchant Currency";
App::$strings["Cart Settings"] = "Warenkorb-Einstellungen";
App::$strings["DB Cleanup Failure"] = "DB Cleanup Failure";
App::$strings["[cart] Item Added"] = "Artikel zum Warenkorb hinzugefügt";
App::$strings["Order already checked out."] = "Bestellung bereits ausgecheckt.";
App::$strings["Drop database tables when uninstalling."] = "Löschen von Datenbanktabellen bei der Deinstallation.";
App::$strings["Shop"] = "Shop";
App::$strings["You must be logged into the Grid to shop."] = "Sie müssen im Netzwerk angemeldet sein, um einkaufen zu können.";
App::$strings["Access denied."] = "Zugriff verweigert.";
App::$strings["No Order Found"] = "Keine Bestellung gefunden";
App::$strings["An unknown error has occurred Please start again."] = "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es noch einmal.";
App::$strings["Requirements not met."] = "Anforderungen nicht erfüllt.";
App::$strings["Review your order and complete any needed requirements."] = "Überprüfen Sie Ihre Bestellung und vervollständigen Sie alle erforderlichen Anforderungen.";
App::$strings["Invalid Payment Type.  Please start again."] = "Unbekannte Zahlungsmethode. Bitte versuche es noch einmal.";
App::$strings["Order not found"] = "Bestellung nicht gefunden";
App::$strings["nofed Settings saved."] = "nofed Einstellungen gespeichert";
App::$strings["Federate posts by default"] = "Beiträge standardmäßig verteilen";
App::$strings["No Federation"] = "Keine Föderation";
App::$strings["Federate"] = "Beitrag verteilen";
App::$strings["Hide the button and show the smilies directly."] = "Verstecke die Schaltfläche und zeige die Smilies direkt an.";
App::$strings["Smileybutton Settings"] = "Smileyknopf-Einstellungen";
App::$strings["file"] = "Datei";
App::$strings["Redmatrix File Storage Import"] = "Import des Redmatrix Datei Speichers";
App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Hiermit werden alle deine Daten aus der Redmatrix Cloud in diesen Kanal importiert.";
App::$strings["Please install the statistics addon to be able to configure a diaspora relay"] = "Bitte installiere das Statistik-Addon, um ein diaspora-Konto für die Weiterleitung konfigurieren zu können.";
App::$strings["Diaspora Relay Handle"] = "Diaspora Weiterleitungs-Konto";
App::$strings["Address of a diaspora relay. Example: relay@diasporarelay.tld"] = "Adresse des diaspora Weiterleitungs-Kontos. Beispiel: relay@diasporarelay.tld";
App::$strings["Diaspora relay could not be imported"] = "Diaspora Weiterleitungs-Konto konnte nicht importiert werden.";
App::$strings["No subject"] = "Kein Thema";
App::$strings["\$projectname"] = "\$projectname";
App::$strings["No username found in import file."] = "Es wurde kein Nutzername in der importierten Datei 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["Import completed."] = "Import abgeschlossen.";
App::$strings["Diaspora Protocol Settings updated."] = "Diaspora Protokoll Einstellungen aktualisiert";
App::$strings["The diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das Diaspora-Protokoll ist nicht standortunabhängig. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Standorten (Klonen) dieses Kanals aus unerreichbar sein.";
App::$strings["Allow any Diaspora member to comment or like your public posts"] = "Erlauben Sie jedem Diaspora-Mitglied, Ihre öffentlichen Beiträge zu kommentieren oder zu mögen";
App::$strings["If this setting is disabled only your contacts will be able to comment or like your public posts"] = "Wenn diese Einstellung deaktiviert ist, können nur Ihre Kontakte Ihre öffentlichen Beiträge kommentieren oder mögen.";
App::$strings["Prevent your hashtags from being redirected to other sites"] = "Verhindern, dass Deine Hashtags zu anderen Seiten umgeleitet werden";
App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Signieren und Weiterleiten von Beiträgen und Kommentaren ohne vorhandene Diaspora-Signatur";
App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Verfolgte Hashtags (Komma separierte Liste, ohne die #)";
App::$strings["Diaspora Protocol"] = "Diaspora-Protokoll";
App::$strings["%1\$s dislikes %2\$s's %3\$s"] = "%1\$s dislikes %2\$s's %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["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Diese Website verwendet <a href='http://www.piwik.org'>Piwik</a>, um die Besucherzugriffe auszuwerten.";
App::$strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Wenn Du nicht möchtest, dass Deine Besuche zu diesem Zweck gespeichert werden, kannst Du <a href='%s'>ein Cookie setzen, welches Piwik davon abhält, Deine weiteren Besuche auf dieser Website zu verfolgen</a> (Opt-out).";
App::$strings["Piwik Base URL"] = "Piwik Basis-URL";
App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Der absolute Pfad zu Deiner Piwik-Installation (ohne Protokoll (http/s), aber mit abschließendem Schrägstrich / ).";
App::$strings["Site ID"] = "Seitenkennung";
App::$strings["Show opt-out cookie link?"] = "Den Opt-out Cookie-Link anzeigen?";
App::$strings["Asynchronous tracking"] = "Asynchrones Tracking";
App::$strings["Enable frontend JavaScript error tracking"] = "Ermögliche Frontend-JavaScript-Fehlertracking";
App::$strings["This feature requires Piwik >= 2.2.0"] = "Diese Funktion erfordert Piwik >= 2.2.0";
App::$strings["Workflow user."] = "Workflow user.";
App::$strings["This channel"] = "Dieser Kanal";
App::$strings["Primary"] = "Primär";
App::$strings["Create New Workflow Item"] = "Neues Workflow-Element erstellen";
App::$strings["Workflow"] = "Workflow";
App::$strings["No Workflows Available"] = "Keine Workflows verfügbar";
App::$strings["Add item to which workflow"] = "Artikel zu welchem Workflow hinzufügen";
App::$strings["Create Workflow Item"] = "Workflow-Item erstellen";
App::$strings["Link"] = "Link";
App::$strings["Web link."] = "Web link.";
App::$strings["Title"] = "Titel";
App::$strings["Brief description or title"] = "Kurzbeschreibung oder Titel";
App::$strings["Notes"] = "Notizen";
App::$strings["Notes and Info"] = "Hinweise und Informationen";
App::$strings["Body"] = "Body";
App::$strings["Workflow Settings"] = "Workflow Settings";
App::$strings["Project Servers and Resources"] = "Projektserver und -ressourcen";
App::$strings["Project Creator and Tech Lead"] = "Projektersteller und Technischer Leiter";
App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "Und die hunderte anderen Menschen und Organisationen, die geholfen haben Hubzilla möglich zu machen.";
App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Die Redmatrix/Hubzilla Projekte werden hauptsächlich von Freiwilligen bereitgestellt, die ihre Zeit und Expertise zur Verfügung stellen - und oft aus eigener Tasche für die Dienste zahlen, die sie mit anderen teilen.";
App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - <strong>you do</strong>.)"] = "Es gibt keine Finanzierung durch Firmen, keine Werbung und wir verkaufen Deine persönlichen Daten nicht. (Wir kontrollieren Deine persönlichen Daten nicht - <strong>das machst Du</strong>.)";
App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Hilf uns bei unserer wegweisenden Arbeit im Bereich der Dezantralisation, von Web-Identitäten und Privatsphäre.";
App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Die Spenden werden dafür verwendet Server und Dienste am laufen zu halten und helfen desweiteren innovative Neuerungen zu schaffen und die Entwicklung voran zu treiben.";
App::$strings["Donate"] = "Spenden";
App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Wähle ein Projekt, einen Entwickler oder einen öffentlichen Hub den du mit einer einmaligen Spende unterstützen willst.";
App::$strings["Donate Now"] = "Jetzt spenden";
App::$strings["<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)"] = "<strong><em>Oder</em></strong> werde ein Unterstützer des Projekts (ausschließlich Hubzilla)";
App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Bitte teile uns mit ob dein kompletter Name oder dein Vorname (oder gar nichts) auf unserer Sponsoren-Seite veröffentlicht werden soll.";
App::$strings["Sponsor"] = "Sponsor";
App::$strings["Special thanks to: "] = "Besonderer Dank an: ";
App::$strings["Your Webbie:"] = "Dein Webbie";
App::$strings["Fontsize (px):"] = "Schriftgröße (px):";
App::$strings["Link:"] = "Link:";
App::$strings["Like us on Hubzilla"] = "Like us on Hubzilla";
App::$strings["Embed:"] = "Einbetten";
App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Suche %1\$s (%2\$s)";
App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["Search \$Projectname"] = "\$Projectname suchen";
App::$strings["Fuzzloc Settings updated."] = "Fuzzloc-Einstellungen aktualisiert.";
App::$strings["Minimum offset in meters"] = "Minimale Verschiebung in Metern";
App::$strings["Maximum offset in meters"] = "Maximale Verschiebung in Metern";
App::$strings["Fuzzy Location"] = "Fuzzy Location";
App::$strings["Send email to all members"] = "E-Mail an alle Mitglieder senden";
App::$strings["%s Administrator"] = "der Administrator von %s";
App::$strings["No recipients found."] = "Keine Empfänger gefunden.";
App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d von %2\$d Nachrichten gesendet.";
App::$strings["Send email to all hub members."] = "Eine E-Mail an alle Mitglieder dieses Hubs senden.";
App::$strings["Message subject"] = "Betreff der Nachricht";
App::$strings["Sender Email address"] = "E-Mail Adresse des Absenders";
App::$strings["Test mode (only send to hub administrator)"] = "Test Modus (nur an Hub Administratoren senden)";
App::$strings["Categories"] = "Kategorien";
App::$strings["Everything"] = "Alles";
App::$strings["Item not found"] = "Element nicht gefunden";
App::$strings["Channel not found."] = "Kanal nicht gefunden.";
App::$strings["Edit Card"] = "Karte bearbeiten";
App::$strings["Delete"] = "Löschen";
App::$strings["Cards"] = "Karten";
App::$strings["View Cards"] = "Karten anzeigen";
App::$strings["View in context"] = "Im Zusammenhang anschauen";
App::$strings["Add Card"] = "Karte hinzufügen";
App::$strings["New registration"] = "Neue Registrierung";
App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden.";
App::$strings["Message sent to %s. New account registration: %s"] = "Nachricht gesendet an %s. Neue Kontoregistrierung: %s";
App::$strings["Not allowed."] = "Nicht erlaubt.";
App::$strings["Permissions"] = "Berechtigungen";
App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern";
App::$strings["Item not found."] = "Element nicht gefunden.";
App::$strings["Post to Libertree"] = "Bei Libertree veröffentlichen";
App::$strings["Libertree Crosspost Connector Settings saved."] = "Libertree Crosspost Connector Settings saved.";
App::$strings["Libertree API token"] = "Libertree API Token";
App::$strings["Libertree site URL"] = "URL der Libertree Seite";
App::$strings["Post to Libertree by default"] = "Standardmäßig bei Libertree veröffentlichen";
App::$strings["Libertree Crosspost Connector"] = "Libertree Crosspost Connector";
App::$strings["You're welcome."] = "Gern geschehen.";
App::$strings["Ah shucks..."] = "Ach Mist...";
App::$strings["Don't mention it."] = "Keine Ursache.";
App::$strings["&lt;blush&gt;"] = "schämen";
App::$strings["Report Bug"] = "Fehler melden";
App::$strings["TOTP Two-Step Verification"] = "TOTP Zwei-Schritte-Verifikation";
App::$strings["Enter the 2-step verification generated by your authenticator app:"] = "Gib die 2-Schritte-Verifikation, erzeugt von Deiner Authentifizierungs-App, ein:";
App::$strings["Success!"] = "Erfolgreich!";
App::$strings["Invalid code, please try again."] = "Ungültiger Code, bitte noch einmal versuchen.";
App::$strings["Too many invalid codes..."] = "Zuviele ungültige Codes...";
App::$strings["Verify"] = "Verifiziere";
App::$strings["You haven't set a TOTP secret yet.\nPlease click the button below to generate one and register this site\nwith your preferred authenticator app."] = "Du hast noch keinen TOTP Schlüssel festgelegt. Bitte klicke auf die Schaltfläche unten, um einen zu erzeugen, und registriere diese Website mit Deiner gewählten Authentifizierungs-App.";
App::$strings["Your TOTP secret is"] = "Dein TOTP Schlüssel lautet";
App::$strings["Be sure to save it somewhere in case you lose or replace your mobile device.\nUse your mobile device to scan the QR code below to register this site\nwith your preferred authenticator app."] = "Bewahren Sie sie irgendwo auf, falls Sie Ihr mobiles Gerät verlieren oder ersetzen.\nScannen Sie mit Ihrem Mobilgerät den unten stehenden QR-Code, um diese Website zu registrieren\nmit Ihrer bevorzugten Authentifizierungs-App zu registrieren.";
App::$strings["Test"] = "Test";
App::$strings["Generate New Secret"] = "Erzeuge neuen Schlüssel";
App::$strings["Go"] = "Los";
App::$strings["Enter your password"] = "Gib Dein Passwort ein";
App::$strings["enter TOTP code from your device"] = "gib den TOTP Code aus Deinem Gerät ein";
App::$strings["Pass!"] = "Pass!";
App::$strings["Fail"] = "Fail";
App::$strings["Incorrect password, try again."] = "Falsches Passwort, versuche es nochmal.";
App::$strings["Record your new TOTP secret and rescan the QR code above."] = "Notiere dein neues TOTP-Geheimnis und scanne den obigen QR-Code erneut.";
App::$strings["TOTP Settings"] = "TOTP Einstellungen";
App::$strings["Logfile archive directory"] = "Verzeichnis der Logdatei";
App::$strings["Directory to store rotated logs"] = "Verzeichnis, in dem rotierte Logs gespeichert werden sollen";
App::$strings["Logfile size in bytes before rotating"] = "zu erreichende Logdateigröße in Bytes, bevor rotiert wird";
App::$strings["Number of logfiles to retain"] = "Anzahl aufzubewahrender rotierter Logdateien";
App::$strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen ablaufen.";
App::$strings["Hide Aside App"] = "Hide Aside App";
App::$strings["Fade out aside areas after a while when using endless scroll"] = "Ausblenden von Randbereichen nach einer Weile bei Verwendung des Endlos-Scrollens";
App::$strings["Some setting"] = "Einige Einstellungen";
App::$strings["A setting"] = "Eine Einstellung";
App::$strings["Skeleton Settings"] = "Skeleton Einstellungen";
App::$strings["Network error"] = "Network error";
App::$strings["API error"] = "API error";
App::$strings["Unknown issue"] = "Unbekannte Issue";
App::$strings["Unable to retrieve email address from remote identity provider"] = "E-Mail-Adresse kann nicht vom entfernten Identitätsanbieter abgerufen werden";
App::$strings["Unable to login using email address "] = "Anmeldung mit E-Mail Adresse nicht möglich ";
App::$strings["Social Authentication using your social media account"] = "Soziale Authentifizierung über Ihr Social Media-Konto";
App::$strings["This app enables one or more social provider sign-in buttons on the login page."] = "Diese App aktiviert eine oder mehrere Schaltflächen zur Anmeldung bei sozialen Anbietern auf der Anmeldeseite.";
App::$strings["Add an identity provider"] = "Einen Identitätsanbieter hinzufügen";
App::$strings["Enable "] = "Enable ";
App::$strings["Key"] = "Key";
App::$strings["Word"] = "Word";
App::$strings["Secret"] = "Secret";
App::$strings["Add a custom provider"] = "Hinzufügen eines benutzerdefinierten Anbieters";
App::$strings["Remove an identity provider"] = "Einen Identitätsanbieter entfernen";
App::$strings["Social authentication"] = "Soziale Authentifizierung";
App::$strings["Error while saving provider settings"] = "Fehler beim Speichern der Anbietereinstellungen";
App::$strings["Custom provider already exists"] = "Benutzerdefinierter Anbieter existiert bereits";
App::$strings["Social authentication settings saved."] = "Einstellungen zur sozialen Authentifizierung gespeichert.";
App::$strings["Possible adult content"] = "Möglicherweise nicht jugendfreie Inhalte";
App::$strings["%s - view"] = "%s - ansehen";
App::$strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert.";
App::$strings["This app looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Diese App sucht in Beiträgen nach den Wörtern/Texten, die Sie unten angeben, und klappt alle Inhalte ein, die diese Schlüsselwörter enthalten, damit sie nicht zu unpassenden Zeiten angezeigt werden, wie z. B. sexuelle Anspielungen, die in einer Arbeitsumgebung unangemessen sein könnten. Es ist höflich und empfehlenswert, alle Inhalte, die Nacktheit enthalten, mit #NSFW zu kennzeichnen.  Dieser Filter kann auch mit jedem anderen Wort/Text übereinstimmen, den Sie angeben, und kann somit als allgemeiner Inhaltsfilter verwendet werden.";
App::$strings["Comma separated list of keywords to hide"] = "Kommaseparierte Liste von Schlüsselworten die verborgen werden sollen.";
App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Wort, /regular-expression/, lang=xx, lang!=xx";
App::$strings["NSFW"] = "NSFW";
App::$strings["Show Upload Limits"] = "Hochladebeschränkungen anzeigen";
App::$strings["Hubzilla configured maximum size: "] = "Die in Hubzilla eingestellte maximale Größe:";
App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize:";
App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (muss größer sein als upload_max_filesize):";
App::$strings["Three Dimensional Tic-Tac-Toe"] = "Dreidimensionales Tic-Tac-Toe";
App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
App::$strings["New game"] = "Neues Spiel";
App::$strings["New game with handicap"] = "Neues Handicaü-Spiel";
App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "3D Tic-Tac-Toe funktioniert wie das ursprüngliche Spiel, nur dass es auf mehreren Ebenen gleichzeitig gespielt wird.";
App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "In diesem Fall sind es drei Ebenen. Du gewinnst, wenn es dir gelingt drei in einer Reihe auf einer beliebigen Ebene oder diagonal über die verschiedenen Ebenen hinweg zu erreichen.";
App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Bei einem Handicap-Spiel wird die Position im Zentrum der mittleren Ebene gesperrt, da der Spieler der dieses Feld für sich beansprucht meist einen unfairen Vorteil hat.";
App::$strings["You go first..."] = "Du darfst anfangen...";
App::$strings["I'm going first this time..."] = "Diesmal werde ich anfangen...";
App::$strings["You won!"] = "Sie haben gewonnen!";
App::$strings["\"Cat\" game!"] = "\"Katzen\"-Spiel!";
App::$strings["I won!"] = "Ich habe gewonnen!";
App::$strings["Send test email"] = "Test-E-Mail senden";
App::$strings["Mail sent."] = "Mail gesendet.";
App::$strings["Sending of mail failed."] = "Senden der E-Mail fehlgeschlagen.";
App::$strings["Mail Test"] = "Mail Test";
App::$strings["Livejournal username"] = "Livejournal username";
App::$strings["Livejournal password"] = "Livejournal password";
App::$strings["Post to Livejournal by default"] = "Post to Livejournal by default";
App::$strings["Send wall-to-wall posts to Livejournal"] = "Send wall-to-wall posts to Livejournal";
App::$strings["Livejournal Crosspost Connector"] = "Livejournal Crosspost Connector";
App::$strings["Post to Livejournal"] = "Post to Livejournal";
App::$strings["Posted by"] = "Posted by";
App::$strings["Use markdown for editing posts"] = "Verwende Markdown zum Bearbeiten von Beiträgen";
App::$strings["Edit Article"] = "Artikel bearbeiten";
App::$strings["Articles"] = "Artikel";
App::$strings["View Articles"] = "Artikel anzeigen";
App::$strings["Add Article"] = "Artikel hinzufügen";
App::$strings["Hubzilla File Storage Import"] = "Hubzilla-Datenspeicher-Import";
App::$strings["This will import all your cloud files from another server."] = "Hiermit werden alle Deine Cloud-Dateien von einem anderen Server importiert.";
App::$strings["Hubzilla Server base URL"] = "Basis-URL des Habzilla-Servers";
App::$strings["Allow magic authentication only to websites of your immediate connections"] = "Erlauben Sie die magische Authentifizierung nur für Websites Ihrer unmittelbaren Verbindungen";
App::$strings["Authchoose"] = "Authchoose";
App::$strings["pageheader Settings saved."] = "Page Header - Einstellungen gespeichert.";
App::$strings["Message to display on every page on this server"] = "Nachricht, die auf jeder Seite dieses Servers angezeigt werden soll";
App::$strings["Page Header"] = "Page Header";
App::$strings["Popular Channels"] = "Beliebte Kanäle";
App::$strings["Channels to auto connect"] = "Kanäle zur automatischen Verbindung";
App::$strings["Comma separated list"] = "Kommagetrennte Liste";
App::$strings["IRC Settings"] = "IRC-Einstellungen";
App::$strings["IRC settings saved."] = "IRC-Einstellungen gespeichert.";
App::$strings["IRC Chatroom"] = "IRC-Chatraum";
App::$strings["Jabber BOSH host"] = "Jabber BOSH Host";
App::$strings["Use central userbase"] = "Zentrale Benutzerbasis verwenden";
App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Wenn aktiviert, werden die Mitglieder automatisch auf dem EJabber Server, der auf dieser Maschine installiert ist, angemeldet und die Zugangsdaten werden über das \"auth_ejabberd.php\"-Script synchronisiert.";
App::$strings["XMPP settings updated."] = "XMPP-Einstellungen aktualisiert.";
App::$strings["XMPP App"] = "XMPP-App";
App::$strings["Embedded XMPP (Jabber) client"] = "Ein XMPP (Jabber) Client";
App::$strings["Individual credentials"] = "Individuelle Anmeldedaten";
App::$strings["Jabber BOSH server"] = "Jabber BOSH Server";
App::$strings["XMPP Settings"] = "XMPP-Einstellungen";
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["Connections"] = "Verbindungen";
App::$strings["Accepts"] = "Akzeptiert";
App::$strings["Comments"] = "Kommentare";
App::$strings["Stream items"] = "Stream Beiträge";
App::$strings["Wall posts"] = "Gastbeitrag";
App::$strings["Nothing"] = "Nichts";
App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen";
App::$strings["Network: %s"] = "Netzwerk: %s";
App::$strings["Search"] = "Suche";
App::$strings["poke"] = "anstupsen";
App::$strings["poked"] = "stupste";
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["Size"] = "Größe";
App::$strings["unknown"] = "unbekannt";
App::$strings["remove category"] = "Kategorie entfernen";
App::$strings["remove from file"] = "aus der Datei entfernen";
App::$strings["Download binary/encrypted content"] = "Binären/verschlüsselten Inhalt herunterladen";
App::$strings["__ctx:noun__ %d Vote"] = array(
	0 => "%d Stimme",
	1 => "%d Stimmen",
);
App::$strings["__ctx:noun__ %d Vote in total"] = array(
	0 => "%d Stimme insgesamt",
	1 => "%d Stimmen insgesamt",
);
App::$strings["Poll has ended"] = "Umfrage ist beendet";
App::$strings["Poll ends in %s"] = "Umfrage endet %s";
App::$strings["Vote"] = "Abstimmen";
App::$strings["Link to Source"] = "Link zur Quelle";
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["HTML"] = "HTML";
App::$strings["Comanche Layout"] = "Comanche-Layout";
App::$strings["PHP"] = "PHP";
App::$strings["Page content type"] = "Art des Seiteninhalts";
App::$strings["event"] = "Termin";
App::$strings["post"] = "Beitrag";
App::$strings["comment"] = "Kommentar";
App::$strings["activity"] = "Aktivität";
App::$strings["poll"] = "Abstimmung";
App::$strings["a-z, 0-9, -, and _ only"] = "nur a-z, 0-9, - und _";
App::$strings["Design Tools"] = "Gestaltungswerkzeuge";
App::$strings["Blocks"] = "Blöcke";
App::$strings["Menus"] = "Menüs";
App::$strings["Layouts"] = "Layouts";
App::$strings["Pages"] = "Seiten";
App::$strings["Import"] = "Import";
App::$strings["Import website..."] = "Webseite importieren...";
App::$strings["Select folder to import"] = "Ordner zum Importieren auswählen";
App::$strings["Import from a zipped folder:"] = "Aus einem gezippten Ordner importieren:";
App::$strings["Import from cloud files:"] = "Aus Cloud-Dateien importieren:";
App::$strings["/cloud/channel/path/to/folder"] = "/Cloud/Kanal/Pfad/zum/Ordner";
App::$strings["Enter path to website files"] = "Pfad zu Webseitendateien eingeben";
App::$strings["Select folder"] = "Ordner auswählen";
App::$strings["Export website..."] = "Webseite exportieren...";
App::$strings["Export to a zip file"] = "In eine ZIP-Datei exportieren";
App::$strings["website.zip"] = "website.zip";
App::$strings["Enter a name for the zip file."] = "Geben Sie einen für die ZIP-Datei ein.";
App::$strings["Export to cloud files"] = "In Cloud-Dateien exportieren";
App::$strings["/path/to/export/folder"] = "/Pfad/zum/exportierenden/Ordner";
App::$strings["Enter a path to a cloud files destination."] = "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein.";
App::$strings["Specify folder"] = "Ordner angeben";
App::$strings["This is the home page of %s."] = "Dies ist die Homepage von %s.";
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["Location:"] = "Ort:";
App::$strings["l F d, Y"] = "l F d, Y";
App::$strings["Start:"] = "Start:";
App::$strings["End:"] = "Ende:";
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["Mobile"] = "Mobil";
App::$strings["Home"] = "Home";
App::$strings["Home, Voice"] = "Zuhause, Sprache";
App::$strings["Home, Fax"] = "Zuhause, Fax";
App::$strings["Work"] = "Arbeit";
App::$strings["Work, Voice"] = "Arbeit, Sprache";
App::$strings["Work, Fax"] = "Arbeit, Fax";
App::$strings["Other"] = "Andere";
App::$strings["Off"] = "Aus";
App::$strings["On"] = "An";
App::$strings["Calendar"] = "Kalender";
App::$strings["Start calendar week on Monday"] = "Beginne die kalendarische Woche am Montag";
App::$strings["Default is Sunday"] = "Standard ist Sonntag";
App::$strings["Event Timezone Selection"] = "Termin-Zeitzonenauswahl";
App::$strings["Allow event creation in timezones other than your own."] = "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen.";
App::$strings["Channel Home"] = "Mein Kanal";
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["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["Use blog/list mode"] = "Beitragsmodus verwenden";
App::$strings["Comments will be displayed separately"] = "Kommentare werden separat angezeigt";
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["Conversation"] = "Unterhaltung";
App::$strings["Emoji Reactions"] = "Emoji Reaktionen";
App::$strings["Add emoji reaction ability to posts"] = "Aktiviert Emoji-Reaktionen für Beiträge";
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["Reply on comment"] = "Auf Kommentare antworten";
App::$strings["Ability to reply on selected comment"] = "Ermöglicht es den ausgewählten Kommentar zu beantworten";
App::$strings["Directory"] = "Verzeichnis";
App::$strings["Advanced Directory Search"] = "Erweiterte Verzeichnissuche";
App::$strings["Allows creation of complex directory search queries"] = "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen";
App::$strings["Editor"] = "Editor";
App::$strings["Post Categories"] = "Beitrags-Kategorien";
App::$strings["Add categories to your posts"] = "Aktiviert Kategorien für Beiträge";
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["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["Disable Comments"] = "Kommentare deaktivieren";
App::$strings["Provide the option to disable comments for a post"] = "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten";
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["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["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["Auto-save drafts of posts and comments"] = "Auto-Speicherung von Beitrags- und Kommentarentwürfen";
App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Speichert Deine Beitrags- und Kommentarentwürfe automatisch im lokalen Browserspeicher und hilft so, versehentlichem Verlust dieser Inhalte vorzubeugen";
App::$strings["Manage"] = "Verwalten";
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["Network"] = "Netzwerk";
App::$strings["Events Filter"] = "Ereignis-Filter";
App::$strings["Ability to display only events"] = "Möglichkeit, nur Ereignisse anzuzeigen";
App::$strings["Polls Filter"] = "Abstimmungs-Filter";
App::$strings["Ability to display only polls"] = "Möglichkeit, nur Umfragen anzuzeigen";
App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen";
App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung";
App::$strings["Saved Folders"] = "Gespeicherte Ordner";
App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln";
App::$strings["Alternate Stream Order"] = "Stream anders anordnen";
App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "Möglichkeit, den Stream zu sortieren nach neustem Beitrag, neustem Kommentar oder neustem Eintrag";
App::$strings["Contact Filter"] = "Nach Kontakt filtern";
App::$strings["Ability to display only posts of a selected contact"] = "Ermöglicht es nur Beiträge eines Kontakts anzuzeigen";
App::$strings["Forum Filter"] = "Nach Forum filtern";
App::$strings["Ability to display only posts of a specific forum"] = "Ermöglicht es nur Beiträge eines bestimmten Forums anzuzeigen";
App::$strings["Personal Posts Filter"] = "Nach eigenen Beiträgen filtern";
App::$strings["Ability to display only posts that you've interacted on"] = "Ermöglicht es nur Beiträge mit eigenen Inhalten anzuzeigen";
App::$strings["Photos"] = "Fotos";
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["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren";
App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit unangemessenen Inhalten in der Standard-Albumansicht bereit";
App::$strings["Profiles"] = "Profile";
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["Multiple Profiles"] = "Mehrfachprofile";
App::$strings["Ability to create multiple profiles"] = "Ermöglicht das Anlegen mehrerer Profile pro Kanal";
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["Delete this item?"] = "Dieses Element löschen?";
App::$strings["Comment"] = "Kommentar";
App::$strings["%s show all"] = "%s mehr anzeigen";
App::$strings["%s show less"] = "%s weniger anzeigen";
App::$strings["%s expand"] = "%s aufklappen";
App::$strings["%s collapse"] = "%s 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["Rating"] = "Bewertung";
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["Location"] = "Ort";
App::$strings["lovely"] = "prima";
App::$strings["wonderful"] = "wunderbar";
App::$strings["fantastic"] = "fantastisch";
App::$strings["great"] = "großartig";
App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "Deine gewählte Kennung war entweder schon belegt oder ungültig. Bitte nutze unseren Vorschlag (";
App::$strings[") or enter a new one."] = ") oder wähle einen anderen.";
App::$strings["Thank you, this nickname is valid."] = "Vielen Dank, dieser Spitzname ist zulässig.";
App::$strings["A channel name is required."] = "Eine Kanal-Bezeichnung ist erforderlich.";
App::$strings["This is a "] = "Dies ist ein(e)";
App::$strings[" channel name"] = "Name des Kanals";
App::$strings["Back to reply"] = "Zurück zur Antwort";
App::$strings["Pinned"] = "Pinned";
App::$strings["Pin to the top"] = "Pin to the top";
App::$strings["Unpin from the top"] = "Unpin from the top";
App::$strings["%d minutes"] = "%d Minuten";
App::$strings["about %d hours"] = "ungefähr %d Stunden";
App::$strings["%d days"] = "%d Tagen";
App::$strings["%d months"] = "%d Monaten";
App::$strings["%d years"] = "%d Jahren";
App::$strings["timeago.prefixAgo"] = "vor";
App::$strings["timeago.prefixFromNow"] = "in";
App::$strings["timeago.suffixAgo"] = "NONE";
App::$strings["timeago.suffixFromNow"] = "NONE";
App::$strings["less than a minute"] = "weniger als einer Minute";
App::$strings["about a minute"] = "ungefähr einer Minute";
App::$strings["about an hour"] = "ungefähr einer Stunde";
App::$strings["a day"] = "einem Tag";
App::$strings["about a month"] = "ungefähr einem Monat";
App::$strings["about a year"] = "ungefähr einem Jahr";
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["Please stand by while your download is being prepared."] = "Bitte warten während Dein Download vorbereitet wird.";
App::$strings["Email address not valid"] = "Email address not valid";
App::$strings["Help:"] = "Hilfe:";
App::$strings["Help"] = "Hilfe";
App::$strings["Not Found"] = "Nicht gefunden";
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["Unable to process image"] = "Kann Bild nicht verarbeiten";
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["Recent Photos"] = "Neueste Fotos";
App::$strings["Upload New Photos"] = "Neue Fotos hochladen";
App::$strings["url: "] = "url:";
App::$strings["error_code: "] = "error_code: ";
App::$strings["error_string: "] = "error_string: ";
App::$strings["content-type: "] = "content-type: ";
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[" 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["Advanced"] = "Fortgeschritten";
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["Find"] = "Finde";
App::$strings["Channel Suggestions"] = "Kanal-Vorschläge";
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["Common Connections"] = "Gemeinsame Verbindungen";
App::$strings["View all %d common connections"] = "Zeige alle %d gemeinsamen Verbindungen";
App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache";
App::$strings["Unable to import a removed channel."] = "Nicht möglich, einen gelöschten Kanal zu importieren.";
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["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen.";
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["Channels"] = "Kanäle";
App::$strings["Manage your channels"] = "Kanäle verwalten";
App::$strings["Settings"] = "Einstellungen";
App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen";
App::$strings["Logout"] = "Abmelden";
App::$strings["End this session"] = "Beende diese Sitzung";
App::$strings["Your profile page"] = "Deine Profilseite";
App::$strings["Edit Profiles"] = "Profile bearbeiten";
App::$strings["Manage/Edit profiles"] = "Profile verwalten";
App::$strings["Edit your profile"] = "Profil bearbeiten";
App::$strings["Login"] = "Anmelden";
App::$strings["Sign in"] = "Anmelden";
App::$strings["Take me home"] = "Bringe mich nach Hause (eigener Kanal)";
App::$strings["Log me out of this site"] = "Logge mich von dieser Seite aus";
App::$strings["Register"] = "Registrieren";
App::$strings["Create an account"] = "Erzeuge ein Konto";
App::$strings["Help and documentation"] = "Hilfe und Dokumentation";
App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Hub durchsuchen: @Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt";
App::$strings["Admin"] = "Administration";
App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration";
App::$strings["Loading"] = "Lädt...";
App::$strings["@name, #tag, ?doc, content"] = "@name, #tag, ?doc, inhalt";
App::$strings["Please wait..."] = "Bitte warten...";
App::$strings["Apps"] = "Apps";
App::$strings["Channel Apps"] = "Channel Apps";
App::$strings["System Apps"] = "System Apps";
App::$strings["Pinned Apps"] = "Pinned Apps";
App::$strings["Featured Apps"] = "Featured Apps";
App::$strings["Channel"] = "Kanal";
App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
App::$strings["About"] = "Über";
App::$strings["Profile Details"] = "Profil-Details";
App::$strings["Files"] = "Dateien";
App::$strings["Files and Storage"] = "Dateien und Speicher";
App::$strings["Chatrooms"] = "Chaträume";
App::$strings["Bookmarks"] = "Lesezeichen";
App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen";
App::$strings["Webpages"] = "Webseiten";
App::$strings["View Webpages"] = "Webseiten anzeigen";
App::$strings["Wiki"] = "Wiki";
App::$strings["Delegation session ended."] = "Delegierungs-Sitzung wurde beendet.";
App::$strings["Logged out."] = "Ausgeloggt.";
App::$strings["Email validation is incomplete. Please check your email."] = "E-Mail-Bestätigung nicht abgeschlossen. Bitte prüfe Deine E-Mails (ggf. Spam-Filterung mit berücksichtigen).";
App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
App::$strings["Miscellaneous"] = "Verschiedenes";
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["INVALID EVENT DISMISSED!"] = "UNGÜLTIGEN TERMIN ABGELEHNT!";
App::$strings["Summary: "] = "Zusammenfassung:";
App::$strings["Unknown"] = "Unbekannt";
App::$strings["Date: "] = "Datum:";
App::$strings["Reason: "] = "Grund:";
App::$strings["INVALID CARD DISMISSED!"] = "UNGÜLTIGE KARTE ABGELEHNT!";
App::$strings["Name: "] = "Name: ";
App::$strings["channel"] = "Kanal";
App::$strings["likes %1\$s's %2\$s"] = "gefällt %1\$ss %2\$s";
App::$strings["doesn't like %1\$s's %2\$s"] = "missfällt %1\$ss %2\$s";
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["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s";
App::$strings["This is an unsaved preview"] = "Dies ist eine nicht gespeicherte Vorschau";
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["Select"] = "Auswählen";
App::$strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten";
App::$strings["Private Message"] = "Private Nachricht";
App::$strings["Message signature validated"] = "Signatur überprüft";
App::$strings["Message signature incorrect"] = "Signatur nicht korrekt";
App::$strings["Approve"] = "Genehmigen";
App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen";
App::$strings["Categories:"] = "Kategorien:";
App::$strings["Filed under:"] = "Gespeichert unter:";
App::$strings["from %s"] = "via %s";
App::$strings["last edited: %s"] = "zuletzt bearbeitet: %s";
App::$strings["Expires: %s"] = "Verfällt: %s";
App::$strings["Please wait"] = "Bitte warten";
App::$strings["remove"] = "lösche";
App::$strings["Loading..."] = "Lädt ...";
App::$strings["Conversation Features"] = "Konversationsmerkmale";
App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente";
App::$strings["View Source"] = "Quellcode anzeigen";
App::$strings["Follow Thread"] = "Unterhaltung folgen";
App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen";
App::$strings["Recent Activity"] = "Kürzliche Aktivitäten";
App::$strings["Connect"] = "Verbinden";
App::$strings["Edit Connection"] = "Verbindung bearbeiten";
App::$strings["Message"] = "Nachricht";
App::$strings["Ratings"] = "Bewertungen";
App::$strings["Poke"] = "Anstupsen";
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["Toggle poll"] = "Abstimmung an/aus";
App::$strings["Option"] = "Auswahlmöglichkeit";
App::$strings["Add option"] = "Auswahlmöglichkeit hinzufügen";
App::$strings["Minutes"] = "Minuten";
App::$strings["Hours"] = "Stunden";
App::$strings["Days"] = "Tage";
App::$strings["Allow multiple answers"] = "Lasse Mehrfach-Antworten zu";
App::$strings["Summary (optional)"] = "Summary (optional)";
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["__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["Select a profile to assign to this contact"] = "Wählen Sie ein Profil, das Sie diesem Kontakt zuordnen möchten";
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["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["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"] = "Freunde";
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["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["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["Privacy Groups"] = "Privacy Gruppen";
App::$strings["Edit group"] = "Gruppe ändern";
App::$strings["Manage privacy groups"] = "Verwalten von Privacy Gruppen";
App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind";
App::$strings["add"] = "hinzufügen";
App::$strings["Trending"] = "Meistbeachtet";
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["like"] = "mag";
App::$strings["likes"] = "gefällt";
App::$strings["dislike"] = "verurteile";
App::$strings["dislikes"] = "missfällt";
App::$strings["(Unknown)"] = "(Unbekannt)";
App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar wenn nichts anderes in der benutzerdefinierten Channel Role eingestellt wurde";
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["&#x1f501; Repeated %1\$s's %2\$s"] = "&#x1f501; Repeated %1\$s's %2\$s";
App::$strings["Privacy group not found."] = "Gruppe nicht gefunden.";
App::$strings["Privacy group is empty."] = "Gruppe ist leer.";
App::$strings["Privacy group: %s"] = "Gruppe: %s";
App::$strings["Connection: %s"] = "Verbindung: %s";
App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden.";
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["profile photo"] = "Profilfoto";
App::$strings["[Edited %s]"] = "[%s wurde bearbeitet]";
App::$strings["__ctx:edit_activity__ Post"] = "Beitrag";
App::$strings["__ctx:edit_activity__ Comment"] = "Kommentar";
App::$strings["The provided email address is not valid"] = "The provided email address is not valid";
App::$strings["The provided email domain is not among those allowed on this site"] = "The provided email domain is not among those allowed on this site";
App::$strings["The provided email address is already registered at this site"] = "The provided email address is already registered at this site";
App::$strings["There is a pending registration for this address - click \"Register\" to continue verification"] = "Eine Registrierung für diese Adresse steht noch aus - klicken Sie auf \"Registrieren\", um die Überprüfung fortzusetzen.";
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["Could not revoke registration for %s"] = "Registrierung für %s konnte nicht widerrufen werden";
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["open"] = "open";
App::$strings["closed"] = "geschlossen";
App::$strings["Registration is currently"] = "Die Registrierung ist aktuell";
App::$strings["please come back"] = "bitte zurückkommen";
App::$strings["Profile Photos"] = "Profilfotos";
App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden.";
App::$strings["Unknown error."] = "Unbekannter Fehler.";
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["%s shared a %s with you"] = "%s hat  ein(en) %s mit Dir geteilt";
App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen";
App::$strings["Image/photo"] = "Bild/Foto";
App::$strings["Encrypted content"] = "Verschlüsselter Inhalt";
App::$strings["Install %1\$s element %2\$s"] = "Installiere %1\$s Element %2\$s";
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["webpage"] = "Webseite";
App::$strings["layout"] = "Layout";
App::$strings["block"] = "Block";
App::$strings["menu"] = "Menü";
App::$strings["card"] = "Karte";
App::$strings["article"] = "Artikel";
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["View article"] = "Artikel ansehen";
App::$strings["View summary"] = "Zusammenfassung ansehen";
App::$strings["$1 wrote:"] = "$1 schrieb:";
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 Konten-Kennung";
App::$strings["Nickname is required."] = "Spitzname ist erforderlich.";
App::$strings["Reserved nickname. Please choose another."] = "Reservierte Kennung. Bitte wähle eine andere.";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Die Kennung 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["Unable to retrieve modified identity"] = "Geänderte Identität kann nicht empfangen werden";
App::$strings["Requested channel is not available"] = "Gewünschter Kanal ist nicht verfügbar";
App::$strings["Change profile photo"] = "Profilfoto ändern";
App::$strings["Create New Profile"] = "Neues Profil erstellen";
App::$strings["Profile Image"] = "Profilfoto:";
App::$strings["Visible to everybody"] = "Für jeden sichtbar";
App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
App::$strings["Gender:"] = "Geschlecht:";
App::$strings["Status:"] = "Status:";
App::$strings["Homepage:"] = "Homepage:";
App::$strings["Hometown:"] = "Heimatstadt:";
App::$strings["Online Now"] = "gerade online";
App::$strings["Change your profile photo"] = "Dein Profilfoto ändern";
App::$strings["Trans"] = "Trans";
App::$strings["Full Name:"] = "Voller Name:";
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["Age:"] = "Alter:";
App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s";
App::$strings["Tags:"] = "Schlagworte:";
App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:";
App::$strings["Political Views:"] = "Politische Ansichten:";
App::$strings["Religion:"] = "Religion:";
App::$strings["About:"] = "Über:";
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["Profile"] = "Profil";
App::$strings["Like this thing"] = "Gefällt mir";
App::$strings["Export"] = "Exportieren";
App::$strings["cover photo"] = "Cover Foto";
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["Account '%s' deleted"] = "Konto '%s' gelöscht";
App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen";
App::$strings["Profile-Based Privacy Groups"] = "Profile-Based Privacy Groups";
App::$strings["Private Forum"] = "Geschlossenes Forum";
App::$strings["Forums"] = "Foren";
App::$strings["Only me"] = "Nur ich";
App::$strings["Share with"] = "Teile mit";
App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl";
App::$strings["Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and limit the scope of \"Allow\"."] = "Wähle \"Zulassen\" aus um Lesezugriff zu geben. Mit \"Verweigern\" wird der Gültigkeitsbereich von \"Zulassen\" aufgehoben oder eingeschränkt.";
App::$strings["Allow"] = "Erlauben";
App::$strings["Don't allow"] = "Verweigern";
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["View PDF"] = "PDF ansehen";
App::$strings[" by "] = "von";
App::$strings[" on "] = "am";
App::$strings["Embedded content"] = "Eingebetteter Inhalt";
App::$strings["Embedding disabled"] = "Einbetten deaktiviert";
App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s heißt %2\$s willkommen";
App::$strings["Commented Date"] = "Nach neuestem Kommentar";
App::$strings["Order by last commented date"] = "Absteigend nach dem Zeitpunkt des letzten Kommentars";
App::$strings["Posted Date"] = "Nach neuestem Beitrag";
App::$strings["Order by last posted date"] = "Absteigend nach dem Zeitpunkt des Beitrags";
App::$strings["Date Unthreaded"] = "Nach neuestem Eintrag";
App::$strings["Order unthreaded by date"] = "Absteigend nach dem Zeitpunkt des Eintrags";
App::$strings["Stream Order"] = "Stream anordnen";
App::$strings["Add new guest"] = "Neuen Gast hinzufügen";
App::$strings["Guest access"] = "Zugang für Gäste";
App::$strings["Archives"] = "Archive";
App::$strings["View Photo"] = "Foto ansehen";
App::$strings["Edit Album"] = "Album bearbeiten";
App::$strings["Upload"] = "Hochladen";
App::$strings["Tasks"] = "Aufgaben";
App::$strings["Chat Members"] = "Chatmitglieder";
App::$strings["__ctx:noun__ new connection"] = array(
	0 => "neue Verbindung",
	1 => "neue Verbindungen",
);
App::$strings["__ctx:noun__ notice"] = array(
	0 => "Hinweis",
	1 => "Hinweise",
);
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["Share This"] = "Teilen";
App::$strings["share"] = "Teilen";
App::$strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s";
App::$strings["via"] = "via";
App::$strings["Attendance Options"] = "Zusageoptionen";
App::$strings["Voting Options"] = "Abstimmungsoptionen";
App::$strings["Pinned post"] = "Pinned post";
App::$strings["Don't show"] = "Nicht anzeigen";
App::$strings["__ctx:widget__ Activity"] = "Aktivität";
App::$strings["Select Channel"] = "Kanal auswählen";
App::$strings["Read-write"] = "Lesen-schreiben";
App::$strings["Read-only"] = "Nur Lesen";
App::$strings["Channel Calendar"] = "Kalender des Kanals";
App::$strings["CalDAV Calendars"] = "CalDAV-Kalender";
App::$strings["Shared CalDAV Calendars"] = "Geteilte CalDAV-Kalender";
App::$strings["Share this calendar"] = "Diesen Kalender teilen";
App::$strings["Calendar name and color"] = "Kalendername und -farbe";
App::$strings["Create new CalDAV calendar"] = "Erstelle neuen CalDAV-Kalender";
App::$strings["Create"] = "Erstelle";
App::$strings["Calendar Name"] = "Kalendername";
App::$strings["Calendar Tools"] = "Kalenderwerkzeuge";
App::$strings["Channel Calendars"] = "Kalender des Kanals";
App::$strings["Import calendar"] = "Kalender importieren";
App::$strings["Select a calendar to import to"] = "Kalender zum Hineinimportieren auswählen";
App::$strings["Addressbooks"] = "Adressbücher";
App::$strings["Addressbook name"] = "Adressbuchname";
App::$strings["Create new addressbook"] = "Neues Adressbuch erstellen";
App::$strings["Addressbook Name"] = "Adressbuchname";
App::$strings["Addressbook Tools"] = "Adressbuchwerkzeuge";
App::$strings["Import addressbook"] = "Adressbuch importieren";
App::$strings["Select an addressbook to import to"] = "Adressbuch zum Hineinimportieren auswählen";
App::$strings["Remove term"] = "Eintrag löschen";
App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge";
App::$strings["Account settings"] = "Konto-Einstellungen";
App::$strings["Channel settings"] = "Kanal-Einstellungen";
App::$strings["Privacy settings"] = "Privacy-Einstellungen";
App::$strings["Display settings"] = "Anzeige-Einstellungen";
App::$strings["Manage locations"] = "Klon-Adressen verwalten";
App::$strings["Overview"] = "Übersicht";
App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken";
App::$strings["Suggestions"] = "Vorschläge";
App::$strings["See more..."] = "Mehr anzeigen …";
App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms";
App::$strings["App Categories"] = "App-Kategorien";
App::$strings["Toggle post editor"] = "Beitragseditor umschalten";
App::$strings["Toggle personal notes"] = "Persönliche Notizen umschalten";
App::$strings["Channel activities"] = "Aktivitäten im Kanal";
App::$strings["Add new role"] = "Neue Rolle hinzufügen";
App::$strings["Contact roles"] = "Contact Roles";
App::$strings["Role members"] = "Rollenmitglieder";
App::$strings["photo/image"] = "Foto/Bild";
App::$strings["Site"] = "Seite";
App::$strings["Accounts"] = "Konten";
App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten";
App::$strings["Security"] = "Sicherheit";
App::$strings["Features"] = "Funktionen";
App::$strings["Addons"] = "Addons";
App::$strings["Themes"] = "Designs";
App::$strings["Inspect queue"] = "Warteschlange kontrollieren";
App::$strings["Profile Fields"] = "Profil Felder";
App::$strings["DB updates"] = "DB-Aktualisierungen";
App::$strings["Logs"] = "Protokolle";
App::$strings["Addon Features"] = "Addon-Eigenschaften";
App::$strings["Direct Messages"] = "Direktnachrichten";
App::$strings["Show direct (private) messages"] = "Zeige direkte (nicht-öffentliche) Nachrichten";
App::$strings["Events"] = "Ereignisse";
App::$strings["Show posts that include events"] = "Zeige Beiträge mit Ereignissen";
App::$strings["Polls"] = "Umfragen";
App::$strings["Show posts that include polls"] = "Zeige Beiträge mit Umfragen";
App::$strings["Show posts related to the %s privacy group"] = "Zeige die Beiträge der Gruppe %s an";
App::$strings["Show my privacy groups"] = "Meine Privacy Gruppen anzeigen";
App::$strings["Show posts to this forum"] = "Meine Beiträge in diesem Forum anzeigen";
App::$strings["Show forums"] = "Foren anzeigen";
App::$strings["Starred Posts"] = "Markierte Beiträge";
App::$strings["Show posts that I have starred"] = "Von mir markierte Beiträge anzeigen";
App::$strings["Personal Posts"] = "Meine Beiträge";
App::$strings["Show posts that mention or involve me"] = "Meine Beiträge und Einträge, die mich erwähnen, anzeigen";
App::$strings["Show posts that I have filed to %s"] = "Zeige Beiträge an, die ich an %s gesendet habe";
App::$strings["Show filed post categories"] = "Show filed post categories";
App::$strings["Panel search"] = "Panel search";
App::$strings["Filter by name"] = "Nach Namen filtern";
App::$strings["Remove active filter"] = "Aktiven Filter entfernen";
App::$strings["Stream Filters"] = "Stream filtern";
App::$strings["App Collections"] = "App-Sammlungen";
App::$strings["Installed apps"] = "Installierte Apps";
App::$strings["Available Apps"] = "Verfügbare Apps";
App::$strings["Add new group"] = "Neue Gruppe hinzufügen";
App::$strings["Privacy groups"] = "Privacy Gruppen";
App::$strings["Rating Tools"] = "Bewertungswerkzeuge";
App::$strings["Rate Me"] = "Bewerte mich";
App::$strings["View Ratings"] = "Bewertungen ansehen";
App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen";
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["Public and restricted messages"] = "Öffentliche und eingeschränkte Nachrichten";
App::$strings["Direct messages"] = "Direkte Nachrichten";
App::$strings["Starred messages"] = "Starred messages";
App::$strings["Notices"] = "Benachrichtigungen";
App::$strings["No messages"] = "Keine Meldungen";
App::$strings["Profile Creation"] = "Profilerstellung";
App::$strings["Upload profile photo"] = "Profilfoto hochladen";
App::$strings["Upload cover photo"] = "Titelbild hochladen";
App::$strings["Find and Connect with others"] = "Finden und Verbinden von/mit Anderen";
App::$strings["View the directory"] = "Verzeichnis anzeigen";
App::$strings["View friend suggestions"] = "Freundschafts- und Verbindungsvorschläge ansehen";
App::$strings["Manage your connections"] = "Deine Verbindungen verwalten";
App::$strings["Communicate"] = "Kommunizieren";
App::$strings["View your channel homepage"] = "Deine Kanal-Startseite ansehen";
App::$strings["View your network stream"] = "Deine Netzwerk-Aktivitäten ansehen";
App::$strings["Documentation"] = "Dokumentation";
App::$strings["Missing Features?"] = "Fehlende Funktionen?";
App::$strings["Pin apps to navigation bar"] = "Apps an die Navigationsleiste anpinnen";
App::$strings["Install more apps"] = "Installiere weitere Apps";
App::$strings["View public stream"] = "Zeige öffentlichen Beitrags-Stream";
App::$strings["New Member Links"] = "Links für neue Mitglieder";
App::$strings["Read mode"] = "Lesemodus";
App::$strings["Edit mode"] = "Bearbeitungsmodus";
App::$strings["Editing"] = "Bearbeiten";
App::$strings["Saving"] = "Speichern";
App::$strings["Saved"] = "Gespeichert";
App::$strings["Me"] = "Ich";
App::$strings["Family"] = "Familie";
App::$strings["Acquaintances"] = "Bekannte";
App::$strings["All"] = "Alle";
App::$strings["Refresh"] = "Aktualisieren";
App::$strings["New network activity notifications"] = "Neue Benachrichtigungen über Netzwerkaktivitäten";
App::$strings["Network stream"] = "Netzwerk-Stream";
App::$strings["Mark all notifications read"] = "Alle Benachrichtigungen als gesehen markieren";
App::$strings["Show new posts only"] = "Zeige nur neue Beiträge";
App::$strings["Filter by name or address"] = "Nach Name oder Adresse filtern";
App::$strings["New home activity notifications"] = "Benachrichtigungen über neue Aktivitäten";
App::$strings["Home stream"] = "Hauptstrom";
App::$strings["Mark all notifications seen"] = "Alle Benachrichtigungen als gesehen markieren";
App::$strings["New direct messages notifications"] = "Neue Direktnachrichten-Benachrichtigungen";
App::$strings["Direct messages stream"] = "Direktnachrichten-Stream";
App::$strings["New events notifications"] = "Benachrichtigungen über neue Ereignisse";
App::$strings["View events"] = "Termine ansehen";
App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen";
App::$strings["New Connections"] = "Neue Verbindungen";
App::$strings["New connections notifications"] = "Benachrichtigungen über neue Verbindungen";
App::$strings["View all connections"] = "Zeige alle Verbindungen";
App::$strings["New files notifications"] = "Benachrichtigungen über neue Dateien";
App::$strings["View all notices"] = "Alle Notizen ansehen";
App::$strings["Mark all notices seen"] = "Alle Notizen als gesehen markieren";
App::$strings["Registrations"] = "Anmeldungen";
App::$strings["New registrations notifications"] = "Benachrichtigungen über neue Registrierungen";
App::$strings["Public Stream"] = "Öffentlicher Beitrags-Stream";
App::$strings["New public stream notifications"] = "Neue öffentliche Stream-Benachrichtigungen";
App::$strings["Public stream"] = "Öffentlicher Stream";
App::$strings["Sorry, you have got no notifications at the moment"] = "Du hast momentan keine Benachrichtigungen";
App::$strings["This channel is limited to %d tokens"] = "Dieser Kanal ist auf %d Token begrenzt";
App::$strings["Name and Password are required."] = "Name und Passwort sind erforderlich.";
App::$strings["Token saved."] = "Token gespeichert.";
App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in privacy groups and visitors may login using these credentials to access private content."] = "Mit diesem Formular können Sie temporäre Zugangskennungen erstellen, um Dinge mit Nicht-Mitgliedern zu teilen. Diese Identitäten können in privaten Gruppen verwendet werden und Besucher können sich mit diesen Zugangsdaten anmelden, um auf private Inhalte zuzugreifen.";
App::$strings["Please select a role for this guest!"] = "Bitte wählen Sie eine Rolle für diesen Gast!";
App::$strings["Select a role for this guest"] = "Wählen Sie eine Rolle für diesen Gast";
App::$strings["Guest Access"] = "Gastzugang";
App::$strings["Login Name"] = "Anmeldename";
App::$strings["Login Password"] = "Anmeldepasswort";
App::$strings["Expires (yyyy-mm-dd)"] = "Läuft ab (jjjj-mm-tt)";
App::$strings["File not found."] = "Datei nicht gefunden.";
App::$strings["Can not copy folder into itself."] = "Kann Ordner nicht in sich selbst hineinkopieren.";
App::$strings["Can not move folder \"%s\" into itself."] = "Kann Ordner \"1%s\" nicht in sich selbst hinein kopieren.";
App::$strings["No such group"] = "Gruppe nicht gefunden";
App::$strings["No such channel"] = "Kanal nicht gefunden";
App::$strings["Search Results For:"] = "Suchergebnisse für:";
App::$strings["Reset form"] = "Zurücksetzen";
App::$strings["Privacy group is empty"] = "Gruppe ist leer";
App::$strings["Privacy group: "] = "Gruppe:";
App::$strings["Not a zip file or zip file corrupted."] = "Keine Zip-Datei oder beschädigte Zip-Datei.";
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["File to Upload"] = "Hochzuladende Datei:";
App::$strings["Imported file is empty."] = "Die importierte Datei ist leer.";
App::$strings["Content import completed"] = "Import von Inhalten abgeschlossen";
App::$strings["Chatroom import completed"] = "Chatroom-Import abgeschlossen";
App::$strings["Channel calendar import 1/2 completed"] = "Kanalkalenderimport 1/2 abgeschlossen";
App::$strings["Channel calendar import 2/2 completed"] = "Import des Kanalkalenders 2/2 abgeschlossen";
App::$strings["Menu import completed"] = "Menüimport abgeschlossen";
App::$strings["Wiki import completed"] = "Wiki-Import abgeschlossen";
App::$strings["Webpages import completed"] = "Import von Webseiten abgeschlossen";
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["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle.";
App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen.";
App::$strings["Automatic content and files import was not possible due to API version incompatiblity. Please import content and files manually!"] = "Der automatische Import von Inhalten und Dateien war aufgrund von Inkompatibilitäten der API-Version nicht möglich. Bitte importieren Sie Inhalte und Dateien manuell!";
App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen.";
App::$strings["Channel Import"] = "Kanal-Import";
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["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["Import your items and files (limited by available memory)"] = "Importieren Sie Ihre Objekte und Dateien (begrenzt durch den verfügbaren Speicher)";
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 \$Projectname-Hub ist mein primärer Hub.";
App::$strings["Move this channel (disable all previous locations)"] = "Verschiebe diesen Kanal (deaktiviere alle vorherigen Adressen/Klone)";
App::$strings["Use this channel nickname instead of the one provided"] = "Benutze diese Kanal-Kennung anstelle der hinterlegten.";
App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Leerlassen, um die existierende Kanal-Kennung beizubehalten. Es wird eine vergleichbare Kennung zufällig zugewiesen, falls der Name schon auf dieser Seite belegt ist.";
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["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können.";
App::$strings["Update to Hubzilla 5.0 step 2"] = "Update auf Hubzilla 2.0 Schritt 2";
App::$strings["To complete the update please run"] = "Um die Aktualisierung abzuschließen, führe bitte aus";
App::$strings["php util/z6convert.php"] = "php util/z6convert.php";
App::$strings["from the terminal."] = "von der Konsole aus.";
App::$strings["Email address required"] = "Email address required";
App::$strings["No password provided"] = "Kein Passwort angegeben";
App::$strings["Terms of Service not accepted"] = "Servicebedingungen nicht akzeptiert";
App::$strings["Invitation code succesfully applied"] = "Einladungscode erfolgreich angewendet";
App::$strings["Invitation not in time or too late"] = "Invitation not in time or too late";
App::$strings["Invitation email failed"] = "Einladungs-E-Mail fehlgeschlagen";
App::$strings["Invitation code failed"] = "Einladungscode fehlgeschlagen";
App::$strings["Invitations are not available"] = "Einladungen sind nicht verfügbar";
App::$strings["Registration on this hub is by invitation only"] = "Die Registrierung an diesem Hub erfolgt nur auf Einladung.";
App::$strings["New register request"] = "Neues Register anfordern";
App::$strings["Error creating dId A"] = "Fehler beim Erstellen von dId A";
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["Register at another affiliated hub in case when prefered"] = "Registrieren Sie sich bei einem anderen verbundenen Hub, wenn Sie dies wünschen";
App::$strings["Registration on this hub is by invitation only."] = "Die Registrierung auf diesem Hub ist nur nach vorheriger Einladung möglich. ";
App::$strings["Register at another affiliated hub"] = "Bei einem anderen verbundenen Hub anmelden";
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 %s years of age and accept the %s for this website"] = "Ich bin älter als %s Jahre und akzeptiere die %s dieser Website.";
App::$strings["Your email address"] = "E-Mail Adresse";
App::$strings["Optional"] = "Optional";
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["Your name"] = "Wähle einen Namen";
App::$strings["Real name is preferred"] = "Name des ersten zu erstellenden Kanals. Beachte das dieser Name bei Veröffentlichungen von Inhalten im Netzwerk sichtbar wird.";
App::$strings["Choose a short nickname"] = "Wähle eine kurze Kennung für die Kanaladresse";
App::$strings["Your nickname will be used to create an easy to remember channel address"] = "Die Kennung vor dem @ bildet zusammen mit der Serverdomain die hinter dem @ steht, die Adresse Ihres ersten Kanals - Eine Kanaladresse kann später nicht mehr abgeändert werden. ";
App::$strings["Why do you want to join this hub?"] = "Warum wollen Sie diesem Hub beitreten?";
App::$strings["This will help to review your registration"] = "Dies wird Ihnen helfen, Ihre Anmeldung zu überprüfen";
App::$strings["Registration"] = "Registrierung";
App::$strings["I have an invite code"] = "Ich habe einen Einladungscode";
App::$strings["This site has exceeded the number of allowed daily account registrations."] = "Diese Website hat die Anzahl der zulässigen täglichen Kontoanmeldungen überschritten.";
App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert.";
App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s";
App::$strings["Search results for: %s"] = "Suchergebnisse für: %s";
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."] = "Konnte 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["Next"] = "Nächste";
App::$strings["Check again"] = "Nochmal prüfen";
App::$strings["Database connection"] = "Datenbankverbindung";
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"] = "Datenbankservername";
App::$strings["Default is 127.0.0.1"] = "Standard ist 127.0.0.1";
App::$strings["Database Port"] = "Datenbankport";
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-Passwort";
App::$strings["Database Name"] = "Datenbankname";
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 Kontos muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst.";
App::$strings["Website URL"] = "Webseiten-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"] = "Website-Einstellungen";
App::$strings["PHP version 8.0 or greater is required."] = "PHP Version 8.0 oder höher ist erforderlich.";
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["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Prüfung auf Kommandozeilen-PHP fehlgeschlagen, da shell_exec() deaktiviert ist. Dies wird aber benötigt.";
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["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = "Dies reicht nicht größere Bilder oder Dateien hoch zu laden. Man sollte mindestens 4 MB auf einmal hoch laden können.";
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 server php.ini file."] = "Du kannst diese Einstellungen in der php.ini - Datei des Servers anpassen.";
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 erzeugen";
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["PDO database PHP module"] = "PDO-Datenbank-PHP-Modul";
App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul";
App::$strings["xml PHP module"] = "xml-PHP-Modul";
App::$strings["zip PHP module"] = "zip 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["exec"] = "exec";
App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Fehler: exec ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert";
App::$strings["shell_exec"] = "shell_exec";
App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Fehler: shell_exec ist erforderlich, 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 PHP module with JPEG support or ImageMagick graphics library required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung oder die ImageMagick Grafik Bibliothek erforderlich, sind aber beide 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: PDO database PHP module missing a driver for either mysql or pgsql."] = "Fehler: Das PHP Modul für PDO Datenbanken benötigt einen Treiber für entweder mysaql oder pgsql.";
App::$strings["Error: PDO database PHP module required but not installed."] = "Fehler: PDO-Datenbank-PHP-Modul ist erforderlich, aber nicht 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: 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["Error: zip PHP module required but not installed."] = "Fehler: Das zip PHP Modul ist erforderlich, ist aber nicht installiert.";
App::$strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar";
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["Please see install/INSTALL.txt for additional information."] = "Lies die Datei \"install/INSTALL.txt\".";
App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Diese Software verwendet die Smarty3 Template Engine, um Vorlagen für die Webdarstellung zu verarbeiten. 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 top level web folder."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses.";
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["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Web-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["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern.";
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["<h1>What next?</h1>"] = "<h1>Wie geht es jetzt weiter?</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["No connections."] = "Keine Verbindungen.";
App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen";
App::$strings["View Connections"] = "Verbindungen anzeigen";
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["Stats"] = "Statistiken";
App::$strings["Software"] = "Software";
App::$strings["Rate"] = "Bewerten";
App::$strings["Posts and comments"] = "Beiträge und Kommentare";
App::$strings["Only posts"] = "Nur Beiträge";
App::$strings["Malformed message id."] = "Fehlerhafte Nachrichten-ID.";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet.";
App::$strings["You must enable javascript for your browser to be able to view this content."] = "Um diese Inhalte betrachten zu können, muss JavaScript im Browser aktiviert sein.";
App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator";
App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor";
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["All Connections"] = "Alle Verbindungen";
App::$strings["Privacy group created."] = "Gruppe wurde erstellt.";
App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden.";
App::$strings["Privacy group updated."] = "Gruppe wurde aktualisiert.";
App::$strings["Post to this group by default"] = "Standardmäßig in diese Gruppe posten";
App::$strings["Add new contacts to this group by default"] = "Neue Kontakte standardmäßig zu dieser Gruppe hinzufügen";
App::$strings["Privacy group name"] = "Privacy 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: %s"] = "Gruppe: %s";
App::$strings["Privacy group name: "] = "Privacy Gruppenname:";
App::$strings["Group members"] = "Gruppenmitglieder";
App::$strings["Not in this group"] = "Nicht in dieser Gruppe";
App::$strings["Click a channel to toggle membership"] = "Ein Klick auf den Kanal wechselt die Mitgliedschaft";
App::$strings["This page is available only to site members"] = "Diese Seite ist nur für Mitglieder verfügbar";
App::$strings["Welcome"] = "Willkommen";
App::$strings["What would you like to do?"] = "Was möchtest Du gerne tun?";
App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Bitte speichere diese Seite in Deinen Lesezeichen, falls Du später zu ihr zurückkehren möchtest.";
App::$strings["Upload a profile photo"] = "Ein Profilfoto hochladen";
App::$strings["Upload a cover photo"] = "Ein Titelbild hochladen";
App::$strings["Edit your default profile"] = "Dein Standardprofil bearbeiten";
App::$strings["View the channel directory"] = "Das Kanalverzeichnis ansehen";
App::$strings["View/edit your channel settings"] = "Deine Kanaleinstellungen ansehen/bearbeiten";
App::$strings["View the site or project documentation"] = "Die Website-/Projektdokumentation ansehen";
App::$strings["Visit your channel homepage"] = "Deine Kanal-Startseite aufrufen";
App::$strings["View your connections and/or add somebody whose address you already know"] = "Deine Verbindungen ansehen und/oder jemanden hinzufügen, dessen Kanal-Adresse Du bereits kennst";
App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Deinen persönlichen Beitragsstrom ansehen (dieser kann leer sein, bis Du ein paar Verbindungen hinzugefügt hast)";
App::$strings["View the public stream. Warning: this content is not moderated"] = "Den öffentlichen Beitragsstrom ansehen. Warnung: Diese Inhalte sind nicht moderiert.";
App::$strings["Name is required"] = "Name ist erforderlich";
App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
App::$strings["Update"] = "Aktualisieren";
App::$strings["Add application"] = "Anwendung hinzufügen";
App::$strings["Name of application"] = "Name der Anwendung";
App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20";
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["Application not found."] = "Die Anwendung wurde nicht gefunden.";
App::$strings["Connected OAuth Apps"] = "Verbundene OAuth 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["Page link"] = "Seiten-Link";
App::$strings["Edit Webpage"] = "Webseite bearbeiten";
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["Unable to locate original post."] = "Originalbeitrag nicht gefunden.";
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["New Chatroom"] = "Neuer Chatraum";
App::$strings["Chatroom name"] = "Chatraumname";
App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)";
App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume";
App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar";
App::$strings["Add Room"] = "Raum hinzufügen";
App::$strings["Expiration"] = "Verfall";
App::$strings["min"] = "min";
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["Edit event"] = "Termin bearbeiten";
App::$strings["Delete event"] = "Termin löschen";
App::$strings["Link to source"] = "Link zur Quelle";
App::$strings["calendar"] = "Kalender";
App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden";
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["thing"] = "Sache";
App::$strings["Channel unavailable."] = "Kanal nicht vorhanden.";
App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht.";
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["Action completed."] = "Aktion durchgeführt.";
App::$strings["Thank you."] = "Vielen Dank.";
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["Calendar entries imported."] = "Kalendereinträge wurden importiert.";
App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden.";
App::$strings["Event title"] = "Termintitel";
App::$strings["Start date and time"] = "Startdatum und -zeit";
App::$strings["End date and time"] = "Enddatum und -zeit";
App::$strings["Timezone:"] = "Zeitzone:";
App::$strings["Previous"] = "Voriges";
App::$strings["Today"] = "Heute";
App::$strings["Month"] = "Monat";
App::$strings["Week"] = "Woche";
App::$strings["Day"] = "Tag";
App::$strings["List month"] = "Liste Monat";
App::$strings["List week"] = "Liste Woche";
App::$strings["List day"] = "Liste Tag";
App::$strings["More"] = "Mehr";
App::$strings["Less"] = "Weniger";
App::$strings["Select calendar"] = "Kalender auswählen";
App::$strings["Delete all"] = "Alles löschen";
App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Entschuldigung, aber das Bearbeiten von wiederkehrenden Veranstaltungen ist leider noch nicht implementiert.";
App::$strings["Could not fetch calendar resource. The selected calendar might be disabled."] = "Die Quelle des Kalenders konnte nicht abgerufen werden. Der ausgewählte Kalender ist möglicherweise deaktiviert.";
App::$strings["Organisation"] = "Organisation";
App::$strings["Phone"] = "Telefon";
App::$strings["Instant messenger"] = "Sofortnachrichtendienst";
App::$strings["Website"] = "Webseite";
App::$strings["Address"] = "Adresse";
App::$strings["Note"] = "Hinweis";
App::$strings["Add Contact"] = "Kontakt hinzufügen";
App::$strings["Add Field"] = "Feld hinzufügen";
App::$strings["P.O. Box"] = "Postfach";
App::$strings["Additional"] = "Zusätzlich";
App::$strings["Street"] = "Straße";
App::$strings["Locality"] = "Ortschaft";
App::$strings["Region"] = "Region";
App::$strings["ZIP Code"] = "Postleitzahl";
App::$strings["Country"] = "Land";
App::$strings["Default Calendar"] = "Standardkalender";
App::$strings["Default Addressbook"] = "Standardadressbuch";
App::$strings["Remote privacy information not available"] = "Informationen zur Privacy aus der Ferne nicht verfügbar";
App::$strings["__ctx:acl__ Profile"] = "Profil";
App::$strings["Privacy group"] = "Privacy Gruppe";
App::$strings["Click to copy link to this ressource for guest %s to clipboard"] = "Klicken Sie hier, um den Link zu dieser Ressource für den Gast %s in die Zwischenablage zu kopieren";
App::$strings["Link copied"] = "Link kopiert";
App::$strings["Access"] = "Zugang";
App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen.";
App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt.";
App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert.";
App::$strings["Your comment is awaiting approval."] = "Dein Kommentar muss noch bestätigt werden.";
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["Menu not found."] = "Menü 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["Not found."] = "Nicht gefunden.";
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["vcard"] = "VCard";
App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden";
App::$strings["NEW"] = "NEU";
App::$strings["Last Modified"] = "Zuletzt geändert";
App::$strings["Remove all files"] = "Alle Dateien löschen";
App::$strings["Remove this file"] = "Diese Datei löschen";
App::$strings["Documentation Search"] = "Suche in der Dokumentation";
App::$strings["Members"] = "Mitglieder";
App::$strings["Administrators"] = "Administratoren";
App::$strings["Developers"] = "Entwickler";
App::$strings["Tutorials"] = "Tutorials";
App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation";
App::$strings["Contents"] = "Inhalt";
App::$strings["Import Webpage Elements"] = "Webseitenelemente importieren";
App::$strings["Import selected"] = "Import ausgewählt";
App::$strings["Export Webpage Elements"] = "Webseitenelemente exportieren";
App::$strings["Export selected"] = "Exportieren ausgewählt";
App::$strings["Actions"] = "Aktionen";
App::$strings["Page Link"] = "Seiten-Link";
App::$strings["Page Title"] = "Seitentitel";
App::$strings["Created"] = "Erstellt";
App::$strings["Edited"] = "Geändert";
App::$strings["Invalid file type."] = "Ungültiger Dateityp.";
App::$strings["Error opening zip file"] = "Fehler beim Öffnen der ZIP-Datei";
App::$strings["Invalid folder path."] = "Ungültiger Ordnerpfad.";
App::$strings["No webpage elements detected."] = "Keine Webseitenelemente erkannt.";
App::$strings["Import complete."] = "Import abgeschlossen.";
App::$strings["Deprecated!"] = "Veraltet!";
App::$strings["Permission Denied."] = "Zugriff verweigert.";
App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten";
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["Show in your contacts shared folder"] = "Im geteilten Ordner Deiner Kontakte anzeigen";
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["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["Not found"] = "Nicht gefunden";
App::$strings["Unknown error"] = "Unbekannter Fehler";
App::$strings["Post repeated"] = "Post repeated";
App::$strings["network"] = "Netzwerk";
App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden.";
App::$strings["Edit post"] = "Bearbeite Beitrag";
App::$strings["Post not found."] = "Beitrag nicht gefunden.";
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["Unknown App"] = "Unbekannte Anwendung";
App::$strings["Authorize"] = "Berechtigen";
App::$strings["Do you authorize the app %s to access your channel data?"] = "Willst du die Anwendung %s dazu berechtigen auf die Daten deines Kanals zuzugreifen?";
App::$strings["Deny"] = "Verweigern";
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["Retry delivery to this hub"] = "Wiederholung der Zustellung an diesen Hub";
App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren";
App::$strings["Last known contact"] = "Letzter Kontakt";
App::$strings["Theme settings updated."] = "Design-Einstellungen aktualisiert.";
App::$strings["No themes found."] = "Keine Designs gefunden.";
App::$strings["Disable"] = "Deaktivieren";
App::$strings["Enable"] = "Aktivieren";
App::$strings["Screenshot"] = "Bildschirmfoto";
App::$strings["Administration"] = "Administration";
App::$strings["Toggle"] = "Umschalten";
App::$strings["Author: "] = "Autor: ";
App::$strings["Maintainer: "] = "Betreuer:";
App::$strings["[Experimental]"] = "[Experimentell]";
App::$strings["[Unsupported]"] = "[Nicht unterstützt]";
App::$strings["Lock feature %s"] = "Blockiere die Funktion %s";
App::$strings["Manage Additional Features"] = "Zusätzliche Funktionen verwalten";
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["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["Provide a cloud root directory"] = "Wurzelverzeichnis der Cloud erstellen";
App::$strings["The cloud root directory lists all channel names which provide public files"] = "Das Wurzelverzeichnis der Cloud zeigt alle Kanäle mit öffentlichen Dateien";
App::$strings["Show total disk space available to cloud uploads"] = "Verfügbaren Speicherplatz für Cloud Uploads anzeigen";
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["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["Allow communications only from these sites"] = "Kommunikation nur von diesen Servern/Domains 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 Servern/Domains 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 Servern/Domains blockieren";
App::$strings["Allow SVG thumbnails in file browser"] = "Erlaube SVG-Vorschaubilder im Dateibrowser";
App::$strings["WARNING: SVG images may contain malicious code."] = "Warnung: SVG-Grafiken können Schadcode enthalten.";
App::$strings["Allow embedded (inline) PDF files"] = "Erlaube eingebettete (inline) PDF-Dateien.";
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' blocked"] = "Konto '%s' blockiert";
App::$strings["Account '%s' unblocked"] = "Konto '%s' freigegeben";
App::$strings["Unverified"] = "Unverifiziert";
App::$strings["Expired"] = "Abgelaufen";
App::$strings["Show verified registrations"] = "Verifizierte Registrierungen anzeigen";
App::$strings["Show all registrations"] = "Alle Registrierungen anzeigen";
App::$strings["Select toggle"] = "Umzuschalten auswählen";
App::$strings["Deny selected"] = "Ablehnen ausgewählt";
App::$strings["Approve selected"] = "Ausgewählte genehmigen";
App::$strings["All registrations"] = "Alle Registrierungen";
App::$strings["Verified registrations waiting for approval"] = "Geprüfte Registrierungen, die auf die Genehmigung warten";
App::$strings["Request date"] = "Antragsdatum";
App::$strings["Requests"] = "Anfragen";
App::$strings["No registrations available"] = "Keine Anmeldungen verfügbar";
App::$strings["No verified registrations available"] = "Keine verifizierten Registrierungen verfügbar";
App::$strings["Block"] = "Blockieren";
App::$strings["Unblock"] = "Freigeben";
App::$strings["Verified"] = "Überprüft";
App::$strings["Not yet verified"] = "Noch nicht überprüft";
App::$strings["ID"] = "ID";
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"] = "Dienstklasse";
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["Invalid input"] = "Ungültige Eingabe";
App::$strings["Errors"] = "Errors";
App::$strings["Site settings updated."] = "Site-Einstellungen aktualisiert.";
App::$strings["%s - (Incompatible)"] = "%s - (Inkompatibel)";
App::$strings["mobile"] = "mobil";
App::$strings["experimental"] = "experimentell";
App::$strings["unsupported"] = "nicht unterstützt";
App::$strings["Yes - with approval"] = "Ja - mit Zustimmung";
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["Default permission role for new accounts"] = "Standard Berechtigungs-Rollen für neue Accounts.";
App::$strings["This role will be used for the first channel created after registration."] = "Diese Rolle wird verwendet wenn der erste Kanal nach der Registrierung erstellt wird.";
App::$strings["Minute(s)"] = "Minute(n)";
App::$strings["Hour(s)"] = "Stunde(n)";
App::$strings["Day(s)"] = "Tag(e)";
App::$strings["Week(s)"] = "Woche(n)";
App::$strings["Month(s)"] = "Monat(e)";
App::$strings["Year(s)"] = "Jahr(e)";
App::$strings["Register verification delay"] = "Verzögerung bei der Registerprüfung";
App::$strings["Time to wait before a registration can be verified"] = "Wartezeit bis zur Überprüfung einer Registrierung";
App::$strings["duration up from now"] = "Dauer von jetzt an";
App::$strings["Register verification expiration time"] = "Ablauf der Registrierungsprüfung";
App::$strings["Time before an unverified registration will expire"] = "Zeit, bevor eine nicht überprüfte Registrierung abläuft";
App::$strings["File upload"] = "Dateiupload";
App::$strings["Policies"] = "Richtlinien";
App::$strings["Banner/Logo"] = "Banner/Logo";
App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Ungefiltertes HTML/CSS/JS ist erlaubt";
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["Site Information"] = "Seiteninformationen";
App::$strings["Publicly visible description of this site.  Displayed on siteinfo page.  BBCode can be used here"] = "Öffentlich sichtbare Beschreibung dieses Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann hier verwendet werden.";
App::$strings["System language"] = "System-Sprache";
App::$strings["System theme"] = "System-Design";
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standard-System-Design – kann durch Nutzerprofile überschieben werden – <a href='#' id='cnftheme'>Design-Einstellungen ändern</a>";
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["Minimum age"] = "Mindestalter";
App::$strings["Minimum age (in years) for who may register on this site."] = "Mindestalter (in Jahren) für alle, die sich auf dieser Website anmelden möchten.";
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["This is displayed on the public server site list."] = "Dies wird auf der öffentlichen Server Liste angezeigt werden.";
App::$strings["Register text"] = "Registrierungstext";
App::$strings["This text will be displayed prominently at the registration page"] = "Dieser Text wird an prominenter Stelle auf der Registrierungsseite angezeigt";
App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?";
App::$strings["Configure the registration open days/hours"] = "Konfigurieren Sie die Tage/Stunden für die Registrierung";
App::$strings["Empty or '-:-' value will keep registration open 24/7 (default)"] = "Ein leerer oder '-:-' Wert hält die Registrierung 24/7 offen (Standard)";
App::$strings["Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` example: 1:800-1200"] = "Wochentage und Stunden müssen durch einen Doppelpunkt ':' getrennt werden, Von-Bis-Bereiche mit einem Bindestrich `-` Beispiel: 1:800-1200";
App::$strings["Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700"] = "Wochentag:Stunden-Paare müssen durch ein Leerzeichen getrennt werden ' ' Beispiel: 1:900-1700 2:900-1700";
App::$strings["From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or 1-2,4-5:900-1700"] = "Von-Bis-Bereiche müssen durch Komma ',' getrennt werden Beispiel: 1:800-1200,1300-1700 oder 1-2,4-5:900-1700";
App::$strings["Advanced examples:"] = "Fortgeschrittene Beispiele:";
App::$strings["or"] = "oder";
App::$strings["Check your configuration"] = "Überprüfen Sie Ihre Konfiguration";
App::$strings["Max account registrations per day"] = "Maximale Kontoanmeldungen pro Tag";
App::$strings["Unlimited if zero or no value - default 50"] = "Unbegrenzt, wenn Null oder kein Wert - Standardwert 50";
App::$strings["Max account registrations from same IP"] = "Maximale Kontoregistrierungen von derselben IP";
App::$strings["Unlimited if zero or no value - default 3"] = "Unbegrenzt, wenn Null oder kein Wert - Standardwert 3";
App::$strings["Auto channel create"] = "Automatisches Erstellen von Kanälen";
App::$strings["If disabled the channel will be created in a separate step during the registration process"] = "Wenn diese Option deaktiviert ist, wird der Kanal in einem separaten Schritt während des Registrierungsprozesses erstellt.";
App::$strings["Require invite code"] = "Erforderlicher Einladungscode";
App::$strings["Allow invite code"] = "Einladungscode zulassen";
App::$strings["Require email address"] = "Erforderliche E-Mail Adresse";
App::$strings["The provided email address will be verified (recommended)"] = "Die angegebene E-Mail Adresse wird überprüft (empfohlen)";
App::$strings["Abandon account after x days"] = "Konto nach x Tagen aufgeben";
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["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)";
App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "Beispiel: 'pubstream' zur Anzeige des öffentlichen Streams, 'page/sys/home' zur Anzeige einer System Webseite namens 'home' oder 'include:home.html' zum Einbinden einer Datei.";
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["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["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["Site only Public Streams"] = "Öffentlichen Beitragsstrom auf diesen Server beschränken";
App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Erlaubt den Zugriff auf öffentliche Beiträge von ausschließlich dieser Website (diesem Server), wenn \"Öffentliche Beiträge importieren\" ausgeschaltet ist.";
App::$strings["Allow anybody on the internet to access the Public streams"] = "Allen im Internet Zugriff auf den öffentlichen Beitragsstrom erlauben";
App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Deaktiviert die erforderliche Authentifizierung vor dem Ansehen. Warnung: Diese Inhalte sind nicht moderiert.";
App::$strings["Only import Public stream posts with this text"] = "Importiere ausschließlich Beiträge aus dem öffentlichen Stream die diesen Text enthalten";
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 Public stream posts with this text"] = "Importiere keine Beiträge des öffentlichen Streams die diesen Text beinhalten";
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["Reply-to email address for system generated email."] = "Antwortadresse (reply-to) für Emails, die vom System generiert wurden.";
App::$strings["Sender (From) email address for system generated email."] = "Absenderadresse (from) für Emails, die vom System generiert wurden.";
App::$strings["Name of email sender for system generated email."] = "Name des Versenders von Emails, die vom System generiert wurden.";
App::$strings["Directory Server URL"] = "Verzeichnisserver-URL";
App::$strings["Default directory server"] = "Standard-Verzeichnisserver";
App::$strings["Enable SSE Notifications"] = "Aktiviere SSE Benachrichtigungen";
App::$strings["If disabled, traditional polling will be used. Warning: this setting might not be suited for shared hosting"] = "Wenn deaktiviert, erfolgt der Abruf traditionell. Warnung: Diese Einstellung könnte für shared hosting ungeeignet sein.";
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["Queue Threshold"] = "Warteschlangen-Grenzwert";
App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Unmittelbare Zustellung immer verzögern, wenn die Warteschlange mehr als diese Anzahl von Einträgen enthält.";
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["Path to ImageMagick convert program"] = "Pfad zum ImageMagick-Programm convert";
App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Wenn gesetzt, dann verwende dieses Programm zum Erzeugen von Vorschaubildern großer Fotos (>4000 Pixel in beiden Richtungen), anderenfalls kann Speicherüberlauf auftreten. Beispiel: /usr/bin/convert";
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["Do not expire any posts which have comments less than this many days ago"] = "Lass keine Beiträge verfallen die Kommentare haben, die jünger als diese Anzahl von Tagen sind.";
App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Öffentliche Server: Optionale Einstiegsseite (landing page) für neue Mitglieder vor deren Anmeldung";
App::$strings["Create this page first. Default is %s/register"] = "Erstelle zunächst die entsprechende Seite. Standard ist %s/register";
App::$strings["Page to display after creating a new channel"] = "Seite, die nach Erstellung eines neuen Kanals angezeigt werden soll";
App::$strings["Default: profiles"] = "Standard: Profile";
App::$strings["Optional: site location"] = "Optional: Standort der Website";
App::$strings["Region or country"] = "Region oder Land";
App::$strings["Invalid 24h time value (hhmm/hmm)"] = "Invalid 24h time value (hhmm/hmm)";
App::$strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert.";
App::$strings["Clear"] = "Leeren";
App::$strings["Debugging"] = "Debugging";
App::$strings["Log file"] = "Protokolldatei";
App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis.";
App::$strings["Log level"] = "Protokollstufe";
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["select all"] = "Alle auswählen";
App::$strings["Censor"] = "Sperren";
App::$strings["Uncensor"] = "Freigeben";
App::$strings["Allow Code"] = "Code erlauben";
App::$strings["Disallow Code"] = "Code sperren";
App::$strings["UID"] = "UID";
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["Password changed for account %d."] = "Passwort für Konto %d geändert.";
App::$strings["Account settings updated."] = "Kontoeinstellungen aktualisiert.";
App::$strings["Account not found."] = "Konto nicht gefunden.";
App::$strings["Account Edit"] = "Kontobearbeitung";
App::$strings["New Password"] = "Neues Passwort";
App::$strings["New Password again"] = "Neues Passwort wiederholen";
App::$strings["Account language (for emails)"] = "Kontosprache (für E-Mails)";
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["Field definition not found"] = "Feld-Definition nicht gefunden";
App::$strings["Edit Profile Field"] = "Profilfeld bearbeiten";
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["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
App::$strings["Verification of update %s failed. Check system logs."] = "Die Überprüfung der Aktualisierung %s ist fehlgeschlagen. Bitte überprüfe die System Logs.";
App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt.";
App::$strings["Verifying update %s did not return a status. Unknown if it succeeded."] = "Die Überprüfung der Aktualisierung %s hat keinen Status zurück gegeben. Es ist unklar ob die Aktualisierung erfolgreich war oder nicht.";
App::$strings["Update %s does not contain a verification function."] = "Die Aktualisierung %s beinhaltet keine Funktion zur Überprüfung.";
App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden.";
App::$strings["Executing update procedure %s failed. Check system logs."] = "Das Ausführen der Aktualisierung %s ist fehlgeschlagen. Bitte überprüfe die System Logs.";
App::$strings["Update %s did not return a status. It cannot be determined if it was successful."] = "Die Aktualisierung %s hat keinen Status zurück gegeben. Daher kann nicht bestimmt werden, ob die Aktualisierung erfolgreich war.";
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 verify this update if a verification procedure exists"] = "Versuche, diese Aktualisierung zu verifizieren, falls ein Verifikations-Verfahren existiert.";
App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen";
App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen.";
App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert.";
App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert.";
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["Compatible Server Roles: "] = "Kompatible Serverrollen: ";
App::$strings["Requires: "] = "Benötigt:";
App::$strings["Disabled - version incompatibility"] = "Abgeschaltet - Versionsinkompatibilität";
App::$strings["Enter the public git repository URL of the addon repo."] = "Gib die URL des öffentlichen git Repositories für die Addons an.";
App::$strings["Addon repo git URL"] = "URL des Addon git Repositories";
App::$strings["Custom repo name"] = "Benutzerdefinierter Repository-Name";
App::$strings["(optional)"] = "(optional)";
App::$strings["Download Addon Repo"] = "Addon Repository herunterladen";
App::$strings["Install new repo"] = "Neues Repository installieren";
App::$strings["Install"] = "Installieren";
App::$strings["Manage Repos"] = "Repositorien verwalten";
App::$strings["Installed Addon Repositories"] = "Installierte Addon Repositories";
App::$strings["Install a New Addon Repository"] = "Installiere neues Addon Repository";
App::$strings["Switch branch"] = "Zweig/Branch wechseln";
App::$strings["Installed Apps"] = "Installierte Apps";
App::$strings["Manage Apps"] = "Apps verwalten";
App::$strings["Create Custom App"] = "Erstelle eine eigene App";
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["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 Channel"] = "Kanal löschen";
App::$strings["WARNING: "] = "WARNUNG: ";
App::$strings["This channel will be permanently removed. "] = "Dieser Kanal wird dauerhaft entfernt.";
App::$strings["This action can not be undone!"] = "Diese Aktion 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["Email resent"] = "E-Mail erneut gesendet";
App::$strings["Email resend failed"] = "E-Mail erneut senden fehlgeschlagen";
App::$strings["Verification successful"] = "Überprüfung erfolgreich";
App::$strings["Account successfull created"] = "Konto erfolgreich erstellt";
App::$strings["Channel successfull created"] = "Kanal erfolgreich erstellt";
App::$strings["Automatic channel creation failed. Please create a channel."] = "Automatische Kanal-Erstellung fehlgeschlagen. Bitte erstellen Sie einen Kanal.";
App::$strings["Account creation error"] = "Fehler bei der Kontoerstellung";
App::$strings["Verify failed"] = "Verifizierung fehlgeschlagen";
App::$strings["Token verification failed"] = "Token-Verifizierung fehlgeschlagen";
App::$strings["Request not inside time frame"] = "Anfrage nicht innerhalb des Zeitrahmens";
App::$strings["Identity unknown"] = "Identität unbekannt";
App::$strings["dId2 mistaken"] = "dId2 fehlerhaft";
App::$strings["Your Registration ID"] = "Ihre Registrierungs-ID";
App::$strings["Registration verification"] = "Überprüfung der Registrierung";
App::$strings["Hold on, you can start verification in"] = "Warten Sie, Sie können die Überprüfung in";
App::$strings["Please remember your verification token for ID"] = "Bitte denken Sie an Ihr Verifizierungs-Token für die ID";
App::$strings["Token validity"] = "Gültigkeit des Tokens";
App::$strings["Resend email"] = "E-Mail erneut senden";
App::$strings["Registration status"] = "Status der Registrierung";
App::$strings["Verification successful!"] = "Verifizierung erfolgreich!";
App::$strings["Your login ID is"] = "Ihre Anmelde-ID lautet";
App::$strings["After your account has been approved by our administrator you will be able to login with your login ID and your provided password."] = "Nachdem Ihr Konto von unserem Administrator genehmigt wurde, können Sie sich mit Ihrer Login-ID und dem von Ihnen angegebenen Passwort anmelden.";
App::$strings["Registration request revoked"] = "Registrierungsantrag widerrufen";
App::$strings["Sorry for any inconvience. Thank you for your response."] = "Bitte entschuldigen Sie die Unannehmlichkeiten. Ich danke Ihnen für Ihre Antwort.";
App::$strings["Please enter your verification token for ID"] = "Bitte geben Sie Ihr Verifizierungs-Token für die ID ein";
App::$strings["Please check your email!"] = "Bitte prüfen Sie Ihre E-Mail!";
App::$strings["Verification token"] = "Verifizierungs-Token";
App::$strings["ID expired"] = "ID abgelaufen";
App::$strings["You will require the verification token for ID"] = "Sie benötigen das Verifizierungs-Token für die ID";
App::$strings["Unknown or expired ID"] = "Unbekannte oder abgelaufene ID";
App::$strings["dId2 malformed"] = "dId2 missgebildet";
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["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 introductions"] = "%d neue Vorstellungen";
App::$strings["Delegated Channel"] = "Delegierte Kanäle";
App::$strings["Layout not found"] = "Layout nicht gefunden";
App::$strings["This template does not support pdledi_gui (no content regions defined)"] = "Diese Vorlage unterstützt pdledi_gui nicht (keine Inhaltsbereiche definiert)";
App::$strings["Main page content"] = "Inhalt der Hauptseite";
App::$strings["The main page content can not be edited!"] = "Der Inhalt der Hauptseite kann nicht bearbeitet werden!";
App::$strings["toggle full screen mode"] = "auf Vollbildmodus umschalten";
App::$strings["Away"] = "Abwesend";
App::$strings["Online"] = "Online";
App::$strings["Contact role deleted."] = "Contact Role gelöscht.";
App::$strings["Permission category name is required."] = "Name der Berechtigungskategorie erforderlich";
App::$strings["Contact role saved."] = "Contact Role gespeichert.";
App::$strings["Role to assign affected contacts and default role to"] = "Rolle, die den betroffenen Kontakten und der Standardrolle zugewiesen werden soll";
App::$strings["Role to assign affected contacts to"] = "Rolle, der die betroffenen Kontakte zuzuordnen sind";
App::$strings["Assign this role to"] = "Weisen Sie diese Rolle folgender Privacy Gruppe zu";
App::$strings["All my contacts"] = "Alle meine Kontakte";
App::$strings["Automatically assign this role to new contacts"] = "Neuen Kontakten automatisch diese Rolle zuweisen";
App::$strings["Contact Roles"] = "Contact Roles";
App::$strings["Role name"] = "Name der Rolle";
App::$strings["System role - not editable"] = "Systemrolle - nicht editierbar";
App::$strings["Deleting"] = "Löschen ";
App::$strings["inherited"] = "geerbt";
App::$strings["Role Permissions"] = "Rollenberechtigungen";
App::$strings["Some permissions may be inherited from your <a href=\"settings\">channel role</a>, which have higher priority than contact role settings."] = "Einige Berechtigungen können von Ihrer <a href=\"settings\">channel role</a>, geerbt werden, die eine höhere Priorität als die Einstellungen der Contact Role haben.";
App::$strings["Token verification failed."] = "Überprüfung des Verifizierungscodes fehlgeschlagen.";
App::$strings["Email verification resent"] = "Email zur Verifizierung wurde erneut versendet";
App::$strings["Unable to resend email verification message."] = "Erneutes Versenden der Email zur Verifizierung nicht möglich.";
App::$strings["Permissions denied."] = "Berechtigung verweigert.";
App::$strings["item"] = "Beitrag";
App::$strings["Change Order of Pinned Navbar Apps"] = "Reihenfolge der in der Navigation angepinnten Apps ändern";
App::$strings["Change Order of App Tray Apps"] = "Reihenfolge der Apps im App-Menü ändern";
App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Benutze die Pfeil-Knöpfe, um die jeweilige App in der Navigationsleiste nach links (oben) oder rechts (unten) zu bewegen";
App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Benutze die Pfeil-Knöpfe, um die jeweilige App im App-Menü nach oben oder unten zu bewegen";
App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden.";
App::$strings["Post successful."] = "Veröffentlichung erfolgreich.";
App::$strings["Comment approved"] = "Kommentar bestätigt";
App::$strings["Comment deleted"] = "Kommentar gelöscht";
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["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["Remove Account"] = "Konto entfernen";
App::$strings["Language App"] = "Sprachen-App";
App::$strings["No content available for year"] = "Für dieses Jahr sind keine Inhalte verfügbar";
App::$strings["Export Channel"] = "Kanal exportieren";
App::$strings["Export channel"] = "Kanal exportieren";
App::$strings["This will export your identity and social graph into a file which can be used to import your channel to a new hub."] = "Dadurch werden Ihre Identität und Ihr sozialer Graph in eine Datei exportiert, mit der Sie Ihren Kanal in einen neuen Hub importieren können.";
App::$strings["Export content"] = "Inhalt exportieren";
App::$strings["This will export your posts, direct messages, articles and cards per month stored into a zip file per year. Months with no posts will be dismissed."] = "Dadurch werden Ihre Beiträge, Direktnachrichten, Artikel und Karten pro Monat in eine Zip-Datei pro Jahr exportiert. Monate ohne Beiträge werden nicht berücksichtigt.";
App::$strings["Export wikis"] = "Wikis exportieren";
App::$strings["This will export your wikis and wiki pages."] = "Hiermit werden Ihre Wikis und Wikiseiten exportiert.";
App::$strings["Export webpages"] = "Webseiten exportieren";
App::$strings["This will export your webpages and menus."] = "Hiermit werden Ihre Webseiten und Menüs exportiert.";
App::$strings["Export channel calendar"] = "Kanalkalender exportieren";
App::$strings["This will export your channel calendar events and associated items. CalDAV calendars are not included."] = "Dies exportiert Ihre Channel-Kalenderereignisse und die zugehörigen Elemente. CalDAV-Kalender sind nicht enthalten.";
App::$strings["Export chatrooms"] = "Chaträume exportieren";
App::$strings["This will export your chatrooms. Chat history is dismissed."] = "Hiermit werden Ihre Chaträume exportiert. Der Chatverlauf wird gelöscht.";
App::$strings["This export can be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel."] = "Dieser Export kann importiert oder wiederhergestellt werden, indem Sie <a href=\"%1\$s\">%2\$s</a> auf einer beliebigen Website aufrufen, die Ihren Kanal enthält.";
App::$strings["Article"] = "Artikel";
App::$strings["Item has been removed."] = "Der Beitrag wurde entfernt.";
App::$strings["No channel."] = "Kein Kanal.";
App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen.";
App::$strings["View Common Connections"] = "Zeige gemeinsame Verbindungen";
App::$strings["%s element installed"] = "Element für %s installiert";
App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen";
App::$strings["Your real name is recommended."] = "Es wird empfohlen deinen echten Namen zu verwenden.";
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["This will be used to create a unique network address (like an email address)."] = "Dieser wird verwendet für eine eindeutige Netzwerk-Adresse verwendet (ähnlich einer E-Mail-Adresse). ";
App::$strings["Allowed characters are a-z 0-9, - and _"] = "Zulässige Zeichen sind a-z, 0-9, - und _";
App::$strings["Channel name"] = "Name des Kanals";
App::$strings["Channel role"] = "Channel Role";
App::$strings["Create a Channel"] = "Kanal erstellen";
App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Ein Kanal ist eine eindeutige Identität. Er kann eine Person (Soziales Netzwerk-Profil), ein Forum (Gruppe), eine Unternehmens- oder Prominenten-Seite, einen Newsfeed oder viele andere Dinge repräsentieren.";
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["Validate"] = "Überprüfe";
App::$strings["Entry censored"] = "Eintrag zensiert";
App::$strings["Entry uncensored"] = "Eintrag unzensiert";
App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden.";
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["About this site"] = "Über diese Seite";
App::$strings["Site Name"] = "Seitenname";
App::$strings["Administrator"] = "Administrator";
App::$strings["Software and Project information"] = "Software und Projektinformationen";
App::$strings["This site is powered by \$Projectname"] = "Diese Website wird bereitgestellt durch \$Projectname";
App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Verbundene, dezentrale Netzwerk- und Identitätsdienste, ermöglicht mittels Zot";
App::$strings["Additional federated transport protocols:"] = "Zusätzliche föderierte Transportprotokolle:";
App::$strings["Version %s"] = "Version %s";
App::$strings["Project homepage"] = "Projekt-Website";
App::$strings["Developer homepage"] = "Entwickler-Website";
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["Location (URL) of app"] = "Ort (URL) der App";
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["Blocked accounts"] = "Blockierte Benutzerkonten";
App::$strings["Expired accounts"] = "Abgelaufene Benutzerkonten";
App::$strings["Expiring accounts"] = "Ablaufende Benutzerkonten";
App::$strings["Message queues"] = "Nachrichten-Warteschlangen";
App::$strings["Your software should be updated"] = "Die installierte Software sollte aktualisiert werden";
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 addons"] = "Aktive Addons";
App::$strings["Version"] = "Version";
App::$strings["Repository version (master)"] = "Repository-Version (master)";
App::$strings["Repository version (dev)"] = "Repository-Version (dev)";
App::$strings["Invalid abook_id"] = "Ungültige abook_id";
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["is now connected to"] = "ist jetzt verbunden mit";
App::$strings["Contact Tools"] = "Kontakt Tools";
App::$strings["Approve this contact"] = "Genehmigen Sie diesen Kontakt";
App::$strings["Accept contact to allow communication"] = "Kontakt annehmen, um Kommunikation zu ermöglichen";
App::$strings["Please select a role for this contact!"] = "Bitte wählen Sie eine Rolle für diesen Kontakt!";
App::$strings["This contact is unreachable from this location."] = "Dieser Kontakt ist von diesem Standort aus nicht zu erreichen.";
App::$strings["This contact may be unreachable from other channel locations."] = "Dieser Kontakt kann von anderen Kanalstandorten aus unerreichbar sein.";
App::$strings["Location independence is not supported by their network."] = "Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt.";
App::$strings["View profile"] = "Profil ansehen";
App::$strings["This is a group/forum channel"] = "Dies ist ein Gruppen-/Forumskanal";
App::$strings["Select a role for this contact"] = "Wählen Sie eine Rolle für diesen Kontakt";
App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen";
App::$strings["Custom Filter"] = "Benutzerdefinierter Filter";
App::$strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren";
App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren";
App::$strings["Approve contact"] = "Kontakt genehmigen";
App::$strings["Their"] = "Kontakt";
App::$strings["My"] = "Meine";
App::$strings["Roles"] = "Rollen";
App::$strings["Compare permissions"] = "Berechtigungen vergleichen";
App::$strings["Permission"] = "Erlaubnis";
App::$strings["Affinity"] = "Beziehung";
App::$strings["Content filter"] = "Filter für den Inhalt";
App::$strings["Contact updated"] = "Kontakt aktualisiert";
App::$strings["Contact update failed"] = "Kontaktaktualisierung fehlgeschlagen";
App::$strings["Approve connection"] = "Verbindung genehmigen";
App::$strings["Refresh succeeded"] = "Aktualisieren erfolgreich";
App::$strings["Refresh failed - channel is currently unavailable"] = "Aktualisieren fehlgeschlagen - Kanal ist derzeit nicht verfügbar";
App::$strings["Block status updated"] = "Blockstatus aktualisiert";
App::$strings["Block failed"] = "Block fehlgeschlagen";
App::$strings["Ignore status updated"] = "Ignorierstatus aktualisiert";
App::$strings["Ignore failed"] = "Ignorieren fehlgeschlagen";
App::$strings["Archive status updated"] = "Archivstatus aktualisiert";
App::$strings["Archive failed"] = "Archivierung fehlgeschlagen";
App::$strings["Hide status updated"] = "Status ausblenden aktualisiert";
App::$strings["Hide failed"] = "Ausblenden fehlgeschlagen";
App::$strings["Contact removed"] = "Kontakt entfernt";
App::$strings["Delete failed"] = "Löschen fehlgeschlagen";
App::$strings["Refresh Permissions"] = "Zugriffsrechte neu laden";
App::$strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abrufen";
App::$strings["Refresh Photo"] = "Foto aktualisieren";
App::$strings["Fetch updated photo"] = "Aktualisiertes Profilfoto abrufen";
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"] = "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["No default suggestions were found."] = "Es wurden keine Standard Vorschläge gefunden.";
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["Description:"] = "Beschreibung:";
App::$strings["Public Forum:"] = "Öffentliches Forum:";
App::$strings["Keywords: "] = "Schlüsselwörter:";
App::$strings["Don't suggest"] = "Nicht vorschlagen";
App::$strings["Common connections (estimated):"] = "Gemeinsame Verbindungen (geschätzt):";
App::$strings["Global Directory"] = "Globales Verzeichnis";
App::$strings["Local Directory"] = "Lokales Verzeichnis";
App::$strings["Finding:"] = "Ergebnisse:";
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["Authorize application connection"] = "Zugriff für die Anwendung autorisieren";
App::$strings["Return to your app and insert this Security Code:"] = "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode 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["Please login."] = "Bitte melde dich an.";
App::$strings["Block Name"] = "Block-Name";
App::$strings["Block Title"] = "Titel des Blocks";
App::$strings["Email Verification Required"] = "Email-Überprüfung erforderlich";
App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Ein Verifizierungscode wurde an Deine Emailadresse versendet [%s]. Gib diesen Code hier ein, um die Überprüfung abzuschließen. Bedenke, dass die Zustellung der Mail einige Zeit dauern kann, und überprüfe ggf. auch Spam- und andere Filter-Ordner, falls die Nachricht nicht erscheint.";
App::$strings["Resend Email"] = "Email erneut versenden";
App::$strings["Validation token"] = "Verifizierungscode";
App::$strings["Item not available."] = "Element nicht verfügbar.";
App::$strings["Poll not found."] = "Abstimmung nicht gefunden.";
App::$strings["Invalid response."] = "Ungültige Antwort.";
App::$strings["Response submitted. Updates may not appear instantly."] = "Antwort abgesendet. Aktualisierungen sind evtl. nicht sofort sichtbar.";
App::$strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl.";
App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen.";
App::$strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen.";
App::$strings["Unable to process image."] = "Kann Bild nicht verarbeiten.";
App::$strings["Photo not available."] = "Foto nicht verfügbar.";
App::$strings["This profile photo will be visible to anybody on the internet and may be distributed to other websites."] = "Dieses Profilfoto ist für jeden im Internet sichtbar und kann an andere Websites weitergegeben werden.";
App::$strings["This profile photo will be visible only to channels with permission to view this profile."] = "Dieses Profilfoto ist nur für Kanäle sichtbar, die die Erlaubnis haben, dieses Profil anzusehen";
App::$strings["Use Photo for Profile"] = "Foto für Profil verwenden";
App::$strings["Change Profile Photo"] = "Profilfoto ändern";
App::$strings["Reset to default"] = "Auf Standardwerte zurücksetzen";
App::$strings["Use a photo from your albums"] = "Ein Foto aus meinen Alben verwenden";
App::$strings["Select existing"] = "Vorhandenes auswählen";
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 abgeschlossen";
App::$strings["Edit Block"] = "Block bearbeiten";
App::$strings["Enter a folder name"] = "Gib einen Ordnernamen ein";
App::$strings["or select an existing folder (doubleclick)"] = "oder wähle einen vorhanden Ordner aus (Doppelklick)";
App::$strings["Save to Folder"] = "In Ordner speichern";
App::$strings["Layout Name"] = "Layout-Name";
App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)";
App::$strings["Edit Layout"] = "Layout bearbeiten";
App::$strings["Active"] = "Aktiv";
App::$strings["Blocked"] = "Blockiert";
App::$strings["Ignored"] = "Ignoriert";
App::$strings["Hidden"] = "Versteckt";
App::$strings["Archived/Unreachable"] = "Archiviert/Unerreichbar";
App::$strings["New"] = "Neu";
App::$strings["Active Connections"] = "Aktive Verbindungen";
App::$strings["Show active connections"] = "Zeige die aktiven Verbindungen an";
App::$strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen 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/unreachable connections"] = "Nur archivierte/unerreichbare Verbindungen anzeigen";
App::$strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen";
App::$strings["Show all connections"] = "Alle Verbindungen anzeigen";
App::$strings["Pending approval"] = "Wartet auf Genehmigung";
App::$strings["Archived"] = "Archiviert";
App::$strings["Not connected at this location"] = "An diesem Ort nicht verbunden";
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["Call"] = "Anruf";
App::$strings["Status"] = "Status";
App::$strings["Connected"] = "Verbunden";
App::$strings["Ignore connection"] = "Verbindung ignorieren";
App::$strings["Recent activity"] = "Kürzliche Aktivitäten";
App::$strings["Connect at this location"] = "Verbindungen für diesen Ort";
App::$strings["Contact role"] = "Contact role";
App::$strings["Search your connections"] = "Verbindungen durchsuchen";
App::$strings["Contact search"] = "Kontaktsuche";
App::$strings["Cover Photos"] = "Cover Foto";
App::$strings["Your cover photo may be visible to anybody on the internet"] = "Dein Cover-Foto könnte für alle im Internet sichtbar sein.";
App::$strings["Upload File:"] = "Datei hochladen:";
App::$strings["Select a profile:"] = "Wähle ein Profil:";
App::$strings["Change Cover Photo"] = "Titelbild ändern";
App::$strings["Select existing photo"] = "Wähle ein vorhandenes Foto aus";
App::$strings["Done Editing"] = "Bearbeitung fertigstellen";
App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden.";
App::$strings["Album not found."] = "Album nicht gefunden.";
App::$strings["Delete Album"] = "Album löschen";
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["Description (optional)"] = "Beschreibung (optional)";
App::$strings["Show Newest First"] = "Neueste zuerst anzeigen";
App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen";
App::$strings["Add Photos"] = "Fotos hinzufügen";
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["Move photo to album"] = "Foto in Album verschieben";
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["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["This is you"] = "Das bist Du";
App::$strings["View all"] = "Alles anzeigen";
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["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["Connection added."] = "Verbindung hinzugefügt";
App::$strings["Invalid item."] = "Ungültiges Element.";
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["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 mir";
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 my connections from viewers of this profile"] = "Meine Verbindungen vor den Betrachtern dieses Profils verbergen";
App::$strings["Publish my default profile in the network directory"] = "Mein Standardprofil im Netzwerkverzeichnis und in Followerlisten veröffentlichen";
App::$strings["Suggest me as a potential contact to new members"] = "Schlagen mich neuen Mitgliedern als möglichen Kontakt vor";
App::$strings["Reveal my online status"] = "Meinen Online-Status sichtbarmachen";
App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details";
App::$strings["View this profile"] = "Dieses Profil ansehen";
App::$strings["Profile Tools"] = "Profilwerkzeuge";
App::$strings["Change cover photo"] = "Titelbild ä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["Basic"] = "Basic";
App::$strings["Relationship"] = "Beziehung";
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"] = "Name für diesen Kanal";
App::$strings["Short title/description"] = "Kurze Beschreibung des Kanals";
App::$strings["Maximal 190 characters"] = "maximal 190 Zeichen";
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["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["%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["Bookmark added"] = "Lesezeichen hinzugefügt";
App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte";
App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Konto-Passworts können Kanäle nicht umbenannt werden.";
App::$strings["Change channel nickname/address"] = "Kanalkennung/-adresse ändern";
App::$strings["Any/all connections on other networks will be lost!"] = "Jegliche/alle Verbindungen zu anderen Netzwerken gehen verloren!";
App::$strings["New channel address"] = "Neue Kanaladresse";
App::$strings["Rename Channel"] = "Kanal umbenennen";
App::$strings["Invite App"] = "Einladungs-App";
App::$strings["Register is closed"] = "Registrierung ist geschlossen";
App::$strings["Note, the invitation code is valid up to"] = "Bitte beachten Sie, dass der Einladungscode gültig ist bis zu";
App::$strings["Too many recipients for one invitation (max %d)"] = "Zu viele Empfänger für eine Einladung (max %d) ";
App::$strings["No recipients for this invitation"] = "Keine Empfänger für diese Einladung";
App::$strings["(%s) : Not a real email address"] = "(%s) : Keine echte E-Mail Adresse";
App::$strings["(%s) : Not allowed email address"] = "(%s) : Unerlaubte E-Mail Adresse";
App::$strings["(%s) : email address already in use"] = "(%s) : E-Mail-Adresse wird bereits verwendet";
App::$strings["(%s) : Accepted email address"] = "(%s) : Akzeptierte E-Mail Adresse";
App::$strings["To %s : Message delivery success."] = "An %s : Nachricht erfolgreich zugestellt.";
App::$strings["%1\$d mail(s) sent, %2\$d mail error(s)"] = "%1\$d Mail(s) gesendet, %2\$d Mail-Fehler";
App::$strings["Invites not proposed by configuration"] = "Nicht von der Konfiguration vorgeschlagene Einladungen";
App::$strings["Contact the site admin"] = "Kontaktieren Sie den Administrator der Website";
App::$strings["Invites by users not enabled"] = "Einladungen durch Benutzer nicht aktiviert";
App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen";
App::$strings["Not on xchan"] = "Not on xchan";
App::$strings["All users invitation limit exceeded."] = "Alle Benutzer Einladungslimit überschritten.";
App::$strings["Invitation expires after"] = "Die Einladung läuft ab nach";
App::$strings["Invitation"] = "Einladung";
App::$strings["Send invitations"] = "Einladungen senden";
App::$strings["Invitations I am using"] = "Einladungen, die ich verwende";
App::$strings["Invitations we are using"] = "Einladungen, die wir verwenden";
App::$strings["§ Note, the email(s) sent will be recorded in the system logs"] = "§ Hinweis: Die gesendete(n) E-Mail(s) werden in den Systemprotokollen aufgezeichnet.";
App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:";
App::$strings["Your message:"] = "Deine Nachricht:";
App::$strings["Invite template"] = "Invite template";
App::$strings["Subject:"] = "Betreff:";
App::$strings["Here you may enter personal notes to the recipient(s)"] = "Hier können Sie persönliche Notizen an den/die Empfänger eingeben";
App::$strings["Private forum"] = "Privates Forum";
App::$strings["Public forum"] = "Öffentliches Forum";
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["Affinity Tool settings updated."] = "Beziehungsgrad - Einstellungen aktualisiert.";
App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = "Die Zahlen unten bezeichnen in Prozenten den minimalen und maximalen Standardwert des Beziehungsgrads im Stream.";
App::$strings["Default maximum affinity level"] = "Voreinstellung für maximalen Beziehungsgrad";
App::$strings["0-99 default 99"] = "0-99 - Standard 99";
App::$strings["Default minimum affinity level"] = "Voreinstellung für minimalen Beziehungsgrad";
App::$strings["0-99 - default 0"] = "0-99 - Standard 0";
App::$strings["Persistent affinity levels"] = "Beziehungsgrade persistent machen";
App::$strings["If disabled the max and min levels will be reset to default after page reload"] = "Im deaktivierten Zustand werden nach einem erneuten Laden der Seite die Standard-Beziehungsgrade eingestellt.";
App::$strings["Affinity Tool Settings"] = "Beziehungsgrad - Einstellungen";
App::$strings["Max height of content (in pixels)"] = "Maximale Höhe des Inhalts (in Pixeln)";
App::$strings["Click to expand content exceeding this height"] = "Höherer Inhalt wird erst nach einem Klick angezeigt";
App::$strings["Stream Settings"] = "Stream - Einstellungen";
App::$strings["Additional Features"] = "Zusätzliche Funktionen";
App::$strings["Please select a channel role"] = "Bitte wählen Sie eine Channel Role";
App::$strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
App::$strings["Your files/photos are accessible via WebDAV at"] = "Deine Dateien/Fotos sind via WebDAV verfügbar auf";
App::$strings["Channel Settings"] = "Kanal-Einstellungen";
App::$strings["Basic Settings"] = "Grundeinstellungen";
App::$strings["Channel timezone:"] = "Zeitzone des Kanals:";
App::$strings["Default post location:"] = "Standard Ort von dem gepostet wird:";
App::$strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll";
App::$strings["Use browser location"] = "Browser-Speicherort verwenden";
App::$strings["Adult content"] = "Inhalt für Erwachsene";
App::$strings["This channel frequently or regularly publishes adult content"] = "Dieser Kanal veröffentlicht häufig oder regelmäßig Inhalte für Erwachsene";
App::$strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
App::$strings["May reduce spam activity"] = "Kann die Spam-Aktivität 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["Someone likes your post/comment"] = "Jemand mag Ihren Beitrag/Kommentar";
App::$strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:";
App::$strings["Unseen stream activity"] = "Ungesehene Aktivität im Stream";
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 Designs 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["Unseen shared files"] = "Ungesehene geteilte Dateien";
App::$strings["Unseen public stream activity"] = "Ungesehene Aktivität im öffentlichen Stream";
App::$strings["Unseen likes and dislikes"] = "Ungesehene Likes und Dislikes";
App::$strings["Unseen forum posts"] = "Ungesehene Beiträge im Forum";
App::$strings["Email notification hub (hostname)"] = "Hub für E-Mail-Benachrichtigungen (Hostname)";
App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Wenn Dein Kanal auf mehreren Hubs geklont ist, setze die Einstellung auf deinen bevorzugten Hub. Dies verhindert Mehrfachzustellung von E-Mail-Benachrichtigungen. Beispiel: %s";
App::$strings["Show new wall posts, private messages and connections under Notices"] = "Zeige neue Pinnwand Beiträge, private Nachrichten und Verbindungen unter den Notizen an.";
App::$strings["Mark all notices of the thread read if a notice is clicked"] = "Alle Hinweise des Threads als gelesen markieren, wenn ein Hinweis angeklickt wird";
App::$strings["If no, only the clicked notice will be marked read"] = "Wenn nein, wird nur der angeklickte Hinweis als gelesen markiert";
App::$strings["Desktop notifications are unavailable because the required browser permission has not been granted"] = "Desktop-Benachrichtigungen sind nicht verfügbar, da die erforderliche Browser-Berechtigung nicht erteilt wurde";
App::$strings["Grant permission"] = "Erlaubnis erteilen";
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["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["Remove this channel."] = "Diesen Kanal löschen";
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."] = "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden.";
App::$strings["This website expires after %d days."] = "Diese Webseite läuft nach %d Tagen ab.";
App::$strings["This website does not expire imported content."] = "Diese Webseite lässt importierte Inhalte nicht verfallen.";
App::$strings["The website limit takes precedence if lower than your limit."] = "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist.";
App::$strings["Words one per line or #tags, \$categories, /patterns/, lang=xx, lang!=xx - leave blank to import all posts"] = "Wörter einzeln pro Zeile oder #tags, \$categories, /patterns/, lang=xx, lang!=xx - leer lassen, um alle Beiträge zu importieren";
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["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["DId2 or Email Address:"] = "DId2 oder Emailadresse:";
App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen";
App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
App::$strings["Addon Settings"] = "Addon-Einstellungen";
App::$strings["Please save/submit changes to any panel before opening another."] = "Bitte speichere alle Änderungen in diesem Bereich, bevor Du einen anderen öffnest.";
App::$strings["Events Settings"] = "Termine - Einstellungen";
App::$strings["Channel Manager Settings"] = "Kanal verwalten - Einstellungen";
App::$strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals";
App::$strings["Channel Home Settings"] = "Mein Kanal - Einstellungen";
App::$strings["Calendar Settings"] = "Kalender - Einstellungen";
App::$strings["%s - (Experimental)"] = "%s – (experimentell)";
App::$strings["Display Settings"] = "Anzeige-Einstellungen";
App::$strings["Theme Settings"] = "Design-Einstellungen";
App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Design-Einstellungen";
App::$strings["Content Settings"] = "Inhaltseinstellungen";
App::$strings["Display Theme:"] = "Theme wählen:";
App::$strings["Select scheme"] = "Schema wählen";
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 30 items"] = "Maximal 30 Einträ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["Display new member quick links menu"] = "Zeigt neuen Mitgliedern ein Menü mit Schnell-Links zu wichtigen Funktionen";
App::$strings["Directory Settings"] = "Verzeichnis - Einstellungen";
App::$strings["Editor Settings"] = "Editor - Einstellungen";
App::$strings["Connections Settings"] = "Verbindungen - Einstellungen";
App::$strings["Photos Settings"] = "Fotos - Einstellungen";
App::$strings["Default profile for new contacts"] = "Standardprofil für neue Kontakte";
App::$strings["Profiles Settings"] = "Profile - Einstellungen";
App::$strings["Privacy settings updated."] = "Privacy Einstellungen aktualisiert.";
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["Advise: set to \"Anybody on the internet\" and use privacy groups to restrict access"] = "Empfehlung: Setzen Sie die Einstellung auf \"Jeder im Internet\" und verwenden Sie Privacy Gruppen , um den Zugriff zu beschränken.";
App::$strings["Privacy Settings"] = "Privacy-Einstellungen";
App::$strings["Advanced configuration"] = "Benutzerdefinierte Konfiguration der Channel Role";
App::$strings["Proceed with caution"] = "Mit Vorsicht vorgehen";
App::$strings["Changing advanced configuration settings can impact your, and your contacts channels functionality and security."] = "Das Ändern von erweiterten Konfigurationseinstellungen kann sich auf die Funktionalität und Sicherheit Ihrer Kanäle und der Ihrer Kontakte auswirken.";
App::$strings["Accept the risk and continue"] = "Das Risiko akzeptieren und weitermachen";
App::$strings["Automatically approve new contacts"] = "Neue Kontakte automatisch genehmigen";
App::$strings["Opt-out of search engine indexing"] = "Indizierung durch Suchmaschinen deaktivieren";
App::$strings["Group actor"] = "Gruppe Akteur";
App::$strings["Allow this channel to act as a forum"] = "Erlauben Sie diesem Kanal, als Forum zu fungieren";
App::$strings["Settings saved."] = "Einstellungen gespeichert.";
App::$strings["Settings saved. Reload page please."] = "Einstellungen gespeichert. Bitte die Seite neu laden.";
App::$strings["Conversation Settings"] = "Unterhaltung - Einstellungen";
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["Drop"] = "Löschen";
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["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["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:";
App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden";
App::$strings["If enabled, connection requests will be approved without your interaction"] = "Ist dies aktiviert, werden Verbindungsanfragen ohne Deine aktive Zustimmung bestätigt.";
App::$strings["Permission role"] = "Berechtigungsrolle";
App::$strings["Add permission role"] = "Berechtigungsrolle hinzufügen";
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["Automatic approval settings"] = "Einstellungen für automatische Bestätigung";
App::$strings["My Settings"] = "Meine Einstellungen";
App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte";
App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Einige individuelle Berechtigungen können basierend auf Deinen Kanal- und Privatsphäre-Einstellungen vorbelegt oder gesperrt sein.";
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["Name and Secret are required"] = "Name und Geheimnis werden benötigt";
App::$strings["Add OAuth2 application"] = "OAuth2 Anwendung hinzufügen";
App::$strings["Grant Types"] = "Genehmigungsarten";
App::$strings["leave blank unless your application sepcifically requires this"] = "Frei lassen, es sei denn die Anwendung verlangt dies.";
App::$strings["Authorization scope"] = "Rahmen der Berechtigungen";
App::$strings["OAuth2 Application not found."] = "OAuth2 Anwendung konnte nicht gefunden werden";
App::$strings["leave blank unless your application specifically requires this"] = "freilassen wenn die Anwendung es nicht spezifisch erfordert";
App::$strings["Connected OAuth2 Apps"] = "Verbundene OAuth2 Anwendungen";
App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)";
App::$strings["no results"] = "keine Ergebnisse";
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["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s";
App::$strings["Redeliver"] = "Erneut zustellen";
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["Authentication failed."] = "Authentifizierung fehlgeschlagen.";
App::$strings["Item sync completed!"] = "Elementsynchronisierung abgeschlossen!";
App::$strings["Item sync completed but no items were found!"] = "Elementsynchronisierung abgeschlossen, aber es wurden keine Elemente gefunden";
App::$strings["File sync completed!"] = "Dateisynchronisierung abgeschlossen!";
App::$strings["File sync completed but no files were found!"] = "Dateisynchronisierung abgeschlossen, aber es wurden keine Dateien gefunden!";
App::$strings["Channel clone status"] = "Kanal-Klon-Status";
App::$strings["Item sync status"] = "Status der Artikelsynchronisation";
App::$strings["File sync status"] = "Status der Dateisynchronisation";
App::$strings["Channel cloning completed!"] = "Kanalklonen abgeschlossen!";
App::$strings["Resume"] = "fortsetzen";
App::$strings["Only resume if sync stalled!"] = "Nur fortsetzen, wenn die Synchronisation gestoppt wurde!";
App::$strings["Layout updated."] = "Layout aktualisiert.";
App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten";
App::$strings["(modified)"] = "(geändert)";
App::$strings["Layout not found."] = "Layout nicht gefunden.";
App::$strings["Module Name:"] = "Modulname:";
App::$strings["Layout Help"] = "Layout-Hilfe";
App::$strings["Edit another layout"] = "Ein weiteres Layout bearbeiten";
App::$strings["System layout"] = "System-Layout";
App::$strings["Welcome to %s"] = "Willkommen auf %s";
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["Connection updated."] = "Verbindung aktualisiert.";
App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren.";
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 %s's profile"] = "%ss Profil ansehen";
App::$strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare";
App::$strings["Fetch Vcard"] = "Vcard abrufen";
App::$strings["Fetch electronic calling card for this connection"] = "Rufe eine digitale Visitenkarte für diese Verbindung ab";
App::$strings["Open Set Affinity section by default"] = "Öffne standardmäßig den Bereich für Beziehungsgrad-Einstellungen";
App::$strings["Filter"] = "Filter";
App::$strings["Open Custom Filter section by default"] = "Öffne standardmäßig den Bereich für benutzerdefinierte Filter";
App::$strings["Set Affinity"] = "Beziehung festlegen";
App::$strings["Set Profile"] = "Profil festlegen";
App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen";
App::$strings["Contact: %s"] = "Kontakt: %s";
App::$strings["Manage contact roles"] = "Verwalten von Contact Roles";
App::$strings["This contacts's primary address is"] = "Die Hauptadresse dieser Kontakte lautet";
App::$strings["Available locations:"] = "Verfügbare Klone:";
App::$strings["Contact Pending Approval"] = "ausstehende Kontakt-Genehmigung";
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["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["Details"] = "Details";
App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr.";
App::$strings["System Notifications"] = "System-Benachrichtigungen";
App::$strings["Mark all seen"] = "Alle als gelesen markieren";
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["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["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["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["Resend posts with this channel as author"] = "Sende die Beiträge neu mit diesem Kanal als Autor";
App::$strings["Copyrights may apply"] = "Berücksichtige gegebenenfalls vorhandene Urheberrechte";
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["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["A deleted privacy group with this name was revived. Existing item permissions <strong>may</strong> apply to this privacy group and any future members. If this is not what you intended, please create another privacy group with a different name."] = "Eine gelöschte Privacy Gruppe mit diesem Namen wurde wiederbelebt. Vorhandene Objektberechtigungen <strong>können</strong> gelten für diese Privacy Gruppe und alle zukünftigen Mitglieder. Wenn dies nicht Ihren Vorstellungen entspricht, erstellen Sie bitte eine andere  Privacy Gruppe mit einem anderen Namen.";
App::$strings["Select a privacy group"] = "Wählen Sie eine Privacy Gruppe ";
App::$strings["__ctx:permcat__ Default"] = "Standard";
App::$strings["Likes %1\$s's %2\$s"] = "Likes %1\$s's %2\$s";
App::$strings["Doesn't like %1\$s's %2\$s"] = "Nicht mögen %1\$s's %2\$s";
App::$strings["Will attend %s's event"] = "Wird die Veranstaltung von %s besuchen";
App::$strings["Will not attend %s's event"] = "Wird nicht an der Veranstaltung von %s teilnehmen";
App::$strings["May attend %s's event"] = "Darf an der Veranstaltung von %s teilnehmen";
App::$strings["May not attend %s's event"] = "Darf nicht an der Veranstaltung von %s teilnehmen";
App::$strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung";
App::$strings["Thank You,"] = "Danke.";
App::$strings["This email was sent by %1\$s at %2\$s."] = "Diese Email wurde von %1\$s auf %2\$s gesendet.";
App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine Benachrichtigungseinstellungen unter folgendem Link an: %s";
App::$strings["To stop receiving these messages, please adjust your %s."] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine %s an.";
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
App::$strings["[\$Projectname:Notify] New direct message received at %s"] = "[\$Projectname:Notify] Neue Direktnachricht empfangen bei %s";
App::$strings["%1\$s sent you a new direct message at %2\$s"] = "%1\$s hat Ihnen eine neue Direktnachricht an %2\$s gesendet";
App::$strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt.";
App::$strings["a direct message"] = "eine direkte Nachricht";
App::$strings["Please visit %s to view and/or reply to your direct messages."] = "Bitte besuchen Sie %s, um Ihre Direktnachrichten anzusehen und/oder zu beantworten.";
App::$strings["commented on"] = "kommentierte";
App::$strings["liked"] = "gefiel";
App::$strings["disliked"] = "missfiel";
App::$strings["voted on"] = "voted on";
App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]ein %4\$s[/zrl]";
App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]";
App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]dein %4\$s[/zrl]";
App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Moderierter Kommantar in Unterhaltung #%1\$d von %2\$s";
App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s";
App::$strings["%1\$s commented on an item/conversation you have been following"] = "%1\$s hat einen Artikel/eine Diskussion kommentiert, den/die Sie verfolgt haben";
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["Please visit %s to approve or reject this comment."] = "Bitte besuche %s, um diesen Kommentar anzunehmen oder abzulehnen.";
App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Gefällt mir in Unterhaltung #%1\$d von %2\$s erhalten";
App::$strings["%1\$s liked an item/conversation you created"] = "%1\$s mochte einen von Ihnen erstellten Artikel/eine von Ihnen erstellte Unterhaltung";
App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Benachrichtigung] %s schrieb auf Deine Pinnwand";
App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$shat etwas auf deiner Profilwand auf %2\$sveröffentlicht";
App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s schrieb auf [zrl=%2\$s]Deine Pinnwand[/zrl]";
App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Benachrichtigung] %s hat Dich erwähnt";
App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s hat dich auf %2\$s getaggt";
App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s hat [zrl=%2\$s]Dich getagged[/zrl].";
App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Benachrichtigung] %1\$s hat Dich angestupst";
App::$strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]hat dich angestupst.[/zrl].";
App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet";
App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s hat Deinen Beitrag auf %2\$s getagged";
App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s hat [zrl=%2\$s]Deinen Beitrag[/zrl] getagged";
App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Benachrichtigung] Verbindungsanfrage erhalten";
App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Du hast auf %2\$s eine neue Verbindung von %1\$s erhalten.";
App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Du hast [zrl=%1\$s]eine neue Verbindungsanfrage[/zrl] von %2\$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["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Benachrichtigung] Freundschaftsvorschlag erhalten";
App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freundschaftsvorschlag von %1\$s auf %2\$s erhalten";
App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Du hast einen [zrl=%1\$s]Freundschaftsvorschlag[/zrl] für %2\$s von %3\$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["[\$Projectname:Notify]"] = "[\$Projectname:Benachrichtigung]";
App::$strings["created a new poll"] = "Erzeuge neue Umfrage";
App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt";
App::$strings["voted on %s's poll"] = "voted on %s's poll";
App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert";
App::$strings["repeated %s's post"] = "repeated %s's post";
App::$strings["liked %s's post"] = "liked %s's post";
App::$strings["disliked %s's post"] = "liked %s's post";
App::$strings["shared a file with you"] = "hat eine Datei mit Dir geteilt";
App::$strings["edited a post dated %s"] = "hat einen Beitrag vom %s bearbeitet";
App::$strings["edited a comment dated %s"] = "hat einen Kommentar vom %s bearbeitet";
App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt";
App::$strings["sent you a direct message"] = "schickte Ihnen eine direkte Nachricht";
App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r";
App::$strings["[today]"] = "[Heute]";
App::$strings["created an event"] = "Erzeuge ein Ereignis";
App::$strings["status verified"] = "Status überprüft";
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["Remote channel or protocol unavailable."] = "Externer Kanal oder Protokoll nicht verfügbar.";
App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen";
App::$strings["Protocol disabled."] = "Protokoll deaktiviert.";
App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden.";
App::$strings["error saving data"] = "Fehler beim Speichern der Daten";
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["Affinity Tool"] = "Beziehungsgrad";
App::$strings["Site Admin"] = "Hub-Administration";
App::$strings["Content Filter"] = "Inhaltsfilter";
App::$strings["Remote Diagnostics"] = "Ferndiagnose";
App::$strings["Suggest Channels"] = "Kanäle vorschlagen";
App::$strings["Channel Manager"] = "Kanal-Manager";
App::$strings["Stream"] = "Stream";
App::$strings["Mail"] = "Mail";
App::$strings["Chat"] = "Chat";
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["Notifications"] = "Benachrichtigungen";
App::$strings["Order Apps"] = "Apps anordnen";
App::$strings["CardDAV"] = "CardDAV";
App::$strings["OAuth Apps Manager"] = "Verwalte OAuth Apps";
App::$strings["OAuth2 Apps Manager"] = "Verwalte OAuth2 Apps";
App::$strings["PDL Editor"] = "PDL-Editor";
App::$strings["My Chatrooms"] = "Meine Chaträume";
App::$strings["Channel Export"] = "Kanalexport";
App::$strings["Purchase"] = "Kaufen";
App::$strings["Undelete"] = "Wieder hergestellt";
App::$strings["Add to app-tray"] = "Zum App-Menü hinzufügen";
App::$strings["Remove from app-tray"] = "Aus dem App-Menü entfernen";
App::$strings["Pin to navbar"] = "An Navigationsleiste anpinnen";
App::$strings["Unpin from navbar"] = "Von Navigationsleiste entfernen";
App::$strings["0. Beginner/Basic"] = "0. Einsteiger/Basis";
App::$strings["1. Novice - not skilled but willing to learn"] = "1. Anfänger - unerfahren, aber bereit zu lernen";
App::$strings["2. Intermediate - somewhat comfortable"] = "2. Fortgeschritten - relativ komfortabel";
App::$strings["3. Advanced - very comfortable"] = "3. Fortgeschritten - sehr komfortabel";
App::$strings["4. Expert - I can write computer code"] = "4. Experte - Ich kann Computercode schreiben";
App::$strings["5. Wizard - I probably know more than you do"] = "5. Zauberer - ich kann wahrscheinlich mehr als Du";
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["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren";
App::$strings["Restricted message"] = "Eingeschränkte Nachricht";
App::$strings["Direct message"] = "Direkte Nachricht";
App::$strings["Public Policy"] = "Öffentliche Ordnung";
App::$strings["Privacy conflict. Discretion advised."] = "Privacy conflict. Discretion advised.";
App::$strings["Admin Delete"] = "Admin Delete";
App::$strings["Reply on this comment"] = "Antworte auf diesen Kommentar";
App::$strings["reply"] = "antworten";
App::$strings["Reply to"] = "Antwort an";
App::$strings["Delivery Report"] = "Zustellungsbericht";
App::$strings["%d comment"] = array(
	0 => "%d Kommentar",
	1 => "%d Kommentare",
);
App::$strings["%d unseen"] = "1%d ungelesen";
App::$strings["Forum"] = "Forum";
App::$strings["to"] = "an";
App::$strings["Wall-to-Wall"] = "Wall-to-Wall";
App::$strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
App::$strings["Attend"] = "Zusagen";
App::$strings["Go to previous comment"] = "Gehe zum vorangegangenen Kommentar";
App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen";
App::$strings["Image"] = "Bild";
App::$strings["Insert Link"] = "Link einfügen";
App::$strings["Video"] = "Video";
App::$strings["Your full name (required)"] = "Ihr vollständiger Name (erforderlich)";
App::$strings["Your email address (required)"] = "Ihre E-Mail-Adresse (erforderlich)";
App::$strings["Your website URL (optional)"] = "Ihre Webseiten-URL (optional)";
App::$strings["Source code of failed update: "] = "Quellcode der fehlgeschlagenen Aktualisierung:";
App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s";
App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen.";
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 connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube";
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["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren";
App::$strings["Social Networking"] = "Soziales Netzwerk";
App::$strings["Social - Federation"] = "Soziales Netzwerk - Föderation (verbundene Netze)";
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["Personal"] = "Persönlich";
App::$strings["Community forum"] = "Community Forum";
App::$strings["Custom"] = "Benutzerdefiniert";
App::$strings["Can view my channel stream and posts"] = "Kann meinen Kanal-Stream und meine Beiträge sehen";
App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken";
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 upload/modify my file storage and photos"] = "Kann in meine Datei- und Bilderordner hochladen/ändern";
App::$strings["Can view my channel webpages"] = "Kann die Webseiten meines Kanals sehen";
App::$strings["Can view my wiki pages"] = "Kann meine Wiki-Seiten sehen";
App::$strings["Can create/edit my channel webpages"] = "Kann Webseiten in meinem Kanal erstellen/ändern";
App::$strings["Can write to my wiki pages"] = "Kann meine Wiki-Seiten bearbeiten";
App::$strings["Can post on my channel (wall) page"] = "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 direct messages"] = "Kann mir direkte Nachrichten schicken";
App::$strings["Can like/dislike profiles and profile things"] = "Kann Profile und Profilsachen mögen/nicht mögen";
App::$strings["Can chat with me"] = "Kann mit mir chatten";
App::$strings["Can source/mirror my public posts in derived channels"] = "Kann meine öffentlichen Beiträge in anderen Kanälen zitieren/spiegeln";
App::$strings["Can administer my channel"] = "Kann meinen Kanal administrieren";
App::$strings["Change filename to"] = "Ändere Dateiname in";
App::$strings["Select a target location"] = "Wähle einen Ziel-Ort";
App::$strings["Copy to target location"] = "Kopiere zu Ziel-Ort";
App::$strings["Set permissions for all files and sub folders"] = "Setze Berechtigungen für alle Dateien und Unterordner";
App::$strings["Notify your contacts about this file"] = "Benachrichtige Deine Verbindungen zu dieser Datei.";
App::$strings["File category"] = "Dateikategorie";
App::$strings["Total"] = "Summe";
App::$strings["Shared"] = "Geteilt";
App::$strings["Add Files"] = "Dateien hinzufügen";
App::$strings["parent"] = "Übergeordnetes Verzeichnis";
App::$strings["Select All"] = "Wähle alle aus";
App::$strings["Bulk Actions"] = "Massen-Aktionen";
App::$strings["Adjust Permissions"] = "Berechtigungen anpassen";
App::$strings["Move or Copy"] = "Verschieben oder Kopieren";
App::$strings["Info"] = "Info";
App::$strings["Rename"] = "Umbenennen";
App::$strings["Attachment BBcode"] = "Anhang BBcode";
App::$strings["Embed BBcode"] = "Einbetten BBcode";
App::$strings["Link BBcode"] = "Link BBcode";
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["Drop files here to immediately upload"] = "Dateien zum sofortigen Hochladen hier fallen lassen";
App::$strings["You can select files via the upload button or drop them right here or into an existing folder."] = "Du kannst Dateien über die Schaltfläche Hochladen wählen oder sie direkt hier oder in einem existierenden Ordner ablegen.";
App::$strings["Create an account to access services and applications"] = "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können.";
App::$strings["Email or nickname"] = "E-Mail oder Kennung";
App::$strings["Password"] = "Kennwort";
App::$strings["Remember me"] = "Angaben speichern";
App::$strings["Forgot your password?"] = "Passwort vergessen?";
App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Webseiten-SSL-Fehler für %s";
App::$strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben.";
App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Cron-Jobs laufen nicht auf %s";
App::$strings["Cron/Scheduled tasks not running."] = "Cron-Aufgaben laufen nicht.";