-
Notifications
You must be signed in to change notification settings - Fork 36
/
dutch.json
1695 lines (1695 loc) · 28.3 KB
/
dutch.json
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
{
"authors": {
"modified by": [
"vierkant 2010-06-03 19:06:34",
"vierkant 2010-06-04 13:20:25",
"vierkant 2010-06-09 14:40:12",
"Sijmen Schoon 2010-11-21 16:08:46",
"vierkant 2010-11-21 18:19:48",
"vierkant 2010-12-16 19:44:49",
"vierkant 2011-01-03 12:22:05",
"vierkant 2011-01-29 18:40:28",
"vierkant 2011-04-02 22:19:30",
"Vijfhoek 2011-05-02 18:09:31",
"Syntax Error 2011-07-02 20:09:24",
"Yared Hufkens 2012-02-03 19:57:59",
"Yared Hufkens 2012-12-08 10:51:30",
"ZiggyNL 2013-03-17 02:26:19",
"Maurits18 2014-01-11",
"TortleWortle, 2014 (Transifex)",
"arisoda, 2014 (Transifex)",
"heinrich5991, 2014 (Transifex)",
"TurtleMotion, 2014 (Transifex)"
],
"originally created by": ""
},
"translated strings": [
{
"or": " (%s seconds faster)",
"tr": " (%s seconden sneller)"
},
{
"or": "%.3f KiB",
"tr": "%.3f KiB"
},
{
"or": "%d other players",
"tr": "%d overige spelers"
},
{
"or": "%d player left",
"tr": "%d speler heeft het spel verlaten"
},
{
"or": "%d player not ready",
"tr": "%dspeler is nog niet klaar"
},
{
"or": "%d players",
"tr": "%d spelers"
},
{
"or": "%d players left",
"tr": "%d spelers over"
},
{
"or": "%d players not ready",
"tr": "%dspelers zijn nog niet klaar"
},
{
"or": "%d servers",
"tr": "%d servers"
},
{
"or": "%d servers, %d players",
"tr": "%d servers, %d spelers"
},
{
"or": "%d%% loaded",
"tr": "%d%% is geladen"
},
{
"or": "%ds left",
"tr": "%ds over"
},
{
"or": "%i minute left",
"tr": "nog %i minuut"
},
{
"or": "%i minutes left",
"tr": "nog %i minuten"
},
{
"or": "%i second left",
"tr": "nog %i seconde"
},
{
"or": "%i seconds left",
"tr": "nog %i seconden"
},
{
"or": "%s is muted by you",
"tr": "'%s' is gedempt door jou"
},
{
"or": "%s wins!",
"tr": "%s heeft gewonnen!"
},
{
"or": "'%s' called for vote to kick '%s' (%s)",
"tr": "'%s' heeft een stemming geopend over het verbannen van '%s' (%s)"
},
{
"or": "'%s' called for vote to move '%s' to spectators (%s)",
"tr": "'%s' heeft een stemming geopend over het verplaatsen van '%s' naar toeschouwers (%s)"
},
{
"or": "'%s' called vote to change server option '%s' (%s)",
"tr": "'%s' heeft een stemming geopend om de serveroptie '%s' (%s) aan te passen"
},
{
"or": "'%s' entered and joined the blue team",
"tr": "'%s' is binnengekomen en aangesloten bij het blauwe team"
},
{
"or": "'%s' entered and joined the game",
"tr": "'%s' is binnengekomen en doet mee"
},
{
"or": "'%s' entered and joined the red team",
"tr": "'%s' is binnengekomen en aangesloten bij het rode team"
},
{
"or": "'%s' entered and joined the spectators",
"tr": "'%s' is binnengekomen en aangesloten bij de toeschouwers"
},
{
"or": "'%s' finished in: %s",
"tr": "'%s' finishte in %s"
},
{
"or": "'%s' has left the game",
"tr": "'%s' heeft het spel verlaten"
},
{
"or": "'%s' has left the game (%s)",
"tr": "'%s' heeft het spel verlaten (%s)"
},
{
"or": "'%s' has set a new map record: %s",
"tr": "'%s' heeft een nieuw kaartrecord neergezet: %s"
},
{
"or": "'%s' has set a new personal record: %s",
"tr": "'%s' heeft een nieuw persoonlijk record neergezet: %s"
},
{
"or": "'%s' initiated a pause",
"tr": "'%s' heeft een pauze ingelast"
},
{
"or": "'%s' joined the blue team",
"tr": "'%s' heeft zich aangesloten bij het blauwe team"
},
{
"or": "'%s' joined the game",
"tr": "'%s' doet mee"
},
{
"or": "'%s' joined the red team",
"tr": "'%s' heeft zich aangesloten bij het rode team"
},
{
"or": "'%s' joined the spectators",
"tr": "'%s' heeft zich aangesloten bij de toeschouwers"
},
{
"or": "'%s' was added as a friend",
"tr": "'%s' is toegevoegd als vriend"
},
{
"or": "'%s' was muted",
"tr": "'%s' is gedempt"
},
{
"or": "'%s' was removed as a friend",
"tr": "'%s' is verwijderd als vriend"
},
{
"or": "'%s' was unmuted",
"tr": "'%s' is ontdempt"
},
{
"or": "-Page %d-",
"tr": "-Pagina %d-"
},
{
"or": "-Page %d/%d-",
"tr": "-Pagina %d/%d-"
},
{
"or": "Abort",
"tr": "Afbreken"
},
{
"or": "Add",
"tr": "Toevoegen"
},
{
"or": "Add clan",
"tr": "Clan toevoegen"
},
{
"or": "Add demo marker",
"tr": "Demomarkering toevoegen"
},
{
"or": "Add friend",
"tr": "Vriend toevoegen"
},
{
"or": "Add friend/clan",
"tr": "Vriend/Clan toevoegen"
},
{
"or": "Address",
"tr": "Adres"
},
{
"or": "Admin forced server option '%s' (%s)",
"tr": "Admin heeft de serveroptie '%s' (%s) afgedwongen"
},
{
"or": "Admin forced vote no",
"tr": "Administrator dwong 'nee'-stem af"
},
{
"or": "Admin forced vote yes",
"tr": "Admin heeft de 'ja'-stem afgedwongen"
},
{
"or": "Admin moved '%s' to spectator (%s)",
"tr": "Admin heeft '%s' verplaatst naar de toeschouwers (%s)"
},
{
"or": "Aim bind",
"tr": "Richtbinding"
},
{
"or": "All",
"tr": "Alle"
},
{
"or": "All players were moved to the blue team",
"tr": "Alle spelers zijn verhuisd naar het blauwe team"
},
{
"or": "All players were moved to the game",
"tr": "Alle spelers zijn verhuisd naar het spel"
},
{
"or": "All players were moved to the red team",
"tr": "Alle spelers zijn verhuisd naar het rode team"
},
{
"or": "All players were moved to the spectators",
"tr": "Alle spelers zijn verplaatst naar de toeschouwers"
},
{
"or": "Alp:",
"tr": "Alp:"
},
{
"or": "Always show name plates",
"tr": "Altijd naambordjes tonen"
},
{
"or": "Anti Aliasing",
"tr": "Anti-kartelvorming"
},
{
"or": "Are you sure that you want to delete the demo?",
"tr": "Weet je zeker dat je de demo wilt verwijderen?"
},
{
"or": "Are you sure that you want to delete the skin?",
"tr": "Weet je zeker dat je deze skin wilt verwijderen?"
},
{
"or": "Are you sure that you want to quit?",
"tr": "Weet je zeker dat je wilt stoppen?"
},
{
"or": "Are you sure that you want to remove the clan from your friends list?",
"tr": "Weet je zeker dat je de clan wilt verwijderen uit je vriendenlijst?"
},
{
"or": "Are you sure that you want to remove the filter from the server browser?",
"tr": "Weet je zeker dat het filter wilt verwijderen uit de servernavigatie?"
},
{
"or": "Are you sure that you want to remove the player from your friends list?",
"tr": "Weet je zeker dat je deze speler wilt verwijderen uit je vriendenlijst?"
},
{
"or": "Are you sure you want to rename the demo?",
"tr": "Weet je zeker dat je de demonaam wilt wijzigen?"
},
{
"or": "Are you sure you want to save your skin? If a skin with this name already exists, it will be replaced.",
"tr": "Weet je zeker dat je je skin wilt opslaan? Als er al een skin is met dezelfde naam, dan wordt deze vervangen."
},
{
"or": "As this is the first time you launch the game, please enter your nick name below. It's recommended that you check the settings to adjust them to your liking before joining a server.",
"tr": "Omdat dit de eerste keer is dat je het spel opstart, moet je een bijnaam kiezen. Doe dat hieronder. We raden aan om de instellingen te controleren voordat je deelneemt aan een server."
},
{
"or": "Automatically record demos",
"tr": "Automatisch demo's opnemen"
},
{
"or": "Automatically take game over screenshot",
"tr": "Automatisch schermafdrukken maken"
},
{
"or": "Back",
"tr": "Terug"
},
{
"or": "Basic",
"tr": "Basis"
},
{
"or": "Best spree",
"tr": "Beste moordaanslag"
},
{
"or": "Blue team",
"tr": "Blauwe team"
},
{
"or": "Borderless window",
"tr": "Naadloos venster"
},
{
"or": "Call vote",
"tr": "Stemming openen"
},
{
"context": "Server difficulty",
"or": "Casual",
"tr": "Gewoon"
},
{
"or": "Change settings",
"tr": "Instellingen wijzigen"
},
{
"or": "Chat",
"tr": "Chat"
},
{
"or": "Clan",
"tr": "Clan"
},
{
"context": "clear gametype filters",
"or": "Clear",
"tr": "Wissen"
},
{
"or": "Click on a player or a flag to follow it",
"tr": "Klik op een speler of vlag om deze te volgen"
},
{
"or": "Client",
"tr": "Client"
},
{
"or": "Close",
"tr": "Sluiten"
},
{
"or": "Compatible version",
"tr": "Compatibele versie"
},
{
"context": "Server difficulty",
"or": "Competitive",
"tr": "Wedstrijdverband"
},
{
"or": "Configure statboard",
"tr": "Statistiekpagina instellen"
},
{
"or": "Connect",
"tr": "Verbinden"
},
{
"or": "Connecting to",
"tr": "Bezig met verbinden met"
},
{
"or": "Connection Problems...",
"tr": "Verbindingsproblemen..."
},
{
"or": "Console",
"tr": "Console"
},
{
"or": "Controls",
"tr": "Besturing"
},
{
"or": "Count players only",
"tr": "Alleen spelers meetellen"
},
{
"or": "Country",
"tr": "Land"
},
{
"or": "Country:",
"tr": "Land:"
},
{
"or": "Crc",
"tr": "Crc"
},
{
"or": "Created",
"tr": "Gecreëerd"
},
{
"or": "Current spree",
"tr": "Huidige moordaanslag"
},
{
"or": "Current: %dx%d (%d:%d)",
"tr": "Huidig: %dx%d (%d:%d)"
},
{
"or": "Custom",
"tr": "Aangepast"
},
{
"or": "Custom colors",
"tr": "Aangepaste kleuren"
},
{
"or": "Customize",
"tr": "Aanpassen"
},
{
"or": "Deaths",
"tr": "Doden"
},
{
"or": "Delete",
"tr": "Verwijderen"
},
{
"or": "Delete demo",
"tr": "Demo verwijderen"
},
{
"or": "Delete skin",
"tr": "Skin verwijderen"
},
{
"or": "Demo details",
"tr": "Demo-informatie"
},
{
"or": "Demofile: %s",
"tr": "Demobestand: %s"
},
{
"or": "Demos",
"tr": "Demo's"
},
{
"or": "Detail",
"tr": "Details"
},
{
"or": "Device",
"tr": "Apparaat"
},
{
"or": "Difficulty",
"tr": "Moeilijkheidsgraad"
},
{
"or": "Difficulty:",
"tr": "Moeilijkheidsgraad:"
},
{
"or": "Disable whisper feature",
"tr": "Fluisteren uitschakelen"
},
{
"or": "Disconnect",
"tr": "Verbinding verbreken"
},
{
"or": "Disconnected",
"tr": "Verbinding verbroken"
},
{
"or": "Downloading map",
"tr": "Bezig met downloaden van kaart"
},
{
"or": "Draw!",
"tr": "Gelijkspel!"
},
{
"or": "Dynamic Camera",
"tr": "Dynamische camera"
},
{
"or": "Editor",
"tr": "Bewerker"
},
{
"or": "Emoticon",
"tr": "Emoticon"
},
{
"or": "Enable colored server broadcasts",
"tr": "Gekleurde serveruitzendingen inschakelen"
},
{
"or": "Enable joystick",
"tr": "Joystick gebruiken"
},
{
"or": "Enter",
"tr": "Starten"
},
{
"or": "Error",
"tr": "Fout"
},
{
"or": "Error loading demo",
"tr": "Kan demo niet laden"
},
{
"or": "FPM",
"tr": "FPM"
},
{
"or": "Favorite",
"tr": "Favoriet"
},
{
"or": "Favorites",
"tr": "Favorieten"
},
{
"or": "Fetching server info",
"tr": "Bezig met ophalen van serverinformatie"
},
{
"or": "Fire",
"tr": "Schieten"
},
{
"or": "Flag captures",
"tr": "Vlagveroveringen"
},
{
"or": "Flag grabs",
"tr": "Vlag gepakt"
},
{
"or": "Folder",
"tr": "Map"
},
{
"or": "Force vote",
"tr": "Stemmen afdwingen"
},
{
"or": "Frags",
"tr": "Doden"
},
{
"or": "Frags per minute",
"tr": "Doden per minuut"
},
{
"or": "Free-View",
"tr": "Vrij bewegen"
},
{
"or": "Fullscreen",
"tr": "Volledig scherm"
},
{
"or": "Game",
"tr": "Spel"
},
{
"or": "Game info",
"tr": "Spelinformatie"
},
{
"or": "Game options",
"tr": "Spelopties"
},
{
"or": "Game over",
"tr": "Spel afgelopen"
},
{
"or": "Game paused",
"tr": "Spel gepauzeerd"
},
{
"or": "Game starts in",
"tr": "Spel begint over"
},
{
"or": "Game type",
"tr": "Speltype"
},
{
"or": "Game type:",
"tr": "Speltype:"
},
{
"or": "Game types:",
"tr": "Speltypes:"
},
{
"or": "General",
"tr": "Algemeen"
},
{
"or": "Global",
"tr": "Algemeen"
},
{
"context": "Flag grabs",
"or": "Grabs",
"tr": "Gepakt"
},
{
"or": "Graphics",
"tr": "Beeld"
},
{
"or": "Grenade",
"tr": "Granaat"
},
{
"or": "Hammer",
"tr": "Hamer"
},
{
"or": "Has people playing",
"tr": "Alleen actieve"
},
{
"or": "Hide bots",
"tr": "Bots verbergen"
},
{
"or": "High Detail",
"tr": "Veel details"
},
{
"or": "Hook",
"tr": "Haak"
},
{
"or": "Host address:",
"tr": "Hostadres:"
},
{
"or": "Hue:",
"tr": "Kleurverloop:"
},
{
"or": "Ingame mouse sens.",
"tr": "Muissnelheid in het spel"
},
{
"or": "Invalid Demo",
"tr": "Ongeldige demo"
},
{
"or": "Join",
"tr": "Deelnemen"
},
{
"context": "Join a server",
"or": "Join",
"tr": "Deelnemen"
},
{
"or": "Join blue",
"tr": "Aansluiten bij blauw"
},
{
"or": "Join red",
"tr": "Aansluiten bij rood"
},
{
"or": "Joined",
"tr": "Aangesloten"
},
{
"or": "Joined blue",
"tr": "Aangesloten bij het blauwe team"
},
{
"or": "Joined red",
"tr": "Aangesloten bij het rode team"
},
{
"or": "Joystick",
"tr": "Joystick"
},
{
"or": "Joystick Axis #%d",
"tr": "Joystick-as #%d"
},
{
"or": "Joystick jitter tolerance",
"tr": "Joystick-gevoeligheidstolerantie"
},
{
"or": "Joystick sens.",
"tr": "Joystickgevoeligheid"
},
{
"or": "Jump",
"tr": "Springen"
},
{
"or": "Kick player",
"tr": "Speler verbannen"
},
{
"or": "Kick voting requires %d players on the server",
"tr": "Stemmen over verbanningen vereist %d spelers op de server"
},
{
"or": "Language",
"tr": "Taal"
},
{
"or": "Laser",
"tr": "Laser"
},
{
"or": "Length",
"tr": "Lengte"
},
{
"or": "Lgt:",
"tr": "Lgt:"
},
{
"or": "Limit Fps",
"tr": "FPS inperken"
},
{
"or": "Load the sound system",
"tr": "Geluidssysteem laden"
},
{
"or": "Local",
"tr": "Lokaal"
},
{
"or": "Local server",
"tr": "Lokale server"
},
{
"or": "MOTD",
"tr": "MOTD"
},
{
"or": "Map",
"tr": "Kaart"
},
{
"or": "Map changed to '%s'",
"tr": "Je bevindt je nu op de kaart '%s'"
},
{
"or": "Map record",
"tr": "Kaartrecord"
},
{
"or": "Map:",
"tr": "Kaart:"
},
{
"or": "Markers",
"tr": "Markeringen"
},
{
"context": "rounds (scoreboard)",
"or": "Match",
"tr": "Wedstrijd"
},
{
"or": "Max",
"tr": "Max"
},
{
"or": "Max fps",
"tr": "Max. FPS"
},
{
"or": "Maximum ping:",
"tr": "Hoogste ping:"
},
{
"or": "Menu background transparency",
"tr": "Doorzichtigheid van menu-achtergrond"
},
{
"or": "Menu mouse sens.",
"tr": "Muissnelheid in menu"
},
{
"or": "Misc",
"tr": "Overig"
},
{
"or": "Mouse",
"tr": "Muis"
},
{
"or": "Move left",
"tr": "Naar links verplaatsen"
},
{
"or": "Move player to spectators",
"tr": "Speler verplaatsen naar toeschouwers"
},
{
"or": "Move right",
"tr": "Naar rechts verplaatsen"
},
{
"or": "Movement",
"tr": "Beweging"
},
{
"or": "Mute broadcasts",
"tr": "Uitzendingen dempen"
},
{
"or": "Mute when not active",
"tr": "Dempen wanneer inactief"
},
{
"or": "Name",
"tr": "Naam"
},
{
"context": "Net score",
"or": "Net",
"tr": "Net"
},
{
"or": "Net score",
"tr": "Net-score"
},
{
"or": "Netversion",
"tr": "Netversie"
},
{
"or": "New filter",
"tr": "Nieuw filter"
},
{
"or": "Next weapon",
"tr": "Volgend wapen"
},
{
"or": "Nickname",
"tr": "Bijnaam"
},
{
"or": "Nickname is empty.",
"tr": "Gebruikersnaam is leeg."
},
{
"or": "No",
"tr": "Nee"
},
{
"context": "Without/None",
"or": "No",
"tr": "Nee"
},
{
"or": "No filter category is selected",
"tr": "Geen filtercategorie geselecteerd"
},
{
"or": "No joysticks found. Plug in a joystick and restart the game.",
"tr": "Geen joysticks aangetroffen. Koppel een joystick aan en start het spel opnieuw."
},
{
"or": "No password",
"tr": "Geen wachtwoord"
},
{
"or": "No servers found",
"tr": "Geen servers gevonden"
},
{
"or": "No servers match your filter criteria",
"tr": "Geen servers gevonden die overeenkomen met je zoekopdracht"
},
{
"context": "Server difficulty",
"or": "Normal",
"tr": "Normaal"
},
{
"or": "Normal:",
"tr": "Normaal:"
},
{
"context": "friends (server browser)",
"or": "Offline (%d)",
"tr": "Offline (%d)"
},
{
"or": "Ok",
"tr": "Oké"
},
{
"or": "Online clanmates (%d)",
"tr": "Online clangenoten (%d)"
},
{
"or": "Online players (%d)",
"tr": "Online spelers (%d)"
},
{
"or": "Only %d active players are allowed",
"tr": "Er zijn slechts %d actieve spelers toegestaan"
},
{
"or": "Open",
"tr": "Openen"
},
{
"or": "Option",
"tr": "Optie"
},
{
"or": "Other",
"tr": "Overig"
},
{
"or": "Parent Folder",
"tr": "Bovenliggende map"
},
{
"or": "Password",
"tr": "Wachtwoord"
},
{
"or": "Password incorrect",
"tr": "Verkeerd wachtwoord"
},
{
"or": "Personal",
"tr": "Persoonlijk"
},
{
"or": "Ping",
"tr": "Ping"
},
{
"or": "Pistol",
"tr": "Pistool"
},
{
"or": "Play",
"tr": "Spelen"
},
{
"context": "DemoBrowser",
"or": "Play",
"tr": "Spelen"
},
{
"or": "Play background music",
"tr": "Achtergrondmuziek afspelen"
},
{
"or": "Player",
"tr": "Speler"