aboutsummaryrefslogblamecommitdiffstats
path: root/view/nl/hstrings.php
blob: 63618df46ab1fb0b717b6dd292c861abd6a9460e (plain) (tree)
1
2
3
4
5
6
7
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
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





                                                  
              






                                                                                                                                   
                                                                            
                                                                                                              
                                                                                







                                                                                                                                                                             























                                                                                                
                                     
                                   
                                 
                                        


























                                                                                                                                                                                                                       
                                                         

































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       





                                                       
                                                                 





                                                                                                                               


















                                                                                                                                                                                                   






                                                                                                                                                                                                                                                                             












































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      






                                                                                                                                                                                                                                                                 
                                                                                                                                                                               
                                                                            






                                                                                     



                                                                        





































                                                                                                                                                            















                                                                                           
                                                       
                                        
                                   

                                         







                                                                                                                                                                                                                                                                                                                                                     






                                                                                                                                                                                                                            


























                                                                                                                                                                                                                                                                                                                                  





                                                                            

                                                                         
                                                                







                                                                                                                                                                    






                                                                                                              
                                              



                                                  




                                                                                                                                                                                              
                                                                                             






                                                                                                                                                                                                                                                                        






                                                                                                                                                                                                                                                       

                                                                                                                                                      



                                                                                                                                                                                   
                                                                                                                                                                                                                                                                                                                                                      









                                                                                                                                                                                                                                                                                                                                                             
                                                                          
                                                                                                                                                                                                                                                                                      



                                                                                                                                                                                                                                                              



                                                                                                                                                                                                                      


                                                                                                                                          









                                                                                                                                                                                                                                                                                                                                                                                                                                          

                                                                                                                                                                                                       

                                                                                                                                                                                                                                                                                           



                                                                                                                                                                                                                                                                                                                                                                                                                            

                                                                                                                                                                                                                   
                                                                                                                                                                                   
                                                                                                                                                                                                         


































































                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                   
                                       
                                                                   














































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
                           















































                                                                                                                                                                                                                              


















                                                                                            
                                             
                                      





                                                                  




                                                        

                                           


                                                       
                                                        




















                                                                                                                                     
                                 

















                                                                              



                                                                                                       












































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       







































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              









                                                                                       
                                            

                                                                  

































                                                                                                                              




                                                                                                                                             
                                                                   









                                                                         



                                                     























                                                    







                                                                                                                                                                                 








                                                                     






























                                                










                                        
                             






                                         



                                                           

                                                                                                

                                                                                                                      


                                                     

                                                  
                                                                     
















                                                                                                          













                                                                                                                                   


                                                                                                                        
                                                                             
                                                                                                          
                                                                                                             
                                                                         
                                                                
                                                                               

























































                                                                                                                                                                  



                                                                                                         




















































































































                                                                                                                                                                                                                                                                                                                             



                                                                            
                                                                                           
                                                        
                                                                                                








                                                                                                                                                                                            

                                                                                        





                                                                                                                                                                                      



                                                                                                                                                                                                                            

                                                                                                                                                                                     



                                                                                                                                                        











                                                                                                                                                                                   















                                                                                                                                                                                                                                                      


                                                                                                                                                                                                                                                                                 

                                                                                                            
                                                                                        



                                                                                                                                                                      
                                                     
                                                                                                                                                         
















                                                                                                                                                                        













































































                                                                                                                                                               





                                                                                                                                        

















                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
<?php

