forked from caderek/polytopia-languages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoriginal.json
1406 lines (1406 loc) · 84.2 KB
/
original.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"language": "English",
"author": "",
"editors": "",
"action.info.attack": "make an attack with this unit. Select the unit and tap any of the RED targets if you want to attack",
"action.info.boost": "Boost",
"action.info.breakice": "Break Ice",
"action.info.breakpeace": "Break Peace",
"action.info.build": "build a {0} here",
"action.info.capture": "Capture",
"action.info.capture2": "capture this city. Cities generate stars every turn that you can use to develop your empire",
"action.info.cityreward": "City Reward",
"action.info.decompose": "Decompose",
"action.info.destroy": "Destroy",
"action.info.disband": "Disband {0}",
"action.info.do": "do {0} here",
"action.info.endturn": "end this turn to get more resources and unit moves. Press the 'Next Turn' button",
"action.info.establishembassy": "Establish Embassy",
"action.info.examineruins": "Examine",
"action.info.explode": "Explode",
"action.info.freezearea": "Freeze Area",
"action.info.healarea": "Heal Area",
"action.info.healothers": "Heal Others",
"action.info.meet": "Meet",
"action.info.move": "move this unit. Select the unit and tap any of the BLUE targets",
"action.info.peacetreaty": "Offer Peace",
"action.info.promote": "Promote",
"action.info.recover": "Recover",
"action.info.remove": "Remove",
"action.info.research": "research {0}.",
"action.info.reward": "Reward",
"action.info.reward.population": "That will increase the population of the nearest city. When the population becomes big enough the city will level up and produce more resources",
"action.info.reward.resources": "That will give you an instant reward of {0} resources",
"action.info.stay": "Stay",
"action.info.train": "train a unit in this city. Units can be used to explore the world and to attack enemies and defend your cities",
"action.info.trip": "Trip",
"action.info.upgrade": "Upgrade to {0}",
"actionbox.building.decomposing": "Decomposing",
"actionbox.building.decomposing.info": "This improvement will decompose at the end of this turn",
"actionbox.building.doit": "DO IT",
"actionbox.building.level": "level {0}/{1}",
"actionbox.building.requiredtech": "You need to research {0} to do this, tap the 'Tech Tree' button.",
"actionbox.building.techtree": "TECH TREE",
"actionbox.cantperformaction.description": "You cannot perform this action right now.",
"actionbox.city": "City",
"actionbox.city.level": "lvl {0}",
"actionbox.confirm": "Confirm {0}",
"actionbox.confirm.button": "YES",
"actionbox.confirm.info": "Are you sure you want to do this?",
"actionbox.confirm.info.breakpeace": "Are you sure you want to break the peace treaty? Doing so will disable all your units for the rest of this turn.",
"actionbox.confirm.info.breakpeace.disband": "It will also disband the {0} units you have in their territory.",
"actionbox.embassyestablished.description": "The embassy is already established.",
"actionbox.establishembassynocapital.description": "You cannot establish an embassy if the tribe has no capital.",
"actionbox.insufficientfunds": "You don't have enough stars to buy this. Tap 'next turn' to get more stars.",
"actionbox.pendingpeacetreaty.description": "Peace treaty pending. Waiting for {0} to respond",
"actionbox.pendingpeacetreaty.title": "Pending Peace Treaty",
"actionbox.tile.roads": "roads",
"actionbox.unit.ability": "Unit Ability",
"actionbox.unit.Boosted": "Boosted",
"actionbox.unit.Frozen": "Frozen",
"actionbox.unit.Invisible": "Invisible",
"actionbox.unit.kills": "{0}/{1} kills",
"actionbox.unit.new": "Train a new {0} {1}",
"actionbox.unit.Poisoned": "Poisoned",
"actionbox.unit.toomany": "(too many)",
"actionbox.unit.toomany.info": "This city can't support any more units. Upgrade the city to get more space for units.",
"actionbox.unit.train": "TRAIN",
"actionbox.unit.upgrade": "UPGRADE",
"actionbox.unit.veteran": "Veteran",
"actionbox.village": "Village",
"actionbtn.remove.building": "Building",
"actionbtn.remove.roads": "Roads",
"backend.connecting": "Connecting to server...",
"backend.connecting.failed": "Could not establish a connection to the server",
"backend.connection.lost": "Connection lost",
"backend.connection.lost.info": "Hold on while we're trying to reconnect",
"backend.login.failed": "Login failed",
"backend.login.successful": "Logged in as {0}",
"bottommenu.gamestats": "Game Stats",
"bottommenu.menu": "Menu",
"bottommenu.nextturn": "Next Turn",
"bottommenu.techtree": "Tech Tree",
"building.ability.attract": "Attracts a wild animal to a nearby forest tile every {1} turns.",
"building.ability.bridge": "{0} creates a bridge that any unit can move on, ignoring the terrain type underneath.",
"building.ability.embark": "Units that move here will turn into boats that can move on water.",
"building.ability.heal": "{0} heals any friendly unit that end their turn next to them.",
"building.ability.limited": "You can only build one {0} per city.",
"building.ability.network": "{1} connect to cities and other {1} through {0}, within a {2} tiles radius.",
"building.ability.patina": "{0} grows every {1} turns and provides {2} for each level of growth.",
"building.ability.poison": "{0} poison any unit that step on them. Poisoned units lose all defense bonuses and spread spores when they die.",
"building.ability.road": "Build roads to connect cities with the capital. Connected cities get 1 population as a reward. Roads also give a movement bonus for all units.",
"building.ability.route": "{1} creates trade routes through {0} to any other {1} within a {2} tiles radius.",
"building.ability.route.and": "and ",
"building.ability.ruin": "A ruin from an ancient civilization, it can contain valuable things! Go there with a unit to examine it.",
"building.ability.unique": "{0} can only be built once.",
"building.capital.owner": "{0} is the {1} capital",
"building.capital.owner.former": "{0} is the former capital of the {1} empire, currently occupied by {2} forces",
"building.city.owner": "{0} is a city in the {1} empire",
"building.names.algae": "Algae",
"building.names.burnforest": "Burn Forest",
"building.names.city": "City",
"building.names.clathrus": "Clathrus",
"building.names.clearforest": "Clear Forest",
"building.names.customshouse": "Customs House",
"building.names.enchantanimal": "Enchant Animal",
"building.names.enchantwhale": "Enchant Whale",
"building.names.farm": "Farm",
"building.names.fishing": "Fishing",
"building.names.foresttemple": "Forest Temple",
"building.names.forge": "Forge",
"building.names.fungi": "Fungi",
"building.names.growforest": "Grow Forest",
"building.names.harvestfruit": "Harvest Fruit",
"building.names.hunting": "Hunting",
"building.names.icebank": "Ice Bank",
"building.names.icetemple": "Ice Temple",
"building.names.lumberhut": "Lumber Hut",
"building.names.mine": "Mine",
"building.names.monument1": "Altar of Peace",
"building.names.monument2": "Tower of Wisdom",
"building.names.monument3": "Grand Bazaar",
"building.names.monument4": "Emperors Tomb",
"building.names.monument5": "Gate of Power",
"building.names.monument6": "Park of Fortune",
"building.names.monument7": "Eye of God",
"building.names.mountaintemple": "Mountain Temple",
"building.names.mycelium": "Mycelium",
"building.names.outpost": "Outpost",
"building.names.port": "Port",
"building.names.road": "Road",
"building.names.ruin": "Ruin",
"building.names.sanctuary": "Sanctuary",
"building.names.sawmill": "Sawmill",
"building.names.temple": "Temple",
"building.names.watertemple": "Water Temple",
"building.names.whalehunting": "Whale Hunting",
"building.names.windmill": "Windmill",
"building.produce": "produces {0} each turn",
"building.produce.multiply": "({0} for each nearby {1})",
"building.produce.multiply.polaris": "({0} for every {1} frozen tiles in the world)",
"building.produce.multiply2": "produces {0} for each nearby {1} each turn",
"building.produce.multiply2.polaris": "Produces {0} for every {1} frozen tiles in the world",
"building.produce.multiply3": "produces {0} for each nearby {1}",
"building.produce.reward": "produces {0}",
"building.produce.reward.named": "produces {0} for {1}",
"building.resource": "adds a {0} at the selected tile",
"building.restriction.near": "Must be built next to a {0}.",
"building.restriction.on": "Must be on a tile with {0}.",
"building.reward.instant": "instantly gives you {0}",
"building.reward.tech": "gives you a {0}",
"building.transform": "transforms a {0} into a {1}",
"building.transform2": "transforms a {0} into a {1} with {2}",
"building.value": "is worth {0} points of score",
"building.village.owner": "This is a village that doesn't belong to any tribe",
"buttons.accept": "ACCEPT",
"buttons.back": "BACK",
"buttons.decline": "DECLINE",
"buttons.exit": "EXIT",
"buttons.exitgame": "EXIT GAME",
"buttons.invite": "INVITE",
"buttons.leave": "LEAVE",
"buttons.ok": "OK",
"buttons.quit": "Quit",
"buttons.reconnect": "RECONNECT",
"buttons.remove": "REMOVE",
"buttons.save": "SAVE",
"buttons.start": "START GAME",
"buttons.stay": "STAY",
"buttons.tryagain": "TRY AGAIN",
"challengermode.connect.button": "CONNECT",
"challengermode.connect.description": "To participate in a ladder you need a Challengermode account.",
"challengermode.connect.header": "Connect to Challengermode",
"consent.approval.info": "To improve Polytopia with usage statistics and to store your high scores and settings we need your approval to access to some personal data.\nYou can read more about what data we collect in our <u><a href='{0}'>privacy policy</a></u>.\n(You can revoke your approval at any time in the 'Throne Room')",
"consent.approval.title": "Welcome to Polytopia!",
"consent.approve": "APPROVE",
"consent.deny": "DENY",
"consent.disabled": "Personal Data Disabled",
"consent.disabled.info": "To save personal data like high scores and usage statistics we need your approval. For more info, read our <u><a href='{0}'>privacy policy</a></u>.",
"consent.enabled": "Personal Data Enabled",
"consent.enabled.info": "You currently allow Polytopia to access some personal data to improve service and store your high scores etc. For more info, read our <u><a href='{0}'>privacy policy</a></u>.",
"consent.revoke": "revoke consent",
"credits.artists": "Artists",
"credits.build": "Build version",
"credits.community": "Community Manager",
"credits.debuginfo": "DEBUG INFO",
"credits.design": "Game Design",
"credits.device": "Device",
"credits.followus": "Follow us",
"credits.getmerch": "Get some official Polytopian merch.",
"credits.learnmore1": "Want to know everything?",
"credits.learnmore2": "Check the extensive Wikia database created by the Polytopia community.",
"credits.managment": "Management",
"credits.midjiwan": "The Battle of Polytopia is constantly being created by Midjiwan AB, a tiny indie game studio in Stockholm, Sweden.",
"credits.music": "MUSIC",
"credits.os": "OS",
"credits.platforms": "Multiple platforms",
"credits.polytopiamusic1": "Polytopia music!",
"credits.polytopiamusic2": "Listen to full length versions of you favourite tribe's soundtrack on Spotify.",
"credits.privacy": "Privacy Policy",
"credits.programmers": "Programmers",
"credits.qa": "Quality Assurance",
"credits.screendpi": "Screen DPI",
"credits.screensize": "Screen size",
"credits.showsupport": "Show your support!",
"credits.sound": "Sound & Music",
"credits.terms": "Terms of Service",
"credits.title": "ABOUT",
"credits.visitshop": "SHOP",
"credits.wiki": "WIKI",
"date.day": "day",
"date.days": "days",
"date.hour": "hour",
"date.hours": "hours",
"date.minute": "minute",
"date.minutes": "minutes",
"date.second": "second",
"date.seconds": "seconds",
"diplomacy.acceptpeace.description": "{0} has accepted your peace treaty! While at peace no hostile actions can be made.",
"diplomacy.acceptpeace.notification.description": "Peace treaty with {0} confirmed!",
"diplomacy.acceptpeace.notification.description2": "{0} and {1} has made peace!",
"diplomacy.acceptpeace.title": "Peace treaty accepted!",
"diplomacy.breakpeace.description": "{0} has broken the peace treaty. Next turn you will be able to attack each other again so get prepared!",
"diplomacy.breakpeace.notification.description": "Broke peace with {0}",
"diplomacy.breakpeace.notification.description2": "{0} and {1} are no longer at peace",
"diplomacy.breakpeace.title": "{0} Broke Peace",
"diplomacy.declarewar.description": "{0} has declared war on you!",
"diplomacy.declarewar.title": "War!",
"diplomacy.denypeace.description": "{0} has rejected the peace treaty you offered.",
"diplomacy.denypeace.notification.description": "You rejected the {0} peace treaty.",
"diplomacy.denypeace.notification.title": "No Deal",
"diplomacy.denypeace.title": "Peace treaty rejected",
"diplomacy.destroyedembassy.description": "Your embassy in the {0} capital has been destroyed!",
"diplomacy.destroyedembassy.description2": "The {0} embassy in your capital has been destroyed.",
"diplomacy.destroyedembassy.title": "Embassy Destroyed",
"diplomacy.establishedembassy.description": "You have established an embassy in the {0} capital. It will give you both {1} stars per turn, when you have a peace treaty the income is doubled.",
"diplomacy.establishedembassy.description2": "{0} established an embassy in your capital. It will give you both {1} stars per turn. The income is doubled if you have a peace treaty.",
"diplomacy.establishedembassy.title": "Embassy Established",
"diplomacy.peacetreaty.description": "{0} suggests a peace treaty. If you accept you will not be able to attack each other until one of you breaks the treaty",
"diplomacy.peacetreaty.notification.description": "Peace treaty sent to {0}",
"diplomacy.relation.decent": "Decent",
"diplomacy.relation.great": "Great",
"diplomacy.relation.horrible": "Horrible",
"diplomacy.relation.indifferent": "Indifferent",
"diplomacy.relation.poor": "Poor",
"diplomacy.relation.title": "Relation",
"diplomacy.state.hostile": "cooldown",
"diplomacy.state.hostile.description": "Your current peace treaty just ended and you will be able to attack each other again next turn.",
"diplomacy.state.neutral": "neutral",
"diplomacy.state.neutral.description": "There has been no recent hostilities between your tribes.",
"diplomacy.state.peace": "peace",
"diplomacy.state.peace.description": "You currently have a peace treaty preventing you from attacking each other. A peace treaty can be canceled at any time, but that will take effect in the following turn.",
"diplomacy.state.war": "war",
"diplomacy.state.war.description": "You or them have attacked the other in the last turn. If there are no more hostilities in one turn your status will change to \"neutral\"",
"endscreen.army&territory": "Army & Territory",
"endscreen.battle": "Battle skills",
"endscreen.battle.info": "{0} units lost",
"endscreen.bonus": "Difficulty Bonus",
"endscreen.cities": "Cities",
"endscreen.citiescount": "{0} cities",
"endscreen.connectioninfo": "Log in to submit high scores",
"endscreen.culture": "{0} monuments, {1} temples",
"endscreen.destroyed": "Tribes destroyed",
"endscreen.destroyed.info": "{0}/{1}",
"endscreen.domination.loss": "{0} turns",
"endscreen.domination.win": "{0}/{1} turns",
"endscreen.done": "DONE",
"endscreen.finalrating": "FINAL RATING",
"endscreen.finalscore": "FINAL SCORE",
"endscreen.gameover": "GAME OVER",
"endscreen.monuments&temples": "Monuments & Temples",
"endscreen.nextstar": "{0} needed for next star",
"endscreen.nextstar.percent": "{0}% needed for next star",
"endscreen.personal": "New personal all time high!",
"endscreen.personal.title": "Amazing!",
"endscreen.rating": "Difficulty rating",
"endscreen.ruledby": "Ruled by {0}",
"endscreen.science": "Science",
"endscreen.showhiscore": "SHOW HISCORE",
"endscreen.speedskills": "Speed skills",
"endscreen.techscore": "{0}/{1} technologies researched",
"endscreen.topresult": "New top result!",
"endscreen.topresult.title": "Great!",
"endscreen.units": "{0} units, {1} tiles empire",
"endscreen.victory": "VICTORY",
"endscreen.winner": "{0} wins!",
"epithet.divine": "the Divine {0}",
"epithet.faithful": "the Faithful {0}",
"epithet.pathetic": "the Pathetic {0}",
"epithet.terrible": "the Terrible {0}",
"error.code.1001": "Submit failed, busy ({0})",
"error.code.1002": "Steam authentication failed ({0})",
"error.code.1003": "Google Play authentication failed ({0})",
"error.code.1004": "Login failed ({0})",
"error.code.1005": "Game not found ({0})",
"error.code.1006": "Player not found ({0})",
"error.code.1007": "Invalid friend request ({0})",
"error.code.1008": "Friendship not found ({0})",
"error.code.1009": "Invalid friendship status ({0})",
"error.code.1010": "Unable to create game, no players ({0})",
"error.code.1011": "Missing game state ({0})",
"error.code.1012": "Game could not be loaded ({0})",
"error.code.1013": "Invalid command ({0})",
"error.code.1014": "Failed to kick player ({0})",
"error.code.1015": "Failed to start game ({0})",
"error.code.1016": "User not found ({0})",
"error.code.1017": "Failed to pick tribe ({0})",
"error.code.1018": "AI Command failed ({0})",
"error.code.1019": "Your version of Polytopia is too old. Update to the latest version to start a new multiplayer game ({0})",
"error.code.1023": "This game is using a newer version of Polytopia, you need to update to the latest version before you can play. ({0})",
"error.code.1024": "This game is still ongoing, you can view it once it has ended ({0})",
"error.code.404": "Connection error ({0})",
"error.code.500": "Internal server error ({0})",
"error.unknown": "Unknown error: {0} ({1})",
"esport.verifyaccount.description": "You’re about to link your Polytopia account to Challengermode.",
"esport.verifyaccount.description.login": "In order to verify your account you need to be logged in",
"esport.verifyaccount.login": "Login",
"esport.verifyaccount.service.cm": "Challengermode",
"esport.verifyaccount.success": "Successfully linked account",
"esport.verifyaccount.title": "Verify Account",
"firebaseservice.status.connecting": "Connecting to the Polytopia server...",
"firebaseservice.status.loading": "Loading game data...",
"firendList.winratio": "-Win Ratio-",
"friendlist.acceptinvite.button": "ACCEPT INVITE",
"friendlist.bot": "{0} Bot",
"friendlist.bots": "Bots",
"friendlist.cancelinvite.button": "CANCEL INVITE",
"friendlist.checking": "Checking friend status...",
"friendlist.error": "Error loading friends",
"friendlist.friend.notupdated": "{0} is still on the old server",
"friendlist.friend.update": "{0} needs to update to the latest version of Polytopia before you can invite them to new games.",
"friendlist.friend.updated": "{0} is now on the new server",
"friendlist.friendrequests": "Friend Requests",
"friendlist.friends": "Friends",
"friendlist.friends.old": "Outdated friends",
"friendlist.friendshipstate": "Friendship status: {0}",
"friendlist.friendshipstate.accepted": "This player is your friend. Lucky you!",
"friendlist.friendshipstate.isyou": "This is you.",
"friendlist.friendshipstate.none": "You're not friends with this player. Maybe you would like to be?",
"friendlist.friendshipstate.receivedrequest": "This player wants to be your friend. Do you accept?",
"friendlist.friendshipstate.rejected": "Friend request rejected.",
"friendlist.friendshipstate.sentrequest": "You've sent a friend request to this player. No response yet. Fingers crossed!",
"friendlist.loaderror": "Could not connect to the multiplayer server. Check your internet connection and try again.",
"friendlist.loading": "Loading friends...",
"friendlist.local": "Local Players",
"friendlist.new.accept": "ACCEPT",
"friendlist.new.added.info": "Added player {0}",
"friendlist.new.added.title": "Player Added",
"friendlist.new.button": "ADD",
"friendlist.new.caps": "ADD FRIEND",
"friendlist.new.exists.info": "You are already friends with {0}",
"friendlist.new.exists.title": "Duplicate Player",
"friendlist.new.info.alias": "Search for your friend's alias.",
"friendlist.new.looking.info": "Looking for player {0}",
"friendlist.new.looking.title": "Loading Player",
"friendlist.new.reject": "REJECT",
"friendlist.new.Results": "Results:",
"friendlist.new.Search": "SEARCH",
"friendlist.new.title": "Add a new friend",
"friendlist.pendinginvitations": "Pending Invitations",
"friendlist.player": "Player {0}",
"friendlist.rejectedinvitations": "Rejected Invitations",
"friendlist.reload": "RELOAD",
"friendlist.reloading": "Reloading...",
"friendlist.remove": "REMOVE",
"friendlist.removed.info": "Removed player {0}",
"friendlist.removed.title": "Player Removed",
"friendlist.requestaccepted": "Friend Request Accepted",
"friendlist.requestrecieved": "Friend Request Received",
"friendlist.requestsent.notification": "Friend request sent to {0}",
"friendlist.title": "FRIEND LIST",
"friendlist.unfriend": "UNFRIEND",
"friendlist.uptodate": "Everything is up to date",
"gameinfo.created": "Created: {0} ago",
"gameinfo.gameover": "This game is over, open it to view the final result",
"gameinfo.gameversion": "Game version: {0}",
"gameinfo.id": "ID: {0}",
"gameinfo.id.copied": "Game ID copied",
"gameinfo.lastmove": "Last move: {0} ago",
"gameinfo.move": "Move: {0}",
"gameinfo.nodata": "There's something wrong with this game, can't show any data for it",
"gameinfo.nodata.title": "No data",
"gameinfo.opponentsturn": "Waiting for {0} to {1}",
"gameinfo.picktribe": "Pick Tribe",
"gameinfo.play": "Play",
"gameinfo.serverversion": "Server version: {0}",
"gameinfo.start": "Start the Game",
"gameinfo.turn": "Turn: {0}",
"gameinfo.updated": "Updated: {0} ago",
"gameinfo.yourturn": "It is your turn to {0}",
"gameitem.ended": "This game is over.",
"gameitem.gameover": "This game is over, tap to see the end.",
"gameitem.join": "Join this game or decline the invitation",
"gameitem.join.wait": "Waiting for {0} to pick tribe",
"gameitem.kick": "Duh!",
"gameitem.kick.action": "KICK",
"gameitem.kick.info": "Do you want to kick {0} out of from this game? A bot will take control of the tribe.",
"gameitem.localplayerdead": "You've been wiped out in this game, still you can spectate.",
"gameitem.pick": "{0}, pick your tribe",
"gameitem.ready": "Ready to start!",
"gameitem.ready.wait": "{0} can start the game",
"gameitem.ready.wait.noowner": "Waiting for the game to start",
"gameitem.reload": "RELOAD",
"gameitem.remind.max": "That's enough",
"gameitem.remind.max.info": "Reminder already sent to {0}",
"gameitem.remind.notification": "We are waiting for you to play in {0}. Come on!!",
"gameitem.remind.notify": "Done",
"gameitem.remind.notify.info": "Reminder sent to {0}",
"gameitem.skipturn": "Duh!",
"gameitem.skipturn.action": "SKIP TURN",
"gameitem.skipturn.info": "Do you want to skip {0} this turn? Alternatively you can kick this person from the game, letting a bot take control of the tribe.",
"gameitem.slow": "Come on...",
"gameitem.slow.action": "REMIND",
"gameitem.slow.info": "{0} has {1} to make a move. Send a rude reminder to make {0} hurry up?",
"gameitem.start": "{0}, start the game",
"gameitem.start.inviteplayer": "You need to invite one or more players",
"gameitem.start.wait": "Waiting for {0} to start the game",
"gameitem.timeleft": "Cool runnings",
"gameitem.timeleft.info": "{0} still has {1} to make a move.",
"gameitem.timelimit": "Time limit",
"gameitem.timelimit.info": "You have {0} to make your move, after that you will be removed from the game.",
"gameitem.timelimit.timeleft": "Time Left",
"gameitem.timelimit.timeleft.info": "This is the time you have left to make your move. When the time runs out you will be automatically skipped.\n\nYou have been skipped {0} times in this game.\n\nAfter {1} skips you will be kicked from the game.",
"gameitem.timeup": "Time Up!",
"gameitem.timeup.info": "Your time to make a move is up, do you want to resign?",
"gameitem.turn": "{0}, take your turn",
"gameitem.turn.other": "Waiting for {0}",
"gameitem.turn.your": "Your turn",
"gamemode.custom": "Creative",
"gamemode.custom.caps": "CREATIVE",
"gamemode.custom.description.button": "Set up your own game and play however you like.",
"gamemode.death": "Your last city was lost, you have been defeated.",
"gamemode.domination": "Domination",
"gamemode.domination.caps": "DOMINATION",
"gamemode.domination.description": "Wipe all the other tribes from the face of the Square. There can be only one.",
"gamemode.domination.description.button": "Play until there is only one tribe left, with no time limit.",
"gamemode.domination.loss": "Your last city was lost, you have been defeated.",
"gamemode.domination.win": "You have defeated all the other tribes and unified the entire Square!",
"gamemode.glory": "Glory",
"gamemode.glory.caps": "GLORY",
"gamemode.glory.description": "First to reach {0} points win",
"gamemode.glory.win": "The {0} points score was reached!",
"gamemode.glory.win.no.opponents": "The game is over",
"gamemode.might": "Might",
"gamemode.might.caps": "MIGHT",
"gamemode.might.description": "Capture all capitals to win",
"gamemode.might.win": "All capitals were captured",
"gamemode.might.win.last.human": "You are the last standing human player, you win!",
"gamemode.might.win.no.opponents": "No opponents left",
"gamemode.none": "Unknown",
"gamemode.none.description": "You might get either game mode. Groovy!",
"gamemode.perfection": "Perfection",
"gamemode.perfection.caps": "PERFECTION",
"gamemode.perfection.description": "Get the highest possible score before the time runs out.",
"gamemode.perfection.description.button": "Show your skills on the global hiscore in the classic 30 turns game.",
"gamemode.perfection.loss": "We have reached the end of time.",
"gamemode.perfection.win": "We have reached the end of time. The memory of your tribe will echo in eternity!",
"gamemode.sandbox": "Infinity",
"gamemode.sandbox.caps": "INFINITY",
"gamemode.sandbox.description": "Play however you like, forever and ever",
"gamemode.tutorial": "Boot Camp",
"gamemode.tutorial.description": "Your tribe gift you with these resources. Spend them wisely!",
"gamemodepicker.title": "GAME MODE",
"gamesaverbinary.error.loading.moves": "Error loading moves",
"gamesaverbinary.unable.to.save": "I was unable to save the game, make sure you have sufficient storage on your device",
"gamesaverbinary.unable.to.save.title": "Could not save :(",
"gameservice.android": "Google Play",
"gameservice.ios": "Game Center",
"gameservice.steam": "Steam",
"gamesettings.anonymous": "Anonymous",
"gamesettings.autoskip": "Auto Skip",
"gamesettings.autoskip.disabled": "Disabled",
"gamesettings.autoskip.enabled": "Enabled",
"gamesettings.continue": "CONTINUE",
"gamesettings.createslot": "Creating game slot...",
"gamesettings.createslot.error": "Error creating game",
"gamesettings.createslot.error.info": "Make sure you are online and try again.",
"gamesettings.creatingworld": "LOADING WORLD",
"gamesettings.difficulty": "Difficulty",
"gamesettings.difficulty.crazy": "Crazy",
"gamesettings.difficulty.easy": "Easy",
"gamesettings.difficulty.hard": "Hard",
"gamesettings.difficulty.normal": "Normal",
"gamesettings.disableTribes": "Enable or Disable Tribes",
"gamesettings.findmatch": "FIND MATCH",
"gamesettings.game": "Game {0}",
"gamesettings.gamename": "Game Name",
"gamesettings.info.difficulty.bonus": "Difficulty bonus: {0}%",
"gamesettings.info.gamepreferences.header": "Advanced settings",
"gamesettings.info.gamepreferences.info": "The more preferences you apply, the longer you will have to wait to find a matching opponent. So if you are in for a quick game, leave all preferences untouched.",
"gamesettings.info.local": "{0} opponents, {1} tiles map",
"gamesettings.info.matchmaking.gamemode": "{0} game",
"gamesettings.info.matchmaking.mappreset": "{0} map type",
"gamesettings.info.matchmaking.mapsize": "{0} tiles map",
"gamesettings.info.matchmaking.opponentcount": "{0} opponents",
"gamesettings.info.matchmaking.timelimit": "{0} turn time limit",
"gamesettings.info.multiplayer": "{0} players, {1} tiles map",
"gamesettings.info.seed": "Seed",
"gamesettings.info.turnlimit30": ", 30 turn limit",
"gamesettings.livegame": "Live Game",
"gamesettings.livegame.description": "Live Games use a dynamic timer that increases based on how many units & cities you have. Any time left at the end of your turn will be added to your next turn.",
"gamesettings.map": "Map Type",
"gamesettings.map.archipelago": "Archipelago",
"gamesettings.map.continents": "Continents",
"gamesettings.map.dryland": "Dryland",
"gamesettings.map.lakes": "Lakes",
"gamesettings.map.waterworld": "Water World",
"gamesettings.matchmaking.noedit": "Open for any kind of game",
"gamesettings.mode": "Game Mode",
"gamesettings.network": "Network",
"gamesettings.network.online": "Online",
"gamesettings.network.passplay": "Pass & Play",
"gamesettings.notavailable": "Not Available",
"gamesettings.notenoughplayers": "You need at least two players to start a game",
"gamesettings.novalidtribes": "No Valid Tribes",
"gamesettings.novalidtribes.info": "There are no valid tribes available. Enable or unlock at least one Tribe to be able to continue.",
"gamesettings.online.disabled": "Online is locked",
"gamesettings.online.disabled.info": "There are some things you need to fix to play online multiplayer",
"gamesettings.online.info": "Play with your friends online using our multiplayer server.",
"gamesettings.opponents": "Opponents",
"gamesettings.passplay.info": "Play with your friends offline on this device by passing it around.",
"gamesettings.players": "Players",
"gamesettings.size": "Map Size",
"gamesettings.size.disabled": "Not Available",
"gamesettings.size.huge": "Huge",
"gamesettings.size.large": "Large",
"gamesettings.size.massive": "Massive",
"gamesettings.size.normal": "Normal",
"gamesettings.size.small": "Small",
"gamesettings.size.tiles": "{0} tiles map.",
"gamesettings.size.tiles.unspecified": "You might get any size of a map. Exciting!",
"gamesettings.size.tiny": "Tiny",
"gamesettings.startgame": "START GAME",
"gamesettings.timelimit": "Turn Time Limit",
"gamesettings.timer": "Game Timer",
"gamesettings.timer.description": "How long each player has to make their moves.\n\nIf a plyers timer runs out others can choose to skip that players turn.",
"gamesettings.timer.live": "Live",
"gamesettings.title": "GAME SETUP",
"gamesettings.unknown": "Unknown",
"gamesettings.unlockmore": "Unlock more tribes to play with more opponents",
"gamesettings.unspecified": "Any",
"gamesettings.yourname": "Your Name",
"gamestats.battle": "Battle skills",
"gamestats.battle.info": "{0} won, {1} lost",
"gamestats.bonus": "Difficulty bonus: {0}",
"gamestats.gamemode": "Game mode: {0}",
"gamestats.speed": "Speed skills",
"gamestats.speed.info": "{0}/{1} turns",
"gamestats.title": "GAME STATS",
"gamestatus.capitals": "Capitals Owned",
"gamestatus.cities": "{0} cities",
"gamestatus.city": "{0} city",
"gamestatus.destroyed": "destroyed",
"gamestatus.difficulty": "Difficulty rating",
"gamestatus.killedonturn": "killed on turn {0}",
"gamestatus.ruled": "Ruled by {0}",
"gamestatus.ruled.bot": "bot",
"gamestatus.ruled.you": "Ruled by you",
"gamestatus.ruler": "Ruler of the {0}",
"gamestatus.score": "score: {0} points",
"gamestatus.scores": "Scores",
"gamestatus.tasks": "Tasks {0}/{1}",
"gamestatus.tasks.complete": "Complete!",
"gamestatus.tribes": "Tribes destroyed",
"gamestatus.unknown.ruler": "Unknown ruler",
"gamestatus.unknown.tribe": "Unknown tribe",
"highscore.alltime": "All Time",
"highscore.alltribes": "All Tribes",
"highscore.error": "Failed to upload highscore to server, do you want to retry?",
"highscore.error.title": "Highscore error",
"highscore.hiscore": "hiscore",
"highscore.loading": "Loading...",
"highscore.notavailable": "High Score not available.",
"highscore.thisweek": "This Week",
"highscore.title": "HIGH SCORE",
"highscore.today": "Today",
"highscore.uploading": "Uploading high score...",
"highscore.uploading.failed": "Failed to upload high score",
"highscore.uploading.successful": "High score uploaded...",
"highscore.uptodate": "Everything is up to date",
"idconsole.clipboard.title": "Voilà!",
"matchmakinggameinfo.waited": "Waited",
"matchmakinggameinfo.waitingforplayers": "Waiting for {0} additional {1}",
"migration.restoredescription": "If you previously purchased tribes you need to restore them to make them show in this brand new version of Polytopia",
"migration.restoreheader": "Restore?",
"misc.error.title": "Error",
"misc.errorloadinggame": "Failed to load game",
"misc.failedcommand": "Failed to send command to server. Do you want to try again?",
"misc.gameoutofsync": "Your game failed to sync with the server. Do you want to try again?",
"misc.player": "player",
"misc.players": "players",
"misc.pushfailed": "Failed to handle incoming notification from server",
"misc.resetfailed": "Game is missing or corrupt",
"mplayerstats.alias": "Alias",
"mplayerstats.appversion": "App version:",
"mplayerstats.avatar.edit": "<sprite=\"texticons\" index=0><u>Edit</u>",
"mplayerstats.clear": "clear data",
"mplayerstats.elo": "Elo",
"mplayerstats.elo.description": "The Elo rating system is a method for calculating the relative skill levels of players.",
"mplayerstats.friends": "nº of friends",
"mplayerstats.games": "Games Played",
"mplayerstats.gameversion": "Game version",
"mplayerstats.loaderror": "Could not connect to the multiplayer server. Check your internet connection and try again.",
"mplayerstats.lost": "Feeling lost? Check the:",
"mplayerstats.multiplayer.faq": "MULTIPLAYER FAQ",
"mplayerstats.multiplayer.faq.lower": "Multiplayer FAQ",
"mplayerstats.rating": "Elo Rating",
"mplayerstats.reload": "reload multiplayer data",
"mplayerstats.reloading": "Reloading...",
"mplayerstats.server": "Server version",
"mplayerstats.title": "PLAYER PROFILE",
"mplayerstats.uptodate": "Everything is up to date",
"multiplayer.activegames": "Active Games",
"multiplayer.clipboard": "Gamedata added to clipboard",
"multiplayer.clipboard.title": "Voilà!",
"multiplayer.creategame": "Create game",
"multiplayer.finishedgames": "Finished Games",
"multiplayer.passplay": "Pass & Play",
"multiplayer.passplay.info": "Challenge your friends in a multiplayer match on the same device. Just pass it on to the next player when your turn is done.",
"news.description": "Welcome!\n This is where we share the latest news from the Polytopia universe. Stay tuned!",
"news.error.failed": "Failed to load news",
"news.error.title": "Error",
"news.timeago": "{0} ago",
"news.title": "POLYTOPIA NEWS",
"notifications.defaultheader": "Alert",
"notifications.restorecomplete": "{0} items restored",
"onlineview.check": "check",
"onlineview.clipboard": "Game ID added to clipboard: {0}",
"onlineview.clipboard.title": "Voilà!",
"onlineview.completed": "completed",
"onlineview.favorites": "Favourites ({0}/{1})",
"onlineview.fixit": "FIX IT",
"onlineview.friendlist.available": "Friend List is only available when connected to the server.",
"onlineview.friends": "Friends",
"onlineview.game.decline": "DECLINE",
"onlineview.game.delete": "DELETE",
"onlineview.game.gameinfo": "Game Info",
"onlineview.game.join": "JOIN GAME",
"onlineview.game.leavematchmaking": "LEAVE",
"onlineview.game.leavematchmaking.info": "Are you sure you want to stop waiting for this game?",
"onlineview.game.leavematchmaking.title": "Leave",
"onlineview.game.missingplayer": "Empty",
"onlineview.game.moreinfo": "More info",
"onlineview.game.old.info": "This game was created with an outdated version of the game. It can unfortunately not be loaded :( My suggestion is that you delete it and start a new one. Sorry for the inconvenience.",
"onlineview.game.old.title": "Old file version",
"onlineview.game.open": "OPEN",
"onlineview.game.player.invited": "You are invited to a new game, {0}",
"onlineview.game.player.kicked": "You have been removed from game {0}",
"onlineview.game.player.left": "{0} has left the game {1} and has been replaced by a bot.",
"onlineview.game.replays.share.button": "Share",
"onlineview.game.replays.share.description": "Use this link to show this replay to your friends or enemies:",
"onlineview.game.replays.share.title": "Share This Replay",
"onlineview.game.resign": "RESIGN",
"onlineview.game.resign.info": "Are you sure you want to leave this game permanently?",
"onlineview.game.resign.title": "Resign",
"onlineview.game.resigned": "You are now resigned.",
"onlineview.game.resigning": "Resigning...",
"onlineview.game.size": "Map Size",
"onlineview.game.start": "START GAME",
"onlineview.game.you": "You",
"onlineview.gamedeleted.info": "The game {0} has been deleted because all other players rejected the game.",
"onlineview.gamedeleted.title": "Game Deleted",
"onlineview.gamedeleted.unknowngame": "Unknown Game",
"onlineview.gameinvitations": "Game Invitations",
"onlineview.intro.fix": "Hi {0}! \n\nTo play online multiplayer there are a few things you need to fix:",
"onlineview.intro.update": "Online multiplayer is not available, please update Polytopia to the latest version",
"onlineview.kicked.automatic": "You have been automatically kicked from the game {0} since you were auto skipped too many times.",
"onlineview.kicked.automatic.other": "{0} was automatically kicked from the game {1} and is now frozen.",
"onlineview.kicked.info": "{0} have kicked you from the game {1} since you took too long to finish your turn.",
"onlineview.kicked.title": "You got Kicked",
"onlineview.kicked.title.other": "{0} was kicked",
"onlineview.ladder.ended": "Ended",
"onlineview.ladder.ends": "Ends in {0}",
"onlineview.ladder.join": "JOIN LADDER",
"onlineview.ladder.leave": "LEAVE LADDER",
"onlineview.ladder.loading": "Loading ladder data...",
"onlineview.ladder.placements.header": "Placements",
"onlineview.ladder.play": "PLAY LADDER",
"onlineview.ladders": "Ladders",
"onlineview.lastgames": "Last {0} Games",
"onlineview.loaderror": "Could not connect to the multiplayer server. Check your internet connection and try again.",
"onlineview.loading.title": "Loading...",
"onlineview.loadingservice": "Loading Service",
"onlineview.lobby.invite.title": "Invite players ({0}/{1})",
"onlineview.lobby.leave.info": "Are you sure you want to leave this lobby?",
"onlineview.lobby.leave.title": "Leave",
"onlineview.lobby.player.add": "Add",
"onlineview.lobby.readytostart": "Ready to start",
"onlineview.lobby.starting": "Game is starting...",
"onlineview.lobby.waitingforplayers": "Waiting for {0} additional {1}",
"onlineview.lobby.waitingforplayers.title": "Are you sure",
"onlineview.lobby.waitingforplayers.warning": "Not everyone has accepted your invite, do you wish to start the game without them?",
"onlineview.login.ios": "Log in to {0}",
"onlineview.login.ios.info": "Using {0} ensures that you have a unique and persistent Player ID that will keep your data safe across devices.",
"onlineview.login.ios.info2": "Go to the settings on your device, pick the Game Center section and log in with your Apple ID.",
"onlineview.login.tesla": "Create Online Profile",
"onlineview.login.tesla.info": "Create a profile in Tesla Arcade to play online with friends",
"onlineview.matchmaking": "RANDOM MATCH",
"onlineview.newgame": "New Game",
"onlineview.nogames.first": "The first thing you need is to connect with some other humans who play Polytopia. Tap 'Friends' to add them.",
"onlineview.nogames.intro": "Hi {0}!",
"onlineview.nogames.start": "Let's get some online games going with your friends. Tap 'New game' to start one.",
"onlineview.noladders": "No ladders available",
"onlineview.noreplays": "When you have completed a multiplayer game it will show up here so you can watch the replay",
"onlineview.notifications": "Enable notifications",
"onlineview.notifications.info": "We use notifications to communicate the status of your ongoing multiplayer games.",
"onlineview.ongoing": "Ongoing",
"onlineview.or": "or",
"onlineview.passplay": "Pass & Play",
"onlineview.passplay.start": "Start a local Pass & Play game by tapping 'New Game'",
"onlineview.profile": "Profile",
"onlineview.profile.available": "Profile is only available when connected to the server.",
"onlineview.purchase": "Purchase one Tribe",
"onlineview.purchase.info": "Running an online multiplayer service costs real money and we rely solely on the kind support from players like you.",
"onlineview.randommatch.start": "Start a game with a random opponent",
"onlineview.refresh": "Refresh",
"onlineview.reloading": "Reloading...",
"onlineview.reloading.release": "Release to reload...",
"onlineview.replay.delete.info": "Are you sure you want to delete this replay?",
"onlineview.replay.delete.title": "Delete",
"onlineview.replays": "Replays",
"onlineview.replays.loading": "Loading replay data...",
"onlineview.required": "required",
"onlineview.resigned.competitive.info": "{0} resigned from the game {1} and is now frozen.",
"onlineview.resigned.info": "{0} resigned from the game {1} and have been replaced by a bot.",
"onlineview.resigned.title": "{0} Resigned",
"onlineview.servicedisabled": "The multiplayer server is temporarily disabled, please try again later. Also make sure that you are using the latest version of the Battle of Polytopia.",
"onlineview.skipped.info.local": "You were skipped.",
"onlineview.skipped.info.other": "{0} was skipped.",
"onlineview.skipped.info.tribe.local": "You were assigned a random tribe due to inactivity.",
"onlineview.skipped.info.tribe.other": "{0} was assigned a random tribe due to inactivity.",
"onlineview.skipped.title.empty": "Skipped",
"onlineview.skipped.title.game": "Skipped in {0}",
"onlineview.theirturn": "Their Turn",
"onlineview.title": "MULTIPLAYER",
"onlineview.uptodate": "All games are up to date",
"onlineview.uptodate.ladders": "All ladders are up to date",
"onlineview.uptodate.replays": "All replays are up to date",
"onlineview.waiting": "Waiting for Players",
"onlineview.waiting.server": "Waiting for server response...",
"onlineview.yourturn": "Your Turn",
"opinion.noopinion": "They don't know about you yet",
"opinion.reason.aggression": "violent",
"opinion.reason.aggression.description": "You recently attacked them",
"opinion.reason.brave": "brave",
"opinion.reason.brave.description": "You fighting against the strongest tribe",
"opinion.reason.commonrelation": "wise",
"opinion.reason.commonrelation.description": "You share the same friends or enemies",
"opinion.reason.differentrelation": "foolish",
"opinion.reason.differentrelation.description": "You are at war with their friends, or have made peace with their enemies",
"opinion.reason.dislike": "annoying",
"opinion.reason.dislike.description": "They just don't like you",
"opinion.reason.embassy": "diplomatic",
"opinion.reason.embassy.description": "You have good diplomatic connections through your embassies",
"opinion.reason.intrusive": "intrusive",
"opinion.reason.intrusive.description": "Your borders are very close",
"opinion.reason.like": "charming",
"opinion.reason.like.description": "For some reason they just seem to like you",
"opinion.reason.peaceful": "peaceful",
"opinion.reason.peaceful.description": "You have not attacked them in a long time",
"opinion.reason.powerful": "powerful",
"opinion.reason.powerful.description": "They are impressed by your military power",
"opinion.reason.threatening": "threatening",
"opinion.reason.threatening.description": "You have military units near their territory",
"opinion.reason.weak": "weak",
"opinion.reason.weak.description": "Your army is weak compared to them, you are an easy target",
"opinion.reason.winning": "dominating",
"opinion.reason.winning.description": "You are about to win the game",
"player.abilities.capitalvision": "Capital Vision",
"player.abilities.decompose": "Decompose",
"player.abilities.destroy": "Destroy",
"player.abilities.disband": "Disband",
"player.abilities.embassy": "Embassy",
"player.abilities.glide": "Glide",
"player.abilities.literacy": "Literacy",
"player.abilities.peacetreaty": "Peace Treaty",
"playerinfo.locked.researchdiplomacy": "Research Diplomacy to gain more insight.",
"playerinfo.locked.upgradeembassy": "Upgrade embassy to gain more insight.",
"playerinfo.stats.income": "Income",
"playerinfo.summary.dead": "{0} was destroyed by {1} on turn {2}.",
"playerinfo.summary.reasons": "They think you are {0}.",
"playerinfo.summary.ruledby": "The {0} tribe is ruled by {1}.",
"playerinfo.title": "Tribe Info",
"playerinfo.triberelations.popup.neutral.description": "{0} has a neutral relation to {1}",
"playerinfo.triberelations.popup.peaceneutral.description": "{0} has a peace treaty with {1}",
"playerinfo.triberelations.popup.peacepeace.description": "You are both at peace with {1}",
"playerinfo.triberelations.popup.peacewar.description": "{0} has a peace treaty with your enemy {1}",
"playerinfo.triberelations.popup.title": "Tribe Relation",
"playerinfo.triberelations.popup.warneutral.description": "{0} is at war with {1}",
"playerinfo.triberelations.popup.warpeace.description": "{0} is at war with your ally {1}",
"playerinfo.triberelations.popup.warwar.description": "You are both at war with {1}",
"playerinfo.triberelations.title": "Tribe Relations:",
"playerinfo.triberelations.unknown": "You have not met this tribe yet.",
"playerinfopopup.bot.description": "This is a bot. Bzzt!",
"playerinfopopup.friend": "friend",
"playerinfopopup.passandplay.description": "A pass and play player. Epic!",
"playerinfopopup.you.description": "This is you. Go you!",
"playerpickerview.addplayer": "ADD PLAYER",
"playerpickerview.bot": "{0} ({1} bot)",
"playerpickerview.human": "No human player",
"playerpickerview.human.info": "There needs to be at least one human player to start a game",
"playerpickerview.maptype": "Map type: {0}",
"playerpickerview.mode": "Game mode: {0}",
"playerpickerview.name": "Game Name",
"playerpickerview.players": "Players ({0}/{1})",
"playerpickerview.size": "Map size: {0} tiles",
"playerpickerview.startgame": "START GAME",
"playerpickerview.title": "PICK PLAYERS",
"playerpickerview.you": "{0} (you)",
"polyplayer.task": "task",
"polyplayer.task.explorer.description": "Explore every single tile in this square world",
"polyplayer.task.explorer.title": "Explorer",
"polyplayer.task.genius.description": "Discover all available technologies",
"polyplayer.task.genius.title": "Genius",
"polyplayer.task.killer.description": "Kill 10 enemies in battle",
"polyplayer.task.killer.title": "Killer",
"polyplayer.task.metropolis.description": "Create a level 5 city",
"polyplayer.task.metropolis.title": "Metropolis",
"polyplayer.task.network.description": "Connect 5 cities to your capital",
"polyplayer.task.network.title": "Network",
"polyplayer.task.pacifist.description": "Make no attacks for 5 turns",
"polyplayer.task.pacifist.title": "Pacifist",
"polyplayer.task.wealth.description": "Gather 100 stars",
"polyplayer.task.wealth.title": "Wealth",
"price.points": "point",
"price.points.plural": "points",
"price.population": "population",
"price.population.plural": "population",
"price.stars": "star",
"price.stars.plural": "stars",
"purchasing.error.androidinitializationfailed": "Unable to connect to the Google Play Billing service. This might mean that your Google account is missing or incorrectly set up.",
"purchasing.error.duplicatetransaction": "A duplicate transaction error when the transaction has already been completed successfully.",
"purchasing.error.existingpurchasepending": "A purchase was already in progress when a new purchase was requested.",
"purchasing.error.initializationfailed": "Purchasing failed to initialise",
"purchasing.error.paymentdeclined": "There was a problem with the payment.",
"purchasing.error.productunavailable": "The product is not available to purchase on the store.",
"purchasing.error.purchasingunavailable": "The system purchasing feature is unavailable.",
"purchasing.error.signatureinvalid": "Signature validation of the purchase's receipt failed.",
"purchasing.error.title": "Purchasing Error",
"purchasing.error.unknown": "Something unknown went wrong with the purchase. Please try again later.",
"purchasing.error.usercancelled": "The user opted to cancel rather than proceed with the purchase.",
"purchasing.restore.error.message": "Something went wrong while trying to restore your purchases. Please try again later.",
"purchasing.restore.error.title": "Restore Purchases Failed",
"push.ended": "{0} has ended, check to see who won!",
"push.invited": "You are invited to a new game, {0}",
"push.kicked": "You have been removed from {0}",
"push.picktribe": "It is your turn to pick tribe in {0}",
"push.playerkicked": "Player {0} has been kicked from {1}.",
"push.playerresigned": "Player {0} has resigned from {1}.",
"push.randommatchready": "Random match {0} is ready to go!",
"push.readytostart": "{0} is ready to start on your command",
"push.reminder": "We are waiting for you to play in {0}. Come on!!",
"push.skipped": "Your turn in {0} was skipped since you timed out.",
"push.yourturn": "It is your turn in {0} (turn {1})",
"replay.clipboard": "Replay link added to clipboard",
"replay.clipboard.title": "Voilà!",
"replay.ended": "Ended {0}",
"replay.ongoing": "Ongoing",
"replay.tech.new.message": "{0} discovered the secret of {1}",
"replay.turnlabel": "Turn {0}",
"replay.viewmode.auto": "Auto",
"replay.viewmode.header": "Pick Point of View",
"replay.winner": "Won by: {0}",
"resource.names.crop": "crop",
"resource.names.fish": "fish",
"resource.names.fruit": "fruit",
"resource.names.game": "wild animal",
"resource.names.metal": "metal",
"resource.names.spores": "Spores",
"resource.names.whale": "whale",
"settings.ambience": "Ambience",
"settings.antialias": "Anti-aliasing",
"settings.compactui": "Compact UI",
"settings.confirm": "Confirm turn",
"settings.fullscreen": "Fullscreen",
"settings.hideadvanced": "Hide Advanced Settings",
"settings.info": "Info on Build",
"settings.language": "Language",
"settings.language.load.button": "LOAD",
"settings.language.load.error.info": "The loaded file does not have a valid JSON Format and can't be parsed.",
"settings.language.load.error.title": "Error loading file",
"settings.language.load.info": "Load a Polytopia language file from a remote server using https. This is an experimental feature, not for the faint hearted.",
"settings.language.load.input": "Language file url:",
"settings.language.load.title": "Custom language (BETA)",
"settings.off": "OFF",
"settings.on": "ON",
"settings.saveexit": "EXIT TO MENU",
"settings.scale": "UI Scale",
"settings.scale.auto": "Auto",
"settings.scale.large": "Large",
"settings.scale.medium": "Medium",
"settings.scale.small": "Small",
"settings.scale.verylarge": "Very Large",
"settings.showadvanced": "Advanced Settings",
"settings.soundeffects": "Sound Effects",
"settings.suggestions": "Suggestions",
"settings.title": "SETTINGS",
"settings.tribemusic": "Tribe Music",
"settings.volume": "Audio volume {0}",
"splashscreen.switch.12tribes": "12 unique Tribes",
"splashscreen.switch.again": "Play again!",
"splashscreen.switch.challenging": "Challenging AI",
"splashscreen.switch.full": "The full version of the game includes:",
"splashscreen.switch.gamemodes": "More game modes",
"splashscreen.switch.thankyou": "Thank you for playing!",
"splashscreen.switch.upgrade": "Upgrade",
"startmenu.about": "About",
"startmenu.high_score": "High Score",
"startmenu.multiplayer": "MULTIPLAYER",
"startmenu.new_game": "NEW GAME",
"startmenu.quit": "QUIT",
"startmenu.resume_game": "RESUME GAME",
"startmenu.settings": "Settings",
"startmenu.throne_room": "Throne Room",
"stringtools.typelist.and": "and",
"task.info": "{0} to get {1}",
"technology.ability": "ability",
"technology.ability.info": "{1} gives you the ability to {1}",
"technology.build": "{0} makes it possible to build {1}",
"technology.defence": "Defense Bonus",
"technology.defence.info": "gives your unit extra strength when defending in {0}",
"technology.intro": "This tech will enable the following:",
"technology.movement": "Movement",
"technology.movement.info": "enables movement in {0}",
"technology.names.aquatism": "Aquatism",
"technology.names.archery": "Archery",
"technology.names.basic": "basic",
"technology.names.chivalry": "Chivalry",
"technology.names.climbing": "Climbing",
"technology.names.construction": "Construction",
"technology.names.diplomacy": "Diplomacy",
"technology.names.farming": "Farming",
"technology.names.fishing": "Fishing",
"technology.names.forestmagic": "Forest Magic",
"technology.names.forestry": "Forestry",
"technology.names.freediving": "Free Diving",
"technology.names.freespirit": "Free Spirit",
"technology.names.frostwork": "Frostwork",
"technology.names.hunting": "Hunting",
"technology.names.hydrology": "Hydrology",
"technology.names.mathematics": "Mathematics",
"technology.names.meditation": "Meditation",
"technology.names.mining": "Mining",
"technology.names.navigation": "Navigation",
"technology.names.oceanology": "Oceanology",
"technology.names.organization": "Organization",
"technology.names.philosophy": "Philosophy",
"technology.names.polarism": "Polarism",
"technology.names.polarwarfare": "Polar Warfare",
"technology.names.recycling": "Recycling",
"technology.names.riding": "Riding",
"technology.names.riding2": "Riding",
"technology.names.roads": "Roads",
"technology.names.sailing": "Sailing",
"technology.names.shields": "Strategy",
"technology.names.shock": "Shock Tactics",
"technology.names.smithery": "Smithery",
"technology.names.spearing": "Spearing",
"technology.names.spiritualism": "Spiritualism",
"technology.names.trade": "Trade",
"technology.names.watermagic": "Water Magic",
"technology.names.whaling": "Whaling",
"technology.requirements": "You need to research {0} to enable this action.",
"technology.task": "{0} activates the {1} task",
"techview.completed": "(completed)",
"techview.completed.info": "You have already researched this technology.",
"techview.expensive.info": "You don't have enough stars to buy this. Tap 'next turn' to get more stars.",
"techview.info": "Tech costs increase for each city in your empire.",
"techview.info.literacy": "Literacy reduces the price of all technologies by {0}%!",
"techview.locked": "(locked)",
"techview.locked.info": "You must research {0} before you can learn {1}.",
"techview.research": "RESEARCH",
"terrain.field": "Field",
"terrain.forest": "Forest",
"terrain.ice": "Ice",
"terrain.mountain": "Mountain",
"terrain.ocean": "Ocean",
"terrain.unknown": "Unknown lands",
"terrain.water": "Water",
"throne.alias": "Alias",
"throne.clipboard": "Player ID added to clipboard",
"throne.clipboard.title": "Voilà!",
"throne.google.achievements": "ACHIEVEMENTS",
"throne.google.in": "SIGN IN",
"throne.google.info": "(!)You need to sign in with Google Play to save your game data and high scores.",
"throne.google.out": "SIGN OUT",
"throne.google.signedin": "You are signed in using Google Play",
"throne.played": "Games Played",
"throne.playerid": "Player ID",
"throne.playerinfo": "Player Info",
"throne.reset": "Reset Scores",
"throne.reset.complete": "Scores are now reset",
"throne.resetwarning": "Are you sure you want to reset all your saved scores and ratings? This can not be undone.",
"throne.resetwarning.title": "Reset Scores",
"throne.title": "THRONE ROOM",
"throne.toprating": "Top Rating",
"throne.topscore": "Top Score",
"tooltip.ability.agent": "This unit can be built in enemy territory",
"tooltip.ability.autofreeze": "This unit freezes any surrounding tiles and units when moving.",
"tooltip.ability.boost": "Give surrounding friendly units a temporary boost in attack and speed.",
"tooltip.ability.capitalvision": "Reveals the capital of all tribes you encounter.",