aboutsummaryrefslogtreecommitdiffstats
path: root/view/de-de/hstrings.php
blob: 2f411a1d1a70995c0e2e1f23bdcfab866fede28c (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
<?php

if(! function_exists("string_plural_select_de_de")) {
function string_plural_select_de_de($n){
        return ($n != 1 ? 1 : 0);
}}
App::$rtl = 0;
App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)";
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 pixel"] = "Maximalbreite des Inhaltsbereichs in Pixel festlegen";
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"] = "";
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["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"] = "Gruppen";
App::$strings["Edit group"] = "Gruppe ändern";
App::$strings["Add privacy group"] = "Gruppe hinzufügen";
App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind";
App::$strings["add"] = "hinzufügen";
App::$strings["Download binary/encrypted content"] = "Binären/verschlüsselten Inhalt herunterladen";
App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen.";
App::$strings["No recipient provided."] = "Kein Empfänger angegeben";
App::$strings["[no subject]"] = "[no subject]";
App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden.";
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["Channel Manager"] = "Kanal-Manager";
App::$strings["Manage your channels"] = "";
App::$strings["Manage your privacy groups"] = "";
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["View Profile"] = "Profil ansehen";
App::$strings["Your profile page"] = "Deine Profilseite";
App::$strings["Edit Profiles"] = "Profile bearbeiten";
App::$strings["Manage/Edit profiles"] = "Profile verwalten";
App::$strings["Edit Profile"] = "Profil bearbeiten";
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"] = "Hilfe";
App::$strings["Help and documentation"] = "Hilfe und Dokumentation";
App::$strings["Search"] = "Suche";
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, !forum, #tag, ?doc, content"] = "@Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt";
App::$strings["Please wait..."] = "Bitte warten...";
App::$strings["Add Apps"] = "Apps hinzufügen";
App::$strings["Arrange Apps"] = "Apps anordnen";
App::$strings["Toggle System Apps"] = "System-Apps umschalten";
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["Photos"] = "Fotos";
App::$strings["Photo Albums"] = "Fotoalben";
App::$strings["Files"] = "Dateien";
App::$strings["Files and Storage"] = "Dateien und Speicher";
App::$strings["Calendar"] = "Kalender";
App::$strings["Chatrooms"] = "Chaträume";
App::$strings["Bookmarks"] = "Lesezeichen";
App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen";
App::$strings["Cards"] = "Karten";
App::$strings["View Cards"] = "Karten anzeigen";
App::$strings["Articles"] = "Artikel";
App::$strings["View Articles"] = "Artikel anzeigen";
App::$strings["Webpages"] = "Webseiten";
App::$strings["View Webpages"] = "Webseiten anzeigen";
App::$strings["Wikis"] = "Wikis";
App::$strings["Wiki"] = "Wiki";
App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s heißt %2\$s willkommen";
App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen";
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["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["Permission denied"] = "Keine Berechtigung";
App::$strings["(Unknown)"] = "(Unbekannt)";
App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar.";
App::$strings["Visible to you only."] = "Nur für Dich sichtbar.";
App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar.";
App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist.";
App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar.";
App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar.";
App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar.";
App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen.";
App::$strings["Item not found."] = "Element nicht gefunden.";
App::$strings["Permission denied."] = "Berechtigung verweigert.";
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 schreiben";
App::$strings["__ctx:edit_activity__ Comment"] = "Kommentar";
App::$strings["photo"] = "Foto";
App::$strings["event"] = "Termin";
App::$strings["channel"] = "Kanal";
App::$strings["status"] = "Status";
App::$strings["comment"] = "Kommentar";
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["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["poked"] = "stupste";
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";
App::$strings["__ctx:title__ Dislikes"] = "Gefällt 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["Delete"] = "Löschen";
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["View in context"] = "Im Zusammenhang anschauen";
App::$strings["Please wait"] = "Bitte warten";
App::$strings["remove"] = "lösche";
App::$strings["Loading..."] = "Lädt ...";
App::$strings["Conversation Tools"] = "";
App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente";
App::$strings["View Source"] = "Quelle anzeigen";
App::$strings["Follow Thread"] = "Unterhaltung folgen";
App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen";
App::$strings["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["Unknown"] = "Unbekannt";
App::$strings["%s likes this."] = "%s gefällt das.";
App::$strings["%s doesn't like this."] = "%s gefällt das nicht.";
App::$strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "<span  %1\$s>%2\$d Person</span> gefällt das.",
	1 => "<span  %1\$s>%2\$d Leuten</span> gefällt das.",
);
App::$strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "<span  %1\$s>%2\$d Person</span> gefällt das nicht.",
	1 => "<span  %1\$s>%2\$d Leuten</span> gefällt das nicht.",
);
App::$strings["and"] = "und";
App::$strings[", and %d other people"] = array(
	0 => "",
	1 => ", und %d andere",
);
App::$strings["%s like this."] = "%s gefällt das.";
App::$strings["%s don't like this."] = "%s gefällt das nicht.";
App::$strings["Set your location"] = "Standort";
App::$strings["Clear browser location"] = "Browser-Standort löschen";
App::$strings["Insert web link"] = "Link einfügen";
App::$strings["Embed (existing) photo from your photo albums"] = "";
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 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["Comments enabled"] = "Kommentare aktiviert";
App::$strings["Comments disabled"] = "Kommentare deaktiviert";
App::$strings["Preview"] = "Vorschau";
App::$strings["Share"] = "Teilen";
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"] = "";
App::$strings["Embed an image from your albums"] = "Betten Sie ein Bild aus Ihren Alben ein";
App::$strings["Cancel"] = "Abbrechen";
App::$strings["OK"] = "Ok";
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["__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"] = "Unentschieden";
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["Help:"] = "Hilfe:";
App::$strings["Not Found"] = "Nicht gefunden";
App::$strings["Page not found."] = "Seite nicht gefunden.";
App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse";
App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt";
App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
App::$strings["An invitation is required."] = "Eine Einladung wird benötigt.";
App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden.";
App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein.";
App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen.";
App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s";
App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
App::$strings["your registration password"] = "Dein Registrierungspasswort";
App::$strings["Registration details for %s"] = "Registrierungsdetails für %s";
App::$strings["Account approved."] = "Nutzerkonto bestätigt.";
App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen";
App::$strings["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["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"] = "";
App::$strings["Start:"] = "";
App::$strings["End:"] = "";
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["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s";
App::$strings["post"] = "Beitrag";
App::$strings["default"] = "Standard";
App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache";
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["Saved Folders"] = "Gespeicherte Ordner";
App::$strings["Everything"] = "Alles";
App::$strings["Categories"] = "Kategorien";
App::$strings["Common Connections"] = "Gemeinsame Verbindungen";
App::$strings["View all %d common connections"] = "Zeige alle %d gemeinsamen Verbindungen";
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"] = "";
App::$strings["wonderful"] = "";
App::$strings["fantastic"] = "";
App::$strings["great"] = "";
App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "";
App::$strings[") or enter a new one."] = "";
App::$strings["Thank you, this nickname is valid."] = "";
App::$strings["A channel name is required."] = "";
App::$strings["This is a "] = "";
App::$strings[" channel name"] = "";
App::$strings["Back to reply"] = "";
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["January"] = "Januar";
App::$strings["February"] = "Februar";
App::$strings["March"] = "März";
App::$strings["April"] = "April";
App::$strings["__ctx:long__ 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["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["Sunday"] = "Sonntag";
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["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["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert ";
App::$strings["Channel location missing."] = "Adresse des Kanals fehlt.";
App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig.";
App::$strings["Premium channel - please visit:"] = "Premium-Kanal - bitte gehe zu:";
App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr.";
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["View PDF"] = "";
App::$strings[" by "] = "von";
App::$strings[" on "] = "am";
App::$strings["Embedded content"] = "Eingebetteter Inhalt";
App::$strings["Embedding disabled"] = "Einbetten deaktiviert";
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."] = "Reservierter Kurzname. Bitte wähle einen anderen.";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
App::$strings["Default Profile"] = "Standard-Profil";
App::$strings["Friends"] = "Freunde";
App::$strings["Unable to retrieve modified identity"] = "Geänderte Identität kann nicht empfangen werden";
App::$strings["Requested channel is not available."] = "Angeforderter Kanal nicht verfügbar.";
App::$strings["Requested profile is not available."] = "Das angefragte Profil ist nicht verfügbar.";
App::$strings["Change profile photo"] = "Profilfoto ändern";
App::$strings["Edit"] = "Bearbeiten";
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["Online Now"] = "gerade online";
App::$strings["Change your profile photo"] = "Dein Profilfoto ändern";
App::$strings["Female"] = "Weiblich";
App::$strings["Male"] = "Männlich";
App::$strings["Trans"] = "Trans";
App::$strings["Neuter"] = "Geschlechtslos";
App::$strings["Non-specific"] = "unklar";
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["Hometown:"] = "Heimatstadt:";
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["prev"] = "vorherige";
App::$strings["first"] = "erste";
App::$strings["last"] = "letzte";
App::$strings["next"] = "nächste";
App::$strings["older"] = "älter";
App::$strings["newer"] = "neuer";
App::$strings["No connections"] = "Keine Verbindungen";
App::$strings["Connections"] = "Verbindungen";
App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen";
App::$strings["Network: %s"] = "";
App::$strings["Save"] = "Speichern";
App::$strings["poke"] = "anstupsen";
App::$strings["ping"] = "anpingen";
App::$strings["pinged"] = "pingte";
App::$strings["prod"] = "knuffen";
App::$strings["prodded"] = "knuffte";
App::$strings["slap"] = "ohrfeigen";
App::$strings["slapped"] = "ohrfeigte";
App::$strings["finger"] = "befummeln";
App::$strings["fingered"] = "befummelte";
App::$strings["rebuff"] = "eine Abfuhr erteilen";
App::$strings["rebuffed"] = "zurückgewiesen";
App::$strings["happy"] = "glücklich";
App::$strings["sad"] = "traurig";
App::$strings["mellow"] = "sanft";
App::$strings["tired"] = "müde";
App::$strings["perky"] = "frech";
App::$strings["angry"] = "sauer";
App::$strings["stupefied"] = "verblüfft";
App::$strings["puzzled"] = "verwirrt";
App::$strings["interested"] = "interessiert";
App::$strings["bitter"] = "verbittert";
App::$strings["cheerful"] = "fröhlich";
App::$strings["alive"] = "lebendig";
App::$strings["annoyed"] = "verärgert";
App::$strings["anxious"] = "unruhig";
App::$strings["cranky"] = "schrullig";
App::$strings["disturbed"] = "verstört";
App::$strings["frustrated"] = "frustriert";
App::$strings["depressed"] = "deprimiert";
App::$strings["motivated"] = "motiviert";
App::$strings["relaxed"] = "entspannt";
App::$strings["surprised"] = "überrascht";
App::$strings["May"] = "Mai";
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["Link to Source"] = "Link zur Quelle";
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["BBcode"] = "BBcode";
App::$strings["HTML"] = "HTML";
App::$strings["Markdown"] = "Markdown";
App::$strings["Text"] = "Text";
App::$strings["Comanche Layout"] = "Comanche-Layout";
App::$strings["PHP"] = "PHP";
App::$strings["Page content type"] = "Art des Seiteninhalts";
App::$strings["activity"] = "Aktivität";
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["Collection"] = "Sammlung";
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["Item was not found."] = "Beitrag wurde nicht gefunden.";
App::$strings["Unknown error."] = "";
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["Profile to assign new connections"] = "Profil, welches neuen Verbindungen zugewiesen wird";
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["Undecided"] = "Unentschieden";
App::$strings["Males"] = "Männer";
App::$strings["Females"] = "Frauen";
App::$strings["Gay"] = "Schwul";
App::$strings["Lesbian"] = "Lesbisch";
App::$strings["No Preference"] = "Keine Bevorzugung";
App::$strings["Bisexual"] = "Bisexuell";
App::$strings["Autosexual"] = "Autosexuell";
App::$strings["Abstinent"] = "Enthaltsam";
App::$strings["Virgin"] = "Jungfräulich";
App::$strings["Deviant"] = "Abweichend";
App::$strings["Fetish"] = "Fetisch";
App::$strings["Oodles"] = "Unmengen";
App::$strings["Nonsexual"] = "Sexlos";
App::$strings["Single"] = "Single";
App::$strings["Lonely"] = "Einsam";
App::$strings["Available"] = "Verfügbar";
App::$strings["Unavailable"] = "Nicht verfügbar";
App::$strings["Has crush"] = "Verguckt";
App::$strings["Infatuated"] = "Verknallt";
App::$strings["Dating"] = "Lerne gerade jemanden kennen";
App::$strings["Unfaithful"] = "Treulos";
App::$strings["Sex Addict"] = "Sexabhängig";
App::$strings["Friends/Benefits"] = "Freunde/Begünstigte";
App::$strings["Casual"] = "Lose";
App::$strings["Engaged"] = "Verlobt";
App::$strings["Married"] = "Verheiratet";
App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet";
App::$strings["Partners"] = "Partner";
App::$strings["Cohabiting"] = "Lebensgemeinschaft";
App::$strings["Common law"] = "Informelle Ehe";
App::$strings["Happy"] = "Glücklich";
App::$strings["Not looking"] = "Nicht Ausschau haltend";
App::$strings["Swinger"] = "Swinger";
App::$strings["Betrayed"] = "Betrogen";
App::$strings["Separated"] = "Getrennt";
App::$strings["Unstable"] = "Labil";
App::$strings["Divorced"] = "Geschieden";
App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden";
App::$strings["Widowed"] = "Verwitwet";
App::$strings["Uncertain"] = "Ungewiss";
App::$strings["It's complicated"] = "Es ist kompliziert";
App::$strings["Don't care"] = "Interessiert mich nicht";
App::$strings["Ask me"] = "Frag mich mal";
App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["GNU-Social"] = "GNU-Social";
App::$strings["RSS/Atom"] = "RSS/Atom";
App::$strings["ActivityPub"] = "ActivityPub";
App::$strings["Email"] = "E-Mail";
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["Profile Photos"] = "Profilfotos";
App::$strings["Delegation session ended."] = "";
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["Login failed."] = "Login fehlgeschlagen.";
App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen";
App::$strings["__ctx:acl__ Profile"] = "Profil";
App::$strings["Only me"] = "Nur ich";
App::$strings["Who can see this?"] = "Wer kann das sehen?";
App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl";
App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen.";
App::$strings["Show"] = "Anzeigen";
App::$strings["Don't show"] = "Nicht anzeigen";
App::$strings["Permissions"] = "Berechtigungen";
App::$strings["Close"] = "Schließen";
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["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["Recent Photos"] = "Neueste Fotos";
App::$strings["Upload New Photos"] = "Neue Fotos hochladen";
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["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["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen.";
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["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["Required"] = "Benötigt";
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["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["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["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen";
App::$strings["$1 wrote:"] = "$1 schrieb:";
App::$strings["Invalid data packet"] = "Ungültiges Datenpaket";
App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren";
App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren";
App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels";
App::$strings["Off"] = "Aus";
App::$strings["On"] = "An";
App::$strings["Start calendar week on Monday"] = "Beginne die kalendarische Woche am Montag";
App::$strings["Default is Sunday"] = "";
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"] = "";
App::$strings["Comments will be displayed separately"] = "";
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"] = "";
App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten";
App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge";
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"] = "";
App::$strings["Ability to reply on selected comment"] = "";
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"] = "";
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["Enable Voting Tools"] = "Umfragewerkzeuge aktivieren";
App::$strings["Provide a class of post which others can vote on"] = "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)";
App::$strings["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"] = "";
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["Saved Searches"] = "Gespeicherte Suchanfragen";
App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung";
App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln";
App::$strings["Alternate Stream Order"] = "";
App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "";
App::$strings["Contact Filter"] = "";
App::$strings["Ability to display only posts of a selected contact"] = "";
App::$strings["Forum Filter"] = "";
App::$strings["Ability to display only posts of a specific forum"] = "";
App::$strings["Personal Posts Filter"] = "";
App::$strings["Ability to display only posts that you've interacted on"] = "";
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["Profiles"] = "";
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["HQ Control Panel"] = "HQ-Einstellungen";
App::$strings["Create a new post"] = "Neuen Beitrag erstellen";
App::$strings["Tasks"] = "Aufgaben";
App::$strings["View Photo"] = "Foto ansehen";
App::$strings["Edit Album"] = "Album bearbeiten";
App::$strings["Upload"] = "Hochladen";
App::$strings["__ctx:widget__ Activity"] = "Aktivität";
App::$strings["Events Tools"] = "Kalenderwerkzeuge";
App::$strings["Export Calendar"] = "Kalender exportieren";
App::$strings["Import Calendar"] = "Kalender importieren";
App::$strings["Rating Tools"] = "Bewertungswerkzeuge";
App::$strings["Rate Me"] = "Bewerte mich";
App::$strings["View Ratings"] = "Bewertungen ansehen";
App::$strings["Account settings"] = "Konto-Einstellungen";
App::$strings["Channel settings"] = "Kanal-Einstellungen";
App::$strings["Display settings"] = "Anzeige-Einstellungen";
App::$strings["Manage locations"] = "Klon-Adressen verwalten";
App::$strings["Received Messages"] = "Erhaltene Nachrichten";
App::$strings["Sent Messages"] = "Gesendete Nachrichten";
App::$strings["Conversations"] = "Konversationen";
App::$strings["No messages."] = "Keine Nachrichten.";
App::$strings["Delete conversation"] = "Unterhaltung löschen";
App::$strings["Me"] = "Ich";
App::$strings["Family"] = "Familie";
App::$strings["Acquaintances"] = "Bekannte";
App::$strings["All"] = "Alle";
App::$strings["Refresh"] = "Aktualisieren";
App::$strings["Notes"] = "Notizen";
App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen";
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["Private Mail Menu"] = "Private Nachrichten";
App::$strings["Combined View"] = "Kombinierte Anzeige";
App::$strings["Inbox"] = "Eingang";
App::$strings["Outbox"] = "Ausgang";
App::$strings["New Message"] = "Neue Nachricht";
App::$strings["Public Hubs"] = "Öffentliche Hubs";
App::$strings["Name"] = "Name";
App::$strings["__ctx:wiki_history__ Message"] = "Nachricht";
App::$strings["Date"] = "";
App::$strings["Revert"] = "Rückgängig machen";
App::$strings["Compare"] = "";
App::$strings["Site"] = "Seite";
App::$strings["Accounts"] = "Konten";
App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten";
App::$strings["Channels"] = "Kanäle";
App::$strings["Security"] = "Sicherheit";
App::$strings["Features"] = "Funktionen";
App::$strings["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"] = "";
App::$strings["photo/image"] = "Foto/Bild";
App::$strings["Chat Members"] = "Chatmitglieder";
App::$strings["Select Channel"] = "Kanal auswählen";
App::$strings["Read-write"] = "Lesen-schreiben";
App::$strings["Read-only"] = "Nur Lesen";
App::$strings["Channel Calendar"] = "";
App::$strings["CalDAV Calendars"] = "";
App::$strings["Shared CalDAV Calendars"] = "";
App::$strings["Share this calendar"] = "Diesen Kalender teilen";
App::$strings["Calendar name and color"] = "Kalendername und -farbe";
App::$strings["Create new CalDAV calendar"] = "";
App::$strings["Create"] = "Erstelle";
App::$strings["Calendar Name"] = "Kalendername";
App::$strings["Calendar Tools"] = "Kalenderwerkzeuge";
App::$strings["Channel Calendars"] = "";
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["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?"] = "";
App::$strings["Pin apps to navigation bar"] = "";
App::$strings["Install more apps"] = "";
App::$strings["View public stream"] = "Zeige öffentlichen Beitrags-Stream";
App::$strings["New Member Links"] = "Links für neue Mitglieder";
App::$strings["New Network Activity"] = "Neue Netzwerk-Aktivitäten";
App::$strings["New Network Activity Notifications"] = "Benachrichtigungen für neue Netzwerk-Aktivitäten";
App::$strings["View your network activity"] = "Zeige Deine Netzwerk-Aktivitäten";
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"] = "";
App::$strings["New Home Activity"] = "Neue Kanal-Aktivitäten";
App::$strings["New Home Activity Notifications"] = "Benachrichtigungen für neue Kanal-Aktivitäten";
App::$strings["View your home activity"] = "Zeige Deine Kanal-Aktivitäten";
App::$strings["Mark all notifications seen"] = "Alle Benachrichtigungen als gesehen markieren";
App::$strings["New Mails"] = "Neue Mails";
App::$strings["New Mails Notifications"] = "Benachrichtigungen für neue Mails";
App::$strings["View your private mails"] = "Zeige Deine persönlichen Mails";
App::$strings["Mark all messages seen"] = "Alle Mails als gelesen markieren";
App::$strings["New Events"] = "Neue Termine";
App::$strings["New Events Notifications"] = "Benachrichtigungen für neue Termine";
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 für neue Verbindungen";
App::$strings["View all connections"] = "Zeige alle Verbindungen";
App::$strings["New Files"] = "Neue Dateien";
App::$strings["New Files Notifications"] = "Benachrichtigungen für neue Dateien";
App::$strings["Notices"] = "Benachrichtigungen";
App::$strings["View all notices"] = "Alle Notizen ansehen";
App::$strings["Mark all notices seen"] = "Alle Notizen als gesehen markieren";
App::$strings["Forums"] = "Foren";
App::$strings["New Registrations"] = "Neue Registrierungen";
App::$strings["New Registrations Notifications"] = "Benachrichtigungen für neue Registrierungen";
App::$strings["Public Stream"] = "Öffentlicher Beitrags-Stream";
App::$strings["Public Stream Notifications"] = "Benachrichtigungen für öffentlichen Beitrags-Stream";
App::$strings["View the public stream"] = "Zeige öffentlichen Beitrags-Stream";
App::$strings["Sorry, you have got no notifications at the moment"] = "Du hast momentan keine Benachrichtigungen";
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 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"] = "";
App::$strings["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["Remove term"] = "Eintrag löschen";
App::$strings["Archives"] = "Archive";
App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms";
App::$strings["Overview"] = "Übersicht";
App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken";
App::$strings["Suggestions"] = "Vorschläge";
App::$strings["See more..."] = "Mehr anzeigen …";
App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge";
App::$strings["App Collections"] = "";
App::$strings["Installed apps"] = "";
App::$strings["Available Apps"] = "";
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["Add new page"] = "Neue Seite hinzufügen";
App::$strings["Options"] = "Optionen";
App::$strings["Wiki Pages"] = "Wikiseiten";
App::$strings["Page name"] = "Seitenname";
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["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 private mail messages"] = "Kann mir private Nachrichten schicken";
App::$strings["Can like/dislike profiles and profile things"] = "Kann Profile und Profilsachen mögen/nicht mögen";
App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "";
App::$strings["Can chat with me"] = "Kann mit mir chatten";
App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden";
App::$strings["Can administer my channel"] = "Kann meinen Kanal administrieren";
App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut.";
App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
App::$strings["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["Guest Access App"] = "";
App::$strings["Not Installed"] = "";
App::$strings["Create access tokens so that non-members can access private content"] = "";
App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen.";
App::$strings["You may also provide <em>dropbox</em> style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Du kannst auch <em>Dropbox</em>-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:";
App::$strings["Guest Access Tokens"] = "Gastzugangstoken";
App::$strings["Login Name"] = "Anmeldename";
App::$strings["Login Password"] = "Anmeldepasswort";
App::$strings["Expires (yyyy-mm-dd)"] = "Läuft ab (jjjj-mm-tt)";
App::$strings["Their Settings"] = "Deren Einstellungen";
App::$strings["My Settings"] = "Meine Einstellungen";
App::$strings["inherited"] = "geerbt";
App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen <a href=\"settings\">Sicherheits- und Privatsphäre-Einstellungen</a> dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden.";
App::$strings["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["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil";
App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil";
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil";
App::$strings["Action completed."] = "Aktion durchgeführt.";
App::$strings["Thank you."] = "Vielen Dank.";
App::$strings["Permission category name is required."] = "";
App::$strings["Permission category saved."] = "Berechtigungsrolle gespeichert.";
App::$strings["Permission Categories App"] = "";
App::$strings["Create custom connection permission limits"] = "";
App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Verwende dieses Formular, um Berechtigungsrollen für verschiedene Gruppen von Personen oder Verbindungen zu erstellen.";
App::$strings["Permission Categories"] = "Berechtigungsrollen";
App::$strings["Permission category name"] = "";
App::$strings["Item not available."] = "Element nicht verfügbar.";
App::$strings["Invalid item."] = "Ungültiges Element.";
App::$strings["Channel not found."] = "Kanal nicht gefunden.";
App::$strings["Posts and comments"] = "Beiträge und Kommentare";
App::$strings["Only posts"] = "Nur Beiträge";
App::$strings["vcard"] = "VCard";
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["Privacy Groups App"] = "";
App::$strings["Management of privacy groups"] = "";
App::$strings["Add Group"] = "";
App::$strings["Privacy group name"] = "";
App::$strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle";
App::$strings["Members"] = "Mitglieder";
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"] = "";
App::$strings["Privacy group name: "] = "Gruppenname:";
App::$strings["Delete Group"] = "";
App::$strings["Group members"] = "";
App::$strings["Not in this group"] = "";
App::$strings["Click a channel to toggle membership"] = "";
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["Sources App"] = "";
App::$strings["Automatically import channel content from other channels or feeds"] = "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds";
App::$strings["*"] = "*";
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["Optional"] = "Optional";
App::$strings["Resend posts with this channel as author"] = "";
App::$strings["Copyrights may apply"] = "";
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["Hub not found."] = "Server nicht gefunden.";
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["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["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt.";
App::$strings["Remove This Account"] = "Dieses Konto löschen";
App::$strings["WARNING: "] = "WARNUNG: ";
App::$strings["This account and all its channels will be completely removed from the network. "] = "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht.";
App::$strings["This action is permanent and can not be undone!"] = "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!";
App::$strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:";
App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen";
App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem \$Projectname-Hub aus dem Netzwerk entfernt";
App::$strings["Remove Account"] = "Konto entfernen";
App::$strings["Remote Diagnostics App"] = "";
App::$strings["Perform diagnostics on remote channels"] = "";
App::$strings["Name and Secret are required"] = "Name und Geheimnis werden benötigt";
App::$strings["Update"] = "Aktualisieren";
App::$strings["OAuth2 Apps Manager App"] = "";
App::$strings["OAuth2 authenticatication tokens for mobile and remote apps"] = "";
App::$strings["Add OAuth2 application"] = "OAuth2 Anwendung hinzufügen";
App::$strings["Name of application"] = "Name der Anwendung";
App::$strings["Consumer Secret"] = "Consumer Secret";
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["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["Add application"] = "Anwendung hinzufügen";
App::$strings["leave blank unless your application specifically requires this"] = "";
App::$strings["Connected OAuth2 Apps"] = "Verbundene OAuth2 Anwendungen";
App::$strings["Client key starts with"] = "Client Key beginnt mit";
App::$strings["No name"] = "Kein Name";
App::$strings["Remove authorization"] = "Authorisierung aufheben";
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["Description"] = "Beschreibung";
App::$strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein";
App::$strings["Item not found"] = "Element nicht gefunden";
App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden.";
App::$strings["Edit post"] = "Bearbeite Beitrag";
App::$strings["Continue"] = "Fortfahren";
App::$strings["Premium Channel App"] = "";
App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen";
App::$strings["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["Public access denied."] = "Öffentlichen Zugriff verweigert.";
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["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["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden.";
App::$strings["Affinity Tool settings updated."] = "";
App::$strings["This app presents a slider control in your connection editor and also on your network page. The slider represents your degree of friendship (affinity) with each connection. It allows you to zoom in or out and display conversations from only your closest friends or everybody in your stream."] = "";
App::$strings["Affinity Tool App"] = "";
App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = "";
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"] = "";
App::$strings["If disabled the max and min levels will be reset to default after page reload"] = "";
App::$strings["Affinity Tool Settings"] = "";
App::$strings["Please login."] = "Bitte melde dich an.";
App::$strings["Directory Settings"] = "";
App::$strings["%s - (Incompatible)"] = "%s - (Inkompatibel)";
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:"] = "Anzeige-Design:";
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 100 items"] = "Maximum: 100 Beiträge";
App::$strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen";
App::$strings["Provide channel menu in navigation bar"] = "Kanal-Menü in der Navigationsleiste zur Verfügung stellen";
App::$strings["Default: channel menu located in app menu"] = "Voreinstellung: Kanal-Menü ist im App-Menü integriert";
App::$strings["Manual conversation updates"] = "Manuelle Konversationsaktualisierung";
App::$strings["Default is on, turning this off may increase screen jumping"] = "Voreinstellung ist An, dies abzuschalten kann das unerwartete Springen der Seitenanzeige erhöhen.";
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["Calendar Settings"] = "";
App::$strings["Photos Settings"] = "";
App::$strings["Profiles Settings"] = "";
App::$strings["Events Settings"] = "";
App::$strings["Max height of content (in pixels)"] = "";
App::$strings["Click to expand content exceeding this height"] = "";
App::$strings["Stream Settings"] = "";
App::$strings["Editor Settings"] = "";
App::$strings["Settings saved."] = "";
App::$strings["Settings saved. Reload page please."] = "";
App::$strings["Conversation Settings"] = "";
App::$strings["Additional Features"] = "Zusätzliche Funktionen";
App::$strings["Connections Settings"] = "";
App::$strings["Settings updated."] = "Einstellungen aktualisiert.";
App::$strings["Nobody except yourself"] = "Niemand außer Dir selbst";
App::$strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst";
App::$strings["Approved connections"] = "Angenommene Verbindungen";
App::$strings["Any connections"] = "Beliebige Verbindungen";
App::$strings["Anybody on this website"] = "Jeder auf dieser Website";
App::$strings["Anybody in this network"] = "Alle \$Projectname-Mitglieder";
App::$strings["Anybody authenticated"] = "Jeder authentifizierte";
App::$strings["Anybody on the internet"] = "Jeder im Internet";
App::$strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen";
App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
App::$strings["or"] = "oder";
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["Automatic membership approval"] = "";
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["Channel Settings"] = "Kanal-Einstellungen";
App::$strings["Basic Settings"] = "Grundeinstellungen";
App::$strings["Email Address:"] = "Email Adresse:";
App::$strings["Your Timezone:"] = "Ihre Zeitzone:";
App::$strings["Default Post Location:"] = "Standardstandort:";
App::$strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll";
App::$strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
App::$strings["Adult Content"] = "Nicht jugendfreie Inhalte";
App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)";
App::$strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
App::$strings["Your permissions are already configured. Click to view/adjust"] = "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern";
App::$strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
App::$strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil";
App::$strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen";
App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Komplett offen – <em>extrem ungeschützt (mit großer Vorsicht verwenden!)</em>";
App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Typisch – <em>Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)</em>";
App::$strings["Private - <em>default private, never open or public</em>"] = "Privat – <em>Standard privat, nie offen oder öffentlich</em>";
App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "Blockiert – <em>Alle standardmäßig blockiert</em>";
App::$strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten";
App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren";
App::$strings["Channel Permission Limits"] = "Kanal-Berechtigungslimits";
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["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
App::$strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
App::$strings["Default Privacy Group"] = "Standard-Gruppe";
App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
App::$strings["Use my default audience setting for the type of object published"] = "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps";
App::$strings["Channel role and privacy"] = "Kanaltyp und Privatsphäre-Einstellungen";
App::$strings["Default permissions category"] = "";
App::$strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
App::$strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern";
App::$strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
App::$strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:";
App::$strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst";
App::$strings["joining a forum/community"] = "Du einem Forum beitrittst";
App::$strings["making an <em>interesting</em> profile change"] = "Du eine <em>interessante</em> Änderung an Deinem Profil vornimmst";
App::$strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:";
App::$strings["You receive a connection request"] = "Du eine Verbindungsanfrage erhältst";
App::$strings["Your connections are confirmed"] = "Eine Verbindung bestätigt wurde";
App::$strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt";
App::$strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
App::$strings["You receive a private message"] = "Du eine private Nachricht erhältst";
App::$strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
App::$strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest";
App::$strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest";
App::$strings["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"] = "";
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"] = "";
App::$strings["Unseen likes and dislikes"] = "Ungesehene Likes und Dislikes";
App::$strings["Unseen forum posts"] = "";
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["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus";
App::$strings["Must be greater than 0"] = "Muss größer als 0 sein";
App::$strings["Advanced Account/Page Type Settings"] = "Erweiterte Konten- und Seitenart-Einstellungen";
App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Kontos unter speziellen Umständen";
App::$strings["Miscellaneous Settings"] = "Sonstige Einstellungen";
App::$strings["Default photo upload folder"] = "Voreingestellter Ordner für hochgeladene Fotos";
App::$strings["%Y - current year, %m -  current month"] = "%Y - aktuelles Jahr, %m -  aktueller Monat";
App::$strings["Default file upload folder"] = "Voreingestellter Ordner für hochgeladene Dateien";
App::$strings["Remove Channel"] = "Kanal löschen";
App::$strings["Remove this channel."] = "Diesen Kanal 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["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["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen";
App::$strings["Channel Manager Settings"] = "";
App::$strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals";
App::$strings["Channel Home Settings"] = "";
App::$strings["Layout Name"] = "Layout-Name";
App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)";
App::$strings["Edit Layout"] = "Layout bearbeiten";
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["Notes App"] = "";
App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "";
App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen.";
App::$strings["Webpages App"] = "";
App::$strings["Provide managed web pages on your channel"] = "Ermöglicht das Erstellen von Webseiten in Deinem Kanal";
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["View"] = "Ansicht";
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["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl.";
App::$strings["Cover Photos"] = "Cover Foto";
App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen.";
App::$strings["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["Your cover photo may be visible to anybody on the internet"] = "";
App::$strings["Upload File:"] = "Datei hochladen:";
App::$strings["Select a profile:"] = "Wähle ein Profil:";
App::$strings["Change Cover Photo"] = "Titelbild ändern";
App::$strings["Remove"] = "Entfernen";
App::$strings["Use a photo from your albums"] = "Ein Foto aus meinen Alben verwenden";
App::$strings["Choose a different album"] = "Wählen Sie ein anderes Album aus";
App::$strings["Select existing photo"] = "Wähle ein vorhandenes Foto aus";
App::$strings["Crop Image"] = "Bild zuschneiden";
App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu.";
App::$strings["Done Editing"] = "Bearbeitung fertigstellen";
App::$strings["Edit Article"] = "Artikel bearbeiten";
App::$strings["Page link"] = "Seiten-Link";
App::$strings["Edit Webpage"] = "Webseite bearbeiten";
App::$strings["Not found"] = "Nicht gefunden";
App::$strings["Please refresh page"] = "Bitte die Seite neu laden";
App::$strings["Unknown error"] = "Unbekannter Fehler";
App::$strings["Permissions denied."] = "Berechtigung verweigert.";
App::$strings["Link to source"] = "";
App::$strings["Previous"] = "Voriges";
App::$strings["Next"] = "Nächste";
App::$strings["Today"] = "Heute";
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["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["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["Reset form"] = "";
App::$strings["You must enable javascript for your browser to be able to view this content."] = "";
App::$strings["Article"] = "Artikel";
App::$strings["Item has been removed."] = "Der Beitrag wurde entfernt.";
App::$strings["Suggest Channels App"] = "";
App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "";
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["&#x1f501; Repeated %1\$s's %2\$s"] = "";
App::$strings["Post repeated"] = "";
App::$strings["toggle full screen mode"] = "auf Vollbildmodus umschalten";
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";
App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht";
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["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["Name is required"] = "Name ist erforderlich";
App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
App::$strings["OAuth Apps Manager App"] = "";
App::$strings["OAuth authentication tokens for mobile and remote apps"] = "";
App::$strings["Consumer Key"] = "Consumer Key";
App::$strings["Icon url"] = "Symbol-URL";
App::$strings["Application not found."] = "Die Anwendung wurde nicht gefunden.";
App::$strings["Connected OAuth Apps"] = "";
App::$strings["Poke App"] = "";
App::$strings["Poke somebody in your addressbook"] = "";
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["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können.";
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["calendar"] = "Kalender";
App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden";
App::$strings["Articles App"] = "";
App::$strings["Create interactive articles"] = "Erstelle interaktive Artikel";
App::$strings["Add Article"] = "Artikel hinzufügen";
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["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet.";
App::$strings["Your real name is recommended."] = "";
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)."] = "";
App::$strings["Allowed characters are a-z 0-9, - and _"] = "";
App::$strings["Channel name"] = "";
App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen";
App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "";
App::$strings["Read more about channel permission roles"] = "";
App::$strings["Create a Channel"] = "";
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."] = "";
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["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["Block Name"] = "Block-Name";
App::$strings["Edit Block"] = "Block bearbeiten";
App::$strings["Profile not found."] = "Profil nicht gefunden.";
App::$strings["Profile deleted."] = "Profil gelöscht.";
App::$strings["Profile-"] = "Profil-";
App::$strings["New profile created."] = "Neues Profil erstellt.";
App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden.";
App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden.";
App::$strings["Profile Name is required."] = "Profil-Name erforderlich.";
App::$strings["Marital Status"] = "Familienstand";
App::$strings["Romantic Partner"] = "Romantische Partner";
App::$strings["Likes"] = "Gefällt";
App::$strings["Dislikes"] = "Gefällt nicht";
App::$strings["Work/Employment"] = "Arbeit/Anstellung";
App::$strings["Religion"] = "Religion";
App::$strings["Political Views"] = "Politische Ansichten";
App::$strings["Gender"] = "Geschlecht";
App::$strings["Sexual Preference"] = "Sexuelle Orientierung";
App::$strings["Homepage"] = "Webseite";
App::$strings["Interests"] = "Hobbys/Interessen";
App::$strings["Address"] = "Adresse";
App::$strings["Profile updated."] = "Profil aktualisiert.";
App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen";
App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details";
App::$strings["View this profile"] = "Dieses Profil ansehen";
App::$strings["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["Personal"] = "Persönlich";
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"] = "Dein voller Name";
App::$strings["Title/Description"] = "Titel/Beschreibung";
App::$strings["Street address"] = "Straße und Hausnummer";
App::$strings["Locality/City"] = "Wohnort";
App::$strings["Region/State"] = "Region/Bundesstaat";
App::$strings["Postal/Zip code"] = "Postleitzahl";
App::$strings["Country"] = "Land";
App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)";
App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
App::$strings["Since (date)"] = "Seit (Datum)";
App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir";
App::$strings["Homepage URL"] = "Homepage-URL";
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["Communications"] = "Kommunikation";
App::$strings["Phone"] = "Telefon";
App::$strings["Instant messenger"] = "Sofortnachrichtendienst";
App::$strings["Website"] = "Webseite";
App::$strings["Note"] = "Hinweis";
App::$strings["Add Contact"] = "Kontakt hinzufügen";
App::$strings["Add Field"] = "Feld hinzufügen";
App::$strings["Create New"] = "Neu anlegen";
App::$strings["network"] = "Netzwerk";
App::$strings["Chatrooms App"] = "";
App::$strings["Access Controlled Chatrooms"] = "Zugriffskontrollierte Chaträume";
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["Expiration"] = "Verfall";
App::$strings["min"] = "min";
App::$strings["Location not found."] = "Klon nicht gefunden.";
App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen";
App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst.";
App::$strings["Syncing locations"] = "Synchronisiere Klone";
App::$strings["No locations found."] = "Keine Klon-Adressen gefunden.";
App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten";
App::$strings["Primary"] = "Primär";
App::$strings["Drop"] = "Löschen";
App::$strings["Sync Now"] = "Jetzt synchronisieren";
App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!";
App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst.";
App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt.";
App::$strings["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["Administration"] = "Administration";
App::$strings["Summary"] = "Zusammenfassung";
App::$strings["Registered accounts"] = "Registrierte Konten";
App::$strings["Pending registrations"] = "Ausstehende Registrierungen";
App::$strings["Registered channels"] = "Registrierte Kanäle";
App::$strings["Active addons"] = "";
App::$strings["Version"] = "Version";
App::$strings["Repository version (master)"] = "Repository-Version (master)";
App::$strings["Repository version (dev)"] = "Repository-Version (dev)";
App::$strings["Language App"] = "";
App::$strings["Change UI language"] = "";
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["%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["Website:"] = "Webseite:";
App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)";
App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)";
App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)";
App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s";
App::$strings["Search results for: %s"] = "Suchergebnisse für: %s";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["Welcome to %s"] = "Willkommen auf %s";
App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt";
App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt";
App::$strings["requires approval"] = "Zustimmung erforderlich";
App::$strings["g A l F d"] = "l, d. F, G:i \U\h\r";
App::$strings["[today]"] = "[Heute]";
App::$strings["posted an event"] = "hat einen Termin veröffentlicht";
App::$strings["shared a file with you"] = "hat eine Datei mit Dir geteilt";
App::$strings["Private forum"] = "";
App::$strings["Public forum"] = "";
App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert.";
App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden.";
App::$strings["INVALID EVENT DISMISSED!"] = "UNGÜLTIGEN TERMIN ABGELEHNT!";
App::$strings["Summary: "] = "Zusammenfassung:";
App::$strings["Date: "] = "Datum:";
App::$strings["Reason: "] = "Grund:";
App::$strings["INVALID CARD DISMISSED!"] = "UNGÜLTIGE KARTE ABGELEHNT!";
App::$strings["Name: "] = "Name: ";
App::$strings["CardDAV App"] = "";
App::$strings["CalDAV capable addressbook"] = "";
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["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["Organisation"] = "Organisation";
App::$strings["Title"] = "Titel";
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["Default Calendar"] = "Standardkalender";
App::$strings["Default Addressbook"] = "Standardadressbuch";
App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal.";
App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen.";
App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein.";
App::$strings["Registration successful. Continue to create your first channel..."] = "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst...";
App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
App::$strings["Registration on this hub is disabled."] = "Die Registrierung auf diesem Hub ist nicht möglich.";
App::$strings["Registration on this hub is by approval only."] = "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator.";
App::$strings["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">Registriere Dich auf einem der anderen verbundenen Hubs.</a>";
App::$strings["Registration on this hub is by invitation only."] = "";
App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal.";
App::$strings["Terms of Service"] = "Nutzungsbedingungen";
App::$strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite";
App::$strings["I am over %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"] = "Ihre E-Mail Adresse";
App::$strings["Choose a password"] = "Passwort";
App::$strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein";
App::$strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein";
App::$strings["Your Name"] = "";
App::$strings["Real names are preferred."] = "";
App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s";
App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "";
App::$strings["no"] = "nein";
App::$strings["yes"] = "ja";
App::$strings["Registration"] = "Registrierung";
App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Diese Website erfordert eine Email-Bestätigung. Bitte prüfe Deine Emails nach Ausfüllen und Absenden des Formulars, um weitere Hinweise zu bekommen.";
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["Block Title"] = "Titel des Blocks";
App::$strings["Comment approved"] = "Kommentar bestätigt";
App::$strings["Comment deleted"] = "Kommentar gelöscht";
App::$strings["New"] = "Neu";
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["Unable to locate original post."] = "Originalbeitrag nicht gefunden.";
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["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden.";
App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen.";
App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen.";
App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen.";
App::$strings["Messages"] = "Nachrichten";
App::$strings["message"] = "Nachricht";
App::$strings["Message recalled."] = "Nachricht widerrufen.";
App::$strings["Conversation removed."] = "Unterhaltung gelöscht.";
App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM";
App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk.";
App::$strings["Send Private Message"] = "Private Nachricht senden";
App::$strings["To:"] = "An:";
App::$strings["Subject:"] = "Betreff:";
App::$strings["Your message:"] = "Deine Nachricht:";
App::$strings["Attach file"] = "Datei anhängen";
App::$strings["Send"] = "Absenden";
App::$strings["Delete message"] = "Nachricht löschen";
App::$strings["Delivery report"] = "Zustellungsbericht";
App::$strings["Recall message"] = "Nachricht widerrufen";
App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen.";
App::$strings["Delete Conversation"] = "Unterhaltung löschen";
App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
App::$strings["Send Reply"] = "Antwort senden";
App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):";
App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt";
App::$strings["Bookmarks App"] = "";
App::$strings["Bookmark links from posts and manage them"] = "";
App::$strings["My Bookmarks"] = "Meine Lesezeichen";
App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte";
App::$strings["Edit event title"] = "Termintitel bearbeiten";
App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)";
App::$strings["Edit Category"] = "Kategorie bearbeiten";
App::$strings["Category"] = "Kategorie";
App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten";
App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant";
App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten";
App::$strings["Finish date and time"] = "Enddatum und -zeit";
App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen";
App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien.";
App::$strings["Edit Description"] = "Beschreibung bearbeiten";
App::$strings["Edit Location"] = "Ort bearbeiten";
App::$strings["Advanced Options"] = "Weitere Optionen";
App::$strings["l, F j"] = "l, j. F";
App::$strings["Edit Event"] = "Termin bearbeiten";
App::$strings["Create Event"] = "Termin anlegen";
App::$strings["Event removed"] = "Termin gelöscht";
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["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"] = "Seiteneinstellungen";
App::$strings["PHP version 7.1 or greater is required."] = "";
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."] = "";
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."] = "";
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."] = "";
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["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten.";
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["No such group"] = "Gruppe nicht gefunden";
App::$strings["No such channel"] = "Kanal nicht gefunden";
App::$strings["Search Results For:"] = "Suchergebnisse für:";
App::$strings["Privacy group is empty"] = "Gruppe ist leer";
App::$strings["Privacy group: "] = "Gruppe:";
App::$strings["Invalid channel."] = "Ungültiger Kanal.";
App::$strings["Public Stream App"] = "";
App::$strings["The unmoderated public stream of this hub"] = "";
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["mail recalled"] = "Mail widerrufen";
App::$strings["duplicate mail received"] = "Doppelte Mail erhalten";
App::$strings["mail delivered"] = "Mail zugestellt";
App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s";
App::$strings["Redeliver"] = "Erneut zustellen";
App::$strings["Installed Apps"] = "";
App::$strings["Manage Apps"] = "";
App::$strings["Create Custom App"] = "";
App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen.";
App::$strings["Default Permissions App"] = "";
App::$strings["Set custom default permissions for new connections"] = "";
App::$strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:";
App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden";
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["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["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["No ratings"] = "Keine Bewertungen";
App::$strings["Rating: "] = "Bewertung: ";
App::$strings["Website: "] = "Webseite: ";
App::$strings["Description: "] = "Beschreibung: ";
App::$strings["Cards App"] = "";
App::$strings["Create personal planning cards"] = "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken";
App::$strings["Add Card"] = "Karte hinzufügen";
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["Away"] = "Abwesend";
App::$strings["Online"] = "Online";
App::$strings["Random Channel App"] = "";
App::$strings["Visit a random channel in the \$Projectname network"] = "";
App::$strings["Active"] = "Aktiv";
App::$strings["Blocked"] = "Blockiert";
App::$strings["Ignored"] = "Ignoriert";
App::$strings["Hidden"] = "Versteckt";
App::$strings["Archived/Unreachable"] = "Archiviert/Unerreichbar";
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["Approve connection"] = "Verbindung genehmigen";
App::$strings["Ignore connection"] = "Verbindung ignorieren";
App::$strings["Ignore"] = "Ignorieren";
App::$strings["Recent activity"] = "Kürzliche Aktivitäten";
App::$strings["Search your connections"] = "Verbindungen durchsuchen";
App::$strings["Connections search"] = "Verbindung suchen";
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["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist";
App::$strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
App::$strings["Verification of update %s failed. Check 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."] = "";
App::$strings["Update %s does not contain a verification function."] = "";
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."] = "";
App::$strings["Update %s did not return a status. It cannot be determined if it was successful."] = "";
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"] = "";
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["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["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"] = "";
App::$strings["The cloud root directory lists all channel names which provide public files"] = "";
App::$strings["Show total disk space available to cloud uploads"] = "";
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["Queue Statistics"] = "Warteschlangenstatistiken";
App::$strings["Total Entries"] = "Einträge insgesamt";
App::$strings["Priority"] = "Priorität";
App::$strings["Destination URL"] = "Ziel-URL";
App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markieren";
App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren";
App::$strings["Last known contact"] = "Letzter Kontakt";
App::$strings["%s 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["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["Site settings updated."] = "Site-Einstellungen aktualisiert.";
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"] = "";
App::$strings["This role will be used for the first channel created after registration."] = "";
App::$strings["File upload"] = "Dateiupload";
App::$strings["Policies"] = "Richtlinien";
App::$strings["Site name"] = "Seitenname";
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["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?";
App::$strings["Invitation only"] = "Nur mit Einladung";
App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden.";
App::$strings["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."] = "";
App::$strings["Register text"] = "Registrierungstext";
App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt.";
App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)";
App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "";
App::$strings["Preserve site homepage URL"] = "Homepage-URL schützen";
App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten.";
App::$strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt";
App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit.";
App::$strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
App::$strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen";
App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen).";
App::$strings["Force publish"] = "Veröffentlichung erzwingen";
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen.";
App::$strings["Import Public Streams"] = "Öffentliche Beiträge importieren";
App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert.";
App::$strings["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"] = "";
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"] = "";
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["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["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["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"] = "";
App::$strings["Optional: site location"] = "Optional: Standort der Website";
App::$strings["Region or country"] = "Region oder Land";
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["Registrations waiting for confirm"] = "Registrierungen warten auf Bestätigung";
App::$strings["Request date"] = "Antragsdatum";
App::$strings["No registrations."] = "Keine Registrierungen.";
App::$strings["Deny"] = "Verweigern";
App::$strings["Block"] = "Blockieren";
App::$strings["Unblock"] = "Freigeben";
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"] = "Service-Klasse";
App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\n\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\n\nBist du dir sicher?";
App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\n\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\n\nBist Du sicher?";
App::$strings["Lock feature %s"] = "Blockiere die Funktion %s";
App::$strings["Manage Additional Features"] = "Zusätzliche Funktionen verwalten";
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["Service class"] = "Dienstklasse";
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["Toggle"] = "Umschalten";
App::$strings["Author: "] = "Autor: ";
App::$strings["Maintainer: "] = "Betreuer:";
App::$strings["[Experimental]"] = "[Experimentell]";
App::$strings["[Unsupported]"] = "[Nicht unterstützt]";
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."] = "";
App::$strings["Addon repo git URL"] = "";
App::$strings["Custom repo name"] = "Benutzerdefinierter Repository-Name";
App::$strings["(optional)"] = "(optional)";
App::$strings["Download Addon Repo"] = "";
App::$strings["Install new repo"] = "Neues Repository installieren";
App::$strings["Install"] = "Installieren";
App::$strings["Manage Repos"] = "Repositorien verwalten";
App::$strings["Installed Addon Repositories"] = "";
App::$strings["Install a New Addon Repository"] = "";
App::$strings["Switch branch"] = "Zweig/Branch wechseln";
App::$strings["Mood App"] = "";
App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden";
App::$strings["Mood"] = "Laune";
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["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["Insufficient permissions.  Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet.";
App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden.";
App::$strings["Post successful."] = "Veröffentlichung erfolgreich.";
App::$strings["Nothing to import."] = "Nichts zu importieren.";
App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden";
App::$strings["Imported file is empty."] = "Die importierte Datei ist leer.";
App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen.";
App::$strings["Import completed"] = "Import abgeschlossen";
App::$strings["Import Items"] = "Beiträge importieren";
App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren.";
App::$strings["File to Upload"] = "Hochzuladende Datei:";
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["Bookmarks allowed"] = "Lesezeichen erlaubt";
App::$strings["Delete this menu"] = "Lösche dieses Menü";
App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte";
App::$strings["Edit this menu"] = "Dieses Menü bearbeiten";
App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden.";
App::$strings["Menu not found."] = "Menü nicht gefunden";
App::$strings["Edit Menu"] = "Menü bearbeiten";
App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen";
App::$strings["Menu name"] = "Menü Name";
App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar";
App::$strings["Menu title"] = "Menü Titel";
App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird";
App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen";
App::$strings["Not found."] = "Nicht gefunden.";
App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden.";
App::$strings["Remove This Channel"] = "Diesen Kanal löschen";
App::$strings["This channel will be completely removed from the network. "] = "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht.";
App::$strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk";
App::$strings["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["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "";
App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "";
App::$strings["Use Photo for Profile"] = "Foto für Profil verwenden";
App::$strings["Change Profile Photo"] = "Profilfoto ändern";
App::$strings["Use"] = "Verwenden";
App::$strings["Profile Unavailable."] = "Profil nicht verfügbar.";
App::$strings["Wiki App"] = "";
App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Kanal zur Verfügung";
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["Download"] = "Herunterladen";
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["Error retrieving page content"] = "Fehler beim Abrufen des Seiteninhalts";
App::$strings["New page"] = "Neue Seite";
App::$strings["Revision Comparison"] = "Revisionsvergleich";
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["History"] = "";
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["%s element installed"] = "Element für %s installiert";
App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen";
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["Allow"] = "Erlauben";
App::$strings["Connection added."] = "Verbindung hinzugefügt";
App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden.";
App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren.";
App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen.";
App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements";
App::$strings["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["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:"] = "";
App::$strings["Version %s"] = "Version %s";
App::$strings["Project homepage"] = "Projekt-Website";
App::$strings["Developer homepage"] = "Entwickler-Website";
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 messages"] = "%d neue Nachrichten";
App::$strings["%d new introductions"] = "%d neue Vorstellungen";
App::$strings["Delegated Channel"] = "Delegierte Kanäle";
App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten.";
App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse.";
App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!";
App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers.";
App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden.";
App::$strings["%d message sent."] = array(
	0 => "%d Nachricht gesendet.",
	1 => "%d Nachrichten gesendet.",
);
App::$strings["Invite App"] = "";
App::$strings["Send email invitations to join this network"] = "";
App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen";
App::$strings["Send invitations"] = "Einladungen senden";
App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:";
App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!";
App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:";
App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)";
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein.";
App::$strings["or visit"] = "oder besuche";
App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]";
App::$strings["item"] = "Beitrag";
App::$strings["Channel Export App"] = "";
App::$strings["Export your channel"] = "";
App::$strings["Export Channel"] = "Kanal exportieren";
App::$strings["Export your basic channel information to a file.  This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält.";
App::$strings["Export Content"] = "Kanal und Inhalte exportieren";
App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large.  Please be patient - it may take several minutes for this download to begin."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet.";
App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres.";
App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne.";
App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke <a href=\"%1\$s\">%2\$s</a>.";
App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke <a href=\"%1\$s\">%2\$s</a>.";
App::$strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du <a href=\"%1\$s\">%2\$s</a> auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst.";
App::$strings["Welcome to Hubzilla!"] = "Willkommen bei Hubzilla!";
App::$strings["You have got no unseen posts..."] = "Du hast keine ungelesenen Beiträge...";
App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden.";
App::$strings["Connection updated."] = "Verbindung aktualisiert.";
App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren.";
App::$strings["is now connected to"] = "ist jetzt verbunden mit";
App::$strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen.";
App::$strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar.";
App::$strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen.";
App::$strings["Connection has been removed."] = "Verbindung wurde gelöscht.";
App::$strings["View %s's profile"] = "%ss Profil ansehen";
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["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare";
App::$strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen";
App::$strings["This connection is blocked!"] = "Die Verbindung ist geblockt!";
App::$strings["Unignore"] = "Nicht ignorieren";
App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen";
App::$strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!";
App::$strings["Unarchive"] = "Aus Archiv zurückholen";
App::$strings["Archive"] = "Archivieren";
App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)";
App::$strings["This connection is archived!"] = "Die Verbindung ist archiviert!";
App::$strings["Unhide"] = "Wieder sichtbar machen";
App::$strings["Hide"] = "Verstecken";
App::$strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen";
App::$strings["This connection is hidden!"] = "Die Verbindung ist versteckt!";
App::$strings["Delete this connection"] = "Verbindung löschen";
App::$strings["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 Individual Permissions section by default"] = "Öffne standardmäßig den Bereich für individuelle Berechtigungen";
App::$strings["Affinity"] = "Beziehung";
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["Approve this connection"] = "Verbindung genehmigen";
App::$strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen";
App::$strings["Set Affinity"] = "Beziehung festlegen";
App::$strings["Set Profile"] = "Profil festlegen";
App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen";
App::$strings["This connection is unreachable from this location."] = "Diese Verbindung ist von diesem Ort unerreichbar.";
App::$strings["This connection may be unreachable from other channel locations."] = "Diese Verbindung könnte von anderen Standpunkten des Kanals nicht erreichbar sein.";
App::$strings["Location independence is not supported by their network."] = "Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt.";
App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Diese Verbindung ist von diesem Standort aus unerreichbar. Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt.";
App::$strings["Connection requests will be approved without your interaction"] = "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist.";
App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist";
App::$strings["Available locations:"] = "Verfügbare Klone:";
App::$strings["Connection Tools"] = "Verbindungswerkzeuge";
App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen";
App::$strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen";
App::$strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen";
App::$strings["Custom Filter"] = "Benutzerdefinierter Filter";
App::$strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren";
App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren";
App::$strings["This information is public!"] = "Diese Information ist öffentlich!";
App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung";
App::$strings["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 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["File not found."] = "Datei nicht gefunden.";
App::$strings["Permission Denied."] = "Zugriff verweigert.";
App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten";
App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern";
App::$strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden";
App::$strings["Return to file list"] = "Zurück zur Dateiliste";
App::$strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen";
App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken";
App::$strings["Share this file"] = "Diese Datei freigeben";
App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen";
App::$strings["Show in your contacts shared folder"] = "Im geteilten Ordner Deiner Kontakte anzeigen";
App::$strings["Layout updated."] = "Layout aktualisiert.";
App::$strings["PDL Editor App"] = "";
App::$strings["Provides the ability to edit system page layouts"] = "";
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["Edit Card"] = "Karte bearbeiten";
App::$strings["Documentation Search"] = "Suche in der Dokumentation";
App::$strings["Administrators"] = "Administratoren";
App::$strings["Developers"] = "Entwickler";
App::$strings["Tutorials"] = "Tutorials";
App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation";
App::$strings["Contents"] = "Inhalt";
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["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["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"] = "Kanalname/-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["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["Import completed."] = "Import abgeschlossen.";
App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen.";
App::$strings["Import Channel"] = "Kanal importieren";
App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk  oder aus einer exportierten Sicherheitskopie importieren.";
App::$strings["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 a few months of posts if possible (limited by available memory"] = "Importiere die Beiträge einiger Monate, sofern möglich (beschränkt durch 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 -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"] = "";
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."] = "";
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["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar.";
App::$strings["Visible to:"] = "Sichtbar für:";
App::$strings["Likes %1\$s's %2\$s"] = "";
App::$strings["Doesn't like %1\$s's %2\$s"] = "";
App::$strings["Will attend %1\$s's %2\$s"] = "";
App::$strings["Will not attend %1\$s's %2\$s"] = "";
App::$strings["May attend %1\$s's %2\$s"] = "";
App::$strings["Wiki updated successfully"] = "Wiki erfolgreich aktualisiert";
App::$strings["Wiki files deleted successfully"] = "Wiki-Dateien erfolgreich gelöscht";
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["__ctx:permcat__ default"] = "Standard";
App::$strings["__ctx:permcat__ follower"] = "Abonnent";
App::$strings["__ctx:permcat__ contributor"] = "Beitragender";
App::$strings["__ctx:permcat__ publisher"] = "Autor";
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["Apps"] = "Apps";
App::$strings["Affinity Tool"] = "Beziehungs-Tool";
App::$strings["Site Admin"] = "Hub-Administration";
App::$strings["Report Bug"] = "Fehler melden";
App::$strings["Content Filter"] = "";
App::$strings["Content Import"] = "";
App::$strings["Remote Diagnostics"] = "Ferndiagnose";
App::$strings["Suggest Channels"] = "Kanäle vorschlagen";
App::$strings["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["Language"] = "Sprache";
App::$strings["Post"] = "Beitrag schreiben";
App::$strings["Profile Photo"] = "Profilfoto";
App::$strings["Notifications"] = "";
App::$strings["Order Apps"] = "";
App::$strings["CardDAV"] = "";
App::$strings["Guest Access"] = "";
App::$strings["OAuth Apps Manager"] = "";
App::$strings["OAuth2 Apps Manager"] = "";
App::$strings["PDL Editor"] = "";
App::$strings["Premium Channel"] = "Premium-Kanal";
App::$strings["My Chatrooms"] = "Meine Chaträume";
App::$strings["Channel Export"] = "";
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["Source code of failed update: "] = "";
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["\$Projectname Notification"] = "\$Projectname-Benachrichtigung";
App::$strings["\$projectname"] = "\$projectname";
App::$strings["Thank You,"] = "Danke.";
App::$strings["%s Administrator"] = "der Administrator von %s";
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 mail received at %s"] = "[\$Projectname:Benachrichtigung] Neue Mail empfangen auf %s";
App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$shat dir auf %2\$s eine private Nachricht geschickt.";
App::$strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt.";
App::$strings["a private message"] = "eine private Nachricht";
App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten.";
App::$strings["commented on"] = "kommentierte";
App::$strings["liked"] = "gefiel";
App::$strings["disliked"] = "missfiel";
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\$shat einen Beitrag/eine Konversation kommentiert dem/der du folgst.";
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren.";
App::$strings["Please visit %s to approve or reject this comment."] = "Bitte besuche %s, um diesen Kommentar anzunehmen oder abzulehnen.";
App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s mag [zrl=%2\$s]dein %3\$s[/zrl]";
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\$sgefällt ein Beitrag/eine Unterhaltung von dir.";
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 post"] = "Neuer Beitrag wurde erzeugt";
App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert";
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["(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["Untitled"] = "Ohne Titel";
App::$strings["Wiki resource_id required for git commit"] = "Die resource_id des Wiki wird benötigt für den git commit.";
App::$strings["Privacy conflict. Discretion advised."] = "";
App::$strings["Admin Delete"] = "";
App::$strings["I will attend"] = "Ich werde teilnehmen";
App::$strings["I will not attend"] = "Ich werde nicht teilnehmen";
App::$strings["I might attend"] = "Ich werde vielleicht teilnehmen";
App::$strings["I agree"] = "Ich stimme zu";
App::$strings["I disagree"] = "Ich lehne ab";
App::$strings["I abstain"] = "Ich enthalte mich";
App::$strings["Add Tag"] = "Tag hinzufügen";
App::$strings["Reply on this comment"] = "";
App::$strings["reply"] = "";
App::$strings["Reply to"] = "";
App::$strings["Share This"] = "Teilen";
App::$strings["share"] = "Teilen";
App::$strings["Delivery Report"] = "Zustellungsbericht";
App::$strings["%d comment"] = array(
	0 => "%d Kommentar",
	1 => "%d Kommentare",
);
App::$strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s";
App::$strings["to"] = "an";
App::$strings["via"] = "via";
App::$strings["Wall-to-Wall"] = "Wall-to-Wall";
App::$strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
App::$strings["Attend"] = "Zusagen";
App::$strings["Attendance Options"] = "Zusageoptionen";
App::$strings["Vote"] = "Abstimmen";
App::$strings["Voting Options"] = "Abstimmungsoptionen";
App::$strings["Go to previous comment"] = "";
App::$strings["Save Bookmarks"] = "Favoriten speichern";
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["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["parent"] = "Übergeordnetes Verzeichnis";
App::$strings["Principal"] = "Prinzipal";
App::$strings["Addressbook"] = "Adressbuch";
App::$strings["Schedule Inbox"] = "Posteingang für überwachte Kalender";
App::$strings["Schedule Outbox"] = "Postausgang für überwachte Kalender";
App::$strings["Total"] = "Summe";
App::$strings["Shared"] = "Geteilt";
App::$strings["Add Files"] = "Dateien hinzufügen";
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["Create an account to access services and applications"] = "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können.";
App::$strings["Login/Email"] = "Anmelden/E-Mail";
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.";
App::$strings["QR code"] = "QR-Code";
App::$strings["QR Generator"] = "QR-Generator";
App::$strings["Enter some text"] = "Etwas Text eingeben";
App::$strings["Max queueworker threads"] = "";
App::$strings["Assume workers dead after ___ seconds"] = "";
App::$strings["Queueworker Settings"] = "";
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["Post to Livejournal"] = "";
App::$strings["Livejournal Crosspost Connector App"] = "";
App::$strings["Relay public posts to Livejournal"] = "";
App::$strings["Livejournal username"] = "";
App::$strings["Livejournal password"] = "";
App::$strings["Post to Livejournal by default"] = "";
App::$strings["Livejournal Crosspost Connector"] = "";
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["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["file"] = "Datei";
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["Photos imported"] = "Fotos importiert";
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["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["Add some colour to tag clouds"] = "";
App::$strings["Rainbow Tag App"] = "";
App::$strings["Installed"] = "";
App::$strings["Rainbow Tag"] = "";
App::$strings["Photo Cache settings saved."] = "";
App::$strings["Photo Cache addon saves a copy of images from external sites locally to increase your anonymity in the web."] = "";
App::$strings["Photo Cache App"] = "";
App::$strings["Minimal photo size for caching"] = "";
App::$strings["In pixels. From 1 up to 1024, 0 will be replaced with system default."] = "";
App::$strings["Photo Cache"] = "";
App::$strings["Who likes me?"] = "Wer mag mich?";
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["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."] = "";
App::$strings["Activitypub Protocol App"] = "";
App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "";
App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "";
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"] = "";
App::$strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen ablaufen.";
App::$strings["Your $Productname test account is about to expire."] = "";
App::$strings["Libertree Crosspost Connector Settings saved."] = "";
App::$strings["Libertree Crosspost Connector App"] = "";
App::$strings["Relay public posts to Libertree"] = "";
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"] = "";
App::$strings["Post to Libertree"] = "Bei Libertree veröffentlichen";
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["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["Profile photo updated successfully."] = "Profilfoto erfolgreich aktualisiert.";
App::$strings["Your channel has been upgraded to \$Projectname version"] = "";
App::$strings["Please have a look at the"] = "";
App::$strings["git history"] = "";
App::$strings["change log"] = "";
App::$strings["for further info."] = "";
App::$strings["Upgrade Info"] = "";
App::$strings["Do not show this again"] = "";
App::$strings["Post to Friendica"] = "Bei Friendica veröffentlichen";
App::$strings["Friendica Crosspost Connector Settings saved."] = "";
App::$strings["Friendica Crosspost Connector App"] = "";
App::$strings["Relay public postings to a connected Friendica account"] = "";
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["https://{sitename}/api"] = "https://{sitename}/api";
App::$strings["Friendica login name"] = "Friendica-Anmeldename";
App::$strings["Friendica password"] = "Friendica-Passwort";
App::$strings["Friendica Crosspost Connector"] = "";
App::$strings["Skeleton App"] = "";
App::$strings["A skeleton for addons, you can copy/paste"] = "";
App::$strings["Some setting"] = "Einige Einstellungen";
App::$strings["A setting"] = "Eine Einstellung";
App::$strings["Skeleton Settings"] = "Skeleton Einstellungen";
App::$strings["Invalid game."] = "Ungültiges Spiel.";
App::$strings["You are not a player in this game."] = "Sie sind kein Spieler in diesem Spiel.";
App::$strings["You must be a local channel to create a game."] = "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein";
App::$strings["You must select one opponent that is not yourself."] = "Du musst einen Gegner wählen, der nicht du selbst ist";
App::$strings["Random color chosen."] = "Zufällige Farbe gewählt.";
App::$strings["Error creating new game."] = "Fehler beim Erstellen eines neuen Spiels.";
App::$strings["Chess not installed."] = "";
App::$strings["You must select a local channel /chess/channelname"] = "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen";
App::$strings["Enable notifications"] = "Benachrichtigungen aktivieren";
App::$strings["Pump.io Settings saved."] = "";
App::$strings["Pump.io Crosspost Connector App"] = "";
App::$strings["Relay public posts to pump.io"] = "";
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"] = "";
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["Superblock App"] = "";
App::$strings["Block channels"] = "";
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["Block Completely"] = "Vollständig blockieren";
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["Twitter settings updated."] = "Twitter-Einstellungen aktualisiert.";
App::$strings["Twitter Crosspost Connector App"] = "";
App::$strings["Relay public posts to Twitter"] = "";
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["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 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["Clear OAuth configuration"] = "OAuth Konfiguration löschen";
App::$strings["Twitter Crosspost Connector"] = "";
App::$strings["Post to Twitter"] = "Bei Twitter veröffentlichen";
App::$strings["Submit Settings"] = "Einstellungen absenden";
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["Allow magic authentication only to websites of your immediate connections"] = "";
App::$strings["Authchoose App"] = "";
App::$strings["Authchoose"] = "";
App::$strings["Access Denied"] = "";
App::$strings["Enable Community Moderation"] = "";
App::$strings["Reputation automatically given to new members"] = "";
App::$strings["Reputation will never fall below this value"] = "";
App::$strings["Minimum reputation before posting is allowed"] = "";
App::$strings["Minimum reputation before commenting is allowed"] = "";
App::$strings["Minimum reputation before a member is able to moderate other posts"] = "";
App::$strings["Max ratio of moderator's reputation that can be added to/deducted from reputation of person being moderated"] = "";
App::$strings["Reputation \"cost\" to post"] = "";
App::$strings["Reputation \"cost\" to comment"] = "";
App::$strings["Reputation automatically recovers at this rate per hour until it reaches minimum_to_post"] = "";
App::$strings["When minimum_to_moderate > reputation > minimum_to_post reputation recovers at this rate per hour"] = "";
App::$strings["Community Moderation Settings"] = "";
App::$strings["Channel Reputation"] = "";
App::$strings["An Error has occurred."] = "";
App::$strings["Upvote"] = "";
App::$strings["Downvote"] = "";
App::$strings["Can moderate reputation on my channel."] = "";
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["Send test email"] = "Test-E-Mail senden";
App::$strings["No recipients found."] = "Keine Empfänger gefunden.";
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["Message subject"] = "Betreff der Nachricht";
App::$strings["DB Cleanup Failure"] = "";
App::$strings["[cart] Item Added"] = "";
App::$strings["Order already checked out."] = "";
App::$strings["Drop database tables when uninstalling."] = "";
App::$strings["Cart Settings"] = "";
App::$strings["Shop"] = "";
App::$strings["Order Not Found"] = "Bestellung nicht gefunden";
App::$strings["Cart utilities for orders and payments"] = "";
App::$strings["You must be logged into the Grid to shop."] = "";
App::$strings["Order not found."] = "Bestellung nicht gefunden.";
App::$strings["Access denied."] = "";
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["Invalid Payment Type.  Please start again."] = "Unbekannte Zahlungsmethode. Bitte versuche es noch einmal.";
App::$strings["Order not found"] = "Bestellung nicht gefunden";
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["Finished"] = "Fertig";
App::$strings["Enable Test Catalog"] = "Aktiviere den Test-Warenbestand";
App::$strings["Enable Manual Payments"] = "Aktiviere manuelle Zahlungen";
App::$strings["Base Merchant Currency"] = "";
App::$strings["Enable Hubzilla Services Module"] = "";
App::$strings["New Sku"] = "";
App::$strings["Cannot save edits to locked item."] = "";
App::$strings["SKU not found."] = "";
App::$strings["Invalid Activation Directive."] = "";
App::$strings["Invalid Deactivation Directive."] = "";
App::$strings["Add to this privacy group"] = "";
App::$strings["Set user service class"] = "";
App::$strings["You must be using a local account to purchase this service."] = "";
App::$strings["Changes Locked"] = "";
App::$strings["Item available for purchase."] = "";
App::$strings["Price"] = "";
App::$strings["Add buyer to privacy group"] = "";
App::$strings["Add buyer as connection"] = "";
App::$strings["Set Service Class"] = "";
App::$strings["Enable Subscription Management Module"] = "";
App::$strings["Cannot include subscription items with different terms in the same order."] = "";
App::$strings["Select Subscription to Edit"] = "";
App::$strings["Edit Subscriptions"] = "";
App::$strings["Subscription SKU"] = "";
App::$strings["Catalog Description"] = "";
App::$strings["Subscription available for purchase."] = "";
App::$strings["Maximum active subscriptions to this item per account."] = "";
App::$strings["Subscription price."] = "";
App::$strings["Quantity"] = "";
App::$strings["Term"] = "";
App::$strings["Enable Paypal Button Module"] = "";
App::$strings["Use Production Key"] = "";
App::$strings["Paypal Sandbox Client Key"] = "";
App::$strings["Paypal Sandbox Secret Key"] = "";
App::$strings["Paypal Production Client Key"] = "";
App::$strings["Paypal Production Secret Key"] = "";
App::$strings["Paypal button payments are not enabled."] = "";
App::$strings["Paypal button payments are not properly configured.  Please choose another payment option."] = "";
App::$strings["Enable Manual Cart Module"] = "";
App::$strings["Access Denied."] = "";
App::$strings["Invalid Item"] = "";
App::$strings["Random Planet App"] = "";
App::$strings["Set a random planet from the Star Wars Empire as your location when posting"] = "";
App::$strings["Channels to auto connect"] = "Kanäle zur automatischen Verbindung";
App::$strings["Comma separated list"] = "Kommagetrennte Liste";
App::$strings["Popular Channels"] = "Beliebte Kanäle";
App::$strings["IRC Settings"] = "IRC-Einstellungen";
App::$strings["IRC settings saved."] = "IRC-Einstellungen gespeichert.";
App::$strings["IRC Chatroom"] = "IRC-Chatraum";
App::$strings["Startpage App"] = "";
App::$strings["Set a preferred page to load on login from home page"] = "";
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"] = "";
App::$strings["Errors encountered deleting database table "] = "Beim Löschen der Datenbanktabelle sind Fehler aufgetreten.";
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["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["Post to WordPress"] = "Auf WordPress posten";
App::$strings["Wordpress Settings saved."] = "Wordpress-Einstellungen gespeichert.";
App::$strings["Wordpress Post App"] = "";
App::$strings["Post to WordPress or anything else which uses the wordpress XMLRPC API"] = "";
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["Wordpress Post"] = "";
App::$strings["WYSIWYG status editor"] = "";
App::$strings["WYSIWYG Status App"] = "";
App::$strings["WYSIWYG Status"] = "";
App::$strings["Friendica Photo Album Import"] = "Friendica-Fotoalbumimport";
App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Hiermit werden all deine Fotoalben von Friendica in diesen Hubzilla Kanal importiert.";
App::$strings["Friendica Server base URL"] = "BasisURL des Friendica Servers";
App::$strings["Friendica Login Username"] = "Friendica-Anmeldebenutzername";
App::$strings["Friendica Login Password"] = "Friendica-Anmeldepasswort";
App::$strings["New registration"] = "Neue Registrierung";
App::$strings["Message sent to %s. New account registration: %s"] = "Nachricht gesendet an %s. Neue Kontoregistrierung: %s";
App::$strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert.";
App::$strings["NSFW App"] = "";
App::$strings["Collapse content that contains predefined words"] = "";
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."] = "";
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"] = "";
App::$strings["Possible adult content"] = "Möglicherweise nicht jugendfreie Inhalte";
App::$strings["%s - view"] = "%s - ansehen";
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["Fuzzloc Settings updated."] = "Fuzzloc-Einstellungen aktualisiert.";
App::$strings["Fuzzy Location App"] = "";
App::$strings["Blur your precise location if your channel uses browser location mapping"] = "";
App::$strings["Minimum offset in meters"] = "Minimale Verschiebung in Metern";
App::$strings["Maximum offset in meters"] = "Maximale Verschiebung in Metern";
App::$strings["Fuzzy Location"] = "";
App::$strings["No server specified"] = "";
App::$strings["Posts imported"] = "";
App::$strings["Files imported"] = "";
App::$strings["This addon app copies existing content and file storage to a cloned/copied channel. Once the app is installed, visit the newly installed app. This will allow you to set the location of your original channel and an optional date range of files/conversations to copy."] = "";
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."] = "";
App::$strings["Include posts"] = "";
App::$strings["Conversations, Articles, Cards, and other posted content"] = "";
App::$strings["Include files"] = "";
App::$strings["Files, Photos and other cloud storage"] = "";
App::$strings["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["pageheader Settings saved."] = "Nachrichtenkopf-Einstellungen gespeichert.";
App::$strings["Page Header App"] = "";
App::$strings["Inserts a page header"] = "";
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"] = "";
App::$strings["Send email to all members"] = "E-Mail an alle Mitglieder senden";
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["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["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Suche %1\$s (%2\$s)";
App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
App::$strings["Search \$Projectname"] = "\$Projectname suchen";
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"] = "";
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["Use markdown for editing posts"] = "Verwende Markdown zum Bearbeiten von Beiträgen";
App::$strings["Jappixmini App"] = "";
App::$strings["Provides a Facebook-like chat using Jappix Mini"] = "";
App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Jappix Mini Chat-Widget von der Weboberfläche verbergen";
App::$strings["Jabber username"] = "Jabber-Benutzername";
App::$strings["Jabber server"] = "Jabber-Server";
App::$strings["Jabber BOSH host URL"] = "Jabber BOSH Host URL";
App::$strings["Jabber password"] = "Jabber-Passwort";
App::$strings["Encrypt Jabber password with Hubzilla password"] = "Jabber-Passwort mit Hubzilla-Passwort verschlüsseln";
App::$strings["Hubzilla password"] = "Hubzilla-Passwort";
App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Verbindungsanfragen von Hubzilla-Kontakten automatisch annehmen";
App::$strings["Purge internal list of jabber addresses of contacts"] = "Interne Liste der Jabber Adressen von Kontakten löschen";
App::$strings["Configuration Help"] = "Konfigurationshilfe";
App::$strings["Jappixmini Settings"] = "";
App::$strings["Channel is required."] = "Kanal ist erforderlich.";
App::$strings["Hubzilla Crosspost Connector Settings saved."] = "";
App::$strings["Hubzilla Crosspost Connector App"] = "";
App::$strings["Relay public postings to another Hubzilla channel"] = "";
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["Hubzilla login name"] = "Hubzilla-Anmeldename";
App::$strings["Hubzilla channel name"] = "Hubzilla-Kanalname";
App::$strings["Nickname"] = "Spitzname";
App::$strings["Hubzilla Crosspost Connector"] = "";
App::$strings["Post to Hubzilla"] = "";
App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "";
App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "";
App::$strings["Valid examples include  A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Einige gültige Beispiele: A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ...";
App::$strings["Guitar Chords"] = "Gitarrenakkorde";
App::$strings["The complete online chord dictionary"] = "Das komplette online Akkord-Verzeichnis";
App::$strings["Tuning"] = "Stimmen";
App::$strings["Chord name: example: Em7"] = "Beispiel Akkord Name: Em7";
App::$strings["Show for left handed stringing"] = "Linkshänder-Besaitung anzeigen";
App::$strings["Quick Reference"] = "Schnellreferenz";
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["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["Send your identity to all websites"] = "";
App::$strings["Sendzid App"] = "";
App::$strings["Send ZID"] = "";
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["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"] = "";
App::$strings["was dubious of"] = "";
App::$strings["eat"] = "essen";
App::$strings["ate"] = "aß";
App::$strings["giggle and fawn at"] = "";
App::$strings["giggled and fawned at"] = "";
App::$strings["doubt"] = "anzweifeln";
App::$strings["doubted"] = "angezweifelt";
App::$strings["glare"] = "";
App::$strings["glared at"] = "";
App::$strings["fuck"] = "ficken";
App::$strings["fucked"] = "gefickt";
App::$strings["bonk"] = "";
App::$strings["bonked"] = "";
App::$strings["declare undying love for"] = "erkläre unsterbliche Liebe";
App::$strings["declared undying love for"] = "erklärte unsterbliche Liebe";
App::$strings["Dreamwidth Crosspost Connector Settings saved."] = "";
App::$strings["Dreamwidth Crosspost Connector App"] = "";
App::$strings["Relay public postings to Dreamwidth"] = "";
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"] = "";
App::$strings["Post to Dreamwidth"] = "Bei Dreamwidth veröffentlichen";
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["Flattr this!"] = "Flattr this!";
App::$strings["Flattr widget settings updated."] = "Flattr Widget Einstellungen aktualisiert";
App::$strings["Flattr Widget App"] = "";
App::$strings["Add a Flattr button to your channel page"] = "";
App::$strings["Flattr user"] = "Flattr Nutzer";
App::$strings["URL of the Thing to flattr"] = "URL des Dings zum flattrn";
App::$strings["If empty channel URL is used"] = "Falls leer wird die Channel URL verwendet";
App::$strings["Title of the Thing to flattr"] = "Titel des Dings zum flattrn";
App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Falls leer wird \"Kanalname auf The Hubzilla\" verwendet";
App::$strings["Static or dynamic flattr button"] = "Statischer oder dynamischer Flattr Button";
App::$strings["static"] = "statisch";
App::$strings["dynamic"] = "dynamisch";
App::$strings["Alignment of the widget"] = "Ausrichtung des Widgets";
App::$strings["left"] = "links";
App::$strings["right"] = "rechts";
App::$strings["Flattr Widget"] = "";
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["Relay public postings to a connected GNU social account (formerly StatusNet)"] = "";
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["<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["GNU-Social Crosspost Connector"] = "";
App::$strings["Post to GNU social"] = "Bei GNU social veröffentlichen";
App::$strings["API URL"] = "API-URL";
App::$strings["Application name"] = "Anwendungsname";
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"] = "";
App::$strings["Embedded 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["Gallery App"] = "";
App::$strings["A simple gallery for your photo albums"] = "";
App::$strings["Gallery"] = "";
App::$strings["Photo Gallery"] = "";
App::$strings["Follow"] = "Folgen";
App::$strings["%1\$s is now following %2\$s"] = "%1\$s folgt nun %2\$s";
App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das GNU-Social-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein.";
App::$strings["GNU-Social Protocol App"] = "";
App::$strings["GNU-Social Protocol"] = "";
App::$strings["Not allowed."] = "";
App::$strings["Edit your profile and change settings."] = "Bearbeite dein Profil und ändere die Einstellungen.";
App::$strings["Click here to see activity from your connections."] = "Klicke hier, um die Aktivitäten Deiner Verbindungen zu sehen.";
App::$strings["Click here to see your channel home."] = "Klicke hier, um Deine Kanal-Hauptseite zu sehen.";
App::$strings["You can access your private messages from here."] = "Hierüber kannst Du auf Deine privaten Nachrichten zugreifen.";
App::$strings["Create new events here."] = "Neue Termine hier erstellen";
App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Du kannst hier neue Verbindungen akzeptieren sowie die Einstellungen bereits vorhandener Vebindungen bearbeiten. Außerdem kannst Du Verbindungen in Gruppen zusammenfassen.";
App::$strings["System notifications will arrive here"] = "Systembenachrichtigungen werden hier eintreffen";
App::$strings["Search for content and users"] = "Nach Inhalt von Benutzern suchen";
App::$strings["Browse for new contacts"] = "Schaue nach möglichen neuen Verbindungen.";
App::$strings["Launch installed apps"] = "Installierte Apps starten";
App::$strings["Looking for help? Click here."] = "Du benötigst Hilfe? Klicke hier.";
App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "In Deinem Netzwerk gibt es neue Ereignisse. Klicke hier, um zu sehen, was passiert ist!";
App::$strings["You have received a new private message. Click here to see from who!"] = "Du hast eine neue private Nachricht erhalten. Klicke hier, um zu sehen, von wem!";
App::$strings["There are events this week. Click here too see which!"] = "Es gibt neue Termine diese Woche. Klicke hier, um zu sehen, welche!";
App::$strings["You have received a new introduction. Click here to see who!"] = "Du hast eine neue Verbindungsanfrage erhalten. Klicke hier, um zu sehen, wer es ist!";
App::$strings["There is a new system notification. Click here to see what has happened!"] = "Es gibt eine neue Systembenachrichtigung. Klicke hier, um zu sehen, was passiert ist!";
App::$strings["Click here to share text, images, videos and sound."] = "Klicke hier, um Texte, Bilder, Videos und Klänge zu teilen.";
App::$strings["You can write an optional title for your update (good for long posts)."] = "Du kannst Deinem Beitrag einen optionalen Titel geben (gut für lange Beiträge).";
App::$strings["Entering some categories here makes it easier to find your post later."] = "Ein paar Kategorien hier einzugeben, macht es leichter, Deinen Beitrag später wiederzufinden.";
App::$strings["Share photos, links, location, etc."] = "Teile Photos, Links, Standort, usw.";
App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Du möchtest diesen Inhalt nur für eine Weile teilen? Dann lass ihn zu einem bestimmten Datum ablaufen.";
App::$strings["You can password protect content."] = "Du kannst Inhalte mit einem Passwort schützen.";
App::$strings["Choose who you share with."] = "Wähle aus, mit wem Du teilen möchtest.";
App::$strings["Click here when you are done."] = "Klicke hier, wenn Du fertig bist.";
App::$strings["Adjust from which channels posts should be displayed."] = "Lege fest, von welchen Kanälen Beiträge angezeigt werden sollen.";
App::$strings["Only show posts from channels in the specified privacy group."] = "Zeige nur Beträge von Kanälen, die in einer bestimmten Gruppe sind.";
App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Finde Beiträge, die bestimmte Tags enthalten (Stichworte, die mit dem \"#\"-Symbol beginnen).";
App::$strings["Easily find posts in given category."] = "Finde Beiträge in bestimmten Kategorien.";
App::$strings["Easily find posts by date."] = "Finde Beiträge anhand des Datums.";
App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Vorgeschlagene Kanäle, die in ihren Einstellungen zugestimmt haben, als Vorschläge angezeigt zu werden, und die Du eventuell interessant finden könntest.";
App::$strings["Here you see channels you have connected to."] = "Hier siehst du die Kanäle, mit denen Du verbunden bist.";
App::$strings["Save your search so you can repeat it at a later date."] = "Speichere Deine Suche, so dass Du sie später leicht erneut durchführen kannst.";
App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Wenn Du dieses Symbol siehst, kannst Du weitgehend sicher sein, dass der Ansender dem angegebenen entspricht. Nicht immer ist es möglich, den Absender zu verifizieren, daher fehlt das Symbol mitunter. Das ist aber in der Regel kein Grund zur Sorge.";
App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Vorsicht! Es kann sein, dass jemand versucht, eine Nachricht zu fälschen! Diese Nachricht muss nicht unbedingt vom angegebenen Absender stammen!";
App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?</p> <p>You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.</p><p>You can also advance by pressing the return key"] = "Willkommen zu Hubzilla! Möchtest Du eine Tour der Benutzeroberfläche angezeigt bekommen?</p><p>Du kannst zu jeder Zeit pausieren und fortsetzen, wo Du aufgehört hast, indem Du die Seite neu lädtst, oder zu einer anderen Seite springst.</p><p>Du kannst auc durch das Drücken der Enter-Taste weitergehen.";
App::$strings["NSA Bait App"] = "";
App::$strings["Make yourself a political target"] = "";
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;"] = "";
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["nofed Settings saved."] = "nofed Einstellungen gespeichert";
App::$strings["No Federation App"] = "";
App::$strings["Prevent posting from being federated to anybody. It will exist only on your channel page."] = "";
App::$strings["Federate posts by default"] = "Beiträge standardmäßig verteilen";
App::$strings["No Federation"] = "";
App::$strings["Federate"] = "Beitrag verteilen";
App::$strings["Who viewed my channel/profile"] = "";
App::$strings["Recent Channel/Profile Viewers"] = "Kürzliche Kanal/Profil Besucher";
App::$strings["No entries."] = "Keine Einträge.";
App::$strings["Insane Journal Crosspost Connector Settings saved."] = "";
App::$strings["Insane Journal Crosspost Connector App"] = "";
App::$strings["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"] = "";
App::$strings["Post to Insane Journal"] = "";
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."] = "";
App::$strings["Your TOTP secret is"] = "";
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."] = "";
App::$strings["Test"] = "";
App::$strings["Generate New Secret"] = "";
App::$strings["Go"] = "";
App::$strings["Enter your password"] = "";
App::$strings["enter TOTP code from your device"] = "";
App::$strings["Pass!"] = "";
App::$strings["Fail"] = "";
App::$strings["Incorrect password, try again."] = "";
App::$strings["Record your new TOTP secret and rescan the QR code above."] = "";
App::$strings["TOTP Settings"] = "";
App::$strings["TOTP Two-Step Verification"] = "";
App::$strings["Enter the 2-step verification generated by your authenticator app:"] = "";
App::$strings["Success!"] = "";
App::$strings["Invalid code, please try again."] = "";
App::$strings["Too many invalid codes..."] = "";
App::$strings["Verify"] = "";
App::$strings["Smileybutton App"] = "";
App::$strings["Adds a smileybutton to the jot editor"] = "";
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["No username found in import file."] = "Es wurde kein Nutzername in der importierten Datei gefunden.";
App::$strings["%1\$s dislikes %2\$s's %3\$s"] = "";
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."] = "";
App::$strings["Diaspora Protocol App"] = "";
App::$strings["Allow any Diaspora member to comment on your public posts"] = "Erlaube jedem Diaspora Nutzer deine öffentlichen Beiträge zu kommentieren";
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"] = "";
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["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["OpenID protocol error. No ID returned."] = "OpenID-Protokollfehler. Keine Kennung zurückgegeben.";
App::$strings["First Name"] = "Vorname";
App::$strings["Last Name"] = "Nachname";
App::$strings["Full Name"] = "Voller Name";
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["Birth Year"] = "Geburtsjahr";
App::$strings["Birth Month"] = "Geburtsmonat";
App::$strings["Birth Day"] = "Geburtstag";
App::$strings["Birthdate"] = "Geburtsdatum";
App::$strings["Cover Photo"] = "Cover Foto";
App::$strings["Source channel not found."] = "Quellkanal nicht gefunden.";