summaryrefslogtreecommitdiffstats
path: root/i18n/nl.json
blob: 6c5155d4ed2b933c7b02560e20ebfc52a5809455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
[
  {
    "id": "actiance.export.marshalToXml.appError",
    "translation": "Unable to convert export to XML."
  },
  {
    "id": "api.admin.add_certificate.array.app_error",
    "translation": "Geen bestand gevonden in 'certificate' veld in verzoek"
  },
  {
    "id": "api.admin.add_certificate.no_file.app_error",
    "translation": "Geen bestand gevonden in 'certificate' veld in verzoek"
  },
  {
    "id": "api.admin.add_certificate.open.app_error",
    "translation": "Kon het certificaat-bestand niet openen"
  },
  {
    "id": "api.admin.add_certificate.saving.app_error",
    "translation": "Kon het certificaat-bestand niet opslaan."
  },
  {
    "id": "api.admin.file_read_error",
    "translation": "Fout bij lezen van logbestand."
  },
  {
    "id": "api.admin.get_brand_image.storage.app_error",
    "translation": "Afbeeldingenopslag is niet geconfigureerd."
  },
  {
    "id": "api.admin.remove_certificate.delete.app_error",
    "translation": "Er is een fout opgetreden bij het verwijderen van het certificaat. Controleer dat het bestand config/{{.Filename}} bestaat."
  },
  {
    "id": "api.admin.saml.metadata.app_error",
    "translation": "Er is een fout opgetreden tijdens het opzetten van Service Provider Metadata."
  },
  {
    "id": "api.admin.saml.not_available.app_error",
    "translation": "SAML wordt niet ondersteund, of is niet geconfigureerd op deze server."
  },
  {
    "id": "api.admin.test_email.body",
    "translation": "<br/><br/><br/>Mail voor Mattermost lijkt goed geconfigureerd te zijn!"
  },
  {
    "id": "api.admin.test_email.missing_server",
    "translation": "SMTP-server is verplicht"
  },
  {
    "id": "api.admin.test_email.reenter_password",
    "translation": "De SMTP-server, -poort of -gebruikersnaam is veranderd. Voer het SMTP-wachtwoord opnieuw in om de verbinding te testen."
  },
  {
    "id": "api.admin.test_email.subject",
    "translation": "Mattermost - E-mail-instellingen testen"
  },
  {
    "id": "api.admin.test_s3.missing_s3_bucket",
    "translation": "S3 Bucket is required"
  },
  {
    "id": "api.admin.upload_brand_image.array.app_error",
    "translation": "Lege array bij 'image' in aanvraag"
  },
  {
    "id": "api.admin.upload_brand_image.no_file.app_error",
    "translation": "Geen bestand bij 'image' in aanvraag"
  },
  {
    "id": "api.admin.upload_brand_image.parse.app_error",
    "translation": "Kan het 'multipart'-formulier niet verwerken"
  },
  {
    "id": "api.admin.upload_brand_image.storage.app_error",
    "translation": "Kan afbeelding niet uploaden. Afbeeldingsopslag is niet geconfigureerd."
  },
  {
    "id": "api.admin.upload_brand_image.too_large.app_error",
    "translation": "Kan bestand niet uploaden. Bestand is te groot."
  },
  {
    "id": "api.channel.add_member.added",
    "translation": "%v is door %v aan het kanaal toegevoegd."
  },
  {
    "id": "api.channel.add_user.to.channel.failed.app_error",
    "translation": "Kan de gebruiker niet aan het kanaal toevoegen"
  },
  {
    "id": "api.channel.add_user.to.channel.failed.deleted.app_error",
    "translation": "Fout bij toevoegen van gebruiker aan kanaal omdat de gebruiker verwijderd is van het team."
  },
  {
    "id": "api.channel.add_user_to_channel.type.app_error",
    "translation": "Kan geen gebruikers toevoegen aan dit soort kanaal"
  },
  {
    "id": "api.channel.change_channel_privacy.private_to_public",
    "translation": "Dit kanaal is omgezet naar een publiek kanaal en is open voor ieder teamlid."
  },
  {
    "id": "api.channel.change_channel_privacy.public_to_private",
    "translation": "This kanaal is omgezet naar een privékanaal."
  },
  {
    "id": "api.channel.convert_channel_to_private.default_channel_error",
    "translation": "This default channel cannot be converted into a private channel."
  },
  {
    "id": "api.channel.convert_channel_to_private.private_channel_error",
    "translation": "The channel requested to convert is already a private channel."
  },
  {
    "id": "api.channel.create_channel.direct_channel.app_error",
    "translation": "U moet de 'createDirectChannel' API service gebruiken om een direct kanaal aan te maken"
  },
  {
    "id": "api.channel.create_channel.invalid_character.app_error",
    "translation": "Ongeldig karakter '__' in naam van niet-direct kanaal"
  },
  {
    "id": "api.channel.create_channel.max_channel_limit.app_error",
    "translation": "Kan niet meer dan {{.MaxChannelsPerTeam}} kanalen aanmaken voor het huidige team"
  },
  {
    "id": "api.channel.create_default_channels.off_topic",
    "translation": "Allerlei"
  },
  {
    "id": "api.channel.create_default_channels.town_square",
    "translation": "Dorpsplein"
  },
  {
    "id": "api.channel.create_direct_channel.invalid_user.app_error",
    "translation": "Onjuiste gebruikers ID voor het aanmaken van een direct kanaal."
  },
  {
    "id": "api.channel.create_group.bad_size.app_error",
    "translation": "Groep bericht kanalen moeten tenminste 3 en niet meer dan 8 gebruikers bevatten"
  },
  {
    "id": "api.channel.create_group.bad_user.app_error",
    "translation": "Een van de opgegeven gebruikers bestaat niet"
  },
  {
    "id": "api.channel.delete_channel.archived",
    "translation": "%v heeft het kanaal gearchiveerd."
  },
  {
    "id": "api.channel.delete_channel.cannot.app_error",
    "translation": "Het standaardkanaal {{.Channel}} kan niet verwijderd worden"
  },
  {
    "id": "api.channel.delete_channel.deleted.app_error",
    "translation": "Het kanaal is gearchiveerd of verwijderd"
  },
  {
    "id": "api.channel.delete_channel.type.invalid",
    "translation": "Unable to delete direct or group message channels"
  },
  {
    "id": "api.channel.join_channel.permissions.app_error",
    "translation": "U beschikt niet over de juiste rechten"
  },
  {
    "id": "api.channel.join_channel.post_and_forget",
    "translation": "%v is nu lid van het kanaal."
  },
  {
    "id": "api.channel.leave.default.app_error",
    "translation": "Kan het standaardkanaal {{.Channel}} niet verlaten"
  },
  {
    "id": "api.channel.leave.direct.app_error",
    "translation": "Een direct kanaal kan niet verlaten worden"
  },
  {
    "id": "api.channel.leave.last_member.app_error",
    "translation": "U bent het laatste lid, probeer de privékanaalte verwijderen in plaats van die te verlaten."
  },
  {
    "id": "api.channel.leave.left",
    "translation": "%v heeft het kanaal verlaten."
  },
  {
    "id": "api.channel.patch_update_channel.forbidden.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "api.channel.post_channel_privacy_message.error",
    "translation": "Failed to post channel privacy update message."
  },
  {
    "id": "api.channel.post_update_channel_displayname_message_and_forget.create_post.error",
    "translation": "Fout bij het weergeven van het bericht over de bijgewerkte weergavenaam"
  },
  {
    "id": "api.channel.post_update_channel_displayname_message_and_forget.retrieve_user.error",
    "translation": "Kon de gebruiker niet ophalen tijdens het bijwerken van het kanaal weergavenaam veld"
  },
  {
    "id": "api.channel.post_update_channel_displayname_message_and_forget.updated_from",
    "translation": "%s heeft de kanaalkoptekst veranderd van: %s naar: %s"
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.post.error",
    "translation": "Kanaalkoptekst bijwerken mislukt"
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.removed",
    "translation": "%s heeft de kanaalkoptekst verwijderd (was: %s)"
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.retrieve_user.error",
    "translation": "Kon de gebruiker niet ophalen tijdens het bewaren van de nieuwe kanaalkoptekst %v"
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.updated_from",
    "translation": "%s heeft de kanaalkoptekst veranderd van \"%s\" naar \"%s\""
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.updated_to",
    "translation": "%s heeft de kanaalkoptekst bijgewerkt naar: %s"
  },
  {
    "id": "api.channel.post_user_add_remove_message_and_forget.error",
    "translation": "Plaatsen van bericht over binnenkomen/verlaten %v is mislukt"
  },
  {
    "id": "api.channel.remove.default.app_error",
    "translation": "Kan het standaardkanaal {{.Channel}} niet verlaten"
  },
  {
    "id": "api.channel.remove_channel_member.type.app_error",
    "translation": "Unable to remove user from a channel."
  },
  {
    "id": "api.channel.remove_member.removed",
    "translation": "%v was verwijdert van het kanaal."
  },
  {
    "id": "api.channel.update_channel.deleted.app_error",
    "translation": "Het kanaal is gearchiveerd of verwijderd"
  },
  {
    "id": "api.channel.update_channel.tried.app_error",
    "translation": "Een ongeldige bijwerkings-poging van het standaard kanaal {{.Channel}} is geprobeerd"
  },
  {
    "id": "api.channel.update_channel_member_roles.scheme_role.app_error",
    "translation": "The provided role is managed by a Scheme and therefore cannot be applied directly to a Channel Member"
  },
  {
    "id": "api.channel.update_channel_scheme.license.error",
    "translation": "Your license does not support updating a channel's scheme"
  },
  {
    "id": "api.channel.update_channel_scheme.scheme_scope.error",
    "translation": "Unable to set the scheme to the channel because the supplied scheme is not a channel scheme."
  },
  {
    "id": "api.channel.update_team_member_roles.scheme_role.app_error",
    "translation": "The provided role is managed by a Scheme and therefore cannot be applied directly to a Team Member"
  },
  {
    "id": "api.command.admin_only.app_error",
    "translation": "Intergratie is beperkt voor alleen beheerders."
  },
  {
    "id": "api.command.disabled.app_error",
    "translation": "Deze opdrachten zijn uitgeschakeld door de beheerder."
  },
  {
    "id": "api.command.duplicate_trigger.app_error",
    "translation": "Dit trigger woord is al in gebruik. Kies een ander woord."
  },
  {
    "id": "api.command.execute_command.debug",
    "translation": "Uitvoeren cmd=%v userId=%v"
  },
  {
    "id": "api.command.execute_command.failed.app_error",
    "translation": "Opdracht met activeer-woord '{{.Trigger}}' is mislukt"
  },
  {
    "id": "api.command.execute_command.failed_empty.app_error",
    "translation": "Opdracht met activeer-woord '{{.Trigger}}' stuurde een leeg antwoord"
  },
  {
    "id": "api.command.execute_command.failed_resp.app_error",
    "translation": "Opdracht met activeer-woord '{{.Trigger}}' kreeg antwoord {{.Status}}"
  },
  {
    "id": "api.command.execute_command.not_found.app_error",
    "translation": "Command with a trigger of '{{.Trigger}}' not found. To send a message beginning with \"/\", try adding an empty space at the beginning of the message."
  },
  {
    "id": "api.command.execute_command.start.app_error",
    "translation": "Geen opdracht activeer-woorden gevonden"
  },
  {
    "id": "api.command.invite_people.desc",
    "translation": "Stuur een email uitnodiging naar jouw Mattermost team"
  },
  {
    "id": "api.command.invite_people.email_invitations_off",
    "translation": "Email invitations are disabled, no invite(s) sent"
  },
  {
    "id": "api.command.invite_people.email_off",
    "translation": "Email is niet geconfigureerd, geen uitnodiging(en) verstuurd"
  },
  {
    "id": "api.command.invite_people.fail",
    "translation": "Probleem opgetreden bij het versturen van email uitnodiging(en)"
  },
  {
    "id": "api.command.invite_people.hint",
    "translation": "[naam@domein.com ...]"
  },
  {
    "id": "api.command.invite_people.invite_off",
    "translation": "User creation has been disabled on this server, no invite(s) sent"
  },
  {
    "id": "api.command.invite_people.name",
    "translation": "invite_people"
  },
  {
    "id": "api.command.invite_people.no_email",
    "translation": "Geef een of meer geldige email adressen"
  },
  {
    "id": "api.command.invite_people.sent",
    "translation": "Email uitnodiging(en) verstuurd"
  },
  {
    "id": "api.command.team_mismatch.app_error",
    "translation": "Fout bij het bijwerken van commando's voor meerdere teams"
  },
  {
    "id": "api.command_away.desc",
    "translation": "Stel uw status in naar afwezig"
  },
  {
    "id": "api.command_away.name",
    "translation": "afwezig "
  },
  {
    "id": "api.command_away.success",
    "translation": "Je bent nu afwezig"
  },
  {
    "id": "api.command_channel_header.channel.app_error",
    "translation": "Error to retrieve the current channel."
  },
  {
    "id": "api.command_channel_header.desc",
    "translation": "Edit the channel header"
  },
  {
    "id": "api.command_channel_header.hint",
    "translation": "[text]"
  },
  {
    "id": "api.command_channel_header.message.app_error",
    "translation": "Een bericht moet worden opgegeven met het /echo commando."
  },
  {
    "id": "api.command_channel_header.name",
    "translation": "header"
  },
  {
    "id": "api.command_channel_header.permission.app_error",
    "translation": "You don't have the appropriate permissions to edit the channel header."
  },
  {
    "id": "api.command_channel_header.update_channel.app_error",
    "translation": "Error to update the current channel."
  },
  {
    "id": "api.command_channel_purpose.channel.app_error",
    "translation": "Error to retrieve the current channel."
  },
  {
    "id": "api.command_channel_purpose.desc",
    "translation": "Edit the channel purpose"
  },
  {
    "id": "api.command_channel_purpose.direct_group.app_error",
    "translation": "Unable to set purpose for direct message channels. Use /header to set the header instead."
  },
  {
    "id": "api.command_channel_purpose.hint",
    "translation": "[text]"
  },
  {
    "id": "api.command_channel_purpose.message.app_error",
    "translation": "Een bericht moet worden opgegeven met het /echo commando."
  },
  {
    "id": "api.command_channel_purpose.name",
    "translation": "purpose"
  },
  {
    "id": "api.command_channel_purpose.permission.app_error",
    "translation": "You don't have the appropriate permissions to edit the channel purpose."
  },
  {
    "id": "api.command_channel_purpose.update_channel.app_error",
    "translation": "Error to update the current channel."
  },
  {
    "id": "api.command_channel_rename.channel.app_error",
    "translation": "Error to retrieve the current channel."
  },
  {
    "id": "api.command_channel_rename.desc",
    "translation": "Rename the channel"
  },
  {
    "id": "api.command_channel_rename.direct_group.app_error",
    "translation": "Een direct kanaal kan niet verlaten worden"
  },
  {
    "id": "api.command_channel_rename.hint",
    "translation": "[text]"
  },
  {
    "id": "api.command_channel_rename.message.app_error",
    "translation": "Een bericht moet worden opgegeven met het /echo commando."
  },
  {
    "id": "api.command_channel_rename.name",
    "translation": "rename"
  },
  {
    "id": "api.command_channel_rename.permission.app_error",
    "translation": "You don't have the appropriate permissions to rename the channel."
  },
  {
    "id": "api.command_channel_rename.too_long.app_error",
    "translation": "Channel name must be {{.Length}} or fewer characters"
  },
  {
    "id": "api.command_channel_rename.too_short.app_error",
    "translation": "Channel name must be {{.Length}} or more characters"
  },
  {
    "id": "api.command_channel_rename.update_channel.app_error",
    "translation": "Error to update the current channel."
  },
  {
    "id": "api.command_code.desc",
    "translation": "Display text as a code block"
  },
  {
    "id": "api.command_code.hint",
    "translation": "[text]"
  },
  {
    "id": "api.command_code.message.app_error",
    "translation": "Een bericht moet worden opgegeven met het /echo commando."
  },
  {
    "id": "api.command_code.name",
    "translation": "code"
  },
  {
    "id": "api.command_collapse.desc",
    "translation": "Automatisch inklappen van afbeelding voorbeeldweergave aanzetten"
  },
  {
    "id": "api.command_collapse.name",
    "translation": "invouwen"
  },
  {
    "id": "api.command_collapse.success",
    "translation": "Afbeelding links klappen nu standaard in"
  },
  {
    "id": "api.command_dnd.desc",
    "translation": "Do not disturb disables desktop and mobile push notifications."
  },
  {
    "id": "api.command_dnd.disabled",
    "translation": "Do Not Disturb is disabled."
  },
  {
    "id": "api.command_dnd.error",
    "translation": "Error to retrieve the user status."
  },
  {
    "id": "api.command_dnd.name",
    "translation": "dnd"
  },
  {
    "id": "api.command_dnd.success",
    "translation": "Do Not Disturb is enabled. You will not receive desktop or mobile push notifications until Do Not Disturb is turned off."
  },
  {
    "id": "api.command_echo.delay.app_error",
    "translation": "Wachttijden moeten kleiner dan 10000 seconden zijn"
  },
  {
    "id": "api.command_echo.desc",
    "translation": "Stuurd de tekst van je account terug"
  },
  {
    "id": "api.command_echo.high_volume.app_error",
    "translation": "Teveel echo verzoeken, kan het verzoek niet verwerken"
  },
  {
    "id": "api.command_echo.hint",
    "translation": "'message' [vertraging in seconden]"
  },
  {
    "id": "api.command_echo.message.app_error",
    "translation": "Een bericht moet worden opgegeven met het /echo commando."
  },
  {
    "id": "api.command_echo.name",
    "translation": "echo"
  },
  {
    "id": "api.command_expand.desc",
    "translation": "Automatisch inklappen van afbeelding voorbeeldweergave uitzetten"
  },
  {
    "id": "api.command_expand.name",
    "translation": "uitvouwen"
  },
  {
    "id": "api.command_expand.success",
    "translation": "Afbeelding links klappen nu standaard uit"
  },
  {
    "id": "api.command_expand_collapse.fail.app_error",
    "translation": "Er is een fout opgetreden tijdens het vergroten van de voorbeelden"
  },
  {
    "id": "api.command_groupmsg.desc",
    "translation": "Sends a Group Message to the specified users"
  },
  {
    "id": "api.command_groupmsg.fail.app_error",
    "translation": "Er is een fout opgetreden tijdens het sturen van een bericht naar de gebruiker."
  },
  {
    "id": "api.command_groupmsg.group_fail.app_error",
    "translation": "Fout opgetreden bij het opstellen van privébericht."
  },
  {
    "id": "api.command_groupmsg.hint",
    "translation": "@[username1],@[username2] 'message'"
  },
  {
    "id": "api.command_groupmsg.invalid_user.app_error",
    "translation": {
      "one": "Unable to find the user: {{.Users}}",
      "other": "Unable to find the users: {{.Users}}"
    }
  },
  {
    "id": "api.command_groupmsg.max_users.app_error",
    "translation": "Group messages are limited to a maximum of {{.MaxUsers}} users."
  },
  {
    "id": "api.command_groupmsg.min_users.app_error",
    "translation": "Group messages are limited to a minimum of {{.MinUsers}} users."
  },
  {
    "id": "api.command_groupmsg.name",
    "translation": "bericht"
  },
  {
    "id": "api.command_groupmsg.permission.app_error",
    "translation": "You don't have the appropriate permissions to create a new group message."
  },
  {
    "id": "api.command_help.desc",
    "translation": "Open the Mattermost help page"
  },
  {
    "id": "api.command_help.name",
    "translation": "help"
  },
  {
    "id": "api.command_invite.channel.app_error",
    "translation": "Error to retrieve the current channel."
  },
  {
    "id": "api.command_invite.channel.error",
    "translation": "Could not find the channel {{.Channel}}. Please use the [channel handle](https://about.mattermost.com/default-channel-handle-documentation) to identify channels."
  },
  {
    "id": "api.command_invite.desc",
    "translation": "Invite a user to a channel"
  },
  {
    "id": "api.command_invite.directchannel.app_error",
    "translation": "You can't add someone to a direct message channel."
  },
  {
    "id": "api.command_invite.fail.app_error",
    "translation": "Er is een fout opgetreden tijdens het deelnemen aan het kanaal."
  },
  {
    "id": "api.command_invite.hint",
    "translation": "@[username] ~[channel]"
  },
  {
    "id": "api.command_invite.missing_message.app_error",
    "translation": "Missing Username and Channel."
  },
  {
    "id": "api.command_invite.missing_user.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "api.command_invite.name",
    "translation": "invite"
  },
  {
    "id": "api.command_invite.permission.app_error",
    "translation": "You don't have enough permissions to add {{.User}} in {{.Channel}}."
  },
  {
    "id": "api.command_invite.private_channel.app_error",
    "translation": "Could not find the channel {{.Channel}}. Please use the channel handle to identify channels."
  },
  {
    "id": "api.command_invite.success",
    "translation": "{{.User}} added to {{.Channel}} channel."
  },
  {
    "id": "api.command_invite.user_already_in_channel.app_error",
    "translation": "{{.User}} is already in the channel."
  },
  {
    "id": "api.command_invite_people.permission.app_error",
    "translation": "You don't have permission to invite new users to this server."
  },
  {
    "id": "api.command_join.desc",
    "translation": "Neem deel aan het open kanaal"
  },
  {
    "id": "api.command_join.fail.app_error",
    "translation": "Er is een fout opgetreden tijdens het deelnemen aan het kanaal."
  },
  {
    "id": "api.command_join.hint",
    "translation": "~[channel]"
  },
  {
    "id": "api.command_join.list.app_error",
    "translation": "Er is een fout opgetreden tijdens het ophalen van de kanalen."
  },
  {
    "id": "api.command_join.missing.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "api.command_join.name",
    "translation": "Deelnemen"
  },
  {
    "id": "api.command_kick.name",
    "translation": "kick"
  },
  {
    "id": "api.command_leave.desc",
    "translation": "Leave the current channel"
  },
  {
    "id": "api.command_leave.fail.app_error",
    "translation": "Er is een fout opgetreden tijdens het deelnemen aan het kanaal."
  },
  {
    "id": "api.command_leave.name",
    "translation": "leave"
  },
  {
    "id": "api.command_leave.success",
    "translation": "%v heeft het kanaal verlaten."
  },
  {
    "id": "api.command_logout.desc",
    "translation": "Uitloggen uit Mattermost"
  },
  {
    "id": "api.command_logout.fail_message",
    "translation": "Afmelden mislukt"
  },
  {
    "id": "api.command_logout.name",
    "translation": "uitloggen"
  },
  {
    "id": "api.command_me.desc",
    "translation": "Een actie uitvoeren"
  },
  {
    "id": "api.command_me.hint",
    "translation": "[bericht]"
  },
  {
    "id": "api.command_me.name",
    "translation": "ik"
  },
  {
    "id": "api.command_msg.desc",
    "translation": "Verstuur privébericht naar een gebruiker"
  },
  {
    "id": "api.command_msg.dm_fail.app_error",
    "translation": "Fout opgetreden bij het opstellen van privébericht."
  },
  {
    "id": "api.command_msg.fail.app_error",
    "translation": "Er is een fout opgetreden tijdens het sturen van een bericht naar de gebruiker."
  },
  {
    "id": "api.command_msg.hint",
    "translation": "@[username] 'bericht'"
  },
  {
    "id": "api.command_msg.missing.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "api.command_msg.name",
    "translation": "bericht"
  },
  {
    "id": "api.command_msg.permission.app_error",
    "translation": "You don't have the appropriate permissions to direct message this user."
  },
  {
    "id": "api.command_mute.desc",
    "translation": "Turns off desktop, email and push notifications for the current channel or the [channel] specified."
  },
  {
    "id": "api.command_mute.error",
    "translation": "Could not find the channel {{.Channel}}. Please use the [channel handle](https://about.mattermost.com/default-channel-handle-documentation) to identify channels."
  },
  {
    "id": "api.command_mute.hint",
    "translation": "~[channel]"
  },
  {
    "id": "api.command_mute.name",
    "translation": "mute"
  },
  {
    "id": "api.command_mute.no_channel.error",
    "translation": "Could not find the specified channel. Please use the [channel handle](https://about.mattermost.com/default-channel-handle-documentation) to identify channels."
  },
  {
    "id": "api.command_mute.not_member.error",
    "translation": "Could not mute channel {{.Channel}} as you are not a member."
  },
  {
    "id": "api.command_mute.success_mute",
    "translation": "You will not receive notifications for {{.Channel}} until channel mute is turned off."
  },
  {
    "id": "api.command_mute.success_mute_direct_msg",
    "translation": "You will not receive notifications for this channel until channel mute is turned off."
  },
  {
    "id": "api.command_mute.success_unmute",
    "translation": "{{.Channel}} is no longer muted."
  },
  {
    "id": "api.command_mute.success_unmute_direct_msg",
    "translation": "This channel is no longer muted."
  },
  {
    "id": "api.command_offline.desc",
    "translation": "Stel uw status in naar offline"
  },
  {
    "id": "api.command_offline.name",
    "translation": "offline"
  },
  {
    "id": "api.command_offline.success",
    "translation": "U bent nu offline"
  },
  {
    "id": "api.command_online.desc",
    "translation": "Stel uw status in naar Online."
  },
  {
    "id": "api.command_online.name",
    "translation": "online"
  },
  {
    "id": "api.command_online.success",
    "translation": "Je bent nu online"
  },
  {
    "id": "api.command_open.name",
    "translation": "open"
  },
  {
    "id": "api.command_remove.desc",
    "translation": "Remove a member from the channel"
  },
  {
    "id": "api.command_remove.direct_group.app_error",
    "translation": "You can't remove someone from a direct message channel."
  },
  {
    "id": "api.command_remove.hint",
    "translation": "@[username]"
  },
  {
    "id": "api.command_remove.message.app_error",
    "translation": "Een bericht moet worden opgegeven met het /echo commando."
  },
  {
    "id": "api.command_remove.missing.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "api.command_remove.name",
    "translation": "remove"
  },
  {
    "id": "api.command_remove.permission.app_error",
    "translation": "You don't have the appropriate permissions to remove the member."
  },
  {
    "id": "api.command_remove.user_not_in_channel",
    "translation": "{{.Username}} is not a member of this channel."
  },
  {
    "id": "api.command_search.desc",
    "translation": "Search text in messages"
  },
  {
    "id": "api.command_search.hint",
    "translation": "[text]"
  },
  {
    "id": "api.command_search.name",
    "translation": "search"
  },
  {
    "id": "api.command_search.unsupported.app_error",
    "translation": "The search command is not supported on your device"
  },
  {
    "id": "api.command_settings.desc",
    "translation": "Open the Account Settings dialog"
  },
  {
    "id": "api.command_settings.name",
    "translation": "settings"
  },
  {
    "id": "api.command_settings.unsupported.app_error",
    "translation": "The settings command is not supported on your device"
  },
  {
    "id": "api.command_shortcuts.desc",
    "translation": "Toon een lijst met snelkoppelingen"
  },
  {
    "id": "api.command_shortcuts.name",
    "translation": "Snelkoppelingen"
  },
  {
    "id": "api.command_shortcuts.unsupported.app_error",
    "translation": "The shortcuts command is not supported on your device"
  },
  {
    "id": "api.command_shrug.desc",
    "translation": "Voeg ¯\\_(ツ)_/¯ toe aan het bericht"
  },
  {
    "id": "api.command_shrug.hint",
    "translation": "[bericht]"
  },
  {
    "id": "api.command_shrug.name",
    "translation": "ophalen"
  },
  {
    "id": "api.config.client.old_format.app_error",
    "translation": "New format for the client configuration is not supported yet. Please specify format=old in the query string."
  },
  {
    "id": "api.context.404.app_error",
    "translation": "Sorry, we kunnen de pagina niet vinden."
  },
  {
    "id": "api.context.invalid_body_param.app_error",
    "translation": "Invalid or missing {{.Name}} in request body"
  },
  {
    "id": "api.context.invalid_param.app_error",
    "translation": "Ongeldig {{.Name}} parameter"
  },
  {
    "id": "api.context.invalid_token.error",
    "translation": "Invalid session token={{.Token}}, err={{.Error}}"
  },
  {
    "id": "api.context.invalid_url_param.app_error",
    "translation": "Invalid or missing {{.Name}} parameter in request URL"
  },
  {
    "id": "api.context.mfa_required.app_error",
    "translation": "Multi-factor authentication is required on this server."
  },
  {
    "id": "api.context.permissions.app_error",
    "translation": "U beschikt niet over juiste de rechten"
  },
  {
    "id": "api.context.session_expired.app_error",
    "translation": "Ongeldige of verlopen sessie. Graag opnieuw inloggen."
  },
  {
    "id": "api.context.token_provided.app_error",
    "translation": "Sessie is niet OAuth, maar token was doorgegeven in de query string"
  },
  {
    "id": "api.email_batching.add_notification_email_to_batch.channel_full.app_error",
    "translation": "Kanaal voor e-mail batch taken was vol. Verhoog a.u.b. de EmailBatchingBufferSize"
  },
  {
    "id": "api.email_batching.add_notification_email_to_batch.disabled.app_error",
    "translation": "Bulk emails zijn uitgeschakeld door de systeembeheerder"
  },
  {
    "id": "api.email_batching.render_batched_post.date",
    "translation": "{{.Hour}}:{{.Minute}} {{.Timezone}}, {{.Month}} {{.Day}}"
  },
  {
    "id": "api.email_batching.render_batched_post.direct_message",
    "translation": "Direct Message from "
  },
  {
    "id": "api.email_batching.render_batched_post.go_to_post",
    "translation": "Ga naar Bericht"
  },
  {
    "id": "api.email_batching.render_batched_post.group_message",
    "translation": "Group Message from "
  },
  {
    "id": "api.email_batching.render_batched_post.notification",
    "translation": "Notification from "
  },
  {
    "id": "api.email_batching.send_batched_email_notification.body_text",
    "translation": {
      "one": "You have a new notification.",
      "other": "You have {{.Count}} new notifications."
    }
  },
  {
    "id": "api.email_batching.send_batched_email_notification.subject",
    "translation": {
      "one": "[{{.SiteName}}] Nieuwe Notificatie voor {{.Month}} {{.Day}}, {{.Year}}",
      "other": "[{{.SiteName}}] Nieuwe Notificaties voor {{.Month}} {{.Day}}, {{.Year}}"
    }
  },
  {
    "id": "api.emoji.create.duplicate.app_error",
    "translation": "Kan emoji niet aanmaken. Er bestaat al een emoji met dezelfde naam."
  },
  {
    "id": "api.emoji.create.other_user.app_error",
    "translation": "Ongeldige gebruikers id"
  },
  {
    "id": "api.emoji.create.parse.app_error",
    "translation": "Kan emoji niet aanmaken. Fout tijdens het uitlezen van verzoek."
  },
  {
    "id": "api.emoji.create.too_large.app_error",
    "translation": "Kon emoji niet aanmaken. Afbeelding moet minstens 1MB groot zijn."
  },
  {
    "id": "api.emoji.disabled.app_error",
    "translation": "Aangepaste emoji zijn uitgeschakeld door de beheerder."
  },
  {
    "id": "api.emoji.get_image.decode.app_error",
    "translation": "Kon plaatje niet omzetten voor emoji."
  },
  {
    "id": "api.emoji.get_image.read.app_error",
    "translation": "Kon plaatje niet lezen voor emoji"
  },
  {
    "id": "api.emoji.storage.app_error",
    "translation": "Bestand opslag is niet goed geconfigureerd. Configureer S3 of lokale bestandsopslag."
  },
  {
    "id": "api.emoji.upload.image.app_error",
    "translation": "Kon emoticon niet aanmaken. Bestand moet een PNG, JPEG of GIF zijn."
  },
  {
    "id": "api.emoji.upload.large_image.decode_error",
    "translation": "Unable to create emoji. An error occurred when trying to decode the image."
  },
  {
    "id": "api.emoji.upload.large_image.encode_error",
    "translation": "Unable to create emoji. An error occurred when trying to encode the image."
  },
  {
    "id": "api.emoji.upload.large_image.gif_decode_error",
    "translation": "Unable to create emoji. An error occurred when trying to decode the GIF image."
  },
  {
    "id": "api.emoji.upload.large_image.gif_encode_error",
    "translation": "Unable to create emoji. An error occurred when trying to encode the GIF image."
  },
  {
    "id": "api.emoji.upload.large_image.too_large.app_error",
    "translation": "Unable to create emoji. Image must be smaller than {{.MaxWidth}} by {{.MaxHeight}}."
  },
  {
    "id": "api.emoji.upload.open.app_error",
    "translation": "Unable to create the emoji. An error ocurred when trying to open the attached image."
  },
  {
    "id": "api.file.attachments.disabled.app_error",
    "translation": "File attachments have been disabled on this server."
  },
  {
    "id": "api.file.file_exists.exists_local.app_error",
    "translation": "Unable to check if the file exists."
  },
  {
    "id": "api.file.file_exists.s3.app_error",
    "translation": "Unable to check if the file exists."
  },
  {
    "id": "api.file.get_file.public_invalid.app_error",
    "translation": "De publieke link lijkt niet geldig"
  },
  {
    "id": "api.file.get_file_preview.no_preview.app_error",
    "translation": "Bestand heeft geen voorvertoning afbeelding"
  },
  {
    "id": "api.file.get_file_thumbnail.no_thumbnail.app_error",
    "translation": "Bestand heeft geen miniatuur afbeelding"
  },
  {
    "id": "api.file.get_public_link.disabled.app_error",
    "translation": "Publieke links zijn uitgeschakeld"
  },
  {
    "id": "api.file.get_public_link.no_post.app_error",
    "translation": "Kon publieke link voor bestand niet ophalen. Bestand moet bijgevoegd zijn aan een bericht dat kan worden gelezen door de huidige gebruiker. "
  },
  {
    "id": "api.file.move_file.copy_within_s3.app_error",
    "translation": "Unable to copy file within S3."
  },
  {
    "id": "api.file.move_file.delete_from_s3.app_error",
    "translation": "Kan bestand niet verwijderen van S3."
  },
  {
    "id": "api.file.move_file.rename.app_error",
    "translation": "Kan lokaal bestand niet verplaatsen."
  },
  {
    "id": "api.file.no_driver.app_error",
    "translation": "No file driver selected."
  },
  {
    "id": "api.file.read_file.reading_local.app_error",
    "translation": "Er is een fout opgetreden bij het lezen van een bestand uit lokale opslag"
  },
  {
    "id": "api.file.read_file.s3.app_error",
    "translation": "Er is een fout opgetreden bij het lezen van een bestand uit lokale opslag"
  },
  {
    "id": "api.file.reader.reading_local.app_error",
    "translation": "Er is een fout opgetreden bij het lezen van een bestand uit lokale opslag"
  },
  {
    "id": "api.file.reader.s3.app_error",
    "translation": "Er is een fout opgetreden bij het lezen van een bestand uit lokale opslag"
  },
  {
    "id": "api.file.test_connection.local.connection.app_error",
    "translation": "Don't have permissions to write to local path specified or other error."
  },
  {
    "id": "api.file.test_connection.s3.bucked_create.app_error",
    "translation": "Unable to create bucket."
  },
  {
    "id": "api.file.test_connection.s3.bucket_exists.app_error",
    "translation": "Error checking if bucket exists."
  },
  {
    "id": "api.file.test_connection.s3.connection.app_error",
    "translation": "Bad connection to S3 or minio."
  },
  {
    "id": "api.file.upload_file.bad_parse.app_error",
    "translation": "Unable to upload file. Header cannot be parsed."
  },
  {
    "id": "api.file.upload_file.incorrect_number_of_files.app_error",
    "translation": "Unable to upload files. Incorrect number of files specified."
  },
  {
    "id": "api.file.upload_file.large_image.app_error",
    "translation": "File above maximum dimensions could not be uploaded: {{.Filename}}"
  },
  {
    "id": "api.file.upload_file.storage.app_error",
    "translation": "Kan bestand niet uploaden. Afbeeldings opslag is niet geconfigureerd."
  },
  {
    "id": "api.file.upload_file.too_large.app_error",
    "translation": "Kan bestand niet uploaden. Bestand is te groot."
  },
  {
    "id": "api.file.write_file.s3.app_error",
    "translation": "Er is een probleem opgetreden tijdens het schrijven naar S3"
  },
  {
    "id": "api.file.write_file_locally.create_dir.app_error",
    "translation": "Er is een probleem opgetreden tijdens het aanmaken van een directory voor een nieuw bestand"
  },
  {
    "id": "api.file.write_file_locally.writing.app_error",
    "translation": "Er is een probleem opgetreden tijdens het schrijven naar lokale opslag"
  },
  {
    "id": "api.incoming_webhook.disabled.app_error",
    "translation": "Commando's zijn uitgeschakeld door de beheerder."
  },
  {
    "id": "api.incoming_webhook.invalid_username.app_error",
    "translation": "Ongeldige gebruikersnaam"
  },
  {
    "id": "api.license.add_license.array.app_error",
    "translation": "Lege data bij 'license' in aanvraag"
  },
  {
    "id": "api.license.add_license.expired.app_error",
    "translation": "Licentie is nog niet geldig, of is verlopen."
  },
  {
    "id": "api.license.add_license.invalid.app_error",
    "translation": "Ongeldig licentie bestand."
  },
  {
    "id": "api.license.add_license.invalid_count.app_error",
    "translation": "Kan het aantal unieke gebruikers niet tellen."
  },
  {
    "id": "api.license.add_license.no_file.app_error",
    "translation": "Geen bestand bij 'license' in aanvraag"
  },
  {
    "id": "api.license.add_license.open.app_error",
    "translation": "Kan licentie bestand niet openen"
  },
  {
    "id": "api.license.add_license.save.app_error",
    "translation": "Licentie kan niet goed worden opgeslagen."
  },
  {
    "id": "api.license.add_license.save_active.app_error",
    "translation": "Actieve licentie ID is niet goed opgeslagen."
  },
  {
    "id": "api.license.add_license.unique_users.app_error",
    "translation": "De licentie ondersteund {{.Users}} gebruikers, wanneer het systeem {{.Count}} unieke gebruikers heeft. Unieke gebruikers worden geteld op basis het e-mail adress. Het totaal aantal gebruikers is te zien bij 'Server Overzichten' -> 'Bekijk statistieken'."
  },
  {
    "id": "api.license.client.old_format.app_error",
    "translation": "New format for the client license is not supported yet. Please specify format=old in the query string."
  },
  {
    "id": "api.oauth.allow_oauth.redirect_callback.app_error",
    "translation": "ongeldige aanvraag: De opgegeven redirect_uri komt niet overeen met de geregistreerde callback_url"
  },
  {
    "id": "api.oauth.allow_oauth.turn_off.app_error",
    "translation": "De systeembeheerder heeft de OAuth2 Service Provider uitgeschakeld."
  },
  {
    "id": "api.oauth.authorize_oauth.disabled.app_error",
    "translation": "De systeembeheerder heeft de OAuth2 Service Provider uitgeschakeld."
  },
  {
    "id": "api.oauth.get_access_token.bad_client_id.app_error",
    "translation": "ongeldige aanvraag: Verkeerd client_id"
  },
  {
    "id": "api.oauth.get_access_token.bad_client_secret.app_error",
    "translation": "ongeldige aanvraag (invalid_request): Mist client_secret"
  },
  {
    "id": "api.oauth.get_access_token.bad_grant.app_error",
    "translation": "ongeldige aanvraag: Verkeerd grant_type"
  },
  {
    "id": "api.oauth.get_access_token.credentials.app_error",
    "translation": "Ongeldige client (invalid_client): Ongeldige client credentials"
  },
  {
    "id": "api.oauth.get_access_token.disabled.app_error",
    "translation": "De systeembeheerder heeft de OAuth2 Service Provider uitgeschakeld."
  },
  {
    "id": "api.oauth.get_access_token.expired_code.app_error",
    "translation": "(invalid_grant): Ongeldig of verlopen authorisatie code"
  },
  {
    "id": "api.oauth.get_access_token.internal.app_error",
    "translation": "Server fout (server_error): Er een interne server fout opgetreden tijdens het benaderen van de database"
  },
  {
    "id": "api.oauth.get_access_token.internal_saving.app_error",
    "translation": "Server fout (server_error): Er is een interne server fout opgetreden tijdens het opslaan van het toegangs-token in de database"
  },
  {
    "id": "api.oauth.get_access_token.internal_session.app_error",
    "translation": "Server fout (server_error): Er is een interne server fout opgetreden tijdens het opslaan van de sessie in de database"
  },
  {
    "id": "api.oauth.get_access_token.internal_user.app_error",
    "translation": "Server fout (server_error): Er is een interne server fout opgetreden tijdens het ophalen van de gebruiker uit de database"
  },
  {
    "id": "api.oauth.get_access_token.missing_code.app_error",
    "translation": "Ongeldige aanvraag (invalid_request): Ontbrekende code"
  },
  {
    "id": "api.oauth.get_access_token.missing_refresh_token.app_error",
    "translation": "Ongeldige aanvraag (invalid_request): Ontbrekende refresh_token"
  },
  {
    "id": "api.oauth.get_access_token.redirect_uri.app_error",
    "translation": "Ongeldige aanvraag (invalid_request): De gegeven redirect_uri komt niet overeen met de autorisatie code redirect_uri"
  },
  {
    "id": "api.oauth.get_access_token.refresh_token.app_error",
    "translation": "invalid_grant: Verkeerd refresh token"
  },
  {
    "id": "api.oauth.invalid_state_token.app_error",
    "translation": "Invalid state token"
  },
  {
    "id": "api.oauth.register_oauth_app.turn_off.app_error",
    "translation": "De systeembeheerder heeft de OAuth2 Service Provider uitgeschakeld."
  },
  {
    "id": "api.oauth.revoke_access_token.del_session.app_error",
    "translation": "Er is een fout opgetreden tijdens het verwijderen van de sessie uit de database"
  },
  {
    "id": "api.oauth.revoke_access_token.del_token.app_error",
    "translation": "Er is een fout opgetreden tijdens het verwijderen van het access token uit de database"
  },
  {
    "id": "api.oauth.revoke_access_token.get.app_error",
    "translation": "Er is een fout opgetreden tijdens het ophalen van het access token uit de database, voor het verwijderen"
  },
  {
    "id": "api.oauth.singup_with_oauth.disabled.app_error",
    "translation": "Gebruikers registratie is uitgeschakeld."
  },
  {
    "id": "api.oauth.singup_with_oauth.expired_link.app_error",
    "translation": "De aanmeld link is verlopen"
  },
  {
    "id": "api.oauth.singup_with_oauth.invalid_link.app_error",
    "translation": "De aanmeld link is niet geldig"
  },
  {
    "id": "api.outgoing_webhook.disabled.app_error",
    "translation": "Uitgaande webhooks zijn uitgeschakeld door de beheerder."
  },
  {
    "id": "api.plugin.upload.array.app_error",
    "translation": "File array is empty in multipart/form request"
  },
  {
    "id": "api.plugin.upload.file.app_error",
    "translation": "Unable to open file in multipart/form request"
  },
  {
    "id": "api.plugin.upload.no_file.app_error",
    "translation": "Missing file in multipart/form request"
  },
  {
    "id": "api.post.check_for_out_of_channel_mentions.message.multiple",
    "translation": "{{.Usernames}} en {{.LastUsername}} zijn genoemd, maar ze hebben geen notificatie gekregen, omdat ze niet deelnemen aan dit kanaal."
  },
  {
    "id": "api.post.check_for_out_of_channel_mentions.message.one",
    "translation": "{{.Username}} zijn genoemd, maar ze hebben geen notificatie gekregen, omdat ze niet deelnemen aan dit kanaal."
  },
  {
    "id": "api.post.create_post.can_not_post_to_deleted.error",
    "translation": "Kan niet plaatsen in verwijdert kanaal."
  },
  {
    "id": "api.post.create_post.channel_root_id.app_error",
    "translation": "Ongeldig ChannelId voor RootId parameter"
  },
  {
    "id": "api.post.create_post.parent_id.app_error",
    "translation": "Ongeldig ParentId parameter"
  },
  {
    "id": "api.post.create_post.root_id.app_error",
    "translation": "Ogeldig RootId parameter"
  },
  {
    "id": "api.post.create_post.town_square_read_only",
    "translation": "This channel is read-only. Only members with permission can post here."
  },
  {
    "id": "api.post.create_webhook_post.creating.app_error",
    "translation": "Fout bij het aanmaken van bericht"
  },
  {
    "id": "api.post.disabled_all",
    "translation": "@all has been disabled because the channel has more than {{.Users}} users."
  },
  {
    "id": "api.post.disabled_channel",
    "translation": "@channel has been disabled because the channel has more than {{.Users}} users."
  },
  {
    "id": "api.post.disabled_here",
    "translation": "@here has been disabled because the channel has more than {{.Users}} users."
  },
  {
    "id": "api.post.do_action.action_id.app_error",
    "translation": "Ongeldig client id "
  },
  {
    "id": "api.post.do_action.action_integration.app_error",
    "translation": "Action integration error"
  },
  {
    "id": "api.post.get_message_for_notification.files_sent",
    "translation": {
      "one": "{{.Count}} bestand verzonden: {{.Filenames}}",
      "other": "{{.Count}} bestanden verzonden: {{.Filenames}}"
    }
  },
  {
    "id": "api.post.get_message_for_notification.images_sent",
    "translation": {
      "one": "{{.Count}} afbeelding verzonden: {{.Filenames}}",
      "other": "{{.Count}} afbeeldingen verzonden: {{.Filenames}}"
    }
  },
  {
    "id": "api.post.link_preview_disabled.app_error",
    "translation": "Publieke links zijn uitgeschakeld door de systeembeheerder"
  },
  {
    "id": "api.post.send_notification_and_forget.push_channel_mention",
    "translation": " notified the channel."
  },
  {
    "id": "api.post.send_notification_and_forget.push_comment_on_post",
    "translation": " commented on your post."
  },
  {
    "id": "api.post.send_notification_and_forget.push_comment_on_thread",
    "translation": " commented on a thread you participated in."
  },
  {
    "id": "api.post.send_notifications_and_forget.push_explicit_mention",
    "translation": " vermeld u in "
  },
  {
    "id": "api.post.send_notifications_and_forget.push_general_message",
    "translation": " posted a message."
  },
  {
    "id": "api.post.send_notifications_and_forget.push_image_only",
    "translation": " attached a file."
  },
  {
    "id": "api.post.send_notifications_and_forget.push_message",
    "translation": "sent you a message."
  },
  {
    "id": "api.post.update_post.find.app_error",
    "translation": "We kunnen geen bestaand bericht of commentaar vinden om bij te werken."
  },
  {
    "id": "api.post.update_post.permissions_details.app_error",
    "translation": "Is reeds verwijderd id={{.PostId}}"
  },
  {
    "id": "api.post.update_post.permissions_time_limit.app_error",
    "translation": "Post edit is only allowed for {{.timeLimit}} seconds. Please ask your systems administrator for details."
  },
  {
    "id": "api.post.update_post.system_message.app_error",
    "translation": "Het bijwerken van het systeem bericht is mislukt"
  },
  {
    "id": "api.post_get_post_by_id.get.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "api.preference.delete_preferences.delete.app_error",
    "translation": "Unable to delete user preferences."
  },
  {
    "id": "api.preference.preferences_category.get.app_error",
    "translation": "Unable to get user preferences."
  },
  {
    "id": "api.preference.update_preferences.set.app_error",
    "translation": "Unable to set user preferences."
  },
  {
    "id": "api.reaction.delete.archived_channel.app_error",
    "translation": "You cannot remove a reaction in an archived channel."
  },
  {
    "id": "api.reaction.save.archived_channel.app_error",
    "translation": "You cannot react in an archived channel."
  },
  {
    "id": "api.reaction.save_reaction.invalid.app_error",
    "translation": "Reaction is not valid."
  },
  {
    "id": "api.reaction.save_reaction.user_id.app_error",
    "translation": "You cannot save reaction for the other user."
  },
  {
    "id": "api.reaction.town_square_read_only",
    "translation": "Reacting to posts is not possible in read-only channels."
  },
  {
    "id": "api.roles.patch_roles.license.error",
    "translation": "Your license does not support advanced permissions."
  },
  {
    "id": "api.scheme.create_scheme.license.error",
    "translation": "Your license does not support creating permissions schemes."
  },
  {
    "id": "api.scheme.delete_scheme.license.error",
    "translation": "Your license not support delete permissions schemes"
  },
  {
    "id": "api.scheme.get_channels_for_scheme.scope.error",
    "translation": "Unable to get the channels for scheme because the supplied scheme is not a channel scheme."
  },
  {
    "id": "api.scheme.get_teams_for_scheme.scope.error",
    "translation": "Unable to get the teams for scheme because the supplied scheme is not a team scheme."
  },
  {
    "id": "api.scheme.patch_scheme.license.error",
    "translation": "Your license does not support update permissions schemes"
  },
  {
    "id": "api.server.start_server.forward80to443.disabled_while_using_lets_encrypt",
    "translation": "Must enable Forward80To443 when using LetsEncrypt"
  },
  {
    "id": "api.server.start_server.forward80to443.enabled_but_listening_on_wrong_port",
    "translation": "Unable to forward port 80 to port 443 while listening on port %s: disable Forward80To443 if using a proxy server"
  },
  {
    "id": "api.server.start_server.rate_limiting_memory_store",
    "translation": "Kon de geheugenopslag limitatie niet laden. Controleer uw MemoryStoreSize configuratie instellingen. "
  },
  {
    "id": "api.server.start_server.rate_limiting_rate_limiter",
    "translation": "Kan de snelheidsregeling niet laden"
  },
  {
    "id": "api.server.start_server.starting.critical",
    "translation": "Fout bij het starten van de server, fout:%v"
  },
  {
    "id": "api.slackimport.slack_add_bot_user.email_pwd",
    "translation": "The Integration/Slack Bot user with email {{.Email}} and password {{.Password}} has been imported.\r\n"
  },
  {
    "id": "api.slackimport.slack_add_bot_user.unable_import",
    "translation": "Unable to import the Integration/Slack Bot user {{.Username}}.\r\n"
  },
  {
    "id": "api.slackimport.slack_add_channels.added",
    "translation": "\r\n Kanalen Toegevoegd \r\n"
  },
  {
    "id": "api.slackimport.slack_add_channels.failed_to_add_user",
    "translation": "Unable to add Slack user {{.Username}} to channel.\r\n"
  },
  {
    "id": "api.slackimport.slack_add_channels.import_failed",
    "translation": "Unable to import Slack channel {{.DisplayName}}.\r\n"
  },
  {
    "id": "api.slackimport.slack_add_channels.merge",
    "translation": "The Slack channel {{.DisplayName}} already exists as an active Mattermost channel. Both channels have been merged.\r\n"
  },
  {
    "id": "api.slackimport.slack_add_users.created",
    "translation": "\r\n Gebruikers aangemaakt\r\n"
  },
  {
    "id": "api.slackimport.slack_add_users.email_pwd",
    "translation": "Slack user with email {{.Email}} and password {{.Password}} has been imported.\r\n"
  },
  {
    "id": "api.slackimport.slack_add_users.merge_existing",
    "translation": "Slack user merged with an existing Mattermost user with matching email {{.Email}} and username {{.Username}}.\r\n"
  },
  {
    "id": "api.slackimport.slack_add_users.merge_existing_failed",
    "translation": "Slack user merged with an existing Mattermost user with matching email {{.Email}} and username {{.Username}}, but was unable to add the user to their team.\r\n"
  },
  {
    "id": "api.slackimport.slack_add_users.missing_email_address",
    "translation": "User {{.Username}} does not have an email address in the Slack export. Used {{.Email}} as a placeholder. The user should update their email address once logged in to the system.\r\n"
  },
  {
    "id": "api.slackimport.slack_add_users.unable_import",
    "translation": "Kan gebruiker niet importeren: {{.Username}}\r\n"
  },
  {
    "id": "api.slackimport.slack_import.log",
    "translation": "Mattermost Slack importeer log\r\n"
  },
  {
    "id": "api.slackimport.slack_import.note1",
    "translation": "- Sommige berichten zijn niet geimporteerd, omdat ze niet ondersteund worden.\r\n"
  },
  {
    "id": "api.slackimport.slack_import.note2",
    "translation": "- Slack bot berichten worden op dit moment niet ondersteund.\r\n"
  },
  {
    "id": "api.slackimport.slack_import.note3",
    "translation": "- Additional errors may be found in the server logs.\r\n"
  },
  {
    "id": "api.slackimport.slack_import.notes",
    "translation": "\r\n Notities \r\n"
  },
  {
    "id": "api.slackimport.slack_import.open.app_error",
    "translation": "Unable to open the file: {{.Filename}}.\r\n"
  },
  {
    "id": "api.slackimport.slack_import.team_fail",
    "translation": "Fout bij het ophalen van het team waarin de import gedaan moet worden.\r\n"
  },
  {
    "id": "api.slackimport.slack_import.zip.app_error",
    "translation": "Unable to open the Slack export zip file.\r\n"
  },
  {
    "id": "api.status.user_not_found.app_error",
    "translation": "User not found"
  },
  {
    "id": "api.team.add_user_to_team.added",
    "translation": "%v is door %v aan het kanaal toegevoegd"
  },
  {
    "id": "api.team.add_user_to_team.missing_parameter.app_error",
    "translation": "Parameter required to add user to team."
  },
  {
    "id": "api.team.get_invite_info.not_open_team",
    "translation": "De uitnodiging is ongeldig, omdat dit geen open team is."
  },
  {
    "id": "api.team.get_team_icon.filesettings_no_driver.app_error",
    "translation": "Ongeldige stuurprogramma voor bestand instellingen. Deze moet 'lokaal' of 'amazons3' zijn"
  },
  {
    "id": "api.team.get_team_icon.read_file.app_error",
    "translation": "Unable to read the team icon file."
  },
  {
    "id": "api.team.import_team.array.app_error",
    "translation": "Lege data bij 'licentie' in aanvraag"
  },
  {
    "id": "api.team.import_team.integer.app_error",
    "translation": "Bestandsgroote is niet numeriek"
  },
  {
    "id": "api.team.import_team.no_file.app_error",
    "translation": "Geen bestand bij 'licentie' in aanvraag"
  },
  {
    "id": "api.team.import_team.no_import_from.app_error",
    "translation": "Malformed request: importFrom field is not present."
  },
  {
    "id": "api.team.import_team.open.app_error",
    "translation": "Kan het bestand niet openen"
  },
  {
    "id": "api.team.import_team.parse.app_error",
    "translation": "Kan het 'multipart form' niet verwerken"
  },
  {
    "id": "api.team.import_team.unavailable.app_error",
    "translation": "Malformed request: filesize field is not present."
  },
  {
    "id": "api.team.invite_members.disabled.app_error",
    "translation": "Email invitations are disabled."
  },
  {
    "id": "api.team.invite_members.invalid_email.app_error",
    "translation": "The following email addresses do not belong to an accepted domain: {{.Addresses}}. Please contact your System Administrator for details."
  },
  {
    "id": "api.team.invite_members.member",
    "translation": "lid"
  },
  {
    "id": "api.team.invite_members.no_one.app_error",
    "translation": "Niemand om uit te nodigen."
  },
  {
    "id": "api.team.is_team_creation_allowed.disabled.app_error",
    "translation": "Teams aanmaken is uitgeschakeld. Neem contact op met systeem beheerder voor details."
  },
  {
    "id": "api.team.is_team_creation_allowed.domain.app_error",
    "translation": "Email moet uit bepaalde domeinen komen (bijv. @voorbeeld.nl). Neem contact op met de systeem beheerder voor meer details."
  },
  {
    "id": "api.team.join_team.post_and_forget",
    "translation": "%v joined the team."
  },
  {
    "id": "api.team.join_user_to_team.allowed_domains.app_error",
    "translation": "Email moet uit bepaalde domeinen komen (bijv. @voorbeeld.nl). Neem contact op met de systeem beheerder voor meer details."
  },
  {
    "id": "api.team.leave.left",
    "translation": "%v left the team."
  },
  {
    "id": "api.team.move_channel.post.error",
    "translation": "Plaatsen van bericht over binnenkomen/verlaten %v is mislukt"
  },
  {
    "id": "api.team.move_channel.success",
    "translation": "This channel has been moved to this team from %v."
  },
  {
    "id": "api.team.remove_team_icon.get_team.app_error",
    "translation": "An error occurred getting the team"
  },
  {
    "id": "api.team.remove_user_from_team.missing.app_error",
    "translation": "De gebruiker is geen onderdeel van dit team"
  },
  {
    "id": "api.team.remove_user_from_team.removed",
    "translation": "%v was verwijdert van het kanaal."
  },
  {
    "id": "api.team.set_team_icon.array.app_error",
    "translation": "Lege array bij 'image' in aanvraag"
  },
  {
    "id": "api.team.set_team_icon.decode.app_error",
    "translation": "Could not decode team icon"
  },
  {
    "id": "api.team.set_team_icon.decode_config.app_error",
    "translation": "Could not decode team icon metadata"
  },
  {
    "id": "api.team.set_team_icon.encode.app_error",
    "translation": "Could not encode team icon"
  },
  {
    "id": "api.team.set_team_icon.get_team.app_error",
    "translation": "An error occurred getting the team"
  },
  {
    "id": "api.team.set_team_icon.no_file.app_error",
    "translation": "Geen bestand bij 'image' in aanvraag"
  },
  {
    "id": "api.team.set_team_icon.open.app_error",
    "translation": "Kan licentie bestand niet openen"
  },
  {
    "id": "api.team.set_team_icon.parse.app_error",
    "translation": "Kan het 'multipart'-formulier niet verwerken"
  },
  {
    "id": "api.team.set_team_icon.storage.app_error",
    "translation": "Kan bestand niet uploaden. Afbeeldings opslag is niet geconfigureerd."
  },
  {
    "id": "api.team.set_team_icon.too_large.app_error",
    "translation": "Kan bestand niet uploaden. Bestand is te groot."
  },
  {
    "id": "api.team.set_team_icon.write_file.app_error",
    "translation": "Could not save team icon"
  },
  {
    "id": "api.team.team_icon.update.app_error",
    "translation": "An error occurred updating the team icon"
  },
  {
    "id": "api.team.update_member_roles.not_a_member",
    "translation": "Specified user is not a member of specified team."
  },
  {
    "id": "api.team.update_restricted_domains.mismatch.app_error",
    "translation": "Restricting team to {{ .Domain }} is not allowed by the system config. Please contact your system administrator."
  },
  {
    "id": "api.team.update_team_scheme.license.error",
    "translation": "Your license does not support updating a team's scheme"
  },
  {
    "id": "api.team.update_team_scheme.scheme_scope.error",
    "translation": "Unable to set the scheme to the team because the supplied scheme is not a team scheme."
  },
  {
    "id": "api.templates.deactivate_body.info",
    "translation": "You deactivated your account on {{ .SiteURL }}."
  },
  {
    "id": "api.templates.deactivate_body.title",
    "translation": "Your account has been deactivated at {{ .ServerURL }}"
  },
  {
    "id": "api.templates.deactivate_body.warning",
    "translation": "If this change was not initiated by you or you want to reactivate your account, contact your system administrator."
  },
  {
    "id": "api.templates.deactivate_subject",
    "translation": "[{{ .SiteName }}] Your account at {{ .ServerURL }} has been deactivated"
  },
  {
    "id": "api.templates.email_change_body.info",
    "translation": "Your email address for {{.TeamDisplayName}} has been changed to {{.NewEmail}}."
  },
  {
    "id": "api.templates.email_change_body.title",
    "translation": "Je hebt je e-mailadres bijgewerkt"
  },
  {
    "id": "api.templates.email_change_subject",
    "translation": "[{{ .SiteName }}] Your email address has changed"
  },
  {
    "id": "api.templates.email_change_verify_body.button",
    "translation": "Verifieer E-mail"
  },
  {
    "id": "api.templates.email_change_verify_body.info",
    "translation": "Om de aanpassing van het e-mail adres voor {{.TeamDisplayName}} af te ronden, klik op onderstaande link ter bevestiging."
  },
  {
    "id": "api.templates.email_change_verify_body.title",
    "translation": "Je hebt je e-mailadres bijgewerkt"
  },
  {
    "id": "api.templates.email_change_verify_subject",
    "translation": "[{{ .SiteName }}] Verify new email address"
  },
  {
    "id": "api.templates.email_footer",
    "translation": "Om je notificatie instellingen te wijzigen moet je inloggen op je team site en ga naar Account Instellingen > Notificaties."
  },
  {
    "id": "api.templates.email_info1",
    "translation": "Any questions at all, mail us any time: "
  },
  {
    "id": "api.templates.email_info2",
    "translation": "Best wishes,"
  },
  {
    "id": "api.templates.email_info3",
    "translation": "The {{.SiteName}} Team"
  },
  {
    "id": "api.templates.email_organization",
    "translation": "Verzonden door "
  },
  {
    "id": "api.templates.email_warning",
    "translation": "If you did not make this change, please contact the system administrator."
  },
  {
    "id": "api.templates.invite_body.button",
    "translation": "Lid worden van team"
  },
  {
    "id": "api.templates.invite_body.extra_info",
    "translation": "Met Mattermost kunnen berichten en bestanden gedeeld worden via PC of mobiel, gecombineerd met instant zoeken en archiveren. Nadat U lid bent geworden van <strong>{{.TeamDisplayName}}</strong>, kun je inloggen bij het team en deze functies ieder moment benaderen via het internet adres:<br/><br/><a href='{{.TeamURL}}'>{{.teamURL}}</a>"
  },
  {
    "id": "api.templates.invite_body.info",
    "translation": "The team {{.SenderStatus}} [[{{.SenderName}}]], has invited you to join [[{{.TeamDisplayName}}]]."
  },
  {
    "id": "api.templates.invite_body.title",
    "translation": "Je bent uitgenodigd"
  },
  {
    "id": "api.templates.invite_subject",
    "translation": "[{{ .SiteName }}] {{ .SenderName }} invited you to join {{ .TeamDisplayName }} Team"
  },
  {
    "id": "api.templates.mfa_activated_body.info",
    "translation": "Multi-factor authentication has been added to your account on {{ .SiteURL }}."
  },
  {
    "id": "api.templates.mfa_activated_body.title",
    "translation": "Multi-factor authentication was added"
  },
  {
    "id": "api.templates.mfa_change_subject",
    "translation": "[{{ .SiteName }}] Your MFA has been updated"
  },
  {
    "id": "api.templates.mfa_deactivated_body.info",
    "translation": "Multi-factor authentication has been removed from your account on {{ .SiteURL }}."
  },
  {
    "id": "api.templates.mfa_deactivated_body.title",
    "translation": "Multi-factor authentication was removed"
  },
  {
    "id": "api.templates.password_change_body.info",
    "translation": "Your password has been updated for {{.TeamDisplayName}} on {{ .TeamURL }} by {{.Method}}."
  },
  {
    "id": "api.templates.password_change_body.title",
    "translation": "Uw wachtwoord is bijgewerkt"
  },
  {
    "id": "api.templates.password_change_subject",
    "translation": "[{{ .SiteName }}] Your password has been updated"
  },
  {
    "id": "api.templates.post_body.button",
    "translation": "Ga naar bericht"
  },
  {
    "id": "api.templates.reset_body.button",
    "translation": "Wachtwoord opnieuw instellen"
  },
  {
    "id": "api.templates.reset_body.info1",
    "translation": "To change your password, click \"Reset Password\" below."
  },
  {
    "id": "api.templates.reset_body.info2",
    "translation": "If you did not mean to reset your password, please ignore this email and your password will remain the same. The password reset link expires in 24 hours."
  },
  {
    "id": "api.templates.reset_body.title",
    "translation": "U heeft een wachtwoord reset aangevraagd"
  },
  {
    "id": "api.templates.reset_subject",
    "translation": "[{{ .SiteName }}] Reset your password"
  },
  {
    "id": "api.templates.signin_change_email.body.info",
    "translation": "U heeft uw inlog methode op {{ .SiteName }} bijgewerkt"
  },
  {
    "id": "api.templates.signin_change_email.body.method_email",
    "translation": "e-mail en wachtwoord"
  },
  {
    "id": "api.templates.signin_change_email.body.title",
    "translation": "Uw inlog methode is bijgewerkt"
  },
  {
    "id": "api.templates.signin_change_email.subject",
    "translation": "[{{ .SiteName }}] Your sign-in method has been updated"
  },
  {
    "id": "api.templates.user_access_token_body.info",
    "translation": "A personal access token was added to your account on {{ .SiteURL }}. They can be used to access {{.SiteName}} with your account."
  },
  {
    "id": "api.templates.user_access_token_body.title",
    "translation": "Personal access token added to your account"
  },
  {
    "id": "api.templates.user_access_token_subject",
    "translation": "[{{ .SiteName }}] Personal access token added to your account"
  },
  {
    "id": "api.templates.username_change_body.info",
    "translation": "Your username for {{.TeamDisplayName}} has been changed to {{.NewUsername}}."
  },
  {
    "id": "api.templates.username_change_body.title",
    "translation": "U heeft uw e-mailadres bijgewerkt"
  },
  {
    "id": "api.templates.username_change_subject",
    "translation": "[{{ .SiteName }}] Your username has changed"
  },
  {
    "id": "api.templates.verify_body.button",
    "translation": "Verifieer Email"
  },
  {
    "id": "api.templates.verify_body.info",
    "translation": "Verifieer uw e-mail adres door de link hieronder te klikken."
  },
  {
    "id": "api.templates.verify_body.title",
    "translation": "Je hebt je aangesloten bij {{ .ServerURL }}"
  },
  {
    "id": "api.templates.verify_subject",
    "translation": "[{{ .SiteName }}] Email Verificatie"
  },
  {
    "id": "api.templates.welcome_body.app_download_info",
    "translation": "Voor de beste ervaring, download de apps voor PC, Mac, iOS en Android van:"
  },
  {
    "id": "api.templates.welcome_body.button",
    "translation": "Verifieer E-mail"
  },
  {
    "id": "api.templates.welcome_body.info",
    "translation": "Verifieer aub uw e-mail door de link hieronder aan te klikken."
  },
  {
    "id": "api.templates.welcome_body.info2",
    "translation": "U kunt inloggen vanuit:"
  },
  {
    "id": "api.templates.welcome_body.info3",
    "translation": "Met Mattermost kunnen berichten en bestande uitgewisseld worden via PC of Telefoon, met instant zoek en archiveer functies."
  },
  {
    "id": "api.templates.welcome_body.title",
    "translation": "Je hebt je aangesloten bij {{ .ServerURL }}"
  },
  {
    "id": "api.templates.welcome_subject",
    "translation": "[{{ .SiteName }}] You joined {{ .ServerURL }}"
  },
  {
    "id": "api.user.activate_mfa.email_and_ldap_only.app_error",
    "translation": "MFA is niet beschikbaar voor dit account type"
  },
  {
    "id": "api.user.add_direct_channels_and_forget.failed.error",
    "translation": "Failed to add direct channel preferences for user user_id={{.UserId}}, team_id={{.TeamId}}, err={{.Error}}"
  },
  {
    "id": "api.user.authorize_oauth_user.bad_response.app_error",
    "translation": "Ongeldig response bij aanvraag van een token"
  },
  {
    "id": "api.user.authorize_oauth_user.bad_token.app_error",
    "translation": "Ongeldig token type"
  },
  {
    "id": "api.user.authorize_oauth_user.invalid_state.app_error",
    "translation": "Ongeldige status"
  },
  {
    "id": "api.user.authorize_oauth_user.missing.app_error",
    "translation": "Toegangs token mist"
  },
  {
    "id": "api.user.authorize_oauth_user.service.app_error",
    "translation": "Token aanvraag voor {{.Service}} is mislukt"
  },
  {
    "id": "api.user.authorize_oauth_user.token_failed.app_error",
    "translation": "Token aanvraag mislukt"
  },
  {
    "id": "api.user.authorize_oauth_user.unsupported.app_error",
    "translation": "Niet ondersteunde OAuth service provider"
  },
  {
    "id": "api.user.check_user_login_attempts.too_many.app_error",
    "translation": "Uw account is afgesloten doordat er te vaak een verkeerd wachtwoord is gegeven. Voer aub een wachtwoord reset uit."
  },
  {
    "id": "api.user.check_user_mfa.bad_code.app_error",
    "translation": "Ongeldige 'MFA' token."
  },
  {
    "id": "api.user.check_user_mfa.not_available.app_error",
    "translation": "'MFA' is niet ondersteund, of niet geconfigureerd op deze server"
  },
  {
    "id": "api.user.check_user_password.invalid.app_error",
    "translation": "Inloggen mislukt, door een verkeerd wachtwoord"
  },
  {
    "id": "api.user.complete_switch_with_oauth.blank_email.app_error",
    "translation": "Lege e-mail"
  },
  {
    "id": "api.user.complete_switch_with_oauth.parse.app_error",
    "translation": "Kan de auth data niet verwerken voor gebruikers object bij {{.Service}}"
  },
  {
    "id": "api.user.complete_switch_with_oauth.unavailable.app_error",
    "translation": "{{.Service}} SSO via OAuth 2.0 is niet beschikbaar op deze server"
  },
  {
    "id": "api.user.create_oauth_user.already_attached.app_error",
    "translation": "Er is al een account verbonden aan dit email adres met een andere inlog methode als {{.Service}}. Log in bij {{.Auth}}."
  },
  {
    "id": "api.user.create_oauth_user.create.app_error",
    "translation": "Kan geen gebruiker creeeren voor service {{.Service}}"
  },
  {
    "id": "api.user.create_oauth_user.not_available.app_error",
    "translation": "{{.Service}} SSO via OAuth 2.0 is niet beschikbaar op deze server"
  },
  {
    "id": "api.user.create_profile_image.default_font.app_error",
    "translation": "Kan geen standaard profiel aanmaken"
  },
  {
    "id": "api.user.create_profile_image.encode.app_error",
    "translation": "Kan het standaard figuur voor het profiel niet coderen"
  },
  {
    "id": "api.user.create_profile_image.initial.app_error",
    "translation": "Kan geen initieel standaard figuur toevoegen bij het gebruikers profiel"
  },
  {
    "id": "api.user.create_user.accepted_domain.app_error",
    "translation": "Het email adress dat is opgegeven behoord niet tot een van de geldige domeinen. Neem contact op met de beheerder, of log in met een ander e-mail adres."
  },
  {
    "id": "api.user.create_user.disabled.app_error",
    "translation": "User creation is disabled."
  },
  {
    "id": "api.user.create_user.missing_invite_id.app_error",
    "translation": "Missing Invite Id."
  },
  {
    "id": "api.user.create_user.missing_token.app_error",
    "translation": "Missing Token."
  },
  {
    "id": "api.user.create_user.no_open_server",
    "translation": "Deze server staat zelf aanmelden niet toe.  Neem contact op met uw systeembeheerder voor een uitnodiging."
  },
  {
    "id": "api.user.create_user.signup_email_disabled.app_error",
    "translation": "Team aanmelden met e-mail is uitgeschakeld."
  },
  {
    "id": "api.user.create_user.signup_link_expired.app_error",
    "translation": "De aanmeld link is verlopen"
  },
  {
    "id": "api.user.create_user.signup_link_invalid.app_error",
    "translation": "De aanmeld link is niet geldig"
  },
  {
    "id": "api.user.email_to_ldap.not_available.app_error",
    "translation": "AD/LDAP is niet beschikbaar op deze server"
  },
  {
    "id": "api.user.email_to_oauth.not_available.app_error",
    "translation": "Authentication Transfer not configured or available on this server."
  },
  {
    "id": "api.user.generate_mfa_qr.not_available.app_error",
    "translation": "'MFA' is niet geconfigeerd of beschikbaar op deze server"
  },
  {
    "id": "api.user.get_authorization_code.unsupported.app_error",
    "translation": "Ongeldige OAuth service provider"
  },
  {
    "id": "api.user.get_profile_image.not_found.app_error",
    "translation": "Unable to get profile image, user not found."
  },
  {
    "id": "api.user.ldap_to_email.not_available.app_error",
    "translation": "AS/LDAP is niet beschikbaar op deze server"
  },
  {
    "id": "api.user.ldap_to_email.not_ldap_account.app_error",
    "translation": "Dit gebruikers account gebruikt geen AD/LDAP"
  },
  {
    "id": "api.user.login.blank_pwd.app_error",
    "translation": "Wachtwoord veld kan niet leeg zijn"
  },
  {
    "id": "api.user.login.client_side_cert.certificate.app_error",
    "translation": "Attempted to sign in using the experimental feature ClientSideCert without providing a valid certificate"
  },
  {
    "id": "api.user.login.client_side_cert.license.app_error",
    "translation": "Attempt to use the experimental feature ClientSideCertEnable without a valid enterprise license"
  },
  {
    "id": "api.user.login.inactive.app_error",
    "translation": "Inloggen in niet mogelijk, omdat het account uitgeschakeld is. Neem contact op met een beheerder."
  },
  {
    "id": "api.user.login.invalid_credentials",
    "translation": "Gebuikersnaam or wachtwoord incorrect."
  },
  {
    "id": "api.user.login.not_verified.app_error",
    "translation": "Inloggen is niet gelukt, omdat het e-mail adres nog niet geverifieerd is"
  },
  {
    "id": "api.user.login.use_auth_service.app_error",
    "translation": "Log a.u.b. in via {{.AuthService}}"
  },
  {
    "id": "api.user.login_by_oauth.not_available.app_error",
    "translation": "{{.Service}} SSO via OAuth 2.0 is niet beschikbaar op deze server"
  },
  {
    "id": "api.user.login_by_oauth.parse.app_error",
    "translation": "Kan data niet verwerken voor authenticatie via {{.Service}}"
  },
  {
    "id": "api.user.login_ldap.not_available.app_error",
    "translation": "AD/LDAP is niet beschikbaar op deze server"
  },
  {
    "id": "api.user.oauth_to_email.context.app_error",
    "translation": "Het bijwerken van het wachtwoord is niet gelukt, want de de context user_id kwam niet overeen met de opgegeven user id"
  },
  {
    "id": "api.user.oauth_to_email.not_available.app_error",
    "translation": "Authentication Transfer not configured or available on this server."
  },
  {
    "id": "api.user.reset_password.broken_token.app_error",
    "translation": "De wachtwoord reset link is niet geldig"
  },
  {
    "id": "api.user.reset_password.invalid_link.app_error",
    "translation": "De wachtwoord reset link is niet geldig"
  },
  {
    "id": "api.user.reset_password.link_expired.app_error",
    "translation": "De wachtwoord reset link is niet meer geldig"
  },
  {
    "id": "api.user.reset_password.method",
    "translation": "Wachtwoord reset link gebruiken"
  },
  {
    "id": "api.user.reset_password.sso.app_error",
    "translation": "Kan het wachtwoord niet resetten voor SSO accounts"
  },
  {
    "id": "api.user.saml.app_error",
    "translation": "Unable to process SAML login request."
  },
  {
    "id": "api.user.saml.extension_id.app_error",
    "translation": "Ongeldig client id "
  },
  {
    "id": "api.user.saml.extension_unsupported",
    "translation": "Extensions are not supported."
  },
  {
    "id": "api.user.saml.invalid_extension",
    "translation": "Extension with extension_id={{.ExtensionId}} is not supported."
  },
  {
    "id": "api.user.saml.not_available.app_error",
    "translation": "SAML wordt niet ondersteund, of is niet geconfigureerd op deze server."
  },
  {
    "id": "api.user.send_deactivate_email_and_forget.failed.error",
    "translation": "Failed to send the deactivate account email successfully"
  },
  {
    "id": "api.user.send_email_change_email_and_forget.error",
    "translation": "Aanpassings mail voor notificatie kon niet verstuurd worden"
  },
  {
    "id": "api.user.send_email_change_username_and_forget.error",
    "translation": "De e-mail voor de gebuikersnaam aanpassing kon niet verstuurd worden, fout=%v"
  },
  {
    "id": "api.user.send_email_change_verify_email_and_forget.error",
    "translation": "Email verificatie aanpassings mail kon niet verstuurd worden, fout=%v"
  },
  {
    "id": "api.user.send_mfa_change_email.error",
    "translation": "Unable to send email notification for MFA change."
  },
  {
    "id": "api.user.send_password_change_email_and_forget.error",
    "translation": "De e-mail voor het bijwerken van het wachtwoord kon niet verstuurd worden, fout=%v"
  },
  {
    "id": "api.user.send_password_reset.send.app_error",
    "translation": "Wachtwoord reset e-mail versturen is niet gelukt"
  },
  {
    "id": "api.user.send_password_reset.sso.app_error",
    "translation": "Kan het wachtwoord niet resetten voor SSO accounts"
  },
  {
    "id": "api.user.send_sign_in_change_email_and_forget.error",
    "translation": "De e-mail voor het bijwerken van het wachtwoord kon niet verstuurd worden, fout=%v"
  },
  {
    "id": "api.user.send_user_access_token.error",
    "translation": "Failed to send \"Personal access token added\" email successfully"
  },
  {
    "id": "api.user.send_verify_email_and_forget.failed.error",
    "translation": "Verificatie mail kon niet verstuurd worden, fout=%v"
  },
  {
    "id": "api.user.send_welcome_email_and_forget.failed.error",
    "translation": "Welkomst mail kon niet verstuurd worden, fout=%v"
  },
  {
    "id": "api.user.update_active.not_enable.app_error",
    "translation": "You cannot deactivate yourself because this feature is not enabled. Please contact your System Administrator."
  },
  {
    "id": "api.user.update_active.permissions.app_error",
    "translation": "U beschikt niet over de juiste rechten"
  },
  {
    "id": "api.user.update_mfa.not_available.app_error",
    "translation": "'MFA' is niet geconfigueerd of niet beschikbaar op deze server"
  },
  {
    "id": "api.user.update_oauth_user_attrs.get_user.app_error",
    "translation": "Kan geen gebruiker creeeren voor service {{.Service}}"
  },
  {
    "id": "api.user.update_password.context.app_error",
    "translation": "Wachtwoord bijwerken is niet gelukt, want de context user_id kom niet overeen met de opgegeven user_id"
  },
  {
    "id": "api.user.update_password.failed.app_error",
    "translation": "Wachtwoord bijwerken is mislukt"
  },
  {
    "id": "api.user.update_password.incorrect.app_error",
    "translation": "Het \"Huidige wachtwoord\" is niet goed. Controleer dat 'Hoofdletters' uitgeschakeld zijn en probeer opnieuw."
  },
  {
    "id": "api.user.update_password.menu",
    "translation": "via het instellingen menu"
  },
  {
    "id": "api.user.update_password.oauth.app_error",
    "translation": "Wachtwoord bijwerken is mislukt, omdat de gebruiker is ingelogt via een OAuth service"
  },
  {
    "id": "api.user.update_password.valid_account.app_error",
    "translation": "Wachtwoord bijwerken is mislukt, want er is geen geldig account gevonden"
  },
  {
    "id": "api.user.upload_profile_user.array.app_error",
    "translation": "Lege data bij 'licentie' in aanvraag"
  },
  {
    "id": "api.user.upload_profile_user.decode.app_error",
    "translation": "Kan het profiel figuur niet decoderen"
  },
  {
    "id": "api.user.upload_profile_user.decode_config.app_error",
    "translation": "Could not save profile image. File does not appear to be a valid image."
  },
  {
    "id": "api.user.upload_profile_user.encode.app_error",
    "translation": "Kan het profiel figuur niet coderen"
  },
  {
    "id": "api.user.upload_profile_user.no_file.app_error",
    "translation": "Geen bestand bij 'licentie' in aanvraag"
  },
  {
    "id": "api.user.upload_profile_user.open.app_error",
    "translation": "Kan licentie bestand niet openen"
  },
  {
    "id": "api.user.upload_profile_user.parse.app_error",
    "translation": "Kan het 'multipart form' niet verwerken"
  },
  {
    "id": "api.user.upload_profile_user.storage.app_error",
    "translation": "Kan bestand niet uploaden. Afbeeldings opslag is niet geconfigureerd."
  },
  {
    "id": "api.user.upload_profile_user.too_large.app_error",
    "translation": "Kan bestand niet uploaden. Bestand is te groot."
  },
  {
    "id": "api.user.upload_profile_user.upload_profile.app_error",
    "translation": "Kan de profiel figuur niet uploaden"
  },
  {
    "id": "api.user.verify_email.bad_link.app_error",
    "translation": "Ongeldige e-mail verificatie link."
  },
  {
    "id": "api.user.verify_email.broken_token.app_error",
    "translation": "Bad verify email token type."
  },
  {
    "id": "api.web_socket.connect.upgrade.app_error",
    "translation": "Upgraden naar websocket verbinding is mislukt"
  },
  {
    "id": "api.web_socket_router.bad_action.app_error",
    "translation": "Unknown WebSocket action."
  },
  {
    "id": "api.web_socket_router.bad_seq.app_error",
    "translation": "Invalid sequence for WebSocket message."
  },
  {
    "id": "api.web_socket_router.no_action.app_error",
    "translation": "No websocket action."
  },
  {
    "id": "api.web_socket_router.not_authenticated.app_error",
    "translation": "WebSocket connection is not authenticated. Please log in and try again."
  },
  {
    "id": "api.webhook.create_outgoing.intersect.app_error",
    "translation": "Uitgaande webhooks van hetzelfde kanaal kunnen niet dezelfde trigger-woorden/callback URL's hebben."
  },
  {
    "id": "api.webhook.create_outgoing.not_open.app_error",
    "translation": "Uitgaande webhooks kunnen alleen aan publieke kanalen gekoppeld worden."
  },
  {
    "id": "api.webhook.create_outgoing.permissions.app_error",
    "translation": "Onjuiste rechten voor het aanmaken van een uitgaande webhook."
  },
  {
    "id": "api.webhook.create_outgoing.triggers.app_error",
    "translation": "Ofwel trigger_words of channel_id moet worden geconfigueerd"
  },
  {
    "id": "api.webhook.incoming.error",
    "translation": "Could not decode the multipart payload of incoming webhook."
  },
  {
    "id": "api.webhook.team_mismatch.app_error",
    "translation": "Fout bij het bijwerken van commando's voor meerdere teams"
  },
  {
    "id": "api.webhook.update_outgoing.intersect.app_error",
    "translation": "Uitgaande webhooks van hetzelfde kanaal kunnen niet dezelfde trigger-woorden/callback URL's hebben."
  },
  {
    "id": "api.webrtc.disabled.app_error",
    "translation": "WebRTC is niet ingeschakeld op deze server."
  },
  {
    "id": "api.webrtc.register_token.app_error",
    "translation": "We encountered an error trying to register the WebRTC Token"
  },
  {
    "id": "api.websocket_handler.invalid_param.app_error",
    "translation": "Ongeldige {{.Name}} parameter"
  },
  {
    "id": "app.admin.test_email.failure",
    "translation": "Connection unsuccessful: {{.Error}}"
  },
  {
    "id": "app.channel.create_channel.no_team_id.app_error",
    "translation": "Must specify the team ID to create a channel"
  },
  {
    "id": "app.channel.move_channel.members_do_not_match.error",
    "translation": "Unable to move a channel unless all its members are already members of the destination team."
  },
  {
    "id": "app.channel.post_update_channel_purpose_message.post.error",
    "translation": "Plaatsen van bericht over binnenkomen/verlaten %v is mislukt"
  },
  {
    "id": "app.channel.post_update_channel_purpose_message.removed",
    "translation": "%s heeft de kanaalkoptekst verwijderd (was: %s)"
  },
  {
    "id": "app.channel.post_update_channel_purpose_message.retrieve_user.error",
    "translation": "Kon de gebruiker niet ophalen tijdens het bewaren van de nieuwe kanaalkoptekst %v"
  },
  {
    "id": "app.channel.post_update_channel_purpose_message.updated_from",
    "translation": "%s heeft de kanaalkoptekst veranderd van \"%s\" naar \"%s\""
  },
  {
    "id": "app.channel.post_update_channel_purpose_message.updated_to",
    "translation": "%s heeft de kanaalkoptekst bijgewerkt naar: %s"
  },
  {
    "id": "app.cluster.404.app_error",
    "translation": "Cluster API endpoint not found."
  },
  {
    "id": "app.export.export_write_line.io_writer.error",
    "translation": "An error occurred writing the export data."
  },
  {
    "id": "app.export.export_write_line.json_marshall.error",
    "translation": "An error occured marshalling the JSON data for export."
  },
  {
    "id": "app.import.attachment.bad_file.error",
    "translation": "Error reading the file at: \"{{.FilePath}}\""
  },
  {
    "id": "app.import.attachment.file_upload.error",
    "translation": "Error uploading the file: \"{{.FilePath}}\""
  },
  {
    "id": "app.import.bulk_import.file_scan.error",
    "translation": "Error reading import data file."
  },
  {
    "id": "app.import.bulk_import.json_decode.error",
    "translation": "JSON decode of line failed."
  },
  {
    "id": "app.import.bulk_import.unsupported_version.error",
    "translation": "Incorrect or missing version in the data import file. Make sure version is the first object in your import file and try again."
  },
  {
    "id": "app.import.emoji.bad_file.error",
    "translation": "Error reading import emoji image file. Emoji with name: \"{{.EmojiName}}\""
  },
  {
    "id": "app.import.import_channel.scheme_deleted.error",
    "translation": "Unable to set a channel to use a deleted scheme."
  },
  {
    "id": "app.import.import_channel.scheme_wrong_scope.error",
    "translation": "Channel must be assigned to a Channel-scoped scheme."
  },
  {
    "id": "app.import.import_channel.team_not_found.error",
    "translation": "Error importing channel. Team with name \"{{.TeamName}}\" could not be found."
  },
  {
    "id": "app.import.import_direct_channel.create_direct_channel.error",
    "translation": "Failed to create direct channel"
  },
  {
    "id": "app.import.import_direct_channel.create_group_channel.error",
    "translation": "Failed to create group channel"
  },
  {
    "id": "app.import.import_direct_channel.member_not_found.error",
    "translation": "Could not find channel member when importing direct channel"
  },
  {
    "id": "app.import.import_direct_channel.update_header_failed.error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "app.import.import_direct_post.channel_member_not_found.error",
    "translation": "Could not find channel member when importing direct channel post"
  },
  {
    "id": "app.import.import_direct_post.create_direct_channel.error",
    "translation": "Failed to get direct channel"
  },
  {
    "id": "app.import.import_direct_post.create_group_channel.error",
    "translation": "Failed to get group channel"
  },
  {
    "id": "app.import.import_direct_post.save_preferences.error",
    "translation": "Error importing direct post. Failed to save preferences."
  },
  {
    "id": "app.import.import_direct_post.user_not_found.error",
    "translation": "Post user does not exist"
  },
  {
    "id": "app.import.import_line.null_channel.error",
    "translation": "Geimporteerde lijn met type \"user\", maar het \"user\" object is null."
  },
  {
    "id": "app.import.import_line.null_direct_channel.error",
    "translation": "Geimporteerde lijn met type \"user\", maar het \"user\" object is null."
  },
  {
    "id": "app.import.import_line.null_direct_post.error",
    "translation": "Geimporteerde lijn met type \"user\", maar het \"user\" object is null."
  },
  {
    "id": "app.import.import_line.null_emoji.error",
    "translation": "Geimporteerde lijn met type \"user\", maar het \"user\" object is null."
  },
  {
    "id": "app.import.import_line.null_post.error",
    "translation": "Geimporteerde lijn met type \"user\", maar het \"user\" object is null."
  },
  {
    "id": "app.import.import_line.null_scheme.error",
    "translation": "Geimporteerde lijn met type \"user\", maar het \"user\" object is null."
  },
  {
    "id": "app.import.import_line.null_team.error",
    "translation": "Geimporteerde lijn met type \"user\", maar het \"user\" object is null."
  },
  {
    "id": "app.import.import_line.null_user.error",
    "translation": "Geimporteerde lijn met type \"user\", maar het \"user\" object is null."
  },
  {
    "id": "app.import.import_line.unknown_line_type.error",
    "translation": "Import data line has unknown type \"{{.Type}}\"."
  },
  {
    "id": "app.import.import_post.channel_not_found.error",
    "translation": "Error importing post. Channel with name \"{{.ChannelName}}\" could not be found."
  },
  {
    "id": "app.import.import_post.save_preferences.error",
    "translation": "Error importing post. Failed to save preferences."
  },
  {
    "id": "app.import.import_post.team_not_found.error",
    "translation": "Error importing post. Team with name \"{{.TeamName}}\" could not be found."
  },
  {
    "id": "app.import.import_post.user_not_found.error",
    "translation": "Error importing post. User with username \"{{.Username}}\" could not be found."
  },
  {
    "id": "app.import.import_scheme.scope_change.error",
    "translation": "The bulk importer cannot change the scope of an already-existing scheme."
  },
  {
    "id": "app.import.import_team.scheme_deleted.error",
    "translation": "Unable to set a team to use a deleted scheme."
  },
  {
    "id": "app.import.import_team.scheme_wrong_scope.error",
    "translation": "Team must be assigned to a Team-scoped scheme."
  },
  {
    "id": "app.import.import_user.save_preferences.error",
    "translation": "Error importing user preferences. Failed to save preferences."
  },
  {
    "id": "app.import.import_user_channels.save_preferences.error",
    "translation": "Error importing user channel memberships. Failed to save preferences."
  },
  {
    "id": "app.import.process_import_data_file_version_line.invalid_version.error",
    "translation": "Unable to read the version of the data import file."
  },
  {
    "id": "app.import.validate_channel_import_data.display_name_length.error",
    "translation": "Channel display_name is not within permitted length constraints."
  },
  {
    "id": "app.import.validate_channel_import_data.display_name_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_channel_import_data.header_length.error",
    "translation": "Channel header is too long."
  },
  {
    "id": "app.import.validate_channel_import_data.name_characters.error",
    "translation": "Channel name contains invalid characters."
  },
  {
    "id": "app.import.validate_channel_import_data.name_length.error",
    "translation": "Channel name is too long."
  },
  {
    "id": "app.import.validate_channel_import_data.name_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_channel_import_data.purpose_length.error",
    "translation": "Channel purpose is too long."
  },
  {
    "id": "app.import.validate_channel_import_data.scheme_invalid.error",
    "translation": "Invalid scheme name for channel."
  },
  {
    "id": "app.import.validate_channel_import_data.team_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_channel_import_data.type_invalid.error",
    "translation": "Channel type is invalid."
  },
  {
    "id": "app.import.validate_channel_import_data.type_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_direct_channel_import_data.header_length.error",
    "translation": "Direct channel header is too long"
  },
  {
    "id": "app.import.validate_direct_channel_import_data.members_required.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_direct_channel_import_data.members_too_few.error",
    "translation": "Direct channel members list contains too few items"
  },
  {
    "id": "app.import.validate_direct_channel_import_data.members_too_many.error",
    "translation": "Direct channel members list contains too many items"
  },
  {
    "id": "app.import.validate_direct_channel_import_data.unknown_favoriter.error",
    "translation": "Direct channel can only be favorited by members. \"{{.Username}}\" is not a member."
  },
  {
    "id": "app.import.validate_direct_post_import_data.channel_members_required.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_direct_post_import_data.channel_members_too_few.error",
    "translation": "Direct post channel members list contains too few items"
  },
  {
    "id": "app.import.validate_direct_post_import_data.channel_members_too_many.error",
    "translation": "Direct post channel members list contains too many items"
  },
  {
    "id": "app.import.validate_direct_post_import_data.create_at_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_direct_post_import_data.create_at_zero.error",
    "translation": "CreateAt must be greater than 0"
  },
  {
    "id": "app.import.validate_direct_post_import_data.message_length.error",
    "translation": "Message is too long"
  },
  {
    "id": "app.import.validate_direct_post_import_data.message_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_direct_post_import_data.unknown_flagger.error",
    "translation": "Direct post can only be flagged by members of the channel it is in. \"{{.Username}}\" is not a member."
  },
  {
    "id": "app.import.validate_direct_post_import_data.user_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_emoji_import_data.empty.error",
    "translation": "Import emoji data empty."
  },
  {
    "id": "app.import.validate_emoji_import_data.image_missing.error",
    "translation": "Import emoji image field missing or blank."
  },
  {
    "id": "app.import.validate_emoji_import_data.name_missing.error",
    "translation": "Import emoji name field missing or blank."
  },
  {
    "id": "app.import.validate_post_import_data.channel_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_post_import_data.create_at_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_post_import_data.create_at_zero.error",
    "translation": "Post CreateAt property must not be zero."
  },
  {
    "id": "app.import.validate_post_import_data.message_length.error",
    "translation": "Post Message property is longer than the maximum permitted length."
  },
  {
    "id": "app.import.validate_post_import_data.message_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_post_import_data.team_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_post_import_data.user_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_reaction_import_data.create_at_before_parent.error",
    "translation": "Reactie CreateAt eigenschap moet groter zijn dan het hoofdbericht CreateAt"
  },
  {
    "id": "app.import.validate_reaction_import_data.create_at_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_reaction_import_data.create_at_zero.error",
    "translation": "Reaction CreateAt property must not be zero."
  },
  {
    "id": "app.import.validate_reaction_import_data.emoji_name_length.error",
    "translation": "Reaction EmojiName property is longer than the maximum permitted length."
  },
  {
    "id": "app.import.validate_reaction_import_data.emoji_name_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_reaction_import_data.user_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_reply_import_data.create_at_before_parent.error",
    "translation": "Reactie CreateAt eigenschap moet groter zijn dan het hoofdbericht CreateAt"
  },
  {
    "id": "app.import.validate_reply_import_data.create_at_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_reply_import_data.create_at_zero.error",
    "translation": "Reply CreateAt property must not be zero."
  },
  {
    "id": "app.import.validate_reply_import_data.message_length.error",
    "translation": "Reply Message property is longer than the maximum permitted length."
  },
  {
    "id": "app.import.validate_reply_import_data.message_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_reply_import_data.user_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_role_import_data.description_invalid.error",
    "translation": "Ongeldige beschrijving"
  },
  {
    "id": "app.import.validate_role_import_data.display_name_invalid.error",
    "translation": "Ongeldige weergave naam"
  },
  {
    "id": "app.import.validate_role_import_data.invalid_permission.error",
    "translation": "Invalid permission on role."
  },
  {
    "id": "app.import.validate_role_import_data.name_invalid.error",
    "translation": "Ongeldige gebruikersnaam"
  },
  {
    "id": "app.import.validate_scheme_import_data.description_invalid.error",
    "translation": "Ongeldige beschrijving"
  },
  {
    "id": "app.import.validate_scheme_import_data.display_name_invalid.error",
    "translation": "Ongeldige weergave naam"
  },
  {
    "id": "app.import.validate_scheme_import_data.name_invalid.error",
    "translation": "Ongeldige gebruikersnaam"
  },
  {
    "id": "app.import.validate_scheme_import_data.null_scope.error",
    "translation": "Scheme scope is required."
  },
  {
    "id": "app.import.validate_scheme_import_data.unknown_scheme.error",
    "translation": "Unknown scheme scope."
  },
  {
    "id": "app.import.validate_scheme_import_data.wrong_roles_for_scope.error",
    "translation": "The wrong roles were provided for a scheme with this scope."
  },
  {
    "id": "app.import.validate_team_import_data.description_length.error",
    "translation": "Team description is too long."
  },
  {
    "id": "app.import.validate_team_import_data.display_name_length.error",
    "translation": "Team display_name is not within permitted length constraints."
  },
  {
    "id": "app.import.validate_team_import_data.display_name_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_team_import_data.name_characters.error",
    "translation": "Team name contains invalid characters."
  },
  {
    "id": "app.import.validate_team_import_data.name_length.error",
    "translation": "Team name is too long."
  },
  {
    "id": "app.import.validate_team_import_data.name_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_team_import_data.name_reserved.error",
    "translation": "Team name contains reserved words."
  },
  {
    "id": "app.import.validate_team_import_data.scheme_invalid.error",
    "translation": "Invalid scheme name for team."
  },
  {
    "id": "app.import.validate_team_import_data.type_invalid.error",
    "translation": "Team type is not valid."
  },
  {
    "id": "app.import.validate_team_import_data.type_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_user_channels_import_data.channel_name_missing.error",
    "translation": "Channel name missing from User's Channel Membership."
  },
  {
    "id": "app.import.validate_user_channels_import_data.invalid_notify_props_desktop.error",
    "translation": "Invalid Desktop NotifyProps for User's Channel Membership."
  },
  {
    "id": "app.import.validate_user_channels_import_data.invalid_notify_props_mark_unread.error",
    "translation": "Invalid MarkUnread NotifyProps for User's Channel Membership."
  },
  {
    "id": "app.import.validate_user_channels_import_data.invalid_notify_props_mobile.error",
    "translation": "Invalid Mobile NotifyProps for User's Channel Membership."
  },
  {
    "id": "app.import.validate_user_channels_import_data.invalid_roles.error",
    "translation": "Invalid roles for User's Channel Membership."
  },
  {
    "id": "app.import.validate_user_import_data.auth_data_and_password.error",
    "translation": "User AuthData and Password are mutually exclusive."
  },
  {
    "id": "app.import.validate_user_import_data.auth_data_length.error",
    "translation": "User AuthData is too long."
  },
  {
    "id": "app.import.validate_user_import_data.auth_service_length.error",
    "translation": "User AuthService should not be empty if it is provided."
  },
  {
    "id": "app.import.validate_user_import_data.email_length.error",
    "translation": "User email has an invalid length."
  },
  {
    "id": "app.import.validate_user_import_data.email_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_user_import_data.first_name_length.error",
    "translation": "User First Name is too long."
  },
  {
    "id": "app.import.validate_user_import_data.last_name_length.error",
    "translation": "User Last Name is too long."
  },
  {
    "id": "app.import.validate_user_import_data.nickname_length.error",
    "translation": "User nickname is too long."
  },
  {
    "id": "app.import.validate_user_import_data.notify_props_channel_trigger_invalid.error",
    "translation": "Invalid Channel Trigger Notify Prop for user."
  },
  {
    "id": "app.import.validate_user_import_data.notify_props_comments_trigger_invalid.error",
    "translation": "Invalid Comments Prop value for user."
  },
  {
    "id": "app.import.validate_user_import_data.notify_props_desktop_invalid.error",
    "translation": "Invalid Desktop Notify Prop value for user."
  },
  {
    "id": "app.import.validate_user_import_data.notify_props_desktop_sound_invalid.error",
    "translation": "Invalid Desktop Sound Notify Prop value for user."
  },
  {
    "id": "app.import.validate_user_import_data.notify_props_email_invalid.error",
    "translation": "Invalid Email Notify Prop value for user."
  },
  {
    "id": "app.import.validate_user_import_data.notify_props_mobile_invalid.error",
    "translation": "Invalid Mobile Notify Prop value for user."
  },
  {
    "id": "app.import.validate_user_import_data.notify_props_mobile_push_status_invalid.error",
    "translation": "Invalid Mobile Push Status Notify Prop for user."
  },
  {
    "id": "app.import.validate_user_import_data.password_length.error",
    "translation": "User Password has invalid length."
  },
  {
    "id": "app.import.validate_user_import_data.position_length.error",
    "translation": "User Position is too long."
  },
  {
    "id": "app.import.validate_user_import_data.profile_image.error",
    "translation": "Invalid profile image."
  },
  {
    "id": "app.import.validate_user_import_data.roles_invalid.error",
    "translation": "User roles are not valid."
  },
  {
    "id": "app.import.validate_user_import_data.username_invalid.error",
    "translation": "Username is not valid."
  },
  {
    "id": "app.import.validate_user_import_data.username_missing.error",
    "translation": "Mist vereiste team kenmerk: naam."
  },
  {
    "id": "app.import.validate_user_teams_import_data.invalid_roles.error",
    "translation": "Invalid roles for User's Team Membership."
  },
  {
    "id": "app.import.validate_user_teams_import_data.team_name_missing.error",
    "translation": "Team name missing from User's Team Membership."
  },
  {
    "id": "app.notification.body.intro.direct.full",
    "translation": "U heeft een nieuw bericht."
  },
  {
    "id": "app.notification.body.intro.direct.generic",
    "translation": "You have a new Direct Message from @{{.SenderName}}"
  },
  {
    "id": "app.notification.body.intro.group_message.full",
    "translation": "U heeft een nieuw bericht."
  },
  {
    "id": "app.notification.body.intro.group_message.generic",
    "translation": "You have a new Group Message from @{{.SenderName}}"
  },
  {
    "id": "app.notification.body.intro.notification.full",
    "translation": "You have a new notification."
  },
  {
    "id": "app.notification.body.intro.notification.generic",
    "translation": "You have a new notification from @{{.SenderName}}"
  },
  {
    "id": "app.notification.body.text.direct.full",
    "translation": "{{.Hour}}:{{.Minute}} {{.Timezone}}, {{.Month}} {{.Day}}"
  },
  {
    "id": "app.notification.body.text.direct.generic",
    "translation": "{{.Hour}}:{{.Minute}} {{.Timezone}}, {{.Month}} {{.Day}}"
  },
  {
    "id": "app.notification.body.text.group_message.full",
    "translation": "Channel: {{.ChannelName}}"
  },
  {
    "id": "app.notification.body.text.group_message.full2",
    "translation": "{{.Hour}}:{{.Minute}} {{.Timezone}}, {{.Month}} {{.Day}}"
  },
  {
    "id": "app.notification.body.text.group_message.generic",
    "translation": "{{.Hour}}:{{.Minute}} {{.Timezone}}, {{.Month}} {{.Day}}"
  },
  {
    "id": "app.notification.body.text.notification.full",
    "translation": "Channel: {{.ChannelName}}"
  },
  {
    "id": "app.notification.body.text.notification.full2",
    "translation": "{{.Hour}}:{{.Minute}} {{.Timezone}}, {{.Month}} {{.Day}}"
  },
  {
    "id": "app.notification.body.text.notification.generic",
    "translation": "{{.Hour}}:{{.Minute}} {{.Timezone}}, {{.Month}} {{.Day}}"
  },
  {
    "id": "app.notification.subject.direct.full",
    "translation": "[{{.SiteName}}] Nieuw direct bericht van {{.SenderDisplayName}} op {{.Month}} {{.Day}} {{.Year}}"
  },
  {
    "id": "app.notification.subject.group_message.full",
    "translation": "[{{.SiteName}}] Nieuw direct bericht van {{.SenderDisplayName}} op {{.Month}} {{.Day}} {{.Year}}"
  },
  {
    "id": "app.notification.subject.group_message.generic",
    "translation": "[{{.SiteName}}] Nieuwe Notificatie voor {{.Month}} {{.Day}}, {{.Year}}"
  },
  {
    "id": "app.notification.subject.notification.full",
    "translation": "[{{.SiteName}}] Nieuw direct bericht van {{.SenderDisplayName}} op {{.Month}} {{.Day}} {{.Year}}"
  },
  {
    "id": "app.plugin.cluster.save_config.app_error",
    "translation": "The plugin configuration in your config.json file must be updated manually when using ReadOnlyConfig with clustering enabled."
  },
  {
    "id": "app.plugin.config.app_error",
    "translation": "Error saving plugin state in config"
  },
  {
    "id": "app.plugin.deactivate.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "app.plugin.disabled.app_error",
    "translation": "Plugins have been disabled. Please check your logs for details."
  },
  {
    "id": "app.plugin.extract.app_error",
    "translation": "Encountered error extracting plugin"
  },
  {
    "id": "app.plugin.filesystem.app_error",
    "translation": "Encountered filesystem error"
  },
  {
    "id": "app.plugin.get_cluster_plugin_statuses.app_error",
    "translation": "Unable to get plugin statuses from the cluster."
  },
  {
    "id": "app.plugin.get_plugins.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "app.plugin.get_statuses.app_error",
    "translation": "Unable to get plugin statuses"
  },
  {
    "id": "app.plugin.install.app_error",
    "translation": "Unable to install plugin."
  },
  {
    "id": "app.plugin.install_id.app_error",
    "translation": "Unable to install plugin. A plugin with the same ID is already installed."
  },
  {
    "id": "app.plugin.install_id_failed_remove.app_error",
    "translation": "Unable to install plugin. A plugin with the same ID is already installed and failed to be removed."
  },
  {
    "id": "app.plugin.invalid_id.app_error",
    "translation": "Plugin Id must be at least {{.Min}} characters, at most {{.Max}} characters and match {{.Regex}}."
  },
  {
    "id": "app.plugin.manifest.app_error",
    "translation": "Unable to find manifest for extracted plugin"
  },
  {
    "id": "app.plugin.mvdir.app_error",
    "translation": "Unable to move plugin from temporary directory to final destination. Another plugin may be using the same directory name."
  },
  {
    "id": "app.plugin.not_installed.app_error",
    "translation": "Plugin is not installed"
  },
  {
    "id": "app.plugin.remove.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "app.plugin.upload_disabled.app_error",
    "translation": "Plugins and/or plugin uploads have been disabled."
  },
  {
    "id": "app.role.check_roles_exist.role_not_found",
    "translation": "The provided role does not exist"
  },
  {
    "id": "app.schemes.is_phase_2_migration_completed.not_completed.app_error",
    "translation": "This API endpoint is not accessible as required migrations have not yet completed."
  },
  {
    "id": "app.system_install_date.parse_int.app_error",
    "translation": "Failed to parse installation date"
  },
  {
    "id": "app.team.join_user_to_team.max_accounts.app_error",
    "translation": "Het maximaal aantal leden voor dit team is bereikt. Neem contact op met de beheerder voor een hoger limiet."
  },
  {
    "id": "app.user.complete_switch_with_oauth.blank_email.app_error",
    "translation": "Unable to complete SAML login with an empty email address."
  },
  {
    "id": "app.user_access_token.disabled",
    "translation": "Personal access tokens are disabled on this server. Please contact your system administrator for details."
  },
  {
    "id": "app.user_access_token.invalid_or_missing",
    "translation": "Invalid or missing token"
  },
  {
    "id": "brand.save_brand_image.decode.app_error",
    "translation": "Unable to decode the image data."
  },
  {
    "id": "brand.save_brand_image.decode_config.app_error",
    "translation": "Unable to get image metadata."
  },
  {
    "id": "brand.save_brand_image.encode.app_error",
    "translation": "Unable to convert the image data to PNG format. Please try again."
  },
  {
    "id": "brand.save_brand_image.open.app_error",
    "translation": "Unable to upload the custom brand image. Make sure the image size is less than 2 MB and try again."
  },
  {
    "id": "brand.save_brand_image.save_image.app_error",
    "translation": "Unable to write the image file to your file storage. Please check your connection and try again."
  },
  {
    "id": "brand.save_brand_image.too_large.app_error",
    "translation": "Unable to read the image file. Make sure the image size is less than 2 MB and try again."
  },
  {
    "id": "cli.license.critical",
    "translation": "Feature requires an upgrade to Enterprise Edition and the inclusion of a license key. Please contact your System Administrator."
  },
  {
    "id": "ent.account_migration.get_all_failed",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "ent.account_migration.get_saml_users_failed",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "ent.cluster.config_changed.info",
    "translation": "Cluster configuration has changed for id={{ .id }}. The cluster may become unstable and a restart is required. To ensure the cluster is configured correctly you should perform a rolling restart immediately."
  },
  {
    "id": "ent.cluster.save_config.error",
    "translation": "System Console is set to read-only when High Availability is enabled unless ReadOnlyConfig is disabled in the configuration file."
  },
  {
    "id": "ent.compliance.bad_export_type.appError",
    "translation": "Unknown output format {{.ExportType}}"
  },
  {
    "id": "ent.compliance.csv.attachment.copy.appError",
    "translation": "Unable to copy the attachment into the zip file."
  },
  {
    "id": "ent.compliance.csv.attachment.export.appError",
    "translation": "Unable to add attachment to the CSV export."
  },
  {
    "id": "ent.compliance.csv.file.creation.appError",
    "translation": "Unable to create temporary CSV export file."
  },
  {
    "id": "ent.compliance.csv.header.export.appError",
    "translation": "Unable to add header to the CSV export."
  },
  {
    "id": "ent.compliance.csv.metadata.export.appError",
    "translation": "Unable to add metadata file to the zip file."
  },
  {
    "id": "ent.compliance.csv.metadata.json.marshalling.appError",
    "translation": "Unable to convert metadata to json."
  },
  {
    "id": "ent.compliance.csv.post.export.appError",
    "translation": "Unable to export a post."
  },
  {
    "id": "ent.compliance.csv.zip.creation.appError",
    "translation": "Unable to create the zip export file."
  },
  {
    "id": "ent.compliance.global_relay.attachments_removed.appError",
    "translation": "Uploaded file was removed from Global Relay export because it was too large to send."
  },
  {
    "id": "ent.compliance.global_relay.open_temporary_file.appError",
    "translation": "Unable to open the temporary export file."
  },
  {
    "id": "ent.compliance.global_relay.rewind_temporary_file.appError",
    "translation": "Unable to re-read the Global Relay temporary export file."
  },
  {
    "id": "ent.compliance.licence_disable.app_error",
    "translation": "Compliance functionaliteit is uitgeschakeld met de huidige licentie. Neem contact op met de beheerder voor een upgrade van de licentie."
  },
  {
    "id": "ent.compliance.run_export.template_watcher.appError",
    "translation": "Unable to load export templates. Please try again."
  },
  {
    "id": "ent.compliance.run_failed.error",
    "translation": "Compliance export is mislukt voor raak '{{.JobName}}' naar '{{.FilePath}}'"
  },
  {
    "id": "ent.data_retention.generic.license.error",
    "translation": "Jouw licentie ondersteund geen SAML authenticatie"
  },
  {
    "id": "ent.elasticsearch.aggregator_worker.create_index_job.error",
    "translation": "Elasticsearch aggregator worker failed to create the indexing job"
  },
  {
    "id": "ent.elasticsearch.aggregator_worker.delete_indexes.error",
    "translation": "Elasticsearch aggregator worker failed to delete the indexes"
  },
  {
    "id": "ent.elasticsearch.aggregator_worker.get_indexes.error",
    "translation": "Elasticsearch aggregator worker failed to get indexes"
  },
  {
    "id": "ent.elasticsearch.aggregator_worker.index_job_failed.error",
    "translation": "Elasticsearch aggregator worker failed due to the indexing job failing"
  },
  {
    "id": "ent.elasticsearch.create_client.connect_failed",
    "translation": "Setting up Elasticsearch Client Failed"
  },
  {
    "id": "ent.elasticsearch.create_index_if_not_exists.index_create_failed",
    "translation": "Failed to create Elasticsearch index"
  },
  {
    "id": "ent.elasticsearch.data_retention_delete_indexes.delete_index.error",
    "translation": "Failed to delete Elasticsearch index"
  },
  {
    "id": "ent.elasticsearch.data_retention_delete_indexes.get_indexes.error",
    "translation": "Failed to get Elasticsearch indexes"
  },
  {
    "id": "ent.elasticsearch.delete_post.error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "ent.elasticsearch.generic.disabled",
    "translation": "Elasticsearch search is not enabled on this server"
  },
  {
    "id": "ent.elasticsearch.index_post.error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "ent.elasticsearch.indexer.do_job.get_oldest_post.error",
    "translation": "The oldest post could not be retrieved from the database."
  },
  {
    "id": "ent.elasticsearch.indexer.do_job.parse_end_time.error",
    "translation": "Elasticsearch indexing worker failed to parse the end time"
  },
  {
    "id": "ent.elasticsearch.indexer.do_job.parse_start_time.error",
    "translation": "Elasticsearch indexing worker failed to parse the start time"
  },
  {
    "id": "ent.elasticsearch.not_started.error",
    "translation": "Elasticsearch is not started"
  },
  {
    "id": "ent.elasticsearch.purge_indexes.delete_failed",
    "translation": "Failed to delete Elasticsearch index"
  },
  {
    "id": "ent.elasticsearch.search_posts.disabled",
    "translation": "Elasticsearch searching is disabled on this server"
  },
  {
    "id": "ent.elasticsearch.search_posts.parse_matches_failed",
    "translation": "Failed to parse search result matches"
  },
  {
    "id": "ent.elasticsearch.search_posts.search_failed",
    "translation": "Search failed to complete"
  },
  {
    "id": "ent.elasticsearch.search_posts.unmarshall_post_failed",
    "translation": "Failed to decode search results"
  },
  {
    "id": "ent.elasticsearch.start.already_started.app_error",
    "translation": "Elasticsearch is already started"
  },
  {
    "id": "ent.elasticsearch.start.create_bulk_processor_failed.app_error",
    "translation": "Failed to create Elasticsearch bulk processor"
  },
  {
    "id": "ent.elasticsearch.start.start_bulk_processor_failed.app_error",
    "translation": "Failed to start Elasticsearch bulk processor"
  },
  {
    "id": "ent.elasticsearch.stop.already_stopped.app_error",
    "translation": "Elasticsearch is already stopped"
  },
  {
    "id": "ent.elasticsearch.test_config.connect_failed",
    "translation": "Connectie naar Elasticsearch server is mislukt."
  },
  {
    "id": "ent.elasticsearch.test_config.indexing_disabled.error",
    "translation": "Elasticsearch is disabled."
  },
  {
    "id": "ent.elasticsearch.test_config.license.error",
    "translation": "Your license does not support Elasticsearch."
  },
  {
    "id": "ent.elasticsearch.test_config.reenter_password",
    "translation": "The Elasticsearch Server URL or Username has changed. Please re-enter the Elasticsearch password to test connection."
  },
  {
    "id": "ent.ldap.create_fail",
    "translation": "Unable to create LDAP user."
  },
  {
    "id": "ent.ldap.disabled.app_error",
    "translation": "AD/LDAP uitgeschakeld of licentie ondersteund geen AD/LDAP."
  },
  {
    "id": "ent.ldap.do_login.bind_admin_user.app_error",
    "translation": "Kan geen verbinding maken met de AD/LDAP server. Controleer de opgegeven Bindgebruikersnaam en Bindwachtwoord."
  },
  {
    "id": "ent.ldap.do_login.invalid_password.app_error",
    "translation": "Ongeldig wachtwoord"
  },
  {
    "id": "ent.ldap.do_login.licence_disable.app_error",
    "translation": "AD/LDAP functionaliteit is uitgeschakeld met de huidige licentie. Neem contact op met de beheerder voor een upgrade van de licentie."
  },
  {
    "id": "ent.ldap.do_login.matched_to_many_users.app_error",
    "translation": "Gebruikersnaam is in gebruik door meerdere gebruikers"
  },
  {
    "id": "ent.ldap.do_login.search_ldap_server.app_error",
    "translation": "Kan niet zoeken op de AD/LDAP server"
  },
  {
    "id": "ent.ldap.do_login.unable_to_connect.app_error",
    "translation": "Kan niet verbinden met de AD/LDAP server"
  },
  {
    "id": "ent.ldap.do_login.user_filtered.app_error",
    "translation": "Je AD/LDAP account heeft niet de juiste permissies om van deze Mattermost server gebruik te maken. Vraag je Systeembeheerder om het AD/LDAP gebruikersfilter te controleren."
  },
  {
    "id": "ent.ldap.do_login.user_not_registered.app_error",
    "translation": "Gebruiker is niet bekend op de AD/LDAP server"
  },
  {
    "id": "ent.ldap.syncronize.get_all.app_error",
    "translation": "Niet mogelijk alle gebruikers te krijgen via AD/LDAP"
  },
  {
    "id": "ent.ldap.syncronize.search_failure.app_error",
    "translation": "Failed to search users in AD/LDAP. Test if the Mattermost server can connect to your AD/LDAP server and try again."
  },
  {
    "id": "ent.ldap.validate_filter.app_error",
    "translation": "Ongeldig AD/LDAP filter"
  },
  {
    "id": "ent.message_export.global_relay.attach_file.app_error",
    "translation": "Unable to add attachment to the Global Relay export."
  },
  {
    "id": "ent.message_export.global_relay.close_zip_file.app_error",
    "translation": "Unable to close the zip file."
  },
  {
    "id": "ent.message_export.global_relay.create_file_in_zip.app_error",
    "translation": "Unable to create the eml file."
  },
  {
    "id": "ent.message_export.global_relay.generate_email.app_error",
    "translation": "Unable to generate eml file data."
  },
  {
    "id": "ent.message_export.global_relay_export.deliver.close.app_error",
    "translation": "Unable to deliver the email to Global Relay."
  },
  {
    "id": "ent.message_export.global_relay_export.deliver.from_address.app_error",
    "translation": "Unable to set the email From address."
  },
  {
    "id": "ent.message_export.global_relay_export.deliver.msg.app_error",
    "translation": "Unable to set the email message."
  },
  {
    "id": "ent.message_export.global_relay_export.deliver.msg_data.app_error",
    "translation": "Unable to write the email message."
  },
  {
    "id": "ent.message_export.global_relay_export.deliver.parse_mail.app_error",
    "translation": "Unable to read the email information."
  },
  {
    "id": "ent.message_export.global_relay_export.deliver.to_address.app_error",
    "translation": "Unable to set the email To address."
  },
  {
    "id": "ent.message_export.global_relay_export.deliver.unable_to_get_file_info.app_error",
    "translation": "Unable to get the information of the export temporary file"
  },
  {
    "id": "ent.message_export.global_relay_export.deliver.unable_to_open_email_file.app_error",
    "translation": "Unable to get the an email from the temporary file"
  },
  {
    "id": "ent.message_export.global_relay_export.deliver.unable_to_open_zip_file_data.app_error",
    "translation": "Unable to open the export temporary file"
  },
  {
    "id": "ent.mfa.activate.authenticate.app_error",
    "translation": "Probleem bij het authenticeren met een MFA token"
  },
  {
    "id": "ent.mfa.activate.bad_token.app_error",
    "translation": "Ongeldige 'MFA' token"
  },
  {
    "id": "ent.mfa.activate.save_active.app_error",
    "translation": "Kan de MFA status van de gebruiker niet bijwerken"
  },
  {
    "id": "ent.mfa.deactivate.save_active.app_error",
    "translation": "Kan de MFA status van de gebruiker niet bijwerken"
  },
  {
    "id": "ent.mfa.deactivate.save_secret.app_error",
    "translation": "Fout bij het verwijderen van het MFA sleutel"
  },
  {
    "id": "ent.mfa.generate_qr_code.create_code.app_error",
    "translation": "Fout bij het genereren van een QR code"
  },
  {
    "id": "ent.mfa.generate_qr_code.save_secret.app_error",
    "translation": "Fout bij het opslaan van de MFA sleutel"
  },
  {
    "id": "ent.mfa.license_disable.app_error",
    "translation": "Uw licentie ondersteund geen multi-factor authenticatie"
  },
  {
    "id": "ent.mfa.validate_token.authenticate.app_error",
    "translation": "Er is een probleem bij het authenticeren met een MFA token opgetreden"
  },
  {
    "id": "ent.migration.migratetoldap.duplicate_field",
    "translation": "Niet mogelijk om AD/LDAP gebruikers te migreren met het opgegeven veld. Dubbele vermelding ontdekt. Verwijder alle dubbele vermeldingen en probeer opnieuw."
  },
  {
    "id": "ent.migration.migratetoldap.user_not_found",
    "translation": "Kon gebruiker niet vinden op de AD/LDAP server: "
  },
  {
    "id": "ent.migration.migratetosaml.email_already_used_by_other_user",
    "translation": "Email already used by another SAML user."
  },
  {
    "id": "ent.migration.migratetosaml.user_not_found_in_users_mapping_file",
    "translation": "User not found in the users file."
  },
  {
    "id": "ent.migration.migratetosaml.username_already_used_by_other_user",
    "translation": "Username already used by another Mattermost user."
  },
  {
    "id": "ent.saml.attribute.app_error",
    "translation": "SAML aanmelding is mislukt vanwege verkeerde attributen. Neem contact op met de beheerder."
  },
  {
    "id": "ent.saml.build_request.app_error",
    "translation": "Er is een fout opgetreden bij de aanvraag richting de Identity Provider. Neem contact op met de beheerder."
  },
  {
    "id": "ent.saml.build_request.encoding.app_error",
    "translation": "Er is een fout opgetreden tijdens het versleutelen van de aanvraag richting de Identity Provider. Neem contact op met de beheerder. "
  },
  {
    "id": "ent.saml.configure.app_error",
    "translation": "Er is een fout opgetreden tijdens het configureren van de SAML Service Provider, err=%v"
  },
  {
    "id": "ent.saml.configure.encryption_not_enabled.app_error",
    "translation": "SAML aanmelding is mislukt vanwege het ontbreken van encryptie. Neem contact op met de beheerder."
  },
  {
    "id": "ent.saml.configure.load_idp_cert.app_error",
    "translation": "Identity Provider Public Certificate File is niet gevonden. Neem contact op met de beheerder."
  },
  {
    "id": "ent.saml.configure.load_private_key.app_error",
    "translation": "SAML aanmelding is mislukt vanwege het ontbreken van de Service Provider Private Key. Neem contact op met de beheerder."
  },
  {
    "id": "ent.saml.configure.not_encrypted_response.app_error",
    "translation": "SAML aanmelding is mislukt omdat de communicatie met de Identity Provider niet versleuteld is . Neem contact op met de beheerder."
  },
  {
    "id": "ent.saml.do_login.decrypt.app_error",
    "translation": "SAML aanmelding is mislukt omdat er een fout is opgetreden tijdens het ondersleuteling van het bericht van de Identity Provider. Neem contact op met de beheerder."
  },
  {
    "id": "ent.saml.do_login.empty_response.app_error",
    "translation": "We hebben leeg anwtoord ontvangen van de Identity Provider."
  },
  {
    "id": "ent.saml.do_login.parse.app_error",
    "translation": "Er is een fout opgetreden tijdens het versleutelen van de aanvraag richting de Identity Provider. Neem contact op met de beheerder."
  },
  {
    "id": "ent.saml.do_login.validate.app_error",
    "translation": "Er is een fout opgetreden tijdens het versleutelen van de aanvraag richting de Identity Provider. Neem contact op met de beheerder."
  },
  {
    "id": "ent.saml.license_disable.app_error",
    "translation": "Jouw licentie ondersteund geen SAML authenticatie"
  },
  {
    "id": "ent.saml.metadata.app_error",
    "translation": "Er is een fout opgetreden tijdens het opstellen van Service Provider Metadata."
  },
  {
    "id": "ent.saml.service_disable.app_error",
    "translation": "SAML wordt niet ondersteund, of is niet geconfigureerd op deze server."
  },
  {
    "id": "jobs.do_job.batch_size.parse_error",
    "translation": "Could not parse message export job BatchSize."
  },
  {
    "id": "jobs.do_job.batch_start_timestamp.parse_error",
    "translation": "Could not parse message export job ExportFromTimestamp."
  },
  {
    "id": "jobs.request_cancellation.status.error",
    "translation": "Could not request cancellation for job that is not in a cancelable state."
  },
  {
    "id": "jobs.set_job_error.update.error",
    "translation": "Failed to set job status to error"
  },
  {
    "id": "jobs.start_synchronize_job.timeout",
    "translation": "Reached AD/LDAP synchronization job timeout."
  },
  {
    "id": "manaultesting.manual_test.parse.app_error",
    "translation": "Kan URL niet vewerken"
  },
  {
    "id": "manaultesting.test_autolink.unable.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "mattermost.bulletin.subject",
    "translation": "Mattermost beveiligings bulletin"
  },
  {
    "id": "migrations.worker.run_advanced_permissions_phase_2_migration.invalid_progress",
    "translation": "Migration failed due to invalid progress data."
  },
  {
    "id": "migrations.worker.run_migration.unknown_key",
    "translation": "Unable to run migration job due to unknown migration key."
  },
  {
    "id": "model.access.is_valid.access_token.app_error",
    "translation": "Ongeldig toegangs token"
  },
  {
    "id": "model.access.is_valid.client_id.app_error",
    "translation": "Ongeldig client id "
  },
  {
    "id": "model.access.is_valid.redirect_uri.app_error",
    "translation": "Ongeldige doorverwijzings uri"
  },
  {
    "id": "model.access.is_valid.refresh_token.app_error",
    "translation": "Ongeldig verversings token"
  },
  {
    "id": "model.access.is_valid.user_id.app_error",
    "translation": "Ongeldige gebruikers id"
  },
  {
    "id": "model.authorize.is_valid.auth_code.app_error",
    "translation": "Ongeldige authorizatie code"
  },
  {
    "id": "model.authorize.is_valid.client_id.app_error",
    "translation": "Ongeldig client id"
  },
  {
    "id": "model.authorize.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.authorize.is_valid.expires.app_error",
    "translation": "Verloopt moet ingesteld zijn"
  },
  {
    "id": "model.authorize.is_valid.redirect_uri.app_error",
    "translation": "Ongeldige doorverwijzing uri"
  },
  {
    "id": "model.authorize.is_valid.response_type.app_error",
    "translation": "Invalid response type"
  },
  {
    "id": "model.authorize.is_valid.scope.app_error",
    "translation": "Ongeldige omgeving"
  },
  {
    "id": "model.authorize.is_valid.state.app_error",
    "translation": "Ongeldige status"
  },
  {
    "id": "model.authorize.is_valid.user_id.app_error",
    "translation": "Ongeldige gebruikers id"
  },
  {
    "id": "model.channel.is_valid.2_or_more.app_error",
    "translation": "Naam oet 2 of meer kleine letters bevatten"
  },
  {
    "id": "model.channel.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.channel.is_valid.creator_id.app_error",
    "translation": "Ongeldig aanmaak id"
  },
  {
    "id": "model.channel.is_valid.display_name.app_error",
    "translation": "Ongeldige weergave naam"
  },
  {
    "id": "model.channel.is_valid.header.app_error",
    "translation": "Ongeldige header"
  },
  {
    "id": "model.channel.is_valid.id.app_error",
    "translation": "Ongeldig Id"
  },
  {
    "id": "model.channel.is_valid.purpose.app_error",
    "translation": "Ongeldig doel"
  },
  {
    "id": "model.channel.is_valid.type.app_error",
    "translation": "Ongeldige type"
  },
  {
    "id": "model.channel.is_valid.update_at.app_error",
    "translation": "Het veld 'bijgewerkt op' moet een geldige tijd zijn"
  },
  {
    "id": "model.channel_member.is_valid.channel_id.app_error",
    "translation": "Ongeldig kanaal id"
  },
  {
    "id": "model.channel_member.is_valid.email_value.app_error",
    "translation": "Invalid email notification value"
  },
  {
    "id": "model.channel_member.is_valid.notify_level.app_error",
    "translation": "Ongeldig waarschuwings nivo"
  },
  {
    "id": "model.channel_member.is_valid.push_level.app_error",
    "translation": "Invalid push notification level"
  },
  {
    "id": "model.channel_member.is_valid.unread_level.app_error",
    "translation": "Ongeldige markering ongelezen nivo"
  },
  {
    "id": "model.channel_member.is_valid.user_id.app_error",
    "translation": "Ongeldige gebruikers id"
  },
  {
    "id": "model.client.connecting.app_error",
    "translation": "Er is een probleem opgetreden tijdens het verbinden met de server"
  },
  {
    "id": "model.client.create_emoji.emoji.app_error",
    "translation": "Fout bij het toevoegen van emoji aan verzoek"
  },
  {
    "id": "model.client.create_emoji.image.app_error",
    "translation": "Fout bij het toevoegen van afbeelding aan verzoek"
  },
  {
    "id": "model.client.create_emoji.writer.app_error",
    "translation": "Fout bij het schrijven van verzoek"
  },
  {
    "id": "model.client.get_flagged_posts_in_channel.missing_parameter.app_error",
    "translation": "Missing channel parameter"
  },
  {
    "id": "model.client.get_flagged_posts_in_team.missing_parameter.app_error",
    "translation": "Missing team parameter"
  },
  {
    "id": "model.client.get_team_icon.app_error",
    "translation": "Unable to read the team icon from the body response."
  },
  {
    "id": "model.client.read_file.app_error",
    "translation": "Er is een probleem opgestreden tijdens het opzoeken van het gebruikersprofiel"
  },
  {
    "id": "model.client.set_profile_user.no_file.app_error",
    "translation": "Geen bestand bij 'image' in aanvraag"
  },
  {
    "id": "model.client.set_profile_user.writer.app_error",
    "translation": "Fout bij het schrijven van verzoek"
  },
  {
    "id": "model.client.set_team_icon.no_file.app_error",
    "translation": "Geen bestand bij 'image' in aanvraag"
  },
  {
    "id": "model.client.set_team_icon.writer.app_error",
    "translation": "Fout bij het schrijven van verzoek"
  },
  {
    "id": "model.client.upload_post_attachment.channel_id.app_error",
    "translation": "Error writing channel id to multipart form"
  },
  {
    "id": "model.client.upload_post_attachment.file.app_error",
    "translation": "Error writing file to multipart form"
  },
  {
    "id": "model.client.upload_post_attachment.file_size.app_error",
    "translation": "Error writing fileSize to multipart form"
  },
  {
    "id": "model.client.upload_post_attachment.import_from.app_error",
    "translation": "Error writing importFrom to multipart form"
  },
  {
    "id": "model.client.upload_post_attachment.writer.app_error",
    "translation": "Error closing multipart writer"
  },
  {
    "id": "model.client.upload_saml_cert.app_error",
    "translation": "Error creating SAML certificate multipart form request"
  },
  {
    "id": "model.client.writer.app_error",
    "translation": "Unable to build multipart request"
  },
  {
    "id": "model.cluster.is_valid.create_at.app_error",
    "translation": "CreateAt must be set"
  },
  {
    "id": "model.cluster.is_valid.hostname.app_error",
    "translation": "Hostname must be set"
  },
  {
    "id": "model.cluster.is_valid.id.app_error",
    "translation": "Ongeldig Id"
  },
  {
    "id": "model.cluster.is_valid.last_ping_at.app_error",
    "translation": "LastPingAt must be set"
  },
  {
    "id": "model.cluster.is_valid.name.app_error",
    "translation": "ClusterName must be set"
  },
  {
    "id": "model.cluster.is_valid.type.app_error",
    "translation": "Type must be set"
  },
  {
    "id": "model.command.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.command.is_valid.description.app_error",
    "translation": "Ongeldige beschrijving"
  },
  {
    "id": "model.command.is_valid.display_name.app_error",
    "translation": "Ongeldige type"
  },
  {
    "id": "model.command.is_valid.id.app_error",
    "translation": "Ongeldig Id"
  },
  {
    "id": "model.command.is_valid.method.app_error",
    "translation": "Ongeldige methode"
  },
  {
    "id": "model.command.is_valid.team_id.app_error",
    "translation": "Ongeldig team id"
  },
  {
    "id": "model.command.is_valid.token.app_error",
    "translation": "Ongeldig token"
  },
  {
    "id": "model.command.is_valid.trigger.app_error",
    "translation": "Ongeldig trigger-woord"
  },
  {
    "id": "model.command.is_valid.update_at.app_error",
    "translation": "Het veld 'bijgewerkt op' moet een geldige tijd zijn"
  },
  {
    "id": "model.command.is_valid.url.app_error",
    "translation": "Invalid URL"
  },
  {
    "id": "model.command.is_valid.url_http.app_error",
    "translation": "Ongeldige URL. Een geldige URl begint met http:// of https://"
  },
  {
    "id": "model.command.is_valid.user_id.app_error",
    "translation": "Ongeldig gebruikers id"
  },
  {
    "id": "model.command_hook.channel_id.app_error",
    "translation": "Ongeldig kanaal id"
  },
  {
    "id": "model.command_hook.command_id.app_error",
    "translation": "Invalid command id"
  },
  {
    "id": "model.command_hook.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.command_hook.id.app_error",
    "translation": "Invalid command hook id"
  },
  {
    "id": "model.command_hook.parent_id.app_error",
    "translation": "Ongeldig ouder id"
  },
  {
    "id": "model.command_hook.root_id.app_error",
    "translation": "Ongeldig start id"
  },
  {
    "id": "model.command_hook.user_id.app_error",
    "translation": "Ongeldige gebruikers id"
  },
  {
    "id": "model.compliance.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.compliance.is_valid.desc.app_error",
    "translation": "Ongeldige omschrijving"
  },
  {
    "id": "model.compliance.is_valid.end_at.app_error",
    "translation": "Tot en met moet een geldige tijd zijn"
  },
  {
    "id": "model.compliance.is_valid.id.app_error",
    "translation": "Ongeldig Id"
  },
  {
    "id": "model.compliance.is_valid.start_at.app_error",
    "translation": "Vanaf moet een geldige tijd zijn"
  },
  {
    "id": "model.compliance.is_valid.start_end_at.app_error",
    "translation": "Tot en met, moet later zijn dan Vanaf"
  },
  {
    "id": "model.config.is_valid.allow_cookies_for_subdomains.app_error",
    "translation": "Allowing cookies for subdomains requires SiteURL to be set."
  },
  {
    "id": "model.config.is_valid.atmos_camo_image_proxy_options.app_error",
    "translation": "Invalid atmos/camo image proxy options for service settings. Must be set to your shared key."
  },
  {
    "id": "model.config.is_valid.cluster_email_batching.app_error",
    "translation": "Niet mogelijk om bulk email aan te zetten als clustering aan staat."
  },
  {
    "id": "model.config.is_valid.data_retention.deletion_job_start_time.app_error",
    "translation": "Data retention job start time must be a 24-hour time stamp in the form HH:MM."
  },
  {
    "id": "model.config.is_valid.data_retention.file_retention_days_too_low.app_error",
    "translation": "File retention must be one day or longer."
  },
  {
    "id": "model.config.is_valid.data_retention.message_retention_days_too_low.app_error",
    "translation": "Message retention must be one day or longer."
  },
  {
    "id": "model.config.is_valid.display.custom_url_schemes.app_error",
    "translation": "The custom URL scheme {{.Scheme}} is invalid. Custom URL schemes must start with a letter and contain only letters, numbers and hyphen (-)."
  },
  {
    "id": "model.config.is_valid.elastic_search.aggregate_posts_after_days.app_error",
    "translation": "Elasticsearch AggregatePostsAfterDays setting must be a number greater than or equal to 1"
  },
  {
    "id": "model.config.is_valid.elastic_search.bulk_indexing_time_window_seconds.app_error",
    "translation": "Elasticsearch Bulk Indexing Time Window must be at least 1 second."
  },
  {
    "id": "model.config.is_valid.elastic_search.connection_url.app_error",
    "translation": "Elastic Search Username instelling moet ingevuld zijn wanneer Elastic Search indexing is ingeschakeld."
  },
  {
    "id": "model.config.is_valid.elastic_search.enable_searching.app_error",
    "translation": "Elastic Search IndexingEnabled setting must be set to true when Elastic Search SearchEnabled is set to true."
  },
  {
    "id": "model.config.is_valid.elastic_search.live_indexing_batch_size.app_error",
    "translation": "Elasticsearch Live Indexing Batch Size must be at least 1"
  },
  {
    "id": "model.config.is_valid.elastic_search.posts_aggregator_job_start_time.app_error",
    "translation": "Elasticsearch PostsAggregatorJobStartTime setting must be a time in the format \"hh:mm\""
  },
  {
    "id": "model.config.is_valid.elastic_search.request_timeout_seconds.app_error",
    "translation": "Elasticsearch Request Timeout must be at least 1 second."
  },
  {
    "id": "model.config.is_valid.email_batching_buffer_size.app_error",
    "translation": "Verkeerde buffer grootte bij bulk email instellingen. Moet 0 zijn of een positief nummer."
  },
  {
    "id": "model.config.is_valid.email_batching_interval.app_error",
    "translation": "Verkeerde interval bij bulk email instellingen. Moet 30 secondes of meer zijn."
  },
  {
    "id": "model.config.is_valid.email_notification_contents_type.app_error",
    "translation": "Invalid email notification contents type for email settings. Must be one of either 'full' or 'generic'."
  },
  {
    "id": "model.config.is_valid.email_salt.app_error",
    "translation": "Ongeldige 'salt' voor uitnodigings e-mail instellingen. De salt moet 32 of meer karakters hebben."
  },
  {
    "id": "model.config.is_valid.email_security.app_error",
    "translation": "Ongeldige beveiligings instelling bij e-mail. Moet '', 'TLS' of 'STARTTLS' zijn"
  },
  {
    "id": "model.config.is_valid.encrypt_sql.app_error",
    "translation": "Ongeldige encryptie sleutel bij de SQL instellingen. Deze moet 32 of karakters hebben."
  },
  {
    "id": "model.config.is_valid.file_driver.app_error",
    "translation": "Ongeldige stuurprogramma voor bestand instellingen. Deze moet 'lokaal' of 'amazons3' zijn"
  },
  {
    "id": "model.config.is_valid.file_salt.app_error",
    "translation": "Ongeldige publieke 'salt' bij bestands instellingen. De salt moet 32 of meer karakters hebben."
  },
  {
    "id": "model.config.is_valid.group_unread_channels.app_error",
    "translation": "Invalid group unread channels for service settings. Must be 'disabled', 'default_on', or 'default_off'."
  },
  {
    "id": "model.config.is_valid.image_proxy_type.app_error",
    "translation": "Invalid image proxy type for service settings."
  },
  {
    "id": "model.config.is_valid.ldap_basedn",
    "translation": "AD/LDAP veld \"BaseDN\" is verplicht."
  },
  {
    "id": "model.config.is_valid.ldap_email",
    "translation": "AD/LDAP veld \"Email Attribute\" is verplicht."
  },
  {
    "id": "model.config.is_valid.ldap_id",
    "translation": "AD/LDAP veld \"ID Attribute\" is verplicht."
  },
  {
    "id": "model.config.is_valid.ldap_login_id",
    "translation": "AD/LDAP veld \"ID Attribute\" is verplicht."
  },
  {
    "id": "model.config.is_valid.ldap_max_page_size.app_error",
    "translation": "Ongeldige max page size waarde."
  },
  {
    "id": "model.config.is_valid.ldap_security.app_error",
    "translation": "Ongeldige verbindings instelling bij AD/LDAP instellingen. Keuze uit; '', 'TLS' of 'STARTTLS'"
  },
  {
    "id": "model.config.is_valid.ldap_server",
    "translation": "AD/LDAP veld \"AD/LDAP Server\" is verplicht."
  },
  {
    "id": "model.config.is_valid.ldap_sync_interval.app_error",
    "translation": "Verkeerde sync interval tijd. Moet minimaal een minuut zijn."
  },
  {
    "id": "model.config.is_valid.ldap_username",
    "translation": "AD/LDAP veld \"Username Attribute\" is verplicht."
  },
  {
    "id": "model.config.is_valid.listen_address.app_error",
    "translation": "Ongeldig luister adres bij de service instellingen. Deze moet geconfigureerd zijn."
  },
  {
    "id": "model.config.is_valid.localization.available_locales.app_error",
    "translation": "Available Languages must contain Default Client Language"
  },
  {
    "id": "model.config.is_valid.login_attempts.app_error",
    "translation": "Maximaal aantal inlog poging bij service instellingen. Moet een getal grote dan 0 zijn."
  },
  {
    "id": "model.config.is_valid.max_burst.app_error",
    "translation": "Maximum burst size must be greater than zero."
  },
  {
    "id": "model.config.is_valid.max_channels.app_error",
    "translation": "Ongeldig maximaal aantal gebruikers per team bij team instellingen. Moet een getal groter dan 0 zijn."
  },
  {
    "id": "model.config.is_valid.max_file_size.app_error",
    "translation": "Invalid max file size for file settings. Must be a whole number greater than zero."
  },
  {
    "id": "model.config.is_valid.max_notify_per_channel.app_error",
    "translation": "Ongeldig maximaal aantal gebruikers per team bij team instellingen. Moet een getal groter dan 0 zijn."
  },
  {
    "id": "model.config.is_valid.max_users.app_error",
    "translation": "Ongeldig maximaal aantal gebruikers per team bij team instellingen. Moet een getal groter dan 0 zijn."
  },
  {
    "id": "model.config.is_valid.message_export.batch_size.app_error",
    "translation": "Message export job BatchSize must be a positive integer"
  },
  {
    "id": "model.config.is_valid.message_export.daily_runtime.app_error",
    "translation": "Message export job DailyRuntime must be a 24-hour time stamp in the form HH:MM."
  },
  {
    "id": "model.config.is_valid.message_export.enable.app_error",
    "translation": "Message export job EnableExport setting must be either true or false"
  },
  {
    "id": "model.config.is_valid.message_export.export_from.app_error",
    "translation": "Message export job ExportFromTimestamp must be a timestamp (expressed in seconds since unix epoch). Only messages sent after this timestamp will be exported."
  },
  {
    "id": "model.config.is_valid.message_export.export_type.app_error",
    "translation": "Message export job ExportFormat must be one of 'actiance', 'csv' or 'globalrelay'"
  },
  {
    "id": "model.config.is_valid.message_export.global_relay.config_missing.app_error",
    "translation": "Message export job ExportFormat is set to 'globalrelay', but GlobalRelaySettings are missing"
  },
  {
    "id": "model.config.is_valid.message_export.global_relay.customer_type.app_error",
    "translation": "Message export GlobalRelaySettings.CustomerType must be set to one of either 'A9' or 'A10'"
  },
  {
    "id": "model.config.is_valid.message_export.global_relay.email_address.app_error",
    "translation": "Message export job GlobalRelaySettings.EmailAddress must be set to a valid email address"
  },
  {
    "id": "model.config.is_valid.message_export.global_relay.smtp_password.app_error",
    "translation": "Message export job GlobalRelaySettings.SmtpPassword must be set"
  },
  {
    "id": "model.config.is_valid.message_export.global_relay.smtp_username.app_error",
    "translation": "Message export job GlobalRelaySettings.SmtpUsername must be set"
  },
  {
    "id": "model.config.is_valid.password_length.app_error",
    "translation": "Wachtwoord moet een lengte hebben van minimaal {{.MinLength}} en/of maximaal {{.MaxLength}}"
  },
  {
    "id": "model.config.is_valid.rate_mem.app_error",
    "translation": "Ongeldige 'geheugen opslag' bij frequentie beperings instellingen. Moet een getal groter dan 0 zijn"
  },
  {
    "id": "model.config.is_valid.rate_sec.app_error",
    "translation": "Ongeldige frequentie beperings instelling. Moet een getal groter dan 0 zijn"
  },
  {
    "id": "model.config.is_valid.read_timeout.app_error",
    "translation": "Invalid value for read timeout."
  },
  {
    "id": "model.config.is_valid.restrict_direct_message.app_error",
    "translation": "Ongeldig privé bericht beperking. Moet zijn 'allen' of 'team'"
  },
  {
    "id": "model.config.is_valid.saml_assertion_consumer_service_url.app_error",
    "translation": "Ongeldige URL. Een geldige URL begint met http:// of https://"
  },
  {
    "id": "model.config.is_valid.saml_email_attribute.app_error",
    "translation": "Ongeldig Email attribuut. Dit moet ingesteld worden."
  },
  {
    "id": "model.config.is_valid.saml_idp_cert.app_error",
    "translation": "Publiek certificaat van Identity Provider is niet gevonden. Vergeten te uploaden?"
  },
  {
    "id": "model.config.is_valid.saml_idp_descriptor_url.app_error",
    "translation": "Ongeldige URL. Een geldige URL begint met http:// of https://."
  },
  {
    "id": "model.config.is_valid.saml_idp_url.app_error",
    "translation": "Ongeldige URL. Een geldige URl begint met http:// of https://."
  },
  {
    "id": "model.config.is_valid.saml_private_key.app_error",
    "translation": "Service Provider Private Key mist. Wellicht vergeten deze up te loaden?"
  },
  {
    "id": "model.config.is_valid.saml_public_cert.app_error",
    "translation": "Publiek certificaat van Identity Provider is niet gevonden. Vergeten te uploaden?"
  },
  {
    "id": "model.config.is_valid.saml_username_attribute.app_error",
    "translation": "Ongeldig gebruikersnaam attribuut. Dit moet ingesteld worden."
  },
  {
    "id": "model.config.is_valid.site_url.app_error",
    "translation": "Ikoon URL moet een geldige URl zijn, die begint met http:// of https://"
  },
  {
    "id": "model.config.is_valid.site_url_email_batching.app_error",
    "translation": "Niet mogelijk om bulk email aan te zetten als de SiteURL niet is ingevuld."
  },
  {
    "id": "model.config.is_valid.sitename_length.app_error",
    "translation": "Site naam moet minder dan of gelijk aan {{.MaxLength}} karakters."
  },
  {
    "id": "model.config.is_valid.sql_conn_max_lifetime_milliseconds.app_error",
    "translation": "Invalid connection maximum lifetime for SQL settings. Must be a non-negative number."
  },
  {
    "id": "model.config.is_valid.sql_data_src.app_error",
    "translation": "Ongeldige brond bij SQL instellingen. Moet ingesteld zijn."
  },
  {
    "id": "model.config.is_valid.sql_driver.app_error",
    "translation": "Ongeldig stuurprogramma bij SQL intellingen. Keuze uit mysql of postgres"
  },
  {
    "id": "model.config.is_valid.sql_idle.app_error",
    "translation": "Ongeldig maximum activiteitslooze verbidingen bij SQL instellingen. Moet een getal groter dan 0 zijn."
  },
  {
    "id": "model.config.is_valid.sql_max_conn.app_error",
    "translation": "Ongeldig maximaal aantal open verbindingen bij SQL instellingen. Moet een getal groter dan 0 zijn."
  },
  {
    "id": "model.config.is_valid.sql_query_timeout.app_error",
    "translation": "Ongeldige profiel hoogte bij bestands instellingen. Moet groter dan 0 zijn."
  },
  {
    "id": "model.config.is_valid.teammate_name_display.app_error",
    "translation": "Invalid teammate display. Must be 'full_name', 'nickname_full_name' or 'username'"
  },
  {
    "id": "model.config.is_valid.time_between_user_typing.app_error",
    "translation": "Time between user typing updates should not be set to less than 1000 milliseconds."
  },
  {
    "id": "model.config.is_valid.webrtc_gateway_admin_secret.app_error",
    "translation": "WebRTC Gateway Admin Secret moet worden ingesteld."
  },
  {
    "id": "model.config.is_valid.webrtc_gateway_admin_url.app_error",
    "translation": "WebRTC Gateway Admin Url moet een geldige URL zijn en starten met http:// of https://."
  },
  {
    "id": "model.config.is_valid.webrtc_gateway_ws_url.app_error",
    "translation": "WebRTC Gateway Websocket Url moet een geldige URL zijn en starten met ws:// of wss://."
  },
  {
    "id": "model.config.is_valid.webrtc_stun_uri.app_error",
    "translation": "WebRTC STUN URI must be a valid URL starting with stun:"
  },
  {
    "id": "model.config.is_valid.webrtc_turn_shared_key.app_error",
    "translation": "WebRTC TURN Gebruikersnaam kan niet leeg zijn als de TURN URI is ingesteld."
  },
  {
    "id": "model.config.is_valid.webrtc_turn_uri.app_error",
    "translation": "WebRTC TURN URI must be a valid URI and start with turn:"
  },
  {
    "id": "model.config.is_valid.webrtc_turn_username.app_error",
    "translation": "WebRTC TURN Gebruikersnaam kan niet leeg zijn als de TURN URI is ingesteld."
  },
  {
    "id": "model.config.is_valid.webserver_security.app_error",
    "translation": "Invalid value for webserver connection security."
  },
  {
    "id": "model.config.is_valid.websocket_url.app_error",
    "translation": "WebRTC Gateway Websocket Url moet een geldige URL zijn en starten met ws:// of wss://."
  },
  {
    "id": "model.config.is_valid.write_timeout.app_error",
    "translation": "Invalid value for write timeout."
  },
  {
    "id": "model.emoji.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.emoji.id.app_error",
    "translation": "Ongeldig emoji id"
  },
  {
    "id": "model.emoji.name.app_error",
    "translation": "Naam moet 1 tot 64 kleine letters bevatten"
  },
  {
    "id": "model.emoji.update_at.app_error",
    "translation": "Bijgewerkt op moet een geldige tijd zijn"
  },
  {
    "id": "model.emoji.user_id.app_error",
    "translation": "Ongeldig aanmaak id"
  },
  {
    "id": "model.file_info.get.gif.app_error",
    "translation": "Kan gif niet decoderen."
  },
  {
    "id": "model.file_info.is_valid.create_at.app_error",
    "translation": "Invalid value for create_at."
  },
  {
    "id": "model.file_info.is_valid.id.app_error",
    "translation": "Invalid value for id."
  },
  {
    "id": "model.file_info.is_valid.path.app_error",
    "translation": "Invalid value for path."
  },
  {
    "id": "model.file_info.is_valid.post_id.app_error",
    "translation": "Invalid value for post_id."
  },
  {
    "id": "model.file_info.is_valid.update_at.app_error",
    "translation": "Invalid value for update_at."
  },
  {
    "id": "model.file_info.is_valid.user_id.app_error",
    "translation": "Invalid value for user_id."
  },
  {
    "id": "model.incoming_hook.channel_id.app_error",
    "translation": "Ongeldig kanaal id"
  },
  {
    "id": "model.incoming_hook.create_at.app_error",
    "translation": "Aangemaakt op, moet een geldige tijd zijn"
  },
  {
    "id": "model.incoming_hook.description.app_error",
    "translation": "Ongeldige omschrijving"
  },
  {
    "id": "model.incoming_hook.display_name.app_error",
    "translation": "Ongeldige type"
  },
  {
    "id": "model.incoming_hook.icon_url.app_error",
    "translation": "Ongeldig start id"
  },
  {
    "id": "model.incoming_hook.id.app_error",
    "translation": "Ongeldig Id"
  },
  {
    "id": "model.incoming_hook.parse_data.app_error",
    "translation": "Kan binnenkomende data niet verwerken"
  },
  {
    "id": "model.incoming_hook.team_id.app_error",
    "translation": "Ongeldig team id"
  },
  {
    "id": "model.incoming_hook.update_at.app_error",
    "translation": "Het veld 'bijgewerkt op' moet een geldige tijd zijn"
  },
  {
    "id": "model.incoming_hook.user_id.app_error",
    "translation": "Ongeldig gebruikers id"
  },
  {
    "id": "model.incoming_hook.username.app_error",
    "translation": "Ongeldige gebruikersnaam"
  },
  {
    "id": "model.job.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.job.is_valid.id.app_error",
    "translation": "Ongeldige type"
  },
  {
    "id": "model.job.is_valid.status.app_error",
    "translation": "Invalid job status"
  },
  {
    "id": "model.job.is_valid.type.app_error",
    "translation": "Ongeldige type"
  },
  {
    "id": "model.license_record.is_valid.create_at.app_error",
    "translation": "Invalid value for create_at when uploading a license."
  },
  {
    "id": "model.license_record.is_valid.id.app_error",
    "translation": "Invalid value for id when uploading a license."
  },
  {
    "id": "model.oauth.is_valid.app_id.app_error",
    "translation": "Ongeldig app id"
  },
  {
    "id": "model.oauth.is_valid.callback.app_error",
    "translation": "Ongeldige URL. Een geldige URl begint met http:// of https://."
  },
  {
    "id": "model.oauth.is_valid.client_secret.app_error",
    "translation": "Ongeldig client geheim"
  },
  {
    "id": "model.oauth.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.oauth.is_valid.creator_id.app_error",
    "translation": "Ongeldige maker id"
  },
  {
    "id": "model.oauth.is_valid.description.app_error",
    "translation": "Ongeldige beschrijving"
  },
  {
    "id": "model.oauth.is_valid.homepage.app_error",
    "translation": "Beginpagina moet een geldige URL zijn, een geldige URl begint met http:// of https://."
  },
  {
    "id": "model.oauth.is_valid.icon_url.app_error",
    "translation": "Ikoon URL moet een geldige URl zijn, die begint met http:// of https://"
  },
  {
    "id": "model.oauth.is_valid.name.app_error",
    "translation": "Ongeldige naam"
  },
  {
    "id": "model.oauth.is_valid.update_at.app_error",
    "translation": "Het veld 'bijgewerkt op' moet een geldige tijd zijn"
  },
  {
    "id": "model.outgoing_hook.icon_url.app_error",
    "translation": "Ongeldige omgeving"
  },
  {
    "id": "model.outgoing_hook.is_valid.callback.app_error",
    "translation": "Ongeldige 'callback' urls"
  },
  {
    "id": "model.outgoing_hook.is_valid.channel_id.app_error",
    "translation": "Ongeldig kanaal id"
  },
  {
    "id": "model.outgoing_hook.is_valid.content_type.app_error",
    "translation": "Invalid value for content_type"
  },
  {
    "id": "model.outgoing_hook.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.outgoing_hook.is_valid.description.app_error",
    "translation": "Ongeldige beschrijving"
  },
  {
    "id": "model.outgoing_hook.is_valid.display_name.app_error",
    "translation": "Ongeldige type"
  },
  {
    "id": "model.outgoing_hook.is_valid.id.app_error",
    "translation": "Ongeldig Id"
  },
  {
    "id": "model.outgoing_hook.is_valid.team_id.app_error",
    "translation": "Ongeldig team id"
  },
  {
    "id": "model.outgoing_hook.is_valid.token.app_error",
    "translation": "Ongeldig token"
  },
  {
    "id": "model.outgoing_hook.is_valid.trigger_words.app_error",
    "translation": "Ongeldige trigger-woorden"
  },
  {
    "id": "model.outgoing_hook.is_valid.update_at.app_error",
    "translation": "Het veld 'bijgewerkt op' moet een geldige tijd zijn"
  },
  {
    "id": "model.outgoing_hook.is_valid.url.app_error",
    "translation": "Ongeldige 'callback' URL's. Iedere geldige URL moet beginnen met http:// of https://"
  },
  {
    "id": "model.outgoing_hook.is_valid.user_id.app_error",
    "translation": "Ongeldige gebruikers id"
  },
  {
    "id": "model.outgoing_hook.is_valid.words.app_error",
    "translation": "Ongeldige trigger-woorden"
  },
  {
    "id": "model.outgoing_hook.username.app_error",
    "translation": "Ongeldige gebruikersnaam"
  },
  {
    "id": "model.plugin_command.error.app_error",
    "translation": "An error occurred while trying to execute this command."
  },
  {
    "id": "model.plugin_key_value.is_valid.key.app_error",
    "translation": "Invalid key, must be more than {{.Min}} and a of maximum {{.Max}} characters long."
  },
  {
    "id": "model.plugin_key_value.is_valid.plugin_id.app_error",
    "translation": "Invalid plugin ID, must be more than {{.Min}} and a of maximum {{.Max}} characters long."
  },
  {
    "id": "model.post.is_valid.channel_id.app_error",
    "translation": "Ongeldige kanaal id"
  },
  {
    "id": "model.post.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd bevatten"
  },
  {
    "id": "model.post.is_valid.file_ids.app_error",
    "translation": "Ongeldige bestands-ids"
  },
  {
    "id": "model.post.is_valid.filenames.app_error",
    "translation": "Ongeldige bestandsnaamen"
  },
  {
    "id": "model.post.is_valid.hashtags.app_error",
    "translation": "Ongeldige hashtags"
  },
  {
    "id": "model.post.is_valid.id.app_error",
    "translation": "Ongeldig Id"
  },
  {
    "id": "model.post.is_valid.msg.app_error",
    "translation": "Ongeldig bericht"
  },
  {
    "id": "model.post.is_valid.original_id.app_error",
    "translation": "Ongeldige orgineel id"
  },
  {
    "id": "model.post.is_valid.parent_id.app_error",
    "translation": "Ongeldig ouder id"
  },
  {
    "id": "model.post.is_valid.props.app_error",
    "translation": "Ongeldige eigenschappen"
  },
  {
    "id": "model.post.is_valid.root_id.app_error",
    "translation": "Ongeldig start id"
  },
  {
    "id": "model.post.is_valid.root_parent.app_error",
    "translation": "Ongeldig start id, moet gezet zijn, als ouder id gezet is"
  },
  {
    "id": "model.post.is_valid.type.app_error",
    "translation": "Ongeldig type"
  },
  {
    "id": "model.post.is_valid.update_at.app_error",
    "translation": "Het veld 'bijgewerkt op' moet een geldige tijd zijn"
  },
  {
    "id": "model.post.is_valid.user_id.app_error",
    "translation": "Ongeldig gebruikers id"
  },
  {
    "id": "model.preference.is_valid.category.app_error",
    "translation": "Ongeldige categorie"
  },
  {
    "id": "model.preference.is_valid.id.app_error",
    "translation": "Ongeldig gebruikers id"
  },
  {
    "id": "model.preference.is_valid.name.app_error",
    "translation": "Ongeldige naam"
  },
  {
    "id": "model.preference.is_valid.theme.app_error",
    "translation": "Ongeldig thema"
  },
  {
    "id": "model.preference.is_valid.value.app_error",
    "translation": "Waarde it te lang"
  },
  {
    "id": "model.reaction.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.reaction.is_valid.emoji_name.app_error",
    "translation": "Ongeldig emoji id"
  },
  {
    "id": "model.reaction.is_valid.post_id.app_error",
    "translation": "Ongeldig start id"
  },
  {
    "id": "model.reaction.is_valid.user_id.app_error",
    "translation": "Ongeldige gebruikers id"
  },
  {
    "id": "model.team.is_valid.characters.app_error",
    "translation": "Naam oet 2 of meer kleine letters bevatten"
  },
  {
    "id": "model.team.is_valid.company.app_error",
    "translation": "Ongeldige bedrijfsnaam"
  },
  {
    "id": "model.team.is_valid.create_at.app_error",
    "translation": "Aangemaakt op moet een geldige tijd zijn"
  },
  {
    "id": "model.team.is_valid.description.app_error",
    "translation": "Ongeldige beschrijving"
  },
  {
    "id": "model.team.is_valid.domains.app_error",
    "translation": "Toegestane domeinen is ongeldig"
  },
  {
    "id": "model.team.is_valid.email.app_error",
    "translation": "Ongeldige e-mail"
  },
  {
    "id": "model.team.is_valid.id.app_error",
    "translation": "Ongeldig Id"
  },
  {
    "id": "model.team.is_valid.name.app_error",
    "translation": "Ongeldige naam"
  },
  {
    "id": "model.team.is_valid.reserved.app_error",
    "translation": "Deze URL is niet beschikbaar. Probeer een andere."
  },
  {
    "id": "model.team.is_valid.type.app_error",
    "translation": "Ongeldig type"
  },
  {
    "id": "model.team.is_valid.update_at.app_error",
    "translation": "Het veld 'bijgewerkt op' moet een geldige tijd zijn"
  },
  {
    "id": "model.team.is_valid.url.app_error",
    "translation": "Ongeldige URL 'identifier'"
  },
  {
    "id": "model.team_member.is_valid.team_id.app_error",
    "translation": "Ongeldig team id"
  },
  {
    "id": "model.team_member.is_valid.user_id.app_error",
    "translation": "Ongeldige gebruikers id"
  },
  {
    "id": "model.token.is_valid.expiry",
    "translation": "Invalid token expiry"
  },
  {
    "id": "model.token.is_valid.size",
    "translation": "Ongeldig token"
  },
  {
    "id": "model.user.is_valid.email.app_error",
    "translation": "Please enter a valid email address."
  },
  {
    "id": "model.user.is_valid.pwd.app_error",
    "translation": "Het wachtwoord moet minimaal uit {{.Min}} karakters bestaan."
  },
  {
    "id": "model.user.is_valid.username.app_error",
    "translation": "Username must begin with a letter and contain between 3 and 22 characters including numbers, lowercase letters, and the symbols \".\", \"-\", and \"_\"."
  },
  {
    "id": "model.user_access_token.is_valid.description.app_error",
    "translation": "Invalid description, must be 255 or less characters"
  },
  {
    "id": "model.user_access_token.is_valid.id.app_error",
    "translation": "Invalid value for id"
  },
  {
    "id": "model.user_access_token.is_valid.token.app_error",
    "translation": "Ongeldig toegangs token"
  },
  {
    "id": "model.user_access_token.is_valid.user_id.app_error",
    "translation": "Ongeldige gebruikers id"
  },
  {
    "id": "model.utils.decode_json.app_error",
    "translation": "kan niet decoderen"
  },
  {
    "id": "model.websocket_client.connect_fail.app_error",
    "translation": "Unable to connect to the WebSocket server."
  },
  {
    "id": "oauth.gitlab.tos.error",
    "translation": "GitLab's Terms of Service have updated. Please go to gitlab.com to accept them and then try logging into Mattermost again."
  },
  {
    "id": "plugin.api.update_user_status.bad_status",
    "translation": "Unable to set the user status. Unknown user status."
  },
  {
    "id": "store.sql.convert_string_array",
    "translation": "FromDb: Kan StringArray niet naar *string omzetten"
  },
  {
    "id": "store.sql.convert_string_interface",
    "translation": "FromDb: Kan StringInterface niet naar *string omzetten"
  },
  {
    "id": "store.sql.convert_string_map",
    "translation": "FromDb: Kan StringMap niet naar *string omzetten"
  },
  {
    "id": "store.sql_audit.get.finding.app_error",
    "translation": "Er is een fout gevonden bij het zoeken naar de audit data"
  },
  {
    "id": "store.sql_audit.get.limit.app_error",
    "translation": "Grens bereikt voor opdelen in pagina's"
  },
  {
    "id": "store.sql_audit.permanent_delete_batch.app_error",
    "translation": "We encountered an error permanently deleting the batch of audits"
  },
  {
    "id": "store.sql_audit.permanent_delete_by_user.app_error",
    "translation": "Fout opgestreden bij het verwijderen van de audit data"
  },
  {
    "id": "store.sql_audit.save.saving.app_error",
    "translation": "Fout bij het opslaan van de audit data"
  },
  {
    "id": "store.sql_channel.analytics_deleted_type_count.app_error",
    "translation": "We kunnen de kanalen typen niet tellen"
  },
  {
    "id": "store.sql_channel.analytics_type_count.app_error",
    "translation": "We kunnen de kanalen typen niet tellen"
  },
  {
    "id": "store.sql_channel.clear_all_custom_role_assignments.commit_transaction.app_error",
    "translation": "Failed to commit the database transaction"
  },
  {
    "id": "store.sql_channel.clear_all_custom_role_assignments.open_transaction.app_error",
    "translation": "Failed to begin the database transaction"
  },
  {
    "id": "store.sql_channel.clear_all_custom_role_assignments.rollback_transaction.app_error",
    "translation": "Failed to rollback the database transaction"
  },
  {
    "id": "store.sql_channel.clear_all_custom_role_assignments.select.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.clear_all_custom_role_assignments.update.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.delete.channel.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.get.existing.app_error",
    "translation": "Het kanaal kon niet gevonden worden"
  },
  {
    "id": "store.sql_channel.get.find.app_error",
    "translation": "Er is een probleem opgetreden bij het zoeken naar het kanaal"
  },
  {
    "id": "store.sql_channel.get_all.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.get_by_name.existing.app_error",
    "translation": "Het kanaal kon niet gevonden worden"
  },
  {
    "id": "store.sql_channel.get_by_name.missing.app_error",
    "translation": "Kanaal bestaat niet"
  },
  {
    "id": "store.sql_channel.get_by_scheme.app_error",
    "translation": "Unable to get the channels for the provided scheme"
  },
  {
    "id": "store.sql_channel.get_channel_counts.get.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.get_channels.get.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.get_channels.not_found.app_error",
    "translation": "Geen kanaal gevonden"
  },
  {
    "id": "store.sql_channel.get_channels_by_ids.get.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.get_channels_by_ids.not_found.app_error",
    "translation": "No channel found"
  },
  {
    "id": "store.sql_channel.get_deleted.existing.app_error",
    "translation": "Het kanaal kon niet gevonden worden"
  },
  {
    "id": "store.sql_channel.get_deleted.missing.app_error",
    "translation": "No deleted channels exist"
  },
  {
    "id": "store.sql_channel.get_deleted_by_name.existing.app_error",
    "translation": "Het kanaal kon niet gevonden worden"
  },
  {
    "id": "store.sql_channel.get_deleted_by_name.missing.app_error",
    "translation": "No deleted channel exists with that name"
  },
  {
    "id": "store.sql_channel.get_for_post.app_error",
    "translation": "Unable to get the channel for the given post"
  },
  {
    "id": "store.sql_channel.get_member.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.get_member.missing.app_error",
    "translation": "Geen kanaal lid gevonden voor deze gebruikers id en kanaal id"
  },
  {
    "id": "store.sql_channel.get_member_count.app_error",
    "translation": "We kunnen het aantal leden van het kanaal niet tellen"
  },
  {
    "id": "store.sql_channel.get_member_for_post.app_error",
    "translation": "Unable to get the channel member for the given post"
  },
  {
    "id": "store.sql_channel.get_members.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.get_members_by_ids.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.get_more_channels.get.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.get_public_channels.get.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.get_unread.app_error",
    "translation": "Unable to get the channel unread messages"
  },
  {
    "id": "store.sql_channel.increment_mention_count.app_error",
    "translation": "Unable to increment the mention count"
  },
  {
    "id": "store.sql_channel.migrate_channel_members.commit_transaction.app_error",
    "translation": "Failed to commit the database transaction"
  },
  {
    "id": "store.sql_channel.migrate_channel_members.open_transaction.app_error",
    "translation": "Failed to open the database transaction"
  },
  {
    "id": "store.sql_channel.migrate_channel_members.rollback_transaction.app_error",
    "translation": "Failed to roll back the database transaction"
  },
  {
    "id": "store.sql_channel.migrate_channel_members.select.app_error",
    "translation": "Failed to select the batch of channel members"
  },
  {
    "id": "store.sql_channel.migrate_channel_members.update.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.permanent_delete.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.permanent_delete.commit_transaction.app_error",
    "translation": "De transactie kan niet worden vastgelegt"
  },
  {
    "id": "store.sql_channel.permanent_delete.delete_public_channel.app_error",
    "translation": "Unable to delete materialized public channel"
  },
  {
    "id": "store.sql_channel.permanent_delete.open_transaction.app_error",
    "translation": "Kan transactie niet openen"
  },
  {
    "id": "store.sql_channel.permanent_delete_by_team.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.permanent_delete_by_team.commit_transaction.app_error",
    "translation": "De transactie kan niet worden vastgelegt"
  },
  {
    "id": "store.sql_channel.permanent_delete_by_team.delete_public_channels.app_error",
    "translation": "Unable to delete materialized public channels"
  },
  {
    "id": "store.sql_channel.permanent_delete_by_team.open_transaction.app_error",
    "translation": "Kan transactie niet openen"
  },
  {
    "id": "store.sql_channel.permanent_delete_members_by_user.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.pinned_posts.app_error",
    "translation": "Unable to find the pinned posts"
  },
  {
    "id": "store.sql_channel.remove_member.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.reset_all_channel_schemes.app_error",
    "translation": "We could not reset the channel schemes"
  },
  {
    "id": "store.sql_channel.reset_all_channel_schemes.commit_transaction.app_error",
    "translation": "De transactie kan niet worden vastgelegt"
  },
  {
    "id": "store.sql_channel.reset_all_channel_schemes.open_transaction.app_error",
    "translation": "Kan transactie niet openen"
  },
  {
    "id": "store.sql_channel.reset_last_post_at.app_error",
    "translation": "We could not reset the channel last post at date"
  },
  {
    "id": "store.sql_channel.reset_last_post_at.commit_transaction.app_error",
    "translation": "De transactie kan niet worden vastgelegt"
  },
  {
    "id": "store.sql_channel.reset_last_post_at.open_transaction.app_error",
    "translation": "Kan transactie niet openen"
  },
  {
    "id": "store.sql_channel.save.archived_channel.app_error",
    "translation": "You can not modify an archived channel"
  },
  {
    "id": "store.sql_channel.save.commit_transaction.app_error",
    "translation": "De transactie kan niet worden vastgelegt"
  },
  {
    "id": "store.sql_channel.save.direct_channel.app_error",
    "translation": "Gebruik 'SaveDirectChannel' om een direct kanaal aan te maken"
  },
  {
    "id": "store.sql_channel.save.open_transaction.app_error",
    "translation": "Kan transactie niet openen"
  },
  {
    "id": "store.sql_channel.save.upsert_public_channel.app_error",
    "translation": "Unable to upsert materialized public channel"
  },
  {
    "id": "store.sql_channel.save_channel.current_count.app_error",
    "translation": "Fout bij het tellen van de kanalen"
  },
  {
    "id": "store.sql_channel.save_channel.existing.app_error",
    "translation": "Moet bijwerken aanroepen voor het bestaande kanaal"
  },
  {
    "id": "store.sql_channel.save_channel.exists.app_error",
    "translation": "A channel with that name already exists on the same team"
  },
  {
    "id": "store.sql_channel.save_channel.limit.app_error",
    "translation": "Het maximum aantal toegestane kanalen is bereikt."
  },
  {
    "id": "store.sql_channel.save_channel.previously.app_error",
    "translation": "Een kanaal met die URL is eerder aangemaakt"
  },
  {
    "id": "store.sql_channel.save_channel.save.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.save_direct_channel.add_members.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.save_direct_channel.commit.app_error",
    "translation": "Kan de transactie niet opslaan"
  },
  {
    "id": "store.sql_channel.save_direct_channel.not_direct.app_error",
    "translation": "Geen poging om een direkt kanaal te maken met 'SaveDirectChannel'"
  },
  {
    "id": "store.sql_channel.save_direct_channel.open_transaction.app_error",
    "translation": "Kan een transactie niet openen"
  },
  {
    "id": "store.sql_channel.save_member.commit_transaction.app_error",
    "translation": "Kan de transactie niet opslaan"
  },
  {
    "id": "store.sql_channel.save_member.exists.app_error",
    "translation": "Een kanaal lid met de opgegeven id bestaat al"
  },
  {
    "id": "store.sql_channel.save_member.open_transaction.app_error",
    "translation": "Kan de transactie niet openen"
  },
  {
    "id": "store.sql_channel.save_member.save.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_channel.search.app_error",
    "translation": "Er is een fout opgetreden tijdens het bijwerken van het kanaal"
  },
  {
    "id": "store.sql_channel.set_delete_at.commit_transaction.app_error",
    "translation": "De transactie kan niet worden vastgelegt"
  },
  {
    "id": "store.sql_channel.set_delete_at.open_transaction.app_error",
    "translation": "Kan transactie niet openen"
  },
  {
    "id": "store.sql_channel.set_delete_at.update_public_channel.app_error",
    "translation": "Unable to update the materialized public channel"
  },
  {
    "id": "store.sql_channel.update.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_channel.update.archived_channel.app_error",
    "translation": "You can not modify an archived channel"
  },
  {
    "id": "store.sql_channel.update.commit_transaction.app_error",
    "translation": "De transactie kan niet worden vastgelegt"
  },
  {
    "id": "store.sql_channel.update.exists.app_error",
    "translation": "Een kanaal met dat 'handle' bestaat al"
  },
  {
    "id": "store.sql_channel.update.open_transaction.app_error",
    "translation": "Kan transactie niet openen"
  },
  {
    "id": "store.sql_channel.update.previously.app_error",
    "translation": "Een kanaal met dat 'handle' is eerder aangemaakt"
  },
  {
    "id": "store.sql_channel.update.updating.app_error",
    "translation": "Er is een fout opgetreden tijdens het bijwerken van het kanaal"
  },
  {
    "id": "store.sql_channel.update.upsert_public_channel.app_error",
    "translation": "Unable to upsert materialized public channel"
  },
  {
    "id": "store.sql_channel.update_last_viewed_at.app_error",
    "translation": "De laatst bekeken tijd kon niet worden bijgewerkt"
  },
  {
    "id": "store.sql_channel.update_member.app_error",
    "translation": "Er is een probleem opgetreden tijdens het bijwerken van de kanaal leden"
  },
  {
    "id": "store.sql_channel_member_history.get_users_in_channel_during.app_error",
    "translation": "Failed to get users in channel during specified time period"
  },
  {
    "id": "store.sql_channel_member_history.log_join_event.app_error",
    "translation": "Failed to record channel member history"
  },
  {
    "id": "store.sql_channel_member_history.log_leave_event.update_error",
    "translation": "Failed to record channel member history. Failed to update existing join record"
  },
  {
    "id": "store.sql_channel_member_history.permanent_delete_batch.app_error",
    "translation": "Failed to purge records"
  },
  {
    "id": "store.sql_cluster_discovery.cleanup.app_error",
    "translation": "Failed to save ClusterDiscovery row"
  },
  {
    "id": "store.sql_cluster_discovery.delete.app_error",
    "translation": "Failed to delete"
  },
  {
    "id": "store.sql_cluster_discovery.exists.app_error",
    "translation": "Fout bij controle of de tabel bestaat %v"
  },
  {
    "id": "store.sql_cluster_discovery.get_all.app_error",
    "translation": "Failed to get all discovery rows"
  },
  {
    "id": "store.sql_cluster_discovery.save.app_error",
    "translation": "Failed to save ClusterDiscovery row"
  },
  {
    "id": "store.sql_cluster_discovery.set_last_ping.app_error",
    "translation": "Failed to update last ping at"
  },
  {
    "id": "store.sql_command.analytics_command_count.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command.get_by_trigger.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command.save.delete.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command.save.delete_perm.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command.save.get.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command.save.get_team.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command.save.saving.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command.save.saving_overwrite.app_error",
    "translation": "Een bestaande opdracht kan niet overschreven worden"
  },
  {
    "id": "store.sql_command.save.update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command_webhooks.get.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command_webhooks.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command_webhooks.save.existing.app_error",
    "translation": "You cannot update an existing CommandWebhook"
  },
  {
    "id": "store.sql_command_webhooks.try_use.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_command_webhooks.try_use.invalid.app_error",
    "translation": "Ongeldige webhook"
  },
  {
    "id": "store.sql_compliance.get.finding.app_error",
    "translation": "Er is een probleem opgetreden bij het ophalen van het 'compliance' rapport"
  },
  {
    "id": "store.sql_compliance.message_export.app_error",
    "translation": "Failed to select message export data"
  },
  {
    "id": "store.sql_compliance.save.saving.app_error",
    "translation": "Er is een probleem opgetreden bij het opslaan van het 'compliance' rapport"
  },
  {
    "id": "store.sql_emoji.delete.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_emoji.delete.no_results",
    "translation": "We konden de emoticon voor verwijdering niet vinden"
  },
  {
    "id": "store.sql_emoji.get.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_emoji.get_all.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_emoji.get_by_name.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_emoji.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_file_info.PermanentDeleteByUser.app_error",
    "translation": "Unable to delete attachments of the user"
  },
  {
    "id": "store.sql_file_info.attach_to_post.app_error",
    "translation": "We konden de bestandsinfo niet ophalen"
  },
  {
    "id": "store.sql_file_info.delete_for_post.app_error",
    "translation": "We konden de bestandsinfo niet ophalen"
  },
  {
    "id": "store.sql_file_info.get.app_error",
    "translation": "We konden de bestandsinfo niet ophalen"
  },
  {
    "id": "store.sql_file_info.get_by_path.app_error",
    "translation": "We konden de bestandsinfo niet ophalen"
  },
  {
    "id": "store.sql_file_info.get_for_post.app_error",
    "translation": "We konden de bestandsinfo niet ophalen"
  },
  {
    "id": "store.sql_file_info.get_for_user_id.app_error",
    "translation": "We konden de bestandsinfo niet ophalen"
  },
  {
    "id": "store.sql_file_info.permanent_delete.app_error",
    "translation": "Unable to permanently delete the file info"
  },
  {
    "id": "store.sql_file_info.permanent_delete_batch.app_error",
    "translation": "We encountered an error permanently deleting the batch of file infos"
  },
  {
    "id": "store.sql_file_info.save.app_error",
    "translation": "We konden de bestandsinfo niet ophalen"
  },
  {
    "id": "store.sql_job.delete.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_job.get.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_job.get_all.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_job.get_count_by_status_and_type.app_error",
    "translation": "Unable to get the job count by status and type"
  },
  {
    "id": "store.sql_job.get_newest_job_by_status_and_type.app_error",
    "translation": "Unable to get the newest job by status and type"
  },
  {
    "id": "store.sql_job.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_job.update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_license.get.app_error",
    "translation": "Er is een probleem opgetreden bij het ophalen van de licentie"
  },
  {
    "id": "store.sql_license.get.missing.app_error",
    "translation": "Een licentie met deze ID is niet gevonden"
  },
  {
    "id": "store.sql_license.save.app_error",
    "translation": "Er is een probleem opgetreden tijdens het opslaan van de licentie"
  },
  {
    "id": "store.sql_oauth.delete.commit_transaction.app_error",
    "translation": "De transactie kan niet worden vastgelegd"
  },
  {
    "id": "store.sql_oauth.delete.open_transaction.app_error",
    "translation": "Niet mogelijk om de OAuth2 app te verwijderen"
  },
  {
    "id": "store.sql_oauth.delete.rollback_transaction.app_error",
    "translation": "Niet mogelijk om de OAuth2 app verwijdering terug te draaien"
  },
  {
    "id": "store.sql_oauth.delete_app.app_error",
    "translation": "Er deed zich een fout voor tijdens het verwijderen van de OAuth2 App"
  },
  {
    "id": "store.sql_oauth.get_access_data.app_error",
    "translation": "Er is een probleem opgetreden bij het ophalen van het access token"
  },
  {
    "id": "store.sql_oauth.get_access_data_by_user_for_app.app_error",
    "translation": "Er is een probleem opgetreden bij het ophalen van alle access tokens"
  },
  {
    "id": "store.sql_oauth.get_app.find.app_error",
    "translation": "Unable to find the requested app"
  },
  {
    "id": "store.sql_oauth.get_app.finding.app_error",
    "translation": "Er is een probleem opgetreden bij het zoeken naar de app"
  },
  {
    "id": "store.sql_oauth.get_app_by_user.find.app_error",
    "translation": "We kunnen geen bestaand team vinden om bij te werken"
  },
  {
    "id": "store.sql_oauth.get_apps.find.app_error",
    "translation": "Er is een fout opgetreden tijdens het vinden van OAuth2 applicaties."
  },
  {
    "id": "store.sql_oauth.get_auth_data.find.app_error",
    "translation": "We kunnen de authorisatie code niet vinden"
  },
  {
    "id": "store.sql_oauth.get_auth_data.finding.app_error",
    "translation": "Er is een probleem opgetreden bij het zoeken van de autorisatie code"
  },
  {
    "id": "store.sql_oauth.get_previous_access_data.app_error",
    "translation": "Er is een probleem opgetreden bij het ophalen van het access token"
  },
  {
    "id": "store.sql_oauth.permanent_delete_auth_data_by_user.app_error",
    "translation": "De authorisatie code kan niet verwijderd worden"
  },
  {
    "id": "store.sql_oauth.remove_access_data.app_error",
    "translation": "Het access token kan niet opgeslagen worden."
  },
  {
    "id": "store.sql_oauth.remove_auth_data.app_error",
    "translation": "De authorisatie code kan niet verwijderd worden"
  },
  {
    "id": "store.sql_oauth.save_access_data.app_error",
    "translation": "Het access token kan niet opgeslagen worden."
  },
  {
    "id": "store.sql_oauth.save_app.existing.app_error",
    "translation": "Bijwerken moet worden aangeroepen voor een bestaande app"
  },
  {
    "id": "store.sql_oauth.save_app.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_oauth.save_auth_data.app_error",
    "translation": "De authorisatie code kan niet opgeslagen worden."
  },
  {
    "id": "store.sql_oauth.update_access_data.app_error",
    "translation": "Er is een probleem opgetreden bij het bijwerken van het access token"
  },
  {
    "id": "store.sql_oauth.update_app.find.app_error",
    "translation": "We kunnen de bestaande app niet vinden om bij te werken"
  },
  {
    "id": "store.sql_oauth.update_app.finding.app_error",
    "translation": "Er is een fout opgetreden bij het zoeken van de app"
  },
  {
    "id": "store.sql_oauth.update_app.update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_oauth.update_app.updating.app_error",
    "translation": "Er is een probleem opgetreden bij het bijwerken van de app"
  },
  {
    "id": "store.sql_plugin_store.delete.app_error",
    "translation": "Could not delete plugin key value"
  },
  {
    "id": "store.sql_plugin_store.get.app_error",
    "translation": "Could not get plugin key value"
  },
  {
    "id": "store.sql_plugin_store.save.app_error",
    "translation": "Could not save or update plugin key value"
  },
  {
    "id": "store.sql_post.analytics_posts_count.app_error",
    "translation": "Unable to get post counts"
  },
  {
    "id": "store.sql_post.analytics_posts_count_by_day.app_error",
    "translation": "Unable to get post counts by day"
  },
  {
    "id": "store.sql_post.analytics_user_counts_posts_by_day.app_error",
    "translation": "Unable to get user counts with posts"
  },
  {
    "id": "store.sql_post.compliance_export.app_error",
    "translation": "Unable to get the compliance export posts."
  },
  {
    "id": "store.sql_post.delete.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_post.get.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_post.get_flagged_posts.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_post.get_parents_posts.app_error",
    "translation": "We kunnen het startbericht voor het kanaal niet ophalen"
  },
  {
    "id": "store.sql_post.get_posts.app_error",
    "translation": "Grens bereikt bij het opdelen in pagina's"
  },
  {
    "id": "store.sql_post.get_posts_around.get.app_error",
    "translation": "We kunnen de berichten van het kanaal niet ophalen"
  },
  {
    "id": "store.sql_post.get_posts_around.get_parent.app_error",
    "translation": "We kunnen het start bericht voor het kanaal niet ophalen"
  },
  {
    "id": "store.sql_post.get_posts_batch_for_indexing.get.app_error",
    "translation": "Unable to get the posts batch for indexing"
  },
  {
    "id": "store.sql_post.get_posts_by_ids.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_post.get_posts_created_att.app_error",
    "translation": "We kunnen de berichten van het kanaal niet ophalen"
  },
  {
    "id": "store.sql_post.get_posts_since.app_error",
    "translation": "We kunnen de berichten van het kanaal niet ophalen"
  },
  {
    "id": "store.sql_post.get_root_posts.app_error",
    "translation": "We kunnen de berichten van het kanaal niet ophalen"
  },
  {
    "id": "store.sql_post.overwrite.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_post.permanent_delete.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_post.permanent_delete_all_comments_by_user.app_error",
    "translation": "We kunnen het bericht voor de gebruiker niet verwijderen"
  },
  {
    "id": "store.sql_post.permanent_delete_batch.app_error",
    "translation": "We encountered an error permanently deleting the batch of posts"
  },
  {
    "id": "store.sql_post.permanent_delete_by_channel.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_post.permanent_delete_by_user.app_error",
    "translation": "We kunnen de gekozen berichten voor de gebruiker niet verwijderen"
  },
  {
    "id": "store.sql_post.permanent_delete_by_user.too_many.app_error",
    "translation": "We kunnen de geselecteerde berichten voor de gebruiker niet verwijderen (het zijn er te veel), probeer opnieuw"
  },
  {
    "id": "store.sql_post.query_max_post_size.error",
    "translation": "Unable to determine the maximum supported post size"
  },
  {
    "id": "store.sql_post.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_post.save.existing.app_error",
    "translation": "Een bestaand bericht kan niet bijwerkt worden"
  },
  {
    "id": "store.sql_post.search.disabled",
    "translation": "Searching has been disabled on this server. Please contact your System Administrator."
  },
  {
    "id": "store.sql_post.update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_preference.cleanup_flags_batch.app_error",
    "translation": "We encountered an error cleaning up the batch of flags"
  },
  {
    "id": "store.sql_preference.delete.app_error",
    "translation": "Er is een probleem opgetreden tijden het verwijderen van voorkeuren"
  },
  {
    "id": "store.sql_preference.get.app_error",
    "translation": "Er is een probleem opgestreden tijdens het opzoeken van voorkeuren"
  },
  {
    "id": "store.sql_preference.get_all.app_error",
    "translation": "Er is een probleem opgestreden tijdens het opzoeken van voorkeuren"
  },
  {
    "id": "store.sql_preference.get_category.app_error",
    "translation": "Er is een probleem opgestreden tijdens het opzoeken van voorkeuren"
  },
  {
    "id": "store.sql_preference.insert.exists.app_error",
    "translation": "Een voorkeur met deze gebruikers id, categorie of naam bestaat al"
  },
  {
    "id": "store.sql_preference.insert.save.app_error",
    "translation": "Unable to save the preference"
  },
  {
    "id": "store.sql_preference.is_feature_enabled.app_error",
    "translation": "Er is een probleem opgetreden tijdens het zoeken naar een pre-release functie voorkeur"
  },
  {
    "id": "store.sql_preference.permanent_delete_by_user.app_error",
    "translation": "Er is een probleem opgetreden tijden het verwijderen van voorkeuren"
  },
  {
    "id": "store.sql_preference.save.commit_transaction.app_error",
    "translation": "Kan de transactie niet opslaan om de voorkeuren vast te leggen"
  },
  {
    "id": "store.sql_preference.save.missing_driver.app_error",
    "translation": "Er is een probleem opgetreden tijdens het bijwerken van de voorkeuren"
  },
  {
    "id": "store.sql_preference.save.open_transaction.app_error",
    "translation": "Kan de transactie om voorkeuren op te slaan niet openen"
  },
  {
    "id": "store.sql_preference.save.rollback_transaction.app_error",
    "translation": "Kan de transactie niet terugdraaien om de voorkeuren op te slaan"
  },
  {
    "id": "store.sql_preference.save.updating.app_error",
    "translation": "Er is een probleem opgetreden tijdens het bijwerken van de voorkeuren"
  },
  {
    "id": "store.sql_preference.update.app_error",
    "translation": "Unable to update the preference"
  },
  {
    "id": "store.sql_reaction.delete.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_reaction.delete.begin.app_error",
    "translation": "Unable to open transaction while deleting reaction"
  },
  {
    "id": "store.sql_reaction.delete.commit.app_error",
    "translation": "Unable to commit transaction while deleting reaction"
  },
  {
    "id": "store.sql_reaction.delete_all_with_emoji_name.delete_reactions.app_error",
    "translation": "Unable to delete all reactions with this emoji name"
  },
  {
    "id": "store.sql_reaction.delete_all_with_emoji_name.get_reactions.app_error",
    "translation": "Unable to get all reactions with this emoji name"
  },
  {
    "id": "store.sql_reaction.get_for_post.app_error",
    "translation": "Unable to get reactions for post"
  },
  {
    "id": "store.sql_reaction.permanent_delete_batch.app_error",
    "translation": "We encountered an error permanently deleting the batch of reactions"
  },
  {
    "id": "store.sql_reaction.save.begin.app_error",
    "translation": "Unable to open transaction while saving reaction"
  },
  {
    "id": "store.sql_reaction.save.commit.app_error",
    "translation": "Unable to commit transaction while saving reaction"
  },
  {
    "id": "store.sql_reaction.save.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_recover.delete.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_recover.get_by_code.app_error",
    "translation": "Unable to get a token with this code"
  },
  {
    "id": "store.sql_recover.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_role.delete.update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_role.get.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_role.get_by_name.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_role.get_by_names.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_role.permanent_delete_all.app_error",
    "translation": "We could not permanently delete all the roles"
  },
  {
    "id": "store.sql_role.save.insert.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_role.save.invalid_role.app_error",
    "translation": "The role was not valid"
  },
  {
    "id": "store.sql_role.save.open_transaction.app_error",
    "translation": "Failed to open the transaction to save the role"
  },
  {
    "id": "store.sql_role.save.update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_role.save_role.commit_transaction.app_error",
    "translation": "Failed to commit the transaction to save the role"
  },
  {
    "id": "store.sql_scheme.delete.role_update.app_error",
    "translation": "Unable to delete the roles belonging to this scheme"
  },
  {
    "id": "store.sql_scheme.delete.update.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_scheme.get.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_scheme.permanent_delete_all.app_error",
    "translation": "We could not permanently delete the schemes"
  },
  {
    "id": "store.sql_scheme.reset_channels.app_error",
    "translation": "Unable to reset all channels using this scheme to the default scheme"
  },
  {
    "id": "store.sql_scheme.reset_teams.app_error",
    "translation": "Unable to reset all teams using this scheme to the default scheme"
  },
  {
    "id": "store.sql_scheme.save.insert.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_scheme.save.invalid_scheme.app_error",
    "translation": "The provided scheme is invalid"
  },
  {
    "id": "store.sql_scheme.save.open_transaction.app_error",
    "translation": "Failed to open the transaction to save the scheme"
  },
  {
    "id": "store.sql_scheme.save.retrieve_default_scheme_roles.app_error",
    "translation": "Unable to retrieve the default scheme roles"
  },
  {
    "id": "store.sql_scheme.save.update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_scheme.save_scheme.commit_transaction.app_error",
    "translation": "Failed to commit the transaction to save the scheme"
  },
  {
    "id": "store.sql_session.analytics_session_count.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_session.get.app_error",
    "translation": "Er is een fout opgetreden bij het zoeken naar de sessie"
  },
  {
    "id": "store.sql_session.get_sessions.app_error",
    "translation": "Er is een probleem opgestreden tijdens het opzoeken van de gebruikers sessie"
  },
  {
    "id": "store.sql_session.permanent_delete_sessions_by_user.app_error",
    "translation": "Niet alle gebruikers sessie kunnen verwijderd worden voor de gebruiker"
  },
  {
    "id": "store.sql_session.remove.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_session.remove_all_sessions_for_team.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_session.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_session.save.existing.app_error",
    "translation": "Kan de huidige sessie niet bijwerken"
  },
  {
    "id": "store.sql_session.update_device_id.app_error",
    "translation": "Unable to update the device id"
  },
  {
    "id": "store.sql_session.update_last_activity.app_error",
    "translation": "Unable to update the last_activity_at"
  },
  {
    "id": "store.sql_session.update_roles.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_status.get.app_error",
    "translation": "Er is een probleem opgetreden tijdens het ophalen van de status"
  },
  {
    "id": "store.sql_status.get.missing.app_error",
    "translation": "Er is niks ingevoerd voor deze status"
  },
  {
    "id": "store.sql_status.get_online.app_error",
    "translation": "Fout bij het ophalen van de online statussen"
  },
  {
    "id": "store.sql_status.get_online_away.app_error",
    "translation": "Fout bij het ophalen van de online/weg statuses"
  },
  {
    "id": "store.sql_status.get_team_statuses.app_error",
    "translation": "Fout bij het ophalen van de statussen van alle team leden"
  },
  {
    "id": "store.sql_status.get_total_active_users_count.app_error",
    "translation": "De gebruikers kunnen niet geteld worden"
  },
  {
    "id": "store.sql_status.reset_all.app_error",
    "translation": "Er is een probleem opgetreden tijdens het resetten van alle statussen "
  },
  {
    "id": "store.sql_status.save.app_error",
    "translation": "Er is een probleem opgetreden tijdens het opslaan van de status"
  },
  {
    "id": "store.sql_status.update.app_error",
    "translation": "Er is een fout opgetreden tijdens het bijwerken van de status"
  },
  {
    "id": "store.sql_status.update_last_activity_at.app_error",
    "translation": "Unable to update the last activity date and time of the user"
  },
  {
    "id": "store.sql_system.get.app_error",
    "translation": "Er is een probleem opgetreden tijdens het zoeken van de systeem instellingen"
  },
  {
    "id": "store.sql_system.get_by_name.app_error",
    "translation": "Unable to find the system variable."
  },
  {
    "id": "store.sql_system.permanent_delete_by_name.app_error",
    "translation": "We could not permanently delete the system table entry"
  },
  {
    "id": "store.sql_system.save.app_error",
    "translation": "Er is een probleem opgetreden tijdens het opslaan van de systeem instellingen"
  },
  {
    "id": "store.sql_system.update.app_error",
    "translation": "Er is een probleem opgetreden tijdens het bijwerken van een systeem instelling"
  },
  {
    "id": "store.sql_team.analytics_get_team_count_for_scheme.app_error",
    "translation": "Unable to get the channel count for the scheme."
  },
  {
    "id": "store.sql_team.analytics_team_count.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_team.clear_all_custom_role_assignments.commit_transaction.app_error",
    "translation": "Failed to commit the database transaction"
  },
  {
    "id": "store.sql_team.clear_all_custom_role_assignments.open_transaction.app_error",
    "translation": "Failed to begin the database transaction"
  },
  {
    "id": "store.sql_team.clear_all_custom_role_assignments.rollback_transaction.app_error",
    "translation": "Failed to rollback the database transaction"
  },
  {
    "id": "store.sql_team.clear_all_custom_role_assignments.select.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_team.clear_all_custom_role_assignments.update.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_team.get.find.app_error",
    "translation": "We kunnen geen bestaand team vinden om bij te werken"
  },
  {
    "id": "store.sql_team.get.finding.app_error",
    "translation": "Er is een fout opgetreden bij het zoeken van het team"
  },
  {
    "id": "store.sql_team.get_all.app_error",
    "translation": "Niet alle teams kunnen opgehaald worden"
  },
  {
    "id": "store.sql_team.get_all_team_listing.app_error",
    "translation": "Niet alle teams kunnen opgehaald worden"
  },
  {
    "id": "store.sql_team.get_by_invite_id.find.app_error",
    "translation": "We kunnen geen bestaand team vinden om bij te werken"
  },
  {
    "id": "store.sql_team.get_by_invite_id.finding.app_error",
    "translation": "We kunnen geen bestaand team vinden om bij te werken"
  },
  {
    "id": "store.sql_team.get_by_name.app_error",
    "translation": "We kunnen geen bestaand team vinden om bij te werken"
  },
  {
    "id": "store.sql_team.get_by_scheme.app_error",
    "translation": "Unable to get the channels for the provided scheme"
  },
  {
    "id": "store.sql_team.get_member.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_team.get_member.missing.app_error",
    "translation": "Geen teamlid gevonden voor dit gebruikers id en kanaal id"
  },
  {
    "id": "store.sql_team.get_member_count.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_team.get_members.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_team.get_members_by_ids.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_team.get_unread.app_error",
    "translation": "Unable to get the teams unread messages"
  },
  {
    "id": "store.sql_team.migrate_team_members.commit_transaction.app_error",
    "translation": "Failed to commit the database transaction"
  },
  {
    "id": "store.sql_team.migrate_team_members.open_transaction.app_error",
    "translation": "Failed to open the database transaction"
  },
  {
    "id": "store.sql_team.migrate_team_members.rollback_transaction.app_error",
    "translation": "Failed to roll back the database transaction"
  },
  {
    "id": "store.sql_team.migrate_team_members.select.app_error",
    "translation": " Failed to select the batch of team members"
  },
  {
    "id": "store.sql_team.migrate_team_members.update.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_team.permanent_delete.app_error",
    "translation": "We kunnen geen bestaand team vinden om bij te werken"
  },
  {
    "id": "store.sql_team.remove_member.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_team.reset_all_team_schemes.app_error",
    "translation": "We could not reset the team schemes"
  },
  {
    "id": "store.sql_team.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_team.save.domain_exists.app_error",
    "translation": "Een team met dat domein bestaat al"
  },
  {
    "id": "store.sql_team.save.existing.app_error",
    "translation": "Bijwerken moet aangeroepen worden voor bestaand team"
  },
  {
    "id": "store.sql_team.save_member.exists.app_error",
    "translation": "Een team lid met de opgegeven id bestaat al"
  },
  {
    "id": "store.sql_team.save_member.save.app_error",
    "translation": "Kan leden niet toevoegen aan het directe kanaal"
  },
  {
    "id": "store.sql_team.search_all_team.app_error",
    "translation": "Er is een fout opgetreden tijdens het bijwerken van het kanaal"
  },
  {
    "id": "store.sql_team.search_open_team.app_error",
    "translation": "Er is een fout opgetreden tijdens het bijwerken van het kanaal"
  },
  {
    "id": "store.sql_team.update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_team.update.find.app_error",
    "translation": "We kunnen geen bestaand team vinden om bij te werken"
  },
  {
    "id": "store.sql_team.update.finding.app_error",
    "translation": "Er is een fout opgetreden bij het zoeken van het team"
  },
  {
    "id": "store.sql_team.update.updating.app_error",
    "translation": "Er is een fout opgetreden tijdens het bijwerken van het team"
  },
  {
    "id": "store.sql_team.update_display_name.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_team.update_last_team_icon_update.app_error",
    "translation": "Unable to update the date of the last team icon update"
  },
  {
    "id": "store.sql_user.analytics_daily_active_users.app_error",
    "translation": "Unable to get the active users during the requested period"
  },
  {
    "id": "store.sql_user.analytics_get_inactive_users_count.app_error",
    "translation": "De gebruikers kunnen niet geteld worden"
  },
  {
    "id": "store.sql_user.analytics_get_system_admin_count.app_error",
    "translation": "Unable to get the system admin count"
  },
  {
    "id": "store.sql_user.analytics_unique_user_count.app_error",
    "translation": "Unable to get the unique user count"
  },
  {
    "id": "store.sql_user.clear_all_custom_role_assignments.commit_transaction.app_error",
    "translation": "Failed to commit the database transaction"
  },
  {
    "id": "store.sql_user.clear_all_custom_role_assignments.open_transaction.app_error",
    "translation": "Failed to begin the database transaction"
  },
  {
    "id": "store.sql_user.clear_all_custom_role_assignments.rollback_transaction.app_error",
    "translation": "Failed to rollback the database transaction"
  },
  {
    "id": "store.sql_user.clear_all_custom_role_assignments.select.app_error",
    "translation": "Failed to retrieve the users"
  },
  {
    "id": "store.sql_user.clear_all_custom_role_assignments.update.app_error",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_user.get.app_error",
    "translation": "Er is een fout opgestreden bij het opzoeken van het account"
  },
  {
    "id": "store.sql_user.get_by_auth.missing_account.app_error",
    "translation": "We kunnen geen bestaand account vinden die inloggen bij dit team toe staat. Het kan zijn dat een uitnodiging voor het team nodig is om lid te worden."
  },
  {
    "id": "store.sql_user.get_by_auth.other.app_error",
    "translation": "Er is een probleem opgetreden om een account te vinden op basis van authenticatie type."
  },
  {
    "id": "store.sql_user.get_by_username.app_error",
    "translation": "We kunnen geen bestaand account vinden met de gebruikersnaam voor dit team. Het kan zijn dat een uitnodiging voor het team nodig is om lid te worden."
  },
  {
    "id": "store.sql_user.get_for_login.app_error",
    "translation": "We kunnen geen bestaand account vinden met de gebruikersnaam voor dit team. Het kan zijn dat een uitnodiging voor het team nodig is om lid te worden."
  },
  {
    "id": "store.sql_user.get_for_login.multiple_users",
    "translation": "We vonden meerdere gebruikers die overeenkomen met uw referenties en waren niet in staat om u te laten inloggen. Neem contact op met een systeembeheerder."
  },
  {
    "id": "store.sql_user.get_new_users.app_error",
    "translation": "Er is een probleem opgestreden tijdens het opzoeken van voorkeuren"
  },
  {
    "id": "store.sql_user.get_profiles.app_error",
    "translation": "Er is een probleem opgestreden tijdens het opzoeken van het gebruikersprofiel"
  },
  {
    "id": "store.sql_user.get_recently_active_users.app_error",
    "translation": "Er is een probleem opgestreden tijdens het opzoeken van voorkeuren"
  },
  {
    "id": "store.sql_user.get_sysadmin_profiles.app_error",
    "translation": "Er is een probleem opgestreden tijdens het opzoeken van het gebruikersprofiel"
  },
  {
    "id": "store.sql_user.get_system_install_date.app_error",
    "translation": "Unable to infer the system date based on the first user creation date."
  },
  {
    "id": "store.sql_user.get_total_users_count.app_error",
    "translation": "Het aantal gebruikers kan niet geteld worden"
  },
  {
    "id": "store.sql_user.get_unread_count.app_error",
    "translation": "Het aantal ongelezen berichten voor de gebruiker kan niet geteld worden"
  },
  {
    "id": "store.sql_user.get_unread_count_for_channel.app_error",
    "translation": "Het aantal ongelezen berichten voor de gebruiker en kanaal kan niet geteld worden"
  },
  {
    "id": "store.sql_user.missing_account.const",
    "translation": "Kan de kanalen niet ophalen"
  },
  {
    "id": "store.sql_user.permanent_delete.app_error",
    "translation": "We kunnen geen bestaand team vinden om bij te werken"
  },
  {
    "id": "store.sql_user.save.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_user.save.email_exists.app_error",
    "translation": "Een account met dat e-mail adres bestaat al."
  },
  {
    "id": "store.sql_user.save.email_exists.ldap_app_error",
    "translation": "Dit account gebruikt geen AD/LDAP authenticatie. Log in met e-mail en wachtwoord."
  },
  {
    "id": "store.sql_user.save.email_exists.saml_app_error",
    "translation": "Dit account gebruikt geen SAML authenticatie. Log in met e-mail en wachtwoord."
  },
  {
    "id": "store.sql_user.save.existing.app_error",
    "translation": "Bijwerken moet aangeroepen worden voor bestaande gebruikers"
  },
  {
    "id": "store.sql_user.save.max_accounts.app_error",
    "translation": "Het maximaal aantal leden voor dit team is bereikt. Neem contact op met de beheerder voor een hoger limiet."
  },
  {
    "id": "store.sql_user.save.member_count.app_error",
    "translation": "Fout bij het tellen van leden in dit team"
  },
  {
    "id": "store.sql_user.save.username_exists.app_error",
    "translation": "Een account met deze gebruikersnaam bestaat al."
  },
  {
    "id": "store.sql_user.save.username_exists.ldap_app_error",
    "translation": "Een account met die gebruikersnaam bestaat al. Neem kontakt op met de systeembeheerder."
  },
  {
    "id": "store.sql_user.save.username_exists.saml_app_error",
    "translation": "Een account met die gebruikersnaam bestaat al. Neem contact op met de systeembeheerder."
  },
  {
    "id": "store.sql_user.search.app_error",
    "translation": "Unable to find any user maching the search parameters"
  },
  {
    "id": "store.sql_user.update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_user.update.can_not_change_ldap.app_error",
    "translation": "Velden die gezet zijn door AD/LDAP kunnen niet gewijzigd worden"
  },
  {
    "id": "store.sql_user.update.email_taken.app_error",
    "translation": "Dit e-mail adres is reeds in gebruik. Kies aub een andere."
  },
  {
    "id": "store.sql_user.update.find.app_error",
    "translation": "We kunnen geen account vinden om bij te werken"
  },
  {
    "id": "store.sql_user.update.finding.app_error",
    "translation": "Er is een fout opgestreden bij het opzoeken van het account"
  },
  {
    "id": "store.sql_user.update.updating.app_error",
    "translation": "Er is een fout opgestreden bij het bijwerken van het account"
  },
  {
    "id": "store.sql_user.update.username_taken.app_error",
    "translation": "Deze gebruikersnaam is al in gebruik. Kies een andere."
  },
  {
    "id": "store.sql_user.update_auth_data.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_user.update_auth_data.email_exists.app_error",
    "translation": "Niet mogelijk om account om te schakelen naar {{.Service}}. Een ander account maakt gebruik van het emailadres {{.Email}}."
  },
  {
    "id": "store.sql_user.update_failed_pwd_attempts.app_error",
    "translation": "Unable to update the failed_attempts"
  },
  {
    "id": "store.sql_user.update_last_picture_update.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_user.update_mfa_active.app_error",
    "translation": "Er is een probleem opgetreden tijdens het bijwerken van de MFA status van de gebruiker"
  },
  {
    "id": "store.sql_user.update_mfa_secret.app_error",
    "translation": "Er is een probleem opgetreden bij het bijwerken van de gebruiker zijn MFA geheim"
  },
  {
    "id": "store.sql_user.update_password.app_error",
    "translation": "Unable to update the user password"
  },
  {
    "id": "store.sql_user.update_update.app_error",
    "translation": "Unable to update the date of the last update of the user"
  },
  {
    "id": "store.sql_user.verify_email.app_error",
    "translation": "Het verificatie e-mail adres kan niet bijgewerkt worden"
  },
  {
    "id": "store.sql_user_access_token.delete.app_error",
    "translation": "Het access token kan niet verwijderd worden"
  },
  {
    "id": "store.sql_user_access_token.get.app_error",
    "translation": "Het access token kan niet verwijderd worden"
  },
  {
    "id": "store.sql_user_access_token.get_all.app_error",
    "translation": "Het access token kan niet verwijderd worden"
  },
  {
    "id": "store.sql_user_access_token.get_by_token.app_error",
    "translation": "Het access token kan niet verwijderd worden"
  },
  {
    "id": "store.sql_user_access_token.get_by_user.app_error",
    "translation": "Het access token kan niet verwijderd worden"
  },
  {
    "id": "store.sql_user_access_token.save.app_error",
    "translation": "Het access token kan niet opgeslagen worden."
  },
  {
    "id": "store.sql_user_access_token.search.app_error",
    "translation": "Er is een probleem opgetreden bij het ophalen van het access token"
  },
  {
    "id": "store.sql_user_access_token.update_token_disable.app_error",
    "translation": "Het access token kan niet opgeslagen worden."
  },
  {
    "id": "store.sql_user_access_token.update_token_enable.app_error",
    "translation": "Het access token kan niet opgeslagen worden."
  },
  {
    "id": "store.sql_webhooks.analytics_incoming_count.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.analytics_outgoing_count.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.delete_incoming.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.delete_outgoing.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.get_incoming.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.get_incoming_by_channel.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.get_incoming_by_user.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.get_outgoing.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.get_outgoing_by_channel.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.get_outgoing_by_team.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.permanent_delete_incoming_by_channel.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.permanent_delete_incoming_by_user.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.permanent_delete_outgoing_by_channel.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.permanent_delete_outgoing_by_user.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.save_incoming.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.save_incoming.existing.app_error",
    "translation": "Een bestaande binnenkomende webhook kan niet overschreven worden"
  },
  {
    "id": "store.sql_webhooks.save_outgoing.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.save_outgoing.override.app_error",
    "translation": "Een uitgaande webhook kan niet overschreven worden"
  },
  {
    "id": "store.sql_webhooks.update_incoming.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "store.sql_webhooks.update_outgoing.app_error",
    "translation": "Bericht kan niet opgehaald worden"
  },
  {
    "id": "system.message.name",
    "translation": "Systeem"
  },
  {
    "id": "utils.config.add_client_locale.app_error",
    "translation": "Unable to load mattermost configuration file: Adding DefaultClientLocale to AvailableLocales."
  },
  {
    "id": "utils.config.load_config.decoding.panic",
    "translation": "Fout bij het decoderen van de config. Bestand={{.Filename}}, fout={{.Error}}"
  },
  {
    "id": "utils.config.load_config.opening.panic",
    "translation": "Fout bij het openen van het config bestand {{.Filename}}, fout={{.Error}}"
  },
  {
    "id": "utils.config.save_config.saving.app_error",
    "translation": "Er is ee probleem opgetreden bij het opslaan van het bestand in {{.Filename}}"
  },
  {
    "id": "utils.config.supported_available_locales.app_error",
    "translation": "Unable to load mattermost configuration file: AvailableLocales must include DefaultClientLocale. Setting AvailableLocales to all locales as default value."
  },
  {
    "id": "utils.config.supported_client_locale.app_error",
    "translation": "Unable to load mattermost configuration file: DefaultClientLocale must be one of the supported locales. Setting DefaultClientLocale to en as default value."
  },
  {
    "id": "utils.config.supported_server_locale.app_error",
    "translation": "Unable to load mattermost configuration file: DefaultServerLocale must be one of the supported locales. Setting DefaultServerLocale to en as default value."
  },
  {
    "id": "utils.file.list_directory.local.app_error",
    "translation": "Er is een fout opgetreden bij het lezen van een bestand uit lokale opslag"
  },
  {
    "id": "utils.file.list_directory.s3.app_error",
    "translation": "Encountered an error listing directory from S3."
  },
  {
    "id": "utils.file.remove_directory.local.app_error",
    "translation": "Er is een fout opgetreden bij het lezen van een bestand uit lokale opslag"
  },
  {
    "id": "utils.file.remove_directory.s3.app_error",
    "translation": "Encountered an error removing directory from S3."
  },
  {
    "id": "utils.file.remove_file.local.app_error",
    "translation": "Er is een fout opgetreden bij het lezen van een bestand uit lokale opslag"
  },
  {
    "id": "utils.file.remove_file.s3.app_error",
    "translation": "Encountered an error removing file from S3."
  },
  {
    "id": "utils.mail.connect_smtp.helo.app_error",
    "translation": "Failed to set HELO"
  },
  {
    "id": "utils.mail.connect_smtp.open.app_error",
    "translation": "Fout bij het openen van de sql verbinding"
  },
  {
    "id": "utils.mail.connect_smtp.open_tls.app_error",
    "translation": "Fout bij het openen van TLS verbinding"
  },
  {
    "id": "utils.mail.new_client.auth.app_error",
    "translation": "Kan niet authenticeren bij de SMTP server"
  },
  {
    "id": "utils.mail.sendMail.attachments.write_error",
    "translation": "Failed to write attachment to email"
  },
  {
    "id": "utils.mail.send_mail.close.app_error",
    "translation": "Er is een probleem opgetreden bij het afsluiten van de verbinding naar de SMTP server"
  },
  {
    "id": "utils.mail.send_mail.from_address.app_error",
    "translation": "Error setting \"From Address\""
  },
  {
    "id": "utils.mail.send_mail.msg.app_error",
    "translation": "Kan het e-mail bericht niet schrijven"
  },
  {
    "id": "utils.mail.send_mail.msg_data.app_error",
    "translation": "Kan geen e-mail bericht toevoegen"
  },
  {
    "id": "utils.mail.send_mail.to_address.app_error",
    "translation": "Error setting \"To Address\""
  },
  {
    "id": "web.command_webhook.command.app_error",
    "translation": "Het kanaal kan niet gevonden worden"
  },
  {
    "id": "web.command_webhook.invalid.app_error",
    "translation": "Ongeldige webhook"
  },
  {
    "id": "web.command_webhook.parse.app_error",
    "translation": "Kan binnenkomende data niet verwerken"
  },
  {
    "id": "web.error.unsupported_browser.message",
    "translation": "Your current browser is not supported. Please upgrade to one of the following browsers:"
  },
  {
    "id": "web.error.unsupported_browser.title",
    "translation": "Unsupported Browser"
  },
  {
    "id": "web.get_access_token.internal_saving.app_error",
    "translation": "Het wachtwoord van de gebruiker kan niet bijgewerkt worden"
  },
  {
    "id": "web.incoming_webhook.channel.app_error",
    "translation": "Het kanaal kan niet gevonden worden"
  },
  {
    "id": "web.incoming_webhook.channel_locked.app_error",
    "translation": "This webhook is not permitted to post to the requested channel"
  },
  {
    "id": "web.incoming_webhook.disabled.app_error",
    "translation": "Commando's zijn uitgeschakeld door de beheerder."
  },
  {
    "id": "web.incoming_webhook.invalid.app_error",
    "translation": "Ongeldige webhook"
  },
  {
    "id": "web.incoming_webhook.parse.app_error",
    "translation": "Kan binnenkomende data niet verwerken"
  },
  {
    "id": "web.incoming_webhook.permissions.app_error",
    "translation": "Onjuiste kanaal rechten"
  },
  {
    "id": "web.incoming_webhook.split_props_length.app_error",
    "translation": "Unable to split webhook props into {{.Max}} character parts."
  },
  {
    "id": "web.incoming_webhook.text.app_error",
    "translation": "Geen tekst gespecifieerd"
  },
  {
    "id": "web.incoming_webhook.user.app_error",
    "translation": "De gebruiker kan niet gevonden worden"
  }
]