-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathen.yaml
3481 lines (3481 loc) · 141 KB
/
en.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 days license"
"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": "Academy Of Sciences"
"Account": "Account"
"Acoustic Scanning": "Acoustic Scanning"
"Actions": "Actions"
"Activate all": ""
"Active": "Active"
"Active players": ""
"Activities": "Activities"
"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": "Add to hunter list"
"Add to queue": "Add to queue"
"Additional cargo": ""
"Additional cargo to send when attacking": ""
"Admin": "Admin"
"Admin account": "Admin account"
"Advanced": ""
"Advanced Recycling Plant": ""
"After scanning the barcode image, the app will display a six-digit code that you can enter below.": ""
"All": "All"
"All bots that I have access to": ""
"All suggestions": ""
"Alliance": "Alliance"
"Alliance Class": ""
"Alliance Depot": "Alliance Depot"
"Alliance rank": "Alliance rank"
"Always": ""
"Anti Ballistic Missiles": ""
"Anti-Ballistic Missiles": "Anti-Ballistic Missiles"
"AntiGame for Ninja": ""
"Antigame": ""
"Antimatter Condenser": "Antimatter Condenser"
"Antimatter Convector": "Antimatter Convector"
"App language": ""
"Arch": "Arch"
"Are you sure?": "Are you sure?"
"Armour": "Armour"
"Armour Technology": "Armour Technology"
"Arrival": ""
"Arrival time": ""
"Arrive at": ""
"Arrive in": "Arrive in"
"Artificial Swarm Intelligence": "Artificial Swarm Intelligence"
"Assembly Line": "Assembly Line"
"Astrophysics": "Astrophysics"
"Att": ""
"Attack": "Attack"
"Attack as soon as we find a suitable target": ""
"Attack from nearest moon": ""
"Attack from nearest planet": "Attack from nearest planet"
"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": "Attack speed"
"Attack target with preferred cargo ships": ""
"Attack target with spy probes": ""
"Attack targets with spy probes": ""
"Attack type": ""
"Attacker": "Attacker"
"Attacker win": "Attacker win"
"Auctioneer": ""
"Auctioneer active": ""
"Auctioneer configs": ""
"AudioCtxHash": ""
"AudioHash": ""
"Audit": "Audit"
"Augmented browsing experience": "Augmented browsing experience"
"Auto enable manual mode when using browser": ""
"Automated Transport Lines": "Automated Transport Lines"
"Automatic fleet": ""
"Automatised Assembly Centre": "Automatised Assembly Centre"
"Available!": ""
"Awake bot now": ""
"B": ""
"Backup the file in": ""
"Backup this bot": ""
"Batch update": ""
"Battlecruiser": "Battlecruiser"
"Battlecruiser MkII": "Battlecruiser MkII"
"Battleship": "Battleship"
"Bid from": ""
"Bio Modifier": "Bio Modifier"
"Biosphere Farm": "Biosphere Farm"
"Biotech Lab": "Biotech Lab" # (unused)
"BiotechLab": ""
"Bomber": "Bomber"
"Bomber MkII": "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 active"
"Brain activities": "Brain activities"
"Brain configs": "Brain configs"
"Browser": "Browser"
"Browser augments": "Browser augments"
"Browser engine name": ""
"Browser name": ""
"Build": "Build"
"Build ABM on missiles attack detected": ""
"Build fusion reactor": ""
"Build jump gate": ""
"Build lifeform buildings": ""
"Build lifeform researches": ""
"Build solar satellites": ""
"Building": "Building"
"Buildings": ""
"Buildings info": ""
"Buy license": "Buy license"
"Buy now": "Buy now"
"CE": ""
"CalcDeltaMs": ""
"Calls to simulator will be proxied to the remote simulator server": ""
"Cancel": ""
"Cancel Fleet": "Cancel Fleet"
"Cancel evacuation": "Cancel evacuation"
"Cancel scheduled flight": ""
"Canvas2dInfo": ""
"Captcha": ""
"Captchas": ""
"Captured": "Captured"
"Cargo": ""
"Cargo Hold Expansion Civilian Ships": "Cargo Hold Expansion Civilian Ships"
"Cargo capacity": "Cargo capacity"
"Cargo's needed": "Cargo's needed"
"Catalyser Technology": "Catalyser Technology"
"Category": "Category"
"Celestial from where to spy & attack": ""
"Change my username": "Change my username"
"Change ogame credentials": ""
"Change password": "Change password"
"Change proxy": "Change proxy"
"Change username": "Change username"
"Changelog": "Changelog"
"Character Class": ""
"Check again": ""
"Check attacks": "Check attacks"
"Check interval (seconds)": ""
"Checks for activity from homeworld": ""
"Checks for activity from latest active planet/moon": ""
"Chip Mass Production": "Chip Mass Production"
"Chrysalis Accelerator": "Chrysalis Accelerator"
"Clear all construction queues": ""
"Clear player data": "Clear player data"
"Click \"Renew license\" button": "" # (unused)
"Click here to load current fleets": ""
"Click on a fleet to get timing details": ""
"Cloning Laboratory": "Cloning Laboratory"
"Colonisation": ""
"Colonize": "Colonize"
"Colonize using": ""
"Colonizer": ""
"Colonizer configs": ""
"Colony Ship": "Colony Ship"
"Color legend": ""
"Combat simulator": "Combat simulator"
"Combustion": ""
"Combustion Drive": "Combustion Drive"
"Commander UI": "Commander UI"
"Compile & download": ""
"Compiled scripts": ""
"Computer Technology": "Computer Technology"
"Configs": "Configs"
"Confirm new password": "Confirm new password"
"Confirm password": "Confirm password"
"Conqueror": ""
"Constant version": ""
"Construction queue": "Construction queue"
"Coord": "Coord"
"Coordinate": ""
"Coordinates": ""
"Coords": "Coords"
"Countdowns": ""
"Counter espionage": ""
"Country": ""
"Crawl": "Crawl"
"Crawl systems": ""
"Crawler": "Crawler"
"Crawler setting": ""
"Create": "Create"
"Create admin account": "Create admin account"
"Create lobby ?": ""
"Create script on all bots": ""
"Create theme": ""
"Create user": "Create user"
"Created": "Created"
"Created at": "Created at"
"Credit or debit card": "Credit or debit card"
"Cron jobs": "Cron jobs"
"Cruiser": "Cruiser"
"Cruiser MkII": "Cruiser MkII"
"Crystal": "Crystal"
"Crystal Farm": "Crystal Farm"
"Crystal Mine": "Crystal Mine"
"Crystal Refinery": "Crystal Refinery"
"Crystal Storage": "Crystal Storage"
"Crystal setting": ""
"Current": "Current"
"Current fleets": "Current fleets"
"Current license valid until": "Current license valid until"
"Current planet": "Current planet"
"D": ""
"DS": ""
"Dangerous": ""
"Date": ""
"DateISO": ""
"Deactivate all": ""
"Deathstar": "Deathstar"
"Debris": "Debris"
"Debris top 100": "Debris top 100"
"Default": ""
"Defence": ""
"Defence repair factor": ""
"Defence to debris": ""
"Defender": "Defender"
"Defender active": "Defender active"
"Defender activities": "Defender activities"
"Defender configs": "Defender configs"
"Defender will ignore attacks from players in this list": ""
"Defender win": "Defender win"
"Defense points": ""
"Defense pts": ""
"Defenses": ""
"Defenses info": ""
"Delay after exporting resources": ""
"Delay between fleet (secs)": ""
"Delay between waves (secs)": ""
"Delete account": "Delete account"
"Delete all keys": ""
"Delete bot": "Delete bot"
"Delete combat reports": ""
"Delete combat reports once the farmer is done using it": ""
"Delete cron job": "Delete cron job"
"Delete expedition messages once imported": ""
"Delete fingerprint": ""
"Delete flight": "Delete flight"
"Delete project": ""
"Delete script": ""
"Delete spy reports once imported": ""
"Delete theme": ""
"Delete this bot": "Delete this bot"
"Delete user": ""
"Delete your account": "Delete your account"
"Deleted at": ""
"Depart at": ""
"Deployment": ""
"Depot AI": "Depot AI"
"Depth Sounding": "Depth Sounding"
"Desktop notification when attacked": ""
"Destination": "Destination"
"Destroy": "Destroy"
"Destroyer": "Destroyer"
"Destroyer MkII": "Destroyer MkII"
"Deut": ""
"Deut synt setting": ""
"Deuterium": "Deuterium"
"Deuterium Synthesiser": "Deuterium Synthesiser"
"Deuterium Synthesizer": "Deuterium Synthesizer"
"Deuterium Tank": "Deuterium Tank"
"Deuterium save factor": ""
"Diamond Energy Transmitter": "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": "Disruption Chamber"
"Documentation": ""
"Domain": "Domain"
"Donut galaxy": "Donut galaxy"
"Donut system": "Donut system"
"Download": "Download"
"Download all scripts": ""
"Download logs": "Download logs"
"Download ogame ninja binary for your OS": ""
"Download scripts": ""
"Downloads": "Downloads"
"Draw": "Draw"
"Dump remaining resources in defenses": "Dump remaining resources in defenses"
"Dur": "Dur"
"Duration": ""
"Edit cron job": "Edit cron job"
"Edit file name": ""
"Efficiency Module": "Efficiency Module"
"Efficient Swarm Intelligence": "Efficient Swarm Intelligence"
"Email": "Email"
"Email Address": "Email Address"
"Email for notifications": ""
"Empire": "Empire"
"Empire page": ""
"Empire view": "Empire view"
"Enable": ""
"Enable Expe-3000": ""
"Enable InfoCompte3": ""
"Enable NixianRaidTracker": ""
"Enable RecursosAmpliados": ""
"Enable TopRaider": ""
"Enable browser augments": "Enable browser augments"
"Enable galaxy browser augments": ""
"Enable two-factor authentication": ""
"Energy": ""
"Energy Technology": "Energy Technology"
"Enhanced Production Technologies": "Enhanced Production Technologies"
"Enhanced Sensor Technology": "Enhanced Sensor Technology"
"Enter a two-factor recovery code": ""
"Enter your email address to retrieve your password": "Enter your email address to retrieve your password"
"Enter your password": ""
"Espionage": ""
"Espionage Probe": "Espionage Probe"
"Espionage Technology": "Espionage Technology"
"Espionage probe": ""
"Espionage probe raids": "Espionage probe raids"
"Espionage report": "Espionage report"
"Evacuate seconds before attack": "Evacuate seconds before attack"
"Evacuation configs": ""
"Evacuation fails": ""
"Evacuation speed on destroy attacks": "Evacuation speed on destroy attacks"
"Every day": ""
"Exp": "Exp"
"Expedition": "Expedition"
"Expedition loss": ""
"Expedition speed": ""
"Expeditions": ""
"Expeditions active": ""
"Expeditions configs": ""
"Expeditions origin": ""
"Experimental Recycling Technology": "Experimental Recycling Technology"
"Experimental Weapons Technology": "Experimental Weapons Technology"
"Expired": "Expired"
"Expired at": ""
"Expires": ""
"Expires at": "Expires at"
"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 sessions"
"Farmer": "Farmer"
"Farmer active": "Farmer active"
"Farming": "Farming"
"Fast attacking": "Fast attacking"
"Features": "Features"
"Fields": ""
"File name": "File name"
"Files saved": ""
"Fingerprint": ""
"Fingerprint name": ""
"Fingerprints": ""
"Fleet info": ""
"Fleet log": "Fleet log"
"Fleet save": ""
"Fleet speed": ""
"Fleet to debris": "Fleet to debris"
"Flight": "Flight"
"Flight time": ""
"Flights": "Flights"
"FontsHash": ""
"Food Silo": "Food Silo"
"Forum Of Transcendence": "Forum Of Transcendence"
"Forward ingame chat from alliance": ""
"Forward ingame chat from players": ""
"Friday": ""
"Fuel": "Fuel"
"Fuel Consumption": ""
"Fuel consumption": "Fuel consumption"
"Full license": ""
"Fullscreen": ""
"Fusion Cell Factory": "Fusion Cell Factory"
"Fusion Drives": "Fusion Drives"
"Fusion Powered Production": "Fusion Powered Production"
"Fusion Reactor": "Fusion Reactor"
"Fusion reactor setting": ""
"Galaxy": "Galaxy"
"Game1DateHeader": ""
"Gameforge bearer token": ""
"Gameforge email": ""
"Gameforge password": ""
"Gauss Cannon": "Gauss Cannon"
"General": "General"
"General Overhaul Battlecruiser": "General Overhaul Battlecruiser"
"General Overhaul Battleship": "General Overhaul Battleship"
"General Overhaul Bomber": "General Overhaul Bomber"
"General Overhaul Cruiser": "General Overhaul Cruiser"
"General Overhaul Destroyer": "General Overhaul Destroyer"
"General Overhaul Light Fighter": "General Overhaul Light Fighter"
"General info": "General info"
"General options": "General options"
"Generate a one-time password with": ""
"Geothermal Power Plants": "Geothermal Power Plants"
"Get free trial key": ""
"Get spy reports": "Get spy reports"
"Get started": "Get started"
"Get trial key": ""
"Get trial license": "Get trial license"
"Gift cards": ""
"Gives you access to your self-host server through": "Gives you access to your self-host server through"
"Global": ""
"Go": "Go"
"Gravitation Sensors": "Gravitation Sensors"
"Graviton Technology": "Graviton Technology"
"Grouped Attack": "Grouped Attack"
"Grouped attack": ""
"HTTP client timeout": ""
"Halls Of Realisation": "Halls Of Realisation"
"Hardened Diamond Drill Heads": "Hardened Diamond Drill Heads"
"Hardware concurrency": ""
"Harvest": "Harvest"
"Heat Recovery": "Heat Recovery"
"Heavy Fighter": "Heavy Fighter"
"Heavy Laser": "Heavy Laser"
"Hide all": ""
"Hide all reports ?": ""
"High Energy Pump Systems": "High Energy Pump Systems"
"High Energy Smelting": "High Energy Smelting"
"High Performance Extractors": "High Performance Extractors"
"High Performance Synthesiser": "High Performance Synthesiser"
"High Performance Terraformer": "High Performance Terraformer"
"High Performance Transformer": "High Performance Transformer"
"High Temperature Superconductors": "High Temperature Superconductors"
"Highest bid value": ""
"History": ""
"Home": "Home"
"Homeworld": ""
"Honour points": "Honour points"
"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": "Hunter"
"Hunter colors": ""
"Hunter configs": "Hunter configs"
"Hyperspace": ""
"Hyperspace Drive": "Hyperspace Drive"
"Hyperspace Technology": "Hyperspace Technology"
"Hyperspace tech": ""
"I don't want to wait": ""
"I forgot my password": "I forgot my password"
"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": "Import resources & build"
"Importer": ""
"Importer?": ""
"Improved Drone AI": "Improved Drone AI"
"Improved Lab Technology": "Improved Lab Technology"
"Improved Stellarator": "Improved Stellarator"
"Impulse": ""
"Impulse Drive": "Impulse Drive"
"In a terminal, execute": ""
"In use": ""
"InGame date": ""
"Inactive": "Inactive"
"Inactive players": ""
"Individual": ""
"Instructions how to install and run": "Instructions how to install and run"
"Intergalactic Envoys": "Intergalactic Envoys"
"Intergalactic Research Network": "Intergalactic Research Network"
"Interplanetary Analysis Network": "Interplanetary Analysis Network"
"Interplanetary Missiles": "Interplanetary Missiles"
"Interval between system scan": "Interval between system scan"
"Ion Cannon": "Ion Cannon"
"Ion Crystal Enhancement Heavy Fighter": "Ion Crystal Enhancement Heavy Fighter"
"Ion Crystal Modules": "Ion Crystal Modules"
"Ion Technology": "Ion Technology"
"Is Collector": ""
"Is Discoverer": ""
"Is General": ""
"Is admin": "Is admin"
"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": "Join the server now"
"Jump Gate": "Jump Gate"
"Jump gate": "Jump gate"
"Kaelesh": ""
"Kaelesh Discoverer Enhancement": "Kaelesh Discoverer Enhancement"
"Kaelesh buildings": ""
"Kaelesh researches": ""
"Key": ""
"Key/value storage": ""
"LC": "LC"
"LC that will not be send with auto-split": ""
"Lang": ""
"Languages": ""
"Large Cargo": "Large Cargo"
"Large Cargo to stay": ""
"Large Shield Dome": "Large Shield Dome"
"Large cargo": ""
"Laser Technology": "Laser Technology"
"Learn more": "Learn more"
"Level": "Level"
"License": "License"
"License expired": "License expired"
"Licenses": ""
"Lifeform buildings": ""
"Lifeform researches": ""
"Light Fighter": "Light Fighter"
"Light Fighter MkII": "Light Fighter MkII"
"Light Laser": "Light Laser"
"List all your 2fa with": ""
"Load in simulator": "Load in simulator"
"Login": "Login"
"Login fails": ""
"Login history": ""
"Logins": ""
"Logs": "Logs"
"Logs retention (days)": ""
"Loot": ""
"Losses": "Losses"
"Low Temperature Drives": "Low Temperature Drives"
"Lunar Base": "Lunar Base"
"Magma Forge": "Magma Forge"
"Magma Powered Production": "Magma Powered Production"
"Magma Powered Pump Systems": "Magma Powered Pump Systems" # (unused)
"Magma Powered PumpSystems": ""
"Main planet": "Main planet"
"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": ""
"Mechan General Enhancement": "Mechan General Enhancement" # (unused)
"MechanGeneral Enhancement": ""
"Mechas": ""
"Mechas buildings": ""
"Mechas researches": ""
"MediaDevicesHash": ""
"Meditation Enclave": "Meditation Enclave"
"Megalith": "Megalith"
"Members": "Members"
"Memory": ""
"Message": "Message"
"Messages": ""
"Metal": "Metal"
"Metal Mine": "Metal Mine"
"Metal Recycling Plant": "Metal Recycling Plant" # (unused)
"Metal Storage": "Metal Storage"
"Metal setting": ""
"Metropolis": "Metropolis"
"Microchip Assembly Line": "Microchip Assembly Line"
"Min. defenses to ignore": "Min. defenses to ignore"
"Min. player rank": ""
"Min. resources to attack": "Min. resources to attack"
"Mineral Research Centre": "Mineral Research Centre"
"Minimum Pathfinders": ""
"Minimum amount of pathfinders needed to consider a debris field": ""
"Minimum fields": ""
"Minimum level of storage": "Minimum level of storage"
"Minimum possible loot to attack a target": ""
"Minimum speed": ""
"Minimum speed for the early PF": ""
"Minimum temperature": ""
"Missile Attack": "Missile Attack"
"Missile Silo": "Missile Silo"
"Mission": "Mission"
"Monday": ""
"Moon": "Moon"
"Moon Destruction": ""
"Moonchance": "Moonchance"
"Moons": ""
"Moons only": ""
"My bots": ""
"My licenses": ""
"My proxies": ""
"My servers": "My servers"
"Name": ""
"Nanite Factory": "Nanite Factory"
"Nano Repair Bots": "Nano Repair Bots"
"Navigator vendor": ""
"NavigatorDoNotTrack": ""
"Nb Probes": ""
"Nb probes": "Nb probes"
"Need application restart": ""
"Neuro Calibration Centre": "Neuro Calibration Centre"
"Neuro Interface": "Neuro Interface"
"Neuromodal Compressor": "Neuromodal Compressor"
"Never": ""
"Never wait (100% getting ban)": ""
"New attack detected": ""
"New bot": "New bot"
"New fingerprint": ""
"New license": "New license"
"New license valid until": "New license valid until"
"New missiles attack detected": ""
"New ogamex bot": ""
"New password": "New password"
"New project": ""
"New proxy": ""
"New script": ""
"New server": "New server"
"New session": ""
"New suggestion": ""
"New theme": ""
"New ticket": ""
"New trial license": "New trial license"
"New user": "New user"
"New username": "New username"
"Next": "Next"
"No": "No"
"No activity": ""
"No cron job at the moment": "No cron job at the moment"
"No data to display": ""
"No espionage report to show": ""
"No evacuations": ""
"No files to display": "No files to display"
"No fleet in the log": "No fleet in the log"
"No fleets": "No fleets"
"No gift card to show": ""
"No license to display": ""
"No logs to show": "No logs to show"
"No messages to show": ""
"No notifications": "No notifications"
"No plans": "No plans"
"No players whitelisted": ""
"No proxy to display": ""
"No saved flights": "No saved flights"
"No scheduled flights": ""
"No servers to display": "No servers to display"
"No session": "No session"
"No session to display": ""
"No subscription to show": ""
"No targets": "No targets"
"No theme": ""
"None": "None"
"Note": "Note"
"Notifications": "Notifications"
"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": "OS"
"OTP secret": ""
"Obsidian Shield Reinforcement": "Obsidian Shield Reinforcement"
"OfflineAudioCtx": ""
"Ogame password": ""
"Ogame universe": ""
"Ogame username": ""
"OgameX email": ""
"OgameX password": ""
"Old password": "Old password"
"Open .ogame folder": ""
"Open in BattleSim": ""
"Open in OGame browser": "Open in OGame browser"
"Open in battlesim": ""
"Open locals folder": ""
"Optimised Silo Construction Method": "Optimised Silo Construction Method"
"Orbital Den": "Orbital Den"
"Origin": "Origin"
"Oriktorium": "Oriktorium"
"Os name": ""
"Other actions": ""
"Overclocking Battleship": "Overclocking Battleship"
"Overclocking Heavy Fighter": "Overclocking Heavy Fighter"
"Overclocking Large Cargo": "Overclocking Large Cargo"
"Overview": "Overview"
"Own debris field": ""
"Owner": "Owner"
"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": "Park"
"Park In That Ally": "Park In That Ally"
"Password": "Password"
"Password recovery": "Password recovery"
"Pathfinder": ""
"Pathfinders": ""
"Pathfinders to stay": ""
"Pause session": ""
"Pause/unpause": ""
"Pay with Credit/debit card": "Pay with Credit/debit card"
"Pay with paypal": "Pay with 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": "Planet"
"Planet name": "Planet name"
"Planet/Moon": "Planet/Moon"
"Planetary Shield": "Planetary Shield"
"Planets": ""
"Planets and moons": ""
"Planets only": ""
"Planets/moons with activity only": ""
"Plasma Drive": "Plasma Drive"
"Plasma Technology": "Plasma Technology"
"Plasma Terraformer": "Plasma Terraformer"
"Plasma Turret": "Plasma Turret"
"Play sound when attacked": ""
"Player": "Player"
"Player ID": ""
"Player name": "Player name"
"Player profile": "Player profile"
"Player rank": "Player rank"
"Please": ""
"Please contact admins": "Please contact admins"
"Please contact ogame.ninja admins": "Please contact ogame.ninja admins"
"Please update": "Please update"
"Plnaets/moons with activity only": "" # (unused)
"PluginsHash": ""
"Plunder": "Plunder"
"Points": "Points"
"Port eg: 587": "Port eg: 587"
"Possible": "Possible"
"Preferred destination": ""
"Preferred transport ships": ""
"Prev": "Prev"
"Prevent if come back during sleep time": ""
"Prevent importing if come back during sleep time": ""
"Price": "Price"
"Pricing": "Pricing"
"Prioritize nanite factory": ""
"Priority Slack support": "Priority Slack support"
"Priority calculation": "Priority calculation"
"Priority ratio": ""
"Probe new attackers": ""
"Production Assembly Hall": "Production Assembly Hall"
"Profit": "Profit"
"Project name": ""
"Proposals": ""
"Proxies": ""
"Proxies parameters": ""
"Proxy": "Proxy"
"Proxy password": ""
"Proxy username": ""
"Psionic Modulator": "Psionic Modulator"
"Psionic Network": "Psionic Network"
"Psionic Shield Matrix": "Psionic Shield Matrix"
"Psychoharmoniser": "Psychoharmoniser"
"Put bot to sleep now": ""
"Quantum Computer Centre": "Quantum Computer Centre"
"Questions": ""
"Queue": "Queue"
"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": "Randomize planet/moon that checks for activity"
"Range": "Range"
"Range to farm": ""
"Rank": "Rank"
"Rank range": ""
"Rapidfire against": "Rapidfire against"
"Rapidfire from": "Rapidfire from"
"Re-process existing messages": ""
"Reaper": ""
"Recall back at": ""
"Recall of fleets": ""
"Recall saved fleet half way through the night": ""
"Recall seconds after attack": "Recall seconds after attack"
"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 debris field"
"Recycler": "Recycler"
"Recyclers Needed": ""
"Redeem code": ""
"Redo": ""
"Region": "Region"
"Register": "Register"
"Reload locals": ""
"Remote simulator": ""
"Remove ads": ""
"Remove all": ""
"Remove banner": ""
"Renew instance": "Renew instance"
"Renew license": "Renew license"
"Reorder bots": ""
"Reorder planets": ""
"Repatriate": "Repatriate"
"Repatriate configs": ""
"Repatriate interval": "Repatriate interval"
"Repatriate now": "Repatriate now"
"Repatriate random order": ""
"Repatriate resources": "Repatriate resources"
"Report": "Report"
"Reschedule evacuation": "Reschedule evacuation"
"Research": "Research"
"Research AI": "Research AI"
"Research Centre": "Research Centre"
"Research Lab": "Research Lab"
"Research Network": "Research Network"
"Research speed": ""
"Researches info": ""
"Reset password": "Reset password"
"Reset root password": ""
"Residential Sector": "Residential Sector"
"Resources": ""
"Resources to": ""
"Restart app": ""
"Result": "Result"
"Resume session": ""
"Retrieve Password": "Retrieve Password"
"Return": ""
"Retype password": "Retype password"
"Reverse tunnel": "Reverse tunnel"
"Revoke": "Revoke"
"Robot Assistants": "Robot Assistants"
"Robotics Factory": "Robotics Factory"
"Robotics Research Centre": "Robotics Research Centre"
"Rocket Launcher": "Rocket Launcher"
"Rocktal": ""
"Rocktal Collector Enhancement": "Rocktal Collector Enhancement"
"Rocktal buildings": ""
"Rocktal researches": ""
"Root admin cannot delete his account": "Root admin cannot delete his account"
"Round up resources": ""
"Round up ships": ""
"Rounds": "Rounds"
"Run": ""
"Run at start": "Run at start"
"Rune Forge": "Rune Forge"
"Rune Shields": "Rune Shields"
"Rune Technologium": "Rune Technologium"
"Runtime": ""
"SC": "SC"
"SC that will not be send with auto-split": ""
"SHA256 Checksum": "SHA256 Checksum"
"SMTP settings (email)": "SMTP settings (email)"
"SQL": ""
"Sanctuary": "Sanctuary"
"Saturday": ""
"Save": "Save"
"Save fleet": "Save fleet"
"Save proxy": "Save proxy"
"Save script": ""
"Saved fleets": "Saved fleets"
"Scan": ""
"Scan frequency": "Scan frequency"
"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 this page"
"Scan universe": "Scan universe"
"Scan using": ""
"Scanner": "Scanner"
"Scans the whole universe every set amount of hours.": "Scans the whole universe every set amount of hours."
"Schedule": ""
"Schedule fleet": ""
"Scheduled arrive time": ""
"Scheduled flights": ""
"Screen color depth": ""
"Screen height": ""
"Screen width": ""
"Script file name": ""
"Scripts": "Scripts"
"Scripts examples": ""
"Search": "Search"
"Search for lifeforms": ""
"Secs after expedition": ""
"Seismic Mining Technology": "Seismic Mining Technology"
"Select one": "Select one"
"Select origin": "Select origin"
"Self hosting license parameters": "Self hosting license parameters"
"Self-host": "Self-host"
"Send all resources": ""
"Send all ships": ""
"Send attack": ""
"Send fleet": "Send fleet"
"Send flight": "Send flight"
"Send message to attackers": "Send message to attackers"
"Send recyclers": ""
"Sensor Phalanx": "Sensor Phalanx"
"Sent fleets": ""
"Servers": "Servers"
"Service": ""
"Session aborted": ""
"Sessions": "Sessions"
"Set all moons": ""
"Set all planets": ""
"Settings": "Settings"
"Share account": "Share account"
"Share with": "Share with"
"Shield": "Shield"
"Shield power": "Shield power"
"Shielding Technology": "Shielding Technology"
"Ship Manufacturing Hall": "Ship Manufacturing Hall"
"Ship points": ""
"Ships": ""
"Ships per expedition": ""
"Ships to": ""
"Ships/Defenses": ""
"Shipyard": "Shipyard"
"Show credentials": ""
"Sign in": "Sign in"
"Sign in to continue": "Sign in to continue"
"Sign out": "Sign out"
"Sign up": "Sign up"
"Signer": ""
"Simulate": "Simulate"
"Simulations": "Simulations"
"Simulator": "Simulator"
"Sixth Sense": "Sixth Sense"
"Size": "Size"
"Skip sus login wait": ""
"Skip the target if player rank is over setting": ""
"Skyscraper": "Skyscraper"
"Slack": ""
"Slack account": ""
"Slack support": "Slack support"
"Slack username for notifications": ""
"Sleep Mode": ""
"Sleep mode": ""
"Sleeping": ""
"Slingshot Autopilot": "Slingshot Autopilot"
"Slots allowed": ""
"Slots reserved for player": "Slots reserved for player"
"Small Cargo": "Small Cargo"
"Small Cargo to stay": ""
"Small Shield Dome": "Small Shield Dome"
"Small cargo": ""
"Socks5 proxy": ""
"Socks5 server": ""
"Software is too old": "Software is too old"
"Solar Plant": "Solar Plant"
"Solar Satellite": "Solar Satellite"