if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
	return ($n != 1);;
}}
App::$rtl = 0;
App::$strings["Can view my channel stream and posts"] = "Kan mijn kanaal en berichten bekijken";
App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen";
App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken";
App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken";
App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken";
App::$strings["Can upload/modify my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen";
App::$strings["Can view my channel webpages"] = "Kan de webpagina's van mijn kanaal bekijken";
App::$strings["Can view my wiki pages"] = "Kan mijn wiki-pagina's bekijken";
App::$strings["Can create/edit my channel webpages"] = "Kan wegpagina's van mijn kanaal aanmaken en bewerken";
App::$strings["Can write to my wiki pages"] = "Kan mijn wiki-pagina's bewerken";
App::$strings["Can post on my channel (wall) page"] = "Kan een bericht in mijn kanaal plaatsen";
App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden";
App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen";
App::$strings["Can like/dislike profiles and profile things"] = "Kan profielen en profieldingen leuk en niet leuk vinden ";
App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+";
App::$strings["Can chat with me"] = "Kan met mij chatten";
App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken";
App::$strings["Can administer my channel"] = "Kan mijn kanaal beheren";
App::$strings["Social Networking"] = "Sociaal netwerk";
App::$strings["Social - Federation"] = "Sociaal - Federatie";
App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar";
App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar";
App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal";
App::$strings["Community Forum"] = "Groepsforum";
App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar";
App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar";
App::$strings["Forum - Private"] = "Forum - Verborgen kanaal";
App::$strings["Feed Republish"] = "Feed herpubliceren";
App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar";
App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar";
App::$strings["Special Purpose"] = "Speciaal doel";
App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen";
App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag";
App::$strings["Other"] = "Anders";
App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen";
App::$strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar";
App::$strings["Permission denied."] = "Toegang geweigerd.";
App::$strings["Block Name"] = "Bloknaam";
App::$strings["Blocks"] = "Blokken";
App::$strings["Block Title"] = "Bloktitel";
App::$strings["Created"] = "Aangemaakt";
App::$strings["Edited"] = "Bewerkt";
App::$strings["Create"] = "Aanmaken";
App::$strings["Edit"] = "Bewerken";
App::$strings["Share"] = "Delen";
App::$strings["Delete"] = "Verwijderen";
App::$strings["View"] = "Tonen";
App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden.";
App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres.";
App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname";
App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder.";
App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt.";
App::$strings["%d message sent."] = array(
	0 => "%d bericht verzonden.",
	1 => "%d berichten verzonden.",
);
App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar";
App::$strings["Send invitations"] = "Uitnodigingen verzenden";
App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:";
App::$strings["Your message:"] = "Jouw bericht:";
App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname  op http://hubzilla.org";
App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:";
App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):";
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:";
App::$strings["or visit"] = "of bezoek";
App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]";
App::$strings["Submit"] = "Opslaan";
App::$strings["Articles"] = "Artikelen";
App::$strings["Add Article"] = "Artikel toevoegen";
App::$strings["Item not found"] = "Item niet gevonden";
App::$strings["Layout Name"] = "Naam lay-out";
App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (niet verplicht)";
App::$strings["Edit Layout"] = "Lay-out bewerken";
App::$strings["Permission denied"] = "Toegang geweigerd";
App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator";
App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel ";
App::$strings["Profile"] = "Profiel";
App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen";
App::$strings["Visible To"] = "Zichtbaar voor";
App::$strings["All Connections"] = "Alle connecties";
App::$strings["INVALID EVENT DISMISSED!"] = "ONGELDIGE GEBEURTENIS VERWIJDERD!";
App::$strings["Summary: "] = "Samenvatting: ";
App::$strings["Unknown"] = "Onbekend";
App::$strings["Date: "] = "Datum: ";
App::$strings["Reason: "] = "Reden: ";
App::$strings["INVALID CARD DISMISSED!"] = "ONGELDIGE CONTACTKAART VERWIJDERD!";
App::$strings["Name: "] = "Naam: ";
App::$strings["Event title"] = "Titel";
App::$strings["Start date and time"] = "Begindatum en -tijd";
App::$strings["Example: YYYY-MM-DD HH:mm"] = "Bijvoorbeeld: JJJJ-MM-DD UU:mm";
App::$strings["End date and time"] = "Einddatum en -tijd";
App::$strings["Description"] = "Omschrijving";
App::$strings["Location"] = "Locatie";
App::$strings["Previous"] = "Vorige";
App::$strings["Next"] = "Volgende";
App::$strings["Today"] = "Vandaag";
App::$strings["Month"] = "Maand";
App::$strings["Week"] = "Week";
App::$strings["Day"] = "Dag";
App::$strings["List month"] = "Maand tonen";
App::$strings["List week"] = "Week tonen";
App::$strings["List day"] = "Dag tonen";
App::$strings["More"] = "Meer";
App::$strings["Less"] = "Minder";
App::$strings["Select calendar"] = "Kies agenda";
App::$strings["Delete all"] = "Alles verwijderen";
App::$strings["Cancel"] = "Annuleren";
App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Excuses! Bewerken van herhalende gebeurtenissen is nog niet geïmplementeerd.";
App::$strings["Name"] = "Naam";
App::$strings["Organisation"] = "Organisatie";
App::$strings["Title"] = "Titel";
App::$strings["Phone"] = "Telefoon";
App::$strings["Email"] = "E-mail";
App::$strings["Instant messenger"] = "Instant messenger";
App::$strings["Website"] = "Website";
App::$strings["Address"] = "Adres";
App::$strings["Note"] = "Opmerking";
App::$strings["Mobile"] = "Mobiel";
App::$strings["Home"] = "Thuis";
App::$strings["Work"] = "Werk";
App::$strings["Add Contact"] = "Contact toevoegen";
App::$strings["Add Field"] = "Veld toevoegen";
App::$strings["Update"] = "Bijwerken";
App::$strings["P.O. Box"] = "Postbus";
App::$strings["Additional"] = "Extra";
App::$strings["Street"] = "Straat en huisnummer";
App::$strings["Locality"] = "Plaats";
App::$strings["Region"] = "Provincie/staat/regio/enz.";
App::$strings["ZIP Code"] = "Postcode";
App::$strings["Country"] = "Land";
App::$strings["Default Calendar"] = "Standaard agenda";
App::$strings["Default Addressbook"] = "Standaard adresboek";
App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)";
App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken.";
App::$strings["Posts and comments"] = "Berichten en reacties";
App::$strings["Only posts"] = "Alleen berichten";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "Onvoldoende permissies.  Doorgestuurd naar profielpagina.";
App::$strings["Export Channel"] = "Kanaal exporteren";
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."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal.";
App::$strings["Export Content"] = "Inhoud exporteren";
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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint.";
App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar.";
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."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak.";
App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Bezoek <a href=\"%1\$s\">%2\$s</a> om alle berichten van bijvoorbeeld dit jaar te selecteren. ";
App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Bezoek  <a href=\"%1\$s\">%2\$s</a> om alle berichten van bijvoorbeeld januari dit jaar te selecteren.";
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)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal <a href=\"%1\$s\">%2\$s</a> te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen.";
App::$strings["Welcome to Hubzilla!"] = "Welkom op Hubzilla!";
App::$strings["You have got no unseen posts..."] = "Je hebt geen ongeziene berichten...";
App::$strings["Public access denied."] = "Openbare toegang geweigerd.";
App::$strings["Search"] = "Zoeken";
App::$strings["Items tagged with: %s"] = "Items getagd met %s";
App::$strings["Search results for: %s"] = "Zoekresultaten voor %s";
App::$strings["Public Stream"] = "Openbare tijdlijn";
App::$strings["Location not found."] = "Locatie niet gevonden.";
App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt";
App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen.";
App::$strings["Syncing locations"] = "Locaties synchronizeren";
App::$strings["No locations found."] = "Geen locaties gevonden.";
App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren";
App::$strings["Primary"] = "Primair";
App::$strings["Drop"] = "Verwijderen";
App::$strings["Sync Now"] = "Nu synchroniseren";
App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen.";
App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen.";
App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is.";
App::$strings["Change Order of Pinned Navbar Apps"] = "Volgorde veranderen van apps op de navigatiebalk";
App::$strings["Change Order of App Tray Apps"] = "Volgorde veranderen van apps in het appmenu";
App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Gebruik de pijlen om de app naar links (omhoog) of naar recht (omlaag) op de navigatiebalk te verplaatsen";
App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Gebruik de pijlen om de app hoger of lager in het appmenu te tonen";
App::$strings["Menu not found."] = "Menu niet gevonden.";
App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken.";
App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet.";
App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd.";
App::$strings["Not found."] = "Niet gevonden.";
App::$strings["Menu Item Permissions"] = "Permissies menu-item";
App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)";
App::$strings["Link Name"] = "Linknaam";
App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel";
App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken";
App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar";
App::$strings["No"] = "Nee";
App::$strings["Yes"] = "Ja";
App::$strings["Open link in new window"] = "Open link in nieuw venster";
App::$strings["Order in list"] = "Volgorde in lijst";
App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht";
App::$strings["Submit and finish"] = "Opslaan en afsluiten";
App::$strings["Submit and continue"] = "Opslaan en doorgaan";
App::$strings["Menu:"] = "Menu:";
App::$strings["Link Target"] = "Linkdoel";
App::$strings["Edit menu"] = "Menu bewerken";
App::$strings["Edit element"] = "Onderdeel bewerken";
App::$strings["Drop element"] = "Onderdeel verwijderen";
App::$strings["New element"] = "Nieuw element";
App::$strings["Edit this menu container"] = "Deze menu-container bewerken";
App::$strings["Add menu element"] = "Menu-element toevoegen";
App::$strings["Delete this menu item"] = "Dit menu-item verwijderen";
App::$strings["Edit this menu item"] = "Dit menu-item bewerken";
App::$strings["Menu item not found."] = "Menu-item niet gevonden.";
App::$strings["Menu item deleted."] = "Menu-item verwijderd.";
App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd.";
App::$strings["Edit Menu Element"] = "Menu-element bewerken";
App::$strings["Link text"] = "Linktekst";
App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd.";
App::$strings["No calendar entries found."] = "Geen agenda-items gevonden.";
App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen";
App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren";
App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist.";
App::$strings["Event not found."] = "Gebeurtenis niet gevonden";
App::$strings["event"] = "gebeurtenis";
App::$strings["Edit event title"] = "Titel bewerken";
App::$strings["Required"] = "Vereist";
App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)";
App::$strings["Edit Category"] = "Categorie";
App::$strings["Category"] = "Categorie";
App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken";
App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing";
App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken";
App::$strings["Finish date and time"] = "Einddatum en -tijd";
App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt";
App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen.";
App::$strings["Edit Description"] = "Omschrijving bewerken";
App::$strings["Edit Location"] = "Locatie bewerken";
App::$strings["Preview"] = "Voorvertoning";
App::$strings["Permission settings"] = "Permissies";
App::$strings["Timezone:"] = "Tijdzone:";
App::$strings["Advanced Options"] = "Geavanceerde opties";
App::$strings["l, F j"] = "l j F";
App::$strings["Edit event"] = "Gebeurtenis bewerken";
App::$strings["Delete event"] = "Gebeurtenis verwijderen";
App::$strings["Link to Source"] = "Originele locatie";
App::$strings["calendar"] = "agenda";
App::$strings["Edit Event"] = "Gebeurtenis bewerken";
App::$strings["Create Event"] = "Gebeurtenis aanmaken";
App::$strings["Export"] = "Exporteren";
App::$strings["Event removed"] = "Gebeurtenis verwijderd";
App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt";
App::$strings["App installed."] = "App geïnstalleerd";
App::$strings["Malformed app."] = "Misvormde app.";
App::$strings["Embed code"] = "Insluitcode";
App::$strings["Edit App"] = "App bewerken";
App::$strings["Create App"] = "App maken";
App::$strings["Name of app"] = "Naam van app";
App::$strings["Location (URL) of app"] = "Locatie (URL) van app";
App::$strings["Photo icon URL"] = "URL van pictogram";
App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (niet verplicht)";
App::$strings["Categories (optional, comma separated list)"] = "Categorieën (niet verplicht,  door komma's gescheiden lijst)";
App::$strings["Version ID"] = "Versie-ID";
App::$strings["Price of app"] = "Prijs van de app";
App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen";
App::$strings["Please login."] = "Inloggen.";
App::$strings["Hub not found."] = "Hub niet gevonden.";
App::$strings["photo"] = "foto";
App::$strings["status"] = "bericht";
App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s";
App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s niet meer";
App::$strings["Channel not found."] = "Kanaal niet gevonden.";
App::$strings["Insert web link"] = "Weblink invoegen";
App::$strings["Title (optional)"] = "Titel (niet verplicht)";
App::$strings["Edit Article"] = "Artikel bewerken";
App::$strings["Nothing to import."] = "Niets gevonden om te importeren";
App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden";
App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg";
App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter.";
App::$strings["Import completed"] = "Importeren voltooid";
App::$strings["Import Items"] = "Importeer items";
App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren.";
App::$strings["File to Upload"] = "Bestand om te uploaden";
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt.";
App::$strings["Name or caption"] = "Naam";
App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"";
App::$strings["Choose a short nickname"] = "Korte bijnaam";
App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s";
App::$strings["Channel role and privacy"] = "Kanaaltype en privacy";
App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau.";
App::$strings["Read more about roles"] = "Lees meer over kanaaltypes";
App::$strings["Create Channel"] = "Kanaal aanmaken";
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. Channels can make connections with other channels to share information with each other."] = "Een kanaal is een unieke netwerkidentiteit. Het kan een persoon (sociaal-netwerkprofiel), een forum (groep), een zakelijke of celebrity-pagina, een nieuwsfeed en vele andere dingen vertegenwoordigen. Kanalen kunnen met elkaar verbinden om informatie uit te wisselen.";
App::$strings["The type of channel you create affects the basic privacy settings, the permissions that are granted to connections/friends, and also the channel's visibility across the network."] = "Het type kanaal dat jij aanmaakt beïnvloedt de standaard privacyinstellingen, de permissies die aan connecties/vrienden worden gegeven, en tevens de zichtbaarheid van het kanaal in het netwerk.";
App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "Of <a href=\"import\">importeer een bestaand kanaal</a> vanaf een andere locatie";
App::$strings["Validate"] = "Valideren";
App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd.";
App::$strings["Remove This Channel"] = "Verwijder dit kanaal";
App::$strings["WARNING: "] = "WAARSCHUWING: ";
App::$strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het \$Projectname-netwerk verwijderd.";
App::$strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!";
App::$strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:";
App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd";
App::$strings["Remove Channel"] = "Kanaal verwijderen";
App::$strings["Files: shared with me"] = "Bestanden: met mij gedeeld";
App::$strings["NEW"] = "NIEUW";
App::$strings["Size"] = "Grootte";
App::$strings["Last Modified"] = "Laatst gewijzigd";
App::$strings["Remove all files"] = "Verwijder alle bestanden";
App::$strings["Remove this file"] = "Verwijder dit bestand";
App::$strings["\$Projectname Server - Setup"] = "\$Projectname Hub - Setup";
App::$strings["Could not connect to database."] = "Could not connect to database.";
App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue.";
App::$strings["Could not create table."] = "Could not create table.";
App::$strings["Your site database has been installed."] = "Your hub database has been installed.";
App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client.";
App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\".";
App::$strings["System check"] = "System check";
App::$strings["Check again"] = "Check again";
App::$strings["Database connection"] = "Database connection";
App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database.";
App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or server administrator if you have questions about these settings.";
App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing.";
App::$strings["Database Server Name"] = "Database Server Name";
App::$strings["Default is 127.0.0.1"] = "Default is 127.0.0.1";
App::$strings["Database Port"] = "Database Port";
App::$strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default";
App::$strings["Database Login Name"] = "Database Login Name";
App::$strings["Database Login Password"] = "Database Login Password";
App::$strings["Database Name"] = "Database Name";
App::$strings["Database Type"] = "Database Type";
App::$strings["Site administrator email address"] = "Hub administrator email address";
App::$strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel.";
App::$strings["Website URL"] = "Hub URL";
App::$strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available.";
App::$strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub";
App::$strings["Site settings"] = "Hub settings";
App::$strings["PHP version 5.5 or greater is required."] = "PHP version 5.5 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."] = "Could not find a command line version of PHP in the web server PATH.";
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."] = "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.";
App::$strings["PHP executable path"] = "PHP executable path";
App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation.";
App::$strings["Command line PHP"] = "Command line PHP";
App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Unable to check command line PHP, as shell_exec() is disabled. This is required.";
App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled.";
App::$strings["This is required for message delivery to work."] = "This is required for message delivery to work.";
App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv";
App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "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.";
App::$strings["You can adjust these settings in the server php.ini file."] = "You can adjust these settings in the server php.ini file.";
App::$strings["PHP upload limits"] = "PHP upload limits";
App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys";
App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\".";
App::$strings["Generate encryption keys"] = "Generate encryption keys";
App::$strings["libCurl PHP module"] = "libCurl PHP module";
App::$strings["GD graphics PHP module"] = "GD graphics PHP module";
App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module";
App::$strings["PDO database PHP module"] = "PDO database PHP module";
App::$strings["mb_string PHP module"] = "mb_string PHP module";
App::$strings["xml PHP module"] = "xml PHP module";
App::$strings["zip PHP module"] = "zip PHP module";
App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed.";
App::$strings["exec"] = "exec";
App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Error: exec is required but is either not installed or has been disabled in php.ini";
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"] = "Error: shell_exec is required but is either not installed or has been disabled in php.ini";
App::$strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed.";
App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed.";
App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed.";
App::$strings["Error: PDO database PHP module required but not installed."] = "Error: PDO database PHP module required but not installed.";
App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed.";
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed.";
App::$strings["Error: zip PHP module required but not installed."] = "Error: zip PHP module required but not installed.";
App::$strings[".htconfig.php is writable"] = ".htconfig.php is writable";
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."] = "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.";
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."] = "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.";
App::$strings["Please see install/INSTALL.txt for additional information."] = "Please see install/INSTALL.txt for additional information.";
App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.";
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."] = "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.";
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder.";
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."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains.";
App::$strings["%s is writable"] = "%s is writable";
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"] = "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";
App::$strings["store is writable"] = "store is writable";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub.";
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!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!";
App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub.";
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."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues.";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement.";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid.";
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."] = "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.";
App::$strings["SSL certificate validation"] = "SSL certificate validation";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: ";
App::$strings["Url rewrite is working"] = "Url rewrite is working";
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."] = "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.";
App::$strings["Errors encountered creating database tables."] = "Errors encountered creating database tables.";
App::$strings["<h1>What next?</h1>"] = "<h1>What next?</h1>";
App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller.";
App::$strings["Continue"] = "Ga verder";
App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal ";
App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan";
App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz.";
App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:";
App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:";
App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina.";
App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaaleigenaar verstrekt) ";
App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal";
App::$strings["Queue Statistics"] = "Wachtrij-statistieken";
App::$strings["Total Entries"] = "Aantal vermeldingen";
App::$strings["Priority"] = "Prioriteit";
App::$strings["Destination URL"] = "Doel-URL";
App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markeren";
App::$strings["Empty queue for this hub"] = "Berichtenwachtrij voor deze hub legen";
App::$strings["Last known contact"] = "Voor het laatst contact";
App::$strings["Off"] = "Uit";
App::$strings["On"] = "Aan";
App::$strings["Lock feature %s"] = "   Vergrendel de functie '%s'";
App::$strings["Manage Additional Features"] = "Beheer - Extra functies";
App::$strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd";
App::$strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek.";
App::$strings["Update %s was successfully applied."] = "Update %s was geslaagd.";
App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is.";
App::$strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden.";
App::$strings["Failed Updates"] = "Mislukte updates";
App::$strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)";
App::$strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren.";
App::$strings["No failed updates."] = "Geen mislukte updates.";
App::$strings["Item not found."] = "Item niet gevonden.";
App::$strings["Plugin %s disabled."] = "Plug-in %s uitgeschakeld.";
App::$strings["Plugin %s enabled."] = "Plug-in %s ingeschakeld";
App::$strings["Disable"] = "Uitschakelen";
App::$strings["Enable"] = "Inschakelen";
App::$strings["Administration"] = "Beheer";
App::$strings["Plugins"] = "Plug-ins";
App::$strings["Toggle"] = "Omschakelen";
App::$strings["Settings"] = "Instellingen";
App::$strings["Author: "] = "Auteur: ";
App::$strings["Maintainer: "] = "Beheerder: ";
App::$strings["Minimum project version: "] = "Minimum versie Hubzilla: ";
App::$strings["Maximum project version: "] = "Maximum versie Hubzilla:";
App::$strings["Minimum PHP version: "] = "Minimum versie PHP: ";
App::$strings["Compatible Server Roles: "] = "Werkt met configuratietypes: ";
App::$strings["Requires: "] = "Vereist: ";
App::$strings["Disabled - version incompatibility"] = "Uitgeschakeld - versie is incompatibel";
App::$strings["Enter the public git repository URL of the plugin repo."] = "Vul de openbare Git-URL in van de plug-in-repository.";
App::$strings["Plugin repo git URL"] = "Git-URL plug-in-repository";
App::$strings["Custom repo name"] = "Handmatige repository-naam";
App::$strings["(optional)"] = "(niet verplicht)";
App::$strings["Download Plugin Repo"] = "Plug-in-repository downloaden";
App::$strings["Install new repo"] = "Nieuwe repository installeren";
App::$strings["Install"] = "Installeren";
App::$strings["Manage Repos"] = "Repositories beheren";
App::$strings["Installed Plugin Repositories"] = "Toegevoegde plug-in-repositories";
App::$strings["Install a New Plugin Repository"] = "Nieuwe plug-in-repository toevoegen";
App::$strings["Switch branch"] = "Branch veranderen";
App::$strings["Remove"] = "Verwijderen";
App::$strings["%s account blocked/unblocked"] = array(
	0 => "%s account geblokkeerd/gedeblokkeerd",
	1 => "%s accounts geblokkeerd/gedeblokkeerd",
);
App::$strings["%s account deleted"] = array(
	0 => "%s account verwijderd",
	1 => "%s accounts verwijderd",
);
App::$strings["Account not found"] = "Account niet gevonden";
App::$strings["Account '%s' deleted"] = "Account '%s' verwijderd";
App::$strings["Account '%s' blocked"] = "Account '%s' geblokkeerd";
App::$strings["Account '%s' unblocked"] = "Account '%s' gedeblokkeerd";
App::$strings["Accounts"] = "Accounts";
App::$strings["select all"] = "alles selecteren";
App::$strings["Registrations waiting for confirm"] = "Accounts die op goedkeuring wachten";
App::$strings["Request date"] = "Tijd/datum verzoek";
App::$strings["No registrations."] = "Geen verzoeken.";
App::$strings["Approve"] = "Goedkeuren";
App::$strings["Deny"] = "Afkeuren";
App::$strings["Block"] = "Blokkeren";
App::$strings["Unblock"] = "Deblokkeren";
App::$strings["ID"] = "ID";
App::$strings["All Channels"] = "Alle kanalen";
App::$strings["Register date"] = "Geregistreerd";
App::$strings["Last login"] = "Laatste keer ingelogd";
App::$strings["Expires"] = "Verloopt";
App::$strings["Service Class"] = "Abonnement";
App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?";
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?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?";
App::$strings["Log settings updated."] = "Logboek-instellingen bijgewerkt.";
App::$strings["Logs"] = "Logboeken";
App::$strings["Clear"] = "Leegmaken";
App::$strings["Debugging"] = "Debuggen";
App::$strings["Log file"] = "Logbestand";
App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je \$Projectname-installatie.";
App::$strings["Log level"] = "Logniveau";
App::$strings["%s channel censored/uncensored"] = array(
	0 => "%s kanaal gecensureerd/ongecensureerd",
	1 => "%s kanalen gecensureerd/ongecensureerd",
);
App::$strings["%s channel code allowed/disallowed"] = array(
	0 => "Scripts toegestaan/niet toegestaan voor %s kanaal",
	1 => "Scripts toegestaan/niet toegestaan voor %s kanalen",
);
App::$strings["%s channel deleted"] = array(
	0 => "%s kanaal verwijderd",
	1 => "%s kanalen verwijderd",
);
App::$strings["Channel not found"] = "Kanaal niet gevonden";
App::$strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd";
App::$strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd";
App::$strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd";
App::$strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'";
App::$strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'";
App::$strings["Channels"] = "Kanalen";
App::$strings["Censor"] = "Censureren";
App::$strings["Uncensor"] = "Niet censureren";
App::$strings["Allow Code"] = "Scripts toestaan";
App::$strings["Disallow Code"] = "Scripts niet toestaan";
App::$strings["Channel"] = "Kanaal";
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?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?";
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?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?";
App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt.";
App::$strings["No themes found."] = "Geen thema's gevonden";
App::$strings["Screenshot"] = "Schermafdruk";
App::$strings["Themes"] = "Thema's";
App::$strings["[Experimental]"] = "[Experimenteel]";
App::$strings["[Unsupported]"] = "[Niet ondersteund]";
App::$strings["Site settings updated."] = "Hub-instellingen bijgewerkt.";
App::$strings["Default"] = "Standaard";
App::$strings["%s - (Incompatible)"] = "%s - (niet compatible)";
App::$strings["mobile"] = "mobiel";
App::$strings["experimental"] = "experimenteel";
App::$strings["unsupported"] = "Niet ondersteund";
App::$strings["Yes - with approval"] = "Ja - met goedkeuring";
App::$strings["My site is not a public server"] = "Mijn \$Projectname-hub is niet openbaar";
App::$strings["My site has paid access only"] = "Mijn \$Projectname-hub kent alleen betaalde toegang";
App::$strings["My site has free access only"] = "Mijn \$Projectname-hub kent alleen gratis toegang";
App::$strings["My site offers free accounts with optional paid upgrades"] = "Mijn \$Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie";
App::$strings["Beginner/Basic"] = "Beginner/basic";
App::$strings["Novice - not skilled but willing to learn"] = "Onervaren - niet bekwaam, maar wil graag leren";
App::$strings["Intermediate - somewhat comfortable"] = "Ervaren - voelt zich enigszins comfortabel";
App::$strings["Advanced - very comfortable"] = "Gevorderd - voelt zich comfortabel";
App::$strings["Expert - I can write computer code"] = "Expert - kan programmeren";
App::$strings["Wizard - I probably know more than you do"] = "Tovenaar - ik weet waarschijnlijk meer dan jij";
App::$strings["Site"] = "Hub-instellingen";
App::$strings["Registration"] = "Registratie";
App::$strings["File upload"] = "Bestand uploaden";
App::$strings["Policies"] = "Beleid";
App::$strings["Advanced"] = "Geavanceerd";
App::$strings["Site name"] = "Hubnaam";
App::$strings["Site default technical skill level"] = "Standaard technisch niveau voor deze hub";
App::$strings["Used to provide a member experience matched to technical comfort level"] = "Wordt gebruikt om leden een gebruikerservaring te bieden die met hun technisch niveau overeenkomt";
App::$strings["Lock the technical skill level setting"] = "Vergrendel de functie 'Standaard technisch niveau voor deze hub'";
App::$strings["Members can set their own technical comfort level by default"] = "Leden kunnen hun eigen technisch niveau standaard instellen";
App::$strings["Banner/Logo"] = "Banner/logo";
App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Ongefilterd HTML/CSS/JS is toegestaan";
App::$strings["Administrator Information"] = "Informatie over de beheerder";
App::$strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden.";
App::$strings["Site Information"] = "Hub-informatie";
App::$strings["Publicly visible description of this site.  Displayed on siteinfo page.  BBCode can be used here"] = "Openbaar zichtbare beschrijving van deze hub. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden.";
App::$strings["System language"] = "Standaardtaal";
App::$strings["System theme"] = "Standaardthema";
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standaardthema voor \$Projectname-hub (kan door lid veranderd worden) - <a href='#' id='cnftheme'>verander thema-instellingen</a>";
App::$strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties";
App::$strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)";
App::$strings["Maximum image size"] = "Maximale grootte van afbeeldingen";
App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend.";
App::$strings["Does this site allow new member registration?"] = "Staat deze hub nieuwe accounts toe?";
App::$strings["Invitation only"] = "Alleen op uitnodiging";
App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan.";
App::$strings["Minimum age"] = "Minimum leeftijd";
App::$strings["Minimum age (in years) for who may register on this site."] = "Minimum leeftijd (in jaren) voor wie zich op deze hub mag registreren.";
App::$strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze \$Projectname-hub aan? Kies wat het meest in de buurt komt.";
App::$strings["Register text"] = "Tekst tijdens registratie";
App::$strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond.";
App::$strings["Site homepage to show visitors (default: login box)"] = "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)";
App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "voorbeeld: 'public' om de openbare tijdlijn te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken.";
App::$strings["Preserve site homepage URL"] = "Behoudt de URL van de hub (/)";
App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)";
App::$strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:";
App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet.";
App::$strings["Allowed friend domains"] = "Toegestane domeinen";
App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze \$Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten.";
App::$strings["Verify Email Addresses"] = "E-mailadres verifieren";
App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen).";
App::$strings["Force publish"] = "Dwing kanaalvermelding af";
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld.";
App::$strings["Import Public Streams"] = "Openbare tijdlijnen importeren";
App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd.";
App::$strings["Site only Public Streams"] = "Alleen openbare tijdlijnen van deze hub";
App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Alleen toegang verlenen tot openbare berichten van deze hub, wanneer 'Openbare tijdlijnen importeren' is uitgeschakeld.";
App::$strings["Allow anybody on the internet to access the Public streams"] = "Aan iedereen op het internet toegang tot openbare tijdlijnen verlenen";
App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Uitschakelen wanneer authenticatie is vereist om de berichten te kunnen zien. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd.";
App::$strings["Login on Homepage"] = "Inlogformulier op de homepagina";
App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. ";
App::$strings["Enable context help"] = "Schakel contextuele hulp in";
App::$strings["Display contextual help for the current page when the help button is pressed."] = "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt.";
App::$strings["Reply-to email address for system generated email."] = "Antwoordadres voor door de hub verzonden e-mail.";
App::$strings["Sender (From) email address for system generated email."] = "Afzenderadres voor door de hub verzonden e-mail.";
App::$strings["Name of email sender for system generated email."] = "Volledige naam van afzenderadres voor door de hub verzonden e-mail.";
App::$strings["Directory Server URL"] = "Server-URL voor de kanalengids";
App::$strings["Default directory server"] = "Standaardserver voor de kanalengids";
App::$strings["Proxy user"] = "Gebruikersnaam proxy";
App::$strings["Proxy URL"] = "Proxy-URL";
App::$strings["Network timeout"] = "Netwerktimeout";
App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)";
App::$strings["Delivery interval"] = "Afleveringsinterval";
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."] = "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers.";
App::$strings["Deliveries per process"] = "Leveringen per serverproces";
App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5";
App::$strings["Queue Threshold"] = "Wachtrijgrens";
App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Stel onmiddellijke leveringen uit wanneer de wachtrij meer dan dit aantal vermeldingen bevat.";
App::$strings["Poll interval"] = "Poll-interval";
App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken.";
App::$strings["Path to ImageMagick convert program"] = "Locatie van het conversieprogramma van ImageMagick";
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"] = "Wanneer dit is ingesteld wordt dit programma gebruikt om fotominiaturen voor enorme afbeeldingen (> 4000 pixels hoogte/breedte) aan te maken, anders kunnen er geheugenproblemen optreden. Bijvoorbeeld: /usr/bin/convert";
App::$strings["Allow SVG thumbnails in file browser"] = "SVG-miniaturen in bestandsbeheerder toestaan";
App::$strings["WARNING: SVG images may contain malicious code."] = "LET OP: SVG-afbeeldingen kunnen kwaadwillige code bevatten.";
App::$strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting";
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50.";
App::$strings["Expiration period in days for imported (grid/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands tijdlijn/netwerk-pagina wordt verwijderd.";
App::$strings["0 for no expiration of imported content"] = "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud.";
App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Laat geen berichten verlopen die minder dan dit aantal dagen reacties hebben";
App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Openbare hubs: Optionele landingpage (marketing) voor nieuwe registraties";
App::$strings["Create this page first. Default is %s/register"] = "Maak eerst deze pagina aan. Standaard wordt %s/register gebruikt";
App::$strings["Page to display after creating a new channel"] = "Pagina die na het aanmaken van een nieuw kanaal moet worden getoond";
App::$strings["Recommend: profiles, go, or settings"] = "Aanbevolen: profiles, go of settings";
App::$strings["Optional: site location"] = "Niet verplicht: locatie van deze hub";
App::$strings["Region or country"] = "Regio of land";
App::$strings["New Profile Field"] = "Nieuw profielveld";
App::$strings["Field nickname"] = "Bijnaam voor veld";
App::$strings["System name of field"] = "Systeemnaam voor veld";
App::$strings["Input type"] = "Invoertype";
App::$strings["Field Name"] = "Veldnaam";
App::$strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's";
App::$strings["Help text"] = "Helptekst";
App::$strings["Additional info (optional)"] = "Extra informatie (niet verplicht)";
App::$strings["Save"] = "Opslaan";
App::$strings["Field definition not found"] = "Velddefinitie niet gevonden";
App::$strings["Edit Profile Field"] = "Profielveld bewerken";
App::$strings["Profile Fields"] = "Profielvelden";
App::$strings["Basic Profile Fields"] = "Standaard profielvelden";
App::$strings["Advanced Profile Fields"] = "Geavanceerde profielvelden";
App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)";
App::$strings["All available fields"] = "Alle beschikbare velden";
App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden";
App::$strings["Create Custom Field"] = "Extra velden aanmaken";
App::$strings["Password changed for account %d."] = "Wachtwoord veranderd voor account %d.";
App::$strings["Account settings updated."] = "Account-instellingen bijgewerkt.";
App::$strings["Account not found."] = "Account niet gevonden.";
App::$strings["Account Edit"] = "Account bewerken";
App::$strings["New Password"] = "Nieuw wachtwoord";
App::$strings["New Password again"] = "Nieuw wachtwoord bevestigen";
App::$strings["Technical skill level"] = "Technisch niveau";
App::$strings["Account language (for emails)"] = "Taal van account (voor e-mails)";
App::$strings["Service class"] = "Abonnement";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:";
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 andere ingesloten (embedded) inhoud wordt gefilterd, <strong>tenzij</strong> ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd.";
App::$strings["Security"] = "Beveiliging";
App::$strings["Block public"] = "Openbare toegang blokkeren";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd.";
App::$strings["Set \"Transport Security\" HTTP header"] = "\"Transport Security\" HTTP-header inschakelen";
App::$strings["Set \"Content Security Policy\" HTTP header"] = " \"Content Security Policy\" HTTP-header inschakelen";
App::$strings["Allowed email domains"] = "Toegestane e-maildomeinen";
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"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten.";
App::$strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen";
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."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. ";
App::$strings["Allow communications only from these sites"] = "Alleen communicatie met deze hubs toestaan";
App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan";
App::$strings["Block communications from these sites"] = "Communicatie met deze hubs blokkeren";
App::$strings["Allow communications only from these channels"] = "Sta alleen communicatie toe met deze kanalen";
App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan";
App::$strings["Block communications from these channels"] = "Communicatie met deze kanalen blokkeren";
App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan.";
App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan";
App::$strings["One site per line. By default embedded content is filtered."] = "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd.";
App::$strings["Block embedded HTML from these domains"] = "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren";
App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar.";
App::$strings["Visible to:"] = "Zichtbaar voor:";
App::$strings["__ctx:acl__ Profile"] = "Profiel";
App::$strings["Comment approved"] = "Reactie goedgekeurd";
App::$strings["Comment deleted"] = "Reactie verwijderd";
App::$strings["Permission Name is required."] = "Permissienaam is vereist";
App::$strings["Permission category saved."] = "Permissiegroep opgeslagen.";
App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Gebruik dit formulier om permissieregels voor diverse soorten mensen en connecties aan te maken.";
App::$strings["Permission Categories"] = "Permissiegroepen";
App::$strings["Permission Name"] = "Permissienaam";
App::$strings["My Settings"] = "Mijn instellingen";
App::$strings["inherited"] = "geërfd";
App::$strings["Individual Permissions"] = "Individuele permissies";
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."] = "Sommige permissies worden mogelijk overgeërfd van de <a href=\"settings\">privacyinstellingen</a> van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier <strong>niet</strong> veranderen.";
App::$strings["Friends"] = "Vrienden";
App::$strings["Settings updated."] = "Instellingen bijgewerkt.";
App::$strings["Nobody except yourself"] = "Niemand, behalve jezelf";
App::$strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming";
App::$strings["Approved connections"] = "Geaccepteerde connecties";
App::$strings["Any connections"] = "Alle connecties";
App::$strings["Anybody on this website"] = "Iedereen op deze hub";
App::$strings["Anybody in this network"] = "Iedereen in dit netwerk";
App::$strings["Anybody authenticated"] = "Geauthenticeerd";
App::$strings["Anybody on the internet"] = "Iedereen op het internet";
App::$strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids";
App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen";
App::$strings["or"] = "of";
App::$strings["Your channel address is"] = "Jouw kanaaladres is";
App::$strings["Your files/photos are accessible via WebDAV at"] = "Jouw bestanden/foto's zijn beschikbaar via WebDAV op";
App::$strings["Channel Settings"] = "Kanaalinstellingen";
App::$strings["Basic Settings"] = "Basis-instellingen";
App::$strings["Full Name:"] = "Volledige naam:";
App::$strings["Email Address:"] = "E-mailadres:";
App::$strings["Your Timezone:"] = "Jouw tijdzone:";
App::$strings["Default Post Location:"] = "Standaardlocatie bericht:";
App::$strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld";
App::$strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:";
App::$strings["Adult Content"] = "Inhoud voor volwassenen";
App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)";
App::$strings["Security and Privacy Settings"] = "Veiligheids- en privacyinstellingen ";
App::$strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen.";
App::$strings["Hide my online presence"] = "Verberg mijn aanwezigheid";
App::$strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op \$Projectname aanwezig bent";
App::$strings["Simple Privacy Settings:"] = "Eenvoudige privacyinstellingen:";
App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Zeer openbaar <em>(kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)</em>";
App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Normaal <em>(standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)</em>";
App::$strings["Private - <em>default private, never open or public</em>"] = "Privé <em>(standaard privé en nooit openbaar)</em>";
App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "Geblokkeerd <em>(standaard geblokkeerd naar/van iedereen)</em>";
App::$strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen";
App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren";
App::$strings["Channel Permission Limits"] = "Geavanceerde permissies";
App::$strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:";
App::$strings["0 or blank to use the website limit."] = "0 of leeg om het standaard aantal dagen van deze hub te gebruiken.";
App::$strings["This website expires after %d days."] = "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen.";
App::$strings["This website does not expire imported content."] = "Deze hub laat de inhoud van andere kanalen niet verlopen.";
App::$strings["The website limit takes precedence if lower than your limit."] = "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang.";
App::$strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:";
App::$strings["May reduce spam activity"] = "Kan eventuele spam verminderen";
App::$strings["Default Privacy Group"] = "Standaard privacygroep";
App::$strings["Use my default audience setting for the type of object published"] = "Gebruik mijn standaard privacyinstelling voor dit type publicatie";
App::$strings["Profile to assign new connections"] = "Profiel om aan nieuwe connecties toe te wijzen";
App::$strings["Default Permissions Group"] = "Standaard permissiegroep";
App::$strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:";
App::$strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen";
App::$strings["Notification Settings"] = "Meldingen";
App::$strings["By default post a status message when:"] = "Plaats automatisch een bericht wanneer:";
App::$strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd";
App::$strings["joining a forum/community"] = "Je lid wordt van een forum/groep";
App::$strings["making an <em>interesting</em> profile change"] = "Er sprake is van een <em>interessante</em> profielwijziging";
App::$strings["Send a notification email when:"] = "Verzend een melding per e-mail wanneer:";
App::$strings["You receive a connection request"] = "Je een connectieverzoek ontvangt";
App::$strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd";
App::$strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven";
App::$strings["Someone writes a followup comment"] = "Iemand een reactie schrijft";
App::$strings["You receive a private message"] = "Je een privé-bericht ontvangt";
App::$strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt";
App::$strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd";
App::$strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc.";
App::$strings["Someone likes your post/comment"] = "Iemand jouw bericht/reactie leuk vindt";
App::$strings["Show visual notifications including:"] = "Toon de volgende zichtbare meldingen:";
App::$strings["Unseen grid activity"] = "Niet bekeken tijdlijnactiviteit";
App::$strings["Unseen channel activity"] = "Niet bekeken kanaalactiviteit";
App::$strings["Unseen private messages"] = "Niet bekeken privéberichten";
App::$strings["Recommended"] = "Aanbevolen";
App::$strings["Upcoming events"] = "Aankomende gebeurtenissen";
App::$strings["Events today"] = "Gebeurtenissen van vandaag";
App::$strings["Upcoming birthdays"] = "Aankomende verjaardagen";
App::$strings["Not available in all themes"] = "Niet in alle thema's beschikbaar";
App::$strings["System (personal) notifications"] = "(Persoonlijke) systeemmeldingen";
App::$strings["System info messages"] = "Systeemmededelingen";
App::$strings["System critical alerts"] = "Kritische systeemwaarschuwingen";
App::$strings["New connections"] = "Nieuwe connecties";
App::$strings["System Registrations"] = "Nieuwe accountregistraties op deze hub";
App::$strings["Unseen shared files"] = "Niet bekeken gedeelde bestanden";
App::$strings["Unseen public activity"] = "Niet bekeken openbare activiteit";
App::$strings["Unseen likes and dislikes"] = "Niet bekeken vind-ik-leuks en vind-ik-niet-leuks";
App::$strings["Email notification hub (hostname)"] = "Hub voor e-mailmeldingen (hostnaam)";
App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Wanneer jouw kanaal naar een of meerdere hubs is gekloond, kun je hier bepalen welke hub je voor e-mailmeldingen wilt gebruiken. Dit voorkomt dubbele e-mailmeldingen. Voorbeeld:%s";
App::$strings["Show new wall posts, private messages and connections under Notices"] = "Toon nieuwe kanaalberichten, privéberichten en connecties onder Meldingen";
App::$strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen";
App::$strings["Must be greater than 0"] = "Moet hoger dan 0 zijn";
App::$strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype";
App::$strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties";
App::$strings["Miscellaneous Settings"] = "Diverse instellingen";
App::$strings["Default photo upload folder"] = "Standaard fotoalbum voor uploads";
App::$strings["%Y - current year, %m -  current month"] = "%Y - dit jaar, %m -  deze maand";
App::$strings["Default file upload folder"] = "Standaard bestandsmap voor uploads";
App::$strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's te tonen";
App::$strings["Remove this channel."] = "Verwijder dit kanaal.";
App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share";
App::$strings["Start calendar week on Monday"] = "Begin kalenderweek op maandag";
App::$strings["Additional Features"] = "Extra functies";
App::$strings["Your technical skill level"] = "Jouw technisch niveau";
App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Wordt gebruikt om je een gebruikerservaring en extra functies te bieden die met jouw technisch niveau overeenkomt";
App::$strings["This channel is limited to %d tokens"] = "Dit kanaal heeft een limiet van %d tokens";
App::$strings["Name and Password are required."] = "Naam en wachtwoord zijn vereist";
App::$strings["Token saved."] = "Token opgeslagen.";
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."] = "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot privéinhoud.";
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:"] = "Je kan ook <em>dropbox</em>-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:";
App::$strings["Guest Access Tokens"] = "Gasttoegang";
App::$strings["Login Name"] = "Inlognaam";
App::$strings["Login Password"] = "Wachtwoord:";
App::$strings["Expires (yyyy-mm-dd)"] = "Geldig t/m (yyyy-mm-dd)";
App::$strings["Their Settings"] = "Hun instellingen";
App::$strings["Name and Secret are required"] = "Naam en secret zijn vereist";
App::$strings["Add OAuth2 application"] = "OAuth2-applicatie toevoegen";
App::$strings["Name of application"] = "Naam van applicatie";
App::$strings["Consumer Secret"] = "Consumer secret";
App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20";
App::$strings["Redirect"] = "Redirect/doorverwijzing";
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist";
App::$strings["Grant Types"] = "Grant-types";
App::$strings["leave blank unless your application sepcifically requires this"] = "laat leeg, behalve wanneer de applicatie dit vereist";
App::$strings["Authorization scope"] = "Autorisatie-scope ";
App::$strings["OAuth2 Application not found."] = "OAuth2-applicatie niet gevonden.";
App::$strings["Add application"] = "Applicatie toevoegen";
App::$strings["Connected OAuth2 Apps"] = "Verbonden OAuth2-applicaties";
App::$strings["Client key starts with"] = "Client key begint met";
App::$strings["No name"] = "Geen naam";
App::$strings["Remove authorization"] = "Autorisatie verwijderen";
App::$strings["Not valid email."] = "Geen geldig e-mailadres.";
App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken.";
App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer.";
App::$strings["Technical skill level updated"] = "Technisch niveau bijgewerkt";
App::$strings["Password verification failed."] = "Wachtwoordverificatie mislukt";
App::$strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd.";
App::$strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd.";
App::$strings["Password changed."] = "Wachtwoord veranderd.";
App::$strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw.";
App::$strings["Account Settings"] = "Account-instellingen";
App::$strings["Current Password"] = "Huidig wachtwoord";
App::$strings["Enter New Password"] = "Nieuw wachtwoord invoeren";
App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen";
App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen";
App::$strings["Remove Account"] = "Account verwijderen";
App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen";
App::$strings["Affinity Slider settings updated."] = "Affiniteitsinstellingen bijgewerkt.";
App::$strings["No feature settings configured"] = "Geen plug-in-instellingen aanwezig";
App::$strings["Default maximum affinity level"] = "Standaard hoogste affiniteitsniveau";
App::$strings["0-99 default 99"] = "0-99 - standaard 99";
App::$strings["Default minimum affinity level"] = "Standaard laagste affiniteitsniveau";
App::$strings["0-99 - default 0"] = "0-99 - standaard 0";
App::$strings["Affinity Slider Settings"] = "Affiniteitsinstellingen";
App::$strings["Addon Settings"] = "Plug-ins";
App::$strings["Please save/submit changes to any panel before opening another."] = "Gewijzigde instellingen van een plug-in opslaan alvorens een nieuwe plug-in te openen.";
App::$strings["%s - (Experimental)"] = "%s - (experimenteel)";
App::$strings["Display Settings"] = "Weergave-instellingen";
App::$strings["Theme Settings"] = "Thema-instellingen";
App::$strings["Custom Theme Settings"] = "Handmatige thema-instellingen";
App::$strings["Content Settings"] = "Inhoudsinstellingen";
App::$strings["Display Theme:"] = "Gebruik thema:";
App::$strings["Select scheme"] = "Kies schema van thema";
App::$strings["Preload images before rendering the page"] = "Afbeeldingen laden voordat de pagina wordt getoond";
App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt getoond";
App::$strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan";
App::$strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde";
App::$strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum";
App::$strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:";
App::$strings["Maximum of 100 items"] = "Maximaal 100 conversaties";
App::$strings["Show emoticons (smilies) as images"] = "Toon emoticons (smilies) als afbeeldingen";
App::$strings["Provide channel menu in navigation bar"] = "Kanaalmenu op navigatiebalk tonen";
App::$strings["Default: channel menu located in app menu"] = "Standaard valt het kanaalmenu in het appmenu te vinden";
App::$strings["Manual conversation updates"] = "Handmatige conversatie-updates";
App::$strings["Default is on, turning this off may increase screen jumping"] = "Dit is standaard ingeschakeld en door dit uit te schakelen kunnen items soms verspringen.";
App::$strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken";
App::$strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)";
App::$strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina";
App::$strings["(comments displayed separately)"] = "(reacties worden afzonderlijk getoond)";
App::$strings["Use blog/list mode on grid page"] = "Gebruik blog/lijst-modus op jouw kanaalpagina";
App::$strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)";
App::$strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt";
App::$strings["Grid page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud (in pixels)";
App::$strings["Name is required"] = "Naam is vereist";
App::$strings["Key and Secret are required"] = "Key en secret zijn vereist";
App::$strings["Consumer Key"] = "Consumer key";
App::$strings["Icon url"] = "Pictogram-URL";
App::$strings["Optional"] = "Niet verplicht";
App::$strings["Application not found."] = "Applicatie niet gevonden.";
App::$strings["Connected Apps"] = "Verbonden applicaties";
App::$strings["View Photo"] = "Foto tonen";
App::$strings["Edit Album"] = "Album bewerken";
App::$strings["Upload"] = "Uploaden";
App::$strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de <a href=\"directory\">kanalengids</a>, om kanalen te vinden. Rechtsboven vind je ook <a href=\"directory\">apps</a>, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor <a href=\"directory\">hulp</a> met \$Projectname klik je op het vraagteken.";
App::$strings["Thing updated"] = "Ding bijgewerkt";
App::$strings["Object store: failed"] = "Opslaan van ding mislukt";
App::$strings["Thing added"] = "Ding toegevoegd";
App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
App::$strings["Show Thing"] = "Ding tonen";
App::$strings["item not found."] = "Item niet gevonden";
App::$strings["Edit Thing"] = "Ding bewerken";
App::$strings["Select a profile"] = "Kies een profiel";
App::$strings["Post an activity"] = "Plaats een bericht";
App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien.";
App::$strings["Name of thing e.g. something"] = "Naam van ding";
App::$strings["URL of thing (optional)"] = "URL van ding (niet verplicht)";
App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (niet verplicht)";
App::$strings["Permissions"] = "Permissies";
App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen";
App::$strings["No more system notifications."] = "Geen systeemmeldingen meer.";
App::$strings["System Notifications"] = "Systeemmeldingen";
App::$strings["Connection added."] = "Connectie toegevoegd.";
App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe.";
App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt.";
App::$strings["Import completed."] = "Import voltooid.";
App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken.";
App::$strings["Import Channel"] = "Kanaal importeren";
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."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaalidentiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken.";
App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in";
App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)";
App::$strings["Your old login email address"] = "Het e-mailadres van je oude account";
App::$strings["Your old login password"] = "Wachtwoord van jouw oude account";
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."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen.";
App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in";
App::$strings["Move this channel (disable all previous locations)"] = "Verplaats dit kanaal (schakelt alle voormalige locaties uit)";
App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importeer enkele maanden aan berichten wanneer mogelijk (afhankelijk van hoeveelheid geheugen hub)";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid.";
App::$strings["Authentication failed."] = "Authenticatie mislukt.";
App::$strings["Remote Authentication"] = "Authenticatie op afstand";
App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)";
App::$strings["Authenticate"] = "Authenticeren";
App::$strings["Permissions denied."] = "Permissies niet toegestaan";
App::$strings["Import"] = "Importeren";
App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling";
App::$strings["Return to your app and insert this Security Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:";
App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan.";
App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?";
App::$strings["Item not available."] = "Item is niet aanwezig.";
App::$strings["Edit Block"] = "Blok bewerken";
App::$strings["vcard"] = "vcard";
App::$strings["Apps"] = "Apps";
App::$strings["Manage apps"] = "Apps beheren";
App::$strings["Create new app"] = "Nieuwe app aanmaken";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s";
App::$strings["Mood"] = "Stemming";
App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties";
App::$strings["Active"] = "Actief";
App::$strings["Blocked"] = "Geblokkeerd";
App::$strings["Ignored"] = "Genegeerd";
App::$strings["Hidden"] = "Verborgen";
App::$strings["Archived/Unreachable"] = "Gearchiveerd/onbereikbaar";
App::$strings["New"] = "Nieuw";
App::$strings["All"] = "Alles";
App::$strings["Active Connections"] = "Actieve connecties";
App::$strings["Show active connections"] = "Actieve connecties tonen";
App::$strings["New Connections"] = "Nieuwe connecties";
App::$strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties tonen";
App::$strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties";
App::$strings["Only show ignored connections"] = "Toon alleen genegeerde connecties";
App::$strings["Only show archived/unreachable connections"] = "Alleen gearchiveerde/onbereikbare connecties tonen";
App::$strings["Only show hidden connections"] = "Toon alleen verborgen connecties";
App::$strings["Show all connections"] = "Toon alle connecties";
App::$strings["Pending approval"] = "Moet nog geaccepteerd worden";
App::$strings["Archived"] = "Gearchiveerd";
App::$strings["Not connected at this location"] = "Niet op deze locatie verbonden";
App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
App::$strings["Edit connection"] = "Connectie bewerken";
App::$strings["Delete connection"] = "Connectie verwijderen";
App::$strings["Channel address"] = "Kanaaladres";
App::$strings["Network"] = "Netwerk";
App::$strings["Call"] = "Bellen";
App::$strings["Status"] = "Status";
App::$strings["Connected"] = "Verbonden";
App::$strings["Approve connection"] = "Connectie accepteren";
App::$strings["Ignore connection"] = "Connectie negeren";
App::$strings["Ignore"] = "Negeren";
App::$strings["Recent activity"] = "Recente activiteit";
App::$strings["Connections"] = "Connecties";
App::$strings["Search your connections"] = "Doorzoek jouw connecties";
App::$strings["Connections search"] = "Connecties zoeken";
App::$strings["Find"] = "Vinden";
App::$strings["item"] = "item";
App::$strings["Source of Item"] = "Bron van item";
App::$strings["Bookmark added"] = "Bladwijzer toegevoegd";
App::$strings["My Bookmarks"] = "Mijn bladwijzers";
App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties";
App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd.";
App::$strings["Remove This Account"] = "Verwijder dit account";
App::$strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het \$Projectname-netwerk verwijderd.";
App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het \$Projectname-netwerk verwijderen";
App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het \$Projectname-netwerk verwijderd";
App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen.";
App::$strings["Album not found."] = "Album niet gevonden.";
App::$strings["Delete Album"] = "Verwijder album";
App::$strings["Delete Photo"] = "Verwijder foto";
App::$strings["No photos selected"] = "Geen foto's geselecteerd";
App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt.";
App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt.";
App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt.";
App::$strings["Upload Photos"] = "Foto's uploaden";
App::$strings["Enter an album name"] = "Vul een albumnaam in";
App::$strings["or select an existing album (doubleclick)"] = "of kies een bestaand album (dubbelklikken)";
App::$strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload.";
App::$strings["Description (optional)"] = "Omschrijving (niet verplicht)";
App::$strings["Show Newest First"] = "Nieuwste eerst tonen";
App::$strings["Show Oldest First"] = "Oudste eerst tonen";
App::$strings["Add Photos"] = "Foto's toevoegen";
App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt.";
App::$strings["Photo not available"] = "Foto niet aanwezig";
App::$strings["Use as profile photo"] = "Als profielfoto gebruiken";
App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken";
App::$strings["Private Photo"] = "Privéfoto";
App::$strings["View Full Size"] = "Volledige grootte tonen";
App::$strings["Edit photo"] = "Foto bewerken";
App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)";
App::$strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)";
App::$strings["Move photo to album"] = "Verplaatst foto naar album";
App::$strings["Enter a new album name"] = "Vul een nieuwe albumnaam in";
App::$strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)";
App::$strings["Add a Tag"] = "Tag toevoegen";
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl";
App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave";
App::$strings["I like this (toggle)"] = "Vind ik leuk";
App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk";
App::$strings["Please wait"] = "Even wachten";
App::$strings["This is you"] = "Dit ben jij";
App::$strings["Comment"] = "Reactie";
App::$strings["__ctx:title__ Likes"] = "vinden dit leuk";
App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk";
App::$strings["__ctx:title__ Agree"] = "eens";
App::$strings["__ctx:title__ Disagree"] = "oneens";
App::$strings["__ctx:title__ Abstain"] = "onthoudingen";
App::$strings["__ctx:title__ Attending"] = "aanwezig";
App::$strings["__ctx:title__ Not attending"] = "niet aanwezig";
App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig";
App::$strings["View all"] = "Toon alles";
App::$strings["__ctx:noun__ Like"] = array(
	0 => "vindt dit leuk",
	1 => "vinden dit leuk",
);
App::$strings["__ctx:noun__ Dislike"] = array(
	0 => "vindt dit niet leuk",
	1 => "vinden dit niet leuk",
);
App::$strings["Photo Tools"] = "Hulpmiddelen";
App::$strings["In This Photo:"] = "Op deze foto:";
App::$strings["Map"] = "Kaart";
App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk";
App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk";
App::$strings["Close"] = "Sluiten";
App::$strings["Recent Photos"] = "Recente foto's";
App::$strings["Profile Unavailable."] = "Profiel niet beschikbaar.";
App::$strings["Not found"] = "Niet gevonden";
App::$strings["Invalid channel"] = "Onbekend kanaal";
App::$strings["Error retrieving wiki"] = "Fout tijdens ophalen wiki";
App::$strings["Error creating zip file export folder"] = "Fout tijdens aanmaken exportmap zipbestand";
App::$strings["Error downloading wiki: "] = "Fout tijdens downloaden wiki: ";
App::$strings["Wikis"] = "Wiki's";
App::$strings["Download"] = "Download";
App::$strings["Create New"] = "Nieuwe aanmaken";
App::$strings["Wiki name"] = "Naam wiki";
App::$strings["Content type"] = "Opmaaktype";
App::$strings["Markdown"] = "Markdown";
App::$strings["BBcode"] = "BBcode";
App::$strings["Text"] = "Tekst";
App::$strings["Type"] = "Type";
App::$strings["Any&nbsp;type"] = "Elk&nbsp;type";
App::$strings["Lock content type"] = "Opmaaktype vastzetten";
App::$strings["Create a status post for this wiki"] = "Plaats een bericht over deze wiki";
App::$strings["Edit Wiki Name"] = "Naam wiki bewerken";
App::$strings["Wiki not found"] = "Wiki is niet gevonden";
App::$strings["Rename page"] = "Pagina hernoemen";
App::$strings["Error retrieving page content"] = "Fout tijdens ophalen inhoud pagina";
App::$strings["New page"] = "Nieuwe pagina";
App::$strings["Revision Comparison"] = "Revisies vergelijken";
App::$strings["Revert"] = "Ongedaan maken";
App::$strings["Short description of your changes (optional)"] = "Korte omschrijving van jouw wijzigingen (niet verplicht)";
App::$strings["Source"] = "Bron";
App::$strings["New page name"] = "Nieuwe paginanaam";
App::$strings["Embed image from photo albums"] = "Afbeelding uit een fotoalbum invoegen";
App::$strings["Embed an image from your albums"] = "Afbeelding uit jouw albums invoegen";
App::$strings["OK"] = "OK";
App::$strings["Choose images to embed"] = "Kies afbeeldingen om in te voegen";
App::$strings["Choose an album"] = "Kies een album";
App::$strings["Choose a different album"] = "Kies een ander album";
App::$strings["Error getting album list"] = "Fout tijdens ophalen albumlijst";
App::$strings["Error getting photo link"] = "Fout tijdens ophalen fotolink";
App::$strings["Error getting album"] = "Fout tijdens ophalen album";
App::$strings["Error creating wiki. Invalid name."] = "Fout tijdens aanmaken wiki. Ongeldige naam.";
App::$strings["A wiki with this name already exists."] = "Er bestaat al een wiki onder deze naam";
App::$strings["Wiki created, but error creating Home page."] = "Wiki aangemaakt, maar fout tijdens aanmaken homepagina.";
App::$strings["Error creating wiki"] = "Fout tijdens aanmaken wiki.";
App::$strings["Error updating wiki. Invalid name."] = "Fout tijdens bijwerken wiki. Ongeldige naam.";
App::$strings["Error updating wiki"] = "Fout tijdens bijwerken wiki";
App::$strings["Wiki delete permission denied."] = "Toegang geweigerd tijdens verwijderen wiki.";
App::$strings["Error deleting wiki"] = "Fout tijdens verwijderen wiki";
App::$strings["New page created"] = "Nieuwe pagina aangemaakt";
App::$strings["Cannot delete Home"] = "Kan Home niet verwijderen";
App::$strings["Current Revision"] = "Huidige revisie";
App::$strings["Selected Revision"] = "Geselecteerde revisie";
App::$strings["You must be authenticated."] = "Je moet geauthenticeerd zijn";
App::$strings["toggle full screen mode"] = "Volledig scherm";
App::$strings["Layout updated."] = "Lay-out bijgewerkt.";
App::$strings["Feature disabled."] = "Functie uitgeschakeld.";
App::$strings["Edit System Page Description"] = "Systeempagina's bewerken";
App::$strings["(modified)"] = "(aangepast)";
App::$strings["Reset"] = "Opnieuw instellen";
App::$strings["Layout not found."] = "Lay-out niet gevonden.";
App::$strings["Module Name:"] = "Modulenaam:";
App::$strings["Layout Help"] = "Lay-out-hulp";
App::$strings["Edit another layout"] = "Andere systeempagina bewerken";
App::$strings["System layout"] = "Systeemlay-out";
App::$strings["Poke"] = "Aanstoten";
App::$strings["Poke somebody"] = "Iemand aanstoten";
App::$strings["Poke/Prod"] = "Aanstoten/porren";
App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren";
App::$strings["Recipient"] = "Ontvanger";
App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen";
App::$strings["Make this post private"] = "Maak dit bericht privé";
App::$strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. ";
App::$strings["Profile Photos"] = "Profielfoto's";
App::$strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden.";
App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt getoond.";
App::$strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden";
App::$strings["Image upload failed."] = "Uploaden afbeelding mislukt";
App::$strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken.";
App::$strings["Photo not available."] = "Foto niet beschikbaar.";
App::$strings["Upload File:"] = "Bestand uploaden:";
App::$strings["Select a profile:"] = "Kies een profiel:";
App::$strings["Use Photo for Profile"] = "Als profielfoto gebruiken";
App::$strings["Change Profile Photo"] = "Profielfoto wijzigen";
App::$strings["Use"] = "Gebruiken";
App::$strings["Use a photo from your albums"] = "Gebruik een foto uit jouw albums";
App::$strings["Select existing photo"] = "Kies een bestaande foto";
App::$strings["Crop Image"] = "Afbeelding bijsnijden";
App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt getoond.";
App::$strings["Done Editing"] = "Klaar met bewerken";
App::$strings["Away"] = "Afwezig";
App::$strings["Online"] = "Online";
App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. ";
App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd";
App::$strings["Duplicate post suppressed."] = "Dubbel bericht tegengehouden.";
App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen.";
App::$strings["Your comment is awaiting approval."] = "Jouw reactie moet nog worden goedgekeurd";
App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen.";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt.";
App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt.";
App::$strings["sent you a private message"] = "stuurde jou een privébericht";
App::$strings["added your channel"] = "voegde jouw kanaal toe";
App::$strings["requires approval"] = "vereist goedkeuring";
App::$strings["g A l F d"] = "G:i, l d F";
App::$strings["[today]"] = "[vandaag]";
App::$strings["posted an event"] = "plaatste een gebeurtenis";
App::$strings["shared a file with you"] = "deelde een bestand met jou";
App::$strings["Invalid item."] = "Ongeldig item.";
App::$strings["Page not found."] = "Pagina niet gevonden.";
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["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens.";
App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden.";
App::$strings["Connection updated."] = "Connectie bijgewerkt.";
App::$strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt.";
App::$strings["is now connected to"] = "is nu verbonden met";
App::$strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie.";
App::$strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar";
App::$strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen.";
App::$strings["Connection has been removed."] = "Connectie is verwijderd";
App::$strings["View Profile"] = "Profiel tonen";
App::$strings["View %s's profile"] = "Profiel van %s tonen";
App::$strings["Refresh Permissions"] = "Permissies vernieuwen";
App::$strings["Fetch updated permissions"] = "Aangepaste permissies ophalen";
App::$strings["Refresh Photo"] = "Foto vernieuwen";
App::$strings["Fetch updated photo"] = "Aangepaste foto ophalen";
App::$strings["Recent Activity"] = "Recente activiteit/berichten";
App::$strings["View recent posts and comments"] = "Recente berichten en reacties tonen";
App::$strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie";
App::$strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!";
App::$strings["Unignore"] = "Niet meer negeren";
App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie";
App::$strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!";
App::$strings["Unarchive"] = "Niet meer archiveren";
App::$strings["Archive"] = "Archiveren";
App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud";
App::$strings["This connection is archived!"] = "Deze connectie is gearchiveerd!";
App::$strings["Unhide"] = "Niet meer verbergen";
App::$strings["Hide"] = "Verbergen";
App::$strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties";
App::$strings["This connection is hidden!"] = "Deze connectie is verborgen!";
App::$strings["Delete this connection"] = "Deze connectie verwijderen";
App::$strings["Fetch Vcard"] = "Vcard ophalen";
App::$strings["Fetch electronic calling card for this connection"] = "Visitekaartje van deze connectie ophalen";
App::$strings["Open Individual Permissions section by default"] = "Sectie met individuele permissies standaard openen";
App::$strings["Affinity"] = "Affiniteit";
App::$strings["Open Set Affinity section by default"] = "Sectie met de affiniteitsinstelling standaard openen";
App::$strings["Me"] = "Ik";
App::$strings["Family"] = "Familie";
App::$strings["Acquaintances"] = "Kennissen";
App::$strings["Filter"] = "Filter";
App::$strings["Open Custom Filter section by default"] = "Sectie met de berichtenfilter standaard openen";
App::$strings["Approve this connection"] = "Deze connectie accepteren";
App::$strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan";
App::$strings["Set Affinity"] = "Affiniteit instellen";
App::$strings["Set Profile"] = "Profiel instellen";
App::$strings["Set Affinity & Profile"] = "Affiniteit en profiel instellen";
App::$strings["This connection is unreachable from this location."] = "Deze connectie is onbereikbaar vanaf deze locatie";
App::$strings["This connection may be unreachable from other channel locations."] = "Deze connectie is mogelijk onbereikbaar vanaf andere kanaallocaties.";
App::$strings["Location independence is not supported by their network."] = "Het netwerk van deze connectie ondersteund geen locatieonafhankelijkheid.";
App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Deze connectie is onbereikbaar vanaf deze locatie. Het netwerk van deze connectie ondersteunt geen locatieonafhankelijkheid.";
App::$strings["Connection Default Permissions"] = "Standaard permissies voor connecties";
App::$strings["Connection: %s"] = "Connectie: %s";
App::$strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen";
App::$strings["Connection requests will be approved without your interaction"] = "Connectieverzoeken zullen automatisch worden geaccepteerd";
App::$strings["Permission role"] = "Permissietype";
App::$strings["Loading"] = "Aan het laden";
App::$strings["Add permission role"] = "Permissietype toevoegen";
App::$strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is";
App::$strings["Available locations:"] = "Beschikbare locaties:";
App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast.";
App::$strings["Connection Tools"] = "Hulpmiddelen";
App::$strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag";
App::$strings["Rating"] = "Beoordeling";
App::$strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven";
App::$strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)";
App::$strings["Custom Filter"] = "Berichtenfilter";
App::$strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst";
App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1)  - laat leeg om alle berichten te importeren";
App::$strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst";
App::$strings["This information is public!"] = "Deze informatie is openbaar!";
App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken.";
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."] = "Sommige permissies worden mogelijk overgeërfd van de <a href=\"settings\">privacyinstellingen</a> van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. ";
App::$strings["Last update:"] = "Laatste wijziging:";
App::$strings["Details"] = "Details";
App::$strings["Room not found"] = "Chatkanaal niet gevonden";
App::$strings["Leave Room"] = "Chatkanaal verlaten";
App::$strings["Delete Room"] = "Chatkanaal verwijderen";
App::$strings["I am away right now"] = "Ik ben momenteel afwezig";
App::$strings["I am online"] = "Ik ben online";
App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen";
App::$strings["Please enter a link URL:"] = "Vul een URL in:";
App::$strings["Encrypt text"] = "Tekst versleutelen";
App::$strings["New Chatroom"] = "Nieuw chatkanaal";
App::$strings["Chatroom name"] = "Naam chatkanaal";
App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd";
App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s";
App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar";
App::$strings["Expiration"] = "Verloopt na";
App::$strings["min"] = "min";
App::$strings["Photos"] = "Foto's";
App::$strings["Files"] = "Bestanden";
App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen";
App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken.";
App::$strings["Menu Name"] = "Menunaam";
App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)";
App::$strings["Menu Title"] = "Menutitel";
App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)";
App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan";
App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan";
App::$strings["Submit and proceed"] = "Opslaan en doorgaan";
App::$strings["Menus"] = "Menu's";
App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan";
App::$strings["Delete this menu"] = "Menu verwijderen";
App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu";
App::$strings["Edit this menu"] = "Dit menu bewerken";
App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden.";
App::$strings["Edit Menu"] = "Menu bewerken";
App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder";
App::$strings["Menu name"] = "Naam van menu";
App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou.";
App::$strings["Menu title"] = "Titel van menu";
App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien.";
App::$strings["Allow bookmarks"] = "Bladwijzers toestaan";
App::$strings["Layouts"] = "Lay-outs";
App::$strings["Help"] = "Hulp";
App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche";
App::$strings["Layout Description"] = "Lay-out-omschrijving";
App::$strings["Download PDL file"] = "Download PDL-bestand";
App::$strings["Please refresh page"] = "Vernieuw de pagina";
App::$strings["Unknown error"] = "Onbekende fout";
App::$strings["Token verification failed."] = "Tokenverificatie mislukt";
App::$strings["Email Verification Required"] = "E-mailverificatie vereist";
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."] = "Er is een verificatietoken naar jouw e-mailadres verstuurd [%s]. Vul deze token hier in om de accountverificatie te voltooien. Wanneer het e-mailbericht niet is aangekomen, wacht dan nog een paar minuten en controleer jouw spamfolder.";
App::$strings["Resend Email"] = "E-mail opnieuw versturen";
App::$strings["Validation token"] = "Verificatie-token";
App::$strings["Post not found."] = "Bericht niet gevonden.";
App::$strings["post"] = "bericht";
App::$strings["comment"] = "reactie";
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s";
App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces  en bewerken is geblokkeerd.";
App::$strings["Configuration Editor"] = "Configuratiebewerker";
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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. ";
App::$strings["If enabled, connection requests will be approved without your interaction"] = "Wanneer ingeschakeld worden connectieverzoeken automatisch geaccepteerd";
App::$strings["Automatic approval settings"] = "Instellingen automatisch accepteren";
App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Sommige individuele permissies kunnen een standaardinstelling hebben of zijn vergrendeld, afhankelijk van je kanaaltype of privacyinstellingen.";
App::$strings["Unknown App"] = "Onbekende applicatie";
App::$strings["Authorize"] = "Autoriseren";
App::$strings["Do you authorize the app %s to access your channel data?"] = "Geef je toestemming aan de app %s om toegang te krijgen tot jouw kanaalgegevens?";
App::$strings["Allow"] = "Toestaan";
App::$strings["Privacy group created."] = "Privacygroep aangemaakt";
App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken";
App::$strings["Privacy group not found."] = "Privacygroep niet gevonden";
App::$strings["Privacy group updated."] = "Privacygroep bijgewerkt";
App::$strings["Create a group of channels."] = "Privacygroep met kanalen aanmaken";
App::$strings["Privacy group name: "] = "Naam privacygroep: ";
App::$strings["Members are visible to other channels"] = "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen";
App::$strings["Privacy group removed."] = "Privacygroep verwijderd.";
App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt";
App::$strings["Privacy group editor"] = "Privacygroep bewerken";
App::$strings["Members"] = "Kanalen";
App::$strings["All Connected Channels"] = "Alle kanaalconnecties";
App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen.";
App::$strings["Profile not found."] = "Profiel niet gevonden.";
App::$strings["Profile deleted."] = "Profiel verwijderd.";
App::$strings["Profile-"] = "Profiel-";
App::$strings["New profile created."] = "Nieuw profiel aangemaakt.";
App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen";
App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren";
App::$strings["Profile Name is required."] = "Profielnaam is vereist";
App::$strings["Marital Status"] = "Huwelijke status";
App::$strings["Romantic Partner"] = "Romantische partner";
App::$strings["Likes"] = "Houdt van";
App::$strings["Dislikes"] = "Houdt niet van";
App::$strings["Work/Employment"] = "Werk/arbeid";
App::$strings["Religion"] = "Religie";
App::$strings["Political Views"] = "Politieke overtuigingen";
App::$strings["Gender"] = "Geslacht";
App::$strings["Sexual Preference"] = "Seksuele voorkeur";
App::$strings["Homepage"] = "Homepage";
App::$strings["Interests"] = "Interesses";
App::$strings["Profile updated."] = "Profiel bijgewerkt";
App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien.";
App::$strings["Edit Profile Details"] = "Profiel bewerken";
App::$strings["View this profile"] = "Profiel tonen";
App::$strings["Edit visibility"] = "Zichtbaarheid bewerken";
App::$strings["Profile Tools"] = "Hulpmiddelen";
App::$strings["Change cover photo"] = "Omslagfoto wijzigen";
App::$strings["Change profile photo"] = "Profielfoto veranderen";
App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis";
App::$strings["Clone this profile"] = "Dit profiel klonen";
App::$strings["Delete this profile"] = "Dit profiel verwijderen";
App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen";
App::$strings["Personal"] = "Persoonlijk";
App::$strings["Relationship"] = "Relatie";
App::$strings["Miscellaneous"] = "Diversen";
App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren";
App::$strings["Export profile to file"] = "Profiel naar bestand exporteren";
App::$strings["Your gender"] = "Jouw geslacht";
App::$strings["Marital status"] = "Burgerlijke staat";
App::$strings["Sexual preference"] = "Seksuele voorkeur";
App::$strings["Profile name"] = "Profielnaam";
App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel";
App::$strings["Your full name"] = "Jouw volledige naam";
App::$strings["Title/Description"] = "Titel/omschrijving";
App::$strings["Street address"] = "Straat en huisnummer";
App::$strings["Locality/City"] = "Woonplaats";
App::$strings["Region/State"] = "Provincie/gewest/deelstaat";
App::$strings["Postal/Zip code"] = "Postcode";
App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)";
App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl";
App::$strings["Since (date)"] = "Sinds (datum)";
App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf";
App::$strings["Homepage URL"] = "URL homepagina";
App::$strings["Hometown"] = "Oorspronkelijk uit";
App::$strings["Political views"] = "Politieke overtuigingen";
App::$strings["Religious views"] = "Religieuze overtuigingen";
App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids";
App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software";
App::$strings["Musical interests"] = "Muzikale interesses";
App::$strings["Books, literature"] = "Boeken/literatuur";
App::$strings["Television"] = "Televisie";
App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment";
App::$strings["Hobbies/Interests"] = "Hobby's/interesses";
App::$strings["Love/Romance"] = "Liefde/romantiek";
App::$strings["School/Education"] = "School/opleiding";
App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken";
App::$strings["My other channels"] = "Mijn andere kanalen";
App::$strings["Communications"] = "Communicatie";
App::$strings["Profile Image"] = "Profielfoto";
App::$strings["Edit Profiles"] = "Bewerk profielen";
App::$strings["This page is available only to site members"] = "Deze pagina is alleen toegankelijk voor hubleden";
App::$strings["Welcome"] = "Welkom";
App::$strings["What would you like to do?"] = "Wat wil je graag doen?";
App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Maak een bladwijzer voor deze pagina aan, wanneer je in de toekomst hier weer naar wil terugkeren";
App::$strings["Upload a profile photo"] = "Profielfoto uploaden";
App::$strings["Upload a cover photo"] = "Omslagfoto uploaden";
App::$strings["Edit your default profile"] = "Jouw standaardprofiel bewerken";
App::$strings["View friend suggestions"] = "Kanaalvoorstellen tonen";
App::$strings["View the channel directory"] = "Kanalengids tonen";
App::$strings["View/edit your channel settings"] = "Jouw profielinstellingen bekijken/bewerken";
App::$strings["View the site or project documentation"] = "Documentatie van deze hub en het Hubzillaproject tonen";
App::$strings["Visit your channel homepage"] = "Jouw kanaalpagina tonen";
App::$strings["View your connections and/or add somebody whose address you already know"] = "Jouw connecties tonen en/of iemand toevoegen waarvan je het adres al weet";
App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Jouw persoonlijke tijdlijn tonen (deze is waarschijnlijk leeg totdat je enkele connecties toevoegt)";
App::$strings["View the public stream. Warning: this content is not moderated"] = "De openbare tijdlijn tonen. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd.";
App::$strings["Page link"] = "Paginalink";
App::$strings["Edit Webpage"] = "Webpagina bewerken";
App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken";
App::$strings["Channel Manager"] = "Kanaalbeheer";
App::$strings["Current Channel"] = "Huidig kanaal";
App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken.";
App::$strings["Default Channel"] = "Standaardkanaal";
App::$strings["Make Default"] = "Als standaard instellen";
App::$strings["%d new messages"] = "%d nieuwe berichten";
App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken";
App::$strings["Delegated Channel"] = "Uitbesteed kanaal";
App::$strings["Cards"] = "Kaarten";
App::$strings["Add Card"] = "Kaart toevoegen";
App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig";
App::$strings["About this site"] = "Over deze hub";
App::$strings["Site Name"] = "Hubnaam";
App::$strings["Administrator"] = "Beheerder";
App::$strings["Terms of Service"] = "Gebruiksvoorwaarden";
App::$strings["Software and Project information"] = "Software- en projectinformatie";
App::$strings["This site is powered by \$Projectname"] = "Dit is een \$Projectname-hub";
App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Federatieve en gedecentraliseerde netwerk- en identiteitsdiensten, mogelijk gemaakt door Zot";
App::$strings["Version %s"] = "Versie %s";
App::$strings["Project homepage"] = "Projectwebsite";
App::$strings["Developer homepage"] = "Ontwikkelaarswebsite";
App::$strings["No ratings"] = "Geen beoordelingen";
App::$strings["Ratings"] = "Beoordelingen";
App::$strings["Rating: "] = "Beoordeling: ";
App::$strings["Website: "] = "Website: ";
App::$strings["Description: "] = "Omschrijving: ";
App::$strings["Import Webpage Elements"] = "Webpagina-elementen importeren";
App::$strings["Import selected"] = "Importbestand geselecteerd";
App::$strings["Export Webpage Elements"] = "Webpagina-elementen exporteren";
App::$strings["Export selected"] = "Selectie exporteren";
App::$strings["Webpages"] = "Webpagina's";
App::$strings["Actions"] = "Acties";
App::$strings["Page Link"] = "Paginalink";
App::$strings["Page Title"] = "Paginatitel";
App::$strings["Invalid file type."] = "Ongeldig bestandsformaat";
App::$strings["Error opening zip file"] = "Fout tijdens openen zipbestand";
App::$strings["Invalid folder path."] = "Ongeldige maplocatie";
App::$strings["No webpage elements detected."] = "Geen webpagina-elementen gedecteerd";
App::$strings["Import complete."] = "Importeren voltooid.";
App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Veranderen van kanaaladres is niet toegestaan binnen 48 uur na het veranderen van het accountwachtwoord.";
App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere.";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik.";
App::$strings["Change channel nickname/address"] = "Kanaaladres veranderen";
App::$strings["Any/all connections on other networks will be lost!"] = "Alle connecties op andere netwerken gaan verloren!";
App::$strings["New channel address"] = "Nieuw kanaaladres";
App::$strings["Rename Channel"] = "Kanaal hernoemen";
App::$strings["Item is not editable"] = "Item is niet te bewerken";
App::$strings["Edit post"] = "Bericht bewerken";
App::$strings["Invalid message"] = "Ongeldig bericht";
App::$strings["no results"] = "geen resultaten";
App::$strings["channel sync processed"] = "kanaalsync verwerkt";
App::$strings["queued"] = "in wachtrij";
App::$strings["posted"] = "verstuurd";
App::$strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden";
App::$strings["updated"] = "geüpdatet";
App::$strings["update ignored"] = "update genegeerd";
App::$strings["permission denied"] = "toegang geweigerd";
App::$strings["recipient not found"] = "ontvanger niet gevonden";
App::$strings["mail recalled"] = "Privébericht ingetrokken";
App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen";
App::$strings["mail delivered"] = "privébericht afgeleverd";
App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s";
App::$strings["Options"] = "Opties";
App::$strings["Redeliver"] = "Opnieuw afleveren";
App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd.";
App::$strings["Source created."] = "Bron aangemaakt.";
App::$strings["Source updated."] = "Bron aangemaakt.";
App::$strings["*"] = "*";
App::$strings["Channel Sources"] = "Kanaalbronnen";
App::$strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal";
App::$strings["New Source"] = "Nieuwe bron";
App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen.";
App::$strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)";
App::$strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren";
App::$strings["Channel Name"] = "Kanaalnaam";
App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)";
App::$strings["Source not found."] = "Bron niet gevonden";
App::$strings["Edit Source"] = "Bron bewerken";
App::$strings["Delete Source"] = "Bron verwijderen";
App::$strings["Source removed"] = "Bron verwijderd";
App::$strings["Unable to remove source."] = "Verwijderen bron mislukt.";
App::$strings["Like/Dislike"] = "Leuk/niet leuk";
App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd.";
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."] = "Je dient <a href=\"rmagic\">in te loggen met je \$Projectname-account</a> of <a href=\"register\">een nieuw \$Projectname-account aan te maken</a> om verder te kunnen gaan.";
App::$strings["Invalid request."] = "Ongeldig verzoek";
App::$strings["channel"] = "kanaal";
App::$strings["thing"] = "ding";
App::$strings["Channel unavailable."] = "Kanaal  niet beschikbaar.";
App::$strings["Previous action reversed."] = "Vorige actie omgedraaid";
App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk";
App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk";
App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s";
App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s";
App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s";
App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s";
App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s";
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s";
App::$strings["Action completed."] = "Actie voltooid";
App::$strings["Thank you."] = "Bedankt";
App::$strings["No default suggestions were found."] = "Er zijn geen standaard kanaalvoorstellen gevonden.";
App::$strings["%d rating"] = array(
	0 => "%d beoordeling",
	1 => "%d beoordelingen",
);
App::$strings["Gender: "] = "Geslacht:";
App::$strings["Status: "] = "Status: ";
App::$strings["Homepage: "] = "Homepage: ";
App::$strings["Age:"] = "Leeftijd:";
App::$strings["Location:"] = "Plaats:";
App::$strings["Description:"] = "Omschrijving:";
App::$strings["Hometown:"] = "Oorspronkelijk uit:";
App::$strings["About:"] = "Over:";
App::$strings["Connect"] = "Verbinden";
App::$strings["Public Forum:"] = "Openbaar forum:";
App::$strings["Keywords: "] = "Trefwoorden: ";
App::$strings["Don't suggest"] = "Niet voorstellen";
App::$strings["Common connections (estimated):"] = "Gemeenschappelijke connecties (schatting):";
App::$strings["Global Directory"] = "Volledige kanalengids";
App::$strings["Local Directory"] = "Lokale kanalengids";
App::$strings["Finding:"] = "Gezocht naar:";
App::$strings["Channel Suggestions"] = "Voorgestelde kanalen";
App::$strings["next page"] = "volgende pagina";
App::$strings["previous page"] = "vorige pagina";
App::$strings["Sort options"] = "Sorteeropties";
App::$strings["Alphabetic"] = "Alfabetisch";
App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch";
App::$strings["Newest to Oldest"] = "Nieuw naar oud";
App::$strings["Oldest to Newest"] = "Oud naar nieuw";
App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn).";
App::$strings["Xchan Lookup"] = "Xchan opzoeken";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:";
App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer.";
App::$strings["Ignore/Hide"] = "Negeren/Verbergen";
App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden";
App::$strings["Post successful."] = "Verzenden bericht geslaagd.";
App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken.";
App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren.";
App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren";
App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt.";
App::$strings["Messages"] = "Berichten";
App::$strings["message"] = "bericht";
App::$strings["Message recalled."] = "Bericht ingetrokken.";
App::$strings["Conversation removed."] = "Conversatie verwijderd";
App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM";
App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar";
App::$strings["Send Private Message"] = "Privébericht versturen";
App::$strings["To:"] = "Aan:";
App::$strings["Subject:"] = "Onderwerp:";
App::$strings["Attach file"] = "Bestand toevoegen";
App::$strings["Send"] = "Verzenden";
App::$strings["Set expiration date"] = "Verloopdatum instellen";
App::$strings["Delete message"] = "Bericht verwijderen";
App::$strings["Delivery report"] = "Afleveringsrapport";
App::$strings["Recall message"] = "Bericht intrekken";
App::$strings["Message has been recalled."] = "Bericht is ingetrokken.";
App::$strings["Delete Conversation"] = "Verwijder conversatie";
App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. <strong>Mogelijk</strong> kan je reageren op de kanaalpagina van de afzender.";
App::$strings["Send Reply"] = "Antwoord versturen";
App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):";
App::$strings["Public Hubs"] = "Openbare hubs";
App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "Op de hier getoonde hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. <strong>Mogelijk</strong> wordt hierover op de hub zelf meer informatie gegeven.";
App::$strings["Hub URL"] = "Hub-URL";
App::$strings["Access Type"] = "Toegangs-<br/>&nbsp;type";
App::$strings["Registration Policy"] = "Registratie-<br/>&nbsp;beleid";
App::$strings["Stats"] = "Stats";
App::$strings["Software"] = "Software";
App::$strings["Rate"] = "Beoordeel";
App::$strings["webpage"] = "Webpagina";
App::$strings["block"] = "blok";
App::$strings["layout"] = "lay-out";
App::$strings["menu"] = "menu";
App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd";
App::$strings["%s element installation failed"] = "Installatie %s-element mislukt";
App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap";
App::$strings["Save Bookmark"] = "Bladwijzer opslaan";
App::$strings["URL of bookmark"] = "URL van bladwijzer";
App::$strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap";
App::$strings["Enter a folder name"] = "Vul een mapnaam in";
App::$strings["or select an existing folder (doubleclick)"] = "of kies een bestaande map (dubbelklikken)";
App::$strings["Save to Folder"] = "In map opslaan";
App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s";
App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals.";
App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden.";
App::$strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen.";
App::$strings["Registration successful. Continue to create your first channel..."] = "Registratie geslaagd. Ga verder met het aanmaken van jouw eerste kanaal...";
App::$strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies.";
App::$strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze \$Projectname-hub.";
App::$strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden.";
App::$strings["Registration on this hub is disabled."] = "Registreren van nieuwe accounts is op deze hub uitgeschakeld.";
App::$strings["Registration on this hub is by approval only."] = "Registraties op deze hub moeten eerst worden goedgekeurd.";
App::$strings["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">Registreer op een andere hub</a>.";
App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze \$Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals.";
App::$strings["I accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub";
App::$strings["I am over %s years of age and accept the %s for this website"] = "Ik ben %s jaar of ouder en accepteer de %s van deze hub";
App::$strings["Your email address"] = "Jouw e-mailadres";
App::$strings["Choose a password"] = "Geef een wachtwoord op";
App::$strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op";
App::$strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in";
App::$strings["no"] = "Nee";
App::$strings["yes"] = "Ja";
App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging.";
App::$strings["Register"] = "Registreren";
App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Deze hub vereist e-mailverificatie. Controleer na het indienen van dit formulier jouw e-mail voor verdere instructies.";
App::$strings["Cover Photos"] = "Omslagfoto's";
App::$strings["female"] = "vrouw";
App::$strings["%1\$s updated her %2\$s"] = "%1\$s heeft haar %2\$s bijgewerkt";
App::$strings["male"] = "man";
App::$strings["%1\$s updated his %2\$s"] = "%1\$s heeft zijn %2\$s bijgewerkt";
App::$strings["%1\$s updated their %2\$s"] = "De %2\$s van %1\$s is bijgewerkt";
App::$strings["cover photo"] = "omslagfoto";
App::$strings["Change Cover Photo"] = "Omslagfoto wijzigen";
App::$strings["Documentation Search"] = "Zoek documentatie";
App::$strings["About"] = "Over";
App::$strings["Administrators"] = "Beheerders";
App::$strings["Developers"] = "Ontwikkelaars";
App::$strings["Tutorials"] = "Zelfstudie";
App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie";
App::$strings["Contents"] = "Inhoud";
App::$strings["Article"] = "Artikel";
App::$strings["Item has been removed."] = "Item is verwijderd";
App::$strings["Tag removed"] = "Tag verwijderd";
App::$strings["Remove Item Tag"] = "Verwijder item-tag";
App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen";
App::$strings["No such group"] = "Collectie niet gevonden";
App::$strings["No such channel"] = "Niet zo'n kanaal";
App::$strings["forum"] = "forum";
App::$strings["Search Results For:"] = "Zoekresultaten voor:";
App::$strings["Privacy group is empty"] = "Privacygroep is leeg";
App::$strings["Privacy group: "] = "Privacygroep: ";
App::$strings["Invalid connection."] = "Ongeldige connectie.";
App::$strings["Invalid channel."] = "Onbekend kanaal.";
App::$strings["network"] = "netwerk";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["Welcome to %s"] = "Welkom op %s";
App::$strings["Permission Denied."] = "Toegang geweigerd";
App::$strings["File not found."] = "Bestand niet gevonden.";
App::$strings["Edit file permissions"] = "Bestandsrechten bewerken";
App::$strings["Set/edit permissions"] = "Rechten instellen/bewerken";
App::$strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen";
App::$strings["Return to file list"] = "Terugkeren naar bestandlijst ";
App::$strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen";
App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen";
App::$strings["Share this file"] = "Dit bestand delen";
App::$strings["Show URL to this file"] = "Toon URL van dit bestand";
App::$strings["Show in your contacts shared folder"] = "In de met jouw connecties gedeelde map tonen ";
App::$strings["No channel."] = "Geen kanaal.";
App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties.";
App::$strings["View Common Connections"] = "Gemeenschappelijke connecties tonen";
App::$strings["Email verification resent"] = "E-mailverificatie opnieuw verzonden";
App::$strings["Unable to resend email verification message."] = "Opnieuw verzenden e-mailverificatie mislukt";
App::$strings["No connections."] = "Geen connecties.";
App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]";
App::$strings["View Connections"] = "Connecties tonen";
App::$strings["Blocked accounts"] = "Geblokkeerde accounts";
App::$strings["Expired accounts"] = "Verlopen accounts";
App::$strings["Expiring accounts"] = "Accounts die nog moeten verlopen";
App::$strings["Clones"] = "Klonen";
App::$strings["Message queues"] = "Berichtenwachtrij";
App::$strings["Your software should be updated"] = "Jouw software moet worden bijgewerkt ";
App::$strings["Summary"] = "Samenvatting";
App::$strings["Registered accounts"] = "Geregistreerde accounts";
App::$strings["Pending registrations"] = "Accounts die op goedkeuring wachten";
App::$strings["Registered channels"] = "Geregistreerde kanalen";
App::$strings["Active plugins"] = "Ingeschakelde plug-ins";
App::$strings["Version"] = "Versie";
App::$strings["Repository version (master)"] = "Versie repository (master)";
App::$strings["Repository version (dev)"] = "Versie repository (dev)";
App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden.";
App::$strings["Website:"] = "Website:";
App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)";
App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)";
App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)";
App::$strings["Edit Card"] = "Kaart bewerken";
App::$strings["No valid account found."] = "Geen geldige account gevonden.";
App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail.";
App::$strings["Site Member (%s)"] = "Lid van hub (%s)";
App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend";
App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt.";
App::$strings["Password Reset"] = "Wachtwoord vergeten?";
App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht.";
App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is";
App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en";
App::$strings["click here to login"] = "klik dan hier om in te loggen";
App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Jouw wachtwoord kan worden veranderd onder <em>instellingen</em>, nadat je succesvol bent ingelogd.";
App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd";
App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?";
App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies.";
App::$strings["Email Address"] = "E-mailadres";
App::$strings["Mark all seen"] = "Markeer alles als bekeken";
App::$strings["0. Beginner/Basic"] = "0. Beginner/basic";
App::$strings["1. Novice - not skilled but willing to learn"] = "1. Onervaren - niet bekwaam, maar wil graag leren";
App::$strings["2. Intermediate - somewhat comfortable"] = "2. Ervaren - voelt zich enigszins comfortabel";
App::$strings["3. Advanced - very comfortable"] = "3. Gevorderd - voelt zich comfortabel";
App::$strings["4. Expert - I can write computer code"] = "4. Expert - kan programmeren";
App::$strings["5. Wizard - I probably know more than you do"] = "5. Wizard - ik weet waarschijnlijk meer dan jij";
App::$strings["Site Admin"] = "Hubbeheerder";
App::$strings["Report Bug"] = "Bugrapport indienen";
App::$strings["View Bookmarks"] = "Bladwijzers bekijken";
App::$strings["My Chatrooms"] = "Mijn chatkanalen";
App::$strings["Firefox Share"] = "Firefox Share";
App::$strings["Remote Diagnostics"] = "Diagnose op afstand";
App::$strings["Suggest Channels"] = "Kanalen voorstellen";
App::$strings["Login"] = "Inloggen";
App::$strings["Activity"] = "Jouw tijdlijn";
App::$strings["Wiki"] = "Wiki";
App::$strings["Channel Home"] = "Jouw kanaal";
App::$strings["Events"] = "Agenda";
App::$strings["Directory"] = "Kanalengids";
App::$strings["Mail"] = "Privéberichten";
App::$strings["Chat"] = "Chatten";
App::$strings["Probe"] = "Onderzoeken";
App::$strings["Suggest"] = "Voorstellen";
App::$strings["Random Channel"] = "Willekeurig kanaal";
App::$strings["Invite"] = "Uitnodigen ";
App::$strings["Features"] = "Extra functies";
App::$strings["Language"] = "Taal";
App::$strings["Post"] = "Bericht";
App::$strings["Profile Photo"] = "Profielfoto";
App::$strings["Purchase"] = "Aanschaffen";
App::$strings["Undelete"] = "Verwijdering ongedaan maken";
App::$strings["Add to app-tray"] = "Aan appmenu toevoegen";
App::$strings["Remove from app-tray"] = "Uit appmenu verwijderen";
App::$strings["Pin to navbar"] = "Op navigatiebalk vastzetten";
App::$strings["Unpin from navbar"] = "Van navigatiebalk losmaken";
App::$strings["__ctx:permcat__ default"] = "standaard";
App::$strings["__ctx:permcat__ follower"] = "volger";
App::$strings["__ctx:permcat__ contributor"] = "bijdrager";
App::$strings["__ctx:permcat__ publisher"] = "publichist ";
App::$strings["(No Title)"] = "(Geen titel)";
App::$strings["Wiki page create failed."] = "Aanmaken wiki-pagina mislukt.";
App::$strings["Wiki not found."] = "Wiki niet gevonden";
App::$strings["Destination name already exists"] = "Naam van doel bestaat al";
App::$strings["Page not found"] = "Pagina niet gevonden";
App::$strings["Error reading page content"] = "Fout tijdens lezen pagina-inhoud";
App::$strings["Error reading wiki"] = "Fout tijdens lezen wiki";
App::$strings["Page update failed."] = "Bijwerken van pagina mislukt.";
App::$strings["Nothing deleted"] = "Niets verwijderd";
App::$strings["Compare: object not found."] = "Vergelijken: object niet gevonden.";
App::$strings["Page updated"] = "Pagina bijgewerkt";
App::$strings["Untitled"] = "Naamloos";
App::$strings["Wiki resource_id required for git commit"] = "Resource_id wiki voor git commit vereist";
App::$strings["__ctx:wiki_history__ Message"] = "Bericht";
App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders getoond.";
App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld";
App::$strings["Only me"] = "Alleen ik";
App::$strings["Public"] = "Openbaar";
App::$strings["Anybody in the \$Projectname network"] = "Iedereen in het \$Projectname-netwerk";
App::$strings["Any account on %s"] = "Iedereen op %s";
App::$strings["Any of my connections"] = "Al mijn geaccepteerde connecties";
App::$strings["Only connections I specifically allow"] = "Alleen connecties die uitdrukkelijk door jou zijn toegestaan";
App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Geauthenticeerde leden  (kan bezoekers van andere netwerken bevatten)";
App::$strings["Any connections including those who haven't yet been approved"] = "Al mijn geaccepteerde en nog niet geaccepteerde connecties";
App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dit is de standaard privacyinstelling voor wie jouw berichten kan bekijken";
App::$strings["This is your default setting for who can view your default channel profile"] = "Dit is de standaard privacyinstelling voor wie jouw standaardprofiel kan bekijken";
App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacyinstelling voor wie een lijst met jouw connecties kan bekijken";
App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacyinstelling voor wie jouw bestanden en foto's kan bekijken";
App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacyinstelling voor wie jouw webpagina's kan bekijken";
App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt";
App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al";
App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal";
App::$strings["Room not found."] = "Chatkanaal niet gevonden";
App::$strings["Room is full"] = "Chatkanaal is vol";
App::$strings["\$Projectname Notification"] = "\$Projectname-melding";
App::$strings["\$projectname"] = "\$projectname";
App::$strings["Thank You,"] = "Bedankt,";
App::$strings["%s Administrator"] = "Beheerder %s";
App::$strings["This email was sent by %1\$s at %2\$s."] = "Deze e-mail was verzonden door %1\$s op %2\$s.";
App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Wanneer je deze berichten niet meer wilt ontvangen, wijzig dan de instellingen voor jouw Meldingen op %s";
App::$strings["To stop receiving these messages, please adjust your %s."] = "Wanneer je deze berichten niet meer wilt ontvangen, wijzig dan de instellingen voor jouw %s.";
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname-melding] Nieuw privébericht ontvangen op %s";
App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s heeft je een nieuw privébericht gestuurd op %2\$s.";
App::$strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s.";
App::$strings["a private message"] = "een privébericht";
App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren.";
App::$strings["commented on"] = "gaf een reactie op";
App::$strings["liked"] = "vindt dit leuk:";
App::$strings["disliked"] = "vindt dit niet leuk:";
App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]een %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]jouw %4\$s[/zrl]";
App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname-melding] %2\$s gaf een te modereren reactie in conversatie #%1\$d";
App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname-melding] %2\$s gaf een reactie in conversatie #%1\$d";
App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$s gaf een reactie op/in een item/conversatie die je volgt.";
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren.";
App::$strings["Please visit %s to approve or reject this comment."] = "Bezoek %s om de reactie goed of af te keuren.";
App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s vindt [zrl=%2\$s]jouw %3\$s[/zrl] leuk";
App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname-melding] %2\$s vindt iets leuk in conversatie #%1\$d";
App::$strings["%1\$s liked an item/conversation you created."] = "%1\$s vindt iets leuk in een conversatie die jij bent gestart.";
App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname-melding] %s heeft een bericht op jouw kanaal geplaatst";
App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s heeft om %2\$s een bericht op jouw kanaalpagina geplaatst";
App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s heeft een bericht op jouw [zrl=%2\$s]kanaalpagina[/zrl] geplaatst";
App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname-melding] %s heeft jou genoemd";
App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s vermeldde jou om %2\$s";
App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]vermeldde jou[/zrl].";
App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname-melding] %1\$s heeft jou aangestoten";
App::$strings["%1\$s poked you at %2\$s"] = "%1\$s porde jou om %2\$s";
App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]porde jou[/zrl].";
App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname-melding] %s heeft jouw bericht getagd";
App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s tagde jouw bericht om %2\$s";
App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s tagde [zrl=%2\$s]jouw bericht[/zrl]";
App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname-melding] Connectieverzoek ontvangen";
App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Je hebt een nieuw connectieverzoek ontvangen van '%1\$s' op %2\$s";
App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Je hebt een [zrl=%1\$s]nieuw connectieverzoek[/zrl] ontvangen van %2\$s.";
App::$strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s";
App::$strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen.";
App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname-melding] Kanaalvoorstel ontvangen";
App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Je hebt een kanaalvoorstel ontvangen van '%1\$s' om %2\$s";
App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Je hebt [zrl=%1\$s]een kanaalvoorstel ontvangen[/zrl] voor %2\$s van %3\$s.";
App::$strings["Name:"] = "Naam:";
App::$strings["Photo:"] = "Foto:";
App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen.";
App::$strings["[\$Projectname:Notify]"] = "[\$Projectname-melding]";
App::$strings["created a new post"] = "maakte een nieuw bericht aan";
App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s";
App::$strings["edited a post dated %s"] = "bewerkte een bericht op %s";
App::$strings["edited a comment dated %s"] = "bewerkte een reactie op %s";
App::$strings["Wiki updated successfully"] = "Bijwerken wiki geslaagd";
App::$strings["Wiki files deleted successfully"] = "Verwijderen wiki-bestanden geslaagd";
App::$strings["Update Error at %s"] = "Update-fout op %s";
App::$strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek.";
App::$strings["Private Message"] = "Niet voor iedereen zichtbaar";
App::$strings["Select"] = "Kies";
App::$strings["I will attend"] = "Aanwezig";
App::$strings["I will not attend"] = "Niet aanwezig";
App::$strings["I might attend"] = "Mogelijk aanwezig";
App::$strings["I agree"] = "Eens";
App::$strings["I disagree"] = "Oneens";
App::$strings["I abstain"] = "Onthouding";
App::$strings["Add Star"] = "Ster toevoegen";
App::$strings["Remove Star"] = "Ster verwijderen";
App::$strings["Toggle Star Status"] = "Ster toevoegen of verwijderen";
App::$strings["starred"] = "met ster";
App::$strings["Message signature validated"] = "Berichtkenmerk gevalideerd";
App::$strings["Message signature incorrect"] = "Berichtkenmerk onjuist";
App::$strings["Add Tag"] = "Tag toevoegen";
App::$strings["like"] = "vind dit leuk";
App::$strings["dislike"] = "vind dit niet leuk";
App::$strings["Share This"] = "Delen";
App::$strings["share"] = "delen";
App::$strings["Delivery Report"] = "Afleveringsrapport";
App::$strings["%d comment"] = array(
	0 => "%d reactie",
	1 => "%d reacties",
);
App::$strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s";
App::$strings["to"] = "aan";
App::$strings["via"] = "via";
App::$strings["Wall-to-Wall"] = "Kanaal-naar-kanaal";
App::$strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal";
App::$strings["from %s"] = "van %s";
App::$strings["last edited: %s"] = "laatst bewerkt: %s";
App::$strings["Expires: %s"] = "Verloopt: %s";
App::$strings["Attend"] = "Aanwezig";
App::$strings["Attendance Options"] = "Aanwezigheidsopties";
App::$strings["Vote"] = "Stem";
App::$strings["Voting Options"] = "Stemopties";
App::$strings["Save Bookmarks"] = "Bladwijzers opslaan";
App::$strings["Add to Calendar"] = "Aan agenda toevoegen";
App::$strings["This is an unsaved preview"] = "Dit is een niet opgeslagen voorvertoning";
App::$strings["%s show all"] = "%s alle";
App::$strings["Bold"] = "Vet";
App::$strings["Italic"] = "Cursief";
App::$strings["Underline"] = "Onderstrepen";
App::$strings["Quote"] = "Citeren";
App::$strings["Code"] = "Broncode";
App::$strings["Image"] = "Afbeelding";
App::$strings["Attach File"] = "Bestand toevoegen";
App::$strings["Insert Link"] = "Link invoegen";
App::$strings["Video"] = "Video";
App::$strings["Your full name (required)"] = "Jouw volledige naam (verplicht)";
App::$strings["Your email address (required)"] = "Jouw e-mailadres (verplicht)";
App::$strings["Your website URL (optional)"] = "URL van jouw website (niet verplicht)";
App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen.";
App::$strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd.";
App::$strings["parent"] = "omhoog";
App::$strings["Collection"] = "map";
App::$strings["Principal"] = "principal";
App::$strings["Addressbook"] = "Adresboek";
App::$strings["Calendar"] = "Agenda";
App::$strings["Schedule Inbox"] = "Planning-postvak IN";
App::$strings["Schedule Outbox"] = "Planning-postvak UIT";
App::$strings["Total"] = "Totaal";
App::$strings["Shared"] = "Gedeeld";
App::$strings["Add Files"] = "Bestanden toevoegen";
App::$strings["You are using %1\$s of your available file storage."] = "Je gebruikt %1\$s van de beschikbare bestandsopslag.";
App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Je gebruikt %1\$s van totaal %2\$s beschikbare bestandsopslag. (%3\$s&#37;)";
App::$strings["WARNING:"] = "WAARSCHUWING:";
App::$strings["Create new folder"] = "Nieuwe map aanmaken";
App::$strings["Upload file"] = "Bestand uploaden";
App::$strings["Drop files here to immediately upload"] = "Sleep bestanden hierheen om ze onmiddellijk te uploaden";
App::$strings["Forums"] = "Forums";
App::$strings["Select Channel"] = "Kies een kanaal";
App::$strings["Read-write"] = "Lees- en schrijfrechten";
App::$strings["Read-only"] = "Alleen leesrechten";
App::$strings["My Calendars"] = "Mijn agenda's";
App::$strings["Shared Calendars"] = "Gedeelde agenda's";
App::$strings["Share this calendar"] = "Agenda delen";
App::$strings["Calendar name and color"] = "Naam en kleur agenda";
App::$strings["Create new calendar"] = "Nieuwe agenda aanmaken";
App::$strings["Calendar Name"] = "Naam agenda";
App::$strings["Calendar Tools"] = "Agenda-hulpmiddelen";
App::$strings["Import calendar"] = "Importeren";
App::$strings["Select a calendar to import to"] = "Kies een agenda om te importeren";
App::$strings["Addressbooks"] = "Adresboeken";
App::$strings["Addressbook name"] = "Naam adresboek";
App::$strings["Create new addressbook"] = "Nieuw adresboek aanmaken";
App::$strings["Addressbook Name"] = "Naam adresboek";
App::$strings["Addressbook Tools"] = "Adresboek-hulpmiddelen";
App::$strings["Import addressbook"] = "Importeren";
App::$strings["Select an addressbook to import to"] = "Kies een adresboek om te importeren";
App::$strings["Categories"] = "Categorieën";
App::$strings["Everything"] = "Alles";
App::$strings["Events Tools"] = "Agenda-hulpmiddelen";
App::$strings["Export Calendar"] = "Exporteren";
App::$strings["Import Calendar"] = "Importeren";
App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen";
App::$strings["HQ Control Panel"] = "HQ-controlepaneel";
App::$strings["Create a new post"] = "Nieuw bericht aanmaken";
App::$strings["Private Mail Menu"] = "Privéberichten";
App::$strings["Combined View"] = "Gecombineerd postvak";
App::$strings["Inbox"] = "Postvak IN";
App::$strings["Outbox"] = "Postvak UIT";
App::$strings["New Message"] = "Nieuw bericht";
App::$strings["Chatrooms"] = "Chatkanalen";
App::$strings["Overview"] = "Overzicht";
App::$strings["Rating Tools"] = "Beoordelingen";
App::$strings["Rate Me"] = "Beoordeel mij";
App::$strings["View Ratings"] = "Bekijk beoordelingen";
App::$strings["__ctx:widget__ Activity"] = "Activiteit";
App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties.";
App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen";
App::$strings["Enter channel address"] = "Vul kanaaladres in";
App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara";
App::$strings["Wiki List"] = "Wiki's";
App::$strings["Archives"] = "Archieven";
App::$strings["Received Messages"] = "Ontvangen berichten";
App::$strings["Sent Messages"] = "Verzonden berichten";
App::$strings["Conversations"] = "Conversaties";
App::$strings["No messages."] = "Geen berichten";
App::$strings["Delete conversation"] = "Verwijder conversatie";
App::$strings["Chat Members"] = "Chatleden";
App::$strings["photo/image"] = "foto/afbeelding";
App::$strings["Remove term"] = "Verwijder zoekterm";
App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
App::$strings["add"] = "toevoegen";
App::$strings["Notes"] = "Aantekeningen";
App::$strings["Add new page"] = "Nieuwe pagina toevoegen";
App::$strings["Wiki Pages"] = "Wikipagina's";
App::$strings["Page name"] = "Paginanaam";
App::$strings["Refresh"] = "Vernieuwen";
App::$strings["Tasks"] = "Taken";
App::$strings["Suggestions"] = "Voorgestelde kanalen";
App::$strings["See more..."] = "Meer...";
App::$strings["Saved Folders"] = "Bewaarde mappen";
App::$strings["Click to show more"] = "Klik voor meer";
App::$strings["Tags"] = "Tags";
App::$strings["Profile Creation"] = "Profiel aanmaken";
App::$strings["Upload profile photo"] = "Profielfoto uploaden";
App::$strings["Upload cover photo"] = "Omslagfoto uploaden";
App::$strings["Edit your profile"] = "Jouw profiel bewerken";
App::$strings["Find and Connect with others"] = "Vind en verbind met anderen";
App::$strings["View the directory"] = "Kanalengids tonen";
App::$strings["Manage your connections"] = "Jouw connecties beheren";
App::$strings["Communicate"] = "Communiceren";
App::$strings["View your channel homepage"] = "Jouw kanaalpagina tonen";
App::$strings["View your network stream"] = "Jouw tijdlijn tonen";
App::$strings["Documentation"] = "Documentatie";
App::$strings["View public stream"] = "Openbare tijdlijn tonen";
App::$strings["New Member Links"] = "Links voor nieuwe leden";
App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten";
App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij";
App::$strings["DB updates"] = "Database-updates";
App::$strings["Admin"] = "Beheer";
App::$strings["Plugin Features"] = "Plug-in-opties";
App::$strings["Account settings"] = "Account";
App::$strings["Channel settings"] = "Kanaal";
App::$strings["Additional features"] = "Extra functies";
App::$strings["Addon settings"] = "Plug-ins";
App::$strings["Display settings"] = "Weergave";
App::$strings["Manage locations"] = "Locaties beheren";
App::$strings["Export channel"] = "Kanaal exporteren";
App::$strings["OAuth1 apps"] = "OAuth1-applicaties";
App::$strings["OAuth2 apps"] = "OAuth2-applicaties";
App::$strings["Permission Groups"] = "Permissiegroepen";
App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal";
App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen";
App::$strings["New Network Activity"] = "Nieuwe tijdlijnactiviteit";
App::$strings["New Network Activity Notifications"] = "Nieuwe tijdlijnactiviteitmeldingen";
App::$strings["View your network activity"] = "Jouw tijdlijnactiviteit tonen";
App::$strings["Mark all notifications read"] = "Markeer alle meldingen als gelezen";
App::$strings["Show new posts only"] = "Alleen nieuwe berichten tonen";
App::$strings["Filter by name"] = "Op naam filteren";
App::$strings["New Home Activity"] = "Nieuwe kanaalactiviteit";
App::$strings["New Home Activity Notifications"] = "Nieuwe kanaalactiviteitmeldingen";
App::$strings["View your home activity"] = "Jouw kanaalactiviteit tonen";
App::$strings["Mark all notifications seen"] = "Markeer alle meldingen als bekeken";
App::$strings["New Mails"] = "Nieuwe privéberichten";
App::$strings["New Mails Notifications"] = "Nieuw privéberichtmeldingen";
App::$strings["View your private mails"] = "Jouw privéberichten tonen";
App::$strings["Mark all messages seen"] = "Markeer alle berichten als bekeken";
App::$strings["New Events"] = "Nieuwe gebeurtenissen";
App::$strings["New Events Notifications"] = "Nieuwe gebeurtenismeldingen";
App::$strings["View events"] = "Agenda tonen";
App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken";
App::$strings["New Connections Notifications"] = "Nieuwe connectiemeldingen";
App::$strings["View all connections"] = "Toon alle connecties";
App::$strings["New Files"] = "Nieuwe bestanden";
App::$strings["New Files Notifications"] = "Nieuw bestandmeldingen";
App::$strings["Notices"] = "Meldingen";
App::$strings["View all notices"] = "Alle meldingen tonen";
App::$strings["Mark all notices seen"] = "Markeer alle meldingen als bekeken";
App::$strings["New Registrations"] = "Nieuwe registraties";
App::$strings["New Registrations Notifications"] = "Nieuwe registratiemeldingen";
App::$strings["Public Stream Notifications"] = "Openbare tijdlijnmeldingen";
App::$strings["View the public stream"] = "De openbare tijdlijn tonen";
App::$strings["Sorry, you have got no notifications at the moment"] = "Sorry, maar je hebt op dit moment geen meldingen";
App::$strings["Source channel not found."] = "Bron van kanaal niet gevonden";
App::$strings["Create an account to access services and applications"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen";
App::$strings["Logout"] = "Uitloggen";
App::$strings["Login/Email"] = "E-mailadres of inlognaam";
App::$strings["Password"] = "Wachtwoord";
App::$strings["Remember me"] = "Aangemeld blijven";
App::$strings["Forgot your password?"] = "Wachtwoord vergeten?";
App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Probleem met SSL-certificaat van %s";
App::$strings["Website SSL certificate is not valid. Please correct."] = "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b.";
App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Crontaken zijn niet actief op %s";
App::$strings["Cron/Scheduled tasks not running."] = "Cron is niet actief";
App::$strings["never"] = "nooit";
App::$strings["Cover Photo"] = "Omslagfoto";
App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)";
App::$strings["Theme settings"] = "Thema-instellingen";
App::$strings["Narrow navbar"] = "Smalle navigatiebalk";
App::$strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk";
App::$strings["Navigation bar icon color "] = "Pictogramkleur navigatiebalk";
App::$strings["Navigation bar active icon color "] = "Actieve pictogramkleur navigatiebalk";
App::$strings["Link color"] = "Linkkleur";
App::$strings["Set font-color for banner"] = "Tekstkleur van banner instellen";
App::$strings["Set the background color"] = "Achtergrondkleur instellen";
App::$strings["Set the background image"] = "Achtergrondafbeelding instellen";
App::$strings["Set the background color of items"] = "Achtergrondkleur items instellen";
App::$strings["Set the background color of comments"] = "Achtergrondkleur reacties instellen";
App::$strings["Set font-size for the entire application"] = "Tekstgrootte van de volledige applicatie instellen";
App::$strings["Examples: 1rem, 100%, 16px"] = "Voorbeelden: 1rem, 100%, 16px";
App::$strings["Set font-color for posts and comments"] = "Tekstkleur van berichten en reacties";
App::$strings["Set radius of corners"] = "Radius van hoeken instellen";
App::$strings["Example: 4px"] = "Voorbeeld: 4px";
App::$strings["Set shadow depth of photos"] = "Schaduwdiepte van foto's instellen";
App::$strings["Set maximum width of content region in pixel"] = "Maximumbreedte conversatieruimte instellen (in pixels)";
App::$strings["Leave empty for default width"] = "Laat leeg voor standaardbreedte";
App::$strings["Left align page content"] = "Inhoud links uitlijnen";
App::$strings["Set size of conversation author photo"] = "Grootte profielfoto's van berichten instellen";
App::$strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen";
App::$strings["Errors encountered deleting database table "] = "Fouten opgetreden tijdens verwijderen databasetabel ";
App::$strings["Submit Settings"] = "Instellingen toepassen";
App::$strings["Drop tables when uninstalling?"] = "Verwijder tabellen tijdens uitschakelen plug-in?";
App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Wanneer dit is aangevinkt worden de tabellen in de Rendezvous-database verwijderd wanneer de plug-in wordt uitgeschakeld.";
App::$strings["Mapbox Access Token"] = "Toegangstoken ";
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."] = "De Mapbox-toegangstoken wordt gebruikt om kaarttegels (tiles) van Mapbox op te halen in plaats van de standaard tile-server van OpenStreetMap.";
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."] = "Deze identiteit is door een ander lid verwijderd als gevolg van inactiviteit. Klik op de knop \"Nieuwe identiteit\" of herlaad de pagina om een nieuwe identiteit aan te maken. Je kan eventueel dezelfde naam gebruiken.";
App::$strings["Welcome to Rendezvous!"] = "Welkom bij 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."] = "Vul je naam in om deel te nemen aan deze rendezvous. Om met het delen van je locatie met de andere leden te beginnen, klik je op de locatieknop van je webbrowser. Nadat jouw locatie is gevonden verschijnt er een rode stip en kunnen andere leden jou zien op de kaart.";
App::$strings["Let's meet here"] = "Laten we elkaar hier ontmoeten";
App::$strings["New marker"] = "Nieuwe markering";
App::$strings["Edit marker"] = "Markering bewerken";
App::$strings["New identity"] = "Nieuwe identiteit";
App::$strings["Delete marker"] = "Markering verwijderen";
App::$strings["Delete member"] = "Lid verwijderen";
App::$strings["Edit proximity alert"] = "Nabijheidswaarschuwing bewerken";
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):"] = "Een nabijheidswaarschuwing wordt actief wanneer dit lid zich binnen een bepaalde straal rond jouw locatie bevindt.<br><br>Voer het aantal meters van de straal in (0 om uit te schakelen):";
App::$strings["distance"] = "afstand";
App::$strings["Proximity alert distance (meters)"] = "Afstand nabijheidswaarschuwing (meter)";
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):"] = "Een nabijheidswaarschuwing wordt actief wanneer je je binnen een bepaalde straal rond een specifieke locatie bevindt.<br><br>Voer het aantal meters van de straal in (0 om uit te schakelen):";
App::$strings["Marker proximity alert"] = "Locatiemarkering nabijheidswaarschuwing";
App::$strings["Reminder note"] = "Herinnering";
App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Vul de tekst in die getoond moet worden wanneer je je op de aangegeven afstand bevindt...";
App::$strings["Add new rendezvous"] = "Nieuwe rendezvous toevoegen";
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."] = "Maak een nieuwe rendezvous aan en deel de toegangslink met wie je wil uitnodigen voor de groep. Wie op de link klikt wordt lid van rendezvous. Zij kunnen dan de locaties zien van andere leden, markeringen aan de kaart toevoegen of hun eigen locaties met de groep delen.";
App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "Je hebt geen rendezvous. Klik de knop hierboven om een rendezvous aan te maken!";
App::$strings["Some setting"] = "Een of andere instelling";
App::$strings["A setting"] = "Een instelling";
App::$strings["Skeleton Settings"] = "Plug-in-skeleton";
App::$strings["GNU-Social Protocol Settings updated."] = "GNU social-protocol-instellingen bijgewerkt.";
App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Het GNU social-protocol ondersteunt geen locatieonafhankelijkheid. Connecties die je met dit netwerk maakt zijn mogelijk onbereikbaar vanaf andere kanaallocaties.";
App::$strings["Enable the GNU-Social protocol for this channel"] = "GNU social-protocol voor dit kanaal inschakelen";
App::$strings["GNU-Social Protocol Settings"] = "GNU social-protocol";
App::$strings["Follow"] = "Volgen";
App::$strings["%1\$s is now following %2\$s"] = "%1\$s volgt nu %2\$s";
App::$strings["Planets Settings updated."] = "Planets-instellingen opgeslagen.";
App::$strings["Enable Planets Plugin"] = "Planets inschakelen";
App::$strings["Planets Settings"] = "Planets";
App::$strings["System defaults:"] = "Systeemstandaarden:";
App::$strings["Preferred Clipart IDs"] = "Voorkeursclipart";
App::$strings["List of preferred clipart ids. These will be shown first."] = "Lijst met clipartnummers die als eerste moeten worden getoond.";
App::$strings["Default Search Term"] = "Standaard zoekterm";
App::$strings["The default search term. These will be shown second."] = "Standaard zoekterm. Deze worden als tweede getoond.";
App::$strings["Return After"] = "Ga na afloop naar";
App::$strings["Page to load after image selection."] = "Pagina die na het kiezen van een afbeelding moet laden.";
App::$strings["Edit Profile"] = "Profiel bewerken";
App::$strings["Profile List"] = "Profiellijst";
App::$strings["Order of Preferred"] = "Voorkeursclipart sorteren op";
App::$strings["Sort order of preferred clipart ids."] = "Als eerste getoonde clipart hierop sorteren.";
App::$strings["Newest first"] = "Nieuwste eerst";
App::$strings["As entered"] = "Zoals ingevoerd";
App::$strings["Order of other"] = "Overige clipart sorteren op";
App::$strings["Sort order of other clipart ids."] = "Overige clipart hierop sorteren.";
App::$strings["Most downloaded first"] = "Meest gedownload eerst";
App::$strings["Most liked first"] = "Meest geliked eerst";
App::$strings["Preferred IDs Message"] = "Tekst voorkeursclipart";
App::$strings["Message to display above preferred results."] = "Tekst die bovenaan de resultaten met voorkeursclipart moet worden getoond.";
App::$strings["Uploaded by: "] = "Geüpload door: ";
App::$strings["Drawn by: "] = "Getekend door: ";
App::$strings["Use this image"] = "Deze afbeelding gebruiken";
App::$strings["Or select from a free OpenClipart.org image:"] = "Of kies uit een vrije OpenClipart.org-afbeelding:";
App::$strings["Search Term"] = "Zoekterm";
App::$strings["Unknown error. Please try again later."] = "Onbekende fout. Probeer later nog eens.";
App::$strings["Profile photo updated successfully."] = "Bijwerken profielfoto geslaagd.";
App::$strings["Flag Adult Photos"] = "Markeer foto's als voor volwassenen";
App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen";
App::$strings["Post to WordPress"] = "WordPress";
App::$strings["Enable WordPress Post Plugin"] = "Doorplaatsen naar WordPress inschakelen";
App::$strings["WordPress username"] = "Gebruikersnaam WordPress";
App::$strings["WordPress password"] = "Wachtwoord WordPress";
App::$strings["WordPress API URL"] = "API-URL WordPress";
App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Meestal https://jouw-blog.tld/xmlrpc.php";
App::$strings["WordPress blogid"] = "Blog ID WordPress";
App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Voor websites met meerdere gebruikers, zoals wordpress.com. Anders leeg laten.";
App::$strings["Post to WordPress by default"] = "Standaard naar WordPress doorplaatsen";
App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Reacties doorplaatsen (Hubzilla_WP-plug-in vereist)";
App::$strings["WordPress Post Settings"] = "WordPress (berichten doorplaatsen)";
App::$strings["Wordpress Settings saved."] = "WordPress-instellingen opgeslagen.";
App::$strings["This plugin 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."] = "Deze plug-in controleert berichten op woorden die je hieronder kunt opgeven en klapt berichten in die deze woorden bevatten, zodat die berichten niet op ongeschikte momenten worden getoond. Denk hierbij bijvoorbeeld aan berichten met erotische afbeeldingen, die waarschijnlijk niet geschikt zijn binnen een werkomgeving. Het is beleefd en het wordt aangeraden om zulke berichten met #NSFW te taggen. Dit filter kan ook gebruikt worden met andere woorden en is dus voor alles inzetbaar.";
App::$strings["Enable Content filter"] = "Inhoudsfilter inschakelen";
App::$strings["Comma separated list of keywords to hide"] = "Door komma's gescheiden lijst met woorden die gefilterd moeten worden.";
App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Woord, /reguliere expressie/, lang=xx, lang!=xx";
App::$strings["Not Safe For Work Settings"] = "Not Safe For Work (inhoudsfilter)";
App::$strings["General Purpose Content Filter"] = "Voor alles te gebruiken inhoudsfilter";
App::$strings["NSFW Settings saved."] = "NSFW-instellingen opgeslagen.";
App::$strings["Possible adult content"] = "Mogelijk inhoud voor volwassenen";
App::$strings["%s - view"] = "%s - tonen";
App::$strings["Post to Insanejournal"] = "InsaneJournal";
App::$strings["Enable InsaneJournal Post Plugin"] = "Doorplaatsen naar InsaneJournal inschakelen";
App::$strings["InsaneJournal username"] = "Gebruikersnaam InsaneJournal";
App::$strings["InsaneJournal password"] = "Wachtwoord InsaneJournal";
App::$strings["Post to InsaneJournal by default"] = "Standaard doorplaatsen naar InsaneJournal";
App::$strings["InsaneJournal Post Settings"] = "InsaneJournal (berichten doorplaatsen)";
App::$strings["Insane Journal Settings saved."] = "InsaneJournal-instellingen opgeslagen.";
App::$strings["Post to Dreamwidth"] = "Dreamwidth";
App::$strings["Enable Dreamwidth Post Plugin"] = "Doorplaatsen naar Dreamwidth inschakelen";
App::$strings["Dreamwidth username"] = "Gebruikersnaam Dreamwidth";
App::$strings["Dreamwidth password"] = "Wachtwoord Dreamwidth";
App::$strings["Post to Dreamwidth by default"] = "Standaard doorplaatsen naar Dreamwidth";
App::$strings["Dreamwidth Post Settings"] = "Dreamwidth (berichten doorplaatsen)";
App::$strings["New registration"] = "Nieuwe registratie";
App::$strings["Message sent to %s. New account registration: %s"] = "Bericht naar %s verzonden. Nieuwe accountregistratie: %s ";
App::$strings["Hubzilla Directory Stats"] = "Kanalengidsstatistieken Hubzilla";
App::$strings["Total Hubs"] = "Totaal aantal hubs";
App::$strings["Hubzilla Hubs"] = "Hubzilla-hubs";
App::$strings["Friendica Hubs"] = "Friendica-hubs";
App::$strings["Diaspora Pods"] = "Diaspora-pods";
App::$strings["Hubzilla Channels"] = "Hubzilla-kanalen";
App::$strings["Friendica Channels"] = "Friendica-kanalen";
App::$strings["Diaspora Channels"] = "Diaspora-kanalen";
App::$strings["Aged 35 and above"] = "Leeftijd is ouder dan 35 jaar";
App::$strings["Aged 34 and under"] = "Leeftijd is jonger dan 34";
App::$strings["Average Age"] = "Gemiddelde leeftijd";
App::$strings["Known Chatrooms"] = "Bekend aantal chatkanalen";
App::$strings["Known Tags"] = "Bekend aantal tags";
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,"] = "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,";
App::$strings["Your Webbie:"] = "Jouw kanaaladres:";
App::$strings["Fontsize (px):"] = "Tekengrootte (px):";
App::$strings["Link:"] = "Link:";
App::$strings["Like us on Hubzilla"] = "Like ons op Hubzilla";
App::$strings["Embed:"] = "Insluiten (embed):";
App::$strings["Photos imported"] = "Foto's geïmporteerd";
App::$strings["Redmatrix Photo Album Import"] = "Fotoalbums importeren vanuit Redmatrix";
App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Hiermee importeer je al jouw Redmatrix-fotoalbums in dit Hubzilla-kanaal.";
App::$strings["Redmatrix Server base URL"] = "Basis-URL van Redmatrix-hub";
App::$strings["Redmatrix Login Username"] = "Gebruikersnaam Redmatrix";
App::$strings["Redmatrix Login Password"] = "Wachtwoord Redmatrix";
App::$strings["Import just this album"] = "Alleen dit album importeren";
App::$strings["Leave blank to import all albums"] = "Laat leeg om alle albums te importeren";
App::$strings["Maximum count to import"] = "Maximaal aantal om te importeren";
App::$strings["0 or blank to import all available"] = "0 of leeg om alles te importeren";
App::$strings["Channels to auto connect"] = "Kanalen om automatisch mee te verbinden";
App::$strings["Comma separated list"] = "Door komma's gescheiden lijst";
App::$strings["Popular Channels"] = "Populaire chatkanalen";
App::$strings["IRC Settings"] = "IRC";
App::$strings["IRC settings saved."] = "IRC-instellingen opgeslagen.";
App::$strings["IRC Chatroom"] = "IRC-chatkanaal";
App::$strings["Post to LiveJournal"] = "LiveJournal";
App::$strings["Enable LiveJournal Post Plugin"] = "Doorplaatsen naar LiveJournal inschakelen";
App::$strings["LiveJournal username"] = "Gebruikersnaam LiveJournal";
App::$strings["LiveJournal password"] = "Wachtwoord LiveJournal";
App::$strings["Post to LiveJournal by default"] = "Standaard doorplaatsen naar LiveJournal";
App::$strings["LiveJournal Post Settings"] = "LiveJournal (berichten doorplaatsen)";
App::$strings["LiveJournal Settings saved."] = "LiveJournal-instellingen opgeslagen.";
App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten.";
App::$strings["The error message was:"] = "Foutmelding was:";
App::$strings["First Name"] = "Voornaam";
App::$strings["Last Name"] = "Achternaam";
App::$strings["Nickname"] = "Bijnaam";
App::$strings["Full Name"] = "Volledige naam";
App::$strings["Profile Photo 16px"] = "Profielfoto 16px";
App::$strings["Profile Photo 32px"] = "Profielfoto 32px";
App::$strings["Profile Photo 48px"] = "Profielfoto 48px";
App::$strings["Profile Photo 64px"] = "Profielfoto 64px";
App::$strings["Profile Photo 80px"] = "Profielfoto 80px";
App::$strings["Profile Photo 128px"] = "Profielfoto 128px";
App::$strings["Timezone"] = "Tijdzone";
App::$strings["Birth Year"] = "Geboortejaar";
App::$strings["Birth Month"] = "Geboortemaand";
App::$strings["Birth Day"] = "Geboortedag";
App::$strings["Birthdate"] = "Geboortedatum";
App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen.";
App::$strings["Login failed."] = "Inloggen mislukt.";
App::$strings["Male"] = "Man";
App::$strings["Female"] = "Vrouw";
App::$strings["You're welcome."] = "Je bent van harte welkom.";
App::$strings["Ah shucks..."] = "Hé verdorie...";
App::$strings["Don't mention it."] = "Graag gedaan.";
App::$strings["&lt;blush&gt;"] = "<bloos>";
App::$strings["Page to load after login"] = "Pagina die na het inloggen getoond moet worden";
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)."] = "Voorbeelden: &quot;apps&quot;, &quot;network?f=&gid=37&quot; (privacygroep), &quot;channel&quot; of &quot;notifications/system&quot; (laat leeg voor de standaard netwerkpagina (activiteiten).";
App::$strings["Startpage Settings"] = "Startpagina";
App::$strings["bitchslap"] = "bitchslappen";
App::$strings["bitchslapped"] = "bitchslapped";
App::$strings["shag"] = "wippen";
App::$strings["shagged"] = "wipte met";
App::$strings["patent"] = "patent";
App::$strings["patented"] = "patented";
App::$strings["hug"] = "knuffelen";
App::$strings["hugged"] = "knuffelde";
App::$strings["murder"] = "vermoorden";
App::$strings["murdered"] = "vermoorde";
App::$strings["worship"] = "aanbidden";
App::$strings["worshipped"] = "aanbad";
App::$strings["kiss"] = "kussen";
App::$strings["kissed"] = "kuste";
App::$strings["tempt"] = "verleiden";
App::$strings["tempted"] = "verleidde";
App::$strings["raise eyebrows at"] = "wenkbrauwen optrekken";
App::$strings["raised their eyebrows at"] = "trok zijn/haar wenkbrauwen op naar";
App::$strings["insult"] = "beledigen";
App::$strings["insulted"] = "beledigde";
App::$strings["praise"] = "prijzen";
App::$strings["praised"] = "prees";
App::$strings["be dubious of"] = "twijfels hebben";
App::$strings["was dubious of"] = "had twijfels over";
App::$strings["eat"] = "opeten";
App::$strings["ate"] = "at";
App::$strings["giggle and fawn at"] = "giechelen en vleien";
App::$strings["giggled and fawned at"] = "giechelde naar en vleide met";
App::$strings["doubt"] = "betwijfelen";
App::$strings["doubted"] = "betwijfelde";
App::$strings["glare"] = "boos kijken";
App::$strings["glared at"] = "keek boos naar";
App::$strings["fuck"] = "neuken";
App::$strings["fucked"] = "neukte";
App::$strings["bonk"] = "naaien";
App::$strings["bonked"] = "naaide";
App::$strings["declare undying love for"] = "eeuwige liefde verklaren";
App::$strings["declared undying love for"] = "verklaarde de eeuwige liefde aan";
App::$strings["Diaspora Protocol Settings updated."] = "Diaspora-protocol-instellingen bijgewerkt.";
App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Het Diaspora-protocol ondersteunt geen locatieonafhankelijkheid. Connecties die je met dit netwerk maakt zijn mogelijk onbereikbaar vanaf andere kanaallocaties.";
App::$strings["Enable the Diaspora protocol for this channel"] = "Diaspora-protocol voor dit kanaal inschakelen";
App::$strings["Allow any Diaspora member to comment on your public posts"] = "Sta toe dat elk Diaspora-lid op jouw openbare berichten kan reageren.";
App::$strings["Prevent your hashtags from being redirected to other sites"] = "Voorkom dat jouw hashtags naar andere websites worden doorverwezen";
App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Berichten en reacties met geen bestaande Diaspora-handtekening ondertekenen en doorsturen";
App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Gevolgde hashtags (door komma's gescheiden lijst, zonder de #)";
App::$strings["Diaspora Protocol Settings"] = "Diaspora-protocol (incl. Friendica)";
App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden.";
App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt.";
App::$strings["Your account on %s will expire in a few days."] = "Jouw account op %s verloopt over een paar dagen. ";
App::$strings["Enable Rainbowtag"] = "Rainbowtag inschakelen";
App::$strings["Rainbowtag Settings"] = "Rainbowtag";
App::$strings["Rainbowtag Settings saved."] = "Rainbowtag-instellingen opgeslagen.";
App::$strings["Show Upload Limits"] = "Uploadlimieten tonen";
App::$strings["Hubzilla configured maximum size: "] = "Op Hubzilla configureerde maximale grootte: ";
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 (moet hoger zijn dan upload_max_filesize): ";
App::$strings["generic profile image"] = "Algemene profielfoto";
App::$strings["random geometric pattern"] = "Willekeurig geometrisch patroon";
App::$strings["monster face"] = "monstergezicht";
App::$strings["computer generated face"] = "computergegenereerd gezicht";
App::$strings["retro arcade style face"] = "retro-arcadestijlgezicht";
App::$strings["Hub default profile photo"] = "Standaard profielfoto hub";
App::$strings["Information"] = "Informatie";
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."] = "De Libravatar-plug-in is ook geïnstalleerd. Schakel de Libravatar of deze Gravatar-plug-in uit.<br>De  Libravatar-plug-in valt terug op Gravatar  wanneer er niks op Libravatar wordt gevonden.";
App::$strings["Save Settings"] = "Instellingen opslaan";
App::$strings["Default avatar image"] = "Standaard avatar";
App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Kies een standaard avatar wanneer niets op Gravatar wordt gevonden. Zie README";
App::$strings["Rating of images"] = "Beoordeling van afbeeldingen";
App::$strings["Select the appropriate avatar rating for your site. See README"] = "Kies een toepasselijke avatarrating voor jouw hub. Zie README";
App::$strings["Gravatar settings updated."] = "Gravatar-instellingen bijgewerkt.";
App::$strings["Hubzilla File Storage Import"] = "Importeer bestanden vanuit Hubzilla";
App::$strings["This will import all your cloud files from another server."] = "Hiermee importeer je al jouw bestanden vanaf een andere hub.";
App::$strings["Hubzilla Server base URL"] = "Basis-URL van Hubzilla-server";
App::$strings["Since modified date yyyy-mm-dd"] = "Sinds de aangepaste datum jjjj-mm-dd";
App::$strings["Until modified date yyyy-mm-dd"] = "Tot de aangepaste datum jjjj-mm-dd";
App::$strings["Recent Channel/Profile Viewers"] = "Recente bezoekers van jouw kanaal/profiel";
App::$strings["This plugin/addon has not been configured."] = "Deze plug-in is niet geconfigureerd. ";
App::$strings["Please visit the Visage settings on %s"] = "Bezoek de Visage-instellingen op %s";
App::$strings["your feature settings page"] = "Jouw plug-in-instellingen";
App::$strings["No entries."] = "Niets aanwezig.";
App::$strings["Enable Visage Visitor Logging"] = "Visage inschakelen ";
App::$strings["Visage Settings"] = "Visage";
App::$strings["Nsabait Settings updated."] = "NSAbait-instellingen bijgewerkt.";
App::$strings["Enable NSAbait Plugin"] = "NSAbait inschakelen";
App::$strings["NSAbait Settings"] = "NSAbait";
App::$strings["Send test email"] = "Test-e-mail versturen";
App::$strings["No recipients found."] = "Geen ontvangers gevonden";
App::$strings["Mail sent."] = "E-mail verzonden.";
App::$strings["Sending of mail failed."] = "Verzenden van e-mail mislukt.";
App::$strings["Mail Test"] = "E-mailtest";
App::$strings["Message subject"] = "Onderwerp e-mailbericht";
App::$strings["Use markdown for editing posts"] = "Sta het gebruik van markdown toe om berichten te bewerken";
App::$strings["View Larger"] = "Groter tonen";
App::$strings["Tile Server URL"] = "URL tile-server";
App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Een lijst met <a href=\\\"http://wiki.openstreetmap.org/wiki/TMS\\\" target=\\\"_blank\\\">openbare tile-servers</a>";
App::$strings["Nominatim (reverse geocoding) Server URL"] = "Server-URL Nominatim (reverse geocoding)";
App::$strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=\"_blank\">Nominatim servers</a>"] = "Een lijst met <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=\"_blank\">Nominatim-servers</a>";
App::$strings["Default zoom"] = "Standaard zoomniveau";
App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Standaard zoomniveau. Van 1 (wereld) t/m 18 (maximaal). Is ook afhankelijk van tile-server.";
App::$strings["Include marker on map"] = "Markering op kaart plaatsen";
App::$strings["Include a marker on the map."] = "Plaatst een markering op de kaart.";
App::$strings["text to include in all outgoing posts from this site"] = "tekst om onderaan elk uitgaand bericht van deze hub te plaatsen";
App::$strings["Fuzzloc Settings updated."] = "Fuzzloc-instellingen bijgewerkt.";
App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "Fuzzloc stelt je in staat om jouw exacte locatie te verhullen, wanneer jouw kanaal browserlocatie-mapping gebruikt.";
App::$strings["Enable Fuzzloc Plugin"] = "Fuzzloc inschakelen";
App::$strings["Minimum offset in meters"] = "Minimum offset in meters";
App::$strings["Maximum offset in meters"] = "Maximum offset in meters";
App::$strings["Fuzzloc Settings"] = "Fuzzloc";
App::$strings["Post to Friendica"] = "Friendica";
App::$strings["rtof Settings saved."] = "RTOF-instellingen opgeslagen.";
App::$strings["Allow posting to Friendica"] = "Doorplaatsen naar Friendica toestaan";
App::$strings["Send public postings to Friendica by default"] = "Standaard doorplaatsen naar Friendica";
App::$strings["Friendica API Path"] = "API-pad Friendica";
App::$strings["https://{sitename}/api"] = "https://{hubnaam}/api";
App::$strings["Friendica login name"] = "Gebruikersnaam Friendica";
App::$strings["Friendica password"] = "Wachtwoord Friendica";
App::$strings["Hubzilla to Friendica Post Settings"] = "Friendica (berichten doorplaatsen)";
App::$strings["Status:"] = "Status:";
App::$strings["Activate addon"] = "Plug-in inschakelen";
App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Hide Jappixmini Chat-Widget from the webinterface";
App::$strings["Jabber username"] = "Gebruikersnaam Jabber";
App::$strings["Jabber server"] = "Jabberserver";
App::$strings["Jabber BOSH host URL"] = "Jabber BOSH host URL";
App::$strings["Jabber password"] = "Wachtwoord Jabber";
App::$strings["Encrypt Jabber password with Hubzilla password"] = "Versleutel Jabber-wachtwoord met Hubzilla-wachtwoord";
App::$strings["Hubzilla password"] = "Wachtwoord Hubzilla";
App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Approve subscription requests from Hubzilla contacts automatically";
App::$strings["Purge internal list of jabber addresses of contacts"] = "Purge internal list of jabber addresses of contacts";
App::$strings["Configuration Help"] = "Configuratiehulp";
App::$strings["Jappix Mini Settings"] = "Jappix Mini";
App::$strings["Currently blocked"] = "Momenteel geblokkeerd";
App::$strings["No channels currently blocked"] = "Momenteel geen kanalen geblokkeerd";
App::$strings["Superblock Settings"] = "Superblock";
App::$strings["Block Completely"] = "Volledig blokkeren";
App::$strings["superblock settings updated"] = "Superblock-instellingen bijgewerkt";
App::$strings["Federate"] = "Federeren";
App::$strings["nofed Settings saved."] = "Geen federatie-instellingen opgeslagen.";
App::$strings["Allow Federation Toggle"] = "Federatie toestaan?";
App::$strings["Federate posts by default"] = "Standaard berichten federeren";
App::$strings["NoFed Settings"] = "Geen federatie";
App::$strings["Post to Red"] = "Hubzilla";
App::$strings["Channel is required."] = "Een kanaal is vereist.";
App::$strings["redred Settings saved."] = "RedRed-instellingen opgeslagen.";
App::$strings["Allow posting to another Hubzilla Channel"] = "Doorplaatsen naar een ander Hubzilla-kanaal toestaan";
App::$strings["Send public postings to Hubzilla channel by default"] = "Standaard doorplaatsen naar een ander Hubzilla-kanaal toestaan";
App::$strings["Hubzilla API Path"] = "API-pad Hubzilla";
App::$strings["Hubzilla login name"] = "Gebruikersnaam Hubzilla";
App::$strings["Hubzilla channel name"] = "Kanaalnaam Hubzilla";
App::$strings["Hubzilla Crosspost Settings"] = "Hubzilla (berichten doorplaatsen)";
App::$strings["Logfile archive directory"] = "Logbestand archiefmap";
App::$strings["Directory to store rotated logs"] = "Map om geroteerde logbestanden in op te slaan";
App::$strings["Logfile size in bytes before rotating"] = "Grootte van logbestand in bytes, voordat het wordt geroteerd";
App::$strings["Number of logfiles to retain"] = "Aantal te behouden logbestanden";
App::$strings["Friendica Photo Album Import"] = "Fotoalbums importeren vanuit Friendica";
App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Hiermee importeer je al jouw Friendica-fotoalbums in dit Hubzilla-kanaal.";
App::$strings["Friendica Server base URL"] = "Basis-URL van Friendica-server";
App::$strings["Friendica Login Username"] = "Gebruikersnaam Friendica";
App::$strings["Friendica Login Password"] = "Wachtwoord Friendica";
App::$strings["ActivityPub"] = "ActivityPub";
App::$strings["ActivityPub Protocol Settings updated."] = "ActivityPub-protocol-instellingen bijgewerkt. ";
App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Het ActivityPub-protocol ondersteunt geen locatieonafhankelijkheid. Connecties die je met dit netwerk maakt zijn mogelijk onbereikbaar vanaf andere kanaallocaties.";
App::$strings["Enable the ActivityPub protocol for this channel"] = "ActivityPub-protocol voor dit kanaal inschakelen";
App::$strings["Send multi-media HTML articles"] = "Verzend multimedia-HTML-artikelen";
App::$strings["Not supported by some microblog services such as Mastodon"] = "Wordt door sommige microblogdiensten, zoals Mastodon, niet ondersteund";
App::$strings["ActivityPub Protocol Settings"] = "ActivityPub-protocol";
App::$strings["Project Servers and Resources"] = "Projectservers en -middelen";
App::$strings["Project Creator and Tech Lead"] = "Projectgrondlegger en hoofdontwikkelaar";
App::$strings["Admin, developer, directorymin, support bloke"] = "Beheerder, ontwikkelaar, kanalengidsbeheerder en supportgozer";
App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "En de honderden andere mensen en organisaties die Hubzilla mogelijk hebben gemaakt. ";
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."] = "De Hubzillaprojecten worden hoofdzakelijk aangeboden door vrijwilligers die er hun tijd en expertise insteken - en meestal zelf de diensten betalen die ze met anderen delen.";
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>.)"] = "Wij worden niet gefinancierd door bedrijven en reclame, en wij verzamelen en verkopen niet jouw persoonlijke gegevens. We hebben geen controle over jouw persoonlijke gegevens - <strong>dat heb jezelf</strong>.";
App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Steun ons baanbrekende werk in decentralisatie, webidentiteit en privacy. ";
App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Jouw donaties laten onze servers en diensten draaien, en helpt ons om nieuwe innovatieve mogelijkheden te blijven ontwikkelen.";
App::$strings["Donate"] = "Doneer";
App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Kies een project, ontwikkelaar of openbaar toegankelijke hub, die je met een eenmalige donatie wil steunen";
App::$strings["Donate Now"] = "Doneer nu";
App::$strings["<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)"] = "<strong><em>Of</em></strong> wordt een projectsponsor (alleen het Hubzilla-project)";
App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Geef aan of jouw voornaam of volledige naam (of niets) op onze sponsorlijst moet verschijnen";
App::$strings["Sponsor"] = "Sponsor";
App::$strings["Special thanks to: "] = "Speciale dank gaat naar: ";
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."] = "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."] = "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 ..."] = "Valid examples include  A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ...";
App::$strings["Guitar Chords"] = "Gitaarakkoorden";
App::$strings["The complete online chord dictionary"] = "Het complete online akkoordenboek";
App::$strings["Tuning"] = "Stemmen";
App::$strings["Chord name: example: Em7"] = "Akkoordnaam: bijvoorbeeld: Em7";
App::$strings["Show for left handed stringing"] = "Toon voor linkshandige gitaar";
App::$strings["Quick Reference"] = "Beknopt overzicht";
App::$strings["Post to Libertree"] = "Libertree";
App::$strings["Enable Libertree Post Plugin"] = "Doorplaatsen naar Libertree inschakelen";
App::$strings["Libertree API token"] = "API-token Libertree";
App::$strings["Libertree site URL"] = "Website-URL Libertree";
App::$strings["Post to Libertree by default"] = "Standaard doorplaatsen naar Libertree";
App::$strings["Libertree Post Settings"] = "Libertree (berichten doorplaatsen)";
App::$strings["Libertree Settings saved."] = "Libertree-instellingen opgeslagen.";
App::$strings["Flattr this!"] = "Flattr this!";
App::$strings["Flattr widget settings updated."] = "Instellingen Flattrwidget bijgewerkt.";
App::$strings["Flattr user"] = "Gebruikersnaam Flattr";
App::$strings["URL of the Thing to flattr"] = "URL van het Flattr-item";
App::$strings["If empty channel URL is used"] = "Wanneer een lege kanaal-URL wordt gebruikt";
App::$strings["Title of the Thing to flattr"] = "Naam van het Flattr-item";
App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Wanneer een lege \"kanaalnaam op Hubzilla\" wordt gebruikt";
App::$strings["Static or dynamic flattr button"] = "Statische of dynamische Flattr-knop";
App::$strings["static"] = "statisch";
App::$strings["dynamic"] = "dynamisch";
App::$strings["Alignment of the widget"] = "Uitlijning van de widget";
App::$strings["left"] = "links";
App::$strings["right"] = "rechts";
App::$strings["Enable Flattr widget"] = "Flattrwidget inschakelen";
App::$strings["Flattr Widget Settings"] = "Flattrwidget";
App::$strings["Post to GNU social"] = "GNU social";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "De verstrekte API-URL is ongeldig.<br />Neem contact op met jouw hubbeheerder.";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "Wij konden de GNU social-API niet bereiken door middel van het ingevulde pad.";
App::$strings["GNU social settings updated."] = "GNU social-instellingen bijgewerkt.";
App::$strings["Globally Available GNU social OAuthKeys"] = "Op de gehele hub te gebruiken 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)."] = "Er zijn op deze hub enkele voorgeconfigureerde OAuthkey-paren voor GNU social servers beschikbaar. Wanneer je een van deze servers gebruikt, gebruik dan deze voorgeconfigureerde gegevens.<br />Wanneer dit niet het geval is, maak dan gerust met een andere GNU social-server verbinding (zie hieronder).";
App::$strings["Provide your own OAuth Credentials"] = "Verstrek jouw eigen OAuth-gegevens";
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."] = "Geen consumerkey voor GNU social gevonden. Registreer jouw Hubzilla-account als een desktopclient in jouw GNU-social-account, kopieer en plak hier de consumerkey en de consumersecret, en vul de API-base-root in.<br />Voordat je jouw eigen OAuthkey-paar registreert, vraag dan eerst aan jouw hubbeheerder of er al een key-paar voor deze hub op jouw favoriete GNU social-server bestaat.";
App::$strings["OAuth Consumer Key"] = "OAuth-consumerkey";
App::$strings["OAuth Consumer Secret"] = "Oauth-consumersecret";
App::$strings["Base API Path"] = "Basispad API";
App::$strings["Remember the trailing /"] = "Vergeet niet de afsluitende /";
App::$strings["GNU social application name"] = "Naam GNU social-applicatie";
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."] = "Om jouw GNU social-account te koppelen klik je op de knop hieronder. Je krijgt dan een veiligheidscode van GNU social die je kan kopiëren en dan hieronder in het invulveld kan plakken. Vervolgens klik je op Opslaan. Alleen jouw  <strong>openbare</strong> berichten kunnen worden doorgeplaatst naar GNU social.";
App::$strings["Log in with GNU social"] = "Inloggen op ";
App::$strings["Copy the security code from GNU social here"] = "Plak de veiligheidscode van GNU social hier";
App::$strings["Cancel Connection Process"] = "Annuleer het verbindingsproces";
App::$strings["Current GNU social API is"] = "Huidige GNU social-API is";
App::$strings["Cancel GNU social Connection"] = "Annuleer de GNU social-verbinding";
App::$strings["Currently connected to: "] = "Momenteel gekoppeld aan: ";
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>Opmerking</strong>: In verband met jouw privacyinstellingen (<em>wanneer jouw kanaalprofiel voor onbekenden is verborgen</em>) leidt de profiellink die mogelijk in jouw naar GNU social doorgestuurde openbare berichten staat, naar een lege pagina met de melding dat toegang tot jouw kanaalprofiel is beperkt.";
App::$strings["Allow posting to GNU social"] = "Doorplaatsen naar GNU social toestaan";
App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Wanneer dit is ingeschakeld kunnen jouw openbare berichten naar het gekoppelde Twitter-account worden doorgeplaatst";
App::$strings["Post to GNU social by default"] = "Standaard doorplaatsen naar GNU social";
App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Wanneer dit is ingeschakeld worden al jouw openbare berichten standaard naar het gekoppelde GNU social-account doorgeplaatst";
App::$strings["Clear OAuth configuration"] = "OAuth-configuratie wissen";
App::$strings["GNU social Post Settings"] = "GNU social (berichten doorplaatsen)";
App::$strings["API URL"] = "API-URL";
App::$strings["Application name"] = "Naam applicatie";
App::$strings["QR code"] = "QR-code";
App::$strings["QR Generator"] = "QR-code-generator";
App::$strings["Enter some text"] = "Vul wat tekst in";
App::$strings["Invalid game."] = "Ongeldig spel.";
App::$strings["You are not a player in this game."] = "Jij doet niet aan dit speel mee.";
App::$strings["You must be a local channel to create a game."] = "Je moet een lokaal kanaal zijn om een spel aan te maken.";
App::$strings["You must select one opponent that is not yourself."] = "Je moet één tegenstander uitkiezen, maar niet jezelf.";
App::$strings["Random color chosen."] = "Willekeurige kleur gekozen.";
App::$strings["Error creating new game."] = "Fout tijdens aanmaken nieuw spel.";
App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar.";
App::$strings["You must select a local channel /chess/channelname"] = "Je moet een lokaal kanaal kiezen: .../chess/kanaalnaam";
App::$strings["Enable notifications"] = "Meldingen inschakelen";
App::$strings["Post to Twitter"] = "Twitter";
App::$strings["Twitter settings updated."] = "Twitter-instellingen bijgewerkt.";
App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Geen consumerkeys voor Twitter gevonden. Neem contact op met jouw hubbeheerder.";
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."] = "De Twitter-plug-in is op deze Hubzilla-hub ingeschakeld, maar je hebt nog niet jouw Hubzilla-kanaal met jouw Twitter-account gekoppeld. Om dit te doen klik je op de knop hieronder om een PIN-code van Twitter te krijgen. Deze dien je te kopiëren en in het invoegveld beneden te plakken. Vervolgens klik je op Opslaan. Alleen jouw <strong>openbare</strong> berichten kunnen op Twitter worden geplaatst.";
App::$strings["Log in with Twitter"] = "Op Twitter inloggen";
App::$strings["Copy the PIN from Twitter here"] = "Plak of type de PIN-code hier";
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>Opmerking</strong>: In verband met jouw privacyinstellingen (<em>wanneer jouw kanaalprofiel voor onbekenden is verborgen</em>) leidt de profiellink die mogelijk in jouw naar Twitter doorgestuurde openbare berichten staat, naar een lege pagina met de melding dat toegang tot jouw kanaalprofiel is beperkt.";
App::$strings["Allow posting to Twitter"] = "Doorplaatsen naar Twitter toestaan";
App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Wanneer dit is ingeschakeld kunnen jouw <strong>openbare</strong> berichten naar het gekoppelde Twitter-account worden doorgeplaatst";
App::$strings["Twitter post length"] = "Lengte Twitterbericht";
App::$strings["Maximum tweet length"] = "Maximale tweetlengte";
App::$strings["Send public postings to Twitter by default"] = "Standaard doorplaatsen naar Twitter";
App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Wanneer dit is ingeschakeld worden al jouw <strong>openbare</strong> berichten standaard naar het gekoppelde Twitter-account doorgeplaatst";
App::$strings["Twitter Post Settings"] = "Twitter (berichten doorplaatsen)";
App::$strings["Deactivate the feature"] = "Deze functie uitschakelen";
App::$strings["Hide the button and show the smilies directly."] = "Verberg de knop en toon de smilies direct.";
App::$strings["Smileybutton Settings"] = "Smileyknop";
App::$strings["Order Not Found"] = "Bestelling niet gevonden";
App::$strings["Order cannot be checked out."] = "De bestelling kan niet worden uitgecheckt.";
App::$strings["Enable Shopping Cart"] = "Winkelwagen inschakelen";
App::$strings["Enable Test Catalog"] = "Testcatalogus inschakelen";
App::$strings["Enable Manual Payments"] = "Handmatige betalingen inschakelen";
App::$strings["Base Cart Settings"] = "Algemene kaartinstellingen";
App::$strings["Add Item"] = "Item toevoegen";
App::$strings["Call cart_post_"] = "Call cart_post_";
App::$strings["Cart Not Enabled (profile: "] = "Winkelwagen niet ingeschakeld (profiel:";
App::$strings["Order not found."] = "Bestelling niet gevonden.";
App::$strings["No Order Found"] = "Geen bestelling gevonden";
App::$strings["call: "] = "call: ";
App::$strings["An unknown error has occurred Please start again."] = "Er heeft zich een onbekende fout voorgedaan. Start opnieuw.";
App::$strings["Invalid Payment Type.  Please start again."] = "Ongeldige betalingssoort. Start opnieuw.";
App::$strings["Order not found"] = "Bestelling niet gevonden";
App::$strings["Error: order mismatch. Please try again."] = "Fout: mismatch bestelling. Probeer opnieuw.";
App::$strings["Manual payments are not enabled."] = "Handmatige betalingen zijn niet ingeschakeld.";
App::$strings["Finished"] = "Afgerond";
App::$strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Het bezoek aan deze website wordt gemeten door <a href='http://www.piwik.org'>Piwik</a>.";
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)."] = "Wanneer je niet wil dat jouw bezoek aan deze website wordt bijgehouden, <a href='%s'>kan je een cookie achterlaten om te verhinderen dat Piwik jou op deze website blijft volgen</a> (opt-out).";
App::$strings["Piwik Base URL"] = "Basis-URL Piwik";
App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absoluut pad naar jouw Piwik-installatie (zonder protocol (http/s), met een slash op het einde)";
App::$strings["Site ID"] = "Site ID";
App::$strings["Show opt-out cookie link?"] = "Toon opt-out cookie-link?";
App::$strings["Asynchronous tracking"] = "Asynchroon volgen";
App::$strings["Enable frontend JavaScript error tracking"] = "Volgen van front-end JavaScript-fouten inschakelen";
App::$strings["This feature requires Piwik >= 2.2.0"] = "Deze functie vereist Piwik >= 2.2.0";
App::$strings["Edit your profile and change settings."] = "Jouw profiel bewerken en instellingen veranderen.";
App::$strings["Click here to see activity from your connections."] = "Klik hier voor een tijdlijn met berichten en overige activiteiten van jouw connecties.";
App::$strings["Click here to see your channel home."] = "Klik hier voor de tijdlijn van jouw eigen kanaal.";
App::$strings["You can access your private messages from here."] = "Hiermee krijg je toegang tot jouw privéberichten.";
App::$strings["Create new events here."] = "Nieuwe gebeurtenissen kan je hier aanmaken.";
App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Hier kan je nieuwe connecties accepteren en instellingen van bestaande connecties wijzigen. Je kan hier bijv. ook privacygroepen aanmaken.";
App::$strings["System notifications will arrive here"] = "Systeemmeldingen komen hier tevoorschijn";
App::$strings["Search for content and users"] = "Zoek hier naar tekst in berichten of naar andere kanalen.";
App::$strings["Browse for new contacts"] = "Blader hier in een gids met kanalen, die je toe kan voegen als connectie.";
App::$strings["Launch installed apps"] = "Open (op deze hub) geïnstalleerde apps.";
App::$strings["Looking for help? Click here."] = "Zoek je hulp? Klik dan hier.";
App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "Er is een nieuwe gebeurtenis in jouw netwerk. Klik hier om te zien wat precies.";
App::$strings["You have received a new private message. Click here to see from who!"] = "Je hebt een nieuw privébericht ontvangen. Klik hier om te zien van wie.";
App::$strings["There are events this week. Click here too see which!"] = "Er vinden deze week gebeurtenissen plaats. Klik hier om te zien welke dit zijn.";
App::$strings["You have received a new introduction. Click here to see who!"] = "Je hebt een nieuw connectieverzoek ontvangen. Klik hier om te kijken van wie.";
App::$strings["There is a new system notification. Click here to see what has happened!"] = "Er is een nieuwe systeemmelding. Klik hier om te zien wat er aan de hand is.";
App::$strings["Click here to share text, images, videos and sound."] = "Klik hier om tekst, afbeeldingen, video en audio te delen.";
App::$strings["You can write an optional title for your update (good for long posts)."] = "Je kan een titel voor je nieuwe bericht verzinnen, maar dit is niet verplicht. Vooral goed voor langere berichten.";
App::$strings["Entering some categories here makes it easier to find your post later."] = "Het invullen van enkele categorieën, maakt het later terugvinden van je berichten gemakkelijker. Dit is niet verplicht.";
App::$strings["Share photos, links, location, etc."] = "Deel foto's, links, locaties, enz.";
App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Wil je alleen iets tot een bepaald moment delen? Dan kan je het hiermee op een bepaalde datum en tijd laten verlopen.";
App::$strings["You can password protect content."] = "Je kan met een wachtwoord gegevens beveiligen.";
App::$strings["Choose who you share with."] = "Kies met wie je dit wil delen. ";
App::$strings["Click here when you are done."] = "Klik hier wanneer je klaar bent.";
App::$strings["Adjust from which channels posts should be displayed."] = "Aanpassen van welke kanalen berichten moeten worden getoond. ";
App::$strings["Only show posts from channels in the specified privacy group."] = "Toon alleen berichten van kanalen in de hier gekozen privacygroep.";
App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Vind gemakkelijk berichten met tags (trefwoorden die beginnen met een \"#\").";
App::$strings["Easily find posts in given category."] = "Vind gemakkelijk berichten in een bepaalde categorie.";
App::$strings["Easily find posts by date."] = "Vind gemakkelijk berichten op datum.";
App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Voorstellen voor kanalen die wellicht interessant voor jou zijn en hier ook vrijwillig voor hebben gekozen.";
App::$strings["Here you see channels you have connected to."] = "Hier kan je zien met welke kanalen je bent verbonden (connecties).";
App::$strings["Save your search so you can repeat it at a later date."] = "Sla jouw zoekopdracht op, zodat je het later opnieuw kan gebruiken.";
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."] = "Wanneer je dit pictogram ziet, kan je er van uitgaan dat de afzender is wie hij/zij beweert te zijn. Het is niet altijd mogelijk om de afzender te verifiëren, waardoor het pictogram soms ontbreekt. Dit is meestal geen reden voor ongerustheid.";
App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Gevaar! Het lijkt er op dat iemand een bericht heeft proberen te vervalsen! Dit bericht is mogelijk niet afkomstig van de vermelde afzender!";
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"] = "Welkom op Hubzilla! Wil jij een rondleiding hebben langs de gebruikersinterface?</p> <p>Je kan dit op elk moment pauzeren en weer hervatten door de pagina te herladen of naar een andere pagina te gaan.</p><p>Je kan ook vooruitgaan met behulp van de entertoets.";
App::$strings["Extended Identity Sharing"] = "Uitgebreid identiteit delen";
App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Deel jouw Hubzilla-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het  Hubzilla-netwerk gedeeld.";
App::$strings["Three Dimensional Tic-Tac-Toe"] = "Driedimensionaal Boter-kaas-en-eieren";
App::$strings["3D Tic-Tac-Toe"] = "Boter-kaas-en-eieren in 3D";
App::$strings["New game"] = "Nieuw spel";
App::$strings["New game with handicap"] = "Nieuw spel met handicap";
App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Driedimensionaal Boter-kaas-en-eieren is hetzelfde als het klassieke spel, behalve dat het gelijktijdig op meerdere hoogtes wordt gespeeld.";
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 dit geval zijn er drie hoogtes. Je wint wanneer je drie op een rij hebt op een van de drie hoogtes, van boven naar beneden of diagonaal.";
App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Het spel met een handicap schakelt de middelste positie op de middelste hoogte uit, omdat de speler die deze positie krijgt vaak een oneerlijk voordeel geniet.";
App::$strings["You go first..."] = "Jij bent eerst...";
App::$strings["I'm going first this time..."] = "Ik ga deze keer eerst...";
App::$strings["You won!"] = "Jij wint!";
App::$strings["\"Cat\" game!"] = "Gelijkspel!";
App::$strings["I won!"] = "Ik win!";
App::$strings["Message to display on every page on this server"] = "Bericht om op elke pagina van deze hub te tonen";
App::$strings["Pageheader Settings"] = "Pageheader";
App::$strings["pageheader Settings saved."] = "Pageheader-instellingen opgeslagen.";
App::$strings["Only authenticate automatically to sites of your friends"] = "Alleen automatisch authentiseren op hubs van jouw connecties";
App::$strings["By default you are automatically authenticated anywhere in the network"] = "Standaard wordt je overal in het netwerk automatisch geauthentiseerd";
App::$strings["Authchoose Settings"] = "Authchoose (authenticatiekeuze)";
App::$strings["Atuhchoose Settings updated."] = "Authchoose-instellingen bijgewerkt.";
App::$strings["lonely"] = "Eenzaam";
App::$strings["drunk"] = "dronken";
App::$strings["horny"] = "geil";
App::$strings["stoned"] = "stoned";
App::$strings["fucked up"] = "opgefokt";
App::$strings["clusterfucked"] = "clusterfucked";
App::$strings["crazy"] = "gek";
App::$strings["hurt"] = "gekwetst";
App::$strings["sleepy"] = "slaperig";
App::$strings["grumpy"] = "chagrijnig";
App::$strings["high"] = "high";
App::$strings["semi-conscious"] = "half bij kennis";
App::$strings["in love"] = "verliefd";
App::$strings["in lust"] = "wellustig";
App::$strings["naked"] = "naakt";
App::$strings["stinky"] = "stinkend";
App::$strings["sweaty"] = "zweterig";
App::$strings["bleeding out"] = "aan het doodbloeden";
App::$strings["victorious"] = "zegevierend";
App::$strings["defeated"] = "verslagen";
App::$strings["envious"] = "jaloers";
App::$strings["jealous"] = "jaloers";
App::$strings["XMPP settings updated."] = "XMPP-instellingen bijgewerkt.";
App::$strings["Enable Chat"] = "Chatten inschakelen";
App::$strings["Individual credentials"] = "Individuele credentials";
App::$strings["Jabber BOSH server"] = "BOSH-server van Jabber";
App::$strings["XMPP Settings"] = "XMPP";
App::$strings["Jabber BOSH host"] = "BOSH-host van Jabber";
App::$strings["Use central userbase"] = "Gebruik een centrale gebruikersgroep";
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."] = "Wanneer ingeschakeld worden leden automatisch op een Ejabberd-server ingelogd. Deze dient wel op deze machine te zijn geïnstalleerd met zgn. 'synchronized credentials' via het 'auth_ejabberd.php'-script.";
App::$strings["Who likes me?"] = "Wie vindt mij leuk?";
App::$strings["You are now authenticated to pumpio."] = "De verbinding met pump.io is geverifieerd";
App::$strings["return to the featured settings page"] = "Ga terug naar pagina met plug-in-instellingen";
App::$strings["Post to Pump.io"] = "Pump.io";
App::$strings["Pump.io servername"] = "Pump.io-servernaam";
App::$strings["Without \"http://\" or \"https://\""] = "Zonder \"http://\" of \"https://\"";
App::$strings["Pump.io username"] = "Gebruikersnaam Pump.io";
App::$strings["Without the servername"] = "Zonder servernaam";
App::$strings["You are not authenticated to pumpio"] = "De verbinding met pump.io is niet geverifieerd";
App::$strings["(Re-)Authenticate your pump.io connection"] = "Verifieer (opnieuw) jouw pump.io-verbinding";
App::$strings["Enable pump.io Post Plugin"] = "Doorplaatsen naar Pump.io inschakelen";
App::$strings["Post to pump.io by default"] = "Standaard doorplaatsen naar Pump.io";
App::$strings["Should posts be public"] = "Moeten berichten openbaar zijn";
App::$strings["Mirror all public posts"] = "Alle openbare berichten doorplaatsen";
App::$strings["Pump.io Post Settings"] = "Pump.io (berichten doorplaatsen)";
App::$strings["PumpIO Settings saved."] = "Pump.io-instellingen opgeslagen.";
App::$strings["An account has been created for you."] = "Er is voor jou een account aangemaakt.";
App::$strings["Authentication successful but rejected: account creation is disabled."] = "Authenticatie geslaagd, maar afgekeurd: aanmaken accounts uitgeschakeld.";
App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Zoek %1\$s (%2\$s)";
App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
App::$strings["Search \$Projectname"] = "Zoek in ";
App::$strings["Redmatrix File Storage Import"] = "Importeer bestanden vanuit Redmatrix";
App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Hiermee importeer je al jouw Redmatrix-bestanden in dit kanaal.";
App::$strings["file"] = "bestand";
App::$strings["Send email to all members"] = "Naar alle leden e-mail versturen";
App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d van %2\$d berichten verzonden.";
App::$strings["Send email to all hub members."] = "Naar alle leden van deze hub e-mail versturen.";
App::$strings["Sender Email address"] = "E-mailadres afzender";
App::$strings["Test mode (only send to hub administrator)"] = "Testmodus (alleen naar hubbeheerder sturen)";
App::$strings["Frequently"] = "Regelmatig";
App::$strings["Hourly"] = "Elk uur";
App::$strings["Twice daily"] = "Twee keer per dag";
App::$strings["Daily"] = "Dagelijks";
App::$strings["Weekly"] = "Wekelijks";
App::$strings["Monthly"] = "Maandelijks";
App::$strings["Currently Male"] = "Momenteel man";
App::$strings["Currently Female"] = "Momenteel vrouw";
App::$strings["Mostly Male"] = "Voornamelijk man";
App::$strings["Mostly Female"] = "Voornamelijk vrouw";
App::$strings["Transgender"] = "Transgender";
App::$strings["Intersex"] = "Interseksueel";
App::$strings["Transsexual"] = "Transseksueel";
App::$strings["Hermaphrodite"] = "Hermafrodiet";
App::$strings["Neuter"] = "Genderneutraal";
App::$strings["Non-specific"] = "Niet gespecificeerd";
App::$strings["Undecided"] = "Nog niet beslist";
App::$strings["Males"] = "Mannen";
App::$strings["Females"] = "Vrouwen";
App::$strings["Gay"] = "Homoseksueel";
App::$strings["Lesbian"] = "Lesbisch";
App::$strings["No Preference"] = "Geen voorkeur";
App::$strings["Bisexual"] = "Biseksueel";
App::$strings["Autosexual"] = "Autoseksueel";
App::$strings["Abstinent"] = "Seksuele onthouding";
App::$strings["Virgin"] = "Maagd";
App::$strings["Deviant"] = "Afwijkend";
App::$strings["Fetish"] = "Fetisj";
App::$strings["Oodles"] = "Veel";
App::$strings["Nonsexual"] = "Aseksueel";
App::$strings["Single"] = "Alleen";
App::$strings["Lonely"] = "Eenzaam";
App::$strings["Available"] = "Beschikbaar";
App::$strings["Unavailable"] = "Niet beschikbaar";
App::$strings["Has crush"] = "Heeft een oogje op iemand";
App::$strings["Infatuated"] = "Smoorverliefd";
App::$strings["Dating"] = "Aan het daten";
App::$strings["Unfaithful"] = "Ontrouw";
App::$strings["Sex Addict"] = "Seksverslaafd";
App::$strings["Friends/Benefits"] = "Vriendschap plus";
App::$strings["Casual"] = "Ongebonden/vluchtig";
App::$strings["Engaged"] = "Verloofd";
App::$strings["Married"] = "Getrouwd";
App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd";
App::$strings["Partners"] = "Partners";
App::$strings["Cohabiting"] = "Samenwonend";
App::$strings["Common law"] = "Common-law-huwelijk";
App::$strings["Happy"] = "Gelukkig";
App::$strings["Not looking"] = "Niet op zoek";
App::$strings["Swinger"] = "Swinger";
App::$strings["Betrayed"] = "Verraden";
App::$strings["Separated"] = "Uit elkaar";
App::$strings["Unstable"] = "Onstabiel";
App::$strings["Divorced"] = "Gescheiden";
App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden";
App::$strings["Widowed"] = "Weduwnaar/weduwe";
App::$strings["Uncertain"] = "Onzeker";
App::$strings["It's complicated"] = "Het is ingewikkeld";
App::$strings["Don't care"] = "Maakt mij niks uit";
App::$strings["Ask me"] = "Vraag het me";
App::$strings["likes %1\$s's %2\$s"] = "vindt het %2\$s van %1\$s leuk";
App::$strings["doesn't like %1\$s's %2\$s"] = "vindt het %2\$s van %1\$s niet leuk";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden";
App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten";
App::$strings["poked"] = "aangestoten";
App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
App::$strings["Categories:"] = "Categorieën:";
App::$strings["Filed under:"] = "Bewaard onder:";
App::$strings["View in context"] = "In context bekijken";
App::$strings["remove"] = "verwijderen";
App::$strings["Loading..."] = "Aan het laden...";
App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items";
App::$strings["View Source"] = "Bron tonen";
App::$strings["Follow Thread"] = "Conversatie volgen";
App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen";
App::$strings["Edit Connection"] = "Connectie bewerken";
App::$strings["Message"] = "Bericht";
App::$strings["%s likes this."] = "%s vindt dit leuk.";
App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk.";
App::$strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "<span  %1\$s>%2\$d persoon</span> vindt dit leuk.",
	1 => "<span  %1\$s>%2\$d personen</span> vinden dit leuk.",
);
App::$strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "<span  %1\$s>%2\$d persoon</span> vindt dit niet leuk.",
	1 => "<span  %1\$s>%2\$d personen</span> vinden dit niet leuk.",
);
App::$strings["and"] = "en";
App::$strings[", and %d other people"] = array(
	0 => ", en %d ander persoon",
	1 => ", en %d andere personen",
);
App::$strings["%s like this."] = "%s vinden dit leuk.";
App::$strings["%s don't like this."] = "%s vinden dit niet leuk.";
App::$strings["Set your location"] = "Locatie instellen";
App::$strings["Clear browser location"] = "Locatie van webbrowser wissen";
App::$strings["Tag term:"] = "Tag:";
App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?";
App::$strings["Choose a different album..."] = "Kies een ander album...";
App::$strings["Comments enabled"] = "Reacties ingeschakeld";
App::$strings["Comments disabled"] = "Reacties uitgeschakeld";
App::$strings["Page link name"] = "Linknaam pagina";
App::$strings["Post as"] = "Bericht plaatsen als";
App::$strings["Toggle voting"] = "Peiling in- of uitschakelen";
App::$strings["Disable comments"] = "Reacties uitschakelen";
App::$strings["Toggle comments"] = "Reacties in- of uitschakelen";
App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (niet verplicht, door komma's gescheiden lijst)";
App::$strings["Other networks and post services"] = "Andere netwerken en diensten";
App::$strings["Set publish date"] = "Publicatiedatum instellen";
App::$strings["Commented Order"] = "Nieuwe reacties bovenaan";
App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
App::$strings["Posted Order"] = "Nieuwe berichten bovenaan";
App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent";
App::$strings["Activity Stream - by date"] = "Tijdlijn - op datum";
App::$strings["Starred"] = "Met ster";
App::$strings["Favourite Posts"] = "Favoriete berichten";
App::$strings["Spam"] = "Spam";
App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM";
App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal";
App::$strings["Profile Details"] = "Profiel";
App::$strings["Photo Albums"] = "Fotoalbums";
App::$strings["Files and Storage"] = "Bestanden en opslagruimte";
App::$strings["Bookmarks"] = "Bladwijzers";
App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers";
App::$strings["View Cards"] = "Kaarten tonen";
App::$strings["articles"] = "artikelen";
App::$strings["View Articles"] = "Artikelen tonen";
App::$strings["View Webpages"] = "Webpagina's tonen";
App::$strings["__ctx:noun__ Attending"] = array(
	0 => "aanwezig",
	1 => "aanwezig",
);
App::$strings["__ctx:noun__ Not Attending"] = array(
	0 => "niet aanwezig",
	1 => "niet aanwezig",
);
App::$strings["__ctx:noun__ Undecided"] = array(
	0 => "nog niet beslist",
	1 => "nog niet beslist",
);
App::$strings["__ctx:noun__ Agree"] = array(
	0 => "eens",
	1 => "eens",
);
App::$strings["__ctx:noun__ Disagree"] = array(
	0 => "oneens",
	1 => "oneens",
);
App::$strings["__ctx:noun__ Abstain"] = array(
	0 => "onthouding",
	1 => "onthoudingen",
);
App::$strings["Directory Options"] = "Opties kanalengids";
App::$strings["Safe Mode"] = "Veilig zoeken";
App::$strings["Public Forums Only"] = "Alleen openbare forums";
App::$strings["This Website Only"] = "Alleen deze hub";
App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s";
App::$strings["Unable to import a removed channel."] = "Niet in staat om een verwijderd kanaal te importeren.";
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt.";
App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt.";
App::$strings["prev"] = "vorige";
App::$strings["first"] = "eerste";
App::$strings["last"] = "laatste";
App::$strings["next"] = "volgende";
App::$strings["older"] = "ouder";
App::$strings["newer"] = "nieuwer";
App::$strings["No connections"] = "Geen connecties";
App::$strings["View all %s connections"] = "Toon alle %s connecties";
App::$strings["poke"] = "aanstoten";
App::$strings["ping"] = "ping";
App::$strings["pinged"] = "gepingd";
App::$strings["prod"] = "por";
App::$strings["prodded"] = "gepord";
App::$strings["slap"] = "slaan";
App::$strings["slapped"] = "sloeg";
App::$strings["finger"] = "finger";
App::$strings["fingered"] = "gefingerd";
App::$strings["rebuff"] = "afpoeieren";
App::$strings["rebuffed"] = "afgepoeierd";
App::$strings["happy"] = "gelukkig";
App::$strings["sad"] = "bedroefd";
App::$strings["mellow"] = "mellow";
App::$strings["tired"] = "moe";
App::$strings["perky"] = "parmantig";
App::$strings["angry"] = "boos";
App::$strings["stupefied"] = "verbijsterd";
App::$strings["puzzled"] = "verward";
App::$strings["interested"] = "geïnteresseerd";
App::$strings["bitter"] = "verbitterd";
App::$strings["cheerful"] = "vrolijk";
App::$strings["alive"] = "levendig";
App::$strings["annoyed"] = "geërgerd";
App::$strings["anxious"] = "bezorgd";
App::$strings["cranky"] = "humeurig";
App::$strings["disturbed"] = "verontrust";
App::$strings["frustrated"] = "gefrustreerd ";
App::$strings["depressed"] = "gedeprimeerd";
App::$strings["motivated"] = "gemotiveerd";
App::$strings["relaxed"] = "ontspannen";
App::$strings["surprised"] = "verrast";
App::$strings["Monday"] = "maandag";
App::$strings["Tuesday"] = "dinsdag";
App::$strings["Wednesday"] = "woensdag";
App::$strings["Thursday"] = "donderdag";
App::$strings["Friday"] = "vrijdag";
App::$strings["Saturday"] = "zaterdag";
App::$strings["Sunday"] = "zondag";
App::$strings["January"] = "januari";
App::$strings["February"] = "februari";
App::$strings["March"] = "maart";
App::$strings["April"] = "april";
App::$strings["May"] = "mei";
App::$strings["June"] = "juni";
App::$strings["July"] = "juli";
App::$strings["August"] = "augustus";
App::$strings["September"] = "september";
App::$strings["October"] = "oktober";
App::$strings["November"] = "november";
App::$strings["December"] = "december";
App::$strings["Unknown Attachment"] = "Onbekende bijlage";
App::$strings["unknown"] = "onbekend";
App::$strings["remove category"] = "categorie verwijderen";
App::$strings["remove from file"] = "uit map verwijderen";
App::$strings["Download binary/encrypted content"] = "Binaire/versleutelende inhoud downloaden";
App::$strings["default"] = "standaard";
App::$strings["Page layout"] = "Pagina-lay-out";
App::$strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs";
App::$strings["HTML"] = "HTML";
App::$strings["Comanche Layout"] = "Comanche-layout";
App::$strings["PHP"] = "PHP";
App::$strings["Page content type"] = "Opmaaktype";
App::$strings["activity"] = "activiteit";
App::$strings["a-z, 0-9, -, and _ only"] = "alleen a-z, 0-9, - en _";
App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen";
App::$strings["Pages"] = "Pagina's";
App::$strings["Import website..."] = "Website importeren...";
App::$strings["Select folder to import"] = "Kies een map om te importeren";
App::$strings["Import from a zipped folder:"] = "Vanuit een zipbestand importeren:";
App::$strings["Import from cloud files:"] = "Vanuit de cloud importeren:";
App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/maplocatie";
App::$strings["Enter path to website files"] = "Voer de locatie in van de websitebestanden";
App::$strings["Select folder"] = "Kies een map";
App::$strings["Export website..."] = "Website exporteren...";
App::$strings["Export to a zip file"] = "Naar een zipbestand exporteren";
App::$strings["website.zip"] = "website.zip";
App::$strings["Enter a name for the zip file."] = "Vul een naam in voor het zipbestand.";
App::$strings["Export to cloud files"] = "Naar de cloud exporteren";
App::$strings["/path/to/export/folder"] = "/locatie/van/export/map";
App::$strings["Enter a path to a cloud files destination."] = "Voer de locatie in van de cloudbestemming";
App::$strings["Specify folder"] = "Selecteer een map";
App::$strings["%d invitation available"] = array(
	0 => "%d uitnodiging beschikbaar",
	1 => "%d uitnodigingen beschikbaar",
);
App::$strings["Find Channels"] = "Kanalen vinden";
App::$strings["Enter name or interest"] = "Vul naam of interesse in";
App::$strings["Connect/Follow"] = "Verbinden/volgen";
App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen";
App::$strings["Random Profile"] = "Willekeurig profiel";
App::$strings["Invite Friends"] = "Vrienden uitnodigen";
App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland";
App::$strings["Common Connections"] = "Gemeenschappelijke connecties";
App::$strings["View all %d common connections"] = "Toon alle %d gemeenschappelijke connecties";
App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s";
App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd.";
App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie.";
App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig.";
App::$strings["Premium channel - please visit:"] = "Premiumkanaal - bezoek:";
App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer.";
App::$strings["Remote channel or protocol unavailable."] = "Kanaal op afstand of protocol niet beschikbaar.";
App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt.";
App::$strings["Protocol disabled."] = "Protocol uitgeschakeld.";
App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden";
App::$strings["Delete this item?"] = "Dit item verwijderen?";
App::$strings["%s show less"] = "%s minder reacties tonen";
App::$strings["%s expand"] = "%s uitklappen";
App::$strings["%s collapse"] = "%s inklappen";
App::$strings["Password too short"] = "Wachtwoord te kort";
App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen";
App::$strings["everybody"] = "iedereen";
App::$strings["Secret Passphrase"] = "Geheim wachtwoord";
App::$strings["Passphrase hint"] = "Wachtwoordhint";
App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen.";
App::$strings["close all"] = "Alles sluiten";
App::$strings["Nothing new here"] = "Niets nieuw hier";
App::$strings["Rate This Channel (this is public)"] = "Beoordeel dit kanaal (dit is openbaar)";
App::$strings["Describe (optional)"] = "Omschrijving (niet verplicht)";
App::$strings["Please enter a link URL"] = "Vul een URL in:";
App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?";
App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
App::$strings["timeago.suffixAgo"] = "geleden";
App::$strings["timeago.suffixFromNow"] = "vanaf nu";
App::$strings["less than a minute"] = "minder dan een minuut";
App::$strings["about a minute"] = "ongeveer een minuut";
App::$strings["%d minutes"] = "%d minuten";
App::$strings["about an hour"] = "ongeveer een uur";
App::$strings["about %d hours"] = "ongeveer %d uren";
App::$strings["a day"] = "een dag";
App::$strings["%d days"] = "%d dagen";
App::$strings["about a month"] = "ongeveer een maand";
App::$strings["%d months"] = "%d maanden";
App::$strings["about a year"] = "ongeveer een jaar";
App::$strings["%d years"] = "%d jaren";
App::$strings[" "] = " ";
App::$strings["timeago.numbers"] = "timeago.numbers";
App::$strings["__ctx:long__ May"] = "mei";
App::$strings["Jan"] = "jan";
App::$strings["Feb"] = "feb";
App::$strings["Mar"] = "mrt";
App::$strings["Apr"] = "apr";
App::$strings["__ctx:short__ May"] = "mei";
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"] = "dec";
App::$strings["Sun"] = "zo";
App::$strings["Mon"] = "ma";
App::$strings["Tue"] = "di";
App::$strings["Wed"] = "wo";
App::$strings["Thu"] = "do";
App::$strings["Fri"] = "vr";
App::$strings["Sat"] = "za";
App::$strings["__ctx:calendar__ today"] = "vandaag";
App::$strings["__ctx:calendar__ month"] = "maand";
App::$strings["__ctx:calendar__ week"] = "week";
App::$strings["__ctx:calendar__ day"] = "dag";
App::$strings["__ctx:calendar__ All day"] = "hele dag";
App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden.";
App::$strings["No recipient provided."] = "Geen ontvanger opgegeven.";
App::$strings["[no subject]"] = "[geen onderwerp]";
App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd.";
App::$strings[" and "] = " en ";
App::$strings["public profile"] = "openbaar profiel";
App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s veranderde %2\$s naar &ldquo;%3\$s&rdquo;";
App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s";
App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd.";
App::$strings["Item was not found."] = "Item niet gevonden";
App::$strings["No source file."] = "Geen bronbestand.";
App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden";
App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden";
App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt.";
App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken.";
App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt.";
App::$strings["Path not available."] = "Locatie niet beschikbaar.";
App::$strings["Empty pathname"] = "Ontbrekende locatienaam";
App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of locatie";
App::$strings["Path not found."] = "Locatie niet gevonden";
App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt.";
App::$strings["database storage failed."] = "opslag in database mislukt.";
App::$strings["Empty path"] = "Ontbrekende locatie";
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."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. ";
App::$strings["(Unknown)"] = "(Onbekend)";
App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar.";
App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar.";
App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar.";
App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar.";
App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar.";
App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar.";
App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar.";
App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar.";
App::$strings["Privacy group is empty."] = "Privacygroep is leeg";
App::$strings["Privacy group: %s"] = "Privacygroep: %s";
App::$strings["Connection not found."] = "Connectie niet gevonden.";
App::$strings["profile photo"] = "profielfoto";
App::$strings["[Edited %s]"] = "[%s bewerkt]";
App::$strings["__ctx:edit_activity__ Post"] = "Bericht";
App::$strings["__ctx:edit_activity__ Comment"] = "Reactie";
App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen";
App::$strings["Empty name"] = "Ontbrekende naam";
App::$strings["Name too long"] = "Naam te lang";
App::$strings["No account identifier"] = "Geen account-identificator";
App::$strings["Nickname is required."] = "Bijnaam is verplicht";
App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te ontvangen";
App::$strings["Default Profile"] = "Standaardprofiel";
App::$strings["Unable to retrieve modified identity"] = "Niet in staat om aangepaste identiteit te ontvangen";
App::$strings["Create New Profile"] = "Nieuw profiel aanmaken";
App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar";
App::$strings["Gender:"] = "Geslacht:";
App::$strings["Homepage:"] = "Homepagina:";
App::$strings["Online Now"] = "Nu online";
App::$strings["Change your profile photo"] = "Jouw profielfoto veranderen";
App::$strings["Trans"] = "Transgender";
App::$strings["Like this channel"] = "Vind dit kanaal leuk";
App::$strings["j F, Y"] = "F j Y";
App::$strings["j F"] = "F j";
App::$strings["Birthday:"] = "Geboortedatum:";
App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
App::$strings["Tags:"] = "Tags:";
App::$strings["Sexual Preference:"] = "Seksuele voorkeur:";
App::$strings["Political Views:"] = "Politieke overtuigingen:";
App::$strings["Religion:"] = "Religie:";
App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:";
App::$strings["Likes:"] = "Houdt van:";
App::$strings["Dislikes:"] = "Houdt niet van:";
App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
App::$strings["My other channels:"] = "Mijn andere kanalen";
App::$strings["Musical interests:"] = "Muzikale interesses:";
App::$strings["Books, literature:"] = "Boeken, literatuur:";
App::$strings["Television:"] = "Televisie:";
App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:";
App::$strings["Love/Romance:"] = "Liefde/romantiek:";
App::$strings["Work/employment:"] = "Werk/beroep:";
App::$strings["School/education:"] = "School/opleiding:";
App::$strings["Like this thing"] = "Vind dit ding leuk";
App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
App::$strings["Starts:"] = "Start:";
App::$strings["Finishes:"] = "Einde:";
App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd.";
App::$strings["Not specified"] = "Niet aangegeven";
App::$strings["Needs Action"] = "Actie vereist";
App::$strings["Completed"] = "Voltooid";
App::$strings["In Process"] = "In behandeling";
App::$strings["Cancelled"] = "Geannuleerd";
App::$strings["Home, Voice"] = "Thuis, spraak";
App::$strings["Home, Fax"] = "Thuis, fax";
App::$strings["Work, Voice"] = "Werk, spraak";
App::$strings["Work, Fax"] = "Werk, fax";
App::$strings["view full size"] = "volledige grootte tonen";
App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["GNU-Social"] = "GNU social";
App::$strings["RSS/Atom"] = "RSS/Atom";
App::$strings["Diaspora"] = "Diaspora";
App::$strings["Facebook"] = "Facebook";
App::$strings["Zot"] = "Zot";
App::$strings["LinkedIn"] = "LinkedIn";
App::$strings["XMPP/IM"] = "XMPP/IM";
App::$strings["MySpace"] = "MySpace";
App::$strings["Select an alternate language"] = "Kies een andere taal";
App::$strings["Who can see this?"] = "Wie kan dit zien?";
App::$strings["Custom selection"] = "Handmatige selectie";
App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan.  Met \"Niet tonen\" kun je uitzonderingen maken op \"Tonen\".";
App::$strings["Show"] = "Tonen";
App::$strings["Don't show"] = "Niet tonen";
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."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.</br />Met deze permissies bepaal je wie het bericht kan zien.";
App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden";
App::$strings["Image/photo"] = "Afbeelding/foto";
App::$strings["Encrypted content"] = "Versleutelde inhoud";
App::$strings["Install %1\$s element %2\$s"] = "Installeer %1\$s element %2\$s";
App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren.";
App::$strings["card"] = "kaart";
App::$strings["article"] = "artikel";
App::$strings["Click to open/close"] = "Klik om te openen of te sluiten";
App::$strings["spoiler"] = "spoiler";
App::$strings["View article"] = "Artikel tonen";
App::$strings["View summary"] = "Samenvatting tonen";
App::$strings["$1 wrote:"] = "$1 schreef:";
App::$strings[" by "] = " door ";
App::$strings[" on "] = " op ";
App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud";
App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld";
App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s verwelkomt %2\$s";
App::$strings["General Features"] = "Algemene functies";
App::$strings["Display new member quick links menu"] = "Menu met links voor nieuwe leden tonen";
App::$strings["Advanced Profiles"] = "Geavanceerde profielen";
App::$strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel";
App::$strings["Profile Import/Export"] = "Profiel importen/exporteren";
App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken.";
App::$strings["Web Pages"] = "Webpagina's";
App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe";
App::$strings["Provide a wiki for your channel"] = "Voeg een wiki aan jouw kanaal toe";
App::$strings["Private Notes"] = "Privé-aantekeningen";
App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)";
App::$strings["Create personal planning cards"] = "Persoonlijke planningskaarten maken";
App::$strings["Create interactive articles"] = "Interactieve artikelen maken";
App::$strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu";
App::$strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk";
App::$strings["Photo Location"] = "Fotolocatie";
App::$strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart.";
App::$strings["Access Controlled Chatrooms"] = "Chatkanalen met toegangscontrole ";
App::$strings["Provide chatrooms and chat services with access control."] = "Chatkanalen en chatdiensten met toegangscontrole aanbieden.";
App::$strings["Smart Birthdays"] = "Slimme verjaardagen";
App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn.";
App::$strings["Event Timezone Selection"] = "Tijdzone gebeurtenis";
App::$strings["Allow event creation in timezones other than your own."] = "Sta het aanmaken van gebeurtenissen in andere tijdzones toe.";
App::$strings["Premium Channel"] = "Premiumkanaal";
App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal";
App::$strings["Advanced Directory Search"] = "Geavanceerd in de kanalengids zoeken";
App::$strings["Allows creation of complex directory search queries"] = "Gebruik complexe zoekopdrachten in de kanalengids";
App::$strings["Advanced Theme and Layout Settings"] = "Geavanceerde thema- en lay-out-instellingen";
App::$strings["Allows fine tuning of themes and page layouts"] = "Maakt het mogelijk dat thema's en pagina-lay-outs preciezer ingesteld kunnen worden ";
App::$strings["Access Control and Permissions"] = "Toegangscontrole en permissies";
App::$strings["Privacy Groups"] = "Privacygroepen";
App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen";
App::$strings["Multiple Profiles"] = "Meerdere profielen";
App::$strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
App::$strings["Provide alternate connection permission roles."] = "Extra permissietypes voor connecties aanmaken";
App::$strings["OAuth1 Clients"] = "OAuth1-clients";
App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "OAuth1-authenticatietokens beheren voor mobiele en remote apps.";
App::$strings["OAuth2 Clients"] = "OAuth2-clients";
App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "OAuth2-authenticatietokens beheren voor mobiele en remote apps.";
App::$strings["Access Tokens"] = "Gasttoegang";
App::$strings["Create access tokens so that non-members can access private content."] = "Maak toegangstokens aan zodat niet-leden toegang kunnen krijgen tot afgeschermde inhoud.";
App::$strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
App::$strings["Large Photos"] = "Grote foto's";
App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt.";
App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren.";
App::$strings["Even More Encryption"] = "Extra encryptie";
App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel.";
App::$strings["Enable Voting Tools"] = "Peilingen inschakelen";
App::$strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen.";
App::$strings["Disable Comments"] = "Reacties uitschakelen";
App::$strings["Provide the option to disable comments for a post"] = "Maak het mogelijk dat reacties op een bericht kunnen worden uitgeschakeld";
App::$strings["Delayed Posting"] = "Berichten uitstellen";
App::$strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden.";
App::$strings["Content Expiration"] = "Inhoud laten verlopen";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen";
App::$strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden";
App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. ";
App::$strings["Auto-save drafts of posts and comments"] = "Automatisch concepten van berichten en reacties opslaan";
App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Slaat automatisch concepten van berichten en reacties op in de lokale browseropslag, om zo onopzettelijke gegevensverlies te voorkomen";
App::$strings["Network and Stream Filtering"] = "Netwerk- en tijdlijnfilter";
App::$strings["Search by Date"] = "Zoek op datum";
App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren ";
App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik";
App::$strings["Network Personal Tab"] = "Persoonlijke tijdlijntab";
App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Tab inschakelen die alleen tijdlijnberichten toont waarmee jij interactie had";
App::$strings["Network New Tab"] = "Nieuwe tijdlijnactiviteittab";
App::$strings["Enable tab to display all new Network activity"] = "Tab inschakelen om alle nieuwe tijdlijnactiviteit te tonen";
App::$strings["Affinity Tool"] = "Affiniteitsfilter";
App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je op jouw tijdlijn ziet aan de hand van hoe goed je iemand kent of mag";
App::$strings["Show friend and connection suggestions"] = "Toon kanaalvoorstellen";
App::$strings["Connection Filtering"] = "Berichtenfilters";
App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal";
App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen";
App::$strings["Community Tagging"] = "Taggen door anderen";
App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen";
App::$strings["Post Categories"] = "Categorieën berichten";
App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten";
App::$strings["Emoji Reactions"] = "Emoji-reacties";
App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan";
App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan";
App::$strings["Dislike Posts"] = "Vind berichten niet leuk";
App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden";
App::$strings["Star Posts"] = "Geef berichten een ster";
App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren";
App::$strings["Tag Cloud"] = "Tagwolk";
App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina";
App::$strings["Trending"] = "Trending";
App::$strings["Keywords"] = "Trefwoorden";
App::$strings["have"] = "heb";
App::$strings["has"] = "heeft";
App::$strings["want"] = "wil";
App::$strings["wants"] = "wil";
App::$strings["likes"] = "vindt dit leuk";
App::$strings["dislikes"] = "vindt dit niet leuk";
App::$strings["Not a valid email address"] = "Geen geldig e-mailadres";
App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan";
App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd.";
App::$strings["An invitation is required."] = "Een uitnodiging is vereist";
App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden";
App::$strings["Please enter the required information."] = "Vul de vereiste informatie in.";
App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden.";
App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s";
App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s";
App::$strings["your registration password"] = "jouw registratiewachtwoord";
App::$strings["Registration details for %s"] = "Registratiegegevens voor %s";
App::$strings["Account approved."] = "Account goedgekeurd";
App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
App::$strings["Click here to upgrade."] = "Klik hier om te upgraden.";
App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden.";
App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement.";
App::$strings["Birthday"] = "Verjaardag of geboortedatum";
App::$strings["Age: "] = "Leeftijd:";
App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD";
App::$strings["less than a second ago"] = "minder dan een seconde geleden";
App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
App::$strings["__ctx:relative_date__ year"] = array(
	0 => "jaar",
	1 => "jaren",
);
App::$strings["__ctx:relative_date__ month"] = array(
	0 => "maand",
	1 => "maanden",
);
App::$strings["__ctx:relative_date__ week"] = array(
	0 => "week",
	1 => "weken",
);
App::$strings["__ctx:relative_date__ day"] = array(
	0 => "dag",
	1 => "dagen",
);
App::$strings["__ctx:relative_date__ hour"] = array(
	0 => "uur",
	1 => "uren",
);
App::$strings["__ctx:relative_date__ minute"] = array(
	0 => "minuut",
	1 => "minuten",
);
App::$strings["__ctx:relative_date__ second"] = array(
	0 => "seconde",
	1 => "seconden",
);
App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s";
App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s";
App::$strings["Remote authentication"] = "Authenticatie op afstand";
App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub";
App::$strings["Manage Your Channels"] = "Beheer je kanalen";
App::$strings["Account/Channel Settings"] = "Account-/kanaalinstellingen";
App::$strings["End this session"] = "Beëindig deze sessie";
App::$strings["Your profile page"] = "Jouw profielpagina";
App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen";
App::$strings["Sign in"] = "Inloggen";
App::$strings["Take me home"] = "Terug naar mijn hub";
App::$strings["Log me out of this site"] = "Uitloggen op deze hub";
App::$strings["Create an account"] = "Maak een account aan";
App::$strings["Help and documentation"] = "Hulp en documentatie";
App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Zoek in deze hub naar @naam, !forum, #tag, ?hulp";
App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren";
App::$strings["@name, !forum, #tag, ?doc, content"] = "@naam, !forum, #tag, ?hulp, inhoud";
App::$strings["Please wait..."] = "Wachten aub...";
App::$strings["Add Apps"] = "Apps toevoegen";
App::$strings["Arrange Apps"] = "Volgorde apps";
App::$strings["Toggle System Apps"] = "Systeem-apps toevoegen of verwijderen";
App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes";
App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg";
App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen";
App::$strings["a new photo"] = "een nieuwe foto";
App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s";
App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden";
App::$strings["Invalid data packet"] = "Datapakket ongeldig";
App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd.  ";
App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd";
App::$strings["invalid target signature"] = "ongeldig doelkenmerk";
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."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten  <strong>kunnen</strong> van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken.";
App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe";
App::$strings["edit"] = "bewerken";
App::$strings["Edit group"] = "Privacygroep bewerken";
App::$strings["Add privacy group"] = "Privacygroep toevoegen";
App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden";
App::$strings["New window"] = "Nieuw venster";
App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab";
App::$strings["Delegation session ended."] = "Delegatiesessie beëindigd.";
App::$strings["Logged out."] = "Uitgelogd.";
App::$strings["Email validation is incomplete. Please check your email."] = "E-mailverificatie is nog niet voltooid. Controleer jouw e-mail.";
App::$strings["Failed authentication"] = "Mislukte authenticatie";
App::$strings["Help:"] = "Hulp:";
App::$strings["Not Found"] = "Niet gevonden";