-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.csv
We can't make this file beautiful and searchable because it's too large.
5214 lines (5079 loc) · 566 KB
/
menu.csv
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
Column1;Column2;Column3;Column4;Column5;Column6;Column7;Column8;Column9;Column10;Column11;Column12;Column13;Column14;Column15;Column16;Column17;Column18;Column19;Column20;Column21;Column22;Column23
<ID|readonly|noverify>;<English>;<French>;<Italian>;;;;;;;;;;;;;;;;;;;
demo;Demo version;Demo version;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnExit;Exit;Exit;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnOptions;Options;Options;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCredits;Credits;Credits;same;;;;;;;;;;;;;;;;;;;
multiplayer/creditsMode;Credits;Credits;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnDemoCampaign;Historical Campaign (TGS);Historical Campaign (TGS);same;;;;;;;;;;;;;;;;;;;
mainmenu/btnMissions;Missions;Missions;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPvP;Random Battles;Random Battles;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPvE;Missions;Missions;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTournamentsAndEvents;Events & Tournaments;Events & Tournaments;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBattleTasks;Daily Tasks;Daily Tasks;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBattleTasksHard;Special Tasks;Special Tasks;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPersonalUnlocks;War Diaries;War Diaries;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTournament;Rankings Challenge;Rankings Challenge;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTournamentLb;Tournament Leaderboard;Tournament Leaderboard;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnEvents;Events;Events;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSkirmish;Custom Battles;Custom Battles;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCampaign;Historical Campaign;Historical Campaign;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnDynamic;Dynamic Campaign;Dynamic Campaign;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSingleMission;Single Missions;Single Missions;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSingleLocalMission;Start Mission Offline;Start Mission Offline;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSingleOnlineMission;Start Mission;Start Mission;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnUserMission;User Missions;User Missions;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnShop;Research;Research;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCustomMatch;Find Session;Find Session;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTraining;Mission Editor;Mission Editor;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuilder;Mission Editor;Mission Editor;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTutorial;Tutorial;Tutorial;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnMedal;Medals;Medals;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnUnlockMedal;Medals;Medals;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnExtra;Extras;Extras;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnQuickMatch;Quick Match;Quick Match;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnProfileOpt;Profile Options;Profile Options;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPrestige;Prestige;Prestige;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnOnline;Play Online;Play Online;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnExitWizard;Exit the Controls Setup Wizard;Exit the Controls Setup Wizard;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnChangeName;Change Nickname;Change Nickname;same;;;;;;;;;;;;;;;;;;;
mainmenu/chooseName;Choose a Nickname;Choose a Nickname;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnChangePlayer;Switch User;Switch User;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnXboxProfile;Gamercard;Gamercard;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPsnProfile;Profile;Profile;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnComplain;Complain;Complain;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSend;Send;Send;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnUserCard;Player Card;Player Card;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnProfile;Player Profile;Player Profile;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnMain;Main;Main;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSteamFriendsAdd;Add Steam Friends;Add Steam Friends;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnFacebookFriendsAdd;;Add Facebook Friends;nice;;;;;;;;;;;;;;;;;;;
mainmenu/btnSteamFriendsAddShort;Add Friends from;Add Friends from;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnFacebookFriendsAddShort;;Add Friends from;nice;;;;;;;;;;;;;;;;;;;
mainmenu/btnInviteFriend;;+ Invite Friend;nice;;;;;;;;;;;;;;;;;;;
mainmenu/btnRandomBattlesMenu;Battle Settings;Battle Settings;same;;;;;;;;;;;;;;;;;;;
mainmenu/title;Main Menu;Main Menu;same;;;;;;;;;;;;;;;;;;;
mainmenu/addCustomNick;Add Nickname;Add Nickname;same;;;;;;;;;;;;;;;;;;;
mainmenu/campaignChapterSelectTitle;Select Chapter;Select Chapter;same;;;;;;;;;;;;;;;;;;;
mainmenu/titleSelectRealismLevel;Difficulty Level;Difficulty Level;same;;;;;;;;;;;;;;;;;;;
mainmenu/titleLeaderboards;Leaderboards;Leaderboards;same;;;;;;;;;;;;;;;;;;;
mainmenu/titleMultiPlayerModes;Game Modes;Game Modes;same;;;;;;;;;;;;;;;;;;;
mainmenu/titleSinglePlayer;Single Player;Single Player;same;;;;;;;;;;;;;;;;;;;
mainmenu/titleSelectMatch;Match;Match;same;;;;;;;;;;;;;;;;;;;
mainmenu/titleProfile;Profile;Profile;same;;;;;;;;;;;;;;;;;;;
mainmenu/titleEventDescription;Event Info;Event Info;same;;;;;;;;;;;;;;;;;;;
mainmenu/openGameModeLink;Open;Open;same;;;;;;;;;;;;;;;;;;;
mainmenu/no_leaderboards;There are not enough sessions for displaying the Leaderboards;There are not enough sessions for displaying the Leaderboards;same;;;;;;;;;;;;;;;;;;;
mainmenu/customMatch;Find Session;Find Session;same;;;;;;;;;;;;;;;;;;;
mainmenu/selectCreateMode;Game Mode;Game Mode;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBack;Back;Back;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnClose;Close;Close;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnRefresh;Refresh;Refresh;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnRefreshByUrl;Update by link;Update by link;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPrev;Previous Step;Previous Step;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSelect;Select;Select;same;;;;;;;;;;;;;;;;;;;
mainmenu/questionQuitGame;J-out time?;Would you like to quit?;nice;;;;;;;;;;;;;;;;;;;
mainmenu/btnAircraftInfo;Useless;Information;nice;;;;;;;;;;;;;;;;;;;
mainmenu/btnPages;Pages;Pages;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnMyPlace;My Place;My Place;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTopPlace;First Place;First Place;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnLastWeek;Previous Top 10;Previous Top 10;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPageNext;Next;Next;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPagePrev;Previous;Previous;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnMonthLb;Last Month;Last Month;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTotalLb;All Time;All Time;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSessionSettings;Session Settings;Session Settings;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPostFxSettings;PostFX Settings;PostFX Settings;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSpectator;Spectator;Spectator;same;;;;;;;;;;;;;;;;;;;
tooltip/spectator_mode;Entering the game in Spectator mode, you will not participate in battle, but you can watch.;Entering the game in Spectator mode, you will not participate in battle, but you can watch.;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnReferee;Referee;Referee;same;;;;;;;;;;;;;;;;;;;
tooltip/referee_mode;Entering the game in Referee mode, you will not participate in battle, but you can watch the action on behalf of both teams.;Entering the game in Referee mode, you will not participate in battle, but you can watch the action on behalf of both teams.;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTeam;Change Team;Change Team;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCountry;Change Country;Change Country;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnInvite;Invite Friends;Invite Friends;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnReady;Ready;Ready;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnApply;Apply;Apply;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnOk;Ok;Ok;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSpectatorNext;Next;Next;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSpectatorPrev;Previous;Previous;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCreateSession;Create Session;Create Session;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCreatePrivateSession;Private Match;Private Match;same;;;;;;;;;;;;;;;;;;;
mainmenu/autostartCountdown;Automatic Start in;Automatic Start in;same;;;;;;;;;;;;;;;;;;;
mainmenu/seconds;s;s;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnUserAction;Player Action;Player Action;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnClanAction;Squadron Actions;Squadron Actions;same;;;;;;;;;;;;;;;;;;;
mainmenu/navigation;Navigation;Navigation;same;;;;;;;;;;;;;;;;;;;
mainmenu/navigationExpand;Expand navigation bar;Expand navigation bar;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnMoveToNavPanel;To navigation bar;To navigation bar;same;;;;;;;;;;;;;;;;;;;
mainmenu/protection_improvement;Protection improvement;Protection improvement;same;;;;;;;;;;;;;;;;;;;
mainmenu/protectionMap;Protection map;Protection map;same;;;;;;;;;;;;;;;;;;;
mainmenu/considerCameraVerticalAngle;Consider camera vertical angle;Consider camera vertical angle;same;;;;;;;;;;;;;;;;;;;
flightmenu;Battle menu;Battle menu;same;;;;;;;;;;;;;;;;;;;
flightmenu/title;Pause;Pause;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnResume;Resume;Resume;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnOptions;Options;Options;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnControls;Controls;Controls;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnRestart;Restart;Restart;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnRestartReplay;Restart Replay;Restart Replay;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnQuitMission;Return to the Hangar;Return to the Hangar;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnQuitReplay;Quit Replay;Quit Replay;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnQuitGame;Quit Game;Quit Game;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnCompleteMission;Next Mission;Next Mission;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnBailout;Leave the Plane;Leave the Plane;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnLeaveTheTank;Leave the Vehicle;Leave the Vehicle;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnBailoutHelicopter;Leave the Helicopter;Leave the Helicopter;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnControlsHelp;Me retardo;Help;trim;;;;;;;;;;;;;;;;;;;
flightmenu/questionQuitGame;Are you sure you want to quit?;Are you sure you want to quit?;same;;;;;;;;;;;;;;;;;;;
flightmenu/questionQuitMission;Are you sure you want to go back to the hangar?;Are you sure you want to go back to the hangar?;same;;;;;;;;;;;;;;;;;;;
flightmenu/questionQuitMissionInProgress;"Are you sure you want to go back to the hangar?
Lions and research points will be automatically tallied after the battle is finished.";"Are you sure you want to go back to the hangar?
Lions and research points will be automatically tallied after the battle is finished.";same;;;;;;;;;;;;;;;;;;;
flightmenu/haveAvailableCrews;You still have crews ready to fight.;You still have crews ready to battle.;nice;;;;;;;;;;;;;;;;;;;
respawn/withCheaperWeapon;With cheaper weapons;With cheaper weapons;same;;;;;;;;;;;;;;;;;;;
flightmenu/questionQuitMissionHost;"Are you sure you want to go back to the hangar?
All other players will fail the mission as well.";"Are you sure you want to go back to the hangar?
All other players will fail the mission as well.";same;;;;;;;;;;;;;;;;;;;
flightmenu/questionRestartMission;Are you sure you want to restart this mission?;Are you sure you want to restart this mission?;same;;;;;;;;;;;;;;;;;;;
flightmenu/questionQuitCampaign;Are you sure you want to quit the campaign?;Are you sure you want to quit the campaign?;same;;;;;;;;;;;;;;;;;;;
flightmenu/questionBailout;You sure you want to j out of the aircraft?;Are you sure you want to bail out from the aircraft?;nice;;;;;;;;;;;;;;;;;;;
flightmenu/questionBailoutHelicopter;You sure you want to j out of the helicopter?;Are you sure you want to bail out from the helicopter?;nice;;;;;;;;;;;;;;;;;;;
flightmenu/questionLeaveTheTank;You sure you want to j out of the vehicle?;Are you sure you want to leave the vehicle?;nice;;;;;;;;;;;;;;;;;;;
flightmenu/btnDebugUnlock;Debug Unlock;Debug Unlock;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnStats;Statistics;Statistics;same;;;;;;;;;;;;;;;;;;;
flightmenu/btnActivateOrder;Orders;Orders;same;;;;;;;;;;;;;;;;;;;
campaign/unlockPrevious;This mission is currently locked.;This mission is currently locked.;same;;;;;;;;;;;;;;;;;;;
campaign/unlockPreviousChapter;You need to complete the previous chapter to watch this movie.;You need to complete the previous chapter to watch this movie.;same;;;;;;;;;;;;;;;;;;;
campaign/unlockTutorial;;You need to complete the Tutorial.;nice;;;;;;;;;;;;;;;;;;;
mainmenu/btnWatchMovie;Watch Video;Watch Video;same;;;;;;;;;;;;;;;;;;;
difficulty0;Arcade Battles;Arcade Battles;same;;;;;;;;;;;;;;;;;;;
difficulty1;Realistic Battles;Realistic Battles;same;;;;;;;;;;;;;;;;;;;
difficulty2;Simulator Battles;Simulator Battles;same;;;;;;;;;;;;;;;;;;;
difficulty_name;Difficulty level:;Difficulty level:;same;;;;;;;;;;;;;;;;;;;
reward;Reward;Reward;same;;;;;;;;;;;;;;;;;;;
max_timed_reward;Max. reward for useful actions;Max. reward for useful actions;same;;;;;;;;;;;;;;;;;;;
reward/tutorialFirstComplet;;Reward for first basic tutorial;nice;;;;;;;;;;;;;;;;;;;
reward/everyDay;Reward once a day: ;Reward once a day: ;same;;;;;;;;;;;;;;;;;;;
rewardReceived;Reward received;Reward received;same;;;;;;;;;;;;;;;;;;;
baseReward;Base reward;Base reward;same;;;;;;;;;;;;;;;;;;;
baseReward/tooltip;The final reward for the mission also depends on the chosen difficulty and the number of players in the session.;The final reward for the mission also depends on the chosen difficulty and the number of players in the session.;same;;;;;;;;;;;;;;;;;;;
player_score_name;Player score:;Player score:;same;;;;;;;;;;;;;;;;;;;
mission_hint/spawns_per_battle;available and maximum number of respawns on this vehicle ({unit_name}). Some vehicles (usually reserve ones) have several respawns even without the use of a backup.;available and maximum number of respawns on this vehicle ({unit_name}). Some vehicles (usually reserve ones) have several respawns even without the use of a backup.;same;;;;;;;;;;;;;;;;;;;
mission_hint/cost_sp;the cost of using the vehicle in Spawn points. Spawn points are awarded for any successful actions in battle, in proportion to the mission points. Current amount: {current_cost_sp}.;the cost of using the vehicle in Spawn points. Spawn points are awarded for any successful actions in battle, in proportion to the mission points. Current amount: {current_cost_sp}.;same;;;;;;;;;;;;;;;;;;;
mission_hint/cost_sl;the cost of using the vehicle in Silver Lions.;the cost of using the vehicle in Silver Lions.;same;;;;;;;;;;;;;;;;;;;
mission_hint/spare;the number of backups on this vehicle. The backup allows you to use a vehicle twice in one battle.;the number of backups on this vehicle. The backup allows you to use a vehicle twice in one battle.;same;;;;;;;;;;;;;;;;;;;
mission_hint/spare/universal_spawn;there is a universal backup for this vehicle. You can use this vehicle for a second time by spending one universal backup.;there is a universal backup for this vehicle. You can use this vehicle for a second time by spending one universal backup.;same;;;;;;;;;;;;;;;;;;;
mission_hint/spare/spawn;the number of backups on this vehicle. You can use this vehicle for a second time by spending one backup.;the number of backups on this vehicle. You can use this vehicle for a second time by spending one backup.;same;;;;;;;;;;;;;;;;;;;
mission_hint/spawns_per_unit;available and maximum number of respawns on this type of vehicle ({army}).;available and maximum number of respawns on this type of vehicle ({army}).;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_yes;Yes;Yes;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_no;No;No;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_ok;Ok;OK;nice;;;;;;;;;;;;;;;;;;;
msgbox/btn_cancel;Fuck Off;Cancel;trim;;;;;;;;;;;;;;;;;;;
msgbox/btn_back;Back;Back;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_replace;Replace;Replace;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_add;Add;Add;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_copy;Copy;Copy;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_delete;Delete;Delete;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_remove;Remove;Remove;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_move_up;Move Up;Move Up;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_move_down;Move Down;Move Down;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_rename;Rename;Rename;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_edit;Edit;Edit;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_more;More...;More...;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_haveReadAndAgree;I have read and agree;I have read and agree;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_reassign;Reassign;Reassign;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_skip;Skip;Skip;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_leaveSquad;Leave Squad;Leave Squad;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_disbandSquad;Disband Squad;Disband Squad;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_createNewSquad;Create New Squad;Create New Squad;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_sendAnyway;Send anyway;Send anyway;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_aviation;Air;Air;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_army;Ground;Ground;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_purchase;Purchase;Purchase;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_apply;Apply;Apply;same;;;;;;;;;;;;;;;;;;;
msgbox/wait_for_squad_leader;Waiting for the squad leader;Waiting for the squad leader;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_verify;Verify;Verify;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_activate;Activate;Activate;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_later;Later;Later;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_revoke_invites;Revoke invites;Revoke invites;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_relogin;Relogin;Relogin;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_bind;Bind;Bind;same;;;;;;;;;;;;;;;;;;;
msgbox/presetActions;Preset actions;Preset actions;same;;;;;;;;;;;;;;;;;;;
options/creatingSession;Creating session...;Creating session...;same;;;;;;;;;;;;;;;;;;;
options/joinSession;Joining session...;Joining session...;same;;;;;;;;;;;;;;;;;;;
options/searchingSession;Searching session...;Searching session...;same;;;;;;;;;;;;;;;;;;;
options/session;Session;Session;same;;;;;;;;;;;;;;;;;;;
profile/options;Options;Options;same;;;;;;;;;;;;;;;;;;;
profile/hangar;Research;Research;same;;;;;;;;;;;;;;;;;;;
profile/unlocks;Unlocks;Unlocks;same;;;;;;;;;;;;;;;;;;;
profile/awards;Awards;Awards;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnEncyclopedia;Shitpedia;Encyclopedia;nice;;;;;;;;;;;;;;;;;;;
profile/pilots;Pilots;Pilots;same;;;;;;;;;;;;;;;;;;;
profile/language;Language;Language;same;;;;;;;;;;;;;;;;;;;
profile/steamName;Steam: ;Steam: ;same;;;;;;;;;;;;;;;;;;;
profile/facebookName;;Facebook: ;nice;;;;;;;;;;;;;;;;;;;
profile/psnName;OnlineID: ;OnlineID: ;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnGameplay;Options;Options;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnWeapons;Modifications;Modifications;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnWeaponsDesc;Modify the vehicle in accordance with your purposes;Modify the vehicle in accordance with your purposes;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnClans;Squadrons;Squadrons;same;;;;;;;;;;;;;;;;;;;
unlocks/newRank;New rank;New rank;same;;;;;;;;;;;;;;;;;;;
unlocks/aircraft;New vehicle available;New vehicle available;same;;;;;;;;;;;;;;;;;;;
unlocks/difficulty;Difficulty;Difficulty;same;;;;;;;;;;;;;;;;;;;
unlocks/weapon;New weapon;New weapon;same;;;;;;;;;;;;;;;;;;;
unlocks/weapon_for_air;New weapon for %s;New weapon for %s;same;;;;;;;;;;;;;;;;;;;
unlocks/modification_for_air;New modification for %s;New modification for %s;same;;;;;;;;;;;;;;;;;;;
unlocks/bullets_for_air;New shell rack for %s;New shell rack for %s;same;;;;;;;;;;;;;;;;;;;
unlocks/mission;New mission unlocked;New mission unlocked;same;;;;;;;;;;;;;;;;;;;
unlocks/medal;Medal earned;Medal earned;same;;;;;;;;;;;;;;;;;;;
unlocks/challenge;Challenge;Challenge;same;;;;;;;;;;;;;;;;;;;
unlocks/achievement;New achievement;New achievement;same;;;;;;;;;;;;;;;;;;;
unlocks/title;New title;New title;same;;;;;;;;;;;;;;;;;;;
unlocks/loading_bg;New loading screen;New loading screen;same;;;;;;;;;;;;;;;;;;;
unlocks/next;Next;Next;same;;;;;;;;;;;;;;;;;;;
unlocks/continue;Continue;Continue;same;;;;;;;;;;;;;;;;;;;
unlocks/difficulty_old;Realism Level;Realism Level;same;;;;;;;;;;;;;;;;;;;
unlocks/encyclopedia;New encyclopedia article unlocked;New encyclopedia article unlocked;same;;;;;;;;;;;;;;;;;;;
unlocks/pilot;Profile icon;Profile icon;same;;;;;;;;;;;;;;;;;;;
unlocks/streak;Award;Award;same;;;;;;;;;;;;;;;;;;;
unlocks/award;Award;Award;same;;;;;;;;;;;;;;;;;;;
unlocks/entitlement;You've got;You've got;same;;;;;;;;;;;;;;;;;;;
unlocks/country;New country unlocked;New country unlocked;same;;;;;;;;;;;;;;;;;;;
unlocks/year;A new year for dynamic campaigns available;A new year for dynamic campaigns available;same;;;;;;;;;;;;;;;;;;;
unlocks/slot;New crew available;New crew available;same;;;;;;;;;;;;;;;;;;;
unlocks/skillpoints;Skill points were earned;Skill points were earned;same;;;;;;;;;;;;;;;;;;;
unlocks/skillpoints/desc; earned skill points - ; earned skill points - ;same;;;;;;;;;;;;;;;;;;;
unlocks/battletask;Battle Task Completed;Battle Task Completed;same;;;;;;;;;;;;;;;;;;;
unlocks/trophy_steam;New achievement;New achievement;same;;;;;;;;;;;;;;;;;;;
unlocks/trophy;Award;Award;same;;;;;;;;;;;;;;;;;;;
unlocks/inventory;New item;New item;same;;;;;;;;;;;;;;;;;;;
unlocks/warbond;Award;Award;same;;;;;;;;;;;;;;;;;;;
complex_engine_on;Manual engine control;Manual engine control;same;;;;;;;;;;;;;;;;;;;
complex_engine_off;Auto engine control;Auto engine control;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnReplays;Replays;Replays;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnViewReplay;View Replay;View Replay;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnViewReplayTooltip;Session ID: {sessionID};Session ID: {sessionID};same;;;;;;;;;;;;;;;;;;;
mainmenu/btnViewServerReplay;View Server Replay;View Server Replay;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnViewHighlights;View highlights;View highlights;same;;;;;;;;;;;;;;;;;;;
mainmenu/replayName;Replay name;Replay name;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnOpenReplaysFolder;Open Folder;Open Folder;same;;;;;;;;;;;;;;;;;;;
mainmenu/areYouSureDelReplay;Are you sure you want to delete this replay?;Are you sure you want to delete this replay?;same;;;;;;;;;;;;;;;;;;;
mainmenu/areYouSureOpenReplayFolder;Are you sure you want to open replay folder?;Are you sure you want to open replay folder?;same;;;;;;;;;;;;;;;;;;;
mainmenu/noReplays;No replays found;No replays found;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSaveReplay;Save Replay;Save Replay;same;;;;;;;;;;;;;;;;;;;
mainmenu/questionSaveReplay;Would you like to save the replay?;Would you like to save the replay?;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_viewAgain;Watch Again;Watch Again;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnRecords;Statistics;Statistics;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnStatistics;Service Record;Service Record;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnResetButton;Remove Binding;Remove Binding;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnResetAxis;Reset Axis and Options;Reset Axis and Options;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnReset;Reset;Reset;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnAxisUnassign;Unassign Axis;Unassign Axis;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnRestoreAxis;Restore Axis;Restore Axis;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnEditAxis;Edit Axis;Edit Axis;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnAutodetectAxis;Autodetect Axis;Autodetect Axis;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnStopAutodetect;Stop Axis Autodetection;Stop Axis Autodetection;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPerformAction;Perform Action;Perform Action;same;;;;;;;;;;;;;;;;;;;
profile/stats;Service record;Service record;same;;;;;;;;;;;;;;;;;;;
mainmenu/onlineForLB;You need to be online to play missions with your friends, access leaderboards and other network features. Want to log in now?;You need to be online to play missions with your friends, access leaderboards and other network features. Want to log in now?;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnVersus;Random Battles;Random Battles;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCoop;Single Missions;Single Missions;same;;;;;;;;;;;;;;;;;;;
mainmenu/titleVersus;Random Battles;Random Battles;same;;;;;;;;;;;;;;;;;;;
mainmenu/titleCoop;Dynamic Campaign;Dynamic Campaign;same;;;;;;;;;;;;;;;;;;;
chapters/singleMission;Missions;Missions;same;;;;;;;;;;;;;;;;;;;
chapters/dynamic;Dynamic Campaign;Dynamic Campaign;same;;;;;;;;;;;;;;;;;;;
chapters/event;Current Events;Current Events;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnDecals;Hangar;Hangar;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnMultiplayer;PvP;PvP;same;;;;;;;;;;;;;;;;;;;
difficulty3;Custom;Custom;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnNext;Next;Next;same;;;;;;;;;;;;;;;;;;;
secondary_device_select_fmt;Secondary controller: %s;Secondary controller: %s;same;;;;;;;;;;;;;;;;;;;
local_coop_no_device;Please select controller for gunner;Please select controller for gunner;same;;;;;;;;;;;;;;;;;;;
options/mislist;Change mission;Change mission;same;;;;;;;;;;;;;;;;;;;
unlocks/decal;New decal;New decal;same;;;;;;;;;;;;;;;;;;;
unlocks/skin;New camouflage;New camouflage;same;;;;;;;;;;;;;;;;;;;
unlocks/attachable;New decorator;New decorator;same;;;;;;;;;;;;;;;;;;;
mission_status;Mission Status;Mission Status;same;;;;;;;;;;;;;;;;;;;
mission_status_0;Accomplished on Arcade difficulty;Accomplished on Arcade difficulty;same;;;;;;;;;;;;;;;;;;;
mission_status_1;Accomplished on Realistic difficulty;Accomplished on Realistic difficulty;same;;;;;;;;;;;;;;;;;;;
mission_status_2;Accomplished on Simulator difficulty;Accomplished on Simulator difficulty;same;;;;;;;;;;;;;;;;;;;
new_rank;You've got a new rank;You've got a new rank;same;;;;;;;;;;;;;;;;;;;
new_rank_country;;You've been promoted to a new rank in your country's air forces!;nice;;;;;;;;;;;;;;;;;;;
players_recommended;Recommended for %s players;Recommended for %s players;same;;;;;;;;;;;;;;;;;;;
msgbox/only_default_help;Help is available for default controller only.;Help is available for default controller only.;same;;;;;;;;;;;;;;;;;;;
options/mp_mission;Mission;Mission;same;;;;;;;;;;;;;;;;;;;
options/mp_user_mission;User mission;User mission;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_signIn;Cum In;Sign In;nice;;;;;;;;;;;;;;;;;;;
msgbox/btn_confirm;Confirm;Confirm;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_continue;Continue;Continue;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_download;Download;Download;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_browse;Browse;Browse;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_use;Use;Use;same;;;;;;;;;;;;;;;;;;;
msgbox/start_tutorial;;You haven't completed any mission on this difficulty setting yet. Would you like to play tutorial first?;nice;;;;;;;;;;;;;;;;;;;
msgbox/not_in_leaderboard;You haven't been listed in the Leaderboard yet.;You haven't been listed in the Leaderboard yet.;same;;;;;;;;;;;;;;;;;;;
profile/difficulty;Difficulty Settings;Difficulty Settings;same;;;;;;;;;;;;;;;;;;;
customdiff/value;Evaluated Difficulty: ;Evaluated Difficulty: ;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnUnlockAchievement;Achievements;Achievements;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnFavoritesUnlockAchievement;Favorite Achievements;Favourite Achievements;nice;;;;;;;;;;;;;;;;;;;
mainmenu/btnUnlockAchievementsAll;All Achievements;All Achievements;same;;;;;;;;;;;;;;;;;;;
mainmenu/UnlockAchievementsToFavorite;To Favorites;To Favourites;nice;;;;;;;;;;;;;;;;;;;
mainmenu/UnlockAchievementsToFavorite/hint;Add the achievement to Favorites;Add the achievement to Favourites;nice;;;;;;;;;;;;;;;;;;;
mainmenu/UnlockAchievementsRemoveFromFavorite/hint;Remove the achievement from Favorites;Remove the achievement from Favourites;nice;;;;;;;;;;;;;;;;;;;
mainmenu/noFavoriteAchievements;You have no favorite achievements. You can add achievements to Favorites on the Achievements page.;You have no favourite achievements. You can add achievements to Favourites on the Achievements page.;nice;;;;;;;;;;;;;;;;;;;
mainmenu/btnUnlock;Unlocks;Unlocks;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnUnlockDecal;Decals;Decals;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnUnlockSkin;Skins;Skins;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnUnlockChallenge;Challenges;Challenges;same;;;;;;;;;;;;;;;;;;;
mainmenu/pleaseSignIn;Offline Mode;Offline Mode;same;;;;;;;;;;;;;;;;;;;
mainmenu/balance;Balance;Balance;same;;;;;;;;;;;;;;;;;;;
mainmenu/gold;Golden Eagles - premium currency;Golden Eagles - premium currency;same;;;;;;;;;;;;;;;;;;;
mainmenu/warpoints;Silver Lions - main currency;Silver Lions - main currency;same;;;;;;;;;;;;;;;;;;;
mainmenu/rank;Level;Level;same;;;;;;;;;;;;;;;;;;;
mainmenu/BR; (BR {br}); (BR {br});same;;;;;;;;;;;;;;;;;;;
mainmenu/brText;BR;BR;same;;;;;;;;;;;;;;;;;;;
mainmenu/playerRank;Player level;Player level;same;;;;;;;;;;;;;;;;;;;
mainmenu/countryRank;Rank in country air forces;Rank in country air forces;same;;;;;;;;;;;;;;;;;;;
mainmenu/rank/country_usa;USA Air Forces Rank;USA Air Forces Rank;same;;;;;;;;;;;;;;;;;;;
mainmenu/rank/country_ussr;Soviet Air Forces Rank;Soviet Air Forces Rank;same;;;;;;;;;;;;;;;;;;;
mainmenu/rank/country_germany;German Air Forces Rank;German Air Forces Rank;same;;;;;;;;;;;;;;;;;;;
mainmenu/rank/country_britain;British Air Forces Rank;British Air Forces Rank;same;;;;;;;;;;;;;;;;;;;
mainmenu/rank/country_japan;Japanese Air Forces Rank;Japanese Air Forces Rank;same;;;;;;;;;;;;;;;;;;;
mainmenu/rank/country_china;Chinese Air Forces Rank;Chinese Air Forces Rank;same;;;;;;;;;;;;;;;;;;;
mainmenu/rank/country_pkg6;Ponyland Air Forces Rank;Ponyland Air Forces Rank;same;;;;;;;;;;;;;;;;;;;
mainmenu/countriesRanks;Rank in countries' air forces;Rank in countries' air forces;same;;;;;;;;;;;;;;;;;;;
mainmenu/rewards;Medals;Medals;same;;;;;;;;;;;;;;;;;;;
mainmenu/countryRank/tooltip;Rank in the given country's air forces;Rank in the given country's air forces;same;;;;;;;;;;;;;;;;;;;
mainmenu/boostersTooltip;Active boosters {currencyMark};Active boosters {currencyMark};same;;;;;;;;;;;;;;;;;;;
mainmenu/booster/personal;Personal booster;Personal booster;same;;;;;;;;;;;;;;;;;;;
mainmenu/booster/public;Public booster;Public booster;same;;;;;;;;;;;;;;;;;;;
mainmenu/boosterType/common;Common;Common;same;;;;;;;;;;;;;;;;;;;
msgbox/existingBoosters;"You already have active boosters. When more than one booster is active, their total effect is less than sum of all boosters.
{newBooster} will increase common effect by {newBoosterEffect}.
Are you sure you want to activate the booster?";"You already have active boosters. When more than one booster is active, their total effect is less than sum of all boosters.
{newBooster} will increase common effect by {newBoosterEffect}.
Are you sure you want to activate the booster?";same;;;;;;;;;;;;;;;;;;;
msgbox/isInFlightBooster;"Booster will have an effect starting with the next battle.
Are you sure you want to activate the booster?";"Booster will have an effect starting with the next battle.
Are you sure you want to activate the booster?";same;;;;;;;;;;;;;;;;;;;
msgbox/conflictingBoosters/boosterEndsIn;Ends in %s;Ends in %s;same;;;;;;;;;;;;;;;;;;;
msgbox/conflictingWager;Stake on %s will cancel current active stake;Stake on %s will cancel current active stake;same;;;;;;;;;;;;;;;;;;;
msgbox/notEnoughMoneyWager/wp;Not enough Silver Lions to start the wager.;Not enough Silver Lions to start the wager.;same;;;;;;;;;;;;;;;;;;;
msgbox/notEnoughMoneyWager/gold;Not enough Golden Eagles to start the wager.;Not enough Golden Eagles to start the wager.;same;;;;;;;;;;;;;;;;;;;
currency/researchPoints/name;Research points;Research points;same;;;;;;;;;;;;;;;;;;;
currency/researchPoints/desc;Research points (RP);Research points (RP);same;;;;;;;;;;;;;;;;;;;
currency/freeResearchPoints/name;Convertible research points;Convertible research points;same;;;;;;;;;;;;;;;;;;;
currency/freeResearchPoints/desc;Convertible research points (convertible RP);Convertible research points (convertible RP);same;;;;;;;;;;;;;;;;;;;
currency/skillPoints/name;Skill points;Skill points;same;;;;;;;;;;;;;;;;;;;
currency/skillPoints/desc;Crew skill points;Crew skill points;same;;;;;;;;;;;;;;;;;;;
stats/time_played;Time played;Time played;same;;;;;;;;;;;;;;;;;;;
stats/missions_wins;Victories;Victories;same;;;;;;;;;;;;;;;;;;;
stats/missions_completed;Finished missions;Finished missions;same;;;;;;;;;;;;;;;;;;;
stats/missions_failed;Missions failed;Missions failed;same;;;;;;;;;;;;;;;;;;;
stats/kills_air;Air targets destroyed;Air targets destroyed;same;;;;;;;;;;;;;;;;;;;
stats/kills_ground;Ground targets destroyed;Ground targets destroyed;same;;;;;;;;;;;;;;;;;;;
stats/kills_naval;Naval targets destroyed;Naval targets destroyed;same;;;;;;;;;;;;;;;;;;;
stats/fm/fighter;Fighter;Fighter;same;;;;;;;;;;;;;;;;;;;
stats/fm/bomber;Bomber;Bomber;same;;;;;;;;;;;;;;;;;;;
stats/fm/assault;Strike aircraft;Strike aircraft;same;;;;;;;;;;;;;;;;;;;
stats/flights;Number of Respawns;Number of Respawns;same;;;;;;;;;;;;;;;;;;;
sm_rank;Rank;Rank;same;;;;;;;;;;;;;;;;;;;
sm_era;Rank;Rank;same;;;;;;;;;;;;;;;;;;;
sm_date;Date;Date;same;;;;;;;;;;;;;;;;;;;
sm_each;Each;Each;same;;;;;;;;;;;;;;;;;;;
exp_received;+ %s ▉;+ %s ▉;same;;;;;;;;;;;;;;;;;;;
exp_received/by_param;+ {value} ▉;+ {value} ▉;same;;;;;;;;;;;;;;;;;;;
delay_received;Timers %s%d sec;Timers %s%d sec;same;;;;;;;;;;;;;;;;;;;
sm_can_be_played;Can be played %d times;Can be played %d times;same;;;;;;;;;;;;;;;;;;;
sm_playable;Playable;Playable;same;;;;;;;;;;;;;;;;;;;
sm_play_times;%d times;%d times;same;;;;;;;;;;;;;;;;;;;
sm_conditions;Conditions;Conditions;same;;;;;;;;;;;;;;;;;;;
sm_objective;Objective;Objective;same;;;;;;;;;;;;;;;;;;;
shop/section/researchable;Researchable vehicles;Researchable vehicles;same;;;;;;;;;;;;;;;;;;;
shop/section/premium;Premium vehicles;Premium vehicles;same;;;;;;;;;;;;;;;;;;;
shop/premiumVehicle/short;Premium;Premium;same;;;;;;;;;;;;;;;;;;;
shop/age;Rank;Rank;same;;;;;;;;;;;;;;;;;;;
shop/age/num;Rank {num};Rank {num};same;;;;;;;;;;;;;;;;;;;
shop/age/tooltip;Vehicle Rank;Vehicle Rank;same;;;;;;;;;;;;;;;;;;;
shop/battle_rating;Battle rating;Battle rating;same;;;;;;;;;;;;;;;;;;;
shop/battle_rating/tooltip;Relative vehicle battle rating;Relative vehicle battle rating;same;;;;;;;;;;;;;;;;;;;
shop/unitCountry/operator;Operator country;Operator country;same;;;;;;;;;;;;;;;;;;;
shop/unitCountry/research;Research country;Research country;same;;;;;;;;;;;;;;;;;;;
shop/chance_to_met;Chance of meeting;Chance of meeting;same;;;;;;;;;;;;;;;;;;;
chance_to_met/never;Never;Never;same;;;;;;;;;;;;;;;;;;;
chance_to_met/low;Low;Low;same;;;;;;;;;;;;;;;;;;;
chance_to_met/average;Average;Average;same;;;;;;;;;;;;;;;;;;;
chance_to_met/high;High;High;same;;;;;;;;;;;;;;;;;;;
shop/condition;Condition:;Condition:;same;;;;;;;;;;;;;;;;;;;
shop/condition/tooltip;Whether the vehicle is damaged and how long it would take to repair it for free.;Whether the vehicle is damaged and how long it would take to repair it for free.;same;;;;;;;;;;;;;;;;;;;
shop/damaged;Vehicle damaged;Vehicle damaged;same;;;;;;;;;;;;;;;;;;;
shop/repair_cost;Repair cost:;Repair cost:;same;;;;;;;;;;;;;;;;;;;
shop/repair_cost/tooltip;The cost of repairing the vehicle.;The cost of repairing the vehicle.;same;;;;;;;;;;;;;;;;;;;
shop/full_repair_cost;Max repair cost:;Max repair cost:;same;;;;;;;;;;;;;;;;;;;
shop/full_repair_cost/tooltip;The cost of quick and complete repair on the vehicle.;The cost of quick and complete repair on the vehicle.;same;;;;;;;;;;;;;;;;;;;
shop/repair_cost_per_min;Repair cost depending on lifetime:;Repair cost depending on lifetime:;same;;;;;;;;;;;;;;;;;;;
shop/avg_repair_cost;Max repair cost:;Max repair cost:;same;;;;;;;;;;;;;;;;;;;
shop/avg_repair_cost/tooltip;The cost of quick and complete repair on the vehicle.;The cost of quick and complete repair on the vehicle.;same;;;;;;;;;;;;;;;;;;;
shop/full_repair_time;Free repair time:;Free repair time:;same;;;;;;;;;;;;;;;;;;;
shop/full_repair_time/tooltip;Time until the vehicle would be repaired on its own for free.;Time until the vehicle would be repaired on its own for free.;same;;;;;;;;;;;;;;;;;;;
shop/full_repair_time_crew;Free repair time (with crew):;Free repair time (with crew):;same;;;;;;;;;;;;;;;;;;;
shop/full_repair_time_crew/tooltip;Time until the vehicle would be repaired on its own for free.;Time until the vehicle would be repaired on its own for free.;same;;;;;;;;;;;;;;;;;;;
shop/free_repairs;Free repairs:;Free repairs:;same;;;;;;;;;;;;;;;;;;;
shop/free_repairs/tooltip;Free repairs:;Free repairs:;same;;;;;;;;;;;;;;;;;;;
shop/crew_train_cost;Crew train cost:;Crew train cost:;same;;;;;;;;;;;;;;;;;;;
shop/crew_train_cost/tooltip;Cost of training the crew to use this particular type of vehicles.;Cost of training the crew to use this particular type of vehicles.;same;;;;;;;;;;;;;;;;;;;
shop/max_speed;Max Speed:;Max Speed:;same;;;;;;;;;;;;;;;;;;;
shop/max_speed/tooltip;The vehicle's maximum speed.;The vehicle's maximum speed.;same;;;;;;;;;;;;;;;;;;;
shop/max_depth;Max Depth:;Max Depth:;same;;;;;;;;;;;;;;;;;;;
shop/max_depth/tooltip;Maximum depth submarine can sail.;Maximum depth submarine can sail.;same;;;;;;;;;;;;;;;;;;;
shop/max_speed_alt;at height:;at height:;same;;;;;;;;;;;;;;;;;;;
shop/max_speed_alt/tooltip;Maximum-speed altitude.;Maximum-speed altitude.;same;;;;;;;;;;;;;;;;;;;
shop/max_speed_alt_sea;at sea level;at sea level;same;;;;;;;;;;;;;;;;;;;
shop/max_altitude;Max Altitude:;Max Altitude:;same;;;;;;;;;;;;;;;;;;;
shop/estimated_damage_to_base;Estimated damage to bases:;Estimated damage to bases:;same;;;;;;;;;;;;;;;;;;;
shop/reward_multiplier_for_base;Reward multiplier for bases:;Reward multiplier for bases:;same;;;;;;;;;;;;;;;;;;;
shop/max_altitude/tooltip;The vehicle's maximum altitude.;The vehicle's maximum altitude.;same;;;;;;;;;;;;;;;;;;;
shop/turn_time;Turn Time:;Turn Time:;same;;;;;;;;;;;;;;;;;;;
shop/turn_time/tooltip;The minimum time it takes the airplane to complete a full horizontal circle.;The minimum time it takes the airplane to complete a full horizontal circle.;same;;;;;;;;;;;;;;;;;;;
shop/max_climbSpeed;Rate of Climb:;Rate of Climb:;same;;;;;;;;;;;;;;;;;;;
shop/max_climbSpeed/tooltip;The airplane's climbing speed.;The airplane's climbing speed.;same;;;;;;;;;;;;;;;;;;;
shop/climb_time;Time to Climb:;Time to Climb:;same;;;;;;;;;;;;;;;;;;;
shop/climb_time/tooltip;The airplane's climbing speed.;The airplane's climbing speed.;same;;;;;;;;;;;;;;;;;;;
shop/climb_alt;at height:;at height:;same;;;;;;;;;;;;;;;;;;;
shop/climb_alt/tooltip;The airplane's climbing speed.;The airplane's climbing speed.;same;;;;;;;;;;;;;;;;;;;
shop/range;Range:;Range:;same;;;;;;;;;;;;;;;;;;;
shop/range/tooltip;The maximum distance the airplane can travel without refueling.;The maximum distance the airplane can travel without refueling.;same;;;;;;;;;;;;;;;;;;;
shop/airfieldLen;Takeoff Run:;Takeoff Run:;same;;;;;;;;;;;;;;;;;;;
shop/airfieldLen/tooltip;The distance a bad pilot must travel before realizing they left the stove on.;The distance the airplane must travel on the runway before having enough speed to take off.;nice;;;;;;;;;;;;;;;;;;;
shop/wing_loading;Wing Loading:;Wing Loading:;same;;;;;;;;;;;;;;;;;;;
shop/wing_loading/tooltip;Weight of the airplane divided by the area of the wing.;Weight of the airplane divided by the area of the wing.;same;;;;;;;;;;;;;;;;;;;
shop/power_to_weight_ratio;Power-to-Weight ratio:;Power-to-Weight ratio:;same;;;;;;;;;;;;;;;;;;;
shop/power_to_weight_ratio/tooltip;The ratio of engine power to the weight of the airplane.;The ratio of engine power to the weight of the airplane.;same;;;;;;;;;;;;;;;;;;;
shop/thrust_to_weight_ratio;Thrust-to-Weight ratio:;Thrust-to-Weight ratio:;same;;;;;;;;;;;;;;;;;;;
shop/thrust_to_weight_ratio/tooltip;The ratio of engine thrust to the weight of the airplane.;The ratio of engine thrust to the weight of the airplane.;same;;;;;;;;;;;;;;;;;;;
shop/weaponPresets;Armament Presets:;Armament Presets:;same;;;;;;;;;;;;;;;;;;;
shop/weaponPresets/tooltip;Armament presets available for the current vehicle.;Armament presets available for the current vehicle.;same;;;;;;;;;;;;;;;;;;;
shop/tooltip_weaponmod;Secondary weapon modifier. Doesn't count after suspended ammunition is depleted (except for secondary gunpods).;Secondary weapon modifier. Doesn't count after suspended ammunition is depleted (except for secondary cannons and machine guns).;nice;;;;;;;;;;;;;;;;;;;
shop/tooltip_reference_value_marker;Characteristic reference value;Characteristic reference value;same;;;;;;;;;;;;;;;;;;;
shop/massPerSec;One-second Burst Mass:;One-second Burst Mass:;same;;;;;;;;;;;;;;;;;;;
shop/surviveRating;Survival Rate:;Survival Rate:;same;;;;;;;;;;;;;;;;;;;
shop/winsRating;Win Rate:;Win Rate:;same;;;;;;;;;;;;;;;;;;;
shop/usageRating;Popularity:;Popularity:;same;;;;;;;;;;;;;;;;;;;
shop/usageRating/0;Very Low;Very Low;same;;;;;;;;;;;;;;;;;;;
shop/usageRating/1;Low;Low;same;;;;;;;;;;;;;;;;;;;
shop/usageRating/2;Average;Average;same;;;;;;;;;;;;;;;;;;;
shop/usageRating/3;High;High;same;;;;;;;;;;;;;;;;;;;
shop/usageRating/4;Very High;Very High;same;;;;;;;;;;;;;;;;;;;
shop/insuranceCost;Maximum Insurance Cost:;Maximum Insurance Cost:;same;;;;;;;;;;;;;;;;;;;
shop/airExp/tooltip;The amount of research points you've collected with this airplane. As long as the player has not completely mastered the airplane (i.e. the progress meter is not yet full), flights will yield 5x more research points.;The amount of research points you've collected with this airplane. As long as the player has not completely mastered the airplane (i.e. the progress meter is not yet full), flights will yield 5x more research points.;same;;;;;;;;;;;;;;;;;;;
shop/free;Free;Free;same;;;;;;;;;;;;;;;;;;;
shop/ammo;Ammo;Ammo;same;;;;;;;;;;;;;;;;;;;
shop/tank_mass;Mass:;Mass:;same;;;;;;;;;;;;;;;;;;;
shop/horsePowers;Engine Power:;Engine Power:;same;;;;;;;;;;;;;;;;;;;
shop/max_inclination;Maximum Inclination:;Maximum Inclination:;same;;;;;;;;;;;;;;;;;;;
shop/turnTurretTime;Turret Rotation Speed:;Turret Rotation Speed:;same;;;;;;;;;;;;;;;;;;;
shop/angleVerticalGuidance;Vertical Guidance:;Vertical Guidance:;same;;;;;;;;;;;;;;;;;;;
shop/angleHorizontalGuidance;Horizontal Guidance:;Horizontal Guidance:;same;;;;;;;;;;;;;;;;;;;
shop/gunStabilizer;Gun Stabilizer:;Gun Stabilizer:;same;;;;;;;;;;;;;;;;;;;
shop/gunStabilizer/vertical;Vertical;Vertical;same;;;;;;;;;;;;;;;;;;;
shop/gunStabilizer/twoPlane;Two-plane;Two-plane;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessHull;Hull Armor:;Hull Armor:;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessTurret;Turret Armor:;Turret Armor:;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent;Equivalent protection against;Equivalent protection against;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent/angles;Protection in the sector of angles +{angle1}-{angle2}° at least:;Protection in the sector of angles +{angle1}-{angle2}° at least:;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent/kinetic;Kinetic energy munitions;Kinetic energy munitions;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent/cumulative;Chemical energy munitions;Chemical energy munitions;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent/kinetic/hull;Kinetic energy munitions (Hull):;Kinetic energy munitions (Hull):;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent/cumulative/hull;Chemical energy munitions (Hull):;Chemical energy munitions (Hull):;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent/kinetic/turret;Kinetic energy munitions (Turret):;Kinetic energy munitions (Turret):;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent/cumulative/turret;Chemical energy munitions (Turret):;Chemical energy munitions (Turret):;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent/coal_bunker;Protection of 1 meter of coal is equivalent to {thickness} of steel;Protection of 1 meter of coal is equivalent to {thickness} of steel;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessEquivalent/steel;Protection equivalent to {thickness} of steel;Protection equivalent to {thickness} of steel;same;;;;;;;;;;;;;;;;;;;
shop/armorPiercing;Armor Penetration:;Armor Penetration:;same;;;;;;;;;;;;;;;;;;;
shop/armorPiercingDist;at distances:;at distances:;same;;;;;;;;;;;;;;;;;;;
shop/tank_mass/tooltip;Mass;Mass;same;;;;;;;;;;;;;;;;;;;
shop/horsePowers/tooltip;Engine power;Engine power;same;;;;;;;;;;;;;;;;;;;
shop/unitValidCondition;at;at;same;;;;;;;;;;;;;;;;;;;
shop/max_inclination/tooltip;Maximum inclination;Maximum inclination;same;;;;;;;;;;;;;;;;;;;
shop/turnTurretTime/tooltip;Horizontal rotation speed;Horizontal guidance speed;nice;;;;;;;;;;;;;;;;;;;
shop/angleVerticalGuidance/tooltip;Vertical guidance;Vertical guidance;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessHull/tooltip;Hull armor thickness;Hull armor thickness;same;;;;;;;;;;;;;;;;;;;
shop/armorThicknessTurret/tooltip;Turret armor thickness;Turret armor thickness;same;;;;;;;;;;;;;;;;;;;
shop/armorPiercing/tooltip;Armor penetration;Armor penetration;same;;;;;;;;;;;;;;;;;;;
shop/armorPiercingDist/tooltip;at distances;at distances;same;;;;;;;;;;;;;;;;;;;
shop/visibilityFactor;Visibility;Visibility;same;;;;;;;;;;;;;;;;;;;
shop/visibilityFactor/tooltip;Visibility depends on the height of the tank, it affects all the range of detection and identification.;Visibility depends on the height of the tank, it affects all the range of detection and identification.;same;;;;;;;;;;;;;;;;;;;
shop/unitIsRecentlyReleased;New vehicle!;New vehicle!;same;;;;;;;;;;;;;;;;;;;
shop/lootCapacity;Loot capacity;Loot capacity;same;;;;;;;;;;;;;;;;;;;
airLimits/wing_plane_strength_vne;Air Speed Limit (IAS):;Indicated Air Speed Limit:;nice;;;;;;;;;;;;;;;;;;;
airLimits/wing_plane_strength_vne/tooltip;The highest indicated air speed that the vehicle structure can withstand without damage.;The highest indicated air speed that the vehicle structure can withstand without damage.;same;;;;;;;;;;;;;;;;;;;
airLimits/wing_plane_strength_mne;Mach Limit:;Mach Number Limit:;nice;;;;;;;;;;;;;;;;;;;
airLimits/wing_plane_strength_mne/tooltip;The highest Mach number (M) that the vehicle structure can withstand without damage.;The highest Mach number (M) that the vehicle structure can withstand without damage.;same;;;;;;;;;;;;;;;;;;;
airLimits/gear_destruction_ind_speed;Extended Landing Gear Limit (IAS):;Landing Gear Extension Speed Limit (IAS):;nice;;;;;;;;;;;;;;;;;;;
airLimits/gear_destruction_ind_speed/tooltip;The highest indicated air speed that the gear structure can withstand without damage.;The highest indicated air speed that the gear structure can withstand without damage.;same;;;;;;;;;;;;;;;;;;;
airLimits/flaps_destruction_ind_speed;Flap Extension Limit (IAS):;Flap Extension Speed Limit (IAS):;nice;;;;;;;;;;;;;;;;;;;
airLimits/flaps_destruction_ind_speed/tooltip;The highest indicated air speed that the flap structure can withstand without damage.;The highest indicated air speed that the flap structure can withstand without damage.;same;;;;;;;;;;;;;;;;;;;
bullet_properties/caliber;Caliber;Caliber;same;;;;;;;;;;;;;;;;;;;
bullet_properties/mass;Projectile Mass;Projectile Mass;same;;;;;;;;;;;;;;;;;;;
bullet_properties/kineticDmg;Kinetic damage;Kinetic damage;same;;;;;;;;;;;;;;;;;;;
bullet_properties/explosiveDmg;High-explosive fragmentation damage;High-explosive fragmentation damage;same;;;;;;;;;;;;;;;;;;;
bullet_properties/cumulativeDmg;Cumulative damage;Cumulative damage;same;;;;;;;;;;;;;;;;;;;
bullet_properties/speed;Muzzle Velocity;Muzzle Velocity;same;;;;;;;;;;;;;;;;;;;
bullet_properties/armorPiercing;Armor penetration;Armor penetration;same;;;;;;;;;;;;;;;;;;;
bullet_properties/armorPiercing/cumulative;by cumulative jet;by cumulative jet;same;;;;;;;;;;;;;;;;;;;
bullet_properties/armorPiercing/kinetic;kinetic;kinetic;same;;;;;;;;;;;;;;;;;;;
bullet_properties/cooldown;Reload Time;Reload Time;same;;;;;;;;;;;;;;;;;;;
bullet_properties/fuseDelayDist;Fuze Delay;Fuze Delay;same;;;;;;;;;;;;;;;;;;;
bullet_properties/explodeTreshold;Fuze Sensitivity;Fuze Sensitivity;same;;;;;;;;;;;;;;;;;;;
bullet_properties/proximityFuze/triggerRadius;Trigger radius;Trigger radius;same;;;;;;;;;;;;;;;;;;;
bullet_properties/ricochet;Chance of a ricochet at an angle of attack of {angle}°;Chance of a ricochet at an angle of attack of {angle}°;same;;;;;;;;;;;;;;;;;;;
bullet_properties/normalization;Angle of normalization at an angle of attack of {angle}°;Angle of normalization at an angle of attack of {angle}°;same;;;;;;;;;;;;;;;;;;;
bullet_properties/angleByProbability;Angle of attack with {probability}% chance of a ricochet.;Angle of attack with {probability}% chance of a ricochet.;same;;;;;;;;;;;;;;;;;;;
distance;Distance;Distance;same;;;;;;;;;;;;;;;;;;;
weapon/noTracer/icon;◖;◖;same;;;;;;;;;;;;;;;;;;;
weapon/noTracer;no tracers;no tracers;same;;;;;;;;;;;;;;;;;;;
bullet_properties/hitAngle;Angle of attack;Angle of attack;same;;;;;;;;;;;;;;;;;;;
bullet_properties/explosiveType;Explosive type;Explosive type;same;;;;;;;;;;;;;;;;;;;
bullet_properties/explosiveMass;Explosive mass;Explosive mass;same;;;;;;;;;;;;;;;;;;;
bullet_properties/explosiveMassInTNTEquivalent;TNT equivalent;TNT equivalent;same;;;;;;;;;;;;;;;;;;;
bullet_properties/maxSpeedInWater;Maximum speed;Maximum speed;same;;;;;;;;;;;;;;;;;;;
bullet_properties/diveDepth;Depth stroke;Depth stroke;same;;;;;;;;;;;;;;;;;;;
bullet_properties/smokeShellRad;Smoke screen radius;Smoke screen radius;same;;;;;;;;;;;;;;;;;;;
bullet_properties/smokeActivateTime;Smoke screening time;Smoke screening time;same;;;;;;;;;;;;;;;;;;;
bullet_properties/smokeTime;Smoke screen hold time;Smoke screen hold time;same;;;;;;;;;;;;;;;;;;;
bullet_properties/salvo;Ammo in volley;Ammo in volley;same;;;;;;;;;;;;;;;;;;;
bullet_properties/maxArmorPenetration;Armor penetration by high-energy action;Armor penetration by high-energy action;same;;;;;;;;;;;;;;;;;;;
bombProperties/machLimit;Maximum allowed bomb release speed;Maximum allowed bomb release speed;same;;;;;;;;;;;;;;;;;;;
rocketProperties/machLimit;Maximum allowed rocket release speed;Maximum allowed rocket release speed;same;;;;;;;;;;;;;;;;;;;
bombProperties/maxArmorPenetration;Max armor penetration high-explosive action;Max armor penetration high-explosive action;same;;;;;;;;;;;;;;;;;;;
bombProperties/destroyRadiusArmored;The radius of destruction of armored vehicles;The radius of destruction of armored vehicles;same;;;;;;;;;;;;;;;;;;;
bombProperties/destroyRadiusNotArmored;The radius of fragment dispersion;The radius of fragment dispersion;same;;;;;;;;;;;;;;;;;;;
weapons/restock_advice;It is recommended to restock;It is recommended to restock;same;;;;;;;;;;;;;;;;;;;
shop/can_buy_more_aircrafts;You can purchase more vehicles in the Research menu: %d;You can purchase more vehicles in the Research menu: %d;same;;;;;;;;;;;;;;;;;;;
shop/auto_repair;Automatic repair of all vehicles after battle.;Automatic repair of all vehicles after battle.;same;;;;;;;;;;;;;;;;;;;
shop/auto_repair_cost;Automatic repair of all vehicles;Automatic repair of all vehicles;same;;;;;;;;;;;;;;;;;;;
shop/auto_repair_failed;Not enough <color=@currencyWpColor>€</color> to repair all vehicles.;Not enough <color=@currencyWpColor>€</color> to repair all vehicles.;same;;;;;;;;;;;;;;;;;;;
shop/auto_repair_free;Automatic repair of all vehicles <color=@activeTextColor>free.</color>;Automatic repair of all vehicles <color=@activeTextColor>free.</color>;same;;;;;;;;;;;;;;;;;;;
shop/auto_repair_free_plain;Automatic repair of all vehicles free.;Automatic repair of all vehicles free.;same;;;;;;;;;;;;;;;;;;;
shop/auto_buy_weapons;"Automatic purchasing of ammo and ""Crew Replenishment"" after battle.";"Automatic purchasing of ammo and ""Crew Replenishment"" after battle.";same;;;;;;;;;;;;;;;;;;;
shop/auto_buy_weapons_cost;"Automatic purchasing of ammo and ""Crew Replenishment""";"Automatic purchasing of ammo and ""Crew Replenishment""";same;;;;;;;;;;;;;;;;;;;
shop/wp_bonus;Reward:;Reward:;same;;;;;;;;;;;;;;;;;;;
shop/wp_bonus/tooltip;With this vehicle you will gain more Silver Lions for missions.;With this vehicle you will gain more Silver Lions for missions.;same;;;;;;;;;;;;;;;;;;;
shop/exp_bonus;Research points bonus:;Research points bonus:;same;;;;;;;;;;;;;;;;;;;
shop/exp_bonus/tooltip;With this vehicle you will gain more research points for missions.;With this vehicle you will gain more research points for missions.;same;;;;;;;;;;;;;;;;;;;
discount/buy/tooltip;Discount on vehicle %s%%.;Discount on vehicle %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/repair/tooltip;Discount on repair %s%%.;Discount on repair %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/mods/tooltip;Discount on modification %s%%.;Discount on modification %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/weapons/tooltip;Discount on weapon preset %s%%.;Discount on weapon preset %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/specialization/tooltip;Discount on qualification %s%%.;Discount on qualification %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/spec_expert/tooltip;Discount on qualification to Expert %s%%.;Discount on qualification to Expert %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/spec_ace/tooltip;Discount on qualification to Ace %s%%.;Discount on qualification to Ace %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/skills/tooltip;Discount on skill %s%%.;Discount on skill %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/buyPoints/tooltip;Discount on accelerated training %s%%.;Discount on accelerated training %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/exp_to_gold_rate/tooltip;Discount on RP conversion %s%%.;Discount on RP conversion %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/spare/tooltip;Discount on back-ups %s%%.;Discount on back-ups %s%%.;same;;;;;;;;;;;;;;;;;;;
discount/list_string;* {itemName} -{discount}%;* {itemName} -{discount}%;same;;;;;;;;;;;;;;;;;;;
bonus/wpRates/tooltip;;;same;;;;;;;;;;;;;;;;;;;
bonus/xpRates/tooltip;;;same;;;;;;;;;;;;;;;;;;;
bonus/xpFirstWinInDayMul/tooltip;Bonus to the research points for the first victory with this country's vehicles;Bonus to the research points for the first victory with this country's vehicles;same;;;;;;;;;;;;;;;;;;;
bonus/wpFirstWinInDayMul/tooltip;Bonus <color=@currencyWpColor>€</color> for the first victory for this country.;Bonus <color=@currencyWpColor>€</color> for the first victory for this country.;same;;;;;;;;;;;;;;;;;;;
bonus/xpAircraftMul/tooltip;%s bonus to the research points on this vehicle.;%s bonus to the research points on this vehicle.;same;;;;;;;;;;;;;;;;;;;
bonus/wpAircraftMul/tooltip;%s bonus <color=@currencyWpColor>€</color> with this vehicle.;%s bonus <color=@currencyWpColor>€</color> with this vehicle.;same;;;;;;;;;;;;;;;;;;;
bonus/xpAircraftMul/group/tooltip;Up to %s bonus research points with vehicles of this group.;Up to %s bonus research points with vehicles of this group.;same;;;;;;;;;;;;;;;;;;;
bonus/wpAircraftMul/group/tooltip;Up to %s bonus <color=@currencyWpColor>€</color> with vehicles of this group.;Up to %s bonus <color=@currencyWpColor>€</color> with vehicles of this group.;same;;;;;;;;;;;;;;;;;;;
gamercard/aircraft_tooltip;The number of purchased vehicles in your hangar (all countries combined);The number of purchased vehicles in your hangar (all countries combined);same;;;;;;;;;;;;;;;;;;;
gamercard/subscriptionsActive;Premium;Premium;same;;;;;;;;;;;;;;;;;;;
mainmenu/vehicleCanNotGoToBattle;Temporarily unavailable in battles until Swedish tree release.;Temporarily unavailable in battles until Swedish tree release.;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnRepairAll;Repair All;Repair All;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnRepair;Repair;Repair;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnRepairNow;Repair (%s);Repair (%s);same;;;;;;;;;;;;;;;;;;;
mainmenu/btnRepairNowDesc;You wouldn't be allowed to use damaged vehicle in battle, even if it has a few scratches.;You wouldn't be allowed to use damaged vehicle in battle, even if it has a few scratches.;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuy;Purchase;Purchase;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuyInstantly;Complete instantly;Complete instantly;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuyInstantly/tooltip;Instantly complete a task without having to satisfy its conditions;Instantly complete a task without having to satisfy its conditions;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuyAll;Purchase All;Purchase All;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuySelected;Purchase Selected;Purchase Selected;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuyAndSetUnitInSlot;Purchase Vehicle and Train a Crew;Purchase Vehicle and Train a Crew;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTrainCrew;Train a Crew;Train a Crew;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuyAllWeapons;Purchase All Weapons;Purchase All Weapons;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuyAllBullets;Purchase All Shell Racks;Purchase All Shell Racks;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuyAllModifications;Purchase All Modifications;Purchase All Modifications;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBuyAllResearched;Purchase All Researched;Purchase All Researched;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnOrder;Order;Order;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnOrderDesc;Purchase this beautiful example and win the battle with its help.;Purchase this beautiful example and win the battle with its help.;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTestProjectileProps;Testing shells' new parameters;Testable shell parameters;trim;;;;;;;;;;;;;;;;;;;
mainmenu/btnTestFlight;Test Flight;Test Flight;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTestFlightDesc;Test your aircraft's capabilities in the customizable mission;Test your aircraft's capabilities in the customizable mission;same;;;;;;;;;;;;;;;;;;;
mainmenu/cantTestFlight;Test Flight is temporarily unavailable for this aircraft.;Test Flight is temporarily unavailable for this aircraft.;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTestDrive;Test Drive;Test Drive;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTestDriveDesc;Test your tank's capabilities in the customizable mission;Test your tank's capabilities in the customizable mission;same;;;;;;;;;;;;;;;;;;;
mainmenu/cantTestDrive;Test Drive is temporarily unavailable for this tank.;Test Drive is temporarily unavailable for this tank.;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTestSail;Test Sail;Test Sail;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTestSailDesc;Test your ship's capabilities in the customizable mission;Test your ship's capabilities in the customizable mission;same;;;;;;;;;;;;;;;;;;;
mainmenu/cantTestSail;Test Sail is temporarily unavailable for this ship.;Test Sail is temporarily unavailable for this ship.;same;;;;;;;;;;;;;;;;;;;
mainmenu/unitTypeLocked;The selected vehicle type is not available.;The selected vehicle type is not available.;same;;;;;;;;;;;;;;;;;;;
mainmenu/missionBuilderNotAvailable;"Mission builder is only available for the vehicles from the crew list.
Select an aircraft from the crew list.";"Mission builder is only available for the vehicles from the crew list.
Select an aircraft from the crew list.";same;;;;;;;;;;;;;;;;;;;
mainmenu/btnDebugUnlock;Debug Unlock;Debug Unlock;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSelectCampaign;Select Campaign;Select Campaign;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSelectSingle;Select Campaign;Select Campaign;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnSelectSingleCoop;Select Campaign;Select Campaign;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCrew;Crew;Crew;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCrewDesc;Train your crew for successful completion of dangerous missions;Train your crew for successful completion of dangerous missions;same;;;;;;;;;;;;;;;;;;;
mainmenu/crewTitle;Crew #;Crew #;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnModifications;Modifications;Modifications;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTakeAircraft;Choose a Crew;Choose a Crew;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnTakeAircraftDesc;Add Vehicle into Slot;Add Vehicle into Slot;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnDynamicTraining;Mission Settings;Mission Settings;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnDynamicPreview;Mission Preview;Mission Preview;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnDynamicTuner;Aircraft Settings;Aircraft Settings;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnDynamicSummary;Campaign Summary;Campaign Summary;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnQuit;Quit;Quit;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnRandom;Random Settings;Random Settings;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBattlelog;Battle Log;Battle Log;same;;;;;;;;;;;;;;;;;;;
unlocks/need_to_unlock;Vehicle Needed: ;Vehicle Needed: ;same;;;;;;;;;;;;;;;;;;;
unlocks/dyncampaign;A new dynamic campaign available;A new dynamic campaign available;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnCustomize;Paint Room;Paint Room;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPaint;Paint;Paint;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnFavorite;Mark as Favorite;Mark as Favorite;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnFavoriteUnmark;Unmark as Favorite;Unmark as Favorite;same;;;;;;;;;;;;;;;;;;;
mainmenu/onlyFavorite;Favorites;Favorites;same;;;;;;;;;;;;;;;;;;;
mainmenu/onlyAvailable;Only Available;Only Available;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnAssign;Assign Button;Assign Button;same;;;;;;;;;;;;;;;;;;;
challenge/stage;Stage {stage} of {totalStages};Stage {stage} of {totalStages};same;;;;;;;;;;;;;;;;;;;
challenge/reward;Reward:;Reward:;same;;;;;;;;;;;;;;;;;;;
reward/skin_for;Camouflage for:;Camouflage for:;same;;;;;;;;;;;;;;;;;;;
reward/title;"Title ""%s""";"Title ""%s""";same;;;;;;;;;;;;;;;;;;;
reward/mission;"Mission ""%s""";"Mission ""%s""";same;;;;;;;;;;;;;;;;;;;
reward/dyncampaign;"Dynamic Campaign ""%s""";"Dynamic Campaign ""%s""";same;;;;;;;;;;;;;;;;;;;
reward/decal;"Decal ""%s""";"Decal ""%s""";same;;;;;;;;;;;;;;;;;;;
reward/skin;"Camouflage ""%s""";"Camouflage ""%s""";same;;;;;;;;;;;;;;;;;;;
profile/maximumExp;Maximum;Maximum;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnMute;Mute;Mute;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnUnmute;Unmute;Unmute;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnKick;Kick;Kick;same;;;;;;;;;;;;;;;;;;;
mainmenu/instantAction;Realistic Battles;Realistic Battles;same;;;;;;;;;;;;;;;;;;;
mainmenu/arcadeInstantAction;Arcade Battles;Arcade Battles;same;;;;;;;;;;;;;;;;;;;
mainmenu/fullRealInstantAction;Simulator Battles;Simulator Battles;same;;;;;;;;;;;;;;;;;;;
mainmenu/showModesInfo/tooltip;Here you can choose the game mode for which the Battle ratings, technical specifications, rewards, repair cost and time for free repair will be shown in the vehicle information tooltips.;Here you can choose the game mode for which the Battle ratings, technical specifications, rewards, repair cost and time for free repair will be shown in the vehicle information tooltips.;same;;;;;;;;;;;;;;;;;;;
mainmenu/showModesInfo/advice;"Recommended: ""{automatic}"" (the mode in which you are playing).";"Recommended: ""{automatic}"" (the mode in which you are playing).";same;;;;;;;;;;;;;;;;;;;
mainmenu/showModesInfo/warning;"Caution: This mode may be different from the one in which you are playing. Don't forget to return the switch to ""{automatic}"".";"Caution: This mode may be different from the one in which you are playing. Don't forget to return the switch to ""{automatic}"".";same;;;;;;;;;;;;;;;;;;;
exp_reasons/kill;Back to the hangar;Aircraft destroyed;nice;;;;;;;;;;;;;;;;;;;
exp_reasons/killUfo;ᚢᚣᚥᚨᚲ destroyed;ᚢᚣᚥᚨᚲ destroyed;same;;;;;;;;;;;;;;;;;;;
exp_reasons/kill_by_team;Raspberry consumed;Aircraft destroyed by our team;nice;;;;;;;;;;;;;;;;;;;
exp_reasons/kill_by_teamUfo;ᚢᚣᚥᚨᚲ destroyed by our team;ᚢᚣᚥᚨᚲ destroyed by our team;same;;;;;;;;;;;;;;;;;;;
exp_reasons/kill_gm;▴ ;Target destroyed;trim;;;;;;;;;;;;;;;;;;;
exp_reasons/landing;Landing;Landing;same;;;;;;;;;;;;;;;;;;;
exp_reasons/takeoff;Takeoff;Takeoff;same;;;;;;;;;;;;;;;;;;;
exp_reasons/capture;Zone captured;Zone captured;same;;;;;;;;;;;;;;;;;;;
exp_reasons/destroy;Base destroyed;Base destroyed;same;;;;;;;;;;;;;;;;;;;
exp_reasons/damage_zone;Base damaged;Base damaged;same;;;;;;;;;;;;;;;;;;;
exp_reasons/sight;Enemy marked;Enemy sighted;nice;;;;;;;;;;;;;;;;;;;
exp_reasons/critical_hit;▐ ;Critical hit;same;;;;;;;;;;;;;;;;;;;
exp_reasons/hit;► ;Hit;trim;;;;;;;;;;;;;;;;;;;
exp_reasons/ineffective_hit;╦ ;Target undamaged;nice;;;;;;;;;;;;;;;;;;;
exp_reasons/assist;▱ ;Enemy Kill Assist;nice;;;;;;;;;;;;;;;;;;;
exp_reasons/overkill;Overkill;Finishing enemy;nice;;;;;;;;;;;;;;;;;;;
exp_reasons/objective;Objective completed;Objective completed;same;;;;;;;;;;;;;;;;;;;
exp_reasons/battle_trophy;Battle trophies;Battle trophies;same;;;;;;;;;;;;;;;;;;;
exp_reasons/repair;Repair;Repair;same;;;;;;;;;;;;;;;;;;;
exp_reasons/scout;Target scouted;Target scouted;same;;;;;;;;;;;;;;;;;;;
exp_reasons/scout_critical_hit;Marked target crit;Scouted target damaged;nice;;;;;;;;;;;;;;;;;;;
exp_reasons/scout_kill;I spotted that (smart);Scouted target destroyed (by intelligence);nice;;;;;;;;;;;;;;;;;;;
exp_reasons/scout_kill_unknown;Someone got it;Scouted target destroyed;nice;;;;;;;;;;;;;;;;;;;
exp_reasons/timed_award;Useful actions;Useful actions;same;;;;;;;;;;;;;;;;;;;
exp_reasons/severe_damage;Severe brain damage;Severe damage;trim;;;;;;;;;;;;;;;;;;;
exp_reasons/kill_finishing_other;Aircraft finished off;Aircraft finished off;same;;;;;;;;;;;;;;;;;;;
exp_reasons/kill_from_severe_damage;Severely damaged aircraft kill counted;Severely damaged aircraft kill counted;same;;;;;;;;;;;;;;;;;;;
exp_reasons/kill_helicopter_finishing_other;Helicopter finished off;Helicopter finished off;same;;;;;;;;;;;;;;;;;;;
exp_reasons/kill_helicopter_from_severe_damage;Severely damaged helicopter kill counted;Severely damaged helicopter kill counted;same;;;;;;;;;;;;;;;;;;;
exp_reasons/missile_evade;Missile evasion;Missile evasion;same;;;;;;;;;;;;;;;;;;;
campaigns/demo_campaign;Historical Campaign;Historical Campaign;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPersonnel;Crew;Crew;same;;;;;;;;;;;;;;;;;;;
menu/not_bought;Not acquired;Not acquired;same;;;;;;;;;;;;;;;;;;;
mainmenu/needBuyPreviousVehicle;The previous vehicle must be purchased:;The previous vehicle must be purchased:;same;;;;;;;;;;;;;;;;;;;
mainmenu/needResearchPreviousVehicle;The previous vehicle must be researched:;The previous vehicle must be researched:;same;;;;;;;;;;;;;;;;;;;
mainmenu/needUnlock;To access the vehicle, the following conditions must be met:;To access the vehicle, the following conditions must be met:;same;;;;;;;;;;;;;;;;;;;
mainmenu/canBuyThisVehicle;You can purchase this vehicle for {price}.;You can purchase this vehicle for {price}.;same;;;;;;;;;;;;;;;;;;;
mainmenu/giftSpares;+ {num} backup {num=vehicle/vehicles} for free, you save {cost}!;+ {num} backup {num=vehicle/vehicles} for free, you save {cost}!;same;;;;;;;;;;;;;;;;;;;
mainmenu/giftSparesClan;+ {num} backup {num=vehicle/vehicles} for free when purchased for Golden Eagles, you save {cost}!;+ {num} backup {num=vehicle/vehicles} for free when purchased for Golden Eagles, you save {cost}!;same;;;;;;;;;;;;;;;;;;;
mainmenu/giftSparesAdded;+ {num} backup {num=vehicle/vehicles} for free, you saved {cost}!;+ {num} backup {num=vehicle/vehicles} for free, you saved {cost}!;same;;;;;;;;;;;;;;;;;;;
mainmenu/dataRemaningTime;The vehicle will be available for purchase until {time}.;The vehicle will be available for purchase until {time}.;same;;;;;;;;;;;;;;;;;;;
mainmenu/dataExpiredTime;The vehicle was available for purchase until {time}.;The vehicle was available for purchase until {time}.;same;;;;;;;;;;;;;;;;;;;
mainmenu/timeForBuyVehicle;The vehicle will be available for purchase for {time};The vehicle will be available for purchase for {time};same;;;;;;;;;;;;;;;;;;;
mainmenu/timeForBuyTrophy;This trophy will be available for purchase for {time};This trophy will be available for purchase for {time};same;;;;;;;;;;;;;;;;;;;
mainmenu/dataRemaningTimeShort;until {time};until {time};same;;;;;;;;;;;;;;;;;;;
mainmenu/timeForBuyVehicleShort;{time} left;{time} left;same;;;;;;;;;;;;;;;;;;;
mainmenu/buyPreviousModification;The previous modification must be purchased.;The previous modification must be purchased.;same;;;;;;;;;;;;;;;;;;;
mainmenu/buy_modifications_for_prev_unit;You should research required amount of modifications for previous vehicle;You should research required amount of modifications for previous vehicle;same;;;;;;;;;;;;;;;;;;;
mainmenu/notEnoughWP;You need more € to purchase this vehicle.;You need more € to purchase this vehicle.;same;;;;;;;;;;;;;;;;;;;
mainmenu/notEnoughGold;You need more ¤ to purchase this vehicle.;You need more ¤ to purchase this vehicle.;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnWorkshop;Modifications;Modifications;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnPreview;Preview;Preview;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnShowroom;Customization;Customization;same;;;;;;;;;;;;;;;;;;;
mainmenu/btnShowroomDesc;You can change your vehicle's appearance in the hangar to become more or less noticeable on the battlefield.;You can change your vehicle's appearance in the hangar to become more or less noticable on the battlefield.;trim;;;;;;;;;;;;;;;;;;;
mainmenu/btnOnlineShop;Shop;Shop;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_onlineShop;Online Store;Online Store;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_onlineShop_unlockEvent;Online Store;Online Store;same;;;;;;;;;;;;;;;;;;;
controlType/mouse;Mouse + Keyboard;Mouse + Keyboard;same;;;;;;;;;;;;;;;;;;;
controlType/xinput;Gamepad;Gamepad;same;;;;;;;;;;;;;;;;;;;
controlType/own;Set up controls;Set up controls;same;;;;;;;;;;;;;;;;;;;
mainmenu/new_controls_version_msg_box;"New version of your controls preset available. Full list of changes:
{patchnote}
Use new version?";"New version of your controls preset available. Full list of changes:
{patchnote}
Use new version?";same;;;;;;;;;;;;;;;;;;;
mainmenu/login;Login (SSN);Login (E-mail);nice;;;;;;;;;;;;;;;;;;;
mainmenu/password;Password;Password;same;;;;;;;;;;;;;;;;;;;
mainmenu/password/capslock;CAPS;CAPS;same;;;;;;;;;;;;;;;;;;;
mainmenu/2stepVerifCode;Verification Code;Verification Code;same;;;;;;;;;;;;;;;;;;;
mainmenu/2stepVerifCode/tooltip;You have enabled two-step authentication service on your account. Open Google Authenticator on your mobile device for getting verification code.;You have enabled two-step authentication service on your account. Open Google Authenticator on your mobile device for getting verification code.;same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/EnhancedProtection;Enhanced protection;Enhanced protection;same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/confirmSign;Confirm sign in;Confirm sign in;same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/confirmUnknown;Enter verification code;Enter verification code;same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/confirmGA;Enter verification code from Google Authenticator or War Thunder Assistant apps;Enter verification code from Google Authentificator or War Thunder Assistant apps;nice;;;;;;;;;;;;;;;;;;;
mainmenu/2step/confirmMail;Enter verification code from email;Enter verification code from email;same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/confirmPass;Enter the verification code from {passName} or any other app you use;Enter the verification code from {passName} or any other app you use;same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/wrongCode;Wrong verification code, please try again! Your device's time should be synchronized with server. Server time;Wrong verification code, please try again! Your device's time should be synchronized with server. Server time;same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/signInTroubles;Any troubles with signing in?;Any troubles with signing in?;same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/lostAccess;Lost access to the app?;Lost access to the app?;same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/getPass;Get {passName};Get {passName};same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/getPass/reminder;"Confirm your entry with the click of a button or through a PUSH notification with our official app to protect your account.
In addition to enhanced account protection, you can read the latest news from all our games in the {passName}.";"Confirm your entry with the click of a button or through a PUSH notification with our official app to protect your account.
In addition to enhanced account protection, you can read the latest news from all our games in the {passName}.";same;;;;;;;;;;;;;;;;;;;
mainmenu/2step/getPass/whyNeed;Why do I need {passName};Why do I need {passName};same;;;;;;;;;;;;;;;;;;;
options/dont_show_again;Fuck off, goodbye;Do not show this again;nice;;;;;;;;;;;;;;;;;;;
options/remember_cur_device;Remember computer;Remember computer;same;;;;;;;;;;;;;;;;;;;
options/remote_device;OPSEC?;Not my computer;nice;;;;;;;;;;;;;;;;;;;
mainmenu/saveLogin;I'm lazy;Save login;nice;;;;;;;;;;;;;;;;;;;
mainmenu/savePassword;Very lazy;Save password;nice;;;;;;;;;;;;;;;;;;;
mainmenu/savePassword/unsecure;(leak sekret dokument!);(not secure!);trim;;;;;;;;;;;;;;;;;;;
mainmenu/signUp;VPN;Sign Up;nice;;;;;;;;;;;;;;;;;;;
mainmenu/faq;FAQ;FAQ;same;;;;;;;;;;;;;;;;;;;
mainmenu/forum;Forum;Forum;same;;;;;;;;;;;;;;;;;;;
mainmenu/wiki;Wiki;Wiki;same;;;;;;;;;;;;;;;;;;;
mainmenu/account;Account;Account;same;;;;;;;;;;;;;;;;;;;
mainmenu/support;Botting;Support;nice;;;;;;;;;;;;;;;;;;;
mainmenu/alreadyHaveAccount;I already have an account in Gaijin Online;I already have an account in Gaijin Online;same;;;;;;;;;;;;;;;;;;;
mainmenu/loginWithSteam;Steam Login;Steam Login;same;;;;;;;;;;;;;;;;;;;
mainmenu/loginWithGaijin;Gaijin Login;Gaijin Login;same;;;;;;;;;;;;;;;;;;;
mainmenu/loginWithSso;Web Login;Web Login;same;;;;;;;;;;;;;;;;;;;
mainmenu/loginWithGuest;Guest Login;Guest Login;same;;;;;;;;;;;;;;;;;;;
mainmenu/licenseAgreement;License Agreement;License Agreement;same;;;;;;;;;;;;;;;;;;;
shop/recruitCrew;Recruit crew;Recruit crew;same;;;;;;;;;;;;;;;;;;;
shop/crewInBattle;<color=@warningTextColor>Crew is in combat</color>;<color=@warningTextColor>Crew is in combat</color>;same;;;;;;;;;;;;;;;;;;;
shop/chooseAircraft;Choose vehicle;Choose vehicle;same;;;;;;;;;;;;;;;;;;;
shop/aircraftNotSelected;Vehicle not chosen;Vehicle not chosen;same;;;;;;;;;;;;;;;;;;;
shop/emptyCrew;Send to holiday;Remove from the preset;nice;;;;;;;;;;;;;;;;;;;
shop/slotbarPresets/button;Presets;Presets;same;;;;;;;;;;;;;;;;;;;
shop/slotbarPresets/title;Vehicle Presets;Vehicle Presets;same;;;;;;;;;;;;;;;;;;;
shop/slotbarPresets/tooltip;"Vehicle Presets
Here you can create and use multiple interchangeable sets of vehicles.";"Vehicle Presets
Here you can create and use multiple interchangeable sets of vehicles.";same;;;;;;;;;;;;;;;;;;;
shop/slotbarPresets/item;Preset #{number};Preset #{number};same;;;;;;;;;;;;;;;;;;;
shop/slotbarPresets/contents;Preset contents;Preset contents;same;;;;;;;;;;;;;;;;;;;
shop/slotbarPresets/presetUnknown;The current set of vehicles doesn't match any of the saved presets.;The current set of vehicles doesn't match any of the saved presets.;same;;;;;;;;;;;;;;;;;;;
shop/slotbarPresets/forbidden/unitTypes;Preset doesn't contain accessible vehicle types.;Preset doesn't contain accessible vehicle types.;same;;;;;;;;;;;;;;;;;;;
shop/current;(current);(current);same;;;;;;;;;;;;;;;;;;;
msgbox/genericRequestDelete;Are you sure you want to delete <color=@highlightedTextColor>{item}</color>?;Are you sure you want to delete <color=@highlightedTextColor>{item}</color>?;same;;;;;;;;;;;;;;;;;;;
msgbox/genericRequestDisard;Are you sure you want to discard your changes <color=@highlightedTextColor>{item}</color>?;Are you sure you want to discard your changes <color=@highlightedTextColor>{item}</color>?;same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_retraining;"To be able to operate this vehicle, your crew must pass the conversion training.
The retraining for this type of vehicle will cost you: %s
Are you sure?
The crew will not lose their operation skills on the vehicle they were already trained to.";"To be able to operate this vehicle, your crew must pass the conversion training.
The retraining for this type of vehicle will cost you: %s
Are you sure?
The crew will not lose their operation skills on the vehicle they were already trained to.";same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_hireAndTrainCrew;"Your new crew should undergo training to be able to operate this vehicle.
The cost to hire and train a new crew for this type of vehicles: %s
Are you sure?";"Your new crew should undergo training to be able to operate this vehicle.
The cost to hire and train a new crew for this type of vehicles: %s
Are you sure?";same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_warning;;;same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_purchaseAircraft;Are you sure you want to order {unitName}? It will cost you: {cost};Are you sure you want to order {unitName}? It will cost you: {cost};same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_purchaseCrew;Are you sure you want to recruit new crew? It will cost you: %s;Are you sure you want to recruit new crew? It will cost you: %s;same;;;;;;;;;;;;;;;;;;;
onlineShop/needMoneyQuestion;"Are you sure you want to purchase {purchase}
for {cost}?";"Are you sure you want to purchase {purchase}
for {cost}?";same;;;;;;;;;;;;;;;;;;;
onlineShop/needMoneyQuestion/multiPurchase;"Are you sure you want to purchase {purchase} x<color=@userlogColoredText>{amount}</color>
for {cost}?";"Are you sure you want to purchase {purchase} x<color=@userlogColoredText>{amount}</color>
for {cost}?";same;;;;;;;;;;;;;;;;;;;
onlineShop/purchase;Purchase '{purchase}';Purchase '{purchase}';same;;;;;;;;;;;;;;;;;;;
onlineShop/needMoneyQuestion/onlinePaymentSystem;"Are you sure you want to purchase {purchase}
by paying with {paymentSystem}?";"Are you sure you want to purchase {purchase}
by paying with {paymentSystem}?";same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_purchaseModificationForGold;"Modification {purchase} not researched.
Would you like to purchase it for {cost}?";"Modification {purchase} not researched.
Would you like to purchase it for {cost}?";same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_all_weapons;"Are you sure you want to purchase all of the armament for the {unitName}
for {cost}?";"Are you sure you want to purchase all of the armament for the {unitName}
for {cost}?";same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_all_researched;"Are you sure you want to purchase all recently researched modifications and vehicles
for %s?";"Are you sure you want to purchase all recently researched modifications and vehicles
for %s?";same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_purchaseDecal;"Are you sure you want to purchase the '{purchase}'
for {cost}?";"Are you sure you want to purchase the '{purchase}'
for {cost}?";same;;;;;;;;;;;;;;;;;;;
shop/needMoneyQuestion_purchaseSkin;"Are you sure you want to purchase the '{purchase}' camouflage
for {cost}?";"Are you sure you want to purchase the '{purchase}' camouflage
for {cost}?";same;;;;;;;;;;;;;;;;;;;
shop/noAircraftsQuestion;"You don't have any available vehicle to choose from.
Go to the Research menu for purchases?";"You don't have any available vehicle to choose from.
Go to the Research menu for purchases?";same;;;;;;;;;;;;;;;;;;;
shop/noAircrafts;"You don't have any available vehicle to choose from.
Purchase more vehicles.";"You don't have any available vehicle to choose from.
Purchase more vehicles.";same;;;;;;;;;;;;;;;;;;;
shop/pilot/coupon/info;This profile icon can be obtained from a coupon by purchasing it on the Marketplace;This profile icon can be obtained from a coupon by purchasing it on the Marketplace;same;;;;;;;;;;;;;;;;;;;
shop/reserve;Reserve;Reserve;same;;;;;;;;;;;;;;;;;;;
shop/reserve/short;—;—;same;;;;;;;;;;;;;;;;;;;
shop/spawnScore;{cost} SP;{cost} SP;same;;;;;;;;;;;;;;;;;;;
shop/rageTokens;{cost} RT;{cost} RT;same;;;;;;;;;;;;;;;;;;;
shop/reserve/info;A reserve vehicle, available to everyone. This vehicle is repaired immediately after each battle.;A reserve vehicle, available to everyone. This vehicle is repaired immediately after each battle.;same;;;;;;;;;;;;;;;;;;;
shop/unit_bought;Purchased;Purchased;same;;;;;;;;;;;;;;;;;;;
shop/object/can_be_purchased;Can be purchased;Can be purchased;same;;;;;;;;;;;;;;;;;;;
shop/object/can_be_found_on_marketplace;Can be found on Marketplace;Can be found on Marketplace;same;;;;;;;;;;;;;;;;;;;
shop/object/can_get_from_coupon;Can be obtained right now by spending a Coupon;Can be obtained right now by spending a Coupon;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_exit;Exit;Exit;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_order_and_choose_crew;Order and Select a crew;Order and Select a crew;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_order_and_choose_crew/later;Order (Select a crew later);Order (Select a crew later);same;;;;;;;;;;;;;;;;;;;
msgbox/btn_recovery;Free Abrams;I forgot my password;nice;;;;;;;;;;;;;;;;;;;
msgbox/btn_tryAgain;Try again;Try again;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_disableSSLCheck;Yes, I understand the risk;Yes, I understand the risk;same;;;;;;;;;;;;;;;;;;;
mainmenu/disableSSLCert;Disable certificate check;Disable certificate check;same;;;;;;;;;;;;;;;;;;;
not_available_aircraft;The vehicle is not available in this mission.;The vehicle is not available in this mission.;same;;;;;;;;;;;;;;;;;;;
not_available_aircraft/byBR;In {gameModeName}, you are not permitted to use {lockedUnitType}, that have a Battle Rating {battleRatingDiff} higher than the maximum Battle Rating of the main unit type ({reqUnitType}) in a players line-up.;In {gameModeName}, you are not permitted to use {lockedUnitType}, that have a Battle Rating {battleRatingDiff} higher than the maximum Battle Rating of the main unit type ({reqUnitType}) in a players line-up.;same;;;;;;;;;;;;;;;;;;;
msgbox/broken_unit;"This vehicle is in need of repair.
Current Repair Cost: %s";"This vehicle is in need of repair.
Current Repair Cost: %s";same;;;;;;;;;;;;;;;;;;;
msgbox/notAvailbleYet;This feature is not available yet.;This feature is not available yet.;same;;;;;;;;;;;;;;;;;;;
msgbox/notAvailbleCountry;This country is temporarily unavailable.;This country is temporarily unavailable.;same;;;;;;;;;;;;;;;;;;;
notAvailbleCountry/choose;"The selected country is temporarily unavailable.
Please select another one.";"The selected country is temporarily unavailable.
Please select another one.";same;;;;;;;;;;;;;;;;;;;
notAvailbleCountry/none;Unfortunately, you don't have any unlocked country in selected game mode. Please choose another game mode.;Unfortunately, you don't have any unlocked country in selected game mode. Please choose another game mode.;same;;;;;;;;;;;;;;;;;;;
msgbox/notAvailbleMode;This mode is temporarily unavailable.;This mode is temporarily unavailable.;same;;;;;;;;;;;;;;;;;;;
notAvailbleMode/choose;"The selected mode is temporarily unavailable.
Please select another one.";"The selected mode is temporarily unavailable.
Please select another one.";same;;;;;;;;;;;;;;;;;;;
msgbox/notAvailbleGoldPurchase;This feature is not available yet.;This feature is not available yet.;same;;;;;;;;;;;;;;;;;;;
mainmenu/countryLocked;Fuck you, this country is currently locked.;Vehicles of this country are currently locked.;nice;;;;;;;;;;;;;;;;;;;
mainmenu/countryLocked/tooltip;You can unlock this country's vehicles by fighting in 11 battles against other players (only the battles where RP were gained are counted).;You can unlock this country's vehicles by fighting in 11 battles against other players (only the battles where RP were gained are counted).;same;;;;;;;;;;;;;;;;;;;
mainmenu/noSuitableVehicles;"There is no suitable vehicle.
In <color=@activeTextColor>%s</color> game mode <color=@activeTextColor>%s</color> can be used only.
Change vehicle or game mode.";"There is no suitable vehicle.
In <color=@activeTextColor>%s</color> game mode <color=@activeTextColor>%s</color> can be used only.
Change vehicle or game mode.";same;;;;;;;;;;;;;;;;;;;
mainmenu/badCurrentUnit;"Selected crew is kitted with unsuitable vehicle for <color=@activeTextColor>%s</color> game mode.
In selected game mode <color=@activeTextColor>%s</color> can be used only.
Change vehicle or game mode.";"Selected crew is kitted with unsuitable vehicle for <color=@activeTextColor>%s</color> game mode.
In selected game mode <color=@activeTextColor>%s</color> can be used only.
Change vehicle or game mode.";same;;;;;;;;;;;;;;;;;;;
mainmenu/airBattles;Air battles;Air battles;same;;;;;;;;;;;;;;;;;;;
mainmenu/tankBattles;Tank battles;Tank battles;same;;;;;;;;;;;;;;;;;;;
mainmenu/changeVehicle;Change vehicle;Change vehicle;same;;;;;;;;;;;;;;;;;;;
mainmenu/changeMode;Change game mode;Change game mode;same;;;;;;;;;;;;;;;;;;;
mainmenu/battleTypeToltip;"Battle mode selection.
Here you select type of battle you will participate in.
In air battles aircraft may take part only.
In tank battles a major role is played by ground vehicles.";"Battle mode selection.
Here you select type of battle you will participate in.
In air battles aircraft may take part only.
In tank battles a major role is played by ground vehicles.";same;;;;;;;;;;;;;;;;;;;
crew_not_available;This crew can't be used for this mission anymore.;This crew can't be used for this mission anymore.;same;;;;;;;;;;;;;;;;;;;
msg/need_more_kills_for_aircraft;The vehicle is unavailable: to make one flyout on an aircraft you need to destroy three enemies.;The vehicle is unavailable: to make one flyout on an aircraft you need to destroy three enemies.;same;;;;;;;;;;;;;;;;;;;
aircraft_not_repaired;The vehicle is damaged and can't be used in a mission until it's repaired.;The vehicle is damaged and can't be used in a mission until it's repaired.;same;;;;;;;;;;;;;;;;;;;
msgbox/no_repared_aircrafts;"You need at least one fully repaired vehicle in the selected country to start a mission.
Full repair cost: %s";"You need at least one fully repaired vehicle in the selected country to start a mission.
Full repair cost: %s";same;;;;;;;;;;;;;;;;;;;
msgbox/no_repared_aircrafts_random;"You need at least one fully repaired vehicle in each country to start a mission.
Full repair cost: %s";"You need at least one fully repaired vehicle in each country to start a mission.
Full repair cost: %s";same;;;;;;;;;;;;;;;;;;;
msgbox/select_repared_aircraft;"You need to select a fully repaired vehicle to start a mission.
Full repair cost: %s";"You need to select a fully repaired vehicle to start a mission.
Full repair cost: %s";same;;;;;;;;;;;;;;;;;;;
msgbox/select_repared_aircrafts_random;"You need to select a fully repaired vehicle for each country to start a mission.
Full repair cost: %s";"You need to select a fully repaired vehicle for each country to start a mission.
Full repair cost: %s";same;;;;;;;;;;;;;;;;;;;
msgbox/no_available_aircrafts;The crews of the selected country are still in battle and cannot be used until the mission has ended or until %s has passed after you have entered the battle.;The crews of the selected country are still in battle and cannot be used until the mission has ended or until %s has passed after you have entered the battle.;same;;;;;;;;;;;;;;;;;;;
msgbox/no_available_aircrafts_random;All your crews are still in battle and cannot be used until the mission has ended or until %s have passed after you entered the battle.;All your crews are still in battle and cannot be used until the mission has ended or until %s have passed after you entered the battle.;same;;;;;;;;;;;;;;;;;;;
msgbox/select_available_aircraft;You need to choose an available vehicle to start a mission.;You need to choose an available vehicle to start a mission.;same;;;;;;;;;;;;;;;;;;;
msgbox/select_available_aircrafts_random;You need to choose an available vehicle in each country to start a mission.;You need to choose an available vehicle in each country to start a mission.;same;;;;;;;;;;;;;;;;;;;
squad/no_repared_aircrafts;"Some members of your squad have no fully repaired vehicle in the selected country:
<color=@activeTextColor>%s</color>";"Some members of your squad have no fully repaired vehicle in the selected country:
<color=@activeTextColor>%s</color>";same;;;;;;;;;;;;;;;;;;;
squad/no_repared_aircrafts_random;"Some members of your squad have selected broken vehicle:
<color=@activeTextColor>%s</color>";"Some members of your squad have selected broken vehicle:
<color=@activeTextColor>%s</color>";same;;;;;;;;;;;;;;;;;;;
msgbox/squad_not_ready_for_event;Some members of your squad are not ready to participate in the selected mode.;Some members of your squad are not ready to participate in the selected mode.;same;;;;;;;;;;;;;;;;;;;
msgbox/some_repared_aircrafts_random;"You have some damaged vehicles that cannot be used in this mission.
Full repair cost: %s";"You have some damaged vehicles that cannot be used in this mission.
Full repair cost: %s";same;;;;;;;;;;;;;;;;;;;
msgbox/some_repared_aircrafts;"You have some damaged vehicles in the selected country that cannot be used in this mission.
Full repair cost: %s";"You have some damaged vehicles in the selected country that cannot be used in this mission.
Full repair cost: %s";same;;;;;;;;;;;;;;;;;;;
msgbox/btn_RepairAll;Repair All;Repair All;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_Repair;Repair;Repair;same;;;;;;;;;;;;;;;;;;;
msgbox/btn_ContinueWithoutRepair;Continue Without Repair;Continue Without Repair;same;;;;;;;;;;;;;;;;;;;
mainmenu/online_info;Online: {playersOnline}, Battles: {battles};Online: {playersOnline}, Battles: {battles};same;;;;;;;;;;;;;;;;;;;
mainmenu/custom_lang_info;;Custom localization enabled;nice;;;;;;;;;;;;;;;;;;;
mainmenu/custom_lang_info/tooltip;You have SCAM enabled. If some texts in the game are displayed incorrectly, too bad.;You have custom localization enabled. If some texts in the game are displayed incorrectly, contact the author of the installed custom localization (mod) or disable it.;nice;;;;;;;;;;;;;;;;;;;
mainmenu/customSoundMods;Sound modification enabled;Sound modification enabled;same;;;;;;;;;;;;;;;;;;;
mainmenu/customSoundMods/tooltip;You have a custom sound modification enabled. The game may not work stably if you use outdated or incorrect modifications.;You have a custom sound modification enabled. The game may not work stably if you use outdated or incorrect modifications.;same;;;;;;;;;;;;;;;;;;;
mainmenu/mode_countPlayers;Players:;Players:;same;;;;;;;;;;;;;;;;;;;
mainmenu/mode_countBattles;Battles:;Battles:;same;;;;;;;;;;;;;;;;;;;
msgbox/invalidEmail;Invalid e-mail;Invalid e-mail;same;;;;;;;;;;;;;;;;;;;
msgbox/cantClaimManualUnlockPrize;You cannot claim this prize as you do not have {unitname} on your account.;You cannot claim this prize as you do not have {unitname} on your account.;same;;;;;;;;;;;;;;;;;;;
tooltip/invalidEmail/possibly;Remember to buy Battle Ass, our families are under sanction!;Possibly, you have entered wrong e-mail. Please, ensure before sending.;nice;;;;;;;;;;;;;;;;;;;
msgbox/emptyLogin;Empty login;Empty login;same;;;;;;;;;;;;;;;;;;;
msgbox/invalidReplayFileName;"Invalid replay file name. The name must not be empty or start with ""#"" as well as contain
\ \ | / < > : ? * """;"Invalid replay file name. The name must not be empty or start with ""#"" as well as contain
\ \ | / < > : ? * """;same;;;;;;;;;;;;;;;;;;;
msgbox/cantRenameReplayFile;"Unable to rename the replay.
This could happen due to:
- a lack of free space on your hard drive
- a replay name containing invalid symbols: \ / : * ? "" < > |
- a replay name that is too long";"Unable to rename the replay.
This could happen due to:
- a lack of free space on your hard drive
- a replay name containing invalid symbols: \ / : * ? "" < > |
- a replay name that is too long";same;;;;;;;;;;;;;;;;;;;
msg/autosaveReplayDescription;(Autosave. Rename the file if you need it.);(Autosave. Rename the file if you need it.);same;;;;;;;;;;;;;;;;;;;
mainmenu/btnBrowser;Browser;Browser;same;;;;;;;;;;;;;;;;;;;
mainmenu/questionChangeName;"Attention! After you press OK, the browser will automatically open to the nick change page, and after the operation is finished, the client will automatically quit to the login screen.
Would you like to continue?";"Attention! After you press OK, the browser will automatically open to the nick change page, and after the operation is finished, the client will automatically quit to the login screen.
Would you like to continue?";same;;;;;;;;;;;;;;;;;;;
mainmenu/questionChangeNameSteam;"Attention! After you press OK, the browser will automatically open to the nick change page. Required to manually restart game after the operation is finished.
Would you like to continue?";"Attention! After you press OK, the browser will automatically open to the nick change page. Required to manually restart game after the operation is finished.
Would you like to continue?";same;;;;;;;;;;;;;;;;;;;
mainmenu/questionChangePlayer;Are you sure you want to log out and then log in as another player?;Are you sure you want to log out and then log in as another player?;same;;;;;;;;;;;;;;;;;;;
crew/currentAircraft;Current Vehicle;Current Vehicle;same;;;;;;;;;;;;;;;;;;;
crew/forUnit;"For ""{unitName}""";"For ""{unitName}""";same;;;;;;;;;;;;;;;;;;;
crew/availablePoints;Crew XP Points:;Crew XP Points:;same;;;;;;;;;;;;;;;;;;;
crew/availablePoints/short;XP Points:;XP Points:;same;;;;;;;;;;;;;;;;;;;
crew/availablePoints/advice;It is recommended to distribute the Crew XP Points;It is recommended to distribute the Crew XP Points;same;;;;;;;;;;;;;;;;;;;
crew/availablePoints/tooltip;Experience points available for assignment.;Experience points available for assignment.;same;;;;;;;;;;;;;;;;;;;
crew/usedSkills;Crew Level:;Crew Level:;same;;;;;;;;;;;;;;;;;;;
crew/usedSkills/short;Level:;Level:;same;;;;;;;;;;;;;;;;;;;
crew/usedSkills/tooltip;Total number of skill upgrades.;Total number of skill upgrades.;same;;;;;;;;;;;;;;;;;;;
crew/incCost/tooltip;Cost of New Skill Level;Cost of New Skill Level;same;;;;;;;;;;;;;;;;;;;
crew/pilot;Pilot;Pilot;same;;;;;;;;;;;;;;;;;;;
crew/gunner;Defensive armament;Defensive armament;same;;;;;;;;;;;;;;;;;;;
crew/driver;Driver;Driver;same;;;;;;;;;;;;;;;;;;;
crew/tank_gunner;Gunner;Gunner;same;;;;;;;;;;;;;;;;;;;
crew/tank_machine_gunner;Machine Gunner;Machine Gunner;same;;;;;;;;;;;;;;;;;;;
crew/commander;Commander;Tank Commander;nice;;;;;;;;;;;;;;;;;;;
crew/loader;Loader;Tank Loader;nice;;;;;;;;;;;;;;;;;;;
crew/radio_gunner;Radio Operator Gunner;Radio Operator Gunner;same;;;;;;;;;;;;;;;;;;;
crew/groundService;Logistical services;Logistical services;same;;;;;;;;;;;;;;;;;;;
crew/trained;Qualification;Qualification;same;;;;;;;;;;;;;;;;;;;
crew/eyesight;Keen Vision;Keen Vision;same;;;;;;;;;;;;;;;;;;;
crew/eyesight/tank/tooltip;"This skill affects the crew's visual range in the hull direction and the direction they are looking, as well as the range of detecting air targets. Average skill value of the crew counts.
* - when using a sight device or binocular glasses, the range increases by {targetingMul} and {binocularMul} times accordingly";"This skill affects the crew's visual range in the hull direction and the direction they are looking, as well as the range of detecting air targets. Average skill value of the crew counts.
* - when using a sight device or binocular glasses, the range increases by {targetingMul} and {binocularMul} times accordingly";same;;;;;;;;;;;;;;;;;;;
crew/pilot/eyesight/tooltip;"This skill affects the pilot's visual range in the direction he is looking; i.e. the maximum distance at which he can detect the enemy in front of himself.
The skill allows to increase the range of detection up to two times (upon identical weather conditions, position of the Sun and altitude difference between the two aircraft).";"This skill affects the pilot's visual range in the direction he is looking; i.e. the maximum distance at which he can detect the enemy in front of himself.
The skill allows to increase the range of detection up to two times (upon identical weather conditions, position of the Sun and altitude difference between the two aircraft).";same;;;;;;;;;;;;;;;;;;;
crew/hearing;Awareness;Awareness;same;;;;;;;;;;;;;;;;;;;
crew/pilot/hearing/tooltip;"This skill affects the range at which enemies are detected in the vicinity, around the vehicle but not directly in front of it. Thus, the higher the skill, the earlier the markers for enemies become visible.
The skill allows to increase the range of detection up to two times.";"This skill affects the range at which enemies are detected in the vicinity, around the vehicle but not directly in front of it. Thus, the higher the skill, the earlier the markers for enemies become visible.
The skill allows to increase the range of detection up to two times.";same;;;;;;;;;;;;;;;;;;;
crew/gForceTolerance;G-Tolerance;G-Tolerance;same;;;;;;;;;;;;;;;;;;;
crew/pilot/gForceTolerance/tooltip;"Tolerance of positive and negative g-forces. In the ""Mouse Aim"" mode this skill affects control accuracy of the aircraft.";"Tolerance of positive and negative g-forces. In the ""Mouse Aim"" mode this skill affects control accuracy of the aircraft.";same;;;;;;;;;;;;;;;;;;;
crew/gunner/gForceTolerance/tooltip;"Tolerance of positive and negative g-forces. In the ""Mouse Aim"" mode this skill affects control accuracy of the aircraft.";"Tolerance of positive and negative g-forces. In the ""Mouse Aim"" mode this skill affects control accuracy of the aircraft.";same;;;;;;;;;;;;;;;;;;;
crew/endurance;Stamina;Stamina;same;;;;;;;;;;;;;;;;;;;
crew/pilot/endurance/tooltip;"This skill allows the crew to resist fatigue for a longer period of time.
Accuracy and g-tolerance gradually decrease, depending on the time spent in the session and the number of g-forces sustained.
In addition, the skill has an effect on aiming accuracy in mouse aiming mode.";"This skill allows the crew to resist fatigue for a longer period of time.
Accuracy and g-tolerance gradually decrease, depending on the time spent in the session and the number of g-forces sustained.
In addition, the skill has an effect on aiming accuracy in mouse aiming mode.";same;;;;;;;;;;;;;;;;;;;
crew/gunner/endurance/tooltip;"This skill allows the crew to resist fatigue for a longer period of time; their accuracy and g-tolerance gradually decrease, depending on the time spent in the session and the number of g-forces sustained.";"This skill allows the crew to resist fatigue for a longer period of time; their accuracy and g-tolerance gradually decrease, depending on the time spent in the session and the number of g-forces sustained.";same;;;;;;;;;;;;;;;;;;;