aboutsummaryrefslogtreecommitdiffstats
path: root/view/nl/strings.php
blob: 8e4fdfa63a63fd6343d62445726d6418782d2d5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
<?php

if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
	return ($n != 1);;
}}
;
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden";
$a->strings["Profile Photos"] = "Profielfoto's";
$a->strings["Image/photo"] = "Afbeelding/foto";
$a->strings["Encrypted content"] = "Versleutelde inhoud";
$a->strings["QR code"] = "QR-code";
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s";
$a->strings["post"] = "bericht";
$a->strings["$1 wrote:"] = "$1 schreef:";
$a->strings["Embedded content"] = "Ingebedde inhoud";
$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
$a->strings["created a new post"] = "maakte een nieuw bericht aan";
$a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s";
$a->strings["photo"] = "foto";
$a->strings["event"] = "gebeurtenis";
$a->strings["channel"] = "kanaal";
$a->strings["status"] = "status";
$a->strings["comment"] = "reactie";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s leuk";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s niet leuk";
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden";
$a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten";
$a->strings["poked"] = "aangestoten";
$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s";
$a->strings["Select"] = "Kies";
$a->strings["Delete"] = "Verwijderen";
$a->strings["Private Message"] = "Privébericht";
$a->strings["Message is verified"] = "Bericht is geverifieerd";
$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
$a->strings["Categories:"] = "Categorieën:";
$a->strings["Filed under:"] = "Bewaard onder:";
$a->strings[" from %s"] = " van %s";
$a->strings["last edited: %s"] = "laatst bewerkt: %s";
$a->strings["Expires: %s"] = "Verloopt: %s";
$a->strings["View in context"] = "In context bekijken";
$a->strings["Please wait"] = "Even wachten";
$a->strings["remove"] = "verwijderen";
$a->strings["Loading..."] = "Aan het laden...";
$a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items";
$a->strings["View Source"] = "Bron weergeven";
$a->strings["Follow Thread"] = "Conversatie volgen";
$a->strings["View Status"] = "Status weergeven";
$a->strings["View Profile"] = "Profiel weergeven";
$a->strings["View Photos"] = "Foto's weergeven";
$a->strings["Matrix Activity"] = "Activiteit in de matrix";
$a->strings["Edit Contact"] = "Contact bewerken";
$a->strings["Send PM"] = "Privébericht verzenden";
$a->strings["Poke"] = "Aanstoten";
$a->strings["%s likes this."] = "%s vind dit leuk.";
$a->strings["%s doesn't like this."] = "%s vind dit niet leuk.";
$a->strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "<span  %1\$s>%2\$d persoon</span> vind dit leuk.",
	1 => "<span  %1\$s>%2\$d personen</span> vinden dit leuk.",
);
$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "<span  %1\$s>%2\$d persoon</span> vind dit niet leuk.",
	1 => "<span  %1\$s>%2\$d personen</span> vinden dit niet leuk.",
);
$a->strings["and"] = "en";
$a->strings[", and %d other people"] = array(
	0 => ", en %d ander persoon",
	1 => ", en %d andere personen",
);
$a->strings["%s like this."] = "%s vinden dit leuk.";
$a->strings["%s don't like this."] = "%s vinden dit niet leuk.";
$a->strings["Visible to <strong>everybody</strong>"] = "Voor <strong>iedereen</strong> zichtbaar";
$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
$a->strings["Tag term:"] = "Label:";
$a->strings["Save to Folder:"] = "Bewaar in map: ";
$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?";
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM";
$a->strings["Preview"] = "Voorvertoning";
$a->strings["Share"] = "Delen";
$a->strings["Page link title"] = "Titel van paginalink";
$a->strings["Post as"] = "Bericht plaatsen als";
$a->strings["Upload photo"] = "Foto uploaden";
$a->strings["upload photo"] = "foto uploaden";
$a->strings["Attach file"] = "Bestand toevoegen";
$a->strings["attach file"] = "bestand toevoegen";
$a->strings["Insert web link"] = "Weblink invoegen";
$a->strings["web link"] = "Weblink";
$a->strings["Insert video link"] = "Videolink invoegen";
$a->strings["video link"] = "videolink";
$a->strings["Insert audio link"] = "Audiolink invoegen";
$a->strings["audio link"] = "audiolink";
$a->strings["Set your location"] = "Locatie instellen";
$a->strings["set location"] = "locatie instellen";
$a->strings["Clear browser location"] = "Locatie van webbrowser wissen";
$a->strings["clear location"] = "locatie wissen";
$a->strings["Set title"] = "Titel instellen";
$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)";
$a->strings["Permission settings"] = "Instellingen rechten";
$a->strings["permissions"] = "rechten";
$a->strings["Public post"] = "Openbaar bericht";
$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be";
$a->strings["Set expiration date"] = "Verloopdatum instellen";
$a->strings["Encrypt text"] = "Tekst versleutelen";
$a->strings["OK"] = "OK";
$a->strings["Cancel"] = "Annuleren";
$a->strings["Discover"] = "Ontdekken";
$a->strings["Imported public streams"] = "Openbare streams importeren";
$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
$a->strings["Personal"] = "Persoonlijk";
$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent";
$a->strings["New"] = "Nieuw";
$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
$a->strings["Starred"] = "Met ster";
$a->strings["Favourite Posts"] = "Favoriete berichten";
$a->strings["Spam"] = "Spam";
$a->strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM";
$a->strings["Channel"] = "Kanaal";
$a->strings["Status Messages and Posts"] = "Berichten in dit kanaal";
$a->strings["About"] = "Over";
$a->strings["Profile Details"] = "Profiel";
$a->strings["Photos"] = "Foto's";
$a->strings["Photo Albums"] = "Fotoalbums";
$a->strings["Files"] = "Bestanden";
$a->strings["Files and Storage"] = "Bestanden en opslagruimte";
$a->strings["Chatrooms"] = "Chatkanalen";
$a->strings["Events"] = "Gebeurtenissen";
$a->strings["Events and Calendar"] = "Gebeurtenissen en agenda";
$a->strings["Bookmarks"] = "Bladwijzers";
$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers";
$a->strings["Webpages"] = "Webpagina's";
$a->strings["Manage Webpages"] = "Webpagina's beheren";
$a->strings["New Page"] = "Nieuwe pagina";
$a->strings["Edit"] = "Bewerken";
$a->strings["View"] = "Weergeven";
$a->strings["Actions"] = "Acties";
$a->strings["Page Link"] = "Paginalink";
$a->strings["Title"] = "Titel";
$a->strings["Created"] = "Aangemaakt";
$a->strings["Edited"] = "Bewerkt";
$a->strings["Can view my \"public\" stream and posts"] = "Kan mijn \"openbare\" streams en berichten zien";
$a->strings["Can view my \"public\" channel profile"] = "Kan mijn \"openbaar\" kanaalprofiel zien";
$a->strings["Can view my \"public\" photo albums"] = "Kan mijn \"openbare\" fotoalbums zien";
$a->strings["Can view my \"public\" address book"] = "Kan mijn \"openbaar\" adresboek zien";
$a->strings["Can view my \"public\" file storage"] = "Kan mijn \"openbare\" bestanden zien";
$a->strings["Can view my \"public\" pages"] = "Kan mijn \"openbare\" pagina's zien";
$a->strings["Can send me their channel stream and posts"] = "Kan mij hun kanaalstream en berichten sturen";
$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal (\"wall\") plaatsen";
$a->strings["Can comment on my posts"] = "Kan op mijn berichten reageren";
$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen";
$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen";
$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen";
$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor kanalen met een groep- cq. forumfunctie";
$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)";
$a->strings["Can write to my \"public\" file storage"] = "Kan bestanden aan mijn \"openbare\" bestandsopslag toevoegen";
$a->strings["Can edit my \"public\" pages"] = "Kan mijn \"openbare\" pagina's bewerken";
$a->strings["Can source my \"public\" posts in derived channels"] = "Kan mijn \"openbare\" berichten als bron voor andere kanalen gebruiken";
$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)";
$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren";
$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet.";
$a->strings["Not a valid email address"] = "Geen geldig e-mailadres";
$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze Red Matrix-hub niet toegestaan";
$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze Red Matrix-hub geregistreerd .";
$a->strings["An invitation is required."] = "Een uitnodiging is vereist";
$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden";
$a->strings["Please enter the required information."] = "Vul de vereiste informatie in.";
$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden.";
$a->strings["Registration request at %s"] = "Registratieverzoek op %s";
$a->strings["Administrator"] = "Beheerder";
$a->strings["your registration password"] = "jouw registratiewachtwoord";
$a->strings["Registration details for %s"] = "Registratiedetails voor %s";
$a->strings["Account approved."] = "Account goedgekeurd";
$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
$a->strings["Permission denied."] = "Toegang geweigerd.";
$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes";
$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg";
$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden";
$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen";
$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
$a->strings["Visible to everybody"] = "Voor iedereen zichtbaar";
$a->strings["Show"] = "Tonen";
$a->strings["Don't show"] = "Niet tonen";
$a->strings["Permissions"] = "Rechten";
$a->strings["Close"] = "Sluiten";
$a->strings[" and "] = " en ";
$a->strings["public profile"] = "openbaar profiel";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s veranderde %2\$s naar &ldquo;%3\$s&rdquo;";
$a->strings["Visit %1\$s's %2\$s"] = "Bezoek %1\$s's %2\$s";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd.";
$a->strings["Public Timeline"] = "Openbare tijdlijn";
$a->strings["Item was not found."] = "Item niet gevonden";
$a->strings["No source file."] = "Geen bronbestand.";
$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden";
$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden";
$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt.";
$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken.";
$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt.";
$a->strings["Path not available."] = "Pad niet beschikbaar.";
$a->strings["Empty pathname"] = "Padnaam leeg";
$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad";
$a->strings["Path not found."] = "Pad niet gevonden";
$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt.";
$a->strings["database storage failed."] = "opslag in database mislukt.";
$a->strings["Permission denied"] = "Toegang geweigerd";
$a->strings["(Unknown)"] = "(Onbekend)";
$a->strings["Item not found."] = "Item niet gevonden.";
$a->strings["Collection not found."] = "Collectie niet gevonden.";
$a->strings["Collection is empty."] = "Collectie is leeg";
$a->strings["Collection: %s"] = "Collectie: %s";
$a->strings["Connection: %s"] = "Connectie: %s";
$a->strings["Connection not found."] = "Connectie niet gevonden.";
$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
$a->strings["Starts:"] = "Start:";
$a->strings["Finishes:"] = "Eindigt:";
$a->strings["Location:"] = "Plaats:";
$a->strings["Logout"] = "Uitloggen:";
$a->strings["End this session"] = "Beëindig deze sessie";
$a->strings["Home"] = "Home";
$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties";
$a->strings["Your profile page"] = "Jouw profielpagina";
$a->strings["Edit Profiles"] = "Bewerk profielen";
$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen";
$a->strings["Your photos"] = "Jouw foto's";
$a->strings["Your files"] = "Jouw bestanden";
$a->strings["Chat"] = "Chatten";
$a->strings["Your chatrooms"] = "Jouw chatkanalen";
$a->strings["Your events"] = "Jouw gebeurtenissen";
$a->strings["Your bookmarks"] = "Jouw bladwijzers";
$a->strings["Your webpages"] = "Jouw webpagina's";
$a->strings["Login"] = "Inloggen";
$a->strings["Sign in"] = "Inloggen";
$a->strings["%s - click to logout"] = "%s - klik om uit te loggen";
$a->strings["Click to authenticate to your home hub"] = "Klik om jezelf te verifiëren via jouw eigen Red Matrix-hub";
$a->strings["Home Page"] = "Homepage";
$a->strings["Register"] = "Registreren ";
$a->strings["Create an account"] = "Maak een account aan";
$a->strings["Help"] = "Hulp";
$a->strings["Help and documentation"] = "Hulp en documentatie";
$a->strings["Apps"] = "Apps";
$a->strings["Applications, utilities, links, games"] = "Toepassingen, hulpmiddelen, links, spelletjes";
$a->strings["Search"] = "Zoeken";
$a->strings["Search site content"] = "Inhoud van deze Red Matrix-hub doorzoeken";
$a->strings["Directory"] = "Gids";
$a->strings["Channel Locator"] = "Kanalengids";
$a->strings["Matrix"] = "Matrix";
$a->strings["Your matrix"] = "Jouw matrix";
$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken";
$a->strings["Channel Home"] = "Tijdlijn kanaal";
$a->strings["Channel home"] = "Tijdlijn kanaal";
$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren";
$a->strings["Connections"] = "Connecties";
$a->strings["Notices"] = "Notificaties";
$a->strings["Notifications"] = "Notificaties";
$a->strings["See all notifications"] = "Alle notificaties weergeven";
$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken";
$a->strings["Mail"] = "Privéberichten";
$a->strings["Private mail"] = "Privéberichten";
$a->strings["See all private messages"] = "Alle privéberichten weergeven";
$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken";
$a->strings["Inbox"] = "Postvak IN";
$a->strings["Outbox"] = "Postvak UIT";
$a->strings["New Message"] = "Nieuw bericht";
$a->strings["Event Calendar"] = "Agenda";
$a->strings["See all events"] = "Alle gebeurtenissen weergeven";
$a->strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken";
$a->strings["Channel Select"] = "Kanaalkiezer";
$a->strings["Manage Your Channels"] = "Beheer je kanalen";
$a->strings["Settings"] = "Instellingen";
$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen";
$a->strings["Manage/Edit Friends and Connections"] = "Beheer/bewerk vrienden en connecties";
$a->strings["Admin"] = "Beheer";
$a->strings["Site Setup and Configuration"] = "Red Matrix-hub opzetten en configureren";
$a->strings["Nothing new here"] = "Niets nieuw hier";
$a->strings["Please wait..."] = "Wachten aub...";
$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s";
$a->strings["Missing room name"] = "";
$a->strings["Duplicate room name"] = "";
$a->strings["Invalid room specifier."] = "";
$a->strings["Room not found."] = "";
$a->strings["Room is full"] = "";
$a->strings["Tags"] = "";
$a->strings["Keywords"] = "";
$a->strings["have"] = "";
$a->strings["has"] = "";
$a->strings["want"] = "";
$a->strings["wants"] = "";
$a->strings["like"] = "leuk";
$a->strings["likes"] = "";
$a->strings["dislike"] = "niet leuk";
$a->strings["dislikes"] = "";
$a->strings["Default"] = "";
$a->strings["Unknown | Not categorised"] = "Onbekend | Niet gecategoriseerd";
$a->strings["Block immediately"] = "Onmiddellijk blokkeren";
$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor";
$a->strings["Known to me, but no opinion"] = "Mij bekend, maar geen mening";
$a->strings["OK, probably harmless"] = "OK, vermoedelijk onschadelijk";
$a->strings["Reputable, has my trust"] = "Fatsoenlijk, heeft mijn vertrouwen";
$a->strings["Frequently"] = "Regelmatig";
$a->strings["Hourly"] = "Uurlijks";
$a->strings["Twice daily"] = "Twee keer per dag";
$a->strings["Daily"] = "Dagelijks";
$a->strings["Weekly"] = "Wekelijks";
$a->strings["Monthly"] = "Maandelijks";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-mail";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["%d invitation available"] = array(
	0 => "%d uitnodiging beschikbaar",
	1 => "%d uitnodigingen beschikbaar",
);
$a->strings["Advanced"] = "Geavanceerd";
$a->strings["Find Channels"] = "Kanalen vinden";
$a->strings["Enter name or interest"] = "Vul naam of interesse in";
$a->strings["Connect/Follow"] = "Verbinden/volgen";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen";
$a->strings["Find"] = "Vinden";
$a->strings["Channel Suggestions"] = "Voorgestelde kanalen";
$a->strings["Random Profile"] = "Willekeurig profiel";
$a->strings["Invite Friends"] = "Vrienden uitnodigen";
$a->strings["Exammple: name=fred and country=iceland"] = "";
$a->strings["Advanced Find"] = "Geavanceerd zoeken";
$a->strings["Saved Folders"] = "Bewaarde mappen";
$a->strings["Everything"] = "Alles";
$a->strings["Categories"] = "Categorieën";
$a->strings["%d connection in common"] = array(
	0 => "%d gemeenschappelijke connectie",
	1 => "%d gemeenschappelijke connecties",
);
$a->strings["show more"] = "meer connecties weergeven";
$a->strings["[+] show more comments"] = "[+] meer reacties weergeven";
$a->strings["Edit File properties"] = "Bestandseigenschappen bewerken";
$a->strings["Miscellaneous"] = "Diversen";
$a->strings["year"] = "jaar";
$a->strings["month"] = "maand";
$a->strings["day"] = "dag";
$a->strings["never"] = "nooit";
$a->strings["less than a second ago"] = "minder dan een seconde geleden";
$a->strings["years"] = "jaren";
$a->strings["months"] = "maanden";
$a->strings["week"] = "week";
$a->strings["weeks"] = "weken";
$a->strings["days"] = "dagen";
$a->strings["hour"] = "uur";
$a->strings["hours"] = "uren";
$a->strings["minute"] = "minuut";
$a->strings["minutes"] = "minuten";
$a->strings["second"] = "seconde";
$a->strings["seconds"] = "seconden";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
$a->strings["Sort Options"] = "Sorteeropties";
$a->strings["Alphabetic"] = "Alfabetisch";
$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch";
$a->strings["Newest to Oldest"] = "Nieuw naar oud";
$a->strings["Enable Safe Search"] = "Veilig zoeken inschakelen";
$a->strings["Disable Safe Search"] = "Veilig zoeken uitschakelen";
$a->strings["Safe Mode"] = "Veilig zoeken";
$a->strings["Red Matrix Notification"] = "Red Matrix-notificatie";
$a->strings["redmatrix"] = "redmatrix";
$a->strings["Thank You,"] = "Bedankt,";
$a->strings["%s Administrator"] = "%s beheerder";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s";
$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s.";
$a->strings["a private message"] = "een privébericht";
$a->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.";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]";
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s";
$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt.";
$a->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.";
$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst";
$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst";
$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst";
$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd";
$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou om %3\$s";
$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl].";
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten";
$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s";
$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl].";
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht gelabeld";
$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s labelde jouw bericht om %3\$s";
$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s labelde [zrl=%3\$s]jouw bericht[/zrl]";
$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen";
$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s";
$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s.";
$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s";
$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek goed of af te keuren.";
$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen";
$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s";
$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s.";
$a->strings["Name:"] = "Naam:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of te verwerpen.";
$a->strings["General Features"] = "Algemene functies";
$a->strings["Content Expiration"] = "Inhoud laten verlopen";
$a->strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen";
$a->strings["Multiple Profiles"] = "Meerdere profielen";
$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
$a->strings["Web Pages"] = "Webpagina's";
$a->strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe";
$a->strings["Private Notes"] = "Privé-aantekeningen";
$a->strings["Enables a tool to store notes and reminders"] = "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan";
$a->strings["Extended Identity Sharing"] = "Uitgebreid identiteit delen";
$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Deel jouw Red Matrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het Red Matrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet.";
$a->strings["Expert Mode"] = "Expertmodus";
$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Zet de expertmodus aan voor geavanceerde instellingen";
$a->strings["Premium Channel"] = "Premiumkanaal";
$a->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";
$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
$a->strings["Richtext Editor"] = "RTF-tekstverwerker";
$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties";
$a->strings["Post Preview"] = "Voorvertoning";
$a->strings["Allow previewing posts and comments before publishing them"] = "Een optie om je berichten en reacties voor het definitief publiceren voor te vertonen";
$a->strings["Channel Sources"] = "Kanaalbronnen";
$a->strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren.";
$a->strings["Even More Encryption"] = "Extra versleuteling";
$a->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.";
$a->strings["Network and Stream Filtering"] = "Netwerk- en streamfilter";
$a->strings["Search by Date"] = "Zoek op datum";
$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren ";
$a->strings["Collections Filter"] = "Filter op collecties";
$a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties";
$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik";
$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had";
$a->strings["Network New Tab"] = "Nieuwe netwerktab";
$a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen";
$a->strings["Affinity Tool"] = "Verwantschapsfilter";
$a->strings["Filter stream activity by depth of relationships"] = "Filter streamactiviteit op mate van relationele verwantschap";
$a->strings["Suggest Channels"] = "Kanalen voorstellen";
$a->strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen";
$a->strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen";
$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten";
$a->strings["Edit and correct posts and comments after sending"] = "";
$a->strings["Tagging"] = "Labelen";
$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen";
$a->strings["Post Categories"] = "Categorieën berichten";
$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten";
$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan";
$a->strings["Dislike Posts"] = "Vind berichten niet leuk";
$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden";
$a->strings["Star Posts"] = "Geef berichten een ster";
$a->strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren";
$a->strings["Tag Cloud"] = "";
$a->strings["Provide a personal tag cloud on your channel page"] = "";
$a->strings["Channel is blocked on this site."] = "";
$a->strings["Channel location missing."] = "";
$a->strings["Response from remote channel was incomplete."] = "";
$a->strings["Channel was deleted and no longer exists."] = "";
$a->strings["Channel discovery failed."] = "";
$a->strings["local account not found."] = "";
$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden";
$a->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."] = "";
$a->strings["Default privacy group for new contacts"] = "Standaard collectie voor nieuwe kanalen";
$a->strings["All Channels"] = "Alle kanalen";
$a->strings["edit"] = "bewerken";
$a->strings["Collections"] = "Collecties";
$a->strings["Edit collection"] = "Collectie bewerken";
$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken";
$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden";
$a->strings["add"] = "toevoegen";
$a->strings["Unable to obtain identity information from database"] = "";
$a->strings["Empty name"] = "";
$a->strings["Name too long"] = "Naam te lang";
$a->strings["No account identifier"] = "";
$a->strings["Nickname is required."] = "";
$a->strings["Reserved nickname. Please choose another."] = "";
$a->strings["Nickname has unsupported characters or is already being used on this site."] = "";
$a->strings["Unable to retrieve created identity"] = "";
$a->strings["Default Profile"] = "Standaardprofiel";
$a->strings["Friends"] = "Vrienden";
$a->strings["Requested channel is not available."] = "";
$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar";
$a->strings["Connect"] = "Verbinden";
$a->strings["Change profile photo"] = "Profielfoto veranderen";
$a->strings["Profiles"] = "";
$a->strings["Manage/edit profiles"] = "";
$a->strings["Create New Profile"] = "Nieuw profiel aanmaken";
$a->strings["Edit Profile"] = "";
$a->strings["Profile Image"] = "Profielfoto";
$a->strings["visible to everybody"] = "Voor iedereen zichtbaar";
$a->strings["Edit visibility"] = "Zichtbaarheid bewerken";
$a->strings["Gender:"] = "Geslacht:";
$a->strings["Status:"] = "Status:";
$a->strings["Homepage:"] = "Homepagina:";
$a->strings["Online Now"] = "Nu online";
$a->strings["g A l F d"] = "";
$a->strings["F d"] = "";
$a->strings["[today]"] = "[vandaag]";
$a->strings["Birthday Reminders"] = "";
$a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
$a->strings["[No description]"] = "[Geen omschrijving]";
$a->strings["Event Reminders"] = "Herinneringen voor gebeurtenissen";
$a->strings["Events this week:"] = "Gebeurtenissen deze week:";
$a->strings["Profile"] = "Profiel";
$a->strings["Full Name:"] = "Volledige naam:";
$a->strings["j F, Y"] = "F j Y";
$a->strings["j F"] = "F j";
$a->strings["Birthday:"] = "Geboortedatum:";
$a->strings["Age:"] = "Leeftijd:";
$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Seksuele voorkeur:";
$a->strings["Hometown:"] = "Woonplaats:";
$a->strings["Tags:"] = "Trefwoorden:";
$a->strings["Political Views:"] = "Politieke overtuigingen:";
$a->strings["Religion:"] = "Religie:";
$a->strings["About:"] = "Over:";
$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:";
$a->strings["Likes:"] = "Houdt van:";
$a->strings["Dislikes:"] = "Houdt niet van:";
$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
$a->strings["My other channels:"] = "Mijn andere kanalen";
$a->strings["Musical interests:"] = "Muzikale interesses:";
$a->strings["Books, literature:"] = "Boeken, literatuur:";
$a->strings["Television:"] = "Televisie:";
$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:";
$a->strings["Love/Romance:"] = "Liefde/romance:";
$a->strings["Work/employment:"] = "Werk/beroep:";
$a->strings["School/education:"] = "School/opleiding:";
$a->strings["Delete this item?"] = "Dit item verwijderen?";
$a->strings["Comment"] = "Reactie";
$a->strings["[-] show fewer comments"] = "[-] minder reacties weergeven";
$a->strings["[+] show more"] = "[+] meer weergeven";
$a->strings["[-] show less"] = "[-] minder weergeven";
$a->strings["Password too short"] = "Wachtwoord te kort";
$a->strings["Passwords do not match"] = "Wachtwoorden komen niet overeen";
$a->strings["everybody"] = "iedereen";
$a->strings["Secret Passphrase"] = "Geheim wachtwoord";
$a->strings["Passphrase hint"] = "Wachtwoordhint";
$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de rechten zijn veranderd, maar zijn nog niet opgeslagen.";
$a->strings["close all"] = "Alles sluiten";
$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
$a->strings["ago"] = "geleden";
$a->strings["from now"] = "vanaf nu";
$a->strings["less than a minute"] = "minder dan een minuut";
$a->strings["about a minute"] = "ongeveer een minuut";
$a->strings["%d minutes"] = "%d minuten";
$a->strings["about an hour"] = "ongeveer een uur";
$a->strings["about %d hours"] = "ongeveer %d uren";
$a->strings["a day"] = "een dag";
$a->strings["%d days"] = "%d dagen";
$a->strings["about a month"] = "ongeveer een maand";
$a->strings["%d months"] = "%d maanden";
$a->strings["about a year"] = "ongeveer een jaar";
$a->strings["%d years"] = "%d jaren";
$a->strings[" "] = " ";
$a->strings["timeago.numbers"] = "timeago.numbers";
$a->strings["view full size"] = "volledige grootte tonen";
$a->strings["Save to Folder"] = "In map opslaan";
$a->strings["View all"] = "Toon alles";
$a->strings["__ctx:noun__ Like"] = array(
	0 => "vind dit leuk",
	1 => "vinden dit leuk",
);
$a->strings["__ctx:noun__ Dislike"] = array(
	0 => "vind dit niet leuk",
	1 => "vinden dit niet leuk",
);
$a->strings["Add Star"] = "Ster toevoegen";
$a->strings["Remove Star"] = "Ster verwijderen";
$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen";
$a->strings["starred"] = "met ster";
$a->strings["Add Tag"] = "Label toevoegen";
$a->strings["I like this (toggle)"] = "Vind ik leuk";
$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk";
$a->strings["Share This"] = "Delen";
$a->strings["share"] = "delen";
$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s";
$a->strings["to"] = "aan";
$a->strings["via"] = "via";
$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal";
$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal";
$a->strings["Save Bookmarks"] = "Bladwijzers opslaan";
$a->strings["Add to Calendar"] = "Aan agenda toevoegen";
$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk";
$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk";
$a->strings["%d comment"] = array(
	0 => "%d reactie",
	1 => "%d reacties",
);
$a->strings["This is you"] = "Dit ben jij";
$a->strings["Submit"] = "Opslaan";
$a->strings["Bold"] = "Vet";
$a->strings["Italic"] = "Cursief";
$a->strings["Underline"] = "Onderstrepen";
$a->strings["Quote"] = "Citeren";
$a->strings["Code"] = "Broncode";
$a->strings["Image"] = "Afbeelding";
$a->strings["Link"] = "Link";
$a->strings["Video"] = "Video";
$a->strings["prev"] = "vorige";
$a->strings["first"] = "eerste";
$a->strings["last"] = "laatste";
$a->strings["next"] = "volgende";
$a->strings["older"] = "ouder";
$a->strings["newer"] = "nieuwer";
$a->strings["No connections"] = "Geen connecties";
$a->strings["%d Connection"] = array(
	0 => "%d connectie",
	1 => "%d connecties",
);
$a->strings["View Connections"] = "Connecties weergeven";
$a->strings["Save"] = "Opslaan";
$a->strings["poke"] = "aanstoten";
$a->strings["ping"] = "ping";
$a->strings["pinged"] = "gepingd";
$a->strings["prod"] = "por";
$a->strings["prodded"] = "gepord";
$a->strings["slap"] = "slaan";
$a->strings["slapped"] = "";
$a->strings["finger"] = "";
$a->strings["fingered"] = "";
$a->strings["rebuff"] = "";
$a->strings["rebuffed"] = "";
$a->strings["happy"] = "gelukkig";
$a->strings["sad"] = "bedroefd";
$a->strings["mellow"] = "";
$a->strings["tired"] = "moe";
$a->strings["perky"] = "";
$a->strings["angry"] = "boos";
$a->strings["stupified"] = "";
$a->strings["puzzled"] = "verward";
$a->strings["interested"] = "geïntereseerd";
$a->strings["bitter"] = "verbitterd";
$a->strings["cheerful"] = "";
$a->strings["alive"] = "";
$a->strings["annoyed"] = "";
$a->strings["anxious"] = "";
$a->strings["cranky"] = "";
$a->strings["disturbed"] = "";
$a->strings["frustrated"] = "gefrustreerd ";
$a->strings["depressed"] = "";
$a->strings["motivated"] = "gemotiveerd";
$a->strings["relaxed"] = "";
$a->strings["surprised"] = "";
$a->strings["Monday"] = "maandag";
$a->strings["Tuesday"] = "dinsdag";
$a->strings["Wednesday"] = "woensdag";
$a->strings["Thursday"] = "donderdag";
$a->strings["Friday"] = "vrijdag";
$a->strings["Saturday"] = "zaterdag";
$a->strings["Sunday"] = "zondag";
$a->strings["January"] = "januari";
$a->strings["February"] = "februari";
$a->strings["March"] = "maart";
$a->strings["April"] = "april";
$a->strings["May"] = "mei";
$a->strings["June"] = "juni";
$a->strings["July"] = "juli";
$a->strings["August"] = "augustus";
$a->strings["September"] = "september";
$a->strings["October"] = "oktober";
$a->strings["November"] = "november";
$a->strings["December"] = "december";
$a->strings["unknown.???"] = "onbekend.???";
$a->strings["bytes"] = "bytes";
$a->strings["remove category"] = "categorie verwijderen";
$a->strings["remove from file"] = "";
$a->strings["Click to open/close"] = "Klik om te openen of te sluiten";
$a->strings["Link to Source"] = "Originele locatie";
$a->strings["Select a page layout: "] = "Kies een paginalayout: ";
$a->strings["default"] = "standaard";
$a->strings["Page content type: "] = "Opmaakcode pagina";
$a->strings["Select an alternate language"] = "Kies een andere taal";
$a->strings["activity"] = "activiteit";
$a->strings["Design"] = "Ontwerp";
$a->strings["Blocks"] = "Blokken";
$a->strings["Menus"] = "Menu's";
$a->strings["Layouts"] = "Layouts";
$a->strings["Pages"] = "Pagina's";
$a->strings["Site Admin"] = "Hubbeheerder";
$a->strings["Address Book"] = "Adresboek";
$a->strings["Mood"] = "Stemming";
$a->strings["Update"] = "Update";
$a->strings["Install"] = "Installeren";
$a->strings["Purchase"] = "Aanschaffen";
$a->strings["Unknown"] = "Onbekend";
$a->strings["Invalid data packet"] = "";
$a->strings["Unable to verify channel signature"] = "";
$a->strings["Unable to verify site signature for %s"] = "";
$a->strings["No recipient provided."] = "";
$a->strings["[no subject]"] = "[geen onderwerp]";
$a->strings["Unable to determine sender."] = "";
$a->strings["Stored post could not be verified."] = "";
$a->strings["Click here to upgrade."] = "Klik hier om te upgraden.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["System"] = "";
$a->strings["Create Personal App"] = "";
$a->strings["Edit Personal App"] = "";
$a->strings["Ignore/Hide"] = "Negeren/Verbergen";
$a->strings["Suggestions"] = "Voorgestelde kanalen";
$a->strings["See more..."] = "Meer...";
$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties.";
$a->strings["Add New Connection"] = "Nieuwe connectie toevoegen";
$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara";
$a->strings["Notes"] = "Aantekeningen";
$a->strings["Remove term"] = "Verwijder zoekterm";
$a->strings["Archives"] = "Archieven";
$a->strings["Refresh"] = "Vernieuwen";
$a->strings["Me"] = "Ik";
$a->strings["Best Friends"] = "Goede vrienden";
$a->strings["Co-workers"] = "Collega's";
$a->strings["Former Friends"] = "Oude vrienden";
$a->strings["Acquaintances"] = "Kennissen";
$a->strings["Everybody"] = "Iedereen";
$a->strings["Account settings"] = "Account";
$a->strings["Channel settings"] = "Kanaal";
$a->strings["Additional features"] = "Extra functies";
$a->strings["Feature settings"] = "Plug-ins";
$a->strings["Display settings"] = "Weergave";
$a->strings["Connected apps"] = "Verbonden applicaties";
$a->strings["Export channel"] = "Kanaal exporteren";
$a->strings["Automatic Permissions (Advanced)"] = "Automatische rechten (geavanceerd)";
$a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal";
$a->strings["Check Mail"] = "Controleer op nieuwe berichten";
$a->strings["Chat Rooms"] = "Chatkanalen";
$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen";
$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen";
$a->strings["New window"] = "Nieuw venster";
$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab";
$a->strings["Male"] = "Man";
$a->strings["Female"] = "Vrouw";
$a->strings["Currently Male"] = "Momenteel man";
$a->strings["Currently Female"] = "Momenteel vrouw";
$a->strings["Mostly Male"] = "Voornamelijk man";
$a->strings["Mostly Female"] = "Voornamelijk vrouw";
$a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = "Interseksueel";
$a->strings["Transsexual"] = "Transseksueel";
$a->strings["Hermaphrodite"] = "Hermafrodiet";
$a->strings["Neuter"] = "Genderneutraal";
$a->strings["Non-specific"] = "Niet gespecificeerd";
$a->strings["Other"] = "Anders";
$a->strings["Undecided"] = "Nog niet beslist";
$a->strings["Males"] = "Mannen";
$a->strings["Females"] = "Vrouwen";
$a->strings["Gay"] = "Homoseksueel";
$a->strings["Lesbian"] = "Lesbisch";
$a->strings["No Preference"] = "Geen voorkeur";
$a->strings["Bisexual"] = "Biseksueel";
$a->strings["Autosexual"] = "Autoseksueel";
$a->strings["Abstinent"] = "Seksuele onthouding";
$a->strings["Virgin"] = "Maagd";
$a->strings["Deviant"] = "Afwijkend";
$a->strings["Fetish"] = "Fetisj";
$a->strings["Oodles"] = "Veel";
$a->strings["Nonsexual"] = "Aseksueel";
$a->strings["Single"] = "Alleen";
$a->strings["Lonely"] = "Eenzaam";
$a->strings["Available"] = "Beschikbaar";
$a->strings["Unavailable"] = "Niet beschikbaar";
$a->strings["Has crush"] = "Heeft een oogje op iemand";
$a->strings["Infatuated"] = "Smoorverliefd";
$a->strings["Dating"] = "Aan het daten";
$a->strings["Unfaithful"] = "Ontrouw";
$a->strings["Sex Addict"] = "Seksverslaafd";
$a->strings["Friends/Benefits"] = "Vriendschap plus";
$a->strings["Casual"] = "Ongebonden/vluchtig";
$a->strings["Engaged"] = "Verloofd";
$a->strings["Married"] = "Getrouwd";
$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd";
$a->strings["Partners"] = "Partners";
$a->strings["Cohabiting"] = "Samenwonend";
$a->strings["Common law"] = "Common-law-huwelijk";
$a->strings["Happy"] = "Gelukkig";
$a->strings["Not looking"] = "Niet op zoek";
$a->strings["Swinger"] = "Swinger";
$a->strings["Betrayed"] = "Verraden";
$a->strings["Separated"] = "Uit elkaar";
$a->strings["Unstable"] = "Onstabiel";
$a->strings["Divorced"] = "Gescheiden";
$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden";
$a->strings["Widowed"] = "Weduwnaar/weduwe";
$a->strings["Uncertain"] = "Onzeker";
$a->strings["It's complicated"] = "Het is ingewikkeld";
$a->strings["Don't care"] = "Maakt mij niks uit";
$a->strings["Ask me"] = "Vraag het me";
$a->strings["Logged out."] = "Uitgelogd.";
$a->strings["Failed authentication"] = "Mislukte identificatie";
$a->strings["Login failed."] = "Inloggen mislukt.";
$a->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."] = "";
$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties";
$a->strings["Menu not found."] = "Menu niet gevonden.";
$a->strings["Menu element updated."] = "Menu-onderdeel geüpdatet.";
$a->strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet.";
$a->strings["Menu element added."] = "Menu-onderdeel toegevoegd";
$a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd.";
$a->strings["Not found."] = "Niet gevonden.";
$a->strings["Manage Menu Elements"] = "Menu-onderdelen beheren";
$a->strings["Edit menu"] = "Menu bewerken";
$a->strings["Edit element"] = "Onderdeel bewerken";
$a->strings["Drop element"] = "Onderdeel verwijderen";
$a->strings["New element"] = "Nieuw element";
$a->strings["Edit this menu container"] = "Deze menu-container bewerken";
$a->strings["Add menu element"] = "Menu-element toevoegen";
$a->strings["Delete this menu item"] = "Dit menu-item verwijderen";
$a->strings["Edit this menu item"] = "Dit menu-item bewerken";
$a->strings["New Menu Element"] = "Nieuw menu-element";
$a->strings["Menu Item Permissions"] = "Rechten menu-item";
$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)";
$a->strings["Link text"] = "Linktekst";
$a->strings["URL of link"] = "URL of link";
$a->strings["Use Red magic-auth if available"] = "Gebruik Red magic-auth wanneer aanwezig";
$a->strings["Open link in new window"] = "Open link in nieuw venster";
$a->strings["Order in list"] = "Volgorde in lijst";
$a->strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht";
$a->strings["Create"] = "Aanmaken";
$a->strings["Menu item not found."] = "Menu-item niet gevonden.";
$a->strings["Menu item deleted."] = "Menu-item verwijderd.";
$a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd.";
$a->strings["Edit Menu Element"] = "Menu-element bewerken";
$a->strings["Modify"] = "Wijzigen";
$a->strings["sent you a private message"] = "stuurde jou een privébericht";
$a->strings["added your channel"] = "voegde jouw kanaal toe";
$a->strings["posted an event"] = "plaatste een gebeurtenis";
$a->strings["network"] = "netwerk";
$a->strings["Theme settings updated."] = "Thema-instellingen aangepast.";
$a->strings["Site"] = "Hub-instellingen";
$a->strings["Accounts"] = "Accounts";
$a->strings["Channels"] = "Kanalen";
$a->strings["Plugins"] = "Plug-ins";
$a->strings["Themes"] = "Thema's";
$a->strings["Server"] = "Hubbeheer";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "";
$a->strings["Plugin Features"] = "";
$a->strings["User registrations waiting for confirmation"] = "";
$a->strings["Message queues"] = "Berichtenwachtrij";
$a->strings["Administration"] = "Beheer";
$a->strings["Summary"] = "Samenvatting";
$a->strings["Registered users"] = "Geregistreerde gebruikers";
$a->strings["Pending registrations"] = "Accounts die op goedkeuring wachten";
$a->strings["Version"] = "Versie";
$a->strings["Active plugins"] = "Ingeschakelde plug-ins";
$a->strings["Site settings updated."] = "Hub-instellingen aangepast";
$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten";
$a->strings["No special theme for accessibility"] = "";
$a->strings["No"] = "Nee";
$a->strings["Yes - with approval"] = "Ja - met goedkeuring";
$a->strings["Yes"] = "Ja";
$a->strings["My site is not a public server"] = "Mijn Red Matrix-hub is niet openbaar";
$a->strings["My site has paid access only"] = "Mijn Red Matrix-hub kent alleen betaalde toegang";
$a->strings["My site has free access only"] = "Mijn Red Matrix-hub kent alleen gratis toegang";
$a->strings["My site offers free accounts with optional paid upgrades"] = "Mijn Red Matrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie";
$a->strings["Registration"] = "Registratie";
$a->strings["File upload"] = "Bestand uploaden";
$a->strings["Policies"] = "Beleid";
$a->strings["Site name"] = "Naam van deze Red Matrix-hub";
$a->strings["Banner/Logo"] = "Banner/logo";
$a->strings["Administrator Information"] = "Informatie over de beheerder van deze hub";
$a->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.";
$a->strings["System language"] = "Standaardtaal";
$a->strings["System theme"] = "Standaardthema";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standaardthema voor Red Matrix-hub (kan door gebruiker veranderd worden) - <a href='#' id='cnftheme'>verander thema-instellingen</a>";
$a->strings["Mobile system theme"] = "Standaardthema voor mobiel";
$a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten";
$a->strings["Accessibility system theme"] = "Standaardthema voor universele toegang";
$a->strings["Accessibility theme"] = "Thema voor universele toegang";
$a->strings["Channel to use for this website's static pages"] = "Kanaal die op deze hub als statische pagina op de homepage gebruikt moet worden";
$a->strings["Site Channel"] = "Kanaal op deze Red Matrix-hub";
$a->strings["Maximum image size"] = "Maximale grootte van afbeeldingen";
$a->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.";
$a->strings["Does this site allow new member registration?"] = "Staat deze hub registratie van nieuwe accounts toe?";
$a->strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze Red Matrix-hub aan? Kies wat het meest in de buurt komt.";
$a->strings["Register text"] = "Registratietekst";
$a->strings["Will be displayed prominently on the registration page."] = "Wordt prominent op de registratiepagina getoond.";
$a->strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:";
$a->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.";
$a->strings["Allowed friend domains"] = "Toegestane domeinen";
$a->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 Red Matrix-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten.";
$a->strings["Allowed email domains"] = "Toegestane e-maildomeinen";
$a->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 die op deze hub mogen registeren. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten.";
$a->strings["Block public"] = "Openbare toegang blokkeren";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde gebruikers.";
$a->strings["Force publish"] = "Dwing kanaalvermelding af";
$a->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.";
$a->strings["Disable discovery tab"] = "Ontdekkingstab";
$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen.";
$a->strings["No login on Homepage"] = "Geen inlogformulier op de homepage";
$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde gebruikers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze Red Matrix-hub als homepage gebruikt)";
$a->strings["Proxy user"] = "Proxy-gebruiker";
$a->strings["Proxy URL"] = "Proxy-URL";
$a->strings["Network timeout"] = "Netwerktimeout";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)";
$a->strings["Delivery interval"] = "Afleveringsinterval";
$a->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."] = "";
$a->strings["Poll interval"] = "Poll-interval";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["No server found"] = "Geen hub gevonden";
$a->strings["ID"] = "ID";
$a->strings["for channel"] = "voor kanaal";
$a->strings["on server"] = "op hub";
$a->strings["Status"] = "Status";
$a->strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
$a->strings["Update function %s could not be found."] = "";
$a->strings["No failed updates."] = "";
$a->strings["Failed Updates"] = "";
$a->strings["Mark success (if update was manually applied)"] = "";
$a->strings["Attempt to execute this update step automatically"] = "";
$a->strings["%s user blocked/unblocked"] = array(
	0 => "",
	1 => "",
);
$a->strings["%s user deleted"] = array(
	0 => "",
	1 => "",
);
$a->strings["Account not found"] = "";
$a->strings["User '%s' deleted"] = "";
$a->strings["User '%s' unblocked"] = "";
$a->strings["User '%s' blocked"] = "";
$a->strings["Users"] = "";
$a->strings["select all"] = "";
$a->strings["User registrations waiting for confirm"] = "";
$a->strings["Request date"] = "";
$a->strings["No registrations."] = "";
$a->strings["Approve"] = "";
$a->strings["Deny"] = "";
$a->strings["Block"] = "";
$a->strings["Unblock"] = "";
$a->strings["Register date"] = "";
$a->strings["Last login"] = "";
$a->strings["Expires"] = "Verloopt";
$a->strings["Service Class"] = "";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["%s channel censored/uncensored"] = array(
	0 => "%s kanalen gecensureerd/ongecensureerd",
	1 => "%s kanaal gecensureerd/ongecensureerd",
);
$a->strings["%s channel deleted"] = array(
	0 => "%s kanaal verwijderd",
	1 => "%s kanalen verwijderd",
);
$a->strings["Channel not found"] = "Kanaal niet gevonden";
$a->strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd";
$a->strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd";
$a->strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd";
$a->strings["Censor"] = "Censureren";
$a->strings["Uncensor"] = "Niet censureren";
$a->strings["UID"] = "UID";
$a->strings["Name"] = "Naam";
$a->strings["Address"] = "Kanaaladres";
$a->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?"] = "";
$a->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?"] = "";
$a->strings["Plugin %s disabled."] = "Plug-in %s uitgeschakeld.";
$a->strings["Plugin %s enabled."] = "Plug-in %s ingeschakeld";
$a->strings["Disable"] = "Uitschakelen";
$a->strings["Enable"] = "Inschakelen";
$a->strings["Toggle"] = "Omschakelen";
$a->strings["Author: "] = "Auteur: ";
$a->strings["Maintainer: "] = "Beheerder: ";
$a->strings["No themes found."] = "Geen thema's gevonden";
$a->strings["Screenshot"] = "Schermafdruk";
$a->strings["[Experimental]"] = "[Experimenteel]";
$a->strings["[Unsupported]"] = "[Niet ondersteund]";
$a->strings["Log settings updated."] = "";
$a->strings["Clear"] = "Leegmaken";
$a->strings["Debugging"] = "Debuggen";
$a->strings["Log file"] = "Logbestand";
$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "";
$a->strings["Log level"] = "Logniveau";
$a->strings["Poke/Prod"] = "Aanstoten/porren";
$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen";
$a->strings["Recipient"] = "Ontvanger";
$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen";
$a->strings["Make this post private"] = "Maak dit bericht privé";
$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling";
$a->strings["Return to your app and insert this Securty Code:"] = "";
$a->strings["Please login to continue."] = "";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Identificatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen.";
$a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Identificatie op afstand geslaagd.";
$a->strings["Item not available."] = "Item is niet aanwezig.";
$a->strings["Fetching URL returns error: %1\$s"] = "";
$a->strings["Invalid item."] = "Ongeldig item.";
$a->strings["Channel not found."] = "Kanaal niet gevonden.";
$a->strings["Page not found."] = "";
$a->strings["Image uploaded but image cropping failed."] = "";
$a->strings["Image resize failed."] = "";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
$a->strings["Image exceeds size limit of %d"] = "";
$a->strings["Unable to process image."] = "";
$a->strings["Photo not available."] = "";
$a->strings["Upload File:"] = "Bestand uploaden:";
$a->strings["Select a profile:"] = "Kies een profiel:";
$a->strings["Upload Profile Photo"] = "Profielfoto uploaden";
$a->strings["Upload"] = "Uploaden";
$a->strings["or"] = "of";
$a->strings["skip this step"] = "sla deze stap over";
$a->strings["select a photo from your photo albums"] = "";
$a->strings["Crop Image"] = "Afbeelding bijsnijden";
$a->strings["Please adjust the image cropping for optimum viewing."] = "";
$a->strings["Done Editing"] = "Klaar met bewerkeb";
$a->strings["Image uploaded successfully."] = "Uploaden afbeelding geslaagd";
$a->strings["Image upload failed."] = "Uploaden afbeelding mislukt";
$a->strings["Image size reduction [%s] failed."] = "";
$a->strings["Block Name"] = "";
$a->strings["Profile not found."] = "";
$a->strings["Profile deleted."] = "";
$a->strings["Profile-"] = "Profiel-";
$a->strings["New profile created."] = "Nieuw profiel aangemaakt.";
$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen";
$a->strings["Profile Name is required."] = "Profielnaam is vereist";
$a->strings["Marital Status"] = "Huwelijke status";
$a->strings["Romantic Partner"] = "Romantische partner";
$a->strings["Likes"] = "Houdt van";
$a->strings["Dislikes"] = "Houdt niet van";
$a->strings["Work/Employment"] = "Werk/arbeid";
$a->strings["Religion"] = "Religie";
$a->strings["Political Views"] = "Politieke overtuigingen";
$a->strings["Gender"] = "Geslacht";
$a->strings["Sexual Preference"] = "Seksuele voorkeur";
$a->strings["Homepage"] = "Homepage";
$a->strings["Interests"] = "Interesses";
$a->strings["Location"] = "Locatie";
$a->strings["Profile updated."] = "Profiel bijgewerkt";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien.";
$a->strings["Edit Profile Details"] = "Profiel bewerken";
$a->strings["View this profile"] = "Profiel weergeven";
$a->strings["Change Profile Photo"] = "Profielfoto wijzigen";
$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis";
$a->strings["Clone this profile"] = "Dit profiel klonen";
$a->strings["Delete this profile"] = "Dit profiel verwijderen";
$a->strings["Profile Name:"] = "Profielnaam:";
$a->strings["Your Full Name:"] = "Jouw volledige naam:";
$a->strings["Title/Description:"] = "Titel/omschrijving:";
$a->strings["Your Gender:"] = "Jouw geslacht";
$a->strings["Birthday (%s):"] = "Geboortedag (%s)";
$a->strings["Street Address:"] = "Straat en huisnummer:";
$a->strings["Locality/City:"] = "Woonplaats:";
$a->strings["Postal/Zip Code:"] = "Postcode:";
$a->strings["Country:"] = "Land:";
$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Huwelijkse staat:";
$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl";
$a->strings["Since [date]:"] = "Sinds [datum]:";
$a->strings["Homepage URL:"] = "Adres homepage:";
$a->strings["Religious Views:"] = "Religieuze overtuigingen";
$a->strings["Keywords:"] = "Trefwoorden";
$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software";
$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt";
$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf...";
$a->strings["Hobbies/Interests"] = "Hobby's/interesses";
$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken";
$a->strings["My other channels"] = "Mijn andere kanalen";
$a->strings["Musical interests"] = "Muzikale interesses";
$a->strings["Books, literature"] = "Boeken/literatuur";
$a->strings["Television"] = "Televisie";
$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment";
$a->strings["Love/romance"] = "Liefde/romantiek";
$a->strings["Work/employment"] = "Werk/arbeid";
$a->strings["School/education"] = "School/onderwijs";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dit is jouw <strong>openbare</strong> profiel.<br />Het <strong>kan</strong> voor iedereen op het internet zichtbaar zijn.";
$a->strings["Age: "] = "Leeftijd:";
$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren";
$a->strings["Add profile things"] = "";
$a->strings["Include desirable objects in your profile"] = "";
$a->strings["Bookmark added"] = "Bladwijzer toegevoegd";
$a->strings["My Bookmarks"] = "Mijn bladwijzers";
$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties";
$a->strings["Invalid profile identifier."] = "";
$a->strings["Profile Visibility Editor"] = "";
$a->strings["Click on a contact to add or remove."] = "";
$a->strings["Visible To"] = "";
$a->strings["All Connections"] = "";
$a->strings["Public Sites"] = "";
$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "";
$a->strings["Site URL"] = "";
$a->strings["Access Type"] = "";
$a->strings["Registration Policy"] = "Registratiebeleid";
$a->strings["You must be logged in to see this page."] = "";
$a->strings["Insufficient permissions.  Request redirected to profile page."] = "Onvoldoende rechten.  Verzoek doorgestuurd naar profielpagina.";
$a->strings["Select a bookmark folder"] = "";
$a->strings["Save Bookmark"] = "";
$a->strings["URL of bookmark"] = "";
$a->strings["Description"] = "";
$a->strings["Or enter new bookmark folder name"] = "";
$a->strings["Room not found"] = "";
$a->strings["Leave Room"] = "Chatkanaal verlaten";
$a->strings["Delete This Room"] = "Chatkanaal verwijderen";
$a->strings["I am away right now"] = "Ik ben momenteel afwezig";
$a->strings["I am online"] = "Ik ben online";
$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen";
$a->strings["New Chatroom"] = "Nieuw chatkanaal";
$a->strings["Chatroom Name"] = "Naam chatkanaal";
$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s";
$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze Red Matrix-hub bereikt. Probeer het morgen (UTC) nogmaals.";
$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden.";
$a->strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen.";
$a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies om je e-mail te bevestigen.";
$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder van deze Red Matrix-hub.";
$a->strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden.";
$a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze Red Matrix-hub moeten eerst worden goedgekeurd.";
$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">Registreer op een andere Red Matrix-hub</a>";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze Red Matrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals.";
$a->strings["Terms of Service"] = "Gebruiksvoorwaarden";
$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze Red Matrix-hub";
$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ik ben ouder dan 13 jaar en accepteer de %s van deze Red Matrix-hub";
$a->strings["Membership on this site is by invitation only."] = "Registreren op deze Red Matrix-hub kan alleen op uitnodiging.";
$a->strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in";
$a->strings["Your email address"] = "Jouw e-mailadres";
$a->strings["Choose a password"] = "Geef een wachtwoord op";
$a->strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op";
$a->strings["Away"] = "Afwezig";
$a->strings["Online"] = "Online";
$a->strings["Please login."] = "Inloggen.";
$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix - gasten: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++";
$a->strings["Remove This Channel"] = "Verwijder dit kanaal";
$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het Red Matrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden.";
$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in voor verificatie:";
$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het Red Matrix-netwerk verwijderen";
$a->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 Red Matrix-netwerk verwijderd.";
$a->strings["Remove Channel"] = "Kanaal verwijderen";
$a->strings["No channel."] = "Geen kanaal.";
$a->strings["Common connections"] = "Veel voorkomende connecties";
$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
$a->strings["The error message was:"] = "";
$a->strings["Authentication failed."] = "Identificatie mislukt.";
$a->strings["Remote Authentication"] = "Identificatie op afstand";
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "";
$a->strings["Authenticate"] = "";
$a->strings["Continue"] = "Ga verder";
$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal ";
$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan";
$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "";
$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "";
$a->strings["Potential connections will then see the following text before proceeding:"] = "";
$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "";
$a->strings["(No specific instructions have been provided by the channel owner.)"] = "";
$a->strings["Restricted or Premium Channel"] = "";
$a->strings["No such group"] = "";
$a->strings["Search Results For:"] = "";
$a->strings["Collection is empty"] = "";
$a->strings["Collection: "] = "";
$a->strings["Connection: "] = "";
$a->strings["Invalid connection."] = "";
$a->strings["Could not access contact record."] = "";
$a->strings["Could not locate selected profile."] = "";
$a->strings["Connection updated."] = "";
$a->strings["Failed to update connection record."] = "";
$a->strings["Blocked"] = "Geblokkeerd";
$a->strings["Ignored"] = "Genegeerd";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Archived"] = "Gearchiveerd";
$a->strings["All"] = "Alles";
$a->strings["Unconnected"] = "Niet verbonden";
$a->strings["Suggest new connections"] = "Nieuwe kanalen voorstellen";
$a->strings["New Connections"] = "Nieuwe connecties";
$a->strings["Show pending (new) connections"] = "";
$a->strings["Show all connections"] = "Toon alle connecties";
$a->strings["Unblocked"] = "Niet geblokkeerd";
$a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties";
$a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties";
$a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties";
$a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties";
$a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties";
$a->strings["Only show one-way connections"] = "Toon alleen niet wederzijdse connecties";
$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
$a->strings["Edit contact"] = "Connectie bewerken";
$a->strings["Search your connections"] = "Doorzoek jouw connecties";
$a->strings["Finding: "] = "Zoeken naar: ";
$a->strings["Edit post"] = "Bericht bewerken";
$a->strings["Could not access address book record."] = "Kon geen toegang krijgen tot het adresboek-record.";
$a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar";
$a->strings["Channel has been unblocked"] = "Kanaal is gedeblokkeerd";
$a->strings["Channel has been blocked"] = "Kanaal is geblokkeerd";
$a->strings["Unable to set address book parameters."] = "Niet in staat om de adresboek-parameters in te stellen.";
$a->strings["Channel has been unignored"] = "Kanaal wordt niet meer genegeerd";
$a->strings["Channel has been ignored"] = "Kanaal wordt genegeerd";
$a->strings["Channel has been unarchived"] = "Kanaal is niet meer gearchiveerd";
$a->strings["Channel has been archived"] = "Kanaal is gearchiveerd";
$a->strings["Channel has been unhidden"] = "Kanaal is niet meer verborgen";
$a->strings["Channel has been hidden"] = "Kanaal is verborgen";
$a->strings["Channel has been approved"] = "Kanaal is goedgekeurd";
$a->strings["Channel has been unapproved"] = "Kanaal is niet goedgekeurd";
$a->strings["Connection has been removed."] = "Connectie is verwijderd";
$a->strings["View %s's profile"] = "%s's profiel weergeven";
$a->strings["Refresh Permissions"] = "Rechten vernieuwen";
$a->strings["Fetch updated permissions"] = "Aangepaste rechten ophalen";
$a->strings["Recent Activity"] = "Recente activiteit";
$a->strings["View recent posts and comments"] = "Recente berichten en reacties weergeven";
$a->strings["Block or Unblock this connection"] = "Deze connectie blokkeren of deblokkeren";
$a->strings["Unignore"] = "Niet meer negeren";
$a->strings["Ignore"] = "Negeren";
$a->strings["Ignore or Unignore this connection"] = "Deze connectie negeren of niet meer negeren";
$a->strings["Unarchive"] = "Niet meer archiveren";
$a->strings["Archive"] = "Archiveren";
$a->strings["Archive or Unarchive this connection"] = "Deze connectie archiveren of niet meer archiveren";
$a->strings["Unhide"] = "Niet meer verbergen";
$a->strings["Hide"] = "Verbergen";
$a->strings["Hide or Unhide this connection"] = "Deze connectie verbergen of niet meer verbergen";
$a->strings["Delete this connection"] = "Deze connectie verwijderen";
$a->strings["Approve this connection"] = "Deze connectie goedkeuren";
$a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan";
$a->strings["Automatic Permissions Settings"] = "Automatische instellingen van rechten";
$a->strings["Connections: settings for %s"] = "Connecties: instellingen voor %s";
$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wanneer je een connectieverzoek voor een kanaal ontvangt, \nzullen alle rechten hier automatisch op de nieuwe connectie worden toegepast en het connectieverzoek worden goedgekeurd. Verlaat deze pagina wanneer je geen gebruik wil maken van deze functie.";
$a->strings["Slide to adjust your degree of friendship"] = "";
$a->strings["inherited"] = "";
$a->strings["Connection has no individual permissions!"] = "";
$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "";
$a->strings["Profile Visibility"] = "Zichtbaarheid profiel";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
$a->strings["Contact Information / Notes"] = "Informatie/aantekeningen over connectie";
$a->strings["Edit contact notes"] = "Bewerk aantekeningen over contact";
$a->strings["Their Settings"] = "Hun instellingen";
$a->strings["My Settings"] = "Mijn instellingen";
$a->strings["Clear/Disable Automatic Permissions"] = "Verwijderen/uitschakelen automatische rechten";
$a->strings["Forum Members"] = "Forum/groepsleden";
$a->strings["Soapbox"] = "Zeepkist";
$a->strings["Full Sharing (typical social network permissions)"] = "Voluit delen (vergelijkbaar met die van sociale netwerken)";
$a->strings["Cautious Sharing "] = "Voorzichtig delen";
$a->strings["Follow Only"] = "Alleen volgen";
$a->strings["Individual Permissions"] = "Individuele rechten";
$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "";
$a->strings["Advanced Permissions"] = "Geavanceerde rechten";
$a->strings["Simple Permissions (select one and submit)"] = "Eenvoudige rechten (selecteer er één en opslaan)";
$a->strings["Visit %s's profile - %s"] = "Bezoek %s's profiel - %s";
$a->strings["Block/Unblock contact"] = "Connectie blokkeren/deblokkeren";
$a->strings["Ignore contact"] = "Connectie negeren";
$a->strings["Repair URL settings"] = "URL-instellingen repareren";
$a->strings["View conversations"] = "Conversaties weergeven";
$a->strings["Delete contact"] = "Connectie verwijderen";
$a->strings["Last update:"] = "Laatste wijziging:";
$a->strings["Update public posts"] = "Openbare berichten updaten";
$a->strings["Update now"] = "Nu updaten";
$a->strings["Currently blocked"] = "Momenteel geblokkeerd";
$a->strings["Currently ignored"] = "Momenteel genegeerd";
$a->strings["Currently archived"] = "Momenteel gearchiveerd";
$a->strings["Currently pending"] = "Momenteel in afwachting op goedkeuring";
$a->strings["Hide this contact from others"] = "Verberg deze connectie voor anderen";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
$a->strings["No potential page delegates located."] = "";
$a->strings["Delegate Page Management"] = "";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
$a->strings["Existing Page Managers"] = "";
$a->strings["Existing Page Delegates"] = "";
$a->strings["Potential Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed";
$a->strings["Remove"] = "Verwijderen";
$a->strings["Add"] = "Toevoegen";
$a->strings["No entries."] = "";
$a->strings["Public access denied."] = "Openbare toegang geweigerd.";
$a->strings["Gender: "] = "Geslacht:";
$a->strings["Finding:"] = "";
$a->strings["next page"] = "volgende pagina";
$a->strings["previous page"] = "vorige pagina";
$a->strings["No entries (some entries may be hidden)."] = "";
$a->strings["Status: "] = "Status: ";
$a->strings["Sexual Preference: "] = "Seksuele voorkeur: ";
$a->strings["Homepage: "] = "Homepage: ";
$a->strings["Hometown: "] = "Woonplaats: ";
$a->strings["About: "] = "Over: ";
$a->strings["Keywords: "] = "Trefwoorden: ";
$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)";
$a->strings["Name is required"] = "Naam is vereist";
$a->strings["Key and Secret are required"] = "";
$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd.";
$a->strings["Password changed."] = "Wachtwoord veranderd.";
$a->strings["Password update failed. Please try again."] = "";
$a->strings["Not valid email."] = "Geen geldig e-mailadres.";
$a->strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken.";
$a->strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer.";
$a->strings["Settings updated."] = "";
$a->strings["Add application"] = "Applicatie toevoegen";
$a->strings["Name of application"] = "Naam van applicatie";
$a->strings["Consumer Key"] = "Consumer key";
$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20";
$a->strings["Consumer Secret"] = "Consumer secret";
$a->strings["Redirect"] = "Redirect/doorverwijzing";
$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist";
$a->strings["Icon url"] = "URL van pictogram";
$a->strings["Optional"] = "Optioneel";
$a->strings["You can't edit this application."] = "Je kan deze applicatie niet bewerken";
$a->strings["Connected Apps"] = "Verbonden applicaties";
$a->strings["Client key starts with"] = "Client key begint met";
$a->strings["No name"] = "Geen naam";
$a->strings["Remove authorization"] = "Autorisatie verwijderen";
$a->strings["No feature settings configured"] = "Geen plugin-instellingen ingesteld";
$a->strings["Feature Settings"] = "Plugin-instellingen";
$a->strings["Account Settings"] = "Account-instellingen";
$a->strings["Password Settings"] = "Wachtwoord-instellingen";
$a->strings["New Password:"] = "Nieuw wachtwoord:";
$a->strings["Confirm:"] = "Bevestigen:";
$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen";
$a->strings["Email Address:"] = "E-mailadres:";
$a->strings["Remove Account"] = "Kanaal verwijderen (neem contact op met de beheerder van deze hub om je account te verwijderen)";
$a->strings["Warning: This action is permanent and cannot be reversed."] = "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid.";
$a->strings["Off"] = "Uit";
$a->strings["On"] = "Aan";
$a->strings["Additional Features"] = "Extra functies";
$a->strings["Connector Settings"] = "Instellingen externe koppelingen";
$a->strings["%s - (Experimental)"] = "";
$a->strings["Display Settings"] = "Weergave-instellingen";
$a->strings["Display Theme:"] = "Gebruik thema:";
$a->strings["Mobile Theme:"] = "Mobiel thema:";
$a->strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum";
$a->strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:";
$a->strings["Maximum of 100 items"] = "Maximaal 100 conversaties";
$a->strings["Don't show emoticons"] = "";
$a->strings["System Page Layout Editor - (advanced)"] = "";
$a->strings["Nobody except yourself"] = "";
$a->strings["Only those you specifically allow"] = "";
$a->strings["Anybody in your address book"] = "";
$a->strings["Anybody on this website"] = "";
$a->strings["Anybody in this network"] = "";
$a->strings["Anybody authenticated"] = "";
$a->strings["Anybody on the internet"] = "";
$a->strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids";
$a->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";
$a->strings["Your channel address is"] = "Jouw kanaaladres is";
$a->strings["Channel Settings"] = "Kanaal-instellingen";
$a->strings["Basic Settings"] = "Basis-instellingen";
$a->strings["Your Timezone:"] = "Jouw tijdzone:";
$a->strings["Default Post Location:"] = "Standaardlocatie bericht:";
$a->strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld";
$a->strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:";
$a->strings["Adult Content"] = "Inhoud voor volwassenen";
$a->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 volwassen. (Gebruik de hashtag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)";
$a->strings["Security and Privacy Settings"] = "Veiligheids- privacy-instellingen";
$a->strings["Hide my online presence"] = "Verberg mijn aanwezigheid";
$a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaal te zien valt dat je momenteel op de Red Matrix aanwezig bent";
$a->strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:";
$a->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>";
$a->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>";
$a->strings["Private - <em>default private, never open or public</em>"] = "Privé <em>(standaard privé en nooit openbaar)</em>";
$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Geblokkeerd <em>(standaard geblokkeerd naar/van iedereen)</em>";
$a->strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te labelen";
$a->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";
$a->strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen";
$a->strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:";
$a->strings["0 or blank prevents expiration"] = "0 of leeg voorkomt het verlopen";
$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:";
$a->strings["May reduce spam activity"] = "Kan eventuele spam verminderen";
$a->strings["Default Post Permissions"] = "Standaardrechten voor nieuwe berichten";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:";
$a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen";
$a->strings["Notification Settings"] = "Notificatie-instellingen";
$a->strings["By default post a status message when:"] = "Plaats automatisch een statusbericht wanneer:";
$a->strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd";
$a->strings["joining a forum/community"] = "Je lid wordt van een groep/forum";
$a->strings["making an <em>interesting</em> profile change"] = "Er sprake is van een <em>interessante</em> profielwijziging";
$a->strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:";
$a->strings["You receive a connection request"] = "Je een connectieverzoek ontvangt";
$a->strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd";
$a->strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven";
$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft";
$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt";
$a->strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt";
$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd";
$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc.";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "";
$a->strings["Miscellaneous Settings"] = "Diverse instellingen";
$a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu dat op je kanaalpagina's wordt weergegeven";
$a->strings["Red Matrix Server - Setup"] = "Red Matrix-server instellen";
$a->strings["Could not connect to database."] = "Kon geen verbinding maken met de database.";
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
$a->strings["Could not create table."] = "";
$a->strings["Your site database has been installed."] = "";
$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "";
$a->strings["Please see the file \"install/INSTALL.txt\"."] = "";
$a->strings["System check"] = "";
$a->strings["Next"] = "Volgende";
$a->strings["Check again"] = "";
$a->strings["Database connection"] = "";
$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Om Red Matrix te kunnen installeren, moeten we weten hoe we met de database kunnen verbinden.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
$a->strings["Database Server Name"] = "";
$a->strings["Default is localhost"] = "";
$a->strings["Database Port"] = "";
$a->strings["Communication port number - use 0 for default"] = "";
$a->strings["Database Login Name"] = "";
$a->strings["Database Login Password"] = "";
$a->strings["Database Name"] = "";
$a->strings["Site administrator email address"] = "E-mailadres hubbeheerder";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van jouw account moet hiermee overeenkomen alvorens het <i>web admin panel</i> te kunnen gebruiken.";
$a->strings["Website URL"] = "URL Red Matrix-hub";
$a->strings["Please use SSL (https) URL if available."] = "";
$a->strings["Please select a default timezone for your website"] = "";
$a->strings["Site settings"] = "Hub-instellingen";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
$a->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."] = "";
$a->strings["PHP executable path"] = "";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
$a->strings["This is required for message delivery to work."] = "";
$a->strings["PHP register_argc_argv"] = "";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
$a->strings["Generate encryption keys"] = "Versleutelingssleutels aanmaken";
$a->strings["libCurl PHP module"] = "libCurl PHP-module";
$a->strings["GD graphics PHP module"] = "GD graphics PHP-module";
$a->strings["OpenSSL PHP module"] = "OpenSSL PHP-module";
$a->strings["mysqli PHP module"] = "mysqli PHP-module";
$a->strings["mb_string PHP module"] = "mb_string PHP-module";
$a->strings["mcrypt PHP module"] = "mcrypt PHP-module";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite-module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
$a->strings["proc_open"] = "";
$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
$a->strings["Error: libCURL PHP module required but not installed."] = "";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
$a->strings["Error: openssl PHP module required but not installed."] = "";
$a->strings["Error: mysqli PHP module required but not installed."] = "";
$a->strings["Error: mb_string PHP module required but not installed."] = "";
$a->strings["Error: mcrypt PHP module required but not installed."] = "";
$a->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."] = "";
$a->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."] = "";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = "";
$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
$a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = "";
$a->strings["view/tpl/smarty3 is writable"] = "";
$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "";
$a->strings["store is writable"] = "";
$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
$a->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!"] = "";
$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "";
$a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "";
$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "";
$a->strings["Providers are available that issue free certificates which are browser-valid."] = "";
$a->strings["SSL certificate validation"] = "";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->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."] = "";
$a->strings["Errors encountered creating database tables."] = "";
$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
$a->strings["Item not found"] = "Item niet gevonden";
$a->strings["Edit Block"] = "Blok bewerken";
$a->strings["Delete block?"] = "Blok verwijderen";
$a->strings["Insert YouTube video"] = "YouTube-video invoegen";
$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen";
$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen";
$a->strings["Delete Block"] = "Blok verwijderen";
$a->strings["Layout updated."] = "Layout bijgewerkt.";
$a->strings["Edit System Page Description"] = "";
$a->strings["Layout not found."] = "Lay-out niet gevonden.";
$a->strings["Module Name:"] = "Modulenaam:";
$a->strings["Layout Help"] = "Lay-out-hulp";
$a->strings["Edit Layout"] = "Lay-out bewerken";
$a->strings["Delete layout?"] = "Lay-out verwijderen?";
$a->strings["Delete Layout"] = "Lay-out verwijderen";
$a->strings["Item is not editable"] = "Item is niet te bewerken";
$a->strings["Delete item?"] = "Item verwijderen?";
$a->strings["Edit Webpage"] = "Webpagina bewerken";
$a->strings["Delete webpage?"] = "Webpagina verwijderen?";
$a->strings["Delete Webpage"] = "Webpagina verwijderen";
$a->strings["Version %s"] = "Versie %s";
$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:";
$a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps";
$a->strings["Red"] = "Red";
$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Dit is een Red Matrix-hub - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterende privacy.";
$a->strings["Running at web location"] = "Draaiend op weblocatie";
$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Bezoek <a href=\"http://redmatrix.me\">RedMatrix.me</a> om meer te leren over de Red Matrix.";
$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek";
$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail  \"redmatrix\" at librelist - dot com";
$a->strings["Site Administrators"] = "Hubbeheerders";
$a->strings["Failed to create source. No channel selected."] = "";
$a->strings["Source created."] = "";
$a->strings["Source updated."] = "";
$a->strings["*"] = "";
$a->strings["Manage remote sources of content for your channel."] = "";
$a->strings["New Source"] = "";
$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "";
$a->strings["Only import content with these words (one per line)"] = "";
$a->strings["Leave blank to import all public content"] = "";
$a->strings["Channel Name"] = "Kanaalnaam";
$a->strings["Source not found."] = "";
$a->strings["Edit Source"] = "";
$a->strings["Delete Source"] = "";
$a->strings["Source removed"] = "";
$a->strings["Unable to remove source."] = "";
$a->strings["- select -"] = "";
$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist.";
$a->strings["l, F j"] = "l j F";
$a->strings["Edit event"] = "Gebeurtenis bewerken";
$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken";
$a->strings["Previous"] = "Vorige";
$a->strings["hour:minute"] = "uur:minuut";
$a->strings["Event details"] = "Details van gebeurtenis";
$a->strings["Format is %s %s. Starting date and Title are required."] = "Volgorde is %s %s. Begintijd en titel zijn vereist.";
$a->strings["Event Starts:"] = "Gebeurtenis begint:";
$a->strings["Required"] = "Vereist";
$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant";
$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt";
$a->strings["Description:"] = "Omschrijving:";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Deel deze gebeurtenis";
$a->strings["Permission Denied."] = "Toegang geweigerd";
$a->strings["File not found."] = "Bestand niet gevonden.";
$a->strings["Edit file permissions"] = "Bestandsrechten bewerken";
$a->strings["Set/edit permissions"] = "Rechten instellen/bewerken";
$a->strings["Include all files and sub folders"] = "";
$a->strings["Return to file list"] = "";
$a->strings["Copy/paste this code to attach file to a post"] = "";
$a->strings["Copy/paste this URL to link file from a web page"] = "";
$a->strings["Download"] = "";
$a->strings["Used: "] = "";
$a->strings["[directory]"] = "";
$a->strings["Limit: "] = "";
$a->strings["Channel added."] = "";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %2\$s's %3\$s";
$a->strings["Contact not found."] = "Contact niet gevonden";
$a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden.";
$a->strings["Suggest Friends"] = "Kanalen voorstellen";
$a->strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s";
$a->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.";
$a->strings["Collection created."] = "Collectie aangemaakt";
$a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden";
$a->strings["Collection updated."] = "Collectie bijgewerkt.";
$a->strings["Create a collection of channels."] = "Kanaalcollectie aanmaken";
$a->strings["Collection Name: "] = "Naam collectie:";
$a->strings["Members are visible to other channels"] = "Kanalen in deze collectie zijn zichtbaar voor andere kanalen";
$a->strings["Collection removed."] = "Collectie verwijderd";
$a->strings["Unable to remove collection."] = "Verwijderen collectie mislukt";
$a->strings["Collection Editor"] = "Collectiebewerker";
$a->strings["Members"] = "Kanalen";
$a->strings["All Connected Channels"] = "Alle kanaalconnecties";
$a->strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen.";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %2\$s's %3\$s met %4\$s";
$a->strings["Help:"] = "Hulp:";
$a->strings["Not Found"] = "Niet gevonden";
$a->strings["Tag removed"] = "Label verwijderd";
$a->strings["Remove Item Tag"] = "Verwijder itemlabel";
$a->strings["Select a tag to remove: "] = "Kies een label om te verwijderen";
$a->strings["Welcome to %s"] = "";
$a->strings["Thing updated"] = "";
$a->strings["Object store: failed"] = "";
$a->strings["Thing added"] = "";
$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "";
$a->strings["Show Thing"] = "";
$a->strings["item not found."] = "";
$a->strings["Edit Thing"] = "";
$a->strings["Select a profile"] = "";
$a->strings["Select a category of stuff. e.g. I ______ something"] = "";
$a->strings["Post an activity"] = "";
$a->strings["Only sends to viewers of the applicable profile"] = "";
$a->strings["Name of thing e.g. something"] = "";
$a->strings["URL of thing (optional)"] = "";
$a->strings["URL for photo of thing (optional)"] = "";
$a->strings["Add Thing to your Profile"] = "";
$a->strings["Nothing to import."] = "";
$a->strings["Unable to download data from old server"] = "";
$a->strings["Imported file is empty."] = "";
$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
$a->strings["Channel clone failed. Import failed."] = "";
$a->strings["Cloned channel not found. Import failed."] = "";
$a->strings["Import completed."] = "";
$a->strings["You must be logged in to use this feature."] = "";
$a->strings["Import Channel"] = "";
$a->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. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "";
$a->strings["File to Upload"] = "";
$a->strings["Or provide the old server/hub details"] = "";
$a->strings["Your old identity address (xyz@example.com)"] = "";
$a->strings["Your old login email address"] = "Het e-mailadres van je oude account";
$a->strings["Your old login password"] = "";
$a->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."] = "";
$a->strings["Make this hub my primary location"] = "";
$a->strings["Total invitation limit exceeded."] = "";
$a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres.";
$a->strings["Please join us on Red"] = "";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
$a->strings["%s : Message delivery failed."] = "";
$a->strings["%d message sent."] = array(
	0 => "",
	1 => "",
);
$a->strings["You have no more invitations available"] = "";
$a->strings["Send invitations"] = "";
$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:";
$a->strings["Your message:"] = "";
$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
$a->strings["Please visit my channel at"] = "";
$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "";
$a->strings["Click the [Register] link on the following page to join."] = "";
$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Bezoek http://getzot.com voor meer informatie over het Red Matrix-project en waarom het de potentie heeft het internet voor altijd te veranderen.";
$a->strings["Unable to locate original post."] = "";
$a->strings["Empty post discarded."] = "";
$a->strings["Executable content type not permitted to this channel."] = "";
$a->strings["System error. Post not saved."] = "";
$a->strings["You have reached your limit of %1$.0f top level posts."] = "";
$a->strings["You have reached your limit of %1$.0f webpages."] = "";
$a->strings["[Embedded content - reload page to view]"] = "";
$a->strings["Help with this feature"] = "";
$a->strings["Layout Name"] = "Naam layout";
$a->strings["Remote privacy information not available."] = "";
$a->strings["Visible to:"] = "";
$a->strings["No connections."] = "Geen connecties.";
$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]";
$a->strings["View Connnections"] = "Connecties weergeven";
$a->strings["No valid account found."] = "Geen geldige account gevonden.";
$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail.";
$a->strings["Site Member (%s)"] = "";
$a->strings["Password reset requested at %s"] = "";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
$a->strings["Password Reset"] = "Wachtwoord vergeten?";
$a->strings["Your password has been reset as requested."] = "";
$a->strings["Your new password is"] = "";
$a->strings["Save or copy your new password - and then"] = "";
$a->strings["click here to login"] = "";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
$a->strings["Your password has changed at %s"] = "";
$a->strings["Forgot your Password?"] = "";
$a->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.";
$a->strings["Email Address"] = "E-mailadres";
$a->strings["Reset"] = "";
$a->strings["Hub not found."] = "";
$a->strings["Total votes"] = "";
$a->strings["Average Rating"] = "";
$a->strings["Unable to lookup recipient."] = "";
$a->strings["Unable to communicate with requested channel."] = "";
$a->strings["Cannot verify requested channel."] = "";
$a->strings["Selected channel has private message restrictions. Send failed."] = "";
$a->strings["Messages"] = "Berichten";
$a->strings["Message deleted."] = "Bericht verwijderd.";
$a->strings["Message recalled."] = "Bericht ingetrokken.";
$a->strings["Send Private Message"] = "Privébericht versturen";
$a->strings["To:"] = "Aan:";
$a->strings["Subject:"] = "Onderwerp:";
$a->strings["Message not found."] = "Bericht niet gevonden";
$a->strings["Delete message"] = "Bericht verwijderen";
$a->strings["Recall message"] = "Bericht intrekken";
$a->strings["Message has been recalled."] = "Bericht is ingetrokken.";
$a->strings["Private Conversation"] = "Privéconversatie";
$a->strings["Delete conversation"] = "Verwijder conversatie";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
$a->strings["Send Reply"] = "Antwoord versturen";
$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "";
$a->strings["Create a new channel"] = "Nieuw kanaal aanmaken";
$a->strings["Channel Manager"] = "Kanaalbeheerder";
$a->strings["Current Channel"] = "Huidig kanaal";
$a->strings["Attach to one of your channels by selecting it."] = "";
$a->strings["Default Channel"] = "";
$a->strings["Make Default"] = "";
$a->strings["Wall Photos"] = "Kanaalfoto's";
$a->strings["Profile Match"] = "Profielovereenkomst";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe.";
$a->strings["is interested in:"] = "is geïnteresseerd in:";
$a->strings["No matches"] = "Geen overeenkomsten";
$a->strings["Menu updated."] = "Menu aangepast. ";
$a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen";
$a->strings["Menu created."] = "";
$a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken.";
$a->strings["Manage Menus"] = "Menu's beheren";
$a->strings["Drop"] = "Verwijderen";
$a->strings["Create a new menu"] = "Een nieuwe menu aanmaken";
$a->strings["Delete this menu"] = "Menu verwijderen";
$a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu";
$a->strings["Edit this menu"] = "Dit menu bewerken";
$a->strings["New Menu"] = "Nieuw menu";
$a->strings["Menu name"] = "Naam van menu";
$a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou.";
$a->strings["Menu title"] = "Titel van menu";
$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien.";
$a->strings["Allow bookmarks"] = "Bladwijzers toestaan";
$a->strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan";
$a->strings["Menu deleted."] = "Menu verwijderd.";
$a->strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden.";
$a->strings["Edit Menu"] = "Menu bewerken";
$a->strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder";
$a->strings["Conversation removed."] = "Conversatie verwijderd";
$a->strings["No messages."] = "Geen berichten";
$a->strings["D, d M Y - g:i A"] = "";
$a->strings["Add a Channel"] = "Kanaal toevoegen";
$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "";
$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\"";
$a->strings["Choose a short nickname"] = "Kies een korte bijnaam";
$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen.";
$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "";
$a->strings["Page owner information could not be retrieved."] = "";
$a->strings["Album not found."] = "";
$a->strings["Delete Album"] = "Verwijder album";
$a->strings["Delete Photo"] = "Verwijder foto";
$a->strings["No photos selected"] = "Geen foto's geselecteerd";
$a->strings["Access to this item is restricted."] = "";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
$a->strings["Upload Photos"] = "Foto's uploaden";
$a->strings["New album name: "] = "";
$a->strings["or existing album name: "] = "";
$a->strings["Do not show a status post for this upload"] = "";
$a->strings["Contact Photos"] = "";
$a->strings["Edit Album"] = "";
$a->strings["Show Newest First"] = "";
$a->strings["Show Oldest First"] = "";
$a->strings["View Photo"] = "";
$a->strings["Permission denied. Access to this item may be restricted."] = "";
$a->strings["Photo not available"] = "";
$a->strings["Use as profile photo"] = "";
$a->strings["View Full Size"] = "";
$a->strings["Edit photo"] = "";
$a->strings["Rotate CW (right)"] = "";
$a->strings["Rotate CCW (left)"] = "";
$a->strings["New album name"] = "Nieuwe albumnaam";
$a->strings["Caption"] = "";
$a->strings["Add a Tag"] = "";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "";
$a->strings["In This Photo:"] = "";
$a->strings["View Album"] = "";
$a->strings["Recent Photos"] = "Recente foto's";
$a->strings["Invalid request identifier."] = "";
$a->strings["Discard"] = "";
$a->strings["No more system notifications."] = "Geen systeemnotificaties meer.";
$a->strings["System Notifications"] = "Systeemnotificaties";
$a->strings["Unable to find your hub."] = "";
$a->strings["Post successful."] = "";
$a->strings["invalid target signature"] = "";
$a->strings["OpenID protocol error. No ID returned."] = "";
$a->strings["App installed."] = "";
$a->strings["Malformed app."] = "";
$a->strings["Embed code"] = "";
$a->strings["Edit App"] = "";
$a->strings["Create App"] = "";
$a->strings["Name of app"] = "";
$a->strings["Location (URL) of app"] = "";
$a->strings["Photo icon URL"] = "";
$a->strings["80 x 80 pixels - optional"] = "";
$a->strings["Version ID"] = "";
$a->strings["Price of app"] = "";
$a->strings["Location (URL) to purchase app"] = "";
$a->strings["Schema Default"] = "";
$a->strings["Sans-Serif"] = "";
$a->strings["Monospace"] = "";
$a->strings["Theme settings"] = "Thema-instellingen";
$a->strings["Set scheme"] = "Schema van thema instellen";
$a->strings["Set font-size for posts and comments"] = "Lettergrootte voor berichten en reacties instellen";
$a->strings["Set font face"] = "Lettertype instellen";
$a->strings["Set iconset"] = "";
$a->strings["Set big shadow size, default 15px 15px 15px"] = "Een grote schaduwgrootte instellen (standaard 15px 15px 15px)";
$a->strings["Set small shadow size, default 5px 5px 5px"] = "Een kleine schaduwgrootte instellen (standaard 5px 5px 5px)";
$a->strings["Set shadow colour, default #000"] = "Schaduwkleur instellen (standaard #000)";
$a->strings["Set radius size, default 5px"] = "Radius instellen, standaard 5px";
$a->strings["Set line-height for posts and comments"] = "Lijnhoogte voor berichten en reacties instellen";
$a->strings["Set background image"] = "Achtergrondafbeelding instellen";
$a->strings["Set background attachment"] = "Gedrag achtergrondafbeelding instellen";
$a->strings["Set background colour"] = "Achtergrondkleur instellen";
$a->strings["Set section background image"] = "Achtergrondafbeelding van sectie instellen";
$a->strings["Set section background colour"] = "Achtergrondkleur van sectie instellen";
$a->strings["Set colour of items - use hex"] = "Tekstkleur van items instellen (gebruik hexadecimaal)";
$a->strings["Set colour of links - use hex"] = "Kleur van links instellen (gebruik hexadecimaal)";
$a->strings["Set max-width for items.  Default 400px"] = "Maximale breedte van items instellen (standaard 400px)";
$a->strings["Set min-width for items.  Default 240px"] = "Minimale breedte van items instellen (standaard 240px)";
$a->strings["Set the generic content wrapper width.  Default 48%"] = "Breedte van de generieke content-wrapper instellen (standaard 48%)";
$a->strings["Set colour of fonts - use hex"] = "Tekstkleur instellen (gebruik hexadecimaal)";
$a->strings["Set background-size element"] = "Grootte achtergrondafbeelding instellen";
$a->strings["Item opacity"] = "Ondoorzichtigheid item";
$a->strings["Display post previews only"] = "Alleen voorvertoning berichten weergeven";
$a->strings["Display side bar on channel page"] = "Zijbalk op kanaalpagina weergeven";
$a->strings["Colour of the navigation bar"] = "Kleur van de navigatiebalk";
$a->strings["Item float"] = "Positie van item (float)";
$a->strings["Left offset of the section element"] = "Linker offset van het sectie-element";
$a->strings["Right offset of the section element"] = "Rechter offset van het sectie-element";
$a->strings["Section width"] = "Breedte van sectie";
$a->strings["Left offset of the aside"] = "Rechter offset van aside (zijbalk)";
$a->strings["Right offset of the aside element"] = "Rechter offset van het aside-element";
$a->strings["None"] = "Geen";
$a->strings["Header image"] = "Header-afbeelding";
$a->strings["Header image only on profile pages"] = "Alleen een header-afbeelding op profielpagina's";
$a->strings["Narrow navbar"] = "Smalle navigatiebalk";
$a->strings["Navigation bar background colour"] = "Achtergrondkleur navigatiebalk";
$a->strings["Navigation bar gradient top colour"] = "Bovenste gradiëntkleur navigatiebalk";
$a->strings["Navigation bar gradient bottom colour"] = "Onderste gradiëntkleur navigatiebalk";
$a->strings["Navigation active button gradient top colour"] = "Bovenste gradiëntkleur actieve knop navigatiebalk";
$a->strings["Navigation active button gradient bottom colour"] = "Onderste gradiëntkleur actieve knop op navigatiebalk";
$a->strings["Navigation bar border colour "] = "Randkleur navigatiebalk ";
$a->strings["Navigation bar icon colour "] = "Pictogramkleur navigatiebalk";
$a->strings["Navigation bar active icon colour "] = "Actieve pictogramkleur navigatiebalk";
$a->strings["link colour"] = "Linkkleur instellen";
$a->strings["Set font-colour for banner"] = "Tekstkleur van banner instellen";
$a->strings["Set the background colour"] = "Achtergrondkleur instellen";
$a->strings["Set the background image"] = "Achtergrondafbeelding instellen";
$a->strings["Set the background colour of items"] = "Achtergrondkleur items instellen";
$a->strings["Set the background colour of comments"] = "Achtergrondkleur reacties instellen";
$a->strings["Set the border colour of comments"] = "Randkleur reacties instellen";
$a->strings["Set the indent for comments"] = "Inspringen reacties instellen";
$a->strings["Set the basic colour for item icons"] = "Basiskleur itempictogrammen instellen";
$a->strings["Set the hover colour for item icons"] = "Hoverkleur itempictogrammen instellen";
$a->strings["Set font-size for the entire application"] = "Tekstgrootte van de volledige applicatie instellen";
$a->strings["Set font-colour for posts and comments"] = "Tekstkleur van berichten en reacties";
$a->strings["Set radius of corners"] = "Radius van hoeken instellen";
$a->strings["Set shadow depth of photos"] = "Schaduwdiepte van foto's instellen";
$a->strings["Set maximum width of conversation regions"] = "Maximumbreedte conversatieruimte instellen";
$a->strings["Center conversation regions"] = "Centreer conversatieruimte";
$a->strings["Set minimum opacity of nav bar - to hide it"] = "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)";
$a->strings["Set size of conversation author photo"] = "Grootte profielfoto's van berichten instellen";
$a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen";
$a->strings["Sloppy photo albums"] = "Rommelig vormgegeven fotoalbums";
$a->strings["Are you a clean desk or a messy desk person?"] = "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?";
$a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek.";
$a->strings["Update Error at %s"] = "Update-fout op %s";
$a->strings["Create an account to access services and applications within the Red Matrix"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de Red Matrix";
$a->strings["Password"] = "Wachtwoord";
$a->strings["Remember me"] = "Aangemeld blijven";
$a->strings["Forgot your password?"] = "Wachtwoord vergeten?";
$a->strings["permission denied"] = "toegang geweigerd";
$a->strings["Got Zot?"] = "Heb je Zot?";
$a->strings["toggle mobile"] = "mobiele weergave omschakelen";