forked from mil1dude/source-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen_PT.lang
More file actions
1929 lines (1922 loc) · 88.1 KB
/
en_PT.lang
File metadata and controls
1929 lines (1922 loc) · 88.1 KB
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
achievement.acquireIron=Upgradin' ye hardware
achievement.acquireIron.desc=Smelt yerself an iron ingot
achievement.bakeCake=Pirates Don' Get Portal References
achievement.bakeCake.desc=Wheat, sugar, milk and eggs! That's how I lost me teeth
achievement.blazeRod=Blazing Demons!
achievement.blazeRod.desc=Plunder treasure from the monsters of fire
achievement.bookcase=Book Keeper
achievement.bookcase.desc=Gather yer books and build up yer wizard's workbench
achievement.breedCow=Beefy Birth
achievement.breedCow.desc=Feed ye cows wheat and make ye a bay cow
achievement.buildBetterPickaxe=Yer needin' a new pick
achievement.buildBetterPickaxe.desc=Build yerself a pickaxe 'o' stone
achievement.buildFurnace=Build yerself an oven
achievement.buildFurnace.desc=Build yerself an oven wit' eight pieces o' pebbles
achievement.buildHoe=Farmin' time!
achievement.buildHoe.desc=Make yerself a hoe wit' timber an' twigs
achievement.buildPickaxe=Spelunkin' Time!
achievement.buildPickaxe.desc=Make yerself a pickaxe with timb'r an' twigs
achievement.buildSword=Attack the scoundrels!
achievement.buildSword.desc=Use yer timber and twigs to fashion yourself a cutlass
achievement.buildWorkBench=Make yerself a Craftin' Table
achievement.buildWorkBench.desc=Make yerself a workbench wit' four blocks o' timber
achievement.cookFish=Crummy Chum
achievement.cookFish.desc=Catcha critter on yer hook and put it on the burner!
achievement.diamonds=TREASURE!
achievement.diamonds.desc=Plunder Treasure from the depths
achievement.diamondsToYou=Shinies fer ye!
achievement.diamondsToYou.desc=Cast thy jewels t'a scurvy dog.
achievement.enchantments=Spell Caster
achievement.enchantments.desc=Use the ancients' know-how t'build a wizard's workbench
achievement.exploreAllBiomes=Seafarer's Quest
achievement.exploreAllBiomes.desc=Sail to all tha' lands
achievement.flyPig=Flyin' Porkchop!
achievement.flyPig.desc=Ride yer piggy into them depths
achievement.fullBeacon=Beam o' the Lords
achievement.fullBeacon.desc=Make ye a super- pow'rful magic beacon
achievement.get=Loot plundered!
achievement.ghast=Take a ship down with 'er own cannons!
achievement.ghast.desc=Give 'er a taste of it's own medicine
achievement.killCow=Bovine Bullyin'
achievement.killCow.desc=Gather some bull's skin
achievement.killEnemy=Scurvy Dog Slaughter
achievement.killEnemy.desc=Plunder and Pillage a scurvy hound
achievement.killWither=the Start o' th' game.
achievement.killWither.desc=Slay the skull shooter
achievement.makeBread=Bake some Hard Tack
achievement.makeBread.desc=Turn wheat ta Hard Tack
achievement.mineWood=tree chopper
achievement.mineWood.desc=Hit a tree w' yer fist till timber falls
achievement.onARail=Travel like them land lubbers
achievement.onARail.desc=Cart yer way a mile's worth from yer point o' home
achievement.openInventory=Checkin' Loot
achievement.openInventory.desc=Hit '%1$s' ta look at yer loot.
achievement.overkill=Slaughterhouse
achievement.overkill.desc=Plundr' nine hearts 'n one shank
achievement.overpowered=Overrrpowered
achievement.overpowered.desc=Craft yer'self a Notch apple
achievement.portal=To them Lockers!
achievement.portal.desc=Open a hole into the place o' demons
achievement.potion=Bartender
achievement.potion.desc=Brew yerself a potion
achievement.requires=Ya need '%1$s'
achievement.snipeSkeleton=Musket Shot
achievement.snipeSkeleton.desc=Fire a bolt at a scurvy corpse from the crow's nest
achievement.spawnWither=The Start o' th' game?
achievement.spawnWither.desc=Make ye the skull shooter
achievement.taken=Plundered!
achievement.theEnd=At World's End?
achievement.theEnd.desc=Find Davy Jones' Lock'r
achievement.theEnd2=Davy Jones' Locker.
achievement.theEnd2.desc=Kill the Flyin' Dutchman
addServer.add=Finished
addServer.enterIp=Coordinates
addServer.enterName=Port name
addServer.hideAddress=Hide ya sea
addServer.resourcePack=Crew Resource Barrel
addServer.resourcePack.disabled=Unable
addServer.resourcePack.enabled=Able
addServer.resourcePack.prompt=Can
addServer.title=Describe this Crew
advMode.allEntities=Use "@e" to target all entities
advMode.allPlayers=Use "@a" to target all yer shipmates
advMode.command=Order to the Crew
advMode.nearestPlayer=Use "@p" to target nearby shipmate
advMode.notAllowed=Must be an op'd captain in creative mode
advMode.notEnabled=Captain's blocks arr not permitted 'ere!
advMode.previousOutput=Last tale
advMode.randomPlayer=Use "@r" to target a shipmate out of the blue
advMode.setCommand=Set Crew Command for Block
advMode.setCommand.success=Command set: %s
attribute.modifier.plus.0=+%s %s
attribute.modifier.plus.1=+%s%% %s
attribute.modifier.plus.2=+%s%% %s
attribute.modifier.take.0=-%s %s
attribute.modifier.take.1=-%s%% %s
attribute.modifier.take.2=-%s%% %s
attribute.name.generic.attackDamage=Attack Damage
attribute.name.generic.followRange=Mob Follow Range
attribute.name.generic.knockbackResistance=Knockback Resistance
attribute.name.generic.maxHealth=Max Health
attribute.name.generic.movementSpeed=Speed
attribute.name.horse.jumpStrength=Brumby Jump Strength
attribute.name.zombie.spawnReinforcements=Zombie Reinforcements
book.byAuthor=by %1$s
book.editTitle=Name yer scrawl:
book.finalizeButton=Stamp n' seal
book.finalizeWarning=ARRGH! When ye sign this here log, you will no longrr be able to change it!
book.generation.0=Real booty
book.generation.1=Copy o' booty
book.generation.2=Copy o' copy
book.generation.3=Tattered
book.pageIndicator=Page %1$s of %2$s
book.signButton=Sign
build.tooHigh=Height limit fer buildin' be %s blocks
chat.cannotSend=Cannot send chat message
chat.copy=Write down yer map
chat.link.confirm=Ye be certain to examine yer matey's map?
chat.link.confirmTrusted=Do you want to open this Ship or copy it to your map?
chat.link.open=Open another Ship
chat.link.warning=Don't examine ye map from a suspicious matey!
chat.stream.emote=(%s) * %s %s
chat.stream.text=(%s) <%s> %s
chat.type.achievement=%s has earned a Treasure %s
chat.type.achievement.taken=%s has lost his %s trophy
chat.type.admin=[%s: %s]
chat.type.announcement=[%s] %s
chat.type.emote=* %s %s
chat.type.text=<%s> %s
commands.achievement.alreadyHave=Landlubber %s already has the %s trophy
commands.achievement.dontHave=Landlubber %s doesn't have the %s trophy
commands.achievement.give.success.all=Enter'd %s on ev'ry page o' the ship's manifest
commands.achievement.give.success.one=Enter'd %s under "%s" in ship's manifest
commands.achievement.statTooLow=Shipmate %s doesn't have the ship's manifest %s
commands.achievement.take.success.all=Ye' successfully stole all trophies from %s
commands.achievement.take.success.one=Ye' successfully stole the stat %s from %s
commands.achievement.unknownAchievement=Can't find "%s" in ship's manifest
commands.ban.failed=Could nae banish pirate %s
commands.ban.success=Sent %s to Davy Jones's locker
commands.ban.usage=/ban <name> [reason ...]
commands.banip.invalid=No such crew be located at these coordinates
commands.banip.success=Sunk the ship at coordinates %s
commands.banip.success.players=Banned IP address %s belonging to %s
commands.banip.usage=/ban-ip <address|name> [reason ...]
commands.banlist.ips=There are %s total banned IP addresses:
commands.banlist.players=There are %s sailors sent to Davy Jones's locker:
commands.banlist.usage=/banlist [ips|pirates]
commands.blockdata.failed=The data tag did not change: %s
commands.blockdata.notValid=The target block is not a data holder block
commands.blockdata.outOfWorld=Ye can't place ye block here
commands.blockdata.success=Block data updated to: %s
commands.blockdata.tagError=Data tag parsing failed: %s
commands.blockdata.usage=/blockdata <x> <y> <z> <dataTag>
commands.chunkinfo.compiled=This here chunk is compiled.
commands.chunkinfo.data=Chief 64 points o' cube are: %s
commands.chunkinfo.empty=This here chunk is empty.
commands.chunkinfo.hasLayers=This here chunk has layers: %s
commands.chunkinfo.hasNoRenderableLayers=This here chunk lacks renderable layers.
commands.chunkinfo.isEmpty=This here chunk has empty layers: %s
commands.chunkinfo.notCompiled=This here chunk ain't compiled.
commands.chunkinfo.notEmpty=This here chunk is not empty.
commands.clear.failure=Could not steal the treasure chest from %s, no booty taken
commands.clear.success=Plundered yer booty o' %s, takin' %s treasures
commands.clear.tagError=Learn to write JSON: %s
commands.clear.testing=%s has %s items that match the criteria
commands.clear.usage=/clear [player] [item] [data] [maxCount] [dataTag]
commands.clone.failed=No blocks cloned
commands.clone.noOverlap=Yer' route don't make sense, they overlap
commands.clone.outOfWorld=Ye' can't do anything outside there
commands.clone.success=%s blocks cloned
commands.clone.tooManyBlocks=Too many blocks in the specified area (%s > %s)
commands.clone.usage=/clone <x1> <y1> <z1> <x2> <y2> <z2> <x> <y> <z> [mode]
commands.compare.failed=Source and destination are not identical
commands.compare.outOfWorld=Ye' can't do anything outside there
commands.compare.success=%s blocks compared
commands.compare.tooManyBlocks=Too many blocks in the specified area (%s > %s)
commands.compare.usage=/testforblocks <x1> <y1> <z1> <x2> <y2> <z2> <x> <y> <z> [mode]
commands.debug.notStarted=Can't stop searchin' when we haven't started!
commands.debug.start=Started checkin' the ship
commands.debug.stop=Can't stop checkin' 'er this fast, matey! (%s seconds, %s ticks)
commands.defaultgamemode.success=Yar journey tis' now %s
commands.defaultgamemode.usage=/defaultgamemode <mode>
commands.deop.failed=Could not %s off the plank
commands.deop.success=De-opped %s
commands.deop.usage=/deop <player>
commands.difficulty.success=Set choppiness o' the sea to %s
commands.difficulty.usage=/difficulty <level 'o dangerrrrous>
commands.downfall.success=Changed winds
commands.downfall.usage=/toggledownfall
commands.effect.failure.notActive=Failed to retrieve %1$s from %2$s for they do not have the magic
commands.effect.failure.notActive.all=Couldn't take any effects from %s as they do not have any
commands.effect.notFound=There be no monster with the magic of %s
commands.effect.success=Rewarded %1$s (ID %2$s) *%3$s to %4$s fer %5$s seconds
commands.effect.success.removed=Retrieved %1$s from %2$s
commands.effect.success.removed.all=Took all effects from %s
commands.effect.usage=/effect <player> <effect> [seconds] [amplifier] [hideParticles]
commands.enchant.cantCombine=%1$s can't be combined with %2$s
commands.enchant.cantEnchant=The selected enchantment can't be added to the target item
commands.enchant.noItem=That pirate has no booty
commands.enchant.notFound=%s Magic ID doesn't exist
commands.enchant.success=Enchanting accomplished, nice
commands.enchant.usage=/enchant <pirate> <magic ID> [level]
commands.entitydata.failed=The data tag did not change: %s
commands.entitydata.noPlayers=%s is a player and cannot be changed
commands.entitydata.success=Entity data updated to: %s
commands.entitydata.tagError=Learn to write JSON: %s
commands.entitydata.usage=/entitydata <entity> <dataTag>
commands.fill.failed=No blocks filled
commands.fill.outOfWorld=Ye' can't place a block here
commands.fill.success=%s blocks filled
commands.fill.tagError=Data tag parsing failed: %s
commands.fill.tooManyBlocks=Too many blocks in the specified area (%s > %s)
commands.fill.usage=/fill <x1> <y1> <z1> <x2> <y2> <z2> <TileName> [dataValue] [oldBlockHandling] [dataTag]
commands.gamemode.success.other=Set %s's game mode to %s
commands.gamemode.success.self=Set own game mode to %s
commands.gamemode.usage=/gamemode <mode> [sailor]
commands.gamerule.nopermission=Only ship captains can switch '%s'
commands.gamerule.norule=There ain't no ship rule called '%s', matey!
commands.gamerule.success=Ship's rules hav' been changed
commands.generic.boolean.invalid='%s' be not true or false
commands.generic.double.tooBig=The numberrr you have enterrred (%s) is too big, it must be at most %s
commands.generic.double.tooSmall=The numberrr you have enterrred (%s) is too small, it must be at least %s
commands.generic.entity.notFound=That landlubber can't be found
commands.generic.exception=Yer crew made a mistake while trying to execute yer order
commands.generic.notFound=No replies o' order. give a go' /help fer a list 'o orders
commands.generic.num.invalid='%s' is not a valid number
commands.generic.num.tooBig=The number you have scribed (%s) be too big, it must be at most %s
commands.generic.num.tooSmall=The number you have scribed (%s) be too small, it must be at least %s
commands.generic.parameter.invalid='%s' don't make sense, boy
commands.generic.permission=Ye can't yell out the order, it fo' d' captain
commands.generic.player.notFound=That matey is nowhere on the ship
commands.generic.syntax=Ye made a mistake giving yer order
commands.generic.usage=Usin': %s
commands.give.notFound=There is no such item with ID %s
commands.give.success=Shipped %s x %s to %s
commands.give.tagError=Learn to write JSON: %s
commands.give.usage=/give <player> <item> [amount] [data] [dataTag]
commands.help.footer=Tip: Use the <tab> key while typing a command to auto-complete the command or its arguments
commands.help.header=--- Showing help page %s of %s (/help <page>) ---
commands.help.usage=/help [page|command name]
commands.kick.success=Made %s walk the plank
commands.kick.success.reason=Made %s walk the plank for: '%s'
commands.kick.usage=/kick <player> [reason ...]
commands.kill.successful=%s slayed
commands.kill.usage=/kill [player|entity]
commands.me.usage=/me <action ...>
commands.message.display.incoming=%s's Letter in Bottle is Recovered and reads to you: %s
commands.message.display.outgoing=You Write Letter Put on Bottle to %s: %s
commands.message.sameTarget=You can't deliver yer own bottle to yerself
commands.message.usage=/tell <pirate> <letter ...>
commands.op.failed=Aye could not treasure %s
commands.op.success=Opped %s
commands.op.usage=/op <player>
commands.particle.notFound=Unknown effect name (%s)
commands.particle.success=Playin' effect %s for %s times
commands.particle.usage=/particle <name> <x> <y> <z> <xd> <yd> <zd> <speed> [count] [mode]
commands.players.list=There are %s/%s players online:
commands.players.usage=/list
commands.playsound.playerTooFar=Player %s is ou' o' shou'ing distance, he can't 'ear!
commands.playsound.success=Shouted '%s' to '%s'
commands.playsound.usage=/playsound <sound> <player> [x] [y] [z] [maximumVolume] [pitch] [minimumVolume]
commands.publish.failed=Yar' voyage be delayed
commands.publish.started=Local battle hosted on port %s
commands.publish.usage=/publish
commands.save-off.alreadyOff=Savin' be already turned off.
commands.save-off.usage=/save-off
commands.save-on.alreadyOn=Savin' be already turned on.
commands.save-on.usage=/save-on
commands.save.disabled=Yer seas won't save automatically
commands.save.enabled=Yer seas will save automatically
commands.save.failed=Yer map failed at buryin %s
commands.save.start=Copying map to a safe place...
commands.save.success=Saved yer seas
commands.save.usage=/save-all
commands.say.usage=/say <message ...>
commands.scoreboard.allMatchesFailed=All matches failed
commands.scoreboard.noMultiWildcard=Only one user wildcard allowed
commands.scoreboard.objectiveNotFound=Nay task be call'd %s!
commands.scoreboard.objectiveReadOnly=Ye objective '%s' is only readable and cannot be changed by any pirate
commands.scoreboard.objectives.add.alreadyExists=Ye objective with ye name '%s' already exists
commands.scoreboard.objectives.add.displayTooLong=Ye display name '%s' nay fit on me here scroll, amend to be %s characters long or less
commands.scoreboard.objectives.add.success=Added ye new objective '%s' successfully
commands.scoreboard.objectives.add.tooLong=Ye' task, %s, nay fit on me here scroll, amend to be %s characters long or less
commands.scoreboard.objectives.add.usage=/scoreboard objectives add <tag> <criteriatype> [show tag ...]
commands.scoreboard.objectives.add.wrongType='%s' part o' ya order ain't normal type
commands.scoreboard.objectives.list.count=%s tasks be showin' on the scoreboard:
commands.scoreboard.objectives.list.empty=There are no scrolls on ye scrollin' board
commands.scoreboard.objectives.list.entry=- %s: displays as '%s' and is ye type '%s'
commands.scoreboard.objectives.remove.success=Ye task, %s, has been disregarded
commands.scoreboard.objectives.remove.usage=/scoreboard objectives remove <tag>
commands.scoreboard.objectives.setdisplay.invalidSlot=No such displayin' slot '%s'
commands.scoreboard.objectives.setdisplay.successCleared=Threw away objective display slot '%s'
commands.scoreboard.objectives.setdisplay.successSet=Set ye display objective in ye slot '%s' to '%s'
commands.scoreboard.objectives.setdisplay.usage=/scoreboard objectives setdisplay <spot> [goals]
commands.scoreboard.objectives.usage=/scoreboard objectives <list|addremove|addremove|setdisplay> ...
commands.scoreboard.players.add.usage=/scoreboard players add <player> <objective> <count> [dataTag]
commands.scoreboard.players.enable.noTrigger=Objective %s be not a trigger
commands.scoreboard.players.enable.success=Enabled trigger %s for %s
commands.scoreboard.players.enable.usage=/scoreboard players enable <player> <trigger>
commands.scoreboard.players.list.count=%s tracked pirates be showin' on the scoreboard:
commands.scoreboard.players.list.empty=There are no tracked players on ye scorin' device
commands.scoreboard.players.list.player.count=%s tracked tasks be showin' fer %s:
commands.scoreboard.players.list.player.empty=pirate %s hath no booty
commands.scoreboard.players.list.usage=/scoreboard players list [name]
commands.scoreboard.players.operation.invalidOperation=%s is Inval'd!
commands.scoreboard.players.operation.notFound=There be no %s score for %s
commands.scoreboard.players.remove.usage=/scoreboard players remove <player> <objective> <count> [dataTag]
commands.scoreboard.players.reset.success=Reset all ye scores of ye player %s
commands.scoreboard.players.reset.usage=/scoreboard players reset <player> [objective]
commands.scoreboard.players.resetscore.success=Reset score %s of player %s
commands.scoreboard.players.set.success=Set ye score of %s for ye player %s to ye %s
commands.scoreboard.players.set.tagError=Could not parse dataTag, reason: %s
commands.scoreboard.players.set.tagMismatch=The dataTag does not match for %s
commands.scoreboard.players.set.usage=/scoreboard players set <player> <objective> <score> [dataTag]
commands.scoreboard.players.test.notFound=There be no %s score for %s
commands.scoreboard.players.usage=/scoreboard players <set|addremovereset|addremovereset|addremovereset|list|enable|test|operation> ...
commands.scoreboard.teamNotFound=Nay crew be call'd %s!
commands.scoreboard.teams.add.alreadyExists=Yar crew havin' called '%s' already be sailin'
commands.scoreboard.teams.add.displayTooLong=Ye crew name '%s' be too long to remember, make it %s or less
commands.scoreboard.teams.add.success=Recruited new crew '%s'
commands.scoreboard.teams.add.tooLong=Ye crew name '%s' be too hard to remember, make it %s in length
commands.scoreboard.teams.add.usage=/scoreboard teams add <tag> [show tag ...]
commands.scoreboard.teams.empty.alreadyEmpty=Crew %s has already been sent to Davey Jones, cannot resend
commands.scoreboard.teams.empty.success=Removed all %s pirate(s) from crew %s
commands.scoreboard.teams.join.failure= %s pirate(s) were not qualified to be recruited to %s: %s
commands.scoreboard.teams.join.success=Recruited %s pirate(s) to the crew %s: %s
commands.scoreboard.teams.join.usage=/scoreboard teams join <team> [pirate]
commands.scoreboard.teams.leave.failure=Could not make %s walk the plank from %s
commands.scoreboard.teams.leave.noTeam=Your crew is missing
commands.scoreboard.teams.leave.success=Made %s walk the plank from %s
commands.scoreboard.teams.leave.usage=/scoreboard teams leave [pirate]
commands.scoreboard.teams.list.count=%s crews be showin' on the scoreboard:
commands.scoreboard.teams.list.empty=No crews on ther skerbord
commands.scoreboard.teams.list.entry=-%1$s: '%2$s' had %3$s crew members
commands.scoreboard.teams.list.player.count=%s pirates be showin' in crew %s:
commands.scoreboard.teams.list.player.empty=Vessel %s be havin' no Pirates
commands.scoreboard.teams.list.player.entry=- %2$s: %1$s (%3$s)
commands.scoreboard.teams.list.usage=/scoreboard teams list [tag]
commands.scoreboard.teams.option.noValue=Treasure prices for record %s be: %s
commands.scoreboard.teams.option.success=Set record %s for crew %s to %s
commands.scoreboard.teams.option.usage=/scoreboard teams option <team> <friendlyfire|color|seeFriendlyInvisibles|nametagVisibility|deathMessageVisibility> <value>
commands.scoreboard.teams.remove.success=Kicked out that team ass %s
commands.scoreboard.teams.remove.usage=/scoreboard teams remove <crew>
commands.scoreboard.usage=/scoreboard <objectives|players|teams> ...
commands.seed.success=Seed: %s
commands.seed.usage=/seed
commands.setblock.failed=Yo ho, yo ho, couldn't place that block.
commands.setblock.noChange=Ye block 'nt be plac'd
commands.setblock.notFound=There is no such treasure with ID/name %s
commands.setblock.outOfWorld=Ye can't place ye block here!
commands.setblock.success=Ye block is placed
commands.setblock.tagError=Jearn to write JSON: %s
commands.setblock.usage=/setblock <x> <y> <z> <TileName> [dataValue] [oldBlockHandling] [dataTag]
commands.setidletimeout.success=Crew what shirks work fer %s minutes'll be sent t' Davy Jone's locker!
commands.setidletimeout.usage=/setidletimeout <Minutes until walking the plank>
commands.setworldspawn.success=Yer ship is at (%s, %s, %s) naw!
commands.spawnpoint.success=Set %s's Port to (%s, %s, %s)
commands.spreadplayers.failure.players=Could not spread %s players around %s,%s (too many players fer space - give a go' usin' spread 'o at most %s)
commands.spreadplayers.failure.teams=Could not spread %s teams around %s,%s (too many players fer space - give a go' usin' spread 'o at most %s)
commands.spreadplayers.info.players=(Average distance between players be %s blocks apart after %s iterations)
commands.spreadplayers.info.teams=(Average distance between teams be %s blocks apart after %s iterations)
commands.spreadplayers.spreading.players=Spreadin' %s players %s blocks around %s,%s (min %s blocks apart)
commands.spreadplayers.spreading.teams=Spreadin' %s teams %s blocks around %s,%s (min %s blocks apart)
commands.spreadplayers.success.players=Successfully spread %s players around %s,%s
commands.spreadplayers.success.teams=Successfully spread %s teams around %s,%s
commands.spreadplayers.usage=/spreadplayers <x> <z> <spreadDistance> <maxRange> <respectTeams true|false> <player ...>
commands.stats.cleared=Took all experience from %s
commands.stats.failed=Yer Parameters arrrrnt right
commands.stats.success=Storing %s stats in %s on %s
commands.stop.start=Docking ship at port
commands.stop.usage=/stop
commands.summon.failed=Yar object cant be whirpool'd
commands.summon.outOfWorld=Can't make a creature in unchar'ed wa'ers!
commands.summon.success=Creature summoned
commands.summon.tagError=Jearn to write JSON: %s
commands.summon.usage=/summon <Creature> [x] [y] [z] [JSON-NBTtags]
commands.tellraw.jsonException=Invalid json: %s
commands.tellraw.usage=/tellraw <player> <raw json message>
commands.testfor.success=Sighted %s
commands.testforblock.failed.data=Ye blawck at %s %s %s had the date value of %s (expected: %s).
commands.testforblock.failed.nbt=Ye blawck at %s,%s,%s did not have de needed on NBT keys.
commands.testforblock.failed.tile=the X on ye map at %s,%s,%s is %s (was hope'd for %s).
commands.testforblock.failed.tileEntity=the X on ye map at %s,%s,%s is a mystic material and ain't able to carry learnin' t' info.
commands.testforblock.outOfWorld=Ye can't peep at blocks o'er the edge o' the world!
commands.testforblock.success=Found yer block at %s %s and %s.
commands.testforblock.usage=/testforblock <x> <y> <z> <TileName> [dataValue] [dataTag]
commands.time.added=Added %s to the time
commands.time.query=Ye' clock says %s
commands.time.set=Set the time to %s
commands.time.usage=/time <set|add|query> <value>
commands.title.success=Title command successfully reached its destination
commands.title.usage=/title <player> <title|subtitle|clearreset|clearreset|times> ...
commands.title.usage.clear=/title <player> clear|reset
commands.title.usage.times=/title <player> times <fadeIn> <stay> <fadeOut>
commands.title.usage.title=/title <player> title|subtitle <rawjson rawjson title>
commands.tp.notSameDimension=Unabe to teleport because the other pirate is in another dimension! (or maybe dead...)
commands.tp.success=Sailed %s to %s
commands.tp.success.coordinates=Wizard %s to %s,%s,%s
commands.tp.usage=/tp [target player] <destination player> OR /tp [target player] <x> <y> <z> [<y-rot> <x-rot>]
commands.trigger.disabled=Trigger %s be not enabled
commands.trigger.invalidPlayer=Only real men can use the /trigger command
commands.unban.failed=Could nae summon pirate %s
commands.unban.success=brought %s back from Davy Jones's locker
commands.unban.usage=/pardon <name>
commands.unbanip.invalid=Invalid coordinates
commands.unbanip.success=Unbanned IP address %s
commands.unbanip.usage=/pardon-ip <address>
commands.weather.clear=Changin' to nice clear water
commands.weather.rain=Changin' to rainy ocean
commands.weather.thunder=Changin' to dark stormy seas
commands.weather.usage=/weather <clear|rain|thunder> [duration in seconds]
commands.whitelist.add.failed=Could not push %s off the plank
commands.whitelist.add.success=Pirate %s is now allowed to pass the sea
commands.whitelist.add.usage=/whitelist add <player>
commands.whitelist.disabled=Turned off the whitelist
commands.whitelist.enabled=Yer oceans be private
commands.whitelist.list=There be %s (out of %s seen) whitelisted hearties:
commands.whitelist.reloaded=Reloaded yer crew-list
commands.whitelist.remove.failed=Could not scrub %s off the ship.
commands.whitelist.remove.success=Kicked %s from the crew's cabin
commands.whitelist.remove.usage=/whitelist remove <player>
commands.whitelist.usage=/whitelist <on|off|list|add|remove|reload>
commands.worldborder.warning.distance.success=Set world border warnin' to %s blocks away (from %s blocks)
commands.worldborder.warning.distance.usage=/worldborder warning distance <blocks>
commands.worldborder.warning.time.success=Set world border warnin' to %s seconds away (from %s seconds)
commands.worldborder.warning.time.usage=/worldborder warning time <seconds>
commands.xp.failure.widthdrawXp=Ye can't give a pirate less than nothin'!
commands.xp.success=Given %s experience to %s
commands.xp.success.levels=Given %s levels to %s
commands.xp.success.negative.levels=Taken %s levels from %s
commands.xp.usage=/xp amount [pirate] OR /xp <amount>L [pirate]
connect.authorizing=Dockin' ship...
connect.connecting=Joining a crew...
connect.failed=Wrong coordinates, matey
container.beacon=Buoy o' Light
container.brewing=Rum Brewery
container.chest=Coffer
container.chestDouble=Vast Contain'r
container.crafting=Craftin'
container.creative=Loot Inventory
container.dispenser=Cannon
container.dropper=cannon
container.enchant=Spell Castin'
container.enchant.clue=%s . . . ?
container.enchant.lapis.many=%s Pieces o' Lapis
container.enchant.lapis.one=1 Lapis Piece
container.enchant.level.one=1 Wizardry Level
container.enderchest=Tallone's Coffer
container.furnace=Oven
container.hopper=Object Suckin' Device
container.inventory=Loot Bag
container.isLocked=%s 'tis locked!
container.minecart=Land lubber's boat
container.repair=Repair 'n moniker
container.repair.cost=Enchantarrr Cost: %1$s
container.repair.expensive=You need mo' Gold !
controls.reset=Make 'ow it was when it left 'arbour
controls.resetAll=set ye controls to 'ow they was when ye set sail
controls.title=Yer controls
createWorld.customize.custom.baseSize=Depth Base Size
createWorld.customize.custom.biomeDepthOffset=Biome Depth Offset
createWorld.customize.custom.biomeDepthWeight=Biome Depth Weight
createWorld.customize.custom.biomeScaleOffset=Biome Scale Offset
createWorld.customize.custom.biomeScaleWeight=Biome Scale Weight
createWorld.customize.custom.biomeSize=Size o' the land
createWorld.customize.custom.center=Center Height
createWorld.customize.custom.confirm1=This'll replace yer' current
createWorld.customize.custom.confirm2=settin's and cannot be undone!
createWorld.customize.custom.confirmTitle=ARRR!!
createWorld.customize.custom.coordinateScale=Coordinate Scale
createWorld.customize.custom.count=Port Attempts
createWorld.customize.custom.defaults=Standerds
createWorld.customize.custom.depthNoiseScaleExponent=Depth Noise Exponent
createWorld.customize.custom.depthNoiseScaleX=Depth Noise Scale X
createWorld.customize.custom.depthNoiseScaleZ=Depth Noise Scale Z
createWorld.customize.custom.dungeonChance=Forbidden room count
createWorld.customize.custom.fixedBiome=Land
createWorld.customize.custom.heightScale=Height Scale
createWorld.customize.custom.lavaLakeChance=Burnin-Pond Chances
createWorld.customize.custom.lowerLimitScale=Lower Limit Scale
createWorld.customize.custom.mainNoiseScaleX=flag
createWorld.customize.custom.mainNoiseScaleY=Main Noise Scale Y
createWorld.customize.custom.mainNoiseScaleZ=Main Noise Scale Z
createWorld.customize.custom.maxHeight=Max. Height
createWorld.customize.custom.minHeight=Min. Height
createWorld.customize.custom.next=Ger' forward a bit
createWorld.customize.custom.page0=Easy settings
createWorld.customize.custom.page1=Booty methods
createWorld.customize.custom.page2=ARRRR!! Good Pirates Only!
createWorld.customize.custom.page3=Real confusin' stuff (only if yer' a wizard!)
createWorld.customize.custom.preset.caveChaos=Caves o' Chaos
createWorld.customize.custom.preset.caveDelight=Miners' Delight
createWorld.customize.custom.preset.drought=Drought
createWorld.customize.custom.preset.goodLuck=Wish ye' luck
createWorld.customize.custom.preset.isleLand=Floatin' islands
createWorld.customize.custom.preset.mountains=Sea o' Mountains
createWorld.customize.custom.preset.waterWorld=Ye' Infinite Ocean
createWorld.customize.custom.presets=Yer' sets
createWorld.customize.custom.presets.title=Customize yer' sets
createWorld.customize.custom.prev=Ger' back a bit
createWorld.customize.custom.randomize=Make random
createWorld.customize.custom.riverSize=Small Sea Size
createWorld.customize.custom.seaLevel=Height o' the sea
createWorld.customize.custom.size=Port Scale
createWorld.customize.custom.spread=Spread Height
createWorld.customize.custom.stretchY=Height Stretch
createWorld.customize.custom.upperLimitScale=Upper Limit Scale
createWorld.customize.custom.useCaves=Caves
createWorld.customize.custom.useDungeons=Forbidden rooms
createWorld.customize.custom.useLavaLakes=Hell-holes
createWorld.customize.custom.useLavaOceans=Hellish oceans
createWorld.customize.custom.useMineShafts=Miner's travel
createWorld.customize.custom.useMonuments=Ye' olde' monuments
createWorld.customize.custom.useRavines=Caves down to Davy Jone's locker
createWorld.customize.custom.useStrongholds=The End rooms
createWorld.customize.custom.useTemples=Ye' olde' temples
createWorld.customize.custom.useVillages=Landlubbers' territory
createWorld.customize.custom.useWaterLakes=Lakes
createWorld.customize.custom.waterLakeChance=Small-Sea Chances
createWorld.customize.flat.addLayer=More pebbles
createWorld.customize.flat.editLayer=Change pebbles
createWorld.customize.flat.height=Height
createWorld.customize.flat.layer=%s
createWorld.customize.flat.layer.bottom=Core - %s
createWorld.customize.flat.layer.top=Ground - %s
createWorld.customize.flat.removeLayer=No need for these pebbles!
createWorld.customize.flat.tile=What's yer layer made of?
createWorld.customize.flat.title=Treasure Map Drafting
createWorld.customize.presets=Discovered seas
createWorld.customize.presets.list=Here's th' coordinates of seas yer pirate mateys have written!
createWorld.customize.presets.select=Use Sea
createWorld.customize.presets.share=Want ta tell yer tales about yer sea with th' other pirates? Write down yer coordinates below!
createWorld.customize.presets.title=Choose 'n explored sea
death.attack.anvil=%1$s be flattened by a fallin' Slab o'fixing
death.attack.arrow=%1$s was shot into pieces by %2$s
death.attack.arrow.item=%1$s was shot by Pirate %2$s usin' their %3$s
death.attack.cactus=Pirate %1$s was fighting with a cactus and the cactus won
death.attack.cactus.player=%1$s ran in green desertspikes while tryin' to escape Pirate %2$s
death.attack.drown=%1$s sank to the bottom of the sea
death.attack.drown.player=%1$s drowned tryin' erstwhile to escape %2$s
death.attack.explosion=%1$s was playin' with explosives and was blown up into a quadrillion pieces
death.attack.explosion.player=%1$s was exploded by Pirate %2$s
death.attack.fall=%1$s tried to kiss da bottem of a cliff
death.attack.fallingBlock=%1$s got crushed under a doubleslab
death.attack.fireball=%1$s was hit by %2$s's fireball
death.attack.fireball.item=%1$s was hit by %2$s's fireball usin' a %3$s
death.attack.generic=%1$s was plundered to death
death.attack.inFire=%1$s got toasted
death.attack.inFire.player=%1$s fell in fire while fighting against Pirate %2$s
death.attack.inWall=%1$s was stuck in a wall and died
death.attack.indirectMagic=%1$s was brought to hell by %2$s's magical stuff
death.attack.indirectMagic.item=%1$s was slaughtered by %2$s usin' %3$s
death.attack.lava=%1$s took a too hot bath
death.attack.lava.player=%1$s took too hot a bath while running for the %2$s
death.attack.lightningBolt=%1$s was struck be' the gods
death.attack.magic=%1$s was playin' with magic stuff
death.attack.mob=%1$s was cut in half by %2$s
death.attack.onFire=%1$s got too hot and melted into ashes
death.attack.onFire.player=%1$s got too hot and melted into ashes while fighting Pirate %2$s
death.attack.outOfWorld=%1$s fell a little too far
death.attack.player=%1$s battled %2$s and lost da fight
death.attack.player.item=%1$s battled %2$s and got knocked out with yer' %3$s
death.attack.starve=%1$s lock de' mouth from mouthfuel
death.attack.thorns=%1$s was slaughtered while tryin' to fight %2$s
death.attack.thrown=%1$s was pummeled to pieces by %2$s
death.attack.thrown.item=%1$s was pummeled by %2$s usin' %3$s
death.attack.wither=%1$s was fightin' with a boss
death.fell.accident.generic=%1$s fell from the crow's nest
death.fell.accident.ladder=%1$s fell of the crow's nest
death.fell.accident.vines=%1$s fell out off the crows nest
death.fell.accident.water=%1$s must walk the Planks
death.fell.assist=%1$s got pushed by a scurvy dog, %2$s
death.fell.assist.item=%1$s was forced to fall by %2$s usin' %3$s
death.fell.finish=%1$s fell t' far and was finished by %2$s
death.fell.finish.item=%1$s fell t' far and was finished by %2$s using %3$s
death.fell.killer=%1$s stumbled off ye plank
deathScreen.deleteWorld=Leave yer teasure
deathScreen.hardcoreInfo=Yer trapped in Davy Jones' Locker!
deathScreen.leaveServer=Abandon ship
deathScreen.quit.confirm=Are ye prepared to exit the shipyard?
deathScreen.respawn=Rejoin yer crew
deathScreen.score=Tally
deathScreen.title=Ye be claimed by Davy Jones!
deathScreen.title.hardcore=Yer ship be sunk!
deathScreen.titleScreen=Back to port
demo.day.1=This here demo be lastin' five game days, do yer worst!
demo.day.2=Day Two, Arrrr!
demo.day.3=It be Day Three
demo.day.4=Sun Four
demo.day.5=This be yer last day!
demo.day.6=Ye be passed yer fifth day, use f2 ta grab a record o' yer creation
demo.day.warning=Yer hourglass is runnin' low!
demo.demoExpired=Ye time's up fo' ye demo, lad!
demo.help.buy=Pay up ye gold dabloons!
demo.help.fullWrapped=Dis here short game be lastin' 5 game suns and moons. (1 hour 40 minutes of ye real time). Gander at ye' 'chiev'ments fo' ye clues! Avast!
demo.help.inventory=Use %1$s to look at yer swag
demo.help.jump=Make leaps an' bounds by pressin' %1$s
demo.help.later=Keep plundering!
demo.help.movement=Use %1$s, %2$s, %3$s, %4$s an' the mouse ta navigate
demo.help.movementMouse=Scram around using da mouse!
demo.help.movementShort=Explore ye land by using %1$s, %2$s, %3$s, %4$s
demo.help.title=Minecraft: Ye Short Game
demo.remainingTime=Time ye hav' left: %s
demo.reminder=Yer voyage has come to a bitter end. Hire another captain or charter a new ship!
difficulty.lock.question=Are ye' sure you wanta' do this? These seas will forever a' be %1$s, and ye' can't do anythin' to change it back!
difficulty.lock.title=Lock yer' hardness
disconnect.closed=Ya' been kicked out'a yar ship!
disconnect.disconnected=Marooned
disconnect.endOfStream=Ye passed out
disconnect.genericReason=%s
disconnect.kicked=Walked the plank
disconnect.loginFailed=Failed to dock
disconnect.loginFailedInfo=Failed to dock: %s
disconnect.loginFailedInfo.invalidSession=Somethin' be wrong! Try re-boardin' yer ship.
disconnect.loginFailedInfo.serversUnavailable=Ship be needing fixin'
disconnect.lost=Lost yer coordinates
disconnect.overflow=Yer ship needs an upgrade
disconnect.quitting=Leavin' port
disconnect.spam=Yer chatter be inter'ferin'
disconnect.timeout=Time to be hirin' a new navigator
enchantment.arrowDamage=Vigour
enchantment.arrowFire=Ember
enchantment.arrowInfinite=Arrow o' plenty
enchantment.arrowKnockback=Cannonball knockback
enchantment.damage.all=Scarring
enchantment.damage.arthropods=Critter Cutter
enchantment.damage.undead=Vanquish
enchantment.digging=Usefulness
enchantment.durability=Tough
enchantment.fire=Embered cutlass
enchantment.fishingSpeed=Stronger Bait
enchantment.knockback=Knockaft
enchantment.level.1=I
enchantment.level.10=X
enchantment.level.2=II
enchantment.level.3=III
enchantment.level.4=IV
enchantment.level.5=V
enchantment.level.6=VI
enchantment.level.7=VII
enchantment.level.8=VIII
enchantment.level.9=IX
enchantment.lootBonus=Lootin'
enchantment.lootBonusDigger=Booty
enchantment.lootBonusFishing=Luck o' yer sea
enchantment.oxygen=Fish-breathin'
enchantment.protect.all=Blockades
enchantment.protect.explosion=Cannon-proof
enchantment.protect.fall=Wind in Yer Britches
enchantment.protect.fire=Blockades of Flame
enchantment.protect.projectile=Blunderbuss Busting
enchantment.thorns=Spikes
enchantment.untouching=Soft Hands
enchantment.waterWalker=Mermaid Legs
enchantment.waterWorker=Rudder Lover
entity.ArmorStand.name=Stand for me pretties
entity.Arrow.name=bolt
entity.Bat.name=Hoverin' Beast
entity.Blaze.name=Blisterin' Blaze
entity.Boat.name=Vessel
entity.Cat.name=Parrot killer
entity.CaveSpider.name=Cave Horror
entity.Chicken.name=Fowl
entity.Cow.name=Bovine
entity.Creeper.name=Ye explodin' mate
entity.EnderDragon.name=The Flyin' Dutchman
entity.Enderman.name=Ye Tall Mate
entity.Endermite.name=Maggot
entity.EntityHorse.name=Brumby
entity.FallingSand.name=Unstable deck
entity.Fireball.name=Cannonball
entity.Ghast.name=Floatin' Ghost
entity.Giant.name=Ten-fathoms-tall man
entity.Guardian.name=Sea Lurker
entity.Item.name=Booty
entity.KillerBunny.name=Em, Killer Bunny
entity.LavaSlime.name=Chunk o' Magma
entity.Minecart.name=Land lubber's boat
entity.Mob.name=Stowaway
entity.Monster.name=Beast
entity.MushroomCow.name=Moo o'shroom
entity.Ozelot.name=Cat o' Jungles
entity.Painting.name=Paintin'
entity.Pig.name=Swine
entity.PigZombie.name=Undead Swine
entity.PrimedTnt.name=Powder Keg
entity.Rabbit.name=Hoppin' Food
entity.Sheep.name=Creature o' Cloth
entity.Silverfish.name=Bilge Rat
entity.Skeleton.name=Bag o' Bones
entity.Slime.name=Cube o' Slime
entity.SmallFireball.name=Small Cannonball
entity.SnowMan.name=Golem o' Snow
entity.Snowball.name=Ball 'o' Snow
entity.Spider.name=Night Bug
entity.Squid.name=Kraken
entity.Villager.armor=smith
entity.Villager.butcher=meat chopper
entity.Villager.cleric=priest
entity.Villager.farmer=dirt digging landlubber
entity.Villager.fisherman=seaman
entity.Villager.fletcher=bowmaker
entity.Villager.leather=clothesmaker
entity.Villager.librarian=bookworm
entity.Villager.name=Landlubber
entity.Villager.shepherd=sheep herder
entity.Villager.tool=smith
entity.Villager.weapon=gunsmith
entity.VillagerGolem.name=Golem o' Iron
entity.Witch.name=Wizard
entity.WitherBoss.name=Rot
entity.Wolf.name=Hound
entity.XPOrb.name=Ball 'o' Experience
entity.Zombie.name=Undead Sailor
entity.donkey.name=Furrey Cargo
entity.generic.name=Arr?
entity.horse.name=Brumby
entity.mule.name=Furry Cargo
entity.skeletonhorse.name=Skeletal Brumby
entity.zombiehorse.name=Undead Brumby
gameMode.adventure=Plunderin' Forbid
gameMode.changed=Yar livin' mode has been changed
gameMode.creative=Build yer ship fer nuthin'
gameMode.hardcore=No Lifeboats!
gameMode.spectator=Wuss mode
gameMode.survival=Swashbuckler
generator.amplified=RAISED SEAS
generator.amplified.info=You need a big boat for this
generator.customized=Made Yer' Own
generator.debug_all_block_states=Wizerd Mode
generator.default=Seas n' mountains!
generator.flat=Fla'r than the sea
generator.largeBiomes=Big seas
gui.achievements=Logged Ports
gui.all=Alls
gui.back=Starboard bow
gui.cancel=Avast
gui.done=Plundered
gui.down=Downwards
gui.no=Nay
gui.none=Cookie
gui.stats=Ship's Manifest
gui.toMenu=Back ta deck
gui.up=Skywards
gui.yes=Aye
inventory.binSlot=Pillage Item
item.apple.name=Scurvy's Cure
item.appleGold.name=Eden's Apple
item.armorStand.name=Stand for me pretties
item.arrow.name=Bolt
item.banner.black.name=Black Flag
item.banner.blue.name=Blue Flag
item.banner.brown.name=Brown Flag
item.banner.cyan.name=Cyan Flag
item.banner.gray.name=Grey Flag
item.banner.green.name=Green Flag
item.banner.lightBlue.name=Light Blue Flag
item.banner.lime.name=Lime Flag
item.banner.magenta.name=Magenta Flag
item.banner.mojang.black=Black Thingy
item.banner.mojang.blue=Blue Thingy
item.banner.mojang.brown=Brown Thingy
item.banner.mojang.cyan=Cyan Thingy
item.banner.mojang.gray=Gray Thingy
item.banner.mojang.green=Green Thingy
item.banner.mojang.lightBlue=Light Blue Thingy
item.banner.mojang.lime=Lime Thingy
item.banner.mojang.magenta=Magenta Thingy
item.banner.mojang.orange=Orange Thingy
item.banner.mojang.pink=Pink Thingy
item.banner.mojang.purple=Purple Thingy
item.banner.mojang.red=Red Thingy
item.banner.mojang.silver=Light Gray Thingy
item.banner.mojang.white=White Thingy
item.banner.mojang.yellow=Yellow Thingy
item.banner.orange.name=Orange Flag
item.banner.pink.name=Pink Flag
item.banner.purple.name=Purple Flag
item.banner.red.name=Red Flag
item.banner.silver.name=Light Grey Flag
item.banner.skull.black=Black Skull n' Crossbones
item.banner.skull.blue=Blue Skull n' Crossbones
item.banner.skull.brown=Brown Skull n' Crossbones
item.banner.skull.cyan=Cyan Skull n' Crossbones
item.banner.skull.gray=Grey Skull n' Crossbones
item.banner.skull.green=Green Skull n' Crossbones
item.banner.skull.lightBlue=Light Blue Skull n' Crossbones
item.banner.skull.lime=Lime Skull n' Crossbones
item.banner.skull.magenta=Magenta Skull n' Crossbones
item.banner.skull.orange=Orange Skull n' Crossbones
item.banner.skull.pink=Pink Skull n' Crossbones
item.banner.skull.purple=Purple Skull n' Crossbones
item.banner.skull.red=Red Skull n' Crossbones
item.banner.skull.silver=Light Grey Skull n' Crossbones
item.banner.skull.white=White Skull n' Crossbones
item.banner.skull.yellow=Yellow Skull n' Crossbones
item.banner.square_bottom_left.black=Black Base Dexter Canton
item.banner.square_bottom_left.blue=Blue Base Dexter Canton
item.banner.square_bottom_left.brown=Brown Base Dexter Canton
item.banner.square_bottom_left.cyan=Cyan Base Dexter Canton
item.banner.square_bottom_left.gray=Gray Base Dexter Canton
item.banner.square_bottom_left.green=Green Base Dexter Canton
item.banner.square_bottom_left.lightBlue=Light Blue Base Dexter Canton
item.banner.square_bottom_left.lime=Lime Base Dexter Canton
item.banner.square_bottom_left.magenta=Magenta Base Dexter Canton
item.banner.square_bottom_left.orange=Orange Base Dexter Canton
item.banner.square_bottom_left.pink=Pink Base Dexter Canton
item.banner.square_bottom_left.purple=Purple Base Dexter Canton
item.banner.square_bottom_left.red=Red Base Dexter Canton
item.banner.square_bottom_left.silver=Light Gray Base Dexter Canton
item.banner.square_bottom_left.white=White Base Dexter Canton
item.banner.square_bottom_left.yellow=Yellow Base Dexter Canton
item.banner.square_bottom_right.black=Black Base Sinister Canton
item.banner.square_bottom_right.blue=Blue Base Sinister Canton
item.banner.square_bottom_right.brown=Brown Base Sinister Canton
item.banner.square_bottom_right.cyan=Cyan Base Sinister Canton
item.banner.square_bottom_right.gray=Gray Base Sinister Canton
item.banner.square_bottom_right.green=Green Base Sinister Canton
item.banner.square_bottom_right.lightBlue=Light Blue Base Sinister Canton
item.banner.square_bottom_right.lime=Lime Base Sinister Canton
item.banner.square_bottom_right.magenta=Magenta Base Sinister Canton
item.banner.square_bottom_right.orange=Orange Base Sinister Canton
item.banner.square_bottom_right.pink=Pink Base Sinister Canton
item.banner.square_bottom_right.purple=Purple Base Sinister Canton
item.banner.square_bottom_right.red=Red Base Sinister Canton
item.banner.square_bottom_right.silver=Light Gray Base Sinister Canton
item.banner.square_bottom_right.white=White Base Sinister Canton
item.banner.square_bottom_right.yellow=Yellow Base Sinister Canton
item.banner.square_top_left.black=Black Chief Dexter Canton
item.banner.square_top_left.blue=Blue Chief Dexter Canton
item.banner.square_top_left.brown=Brown Chief Dexter Canton
item.banner.square_top_left.cyan=Cyan Chief Dexter Canton
item.banner.square_top_left.green=Green Chief Dexter Canton
item.banner.square_top_left.purple=Purple Chief Dexter Canton
item.banner.square_top_left.red=Red Chief Dexter Canton
item.banner.square_top_left.silver=Light Gray Chief Dexter Canton
item.banner.stripe_top.lime=Lime Chief Fess
item.banner.stripe_top.yellow=Yellow Chief Fess
item.banner.white.name=White Flag
item.banner.yellow.name=Yellow Flag
item.bed.name=Bunk
item.beefCooked.name=Beef
item.beefRaw.name=Fresh Beef
item.blazePowder.name=Blisterin' Blaze Powder
item.blazeRod.name=Burnin' stick
item.boat.name=Row Boat
item.bone.name=Limb
item.book.name=Logbook
item.bootsChain.name=Pegleg o' Metal Links
item.bootsCloth.name=Pegleg o' Leather
item.bootsDiamond.name=Bejeweled Pegleg
item.bootsGold.name=Buttershoes
item.bootsIron.name=Pegleg o' Steel
item.bow.name=Musket
item.bowl.name=Nipperkin
item.bread.name=Hard Tack
item.brewingStand.name=Still
item.brick.name=Clay Brick
item.bucket.name=Pail
item.bucketLava.name=Bucket o' Molten Rock
item.bucketWater.name=Pail o' Bilge
item.cake.name=Duff
item.canBreak=Can break:
item.canPlace=Can be placed on:
item.carrotGolden.name=Carrot o' Gold
item.carrotOnAStick.name=Stick o' Carrot
item.carrots.name=Orange Veggy
item.cauldron.name=Pot
item.charcoal.name=Burnt Timber
item.chestplateChain.name=Chestplate o' Metal Links
item.chestplateCloth.name=Leather Jacket
item.chestplateDiamond.name=Bejeweled Chestplate
item.chestplateGold.name=Chestplate o' gold
item.chestplateIron.name=Chestplate o' Steel
item.chickenCooked.name=Drumstick
item.chickenRaw.name=Fresh Poultry
item.clay.name=Stuff o' Shapin'
item.clock.name=Hourglass
item.coal.name=Heater
item.comparator.name=Magic counterinatorrr
item.compass.name=Sextant
item.cookie.name=Biscuit
item.diamond.name=Wealth o' the Ocean
item.diode.name=Magic Repeatarrr
item.doorAcacia.name=Door o' Acacia
item.doorBirch.name=Birch Door
item.doorDarkOak.name=Door er, Dark Oak
item.doorIron.name=Steel Door
item.doorJungle.name=Door o' Jungle Wood
item.doorOak.name=Oak Door
item.doorSpruce.name=Spruce Door
item.dyePowder.black.name=Kraken's Paint
item.dyePowder.blue.name=Paint o' the ocean
item.dyePowder.brown.name=Beans o' Cacao
item.dyePowder.cyan.name=Dye o' Cyan
item.dyePowder.gray.name=Dye o' Fog
item.dyePowder.green.name=Green o' Cactus
item.dyePowder.lightBlue.name=Blue Dye o' the Sky
item.dyePowder.lime.name=Dye o' Limes
item.dyePowder.magenta.name=Dye o' Magenta
item.dyePowder.orange.name=Dye o' Oranges
item.dyePowder.pink.name=Dye o' Pink
item.dyePowder.purple.name=Dye o' the Evening
item.dyePowder.red.name=Scarlet o' Roses
item.dyePowder.silver.name=Dye o' Mist
item.dyePowder.white.name=Mashed Bones
item.dyePowder.yellow.name=Yellow o' Dandelion
item.dyed=Colorrred
item.egg.name=Cackle Fruit
item.emerald.name=Gem o' the Seasick sailor's vomit
item.emptyMap.name=Em'ty Treasure Map
item.emptyPotion.name=Bottle o' Water
item.enchantedBook.name=Magic book
item.enderPearl.name=Tall man's Treasure
item.expBottle.name=Elder Rum
item.eyeOfEnder.name=Eye 'o' The Tall One
item.feather.name=Plunder o' ye fowl
item.fermentedSpiderEye.name=Boiled Spider Aye-ball
item.fireball.name=Cannonball
item.fireworks.flight=Flight Duration:
item.fireworks.name=Bomb o' Shinyness
item.fireworksCharge.black=Black
item.fireworksCharge.blue=Blue
item.fireworksCharge.brown=Brown
item.fireworksCharge.customColor=Me own
item.fireworksCharge.cyan=Cyan
item.fireworksCharge.fadeTo=Fade to
item.fireworksCharge.flicker=Mini bomb
item.fireworksCharge.gray=Gray
item.fireworksCharge.green=Green
item.fireworksCharge.lightBlue=Light Blue
item.fireworksCharge.lime=Lime
item.fireworksCharge.magenta=Magenta
item.fireworksCharge.name=Bomb star
item.fireworksCharge.orange=Orange
item.fireworksCharge.pink=Pink
item.fireworksCharge.purple=Purple
item.fireworksCharge.red=Red
item.fireworksCharge.silver=Light Gray
item.fireworksCharge.trail=Ship's wake
item.fireworksCharge.type=ghosty Shape
item.fireworksCharge.type.0=Small ball
item.fireworksCharge.type.1=Large Ball
item.fireworksCharge.type.2=Star-shaped
item.fireworksCharge.type.3=Blown face shape
item.fireworksCharge.type.4=Wrath
item.fireworksCharge.white=White
item.fireworksCharge.yellow=Yellow
item.fish.clownfish.raw.name=Tinyfish
item.fish.cod.cooked.name=Smoked Kipper
item.fish.cod.raw.name=Raw Kipper
item.fish.pufferfish.raw.name=Raw evil fish
item.fish.salmon.cooked.name=Burnt down yer' Salmon
item.fish.salmon.raw.name=Non-burnt Salmon
item.fishingRod.name=Rod o' Fishin'
item.flint.name=Pointy Rock
item.flintAndSteel.name=Ship's Bane
item.flowerPot.name=Dirt Vase
item.frame.name=Treasarrrr Map
item.ghastTear.name=Tear o' tha Floatin' Ghost
item.glassBottle.name=Empty bottle o' rum
item.goldNugget.name=Gold Doubloon
item.hatchetDiamond.name=Bejeweled Hatchet
item.hatchetGold.name=Hatchet o' Gold
item.hatchetIron.name=Hatchet o' Steel
item.hatchetStone.name=Hatchet o' Rock
item.hatchetWood.name=Axe o' timber
item.helmetChain.name=Helmet o' Metal Links
item.helmetCloth.name=Leather Bandana
item.helmetDiamond.name=Bejeweled Helmet
item.helmetGold.name=Helmet o' Gold
item.helmetIron.name=Noggin Pot
item.hoeDiamond.name=Shiny Farmin' Stick
item.hoeGold.name=Gold'n Farmin' Stick
item.hoeIron.name=Hoe o' Steel
item.hoeStone.name=Hoe o' Rock
item.hoeWood.name=Timber Farmin' Stick
item.horsearmordiamond.name=Bejeweled Brumby Armor
item.horsearmorgold.name=Brumby Armor o' Gold
item.horsearmormetal.name=Brumby Armor o' Steel
item.ingotGold.name=Gold Bullion
item.ingotIron.name=Iron Bullion
item.leash.name=Rope o' pullin
item.leather.name=Skin o' cow
item.leaves.name=Leaves
item.leggingsChain.name=Greaves o' Metal Links
item.leggingsCloth.name=Breeches o' leather
item.leggingsDiamond.name=Bejeweled Greaves
item.leggingsGold.name=Greaves o' Gold
item.leggingsIron.name=Greaves o' Steel
item.magmaCream.name=Flamin' Cream
item.map.name=Treasure Map
item.melon.name=Watermelon
item.milk.name=Cow's Juice
item.minecart.name=Landlubber's Boat