-
Notifications
You must be signed in to change notification settings - Fork 12
/
nl.yaml
3478 lines (3478 loc) · 140 KB
/
nl.yaml
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
global:
"-- Select a country --": ""
"--- Bot decision ---": ""
"--- Currently active planet/moon ---": ""
"--- Default ---": ""
"--- Select a destination ---": ""
"--- Select a planet/moon ---": ""
"--- Select origin moon ---": ""
"0-15min": ""
"1 bot": "1 bot"
"1- Recovery code": ""
"16-40min": ""
"2 days one-time trial": ""
"2- Scan this barcode with your app.": ""
"2-steps (planets then moons)": ""
"3 - 20 letter/number/underscore. eg: ": ""
"3- Enter the six-digit code from the application": ""
"30 days license": "30 dagen licentie"
"41-60min": ""
"6-digit code": ""
"<b>DISCLAIMER:</b> IP address will change at login. Do not use important accounts on cloud unless you understand what you are doing.": ""
"<b>Warning:</b> This will override existing scripts that have the same name.": ""
"<strong>Warning:</strong> this is to change the credentials that the bot uses to log into OGame, not to change your lobby password.": ""
"ACS Attack": ""
"ACS planner": ""
"AI": ""
"API": "API"
"API key": ""
"Abort all sessions": ""
"Abort session": ""
"Academy Of Sciences": ""
"Account": "Account"
"Acoustic Scanning": ""
"Actions": "Acties"
"Activate all": ""
"Active": "Actief"
"Active players": ""
"Activities": "Activiteiten"
"Activity": ""
"Add account to lobby ?": ""
"Add alliance to ignore list": ""
"Add credit to my account": ""
"Add player to ignore list": ""
"Add target to ignore list if defenses above the setting": ""
"Add target to ignore list if the minimum storage is not met": ""
"Add to hunter list": "Toevoegen aan jagerslijst"
"Add to queue": "Voeg toe aan wachtrij"
"Additional cargo": ""
"Additional cargo to send when attacking": ""
"Admin": "Admin"
"Admin account": "Beheerders account"
"Advanced": ""
"Advanced Recycling Plant": ""
"After scanning the barcode image, the app will display a six-digit code that you can enter below.": ""
"All": "Allemaal"
"All bots that I have access to": ""
"All suggestions": ""
"Alliance": "Alliantie"
"Alliance Class": ""
"Alliance Depot": "Alliantiehangar"
"Alliance rank": "Alliantie rang"
"Always": ""
"Anti Ballistic Missiles": ""
"Anti-Ballistic Missiles": "Anti-Ballistische Raket"
"AntiGame for Ninja": ""
"Antigame": ""
"Antimatter Condenser": ""
"Antimatter Convector": ""
"App language": ""
"Arch": "Architectuur"
"Are you sure?": "Weet je het zeker?"
"Armour": "Pantser"
"Armour Technology": "Pantsertechniek"
"Arrival": ""
"Arrival time": ""
"Arrive at": ""
"Arrive in": "Aankomen in"
"Artificial Swarm Intelligence": ""
"Assembly Line": ""
"Astrophysics": "Astrofysica"
"Att": ""
"Attack": "Aanvallen"
"Attack as soon as we find a suitable target": ""
"Attack from nearest moon": ""
"Attack from nearest planet": "Val aan vanaf de dichtstbijzijnde planeet"
"Attack from the closest moon to the target": ""
"Attack from the closest moon/planet to the target": ""
"Attack players even if they have ships/defenses": ""
"Attack players with defenses": ""
"Attack speed": "Aanvals snelheid"
"Attack target with preferred cargo ships": ""
"Attack target with spy probes": ""
"Attack targets with spy probes": ""
"Attack type": ""
"Attacker": "Aanvaller"
"Attacker win": "Aanvaller wint"
"Auctioneer": ""
"Auctioneer active": ""
"Auctioneer configs": ""
"AudioCtxHash": ""
"AudioHash": ""
"Audit": "Audit"
"Augmented browsing experience": "Augmented browser ervaringen"
"Auto enable manual mode when using browser": ""
"Automated Transport Lines": ""
"Automatic fleet": ""
"Automatised Assembly Centre": ""
"Available!": ""
"Awake bot now": ""
"B": ""
"Backup the file in": ""
"Backup this bot": ""
"Batch update": ""
"Battlecruiser": "Interceptor"
"Battlecruiser MkII": ""
"Battleship": "Slagschip"
"Bid from": ""
"Bio Modifier": ""
"Biosphere Farm": ""
"BiotechLab": ""
"Bomber": "Bommenwerper"
"Bomber MkII": ""
"Bot": "Bot"
"Bot exit sleep mode": ""
"Bot goes to sleep mode": ""
"Bot is being initialized, please wait until you get automatically redirected...": ""
"Bot timezone": ""
"Bots": "Bots"
"Bots allowed": ""
"Brain": "Brain"
"Brain active": "Brain actief"
"Brain activities": "Brain activiteiten"
"Brain configs": "Brain instellingen"
"Browser": "Browser"
"Browser augments": "Browser-aanvullingen"
"Browser engine name": ""
"Browser name": ""
"Build": "Bouw"
"Build ABM on missiles attack detected": ""
"Build fusion reactor": ""
"Build jump gate": ""
"Build lifeform buildings": ""
"Build lifeform researches": ""
"Build solar satellites": ""
"Building": "Gebouw"
"Buildings": ""
"Buildings info": ""
"Buy license": "Koop licentie"
"Buy now": "Koop nu"
"CE": ""
"CalcDeltaMs": ""
"Calls to simulator will be proxied to the remote simulator server": ""
"Cancel": ""
"Cancel Fleet": "Annuleer vloot"
"Cancel evacuation": "Annuleer evacuatie"
"Cancel scheduled flight": ""
"Canvas2dInfo": ""
"Captcha": ""
"Captchas": ""
"Captured": ""
"Cargo": ""
"Cargo Hold Expansion Civilian Ships": ""
"Cargo capacity": "Laadvermogen"
"Cargo's needed": "Vrachtschepen nodig"
"Catalyser Technology": ""
"Category": "Categorie"
"Celestial from where to spy & attack": ""
"Change my username": "Verander mijn gebruikersnaam"
"Change ogame credentials": ""
"Change password": "Verander wachtwoord"
"Change proxy": "Verander proxy"
"Change username": "Verander gebruikersnaam"
"Changelog": "Changelog"
"Character Class": ""
"Check again": ""
"Check attacks": "Controleer aanvallen"
"Check interval (seconds)": ""
"Checks for activity from homeworld": ""
"Checks for activity from latest active planet/moon": ""
"Chip Mass Production": ""
"Chrysalis Accelerator": ""
"Clear all construction queues": ""
"Clear player data": "Wis spelersgegevens"
"Click \"Renew license\" button": "" # (unused)
"Click here to load current fleets": ""
"Click on a fleet to get timing details": ""
"Cloning Laboratory": ""
"Colonisation": ""
"Colonize": "Koloniseren"
"Colonize using": ""
"Colonizer": ""
"Colonizer configs": ""
"Colony Ship": "Kolonisatieschip"
"Color legend": ""
"Combat simulator": "Gevecht simulator"
"Combustion": ""
"Combustion Drive": "Verbrandingsmotor"
"Commander UI": "Commander UI"
"Compile & download": ""
"Compiled scripts": ""
"Computer Technology": "Computertechniek"
"Configs": "Configs"
"Confirm new password": "Bevestig nieuw wachtwoord"
"Confirm password": "Bevestig wachtwoord"
"Conqueror": ""
"Constant version": ""
"Construction queue": "Bouw wachtrij"
"Coord": "Coördinaten"
"Coordinate": ""
"Coordinates": ""
"Coords": "Coördinaten"
"Countdowns": ""
"Counter espionage": ""
"Country": ""
"Crawl": "Crawl"
"Crawl systems": ""
"Crawler": "Crawl"
"Crawler setting": ""
"Create": "Maak aan"
"Create admin account": "Maak een beheerdersaccount aan"
"Create lobby ?": ""
"Create script on all bots": ""
"Create theme": ""
"Create user": "Maak gebruiker aan"
"Created": "Aangemaakt"
"Created at": "Gemaakt bij"
"Credit or debit card": "Krediet of betaalkaart"
"Cron jobs": "Cron taken"
"Cruiser": "Kruiser"
"Cruiser MkII": ""
"Crystal": "Kristal"
"Crystal Farm": ""
"Crystal Mine": "Kristalmijn"
"Crystal Refinery": ""
"Crystal Storage": "Kristalopslag"
"Crystal setting": ""
"Current": "Huidige"
"Current fleets": "Huidige vloten"
"Current license valid until": "Huidige licentie geldig tot"
"Current planet": "Huidige planeet"
"D": ""
"DS": ""
"Dangerous": ""
"Date": ""
"DateISO": ""
"Deactivate all": ""
"Deathstar": "Ster des Doods"
"Debris": "Puin"
"Debris top 100": "Puin top 100"
"Default": ""
"Defence": ""
"Defence repair factor": ""
"Defence to debris": ""
"Defender": "Verdediger"
"Defender active": "Verdediger actief"
"Defender activities": "Verdediger-activeiten"
"Defender configs": "Verdediger instellingen"
"Defender will ignore attacks from players in this list": ""
"Defender win": "Verdediger wint"
"Defense points": ""
"Defense pts": ""
"Defenses": ""
"Defenses info": ""
"Delay after exporting resources": ""
"Delay between fleet (secs)": ""
"Delay between waves (secs)": ""
"Delete account": "Account verwijderen"
"Delete all keys": ""
"Delete bot": "Verwijder bot"
"Delete combat reports": ""
"Delete combat reports once the farmer is done using it": ""
"Delete cron job": "Verwijder cron taak"
"Delete expedition messages once imported": ""
"Delete fingerprint": ""
"Delete flight": "Verwijder vloot"
"Delete project": ""
"Delete script": ""
"Delete spy reports once imported": ""
"Delete theme": ""
"Delete this bot": "Verwijder deze bot"
"Delete user": ""
"Delete your account": "Verwijder je account"
"Deleted at": ""
"Depart at": ""
"Deployment": ""
"Depot AI": ""
"Depth Sounding": ""
"Desktop notification when attacked": ""
"Destination": "Bestemming"
"Destroy": "Vernietigen"
"Destroyer": "Vernietiger"
"Destroyer MkII": ""
"Deut": ""
"Deut synt setting": ""
"Deuterium": "Deuterium"
"Deuterium Synthesiser": ""
"Deuterium Synthesizer": "Deuteriumfabriek"
"Deuterium Tank": "Deuteriumtank"
"Deuterium save factor": ""
"Diamond Energy Transmitter": ""
"Disable ogame dropdown (fix jump gate on mobile)": ""
"Disable two-factor authentication": ""
"Disabled": ""
"Discord": ""
"Discord webhook for notifications": ""
"Discover": ""
"Discovery": ""
"Discovery configs": ""
"Discovery using": ""
"Disruption Chamber": ""
"Documentation": ""
"Domain": "Domein"
"Donut galaxy": "Donut melkweg"
"Donut system": "Donut systeem"
"Download": "Download"
"Download all scripts": ""
"Download logs": "Download logs"
"Download ogame ninja binary for your OS": ""
"Download scripts": ""
"Download the latest version here": "Download hier de nieuwste versie" # (unused)
"Downloads": "Downloads"
"Draw": "Gelijkspel"
"Dump remaining resources in defenses": "Dump overgebleven grondstoffen in verdediging"
"Dur": "Dur"
"Duration": ""
"Edit cron job": "Pas cron taak aan"
"Edit file name": ""
"Efficiency Module": ""
"Efficient Swarm Intelligence": ""
"Email": "Email"
"Email Address": "E-mailadres"
"Email for notifications": ""
"Empire": "Koninkrijk"
"Empire page": ""
"Empire view": "Koninkrijk overzicht"
"Enable": ""
"Enable Expe-3000": ""
"Enable InfoCompte3": ""
"Enable NixianRaidTracker": ""
"Enable RecursosAmpliados": ""
"Enable TopRaider": ""
"Enable browser augments": "Schakel browser-aanvullingen in"
"Enable galaxy browser augments": ""
"Enable two-factor authentication": ""
"Energy": ""
"Energy Technology": "Energietechniek"
"Enhanced Production Technologies": ""
"Enhanced Sensor Technology": ""
"Enter a two-factor recovery code": ""
"Enter your email address to retrieve your password": "Voer uw e-mailadres in om uw wachtwoord op te halen"
"Enter your password": ""
"Espionage": ""
"Espionage Probe": "Spionagesonde"
"Espionage Technology": "Spionagetechniek"
"Espionage probe": ""
"Espionage probe raids": "Spionage sonde aanval"
"Espionage report": "Spionagerapport"
"Evacuate seconds before attack": "Evacueer seconden voor de aanval"
"Evacuation configs": ""
"Evacuation fails": ""
"Evacuation speed on destroy attacks": "Evacuatiesnelheid bij vernietigings missie's"
"Every day": ""
"Exp": "Ervaring"
"Expedition": "Expeditie"
"Expedition loss": ""
"Expedition speed": ""
"Expeditions": ""
"Expeditions active": ""
"Expeditions configs": ""
"Expeditions origin": ""
"Experimental Recycling Technology": ""
"Experimental Weapons Technology": ""
"Expired": "Verlopen"
"Expired at": "Verlopen op"
"Expires": ""
"Expires at": "Verloopt om"
"Export bots": ""
"Export within same galaxy only": ""
"Exporter?": ""
"Extract expedition messages": ""
"F": ""
"FAQ": "FAQ"
"Facilities": ""
"Failed to fleet save": ""
"Failed to hide all reports": ""
"Fake browser javascript fingerprint": ""
"Farm session": ""
"Farm session completed": ""
"Farm session started": ""
"Farm sessions": "Farm sessies"
"Farmer": "Farmer"
"Farmer active": "Farmer actief"
"Farming": "Farmer"
"Fast attacking": "Snelle aanval"
"Features": "Kenmerken"
"Fields": ""
"File name": "Bestandsnaam"
"Files saved": ""
"Fingerprint": ""
"Fingerprint name": ""
"Fingerprints": ""
"Fleet info": ""
"Fleet log": "Vloot log"
"Fleet save": ""
"Fleet speed": ""
"Fleet to debris": "Vloot naar puin"
"Flight": "Vlucht"
"Flight time": ""
"Flights": "Vluchten"
"FontsHash": ""
"Food Silo": ""
"Forum Of Transcendence": ""
"Forward ingame chat from alliance": ""
"Forward ingame chat from players": ""
"Friday": ""
"Fuel": "Brandstof"
"Fuel Consumption": ""
"Fuel consumption": "Brandstofverbruik"
"Full license": "Volledige licentie"
"Fullscreen": ""
"Fusion Cell Factory": ""
"Fusion Drives": ""
"Fusion Powered Production": ""
"Fusion Reactor": "Fusiecentrale"
"Fusion reactor setting": ""
"Galaxy": "Melkweg"
"Game1DateHeader": ""
"Gameforge bearer token": ""
"Gameforge email": ""
"Gameforge password": ""
"Gauss Cannon": "Gausskanon"
"General": "Algemeen"
"General Overhaul Battlecruiser": ""
"General Overhaul Battleship": ""
"General Overhaul Bomber": ""
"General Overhaul Cruiser": ""
"General Overhaul Destroyer": ""
"General Overhaul Light Fighter": ""
"General info": "Algemene informatie"
"General options": "Algemene instellingen"
"Generate a one-time password with": ""
"Geothermal Power Plants": ""
"Get free trial key": ""
"Get spy reports": "Ontvang spionagerapporten"
"Get started": "Begin"
"Get trial key": ""
"Get trial license": "Krijg een proeflicentie"
"Gift cards": ""
"Gives you access to your self-host server through": "Geeft u toegang tot uw zelf-host-server"
"Global": ""
"Go": "Ga"
"Gravitation Sensors": ""
"Graviton Technology": "Gravitontechniek "
"Grouped Attack": "Federatie aanval"
"Grouped attack": ""
"HTTP client timeout": ""
"Halls Of Realisation": ""
"Hardened Diamond Drill Heads": ""
"Hardware concurrency": ""
"Harvest": "Recycle"
"Heat Recovery": ""
"Heavy Fighter": "Zwaar Gevechtsschip"
"Heavy Laser": "Grote Laser"
"Hide all": ""
"Hide all reports ?": ""
"High Energy Pump Systems": ""
"High Energy Smelting": ""
"High Performance Extractors": ""
"High Performance Synthesiser": ""
"High Performance Terraformer": ""
"High Performance Transformer": ""
"High Temperature Superconductors": ""
"Highest bid value": ""
"History": ""
"Home": "Startpagina"
"Homeworld": ""
"Honour points": "Eerpunten"
"Host eg: smtp.gmail.com": "Host eg: smtp.gmail.com"
"Host machine Timezone": ""
"Hotkeys": ""
"Http proxy": ""
"Http proxy url:": ""
"Humans": ""
"Humans buildings": ""
"Humans researches": ""
"Hunter": "Jager"
"Hunter colors": ""
"Hunter configs": "Jager instellingen"
"Hyperspace": ""
"Hyperspace Drive": "Hyperruimtemotor"
"Hyperspace Technology": "Hyperruimtetechniek "
"Hyperspace tech": ""
"I don't want to wait": ""
"I forgot my password": "Wachtwoord vergeten ?"
"ID": ""
"IP": "IP"
"Icons": ""
"If you wish to use the two-factor authentication on your gameforge account without having to use the proprietary app made by gameforge...": ""
"Ignore alliance": ""
"Ignore inactive players who have activity on their planet": ""
"Ignore min deut": ""
"Ignore planet": ""
"Ignore player": ""
"Ignore targets with activity": ""
"Ignored planets": ""
"Images URL": ""
"Import bot": ""
"Import bots": ""
"Import resources & build": "Importeer grondstoffen & bouw"
"Importer": ""
"Importer?": ""
"Improved Drone AI": ""
"Improved Lab Technology": ""
"Improved Stellarator": ""
"Impulse": ""
"Impulse Drive": "Impulsmotor"
"In a terminal, execute": ""
"In use": ""
"InGame date": ""
"Inactive": "Inactief"
"Inactive players": ""
"Individual": ""
"Instructions how to install and run": "Instructies voor installatie en uitvoering"
"Intergalactic Envoys": ""
"Intergalactic Research Network": "Intergalactisch Onderzoeksnetwerk"
"Interplanetary Analysis Network": ""
"Interplanetary Missiles": "Interplanetaire Raket"
"Interval between system scan": "Interval tussen systeemscan"
"Ion Cannon": "Ionkanon"
"Ion Crystal Enhancement Heavy Fighter": ""
"Ion Crystal Modules": ""
"Ion Technology": "Iontechniek"
"Is Collector": ""
"Is Discoverer": ""
"Is General": ""
"Is admin": "Is beheerder"
"Is cloud": ""
"Is general?": ""
"Join our Slack server! If you haven't used Slack before: it's free, secure, and works on both your desktop and phone.": ""
"Join the server now": "Word nu lid van de server"
"Jump Gate": "Sprongpoort"
"Jump gate": "Sprongpoort"
"Kaelesh": ""
"Kaelesh Discoverer Enhancement": ""
"Kaelesh buildings": ""
"Kaelesh researches": ""
"Key": ""
"Key/value storage": ""
"LC": "Groot vrachtschip"
"LC that will not be send with auto-split": ""
"Lang": ""
"Languages": ""
"Large Cargo": "Groot vrachtschip"
"Large Cargo to stay": ""
"Large Shield Dome": "Grote Planetaire Schildkoepel"
"Large cargo": ""
"Laser Technology": "Lasertechniek "
"Learn more": "kom meer te weten"
"Level": "Level"
"License": "Licentie"
"License expired": "Licentie verlopen"
"Licenses": ""
"Lifeform buildings": ""
"Lifeform researches": ""
"Light Fighter": "Licht Gevechtsschip"
"Light Fighter MkII": ""
"Light Laser": "Kleine Laser"
"List all your 2fa with": ""
"Load in simulator": "Laad in simulator"
"Login": "Log in"
"Login fails": ""
"Login history": ""
"Logins": ""
"Logs": "Logs"
"Logs retention (days)": ""
"Loot": ""
"Losses": "Verliezen"
"Low Temperature Drives": ""
"Lunar Base": "Maanbasis"
"Magma Forge": ""
"Magma Powered Production": ""
"Magma Powered PumpSystems": ""
"Main planet": "Hoofdplaneet"
"Manual": ""
"Manual fleet save": ""
"Map": "Map"
"Max brain slots": ""
"Max colonizer slots": ""
"Max discovery slots": ""
"Max expeditions slots": ""
"Max farmer slots": ""
"Max repatriate slots": ""
"Max script slots": ""
"Max spyer slots": ""
"MechanGeneral Enhancement": ""
"Mechas": ""
"Mechas buildings": ""
"Mechas researches": ""
"MediaDevicesHash": ""
"Meditation Enclave": ""
"Megalith": ""
"Members": "Leden"
"Memory": ""
"Message": "Bericht"
"Messages": ""
"Metal": "Metaal"
"Metal Mine": "Metaalmijn"
"Metal Storage": "Metaalopslag"
"Metal setting": ""
"Metropolis": ""
"Microchip Assembly Line": ""
"Min. defenses to ignore": "Min. verdediging die wordt genegeerd"
"Min. player rank": ""
"Min. resources to attack": "Min. grondstoffen voor aanval"
"Mineral Research Centre": ""
"Minimum Pathfinders": ""
"Minimum amount of pathfinders needed to consider a debris field": ""
"Minimum fields": ""
"Minimum level of storage": "Min. level van opslagen"
"Minimum possible loot to attack a target": ""
"Minimum speed": ""
"Minimum speed for the early PF": ""
"Minimum temperature": ""
"Missile Attack": "Raket aanval"
"Missile Silo": "Raketsilo"
"Mission": "Missie"
"Monday": ""
"Moon": "Maan"
"Moon Destruction": ""
"Moonchance": "Maankans"
"Moons": ""
"Moons only": ""
"My bots": ""
"My licenses": "Mijn Licenties"
"My proxies": ""
"My servers": "Mijn servers"
"Name": ""
"Nanite Factory": "Nanorobotfabriek"
"Nano Repair Bots": ""
"Navigator vendor": ""
"NavigatorDoNotTrack": ""
"Nb Probes": ""
"Nb probes": "aantal spionage sondes"
"Need application restart": ""
"Neuro Calibration Centre": ""
"Neuro Interface": ""
"Neuromodal Compressor": ""
"Never": ""
"Never wait (100% getting ban)": ""
"New attack detected": ""
"New bot": "Nieuwe bot"
"New fingerprint": ""
"New license": "Nieuwe licentie"
"New license valid until": "Nieuwe licentie geldig tot"
"New missiles attack detected": ""
"New ogamex bot": ""
"New password": "Nieuw wachtwoord"
"New project": ""
"New proxy": ""
"New script": ""
"New server": "Nieuwe server"
"New session": ""
"New suggestion": ""
"New theme": ""
"New ticket": ""
"New trial license": "Nieuwe proeflicentie"
"New user": "Nieuwe gebruiker"
"New username": "Nieuwe gebruikersnaam"
"Next": "Volgende"
"No": "Nee"
"No activity": ""
"No cron job at the moment": "Geen cron taken op deze moment"
"No data to display": ""
"No espionage report to show": ""
"No evacuations": ""
"No files to display": "Geen bestanden om weer te geven"
"No fleet in the log": "Geen vloten in de log"
"No fleets": "Geen vloten"
"No gift card to show": ""
"No license to display": "Geen licenties om weer te geven"
"No logs to show": "Geen logs om te laten zien"
"No messages to show": ""
"No notifications": "geen nieuwe meldingen"
"No plans": "Geen plannen"
"No players whitelisted": ""
"No proxy to display": ""
"No saved flights": "Geen opgeslagen vluchten"
"No scheduled flights": ""
"No servers to display": "Geen servers om weer te geven"
"No session": "Geen sessie"
"No session to display": ""
"No subscription to show": ""
"No targets": "Geen doelen"
"No theme": ""
"None": "Geen"
"Note": "Notitie"
"Notifications": "Meldingen"
"Notify small fleet attacks (< 1/3 firepower)": ""
"Notify when inactive for": ""
"Number of probes to send when spying": ""
"Number to send": ""
"OGT (OGame Timezone)": ""
"OGame Ninja": "Ogame Ninja"
"OGame preferences": ""
"OGame proxy": ""
"OS": "Besturingssysteem"
"OTP secret": ""
"Obsidian Shield Reinforcement": ""
"OfflineAudioCtx": ""
"Ogame password": ""
"Ogame universe": ""
"Ogame username": ""
"OgameX email": ""
"OgameX password": ""
"Old password": "Oud wachtwoord"
"Open .ogame folder": ""
"Open in BattleSim": ""
"Open in OGame browser": "Open in Ogame browser"
"Open in battlesim": ""
"Open locals folder": ""
"Optimised Silo Construction Method": ""
"Orbital Den": ""
"Origin": "Oorsprong"
"Oriktorium": ""
"Os name": ""
"Other actions": ""
"Overclocking Battleship": ""
"Overclocking Heavy Fighter": ""
"Overclocking Large Cargo": ""
"Overview": "Overzicht"
"Own debris field": ""
"Owner": "Eigenaar"
"PF": ""
"PF that will not be send with auto-split nor for recycle": ""
"PF will be send to arrive at the same time as debris field is created (if any)": ""
"Park": "Plaatsen"
"Park In That Ally": "Park In That Ally"
"Password": "Wachtwoord"
"Password recovery": "Wachtwoord herstel"
"Pathfinder": ""
"Pathfinders": ""
"Pathfinders to stay": ""
"Pause session": ""
"Pause/unpause": ""
"Pay with Credit/debit card": "Betaal met krediet/betaalkaart"
"Pay with paypal": "Betaal met paypal"
"Paypal subscriptions can be cancelled at any time in your paypal account": ""
"PermissionsStatesHash": ""
"Phalanx": ""
"Phalanx all": ""
"Phalanx all coordinates": ""
"Phalanx session": ""
"Phase": ""
"Place script here": ""
"Planet": "Planeet"
"Planet name": "Planeet naam"
"Planet/Moon": "Planeet/Maan"
"Planetary Shield": ""
"Planets": ""
"Planets and moons": ""
"Planets only": ""
"Planets/moons with activity only": ""
"Plasma Drive": ""
"Plasma Technology": "Plasmatechniek"
"Plasma Terraformer": ""
"Plasma Turret": "Plasmakanon"
"Play sound when attacked": ""
"Player": "Speler"
"Player ID": ""
"Player name": "Speler naam"
"Player profile": "Speler profiel"
"Player rank": "Speler rang"
"Please": ""
"Please contact admins": "Neem contact op met beheerders"
"Please contact ogame.ninja admins": "Neem contact op met ogame.ninja-beheerders"
"Please update": "Update alstublieft"
"Plnaets/moons with activity only": "" # (unused)
"PluginsHash": ""
"Plunder": "Plunder"
"Points": "Punten"
"Port eg: 587": "Port eg: 587"
"Possible": "Mogelijk"
"Preferred destination": ""
"Preferred transport ships": ""
"Prev": "Vorige"
"Prevent if come back during sleep time": ""
"Prevent importing if come back during sleep time": ""
"Price": "Prijs"
"Pricing": "Prijzen"
"Prioritize nanite factory": ""
"Priority Slack support": "Prioriteits ondersteuring op Slack"
"Priority calculation": "Prioriteitsberekening"
"Priority ratio": ""
"Probe new attackers": ""
"Production Assembly Hall": ""
"Profit": "Winst"
"Project name": ""
"Proposals": ""
"Proxies": ""
"Proxies parameters": ""
"Proxy": "Proxy"
"Proxy password": ""
"Proxy username": ""
"Psionic Modulator": ""
"Psionic Network": ""
"Psionic Shield Matrix": ""
"Psychoharmoniser": ""
"Put bot to sleep now": ""
"Quantum Computer Centre": ""
"Questions": ""
"Queue": "Wachtrij"
"Queue tear down": ""
"R": ""
"RN": "RN"
"Random colonize": ""
"Random debris field": ""
"Random delay before going to sleep (minutes)": ""
"Random delay before waking up (minutes)": ""
"Randomize moon that checks for activity": ""
"Randomize planet/moon that checks for activity": "Randomiseer planeet / maan die op activiteit controleert"
"Range": "Afstand"
"Range to farm": ""
"Rank": "Rang"
"Rank range": ""
"Rapidfire against": "Snelvuur tegen"
"Rapidfire from": "Snelvuur van"
"Re-process existing messages": ""
"Reaper": ""
"Recall back at": ""
"Recall of fleets": ""
"Recall saved fleet half way through the night": ""
"Recall seconds after attack": "Na hoeveel seconden terugroepen?"
"Recall time": ""
"Recovery code": ""
"Recovery code is used to access your account in the event you cannot receive two-factor authentication codes.": ""
"Recycle debris": ""
"Recycle debris field": "Recycle puinveld"
"Recycler": "Recycler"
"Recyclers Needed": ""
"Redeem code": ""
"Redo": ""
"Region": "Regio"
"Register": "Registreren"
"Reload locals": ""
"Remote simulator": ""
"Remove ads": ""
"Remove all": ""
"Remove banner": ""
"Renew instance": "Vernieuw instantie"
"Renew license": "Vernieuw licentie"
"Reorder bots": ""
"Reorder planets": ""
"Repatriate": "Repatriëren"
"Repatriate configs": ""
"Repatriate interval": "Verzend interval"
"Repatriate now": "Verzend nu"
"Repatriate random order": ""
"Repatriate resources": "Verzend grondstoffen"
"Report": "Rapport"
"Reschedule evacuation": "Verplaats de evacuatie"
"Research": "Onderzoek"
"Research AI": ""
"Research Centre": ""
"Research Lab": "Onderzoekslab"
"Research Network": ""
"Research speed": ""
"Researches info": ""
"Reset password": "Wachtwoord opnieuw instellen"
"Reset root password": ""
"Residential Sector": ""
"Resources": ""
"Resources to": ""
"Restart app": ""
"Result": "Resultaat"
"Resume session": ""
"Retrieve Password": "Wachtwoord ophalen"
"Return": ""
"Retype password": "Geef nogmaals het wachtwoord"
"Reverse tunnel": "Reverse tunnel"
"Revoke": "Intrekken"
"Robot Assistants": ""
"Robotics Factory": "Robotfabriek"
"Robotics Research Centre": ""
"Rocket Launcher": "Raketlanceerder"
"Rocktal": ""
"Rocktal Collector Enhancement": ""
"Rocktal buildings": ""
"Rocktal researches": ""
"Root admin cannot delete his account": "Root admin kan zijn account niet verwijderen"
"Round up resources": ""
"Round up ships": ""
"Rounds": "Ronden"
"Run": ""
"Run at start": "Starten bij start"
"Rune Forge": ""
"Rune Shields": ""
"Rune Technologium": ""
"Runtime": ""
"SC": "Klein vrachtschip"
"SC that will not be send with auto-split": ""
"SHA256 Checksum": "SHA256 Checksum"
"SMTP settings (email)": "Smpt instellingen (email)"
"SQL": ""
"Sanctuary": ""
"Saturday": ""
"Save": "Opslaan"
"Save fleet": "Save vloot"
"Save proxy": "Proxy opslaan"
"Save script": ""
"Saved fleets": "Saved vloten"
"Scan": ""
"Scan frequency": "Scanfrequentie"
"Scan the image above with the two-factor authentication app on your phone. If you can’t use a barcode, enter": ""
"Scan this page": "Scan deze pagina"
"Scan universe": "Scan universum"
"Scan using": ""
"Scanner": "Scanner"
"Scans the whole universe every set amount of hours.": "Scant het hele universum elk ingesteld aantal uren"
"Schedule": ""
"Schedule fleet": ""
"Scheduled arrive time": ""
"Scheduled flights": ""
"Screen color depth": ""
"Screen height": ""
"Screen width": ""
"Script file name": ""
"Scripts": "Scripts"
"Scripts examples": ""
"Search": "Zoek"
"Search for lifeforms": ""
"Secs after expedition": ""
"Seismic Mining Technology": ""
"Select one": "Kies een"
"Select origin": "Selecteer oorsprong"
"Self hosting license parameters": "Self-hosting licentieparameters"
"Self-host": "Self-host"
"Send all resources": ""
"Send all ships": ""
"Send attack": ""
"Send fleet": "Verstuur vloot"
"Send flight": "Verstuur vloot"
"Send message to attackers": "Zend bericht naar aanvallers"
"Send recyclers": ""
"Sensor Phalanx": "Sensor Phalanx"
"Sent fleets": ""
"Servers": "Servers"
"Service": ""
"Session aborted": ""
"Sessions": "Sessies"
"Set all moons": ""
"Set all planets": ""
"Settings": "Instellingen"
"Share account": "Deel account"
"Share with": "Deel met"
"Shield": "Schild"
"Shield power": "Schildsterkte"
"Shielding Technology": "Schildtechniek"
"Ship Manufacturing Hall": ""
"Ship points": ""
"Ships": ""
"Ships per expedition": ""
"Ships to": ""
"Ships/Defenses": ""
"Shipyard": "Werf"
"Show credentials": ""
"Sign in": "Log in"
"Sign in to continue": "Log in om door te gaan"
"Sign out": "Afmelden"
"Sign up": "Inschrijven"
"Signer": ""
"Simulate": "Simuleer"
"Simulations": "Simulaties"
"Simulator": "Simulator"
"Sixth Sense": ""
"Size": "Grootte"
"Skip sus login wait": ""
"Skip the target if player rank is over setting": ""
"Skyscraper": ""
"Slack": ""
"Slack account": ""
"Slack support": "Slack ondersteuning"
"Slack username for notifications": ""
"Sleep Mode": ""
"Sleep mode": ""
"Sleeping": ""
"Slingshot Autopilot": ""
"Slots allowed": ""
"Slots reserved for player": "Slots gereserveerd voor speler"
"Small Cargo": "Klein vrachtschip"
"Small Cargo to stay": ""
"Small Shield Dome": "Kleine Planetaire Schildkoepel"
"Small cargo": ""
"Socks5 proxy": ""
"Socks5 server": ""
"Software is too old": "Software is te oud"
"Solar Plant": "Zonne-energiecentrale"
"Solar Satellite": "Zonne-energiesatelliet"
"Solar plant setting": ""
"Solar sat setting": ""
"Solve captcha": ""