Compare commits
109 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ced1e97475 | |||
| 0a10b2bd28 | |||
| 4341934d17 | |||
| ac24fb31fb | |||
| e7c9fc70d4 | |||
| 39aa0b489f | |||
| 0e5f748c9a | |||
| 1915f8665c | |||
| a973db29f4 | |||
| 5ee28eabb5 | |||
| 840a90bbdf | |||
| 25cc01e7cd | |||
| b3b437e593 | |||
| 58cd634255 | |||
| c04bac44e7 | |||
| 3113e1a1e8 | |||
| cc0d556c10 | |||
| 713dd16dfe | |||
| f53c2706d1 | |||
| 95340da5e2 | |||
| b498733ce8 | |||
| b6eec73277 | |||
| 7e7fe3dfd6 | |||
| c70b3b8d99 | |||
| 7f722269bd | |||
| 96e9b83ca3 | |||
| 434cac944c | |||
| 30d09c2e7f | |||
| 8c81e02a87 | |||
| 7536ba7aa2 | |||
| 47f14a464a | |||
| 3589757763 | |||
| 1fbd864a7f | |||
| d072da3345 | |||
| 8c92ee6876 | |||
| 75146417c4 | |||
| 7108b02f4d | |||
| d8440f8daa | |||
| 9828dfea21 | |||
| 21f3814368 | |||
| c9d8c3ee40 | |||
| 4ea52728ee | |||
| 6084ea2017 | |||
| afea917409 | |||
| 271f4b760d | |||
| c33b7273fa | |||
| e8b1c937e4 | |||
| d7cd2ce329 | |||
| e07ade5a4a | |||
| 52f0057c3d | |||
| c0d9c54c44 | |||
| de21487038 | |||
| a11a999839 | |||
| c746f643fd | |||
| fcc14520c5 | |||
| 9b56c6f2ba | |||
| 0b122f3b43 | |||
| b33505141b | |||
| ee836c76a4 | |||
| bcbf00d42c | |||
| d9de6282a4 | |||
| 87066ef6c7 | |||
| 6b214e4e3f | |||
| b1a2632319 | |||
| c387c6e0a5 | |||
| da12cb9f45 | |||
| 212395cef4 | |||
| 7a9e50dbba | |||
| 6e78a14f87 | |||
| 038dd64b12 | |||
| d89b1e3b08 | |||
| 8520987afb | |||
| c327baad41 | |||
| bbafe3d52d | |||
| d23f79d001 | |||
| db3fd62af8 | |||
| 00aebed8c0 | |||
| 4ad81c4c28 | |||
| 36042d42f9 | |||
| 7090ed5f4b | |||
| 2d81b31c3a | |||
| b20f5545b9 | |||
| 46be1553f0 | |||
| 01a7880bc9 | |||
| 20ce394999 | |||
| 3ce80bae2a | |||
| 4deb5ada2f | |||
| 39a9753fd6 | |||
| a9d4bbd87d | |||
| c08df9978f | |||
| 74087d23c9 | |||
| b40d8ce09d | |||
| 91aba965b0 | |||
| cb4676980d | |||
| 10cf22cd4e | |||
| c6192dd24b | |||
| 0ca44fd5c2 | |||
| 457264faa1 | |||
| 3c338ddcd7 | |||
| 8292903444 | |||
| 275d29e3f4 | |||
| 9b529fff52 | |||
| f9762f4f81 | |||
| ed815d4947 | |||
| 31850830a0 | |||
| 1a26965542 | |||
| 5a2616069a | |||
| 55f0398928 | |||
| 11de1015ea |
@@ -1,4 +1,4 @@
|
||||
[//]: # (Before logging this issue, look through common problems at https://github.com/HabitRPG/habitrpg/issue If you find your issue there, read at least the first post to see if there is a workaround for you)
|
||||
[//]: # (Before logging this issue, look through common problems at https://github.com/HabitRPG/habitrpg/issues If you find your issue there, read at least the first post to see if there is a workaround for you)
|
||||
|
||||
[//]: # (Github is primarily used for reporting bugs. If you have a feature request, use "Help > Request a Feature" so that the feature request can be vetted by the larger Habitica community)
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ RUN apt-get clean
|
||||
RUN rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install global packages
|
||||
RUN npm install -g gulp grunt-cli bower
|
||||
RUN npm install -g gulp grunt-cli bower npm@3
|
||||
|
||||
# Clone Habitica repo and install dependencies
|
||||
WORKDIR /habitrpg
|
||||
|
||||
@@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2"
|
||||
|
||||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||
config.vm.provider "virtualbox" do |v|
|
||||
v.memory = 768
|
||||
v.memory = 4096
|
||||
v.cpus = 1
|
||||
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"]
|
||||
end
|
||||
|
||||
@@ -15,7 +15,6 @@
|
||||
],
|
||||
"dependencies": {
|
||||
"Angular-At-Directive": "snicker/Angular-At-Directive#c27bae207aa06d1e",
|
||||
"BrowserQuest": "browserquest/BrowserQuest#c3a960b03031dad5d",
|
||||
"angular": "1.3.9",
|
||||
"angular-bootstrap": "0.13.0",
|
||||
"angular-filter": "0.5.1",
|
||||
|
||||
@@ -1,144 +1,150 @@
|
||||
.2014_Fall_HealerPROMO2 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -808px -706px;
|
||||
background-position: -1497px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.2014_Fall_Mage_PROMO9 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -734px -317px;
|
||||
background-position: -1456px -735px;
|
||||
width: 120px;
|
||||
height: 90px;
|
||||
}
|
||||
.2014_Fall_RoguePROMO3 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -843px -408px;
|
||||
background-position: -199px -1252px;
|
||||
width: 105px;
|
||||
height: 90px;
|
||||
}
|
||||
.2014_Fall_Warrior_PROMO {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -942px -1157px;
|
||||
background-position: -951px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_android {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1096px -508px;
|
||||
background-position: 0px -1076px;
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.promo_backgrounds_armoire_201602 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -954px 0px;
|
||||
background-position: -1017px -103px;
|
||||
width: 141px;
|
||||
height: 294px;
|
||||
}
|
||||
.promo_backgrounds_armoire_201603 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -306px -220px;
|
||||
background-position: -875px -103px;
|
||||
width: 141px;
|
||||
height: 294px;
|
||||
}
|
||||
.promo_backgrounds_armoire_201604 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -452px 0px;
|
||||
background-position: -593px 0px;
|
||||
width: 140px;
|
||||
height: 441px;
|
||||
}
|
||||
.promo_backgrounds_armoire_201605 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -593px 0px;
|
||||
background-position: -734px 0px;
|
||||
width: 140px;
|
||||
height: 441px;
|
||||
}
|
||||
.promo_backgrounds_armoire_201606 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -452px 0px;
|
||||
width: 140px;
|
||||
height: 447px;
|
||||
}
|
||||
.promo_backtoschool {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px -402px;
|
||||
background-position: -1305px -735px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.promo_burnout {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -734px 0px;
|
||||
background-position: 0px -525px;
|
||||
width: 219px;
|
||||
height: 240px;
|
||||
}
|
||||
.promo_chairs_glasses {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: 0px -1248px;
|
||||
background-position: -306px -311px;
|
||||
width: 51px;
|
||||
height: 210px;
|
||||
}
|
||||
.promo_classes_fall_2014 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -326px -957px;
|
||||
background-position: -363px -862px;
|
||||
width: 321px;
|
||||
height: 100px;
|
||||
}
|
||||
.promo_classes_fall_2015 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -430px -706px;
|
||||
background-position: -875px -712px;
|
||||
width: 377px;
|
||||
height: 99px;
|
||||
}
|
||||
.promo_dilatoryDistress {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -770px -525px;
|
||||
background-position: -678px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_egg_mounts {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: 0px -809px;
|
||||
background-position: -875px -398px;
|
||||
width: 280px;
|
||||
height: 147px;
|
||||
}
|
||||
.promo_enchanted_armoire {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -271px -621px;
|
||||
background-position: -685px -862px;
|
||||
width: 374px;
|
||||
height: 76px;
|
||||
}
|
||||
.promo_enchanted_armoire_201507 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px -1000px;
|
||||
background-position: -1305px -1034px;
|
||||
width: 217px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_enchanted_armoire_201508 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1096px -776px;
|
||||
background-position: -1122px -546px;
|
||||
width: 180px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_enchanted_armoire_201509 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -861px -525px;
|
||||
background-position: -860px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_enchanted_armoire_201511 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -954px -569px;
|
||||
background-position: -1456px -584px;
|
||||
width: 122px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_enchanted_armoire_201601 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -578px -1157px;
|
||||
background-position: -1224px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_floral_potions {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -954px -295px;
|
||||
background-position: -1159px -103px;
|
||||
width: 105px;
|
||||
height: 273px;
|
||||
}
|
||||
.promo_habitica {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1096px -332px;
|
||||
background-position: -176px -1076px;
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
@@ -150,301 +156,301 @@
|
||||
}
|
||||
.promo_haunted_hair {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1484px -704px;
|
||||
background-position: -1462px -285px;
|
||||
width: 100px;
|
||||
height: 137px;
|
||||
}
|
||||
.promo_item_notif {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px 0px;
|
||||
background-position: -1305px -182px;
|
||||
width: 249px;
|
||||
height: 102px;
|
||||
}
|
||||
.promo_mystery_201405 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1033px -1157px;
|
||||
background-position: -182px -1344px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201406 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1494px -251px;
|
||||
background-position: -358px -417px;
|
||||
width: 90px;
|
||||
height: 96px;
|
||||
}
|
||||
.promo_mystery_201407 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -881px -241px;
|
||||
background-position: -1253px -712px;
|
||||
width: 42px;
|
||||
height: 62px;
|
||||
}
|
||||
.promo_mystery_201408 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1272px -414px;
|
||||
background-position: -1523px -1125px;
|
||||
width: 60px;
|
||||
height: 71px;
|
||||
}
|
||||
.promo_mystery_201409 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1005px -809px;
|
||||
background-position: -1042px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201410 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1249px -867px;
|
||||
background-position: -1156px -474px;
|
||||
width: 72px;
|
||||
height: 63px;
|
||||
}
|
||||
.promo_mystery_201411 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -760px -1157px;
|
||||
background-position: -1406px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201412 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1277px -776px;
|
||||
background-position: -1226px -637px;
|
||||
width: 42px;
|
||||
height: 66px;
|
||||
}
|
||||
.promo_mystery_201501 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1272px -578px;
|
||||
background-position: -1229px -474px;
|
||||
width: 48px;
|
||||
height: 63px;
|
||||
}
|
||||
.promo_mystery_201502 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -52px -1248px;
|
||||
background-position: -364px -1344px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201503 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -234px -1248px;
|
||||
background-position: -587px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201504 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1272px -508px;
|
||||
background-position: -1122px -637px;
|
||||
width: 60px;
|
||||
height: 69px;
|
||||
}
|
||||
.promo_mystery_201505 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -325px -1248px;
|
||||
background-position: -769px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201506 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1295px -684px;
|
||||
background-position: -1183px -637px;
|
||||
width: 42px;
|
||||
height: 69px;
|
||||
}
|
||||
.promo_mystery_201507 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1500px -103px;
|
||||
background-position: -358px -311px;
|
||||
width: 90px;
|
||||
height: 105px;
|
||||
}
|
||||
.promo_mystery_201508 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -855px -317px;
|
||||
background-position: -399px -1252px;
|
||||
width: 93px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201509 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -669px -1157px;
|
||||
background-position: -1133px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201510 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1494px -402px;
|
||||
background-position: -493px -1252px;
|
||||
width: 93px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201511 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -851px -1157px;
|
||||
background-position: -1315px -1252px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201512 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1272px -332px;
|
||||
background-position: -1523px -1034px;
|
||||
width: 60px;
|
||||
height: 81px;
|
||||
}
|
||||
.promo_mystery_201601 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -954px -660px;
|
||||
background-position: -306px -220px;
|
||||
width: 120px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201602 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1124px -1157px;
|
||||
background-position: 0px -1344px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201603 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1215px -1157px;
|
||||
background-position: -91px -1344px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201604 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1494px -553px;
|
||||
background-position: -305px -1252px;
|
||||
width: 93px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_201605 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -143px -1248px;
|
||||
background-position: -273px -1344px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_mystery_3014 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px -1091px;
|
||||
background-position: -1305px -1125px;
|
||||
width: 217px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_orca {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1484px -852px;
|
||||
background-position: -1456px -433px;
|
||||
width: 105px;
|
||||
height: 105px;
|
||||
}
|
||||
.promo_partyhats {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px -1182px;
|
||||
background-position: -1456px -675px;
|
||||
width: 115px;
|
||||
height: 47px;
|
||||
}
|
||||
.promo_pastel_skin {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -979px -957px;
|
||||
background-position: -657px -965px;
|
||||
width: 330px;
|
||||
height: 83px;
|
||||
}
|
||||
.customize-option.promo_pastel_skin {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1004px -972px;
|
||||
background-position: -682px -980px;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
.promo_peppermint_flame {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px -852px;
|
||||
background-position: -1305px -886px;
|
||||
width: 140px;
|
||||
height: 147px;
|
||||
}
|
||||
.promo_pet_skins {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px -704px;
|
||||
background-position: -1446px -886px;
|
||||
width: 140px;
|
||||
height: 147px;
|
||||
}
|
||||
.customize-option.promo_pet_skins {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1368px -719px;
|
||||
background-position: -1471px -901px;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
.promo_shimmer_hair {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -648px -957px;
|
||||
background-position: -326px -965px;
|
||||
width: 330px;
|
||||
height: 83px;
|
||||
}
|
||||
.promo_splashyskins {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1096px -684px;
|
||||
background-position: 0px -1252px;
|
||||
width: 198px;
|
||||
height: 91px;
|
||||
}
|
||||
.customize-option.promo_splashyskins {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1121px -699px;
|
||||
background-position: -25px -1267px;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
.promo_spring_classes_2016 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -281px -809px;
|
||||
background-position: 0px -862px;
|
||||
width: 362px;
|
||||
height: 102px;
|
||||
}
|
||||
.promo_springclasses2014 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: 0px -1157px;
|
||||
background-position: -1305px -91px;
|
||||
width: 288px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_springclasses2015 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -289px -1157px;
|
||||
background-position: -1305px 0px;
|
||||
width: 288px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_summer_classes_2014 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: 0px -706px;
|
||||
background-position: -875px 0px;
|
||||
width: 429px;
|
||||
height: 102px;
|
||||
}
|
||||
.promo_summer_classes_2015 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: 0px -1068px;
|
||||
background-position: -352px -1076px;
|
||||
width: 300px;
|
||||
height: 88px;
|
||||
}
|
||||
.promo_updos {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px -103px;
|
||||
background-position: -1305px -285px;
|
||||
width: 156px;
|
||||
height: 147px;
|
||||
}
|
||||
.promo_veteran_pets {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -734px -241px;
|
||||
background-position: -1156px -398px;
|
||||
width: 146px;
|
||||
height: 75px;
|
||||
}
|
||||
.promo_winter_classes_2016 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -644px -809px;
|
||||
background-position: -499px -766px;
|
||||
width: 360px;
|
||||
height: 90px;
|
||||
}
|
||||
.promo_winterclasses2015 {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: 0px -957px;
|
||||
background-position: 0px -965px;
|
||||
width: 325px;
|
||||
height: 110px;
|
||||
}
|
||||
.promo_winteryhair {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1096px -867px;
|
||||
background-position: -1060px -862px;
|
||||
width: 152px;
|
||||
height: 75px;
|
||||
}
|
||||
.avatar_variety {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -271px -525px;
|
||||
background-position: 0px -766px;
|
||||
width: 498px;
|
||||
height: 95px;
|
||||
}
|
||||
.npc_viirus {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -734px -408px;
|
||||
background-position: -738px -525px;
|
||||
width: 108px;
|
||||
height: 90px;
|
||||
}
|
||||
@@ -456,31 +462,31 @@
|
||||
}
|
||||
.scene_coding {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px -251px;
|
||||
background-position: -1305px -433px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.scene_phone_peek {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1343px -553px;
|
||||
background-position: -1305px -584px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.welcome_basic_avatars {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1096px -166px;
|
||||
background-position: -875px -546px;
|
||||
width: 246px;
|
||||
height: 165px;
|
||||
}
|
||||
.welcome_promo_party {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: 0px -525px;
|
||||
background-position: -220px -525px;
|
||||
width: 270px;
|
||||
height: 180px;
|
||||
}
|
||||
.welcome_sample_tasks {
|
||||
background-image: url(spritesmith-largeSprites-0.png);
|
||||
background-position: -1096px 0px;
|
||||
background-position: -491px -525px;
|
||||
width: 246px;
|
||||
height: 165px;
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 290 KiB After Width: | Height: | Size: 339 KiB |
|
Before Width: | Height: | Size: 312 KiB After Width: | Height: | Size: 332 KiB |
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 66 KiB |
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 143 KiB |
|
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 151 KiB |
|
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 134 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 129 KiB After Width: | Height: | Size: 132 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 256 KiB After Width: | Height: | Size: 190 KiB |
|
Before Width: | Height: | Size: 295 KiB After Width: | Height: | Size: 363 KiB |
|
Before Width: | Height: | Size: 148 KiB After Width: | Height: | Size: 150 KiB |
|
Before Width: | Height: | Size: 146 KiB After Width: | Height: | Size: 145 KiB |
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 138 KiB |
|
After Width: | Height: | Size: 81 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 9.5 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 324 B |
|
Before Width: | Height: | Size: 271 B After Width: | Height: | Size: 359 B |
|
Before Width: | Height: | Size: 268 B After Width: | Height: | Size: 357 B |
|
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 360 B |
|
Before Width: | Height: | Size: 283 B After Width: | Height: | Size: 358 B |
|
Before Width: | Height: | Size: 267 B After Width: | Height: | Size: 354 B |
|
Before Width: | Height: | Size: 273 B After Width: | Height: | Size: 354 B |
|
After Width: | Height: | Size: 46 KiB |
@@ -167,5 +167,12 @@
|
||||
"backgroundGazeboText": "Gazebo",
|
||||
"backgroundGazeboNotes": "Bojuj s Gazeboem!",
|
||||
"backgroundTreeRootsText": "Kořeny stromu",
|
||||
"backgroundTreeRootsNotes": "Prozkoumej Kořeny stromu."
|
||||
"backgroundTreeRootsNotes": "Prozkoumej Kořeny stromu.",
|
||||
"backgrounds062016": "SET 25: Released June 2016",
|
||||
"backgroundLighthouseShoreText": "Lighthouse Shore",
|
||||
"backgroundLighthouseShoreNotes": "Stroll down the Lighthouse Shore.",
|
||||
"backgroundLilypadText": "Lilypad",
|
||||
"backgroundLilypadNotes": "Hop on a Lilypad.",
|
||||
"backgroundWaterfallRockText": "Waterfall Rock",
|
||||
"backgroundWaterfallRockNotes": "Splash on a Waterfall Rock."
|
||||
}
|
||||
@@ -64,19 +64,20 @@
|
||||
"hurray": "Hurá!",
|
||||
"noChallengeOwner": "bez majitele",
|
||||
"noChallengeOwnerPopover": "Tato Výzva nemá majitele, jelikož uživatel, který ji vytvořil, si smazal účet.",
|
||||
"challengeMemberNotFound": "User not found among challenge's members",
|
||||
"onlyGroupLeaderChal": "Only the group leader can create challenges",
|
||||
"tavChalsMinPrize": "Prize must be at least 1 Gem for Tavern challenges.",
|
||||
"cantAfford": "You can't afford this prize. Purchase more gems or lower the prize amount.",
|
||||
"challengeIdRequired": "\"challengeId\" must be a valid UUID.",
|
||||
"winnerIdRequired": "\"winnerId\" must be a valid UUID.",
|
||||
"challengeNotFound": "Challenge not found.",
|
||||
"onlyLeaderDeleteChal": "Only the challenge leader can delete it.",
|
||||
"onlyLeaderUpdateChal": "Only the challenge leader can update it.",
|
||||
"winnerNotFound": "Winner with id \"<%= userId %>\" not found or not part of the challenge.",
|
||||
"noCompletedTodosChallenge": "\"includeComepletedTodos\" is not supported when fetching a challenge tasks.",
|
||||
"userTasksNoChallengeId": "When \"tasksOwner\" is \"user\" \"challengeId\" can't be passed.",
|
||||
"onlyChalLeaderEditTasks": "Tasks belonging to a challenge can only be edited by the leader.",
|
||||
"userAlreadyInChallenge": "User is already participating in this challenge.",
|
||||
"cantOnlyUnlinkChalTask": "Only broken challenges tasks can be unlinked."
|
||||
"challengeMemberNotFound": "Uživatel nenalezen mezi členy výzvy",
|
||||
"onlyGroupLeaderChal": "Pouze vůdce družiny může začít výzvy",
|
||||
"tavChalsMinPrize": "Cena za výzvu v krčmě musí být alespoň 1 drahokam.",
|
||||
"cantAfford": "Nemůžete zadat tuto odměnu. Kupte si více drahokamů nebo snižte odměnu.",
|
||||
"challengeIdRequired": "„challengeId\" musí být platné UUID.",
|
||||
"winnerIdRequired": "„winnerId\" musí být platné UUID.",
|
||||
"challengeNotFound": "Výzva nenalezena.",
|
||||
"onlyLeaderDeleteChal": "Pouze vůdce výzvy ji může smazat.",
|
||||
"onlyLeaderUpdateChal": "Pouze vůdce výzvy ji může aktualizovat.",
|
||||
"winnerNotFound": "Vítěz s id „<%= userId %>\" nenalezen, nebo se neúčastnil výzvy.",
|
||||
"noCompletedTodosChallenge": "„includeComepletedTodos\" není podporován při plnění výzvy.",
|
||||
"userTasksNoChallengeId": "Pokud \"tasksOwner\" je \"user\" \"challengeId\" nemůže být předána.",
|
||||
"onlyChalLeaderEditTasks": "Úkoly náležící výzvě mohou být změněny pouze vůdcem.",
|
||||
"userAlreadyInChallenge": "Uživatel se již účastní výzvy.",
|
||||
"cantOnlyUnlinkChalTask": "Pouze nefunkční výzvy mohou být odendány.",
|
||||
"shortNameTooShort": "Jméno tagu musí mít alespoň 3 znaky."
|
||||
}
|
||||
@@ -56,8 +56,8 @@
|
||||
"visitHeroes": "Navštiv Sál hrdinů (pomocníci a přispěvatelé)",
|
||||
"conLearn": "Dozvi se více o odměnách přispěvatelům.",
|
||||
"conLearnHow": "Jak přispět programu Habitica",
|
||||
"surveysSingle": "Helped Habitica grow, either by filling out a survey or helping with a major testing effort. Thank you!",
|
||||
"surveysMultiple": "Helped Habitica grow on <%= surveys %> occasions, either by filling out a survey or helping with a major testing effort. Thank you!",
|
||||
"surveysSingle": "Pomohl zemi Habitica růst vyplněním dotazníků nebo usilovným testováním. Děkujeme vám!",
|
||||
"surveysMultiple": "<%= surveys %> krát pomohl zemi Habitica růst vyplněním dotazníků nebo usilovným testováním. Děkujeme vám!",
|
||||
"currentSurvey": "Aktuální dotazník",
|
||||
"surveyWhen": "Odznaky budou rozdány všem účastníkům poté, co budou všechny dotazníky zpracovány ke konci března.",
|
||||
"blurbInbox": "Tady jsou uloženy tvé soukromé zprávy! Zprávu můžeš někomu poslat kliknutím na ikonu obálky vedle jeho jména v Krčmě, Družině nebo chatu Cechu. Pokud jsi obdržel nevhodnou zprávu, měl bys nám poslat její screenshot na Lemoness (<a href=\"mailto:leslie@habitica.com\">leslie@habitica.com</a>)",
|
||||
|
||||
@@ -191,6 +191,8 @@
|
||||
"weaponArmoireBasicLongbowNotes": "Funkční použitý luk. Zvyšuje Sílu o <%= str %>. Začarovaná almara: Základní lučištnický set (předmět 1 ze 3).",
|
||||
"weaponArmoireHabiticanDiplomaText": "Habitican Diploma",
|
||||
"weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 1 of 3).",
|
||||
"weaponArmoireSandySpadeText": "Sandy Spade",
|
||||
"weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Increases Strength by <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
|
||||
"armor": "zbroj",
|
||||
"armorBase0Text": "Obyčejné oblečení",
|
||||
"armorBase0Notes": "Běžné oblečení. Nenabízí žádný bonus.",
|
||||
@@ -402,6 +404,8 @@
|
||||
"armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).",
|
||||
"armorArmoireGraduateRobeText": "Graduate Robe",
|
||||
"armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 2 of 3).",
|
||||
"armorArmoireStripedSwimsuitText": "Striped Swimsuit",
|
||||
"armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
|
||||
"headgear": "Pokrývka hlavy",
|
||||
"headBase0Text": "Žádná přilba",
|
||||
"headBase0Notes": "Žádná pokrývka hlavy",
|
||||
@@ -627,6 +631,8 @@
|
||||
"headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).",
|
||||
"headArmoireGraduateCapText": "Graduate Cap",
|
||||
"headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
|
||||
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
|
||||
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.",
|
||||
"offhand": "štít v ruce",
|
||||
"shieldBase0Text": "Bez štítu v ruce",
|
||||
"shieldBase0Notes": "Bez štítu nebo druhé zbraně.",
|
||||
@@ -732,6 +738,8 @@
|
||||
"shieldArmoireMysticLampNotes": "Osviť i tu nejtemnější jeskyni s touto mystickou lampou! Zvyšuje vnímání o <%= per %>. Začarovaná almara: Nezávislý předmět.",
|
||||
"shieldArmoireFloralBouquetText": "Bouquet o' Flowers",
|
||||
"shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireSandyBucketText": "Sandy Bucket",
|
||||
"shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
|
||||
"back": "Příslušenství na záda",
|
||||
"backBase0Text": "Bez příslušenství na zádech",
|
||||
"backBase0Notes": "Bez příslušenství na zádech.",
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
"resources": "Zdroje",
|
||||
"askQuestionNewbiesGuild": "Položit otázku (Cech nováčků - Newbies Guild)",
|
||||
"tavernTalk": "Rozhovory v krčmě",
|
||||
"tavernAlert1": "Poznámka: Pokud chceš nahlásit chybu, nedělej to tady, vývojáři to neuvidí. Prosím",
|
||||
"tavernAlert2": "použij místo toho GitHub",
|
||||
"tavernAlert1": "To report a bug, visit",
|
||||
"tavernAlert2": "the Report a Bug Guild",
|
||||
"moderatorIntro1": "Moderátoři krčmy a cechu jsou:",
|
||||
"communityGuidelines": "zásady komunity",
|
||||
"communityGuidelinesRead1": "Prosíme, přečti si naše",
|
||||
@@ -158,11 +158,11 @@
|
||||
"guildChatEmpty": "Chat této družiny je prázdný! Napiš zprávu do okna nahoře a začni si povídat.",
|
||||
"possessiveParty": "Družina <%= name %>",
|
||||
"requestAcceptGuidelines": "Pokud chceš přidávat zprávy v Krčmě nebo v chatu v jakékoliv družině nebo cechu, prosíme, nejprve si přečti <%= linkStart %>Zásady komunity<%= linkEnd %> a poté klikni na tlačítko níže na znamení, že jim rozumíš.",
|
||||
"partyUpName": "Party Up",
|
||||
"partyOnName": "Party On",
|
||||
"partyUpName": "Malá družina",
|
||||
"partyOnName": "Velká družina",
|
||||
"partyUpAchievement": "Připojil jsi se k Družině s jiným hráčem! Měj zábavu s porážením příšer a pomáhání si navzájem.",
|
||||
"partyOnAchievement": "Připojil jsi se k Družině s alespoň čtyřmi dalšími hráči! Užij jsi tvoji zvýšenou odpovědnost jak se spojíte s tvými přáteli aby jste porazili vaše nepřítele!",
|
||||
"groupIdRequired": "\"groupId\" must be a valid UUID",
|
||||
"groupIdRequired": "„groupId\" musí být platné UUID",
|
||||
"groupNotFound": "Skupina nenalezena.",
|
||||
"groupTypesRequired": "You must supply a valid \"type\" query string.",
|
||||
"questLeaderCannotLeaveGroup": "Nemůžete opustit družinu, když jste začali výpravu. Nejdříve zrušte výpravu.",
|
||||
@@ -177,6 +177,7 @@
|
||||
"inviteMissingEmail": "Chybějící emailová adresa v pozvánce.",
|
||||
"partyMustbePrivate": "Družiny musí být soukromé.",
|
||||
"userAlreadyInGroup": "Uživatel již je ve skupině.",
|
||||
"cannotInviteSelfToGroup": "You cannot invite yourself to a group.",
|
||||
"userAlreadyInvitedToGroup": "Uživatel byl již pozván do skupiny.",
|
||||
"userAlreadyPendingInvitation": "Uživatel přijal pozvánku.",
|
||||
"userAlreadyInAParty": "Uživatel již je v družině.",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"annoyingFriends": "Otravní přátelé",
|
||||
"annoyingFriendsText": "Byl členy družiny zkoulován <%= snowballs %> krát.",
|
||||
"alarmingFriends": "Strašliví přátelé",
|
||||
"alarmingFriendsText": "Got spooked <%= spookySparkles %> times by party members.",
|
||||
"alarmingFriendsText": "Byl <%= spookySparkles %> krát vystrašen členy skupiny.",
|
||||
"agriculturalFriends": "Zemědělští přátelé",
|
||||
"agriculturalFriendsText": "Byl kamarády transformován <%= seeds %>krát na kytku.",
|
||||
"aquaticFriends": "Podvodní přátelé",
|
||||
|
||||
@@ -22,11 +22,11 @@
|
||||
"ianText": "Vítej v obchodě s Výpravami! Můžeš tu s přáteli využít svitky s výpravami k bojům s monstry. V klidu si prohlédni všechny Výpravy, které tu prodáváme!",
|
||||
"ianBrokenText": "Vítej v obchodě s Výpravami... Můžeš tu s přáteli využít svitky s výpravami k bojům s monstry... V klidu si prohlédni všechny Výpravy, které tu prodáváme...",
|
||||
"missingKeyParam": "\"req.params.key\" is required.",
|
||||
"itemNotFound": "Item \"<%= key %>\" not found.",
|
||||
"cannotBuyItem": "You can't buy this item.",
|
||||
"itemNotFound": "Předmět „<%= key %>\" nenalezen.",
|
||||
"cannotBuyItem": "Tento předmět nelze zakoupit.",
|
||||
"missingTypeKeyEquip": "\"key\" and \"type\" are required parameters.",
|
||||
"missingPetFoodFeed": "\"pet\" and \"food\" are required parameters.",
|
||||
"invalidPetName": "Invalid pet name supplied.",
|
||||
"invalidPetName": "Neplatné jméno mazlíčka.",
|
||||
"missingEggHatchingPotionHatch": "\"egg\" and \"hatchingPotion\" are required parameters.",
|
||||
"invalidTypeEquip": "\"type\" must be one of 'equipped', 'pet', 'mount', 'costume'.",
|
||||
"mustPurchaseToSet": "Musíte koupit <%= val %> k nastavení na <%= key %>.",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"etherealLion": "Éterický lev",
|
||||
"veteranWolf": "Vlk veterán",
|
||||
"veteranTiger": "Tygr veterán",
|
||||
"veteranLion": "Veteran Lion",
|
||||
"veteranLion": "Lev veterán",
|
||||
"cerberusPup": "Štěně Kerbera",
|
||||
"hydra": "Hydra",
|
||||
"mantisShrimp": "Strašek paví",
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
"subDescription": "Nakupuj drahokamy za zlaťáky, získej každý měsíc tajemné předměty, uchovávej si historii svého pokroku, zdvojnásob možnost získaných věcí za den, podpoř vývojáře. Klikni pro více informací.",
|
||||
"buyGemsGold": "Kup drahokamy za zlato",
|
||||
"buyGemsGoldText": "Obchodník Alexander ti prodá drahokamy za cenu <%= gemCost %> zlaťáků za drahokam. Jeho měsíční dodávky jsou zprvu omezeny na <%= gemLimit %> drahokamů za měsíc, ale každé tři měsíce souvislého předplatného se jejich počet navýší o 5 a může dosáhnout maxima až 50 drahokamů za měsíc!",
|
||||
"mustSubscribeToPurchaseGems": "Must subscribe to purchase gems with GP",
|
||||
"reachedGoldToGemCap": "You've reached the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap will reset within the first three days of next month.",
|
||||
"mustSubscribeToPurchaseGems": "Je potřeba předplatné k zakoupení drahokamů za GP",
|
||||
"reachedGoldToGemCap": "Dosáhli jste limitu výměny Zlato=>Drahokamy <%= convCap %> pro tento měsíc. Limit je potřebný k zamezení zneužití nebo farmení. Limit bude zrušen v prvních třech dnech dalšího měsíce.",
|
||||
"retainHistory": "Ponech si další položky historie",
|
||||
"retainHistoryText": "Umožňuje vidět splněné úkoly po delší dobu.",
|
||||
"doubleDrops": "Denně získáš dvakrát více předmětů",
|
||||
@@ -31,7 +31,7 @@
|
||||
"manageSub": "Klikni pro správu předplatného",
|
||||
"cancelSub": "Zrušit předplatné",
|
||||
"canceledSubscription": "Zrušené předplatné",
|
||||
"cancelingSubscription": "Canceling the subscription",
|
||||
"cancelingSubscription": "rušení předplatného",
|
||||
"adminSub": "Administrátorské předplatné",
|
||||
"morePlans": "Více plánů<br>Již brzy",
|
||||
"organizationSub": "Soukromá organizace",
|
||||
@@ -76,9 +76,9 @@
|
||||
"timeTravelersPopover": "Vidíme, že máš mystické přesýpací hodiny, tak pro Tebe rádi budeme cestovat časem! Prosím, vyber si mazlíčka, zvíře, nebo záhadný set předmětů, který se ti líbí. Můžeš si vybrat z minulých setů <a href='http://habitica.wikia.com/wiki/Mystery_Item' target='_blank'>tady</a>! Pokud se ti nelíbí, možná by sis vybral z našich trendy futuristických setů Steampunk předmětů?",
|
||||
"timeTravelersAlreadyOwned": "Gratulujeme! Teď máš vše, co cestovatelé časem nabízejí. Děkujeme za podporu stránek!",
|
||||
"mysticHourglassPopover": "Díky Mystickým Přesýpacím hodinám si můžeš koupit limitované předměty, jako záhadné předměty měsíce nebo odměny z boje se světovými příšerami, z minulosti!",
|
||||
"mysterySetNotFound": "Mystery set not found, or set already owned.",
|
||||
"mysteryItemIsEmpty": "Mystery items are empty",
|
||||
"mysteryItemOpened": "Mystery item opened.",
|
||||
"mysterySetNotFound": "Záhadný set nenalezen nebo ho již vlastníte.",
|
||||
"mysteryItemIsEmpty": "Záhadné předměty jsou prázdné",
|
||||
"mysteryItemOpened": "Záhadný předmět otevřen.",
|
||||
"mysterySet201402": "Okřídlený set poslíčka",
|
||||
"mysterySet201403": "Set lesáka",
|
||||
"mysterySet201404": "Měsíční motýlí set",
|
||||
@@ -105,8 +105,8 @@
|
||||
"mysterySet201601": "Set Šampióna předsevzetí",
|
||||
"mysterySet201602": "Set Lamače srdcí",
|
||||
"mysterySet201603": "Set Šťastného trojlístku",
|
||||
"mysterySet201604": "Leaf Warrior Set",
|
||||
"mysterySet201605": "Marching Bard Set",
|
||||
"mysterySet201604": "Set listového válečníka",
|
||||
"mysterySet201605": "Set pochodujícího barda",
|
||||
"mysterySet301404": "Standardní steampunkový set",
|
||||
"mysterySet301405": "Set steampunkových doplňků",
|
||||
"mysterySetwondercon": "Wondercon",
|
||||
@@ -118,25 +118,25 @@
|
||||
"hourglassBuyItemConfirm": "Koupit tento předmět za 1 přesýpací hodiny?",
|
||||
"petsAlreadyOwned": "Tohoto mazlíčka již máš.",
|
||||
"mountsAlreadyOwned": "Toto zvíře již máš.",
|
||||
"typeNotAllowedHourglass": "Item type not supported for purchase with Mystic Hourglass. Allowed types: <%= allowedTypes %>",
|
||||
"typeNotAllowedHourglass": "Tento typ předmětu nelze zakoupit za Mystické přesýpací hodiny. Povolené typy: <%= allowedTypes %>",
|
||||
"petsNotAllowedHourglass": "Mazlíčka si nelze koupit za mystické přesýpací hodiny.",
|
||||
"mountsNotAllowedHourglass": "Zvíře si nelze koupit za mystické přesýpací hodiny-",
|
||||
"hourglassPurchase": "Koupil sis předmět za mystické přesýpací hodiny.",
|
||||
"hourglassPurchaseSet": "Koupil sis set předmětů za mystické přesýpací hodiny!",
|
||||
"missingUnsubscriptionCode": "Missing unsubscription code.",
|
||||
"missingSubscription": "User does not have a plan subscription",
|
||||
"missingSubscriptionCode": "Missing subscription code. Possible values: basic_earned, basic_3mo, basic_6mo, google_6mo, basic_12mo.",
|
||||
"cannotDeleteActiveAccount": "You have an active subscription, cancel your plan before deleting your account.",
|
||||
"paymentNotSuccessful": "The payment was not successful",
|
||||
"planNotActive": "The plan hasn't activated yet (due to a PayPal bug). It will begin <%= nextBillingDate %>, after which you can cancel to retain your full benefits",
|
||||
"notAllowedHourglass": "Pet/Mount not available for purchase with Mystic Hourglass.",
|
||||
"readCard": "<%= cardType %> has been read",
|
||||
"cardTypeRequired": "Card type required",
|
||||
"cardTypeNotAllowed": "Unknown card type.",
|
||||
"invalidCoupon": "Invalid coupon code.",
|
||||
"couponUsed": "Coupon code already used.",
|
||||
"noSudoAccess": "You don't have sudo access.",
|
||||
"couponCodeRequired": "The coupon code is required.",
|
||||
"eventRequired": "\"req.params.event\" is required.",
|
||||
"countRequired": "\"req.query.count\" is required."
|
||||
"missingUnsubscriptionCode": "Chybějící kód k zrušení předplatného.",
|
||||
"missingSubscription": "Uživatel nemá předplatné",
|
||||
"missingSubscriptionCode": "Chybějící kód předplatitele. Možné hodnoty: basic_earned, basic_3mo, basic_6mo, google_6mo, basic_12mo.",
|
||||
"cannotDeleteActiveAccount": "Máte aktivní předplatné, zrušte si ho před smazáním účtu.",
|
||||
"paymentNotSuccessful": "Zaplacení neproběhlo úspešně",
|
||||
"planNotActive": "Předplatné ještě nebylo aktivováén (vzhledem k PayPal bugu). Bude aktivováno <%= nextBillingDate %>, poté ho můžete zrušit a obdržíte veškeré výhody",
|
||||
"notAllowedHourglass": "Nelze si koupit Mazlíčka nebo Zvíře k osedlání za Mystické přesýpací hodiny.",
|
||||
"readCard": "<%= cardType %> byl přečten",
|
||||
"cardTypeRequired": "Požadován typ karty",
|
||||
"cardTypeNotAllowed": "Neznámý typ karty.",
|
||||
"invalidCoupon": "Neplatný kód kupónu.",
|
||||
"couponUsed": "Kód kupónu byl již použit.",
|
||||
"noSudoAccess": "Nemáte přístup sudo.",
|
||||
"couponCodeRequired": "Je požadován kód kupónu.",
|
||||
"eventRequired": "je požadováno „req.params.event\".",
|
||||
"countRequired": "je požadováno „req.query.count\"."
|
||||
}
|
||||
@@ -126,6 +126,6 @@
|
||||
"tagIdRequired": "\"tagId\" must be a valid UUID corresponding to a tag belonging to the user.",
|
||||
"positionRequired": "Je požadována „pozice\", který musí být číslem.",
|
||||
"cantMoveCompletedTodo": "Nelze pohnout s dokončeným ůkolem.",
|
||||
"directionUpDown": "Je požadován „směr\", který musí být 'nahoru' nebo 'dolu'",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'.",
|
||||
"alreadyTagged": "Tento úkoly jste již označili tímto štítkem."
|
||||
}
|
||||
@@ -167,5 +167,12 @@
|
||||
"backgroundGazeboText": "Gazebo",
|
||||
"backgroundGazeboNotes": "Battle a Gazebo.",
|
||||
"backgroundTreeRootsText": "Tree Roots",
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots."
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots.",
|
||||
"backgrounds062016": "SET 25: Released June 2016",
|
||||
"backgroundLighthouseShoreText": "Lighthouse Shore",
|
||||
"backgroundLighthouseShoreNotes": "Stroll down the Lighthouse Shore.",
|
||||
"backgroundLilypadText": "Lilypad",
|
||||
"backgroundLilypadNotes": "Hop on a Lilypad.",
|
||||
"backgroundWaterfallRockText": "Waterfall Rock",
|
||||
"backgroundWaterfallRockNotes": "Splash on a Waterfall Rock."
|
||||
}
|
||||
@@ -191,6 +191,8 @@
|
||||
"weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).",
|
||||
"weaponArmoireHabiticanDiplomaText": "Habitican Diploma",
|
||||
"weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 1 of 3).",
|
||||
"weaponArmoireSandySpadeText": "Sandy Spade",
|
||||
"weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Increases Strength by <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
|
||||
"armor": "rustning",
|
||||
"armorBase0Text": "Almindeligt tøj",
|
||||
"armorBase0Notes": "Helt normalt tøj. Giver ingen bonusser.",
|
||||
@@ -402,6 +404,8 @@
|
||||
"armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).",
|
||||
"armorArmoireGraduateRobeText": "Graduate Robe",
|
||||
"armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 2 of 3).",
|
||||
"armorArmoireStripedSwimsuitText": "Striped Swimsuit",
|
||||
"armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
|
||||
"headgear": "hovedbeklædning",
|
||||
"headBase0Text": "Ingen Hjelm",
|
||||
"headBase0Notes": "Ingen hovedbeklædning",
|
||||
@@ -627,6 +631,8 @@
|
||||
"headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).",
|
||||
"headArmoireGraduateCapText": "Graduate Cap",
|
||||
"headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
|
||||
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
|
||||
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.",
|
||||
"offhand": "skjoldhånds-udstyr",
|
||||
"shieldBase0Text": "Intet Skjoldhånds-udstyr",
|
||||
"shieldBase0Notes": "Intet skjold eller andet våben.",
|
||||
@@ -732,6 +738,8 @@
|
||||
"shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireFloralBouquetText": "Bouquet o' Flowers",
|
||||
"shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireSandyBucketText": "Sandy Bucket",
|
||||
"shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
|
||||
"back": "Ryg-udstyr",
|
||||
"backBase0Text": "Intet Ryg-udstyr",
|
||||
"backBase0Notes": "Intet Ryg-udstyr.",
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
"resources": "Ressourcer",
|
||||
"askQuestionNewbiesGuild": "Stil et spørgsmål (Newbies Guild)",
|
||||
"tavernTalk": "Værtshuschat",
|
||||
"tavernAlert1": "Obs: hvis du rapporterer en fejl vil udviklerne ikke se det. Brug venligst",
|
||||
"tavernAlert2": "brug Github i stedet",
|
||||
"tavernAlert1": "To report a bug, visit",
|
||||
"tavernAlert2": "the Report a Bug Guild",
|
||||
"moderatorIntro1": "Værtshus- og Klanmoderatorer er:",
|
||||
"communityGuidelines": "Retningslinjer for Fællesskabet",
|
||||
"communityGuidelinesRead1": "Læs venligst vores",
|
||||
@@ -177,6 +177,7 @@
|
||||
"inviteMissingEmail": "Missing email address in invite.",
|
||||
"partyMustbePrivate": "Parties must be private",
|
||||
"userAlreadyInGroup": "User already in that group.",
|
||||
"cannotInviteSelfToGroup": "You cannot invite yourself to a group.",
|
||||
"userAlreadyInvitedToGroup": "User already invited to that group.",
|
||||
"userAlreadyPendingInvitation": "User already pending invitation.",
|
||||
"userAlreadyInAParty": "User already in a party.",
|
||||
|
||||
@@ -126,6 +126,6 @@
|
||||
"tagIdRequired": "\"tagId\" must be a valid UUID corresponding to a tag belonging to the user.",
|
||||
"positionRequired": "\"position\" is required and must be a number.",
|
||||
"cantMoveCompletedTodo": "Can't move a completed todo.",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'.",
|
||||
"alreadyTagged": "The task is already tagged with given tag."
|
||||
}
|
||||
@@ -13,7 +13,7 @@
|
||||
"backgroundOpenWatersText": "Offenes Meer",
|
||||
"backgroundOpenWatersNotes": "Genieße das offene Meer.",
|
||||
"backgroundSeafarerShipText": "Seeschiff",
|
||||
"backgroundSeafarerShipNotes": "Segle an Bord eines Seeschiffes",
|
||||
"backgroundSeafarerShipNotes": "Segle an Bord eines Seeschiffes.",
|
||||
"backgrounds082014": "Set 3: Veröffentlicht im August 2014",
|
||||
"backgroundCloudsText": "Wolken",
|
||||
"backgroundCloudsNotes": "Fliege durch die Wolken.",
|
||||
@@ -37,14 +37,14 @@
|
||||
"backgroundPumpkinPatchNotes": "Schnitze Halloweenkürbisse auf einem Kürbisfeld.",
|
||||
"backgrounds112014": "Set 6: Veröffentlicht im November 2014",
|
||||
"backgroundHarvestFeastText": "Erntedankfest",
|
||||
"backgroundHarvestFeastNotes": "Feiere Erntedankfest",
|
||||
"backgroundHarvestFeastNotes": "Feiere Erntedankfest.",
|
||||
"backgroundStarrySkiesText": "Sternenhimmel",
|
||||
"backgroundStarrySkiesNotes": "Betrachte den Sternenhimmel",
|
||||
"backgroundStarrySkiesNotes": "Betrachte den Sternenhimmel.",
|
||||
"backgroundSunsetMeadowText": "Wiesen im Abendrot",
|
||||
"backgroundSunsetMeadowNotes": "Bewundere die Wiesen im Abendrot",
|
||||
"backgroundSunsetMeadowNotes": "Bewundere die Wiesen im Abendrot.",
|
||||
"backgrounds122014": "Set 7: Veröffentlicht im Dezember 2014",
|
||||
"backgroundIcebergText": "Eisberg",
|
||||
"backgroundIcebergNotes": "Treibe dahin auf einem Eisberg.",
|
||||
"backgroundIcebergNotes": "Treibe auf einem Eisberg dahin.",
|
||||
"backgroundTwinklyLightsText": "Glitzernde Winterlichter",
|
||||
"backgroundTwinklyLightsNotes": "Spaziere unter festlich geschmückten Bäumen herum.",
|
||||
"backgroundSouthPoleText": "Südpol",
|
||||
@@ -72,11 +72,11 @@
|
||||
"backgroundRollingHillsNotes": "Tolle durch die Hügellandschaft.",
|
||||
"backgrounds042015": "Set 11: Veröffentlicht im April 2015",
|
||||
"backgroundCherryTreesText": "Kirschbäume",
|
||||
"backgroundCherryTreesNotes": "Bewundere die blühenden Kirschbäume",
|
||||
"backgroundCherryTreesNotes": "Bewundere die blühenden Kirschbäume.",
|
||||
"backgroundFloralMeadowText": "Blumenwiese",
|
||||
"backgroundFloralMeadowNotes": "Picknicke auf der Blumenwiese",
|
||||
"backgroundFloralMeadowNotes": "Picknicke auf der Blumenwiese.",
|
||||
"backgroundGumdropLandText": "Weingummiland",
|
||||
"backgroundGumdropLandNotes": "Nasche ein wenig vom Weingummiland",
|
||||
"backgroundGumdropLandNotes": "Nasche ein wenig vom Weingummiland.",
|
||||
"backgrounds052015": "Set 12: Veröffentlicht Mai 2015",
|
||||
"backgroundMarbleTempleText": "Marmortempel",
|
||||
"backgroundMarbleTempleNotes": "Posiere vor einem Marmortempel.",
|
||||
@@ -86,7 +86,7 @@
|
||||
"backgroundPagodasNotes": "Erklimme die Spitze einer Pagode.",
|
||||
"backgrounds062015": "Set 13: Veröffentlicht im Juni 2015",
|
||||
"backgroundDriftingRaftText": "Treibendes Floß",
|
||||
"backgroundDriftingRaftNotes": "Paddle auf einem treibenden Floß",
|
||||
"backgroundDriftingRaftNotes": "Paddle auf einem treibenden Floß.",
|
||||
"backgroundShimmeryBubblesText": "Schimmernde Seifenblasen",
|
||||
"backgroundShimmeryBubblesNotes": "Schwebe durch ein Meer aus schimmernden Seifenblasen.",
|
||||
"backgroundIslandWaterfallsText": "Inselwasserfälle",
|
||||
@@ -111,7 +111,7 @@
|
||||
"backgroundStableText": "Habitica-Stall",
|
||||
"backgroundStableNotes": "Pflege Reittiere im Habitica-Stall.",
|
||||
"backgroundTavernText": "Habitica-Gasthaus",
|
||||
"backgroundTavernNotes": "Besuche das Habitica-Gasthaus",
|
||||
"backgroundTavernNotes": "Besuche das Habitica-Gasthaus.",
|
||||
"backgrounds102015": "Set 17: Veröffentlich im Oktober 2015",
|
||||
"backgroundHarvestMoonText": "Erntemond",
|
||||
"backgroundHarvestMoonNotes": "Kichern unter dem Erntemond.",
|
||||
@@ -164,8 +164,15 @@
|
||||
"backgrounds052016": "Set 24: Veröffentlicht im Mai 2016",
|
||||
"backgroundBeehiveText": "Bienenstock",
|
||||
"backgroundBeehiveNotes": "Summe und tanze in einem Bienenstock.",
|
||||
"backgroundGazeboText": "Aussichtspunkt",
|
||||
"backgroundGazeboNotes": "Erklimm einen Aussichtspunkt.",
|
||||
"backgroundGazeboText": "Pavillon",
|
||||
"backgroundGazeboNotes": "Fechte in einem Pavillon.",
|
||||
"backgroundTreeRootsText": "Baumwurzeln",
|
||||
"backgroundTreeRootsNotes": "Erforsche die Baumwurzeln."
|
||||
"backgroundTreeRootsNotes": "Erforsche die Baumwurzeln.",
|
||||
"backgrounds062016": "SET 25: Released June 2016",
|
||||
"backgroundLighthouseShoreText": "Lighthouse Shore",
|
||||
"backgroundLighthouseShoreNotes": "Stroll down the Lighthouse Shore.",
|
||||
"backgroundLilypadText": "Lilypad",
|
||||
"backgroundLilypadNotes": "Hop on a Lilypad.",
|
||||
"backgroundWaterfallRockText": "Waterfall Rock",
|
||||
"backgroundWaterfallRockNotes": "Splash on a Waterfall Rock."
|
||||
}
|
||||
@@ -33,8 +33,8 @@
|
||||
"challengeTagPop": "Wettbewerbe erscheinen als Tag-Liste und Aufgabenbeschreibungen. Also ist es einerseits sinnvoll, oben einen beschreibenden Titel zu wählen, andererseits brauchst Du aber auch eine \"Kurzfassung\". Dazu kannst Du zum Beispiel \"Verliere 5 Kilo in 3 Monaten\" mit \"-5kg\" abkürzen. (Klicke auf das '?' für mehr Informationen).",
|
||||
"challengeDescr": "Beschreibung",
|
||||
"prize": "Preis",
|
||||
"prizePop": "Wenn jemand Deinen Wettbewerb 'gewinnen' kann, dann kannst Du, wenn Du willst, für den Gewinner einen Edelstein-Preis ausschreiben. Maximal kannst Du alle Edelsteine, die Du hast, ausschreiben (und zusätzlich alle Edelsteine der Gilde, wenn Du die Gilde dieses Wettbewerbes gegründet hast). Achtung: Diese Preise können später nicht mehr geändert werden.",
|
||||
"prizePopTavern": "Wenn jemand Deinen Wettbewerb 'gewinnen' kann, dann kannst Du, wenn Du willst, für den Gewinner einen Edelstein-Preis ausschreiben. Maximal kannst Du alle Edelsteine, die Du hast, ausschreiben. Achtung: Diese Preise können später nicht mehr geändert werden und bei Gasthaus-Wettbewerben werden sie nicht ersetzt, wenn der Wettbewerb abgebrochen wird.",
|
||||
"prizePop": "Wenn jemand Deinen Wettbewerb 'gewinnen' kann, dann kannst Du, wenn Du willst, für den Gewinner einen Edelstein-Preis ausschreiben. Maximal kannst Du alle Edelsteine ausschreiben, die Du hast (und zusätzlich alle Edelsteine der Gilde, wenn Du die Gilde dieses Wettbewerbes gegründet hast). Achtung: Diese Preise können später nicht mehr geändert werden.",
|
||||
"prizePopTavern": "Wenn jemand Deinen Wettbewerb 'gewinnen' kann, dann kannst Du, wenn Du willst, für den Gewinner einen Edelstein-Preis ausschreiben. Maximal kannst Du alle Edelsteine ausschreiben, die Du hast. Achtung: Diese Preise können später nicht mehr geändert werden und bei Gasthaus-Wettbewerben werden sie nicht ersetzt, wenn der Wettbewerb abgebrochen wird.",
|
||||
"publicChallenges": "Mindestens 1 Edelstein für <strong> öffentliche Wettbewerbe </strong> (Das verhindert Spam. Wirklich).",
|
||||
"officialChallenge": "Offizieller Habitica-Wettbewerb",
|
||||
"by": "von",
|
||||
@@ -45,8 +45,8 @@
|
||||
"challengeCreated": "Wettbewerb erstellt",
|
||||
"sureDelCha": "Willst Du diesen Wetbewerb wirklich löschen?",
|
||||
"sureDelChaTavern": "Willst Du diesen Wetbewerb wirklich löschen? Deine Edelsteine werden nicht erstattet.",
|
||||
"removeTasks": "Aufgabe entfernen",
|
||||
"keepTasks": "Aufgabe behalten",
|
||||
"removeTasks": "Aufgaben entfernen",
|
||||
"keepTasks": "Aufgaben behalten",
|
||||
"closeCha": "Wettbewerb schließen und ...",
|
||||
"leaveCha": "Wettbewerb verlassen und ...",
|
||||
"challengedOwnedFilterHeader": "Besitz",
|
||||
@@ -56,10 +56,10 @@
|
||||
"backToChallenges": "Zurück zu allen Wettbewerben",
|
||||
"prizeValue": "<%= gemcount %> <%= gemicon %> Preis",
|
||||
"clone": "Klonen",
|
||||
"challengeNotEnoughGems": "Du besitzt nicht genügend Edelsteine, um diesen Wettbewerb zu erstellen.",
|
||||
"noPermissionEditChallenge": "Du hast keine Berechtigung, um diesen Wettbewerb zu ändern.",
|
||||
"noPermissionDeleteChallenge": "Du hast keine Berechtigung, um diesen Wettbewerb zu löschen.",
|
||||
"noPermissionCloseChallenge": "Du hast keine Berechtigung, um diesen Wettbewerb zu schließen.",
|
||||
"challengeNotEnoughGems": "Du hast nicht genügend Edelsteine, um diesen Wettbewerb zu erstellen.",
|
||||
"noPermissionEditChallenge": "Du hast keine Berechtigung diesen Wettbewerb zu ändern.",
|
||||
"noPermissionDeleteChallenge": "Du hast keine Berechtigung diesen Wettbewerb zu löschen.",
|
||||
"noPermissionCloseChallenge": "Du hast keine Berechtigung diesen Wettbewerb zu schließen.",
|
||||
"congratulations": "Gratulation!",
|
||||
"hurray": "Hurra!",
|
||||
"noChallengeOwner": "Kein Besitzer",
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
"imageUrl": "Bild-Url",
|
||||
"inventory": "Inventar",
|
||||
"social": "Soziales",
|
||||
"lvl": "Lvl.",
|
||||
"lvl": "Lvl",
|
||||
"buffed": "Bonusse aktiviert",
|
||||
"bodyBody": "Körper",
|
||||
"bodySize": "Größe",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"potionText": "Heiltrank",
|
||||
"potionNotes": "Heilt um 15 Lebenspunkte (wird sofort angewendet)",
|
||||
"potionNotes": "Heilt 15 Lebenspunkte (wird sofort angewendet)",
|
||||
"armoireText": "Verzauberter Schrank",
|
||||
"armoireNotesFull": "Öffne den Schrank um zufällig spezielle Gegenstände, Erfahrung oder Nahrung zu erhalten! Verbleibende Ausrüstungsgegenstände:",
|
||||
"armoireLastItem": "Du hast das letzte Stück seltener Ausrüstung im verzauberten Schrank gefunden.",
|
||||
|
||||
@@ -56,8 +56,8 @@
|
||||
"visitHeroes": "Besuche die Halle der Helden (Mitwirkende und Träger)",
|
||||
"conLearn": "Erfahre mehr über Belohnungen für Mitwirkende",
|
||||
"conLearnHow": "Erfahre mehr, wie Du bei Habitica mitwirken kannst.",
|
||||
"surveysSingle": "Helped Habitica grow, either by filling out a survey or helping with a major testing effort. Thank you!",
|
||||
"surveysMultiple": "Helped Habitica grow on <%= surveys %> occasions, either by filling out a survey or helping with a major testing effort. Thank you!",
|
||||
"surveysSingle": "Half HabitRPG zu wachsen, entweder durch das Ausfüllen einer Umfrage oder durch grosse Hilfe beim Testen. Danke!",
|
||||
"surveysMultiple": "Half Habitica <%= surveys %> mal zu wachsen, durch das Ausfüllen einer Umfrage oder durch grosse Hilfe beim Testen. Danke!",
|
||||
"currentSurvey": "Aktuelle Umfrage",
|
||||
"surveyWhen": "Das Abzeichen wird gegen Ende März verliehen, wenn alle Umfragen bearbeitet wurden.",
|
||||
"blurbInbox": "Hier werden Deine privaten Nachrichten (PN) gespeichert! Du kannst jemandem eine Nachricht schreiben, indem Du auf den Umschlag neben seinem Namen im Gasthaus-, Gruppen- oder Gildenchat klickst. Falls Du eine unangemessene PN erhältst, schicke eine E-Mail mit einem Screenshot davon an Lemoness\n(<a href=\"mailto:leslie@habitica.com\">leslie@habitica.com</a>)",
|
||||
|
||||
@@ -191,6 +191,8 @@
|
||||
"weaponArmoireBasicLongbowNotes": "Ein nützlicher, gebrauchter Bogen. Erhöht Stärke um <%= str %>.\nVerzauberter Schrank: Standard-Bogenschützenset (Gegenstand 1 von 3).",
|
||||
"weaponArmoireHabiticanDiplomaText": "Habiticaner-Diplom",
|
||||
"weaponArmoireHabiticanDiplomaNotes": "Ein wohlverdientes Zertifikat -- gut gemacht! Erhöht Intelligenz um <&=int %>. Verzauberter Schrank: Doktoranden-Set (Gegenstand 1 von 3).",
|
||||
"weaponArmoireSandySpadeText": "Sandy Spade",
|
||||
"weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Increases Strength by <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
|
||||
"armor": "Rüstung",
|
||||
"armorBase0Text": "Schlichte Kleidung",
|
||||
"armorBase0Notes": "Gewöhnliches Kleidungsstück. Gewährt keinen Attributbonus.",
|
||||
@@ -368,8 +370,8 @@
|
||||
"armorMystery201603Notes": "Dieser Anzug wurde aus tausenden vierblättrigen Kleeblättern zusammengenäht! Gewährt keinen Attributbonus. Abonnentengegenstand, März 2016.",
|
||||
"armorMystery201604Text": "Blätter-Rüstung",
|
||||
"armorMystery201604Notes": "Auch Du kannst ein kleiner, aber furchteinflössender Blätterhaufen sein. Gewährt keinen Attributbonus. April 2006 Abonnentengegenstand.",
|
||||
"armorMystery201605Text": "Marching Bard Uniform",
|
||||
"armorMystery201605Notes": "Unlike the traditional bards who join adventuring parties, bards who join Habitican marching bands are known for grand parades, not dungeon raids. Confers no benefit. May 2016 Subscriber Item.",
|
||||
"armorMystery201605Text": "Blaskappelen-Bardenuniform",
|
||||
"armorMystery201605Notes": "Im Gegensatz zum gewöhnlichen Barden, der Abenteurergruppen beitritt, sind Barden in Habiticaner-Blaskappellen bekannt für ihre grossartigen Paraden statt Verlies-Überfällen. Gewährt keinen Attributbonus. Mai 2016 Abonnentengegenstand.",
|
||||
"armorMystery301404Text": "Steampunkanzug",
|
||||
"armorMystery301404Notes": "Adrett und schneidig, hoho! Gewährt keinen Attributbonus. Februar 3015 Abonnentengegenstand.",
|
||||
"armorArmoireLunarArmorText": "Beruhigende Mondrüstung",
|
||||
@@ -402,6 +404,8 @@
|
||||
"armorArmoireBasicArcherArmorNotes": "Diese Tarnweste lässt Dich unbemerkt durch den Wald schleichen. Erhöht Wahrnehmung um <%= per %>.\nVerzauberter Schrank: Standard-Bogenschützenset (Gegenstand 2 von 3).",
|
||||
"armorArmoireGraduateRobeText": "Doktorenrobe",
|
||||
"armorArmoireGraduateRobeNotes": "Gratulation! Diese Robe hängt schwer mit all dem Wissen, das Du angehäuft hast. Erhöht Intelligenz um <&=int %>. Verzauberter Schrank: Doktoranden-Set (Gegenstand 2 von 3).",
|
||||
"armorArmoireStripedSwimsuitText": "Striped Swimsuit",
|
||||
"armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
|
||||
"headgear": "Kopfschutz",
|
||||
"headBase0Text": "Kein Helm.",
|
||||
"headBase0Notes": "Keine Kopfbedeckung.",
|
||||
@@ -575,8 +579,8 @@
|
||||
"headMystery201603Notes": "Dieser Zylinder ist ein magischer Glücksbringer. Gewährt keinen Attributbonus. Abonnentengegenstand, März 2016.",
|
||||
"headMystery201604Text": "Blumenkrone",
|
||||
"headMystery201604Notes": "Diese geflochtenen Blumen bilden einen erstaunlich robusten Helm! Gewährt keinen Attributbonus. April 2006 Abonnentengegenstand.",
|
||||
"headMystery201605Text": "Marching Bard Hat",
|
||||
"headMystery201605Notes": "Seventy-six dragons led the big parade, with a hundred and ten gryphons close at hand! Confers no benefit. May 2016 Subscriber Item.",
|
||||
"headMystery201605Text": "Blaskappelen-Bardenhut",
|
||||
"headMystery201605Notes": "Sechundsiebzig Drachen führten die grosse Parade an, zusammen mit hundertzehn Greifen! Gewährt keinen Attributbonus. Mai 2016 Abonnentengegenstand.",
|
||||
"headMystery301404Text": "Schicker Zylinder",
|
||||
"headMystery301404Notes": "Ein schicker Zylinder für die feinsten Gentlemänner und -frauen! Januar 3015 Abonnentengegenstand. Gewährt keinen Attributbonus.",
|
||||
"headMystery301405Text": "Einfacher Zylinder",
|
||||
@@ -627,6 +631,8 @@
|
||||
"headArmoireBasicArcherCapNotes": "Kein Bogenschütze ist vollständig ohne diese leichte Kappe.\nErhöht Wahrnehmung um <%= per %>.\nVerzauberter Schrank: Standard-Bogenschützenset (Gegenstand 3 von 3).",
|
||||
"headArmoireGraduateCapText": "Doktorandenhut",
|
||||
"headArmoireGraduateCapNotes": "Gratulation! Für Dein tiefes Nachdenken hast Du diese Denkkappe erhalten. Erhöht Intelligenz um <&=int %>. Verzauberter Schrank: Doktoranden-Set (Gegenstand 3 von 3).",
|
||||
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
|
||||
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.",
|
||||
"offhand": "Schildhand-Gegenstand",
|
||||
"shieldBase0Text": "Keine Schildhand-Ausrüstung",
|
||||
"shieldBase0Notes": "Kein Schild oder keine zweite Waffe.",
|
||||
@@ -732,6 +738,8 @@
|
||||
"shieldArmoireMysticLampNotes": "Erleuchte die dunkelsten Höhlen mit dieser Wunderlampe! Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Unabhängiger Gegenstand.",
|
||||
"shieldArmoireFloralBouquetText": "Blumenstrauss",
|
||||
"shieldArmoireFloralBouquetNotes": "Hilft nicht viel in der Schlacht, aber sind er nicht einfach schön? Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Unabhängiger Gegenstand.",
|
||||
"shieldArmoireSandyBucketText": "Sandy Bucket",
|
||||
"shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
|
||||
"back": "Rückenschmuck",
|
||||
"backBase0Text": "Kein Rückenschmuck",
|
||||
"backBase0Notes": "Kein Rückenschmuck.",
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
"resources": "Ressourcen",
|
||||
"askQuestionNewbiesGuild": "Stelle eine Frage (Die Newbies-Gilde)",
|
||||
"tavernTalk": "Gasthausgespräche",
|
||||
"tavernAlert1": "Achtung: Wenn Du einen Bug meldest, sehen die Entwickler es hier nicht. Bitte",
|
||||
"tavernAlert2": "nutze stattdessen GitHub",
|
||||
"tavernAlert1": "To report a bug, visit",
|
||||
"tavernAlert2": "the Report a Bug Guild",
|
||||
"moderatorIntro1": "Die Moderatoren des Gasthauses und der Gruppe sind:",
|
||||
"communityGuidelines": "Community-Richtlinien",
|
||||
"communityGuidelinesRead1": "Bitte lies unsere",
|
||||
@@ -177,6 +177,7 @@
|
||||
"inviteMissingEmail": "Fehlende E-Mail-Adresse zum Einladen.",
|
||||
"partyMustbePrivate": "Gruppen müssen privat sein",
|
||||
"userAlreadyInGroup": "Benutzer bereits in dieser Gruppe.",
|
||||
"cannotInviteSelfToGroup": "You cannot invite yourself to a group.",
|
||||
"userAlreadyInvitedToGroup": "Benutzer bereits zu dieser Gruppe eingeladen.",
|
||||
"userAlreadyPendingInvitation": "Benutzereinladung noch unbeantwortet.",
|
||||
"userAlreadyInAParty": "Benutzer bereits in einer Gruppe.",
|
||||
|
||||
@@ -106,7 +106,7 @@
|
||||
"mysterySet201602": "Herzensbrecher-Set",
|
||||
"mysterySet201603": "Glücksklee-Set",
|
||||
"mysterySet201604": "Blattkrieger-Set",
|
||||
"mysterySet201605": "Marching Bard Set",
|
||||
"mysterySet201605": "Blaskappellen-Bardenset",
|
||||
"mysterySet301404": "Steampunk-Standard-Set",
|
||||
"mysterySet301405": "Steampunk-Zubehör-Set",
|
||||
"mysterySetwondercon": "Wondercon",
|
||||
|
||||
@@ -126,6 +126,6 @@
|
||||
"tagIdRequired": "\"tagId\" muss eine gültige UUID sein, passend zu einem dem Benutzer zugeordneten Tag.",
|
||||
"positionRequired": "\"position\" wird benötigt und muss eine Zahl sein.",
|
||||
"cantMoveCompletedTodo": "Abgeschlossenes To-Do kann nicht verschoben werden.",
|
||||
"directionUpDown": "\"Richtung\" wird benötigt und muss 'up' oder 'down' sein.",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'.",
|
||||
"alreadyTagged": "Die Aufgabe besitzt bereits dieses Tag."
|
||||
}
|
||||
@@ -191,5 +191,13 @@
|
||||
"backgroundGazeboText": "Gazebo",
|
||||
"backgroundGazeboNotes": "Battle a Gazebo.",
|
||||
"backgroundTreeRootsText": "Tree Roots",
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots."
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots.",
|
||||
|
||||
"backgrounds062016": "SET 25: Released June 2016",
|
||||
"backgroundLighthouseShoreText": "Lighthouse Shore",
|
||||
"backgroundLighthouseShoreNotes": "Stroll down the Lighthouse Shore.",
|
||||
"backgroundLilypadText": "Lilypad",
|
||||
"backgroundLilypadNotes": "Hop on a Lilypad.",
|
||||
"backgroundWaterfallRockText": "Waterfall Rock",
|
||||
"backgroundWaterfallRockNotes": "Splash on a Waterfall Rock."
|
||||
}
|
||||
|
||||
@@ -210,6 +210,8 @@
|
||||
"weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).",
|
||||
"weaponArmoireHabiticanDiplomaText": "Habitican Diploma",
|
||||
"weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 1 of 3).",
|
||||
"weaponArmoireSandySpadeText": "Sandy Spade",
|
||||
"weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Increases Strength by <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
|
||||
|
||||
"armor": "armor",
|
||||
|
||||
@@ -441,6 +443,8 @@
|
||||
"armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).",
|
||||
"armorArmoireGraduateRobeText": "Graduate Robe",
|
||||
"armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 2 of 3).",
|
||||
"armorArmoireStripedSwimsuitText": "Striped Swimsuit",
|
||||
"armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
|
||||
|
||||
"headgear": "headgear",
|
||||
|
||||
@@ -686,6 +690,8 @@
|
||||
"headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).",
|
||||
"headArmoireGraduateCapText": "Graduate Cap",
|
||||
"headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
|
||||
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
|
||||
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.",
|
||||
|
||||
"offhand": "shield-hand item",
|
||||
|
||||
@@ -809,6 +815,8 @@
|
||||
"shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireFloralBouquetText": "Bouquet o' Flowers",
|
||||
"shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireSandyBucketText": "Sandy Bucket",
|
||||
"shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
|
||||
|
||||
"back": "Back Accessory",
|
||||
"backBase0Text": "No Back Accessory",
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
"resources": "Resources",
|
||||
"askQuestionNewbiesGuild": "Ask a Question (Newbies Guild)",
|
||||
"tavernTalk": "Tavern Talk",
|
||||
"tavernAlert1": "Note: if you're reporting a bug, the developers won't see it here. Please",
|
||||
"tavernAlert2": "use GitHub instead",
|
||||
"tavernAlert1": "To report a bug, visit",
|
||||
"tavernAlert2": "the Report a Bug Guild",
|
||||
"moderatorIntro1": "Tavern and guild moderators are: ",
|
||||
"communityGuidelines": "Community Guidelines",
|
||||
"communityGuidelinesRead1": "Please read our",
|
||||
@@ -177,6 +177,7 @@
|
||||
"inviteMissingEmail": "Missing email address in invite.",
|
||||
"partyMustbePrivate": "Parties must be private",
|
||||
"userAlreadyInGroup": "User already in that group.",
|
||||
"cannotInviteSelfToGroup": "You cannot invite yourself to a group.",
|
||||
"userAlreadyInvitedToGroup": "User already invited to that group.",
|
||||
"userAlreadyPendingInvitation": "User already pending invitation.",
|
||||
"userAlreadyInAParty": "User already in a party.",
|
||||
|
||||
@@ -28,9 +28,6 @@
|
||||
"medium": "Medium",
|
||||
"hard": "Hard",
|
||||
"attributes": "Attributes",
|
||||
"physical": "Physical",
|
||||
"mental": "Mental",
|
||||
"otherExamples": "Eg, professional pursuits, hobbies, financial, etc.",
|
||||
"progress": "Progress",
|
||||
"daily": "Daily",
|
||||
"dailies": "Dailies",
|
||||
@@ -126,6 +123,10 @@
|
||||
"tagIdRequired": "\"tagId\" must be a valid UUID corresponding to a tag belonging to the user.",
|
||||
"positionRequired": "\"position\" is required and must be a number.",
|
||||
"cantMoveCompletedTodo": "Can't move a completed todo.",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'",
|
||||
"alreadyTagged": "The task is already tagged with given tag."
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'.",
|
||||
"alreadyTagged": "The task is already tagged with given tag.",
|
||||
"strengthExample": "Relating to exercise and activity",
|
||||
"intelligenceExample": "Relating to academic or mentally challenging pursuits",
|
||||
"perceptionExample": "Relating to work or financial tasks",
|
||||
"constitutionExample": "Relating to health, wellness, and social interaction"
|
||||
}
|
||||
|
||||
@@ -167,5 +167,12 @@
|
||||
"backgroundGazeboText": "Gazebo",
|
||||
"backgroundGazeboNotes": "Battle a Gazebo.",
|
||||
"backgroundTreeRootsText": "Tree Roots",
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots."
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots.",
|
||||
"backgrounds062016": "SET 25: Released June 2016",
|
||||
"backgroundLighthouseShoreText": "Lighthouse Shore",
|
||||
"backgroundLighthouseShoreNotes": "Stroll down the Lighthouse Shore.",
|
||||
"backgroundLilypadText": "Lilypad",
|
||||
"backgroundLilypadNotes": "Hop on a Lilypad.",
|
||||
"backgroundWaterfallRockText": "Waterfall Rock",
|
||||
"backgroundWaterfallRockNotes": "Splash on a Waterfall Rock."
|
||||
}
|
||||
@@ -191,6 +191,8 @@
|
||||
"weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).",
|
||||
"weaponArmoireHabiticanDiplomaText": "Habitican Diploma",
|
||||
"weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 1 of 3).",
|
||||
"weaponArmoireSandySpadeText": "Sandy Spade",
|
||||
"weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Increases Strength by <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
|
||||
"armor": "armor",
|
||||
"armorBase0Text": "Plain Slops",
|
||||
"armorBase0Notes": "Ordinary slops. Don't benefit ye.",
|
||||
@@ -402,6 +404,8 @@
|
||||
"armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).",
|
||||
"armorArmoireGraduateRobeText": "Graduate Robe",
|
||||
"armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 2 of 3).",
|
||||
"armorArmoireStripedSwimsuitText": "Striped Swimsuit",
|
||||
"armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
|
||||
"headgear": "headgear",
|
||||
"headBase0Text": "No Helm",
|
||||
"headBase0Notes": "No headgear.",
|
||||
@@ -627,6 +631,8 @@
|
||||
"headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).",
|
||||
"headArmoireGraduateCapText": "Graduate Cap",
|
||||
"headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
|
||||
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
|
||||
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.",
|
||||
"offhand": "shield-hand item",
|
||||
"shieldBase0Text": "No Shield-Hand Equipment",
|
||||
"shieldBase0Notes": "No shield or second weapon.",
|
||||
@@ -732,6 +738,8 @@
|
||||
"shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireFloralBouquetText": "Bouquet o' Flowers",
|
||||
"shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireSandyBucketText": "Sandy Bucket",
|
||||
"shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
|
||||
"back": "Back Accessory",
|
||||
"backBase0Text": "No Back Accessory",
|
||||
"backBase0Notes": "No Back Accessory.",
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
"resources": "Resources",
|
||||
"askQuestionNewbiesGuild": "Ask a Question (Th' Newbies Alliance)",
|
||||
"tavernTalk": "Pub Chatter",
|
||||
"tavernAlert1": "Ahoy! If ye arrr reporting a bug, th' developers won't see it 'ere. Please",
|
||||
"tavernAlert2": "use GitHub instead",
|
||||
"tavernAlert1": "To report a bug, visit",
|
||||
"tavernAlert2": "the Report a Bug Guild",
|
||||
"moderatorIntro1": "Pub an' alliance seadogs be:",
|
||||
"communityGuidelines": "Rules o' th' Sea",
|
||||
"communityGuidelinesRead1": "Please read our",
|
||||
@@ -177,6 +177,7 @@
|
||||
"inviteMissingEmail": "Missing email address in invite.",
|
||||
"partyMustbePrivate": "Parties must be private",
|
||||
"userAlreadyInGroup": "User already in that group.",
|
||||
"cannotInviteSelfToGroup": "You cannot invite yourself to a group.",
|
||||
"userAlreadyInvitedToGroup": "User already invited to that group.",
|
||||
"userAlreadyPendingInvitation": "User already pending invitation.",
|
||||
"userAlreadyInAParty": "User already in a party.",
|
||||
|
||||
@@ -126,6 +126,6 @@
|
||||
"tagIdRequired": "\"tagId\" must be a valid UUID corresponding to a tag belonging to the user.",
|
||||
"positionRequired": "\"position\" is required and must be a number.",
|
||||
"cantMoveCompletedTodo": "Can't move a completed todo.",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'.",
|
||||
"alreadyTagged": "The task is already tagged with given tag."
|
||||
}
|
||||
@@ -167,5 +167,12 @@
|
||||
"backgroundGazeboText": "Gazebo",
|
||||
"backgroundGazeboNotes": "Battle a Gazebo.",
|
||||
"backgroundTreeRootsText": "Tree Roots",
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots."
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots.",
|
||||
"backgrounds062016": "SET 25: Released June 2016",
|
||||
"backgroundLighthouseShoreText": "Lighthouse Shore",
|
||||
"backgroundLighthouseShoreNotes": "Stroll down the Lighthouse Shore.",
|
||||
"backgroundLilypadText": "Lilypad",
|
||||
"backgroundLilypadNotes": "Hop on a Lilypad.",
|
||||
"backgroundWaterfallRockText": "Waterfall Rock",
|
||||
"backgroundWaterfallRockNotes": "Splash on a Waterfall Rock."
|
||||
}
|
||||
@@ -191,6 +191,8 @@
|
||||
"weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).",
|
||||
"weaponArmoireHabiticanDiplomaText": "Habitican Diploma",
|
||||
"weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 1 of 3).",
|
||||
"weaponArmoireSandySpadeText": "Sandy Spade",
|
||||
"weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Increases Strength by <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
|
||||
"armor": "armour",
|
||||
"armorBase0Text": "Plain Clothing",
|
||||
"armorBase0Notes": "Ordinary clothing. Confers no benefit.",
|
||||
@@ -402,6 +404,8 @@
|
||||
"armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).",
|
||||
"armorArmoireGraduateRobeText": "Academic Robe",
|
||||
"armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 2 of 3).",
|
||||
"armorArmoireStripedSwimsuitText": "Striped Swimsuit",
|
||||
"armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
|
||||
"headgear": "headgear",
|
||||
"headBase0Text": "No Helm",
|
||||
"headBase0Notes": "No headgear.",
|
||||
@@ -627,6 +631,8 @@
|
||||
"headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).",
|
||||
"headArmoireGraduateCapText": "Mortar Board",
|
||||
"headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
|
||||
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
|
||||
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.",
|
||||
"offhand": "shield-hand item",
|
||||
"shieldBase0Text": "No Shield-Hand Equipment",
|
||||
"shieldBase0Notes": "No shield or second weapon.",
|
||||
@@ -732,6 +738,8 @@
|
||||
"shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireFloralBouquetText": "Bouquet o' Flowers",
|
||||
"shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireSandyBucketText": "Sandy Bucket",
|
||||
"shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
|
||||
"back": "Back Accessory",
|
||||
"backBase0Text": "No Back Accessory",
|
||||
"backBase0Notes": "No Back Accessory.",
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
"resources": "Resources",
|
||||
"askQuestionNewbiesGuild": "Ask a Question (Newbies Guild)",
|
||||
"tavernTalk": "Tavern Talk",
|
||||
"tavernAlert1": "Note: if you're reporting a bug, the developers won't see it here. Please",
|
||||
"tavernAlert2": "use GitHub instead",
|
||||
"tavernAlert1": "To report a bug, visit",
|
||||
"tavernAlert2": "the Report a Bug Guild",
|
||||
"moderatorIntro1": "Tavern and guild moderators are:",
|
||||
"communityGuidelines": "Community Guidelines",
|
||||
"communityGuidelinesRead1": "Please read our",
|
||||
@@ -177,6 +177,7 @@
|
||||
"inviteMissingEmail": "Missing email address in invite.",
|
||||
"partyMustbePrivate": "Parties must be private.",
|
||||
"userAlreadyInGroup": "User already in that group.",
|
||||
"cannotInviteSelfToGroup": "You cannot invite yourself to a group.",
|
||||
"userAlreadyInvitedToGroup": "User already invited to that group.",
|
||||
"userAlreadyPendingInvitation": "User already pending invitation.",
|
||||
"userAlreadyInAParty": "User already in a party.",
|
||||
|
||||
@@ -126,6 +126,6 @@
|
||||
"tagIdRequired": "\"tagId\" must be a valid UUID corresponding to a tag belonging to the user.",
|
||||
"positionRequired": "\"position\" is required and must be a number.",
|
||||
"cantMoveCompletedTodo": "Can't move a completed to-do.",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'.",
|
||||
"alreadyTagged": "The task is already tagged with given tag."
|
||||
}
|
||||
@@ -167,5 +167,12 @@
|
||||
"backgroundGazeboText": "Kiosko",
|
||||
"backgroundGazeboNotes": "Pelea en un Kiosko.",
|
||||
"backgroundTreeRootsText": "Raíces de árbol",
|
||||
"backgroundTreeRootsNotes": "Explora las raíces del árbol."
|
||||
"backgroundTreeRootsNotes": "Explora las raíces del árbol.",
|
||||
"backgrounds062016": "SET 25: Released June 2016",
|
||||
"backgroundLighthouseShoreText": "Lighthouse Shore",
|
||||
"backgroundLighthouseShoreNotes": "Stroll down the Lighthouse Shore.",
|
||||
"backgroundLilypadText": "Lilypad",
|
||||
"backgroundLilypadNotes": "Hop on a Lilypad.",
|
||||
"backgroundWaterfallRockText": "Waterfall Rock",
|
||||
"backgroundWaterfallRockNotes": "Splash on a Waterfall Rock."
|
||||
}
|
||||
@@ -66,17 +66,18 @@
|
||||
"noChallengeOwnerPopover": "Este desafío no tiene dueño porque la persona que lo creó ha eliminado su cuenta.",
|
||||
"challengeMemberNotFound": "User not found among challenge's members",
|
||||
"onlyGroupLeaderChal": "Only the group leader can create challenges",
|
||||
"tavChalsMinPrize": "Prize must be at least 1 Gem for Tavern challenges.",
|
||||
"tavChalsMinPrize": "El premio debe ser al menos 1 Gema para los desafíos de Taberna.",
|
||||
"cantAfford": "You can't afford this prize. Purchase more gems or lower the prize amount.",
|
||||
"challengeIdRequired": "\"challengeId\" must be a valid UUID.",
|
||||
"winnerIdRequired": "\"winnerId\" must be a valid UUID.",
|
||||
"challengeNotFound": "Challenge not found.",
|
||||
"winnerIdRequired": "\"winnerId\" debe ser un UUID válido.",
|
||||
"challengeNotFound": "Desafío no encontrado.",
|
||||
"onlyLeaderDeleteChal": "Only the challenge leader can delete it.",
|
||||
"onlyLeaderUpdateChal": "Only the challenge leader can update it.",
|
||||
"winnerNotFound": "Winner with id \"<%= userId %>\" not found or not part of the challenge.",
|
||||
"noCompletedTodosChallenge": "\"includeComepletedTodos\" is not supported when fetching a challenge tasks.",
|
||||
"noCompletedTodosChallenge": "\"includeComepletedTodos\" is not supported when fetching challenge tasks.",
|
||||
"userTasksNoChallengeId": "When \"tasksOwner\" is \"user\" \"challengeId\" can't be passed.",
|
||||
"onlyChalLeaderEditTasks": "Tasks belonging to a challenge can only be edited by the leader.",
|
||||
"userAlreadyInChallenge": "User is already participating in this challenge.",
|
||||
"cantOnlyUnlinkChalTask": "Only broken challenges tasks can be unlinked."
|
||||
"cantOnlyUnlinkChalTask": "Only broken challenges tasks can be unlinked.",
|
||||
"shortNameTooShort": "El nombre de la etiqueta debe tener al menos 3 caracteres."
|
||||
}
|
||||
@@ -56,7 +56,7 @@
|
||||
"visitHeroes": "Visite el Salón de Héroes (colaboradores y patrocinadores)",
|
||||
"conLearn": "Aprenda más acerca de las recompensas de colaborador",
|
||||
"conLearnHow": "Aprenda cómo contribuir a Habitica",
|
||||
"surveysSingle": "Helped Habitica grow, either by filling out a survey or helping with a major testing effort. Thank you!",
|
||||
"surveysSingle": "Ayudaste a Habitica a crecer, mediante una encuesta o ayudando a ",
|
||||
"surveysMultiple": "Helped Habitica grow on <%= surveys %> occasions, either by filling out a survey or helping with a major testing effort. Thank you!",
|
||||
"currentSurvey": "Encuesta Actual",
|
||||
"surveyWhen": "Este logro será concedido a todos los participantes cuando la encuesta haya sido procesada a finales de marzo.",
|
||||
|
||||
@@ -191,6 +191,8 @@
|
||||
"weaponArmoireBasicLongbowNotes": "Un útil arco de segunda mano. Incrementa tu Fuerza un <%= str %>. Armario Encantado: Juego Básico de Arquero (Artículo 1 de 3).",
|
||||
"weaponArmoireHabiticanDiplomaText": "Habitican Diploma",
|
||||
"weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 1 of 3).",
|
||||
"weaponArmoireSandySpadeText": "Sandy Spade",
|
||||
"weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Increases Strength by <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
|
||||
"armor": "armadura",
|
||||
"armorBase0Text": "Ropa normal",
|
||||
"armorBase0Notes": "Ropa normal. No otorga ningún beneficio.",
|
||||
@@ -402,6 +404,8 @@
|
||||
"armorArmoireBasicArcherArmorNotes": "Este chaleco de camuflaje te permite pasar desapercibido en los bosques. Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto Básico de Arquero (Artículo 2 de 3).",
|
||||
"armorArmoireGraduateRobeText": "Graduate Robe",
|
||||
"armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 2 of 3).",
|
||||
"armorArmoireStripedSwimsuitText": "Striped Swimsuit",
|
||||
"armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
|
||||
"headgear": "cubrecabeza",
|
||||
"headBase0Text": "Sin casco",
|
||||
"headBase0Notes": "Sin equipo de cabeza.",
|
||||
@@ -573,10 +577,10 @@
|
||||
"headMystery201602Notes": "Esconde tu identidad de todos tus admiradores. No otorga ningún beneficio. Artículo de suscriptor de febrero de 2016.",
|
||||
"headMystery201603Text": "Sombrero de Suerte",
|
||||
"headMystery201603Notes": "Esta galera es un amuleto mágico para la buena suerte. No otorga ningún beneficio. Artículo de Suscriptor de Marzo 2016.",
|
||||
"headMystery201604Text": "Crown o' Flowers",
|
||||
"headMystery201604Notes": "These woven flowers make a surprisingly strong helm! Confers no benefit. April 2016 Subscriber Item.",
|
||||
"headMystery201605Text": "Marching Bard Hat",
|
||||
"headMystery201605Notes": "Seventy-six dragons led the big parade, with a hundred and ten gryphons close at hand! Confers no benefit. May 2016 Subscriber Item.",
|
||||
"headMystery201604Text": "Corona de flores",
|
||||
"headMystery201604Notes": "¡Estas flores entrelazadas hacen un yelmo sorprendentemente robusto! Sin beneficios. Artículo de suscriptor de abril de 2016.",
|
||||
"headMystery201605Text": "Sombrero de Bardo marchoso",
|
||||
"headMystery201605Notes": "¡Setenta y seis dragones guían el desfile, con ciento diez grifos a su lado! Sin beneficios. Artículo de suscriptor de mayo de 2016.",
|
||||
"headMystery301404Text": "Sombrero de copa sofisticado",
|
||||
"headMystery301404Notes": "¡Un sofisticado sombrero de copa solo para los más refinados caballeros! No otorga ningún beneficio. Artículo de Suscriptor de Enero del 3015",
|
||||
"headMystery301405Text": "Sombrero de copa básico",
|
||||
@@ -625,8 +629,10 @@
|
||||
"headArmoireMinerHelmetNotes": "Protege tu cabeza de las tareas que te están cayendo! Aumenta la Inteligencia <%= int %>. Armario Encantado: Kit del Minero (Objeto 1 de 3).",
|
||||
"headArmoireBasicArcherCapText": "Gorra Básica de Arquero",
|
||||
"headArmoireBasicArcherCapNotes": "¡Ningún arquero estaría completo sin un distinguido gorro! Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto Básico de Arquero (Artículo 3 de 3).",
|
||||
"headArmoireGraduateCapText": "Graduate Cap",
|
||||
"headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
|
||||
"headArmoireGraduateCapText": "Gorra de graduado",
|
||||
"headArmoireGraduateCapNotes": "¡Felicidades! Tus elaboradas ideas te hacen ganar esta gorra de pensar. Aumenta la inteligencia en <%= int %>. Armadura Encantada: Set de Graduado(Artículo 3 de 3).",
|
||||
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
|
||||
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.",
|
||||
"offhand": "objeto para la mano del escudo",
|
||||
"shieldBase0Text": "Sin equipamiento en la mano del escudo",
|
||||
"shieldBase0Notes": "Sin escudo o arma secundaria.",
|
||||
@@ -732,6 +738,8 @@
|
||||
"shieldArmoireMysticLampNotes": "Ilumina las cuevas más oscuras con esta lámpara mística! Aumenta Percepción <%= per %>. Armario Encantado: Objeto Independiente.",
|
||||
"shieldArmoireFloralBouquetText": "Bouquet o' Flowers",
|
||||
"shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireSandyBucketText": "Sandy Bucket",
|
||||
"shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
|
||||
"back": "Accesorio en la Espalda",
|
||||
"backBase0Text": "Sin Accesorio en la Espalda",
|
||||
"backBase0Notes": "Sin Accesorio en la Espalda",
|
||||
@@ -836,19 +844,19 @@
|
||||
"eyewear": "Gafas",
|
||||
"eyewearBase0Text": "Sin Gafas.",
|
||||
"eyewearBase0Notes": "Sin Gafas.",
|
||||
"eyewearSpecialBlackTopFrameText": "Black Standard Eyeglasses",
|
||||
"eyewearSpecialBlackTopFrameText": "Gafas simples negras.",
|
||||
"eyewearSpecialBlackTopFrameNotes": "Glasses with a black frame above the lenses. Confers no benefit.",
|
||||
"eyewearSpecialBlueTopFrameText": "Blue Standard Eyeglasses",
|
||||
"eyewearSpecialBlueTopFrameText": "Gafas simples azules.",
|
||||
"eyewearSpecialBlueTopFrameNotes": "Glasses with a blue frame above the lenses. Confers no benefit.",
|
||||
"eyewearSpecialGreenTopFrameText": "Green Standard Eyeglasses",
|
||||
"eyewearSpecialGreenTopFrameText": "Gafas simples verdes.",
|
||||
"eyewearSpecialGreenTopFrameNotes": "Glasses with a green frame above the lenses. Confers no benefit.",
|
||||
"eyewearSpecialPinkTopFrameText": "Pink Standard Eyeglasses",
|
||||
"eyewearSpecialPinkTopFrameText": "Gafas simples rosas.",
|
||||
"eyewearSpecialPinkTopFrameNotes": "Glasses with a pink frame above the lenses. Confers no benefit.",
|
||||
"eyewearSpecialRedTopFrameText": "Red Standard Eyeglasses",
|
||||
"eyewearSpecialRedTopFrameText": "Gafas simples rojas.",
|
||||
"eyewearSpecialRedTopFrameNotes": "Glasses with a red frame above the lenses. Confers no benefit.",
|
||||
"eyewearSpecialWhiteTopFrameText": "White Standard Eyeglasses",
|
||||
"eyewearSpecialWhiteTopFrameText": "Gafas simples blancas.",
|
||||
"eyewearSpecialWhiteTopFrameNotes": "Glasses with a white frame above the lenses. Confers no benefit.",
|
||||
"eyewearSpecialYellowTopFrameText": "Yellow Standard Eyeglasses",
|
||||
"eyewearSpecialYellowTopFrameText": "Gafas simples amarillas.",
|
||||
"eyewearSpecialYellowTopFrameNotes": "Glasses with a yellow frame above the lenses. Confers no benefit.",
|
||||
"eyewearSpecialSummerRogueText": "Parche Picaresco",
|
||||
"eyewearSpecialSummerRogueNotes": "¡No hace falta ser un diablillo para apreciar lo distinguido que es! No otorga ningún beneficio. Equipo de Verano 2014 Edición Limitada",
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
"resources": "Recursos",
|
||||
"askQuestionNewbiesGuild": "Preguntas (gremio de novatos)",
|
||||
"tavernTalk": "Conversaciones de Taberna",
|
||||
"tavernAlert1": "Nota: Si estás informando sobre un error, los desarrolladores no van a verlo aquí. Por favor,",
|
||||
"tavernAlert2": "usar GitHub",
|
||||
"tavernAlert1": "To report a bug, visit",
|
||||
"tavernAlert2": "the Report a Bug Guild",
|
||||
"moderatorIntro1": "Los moderadores de la taberna y gremiales son:",
|
||||
"communityGuidelines": "Normas de la Comunidad",
|
||||
"communityGuidelinesRead1": "Por favor lee nuestro",
|
||||
@@ -177,6 +177,7 @@
|
||||
"inviteMissingEmail": "Missing email address in invite.",
|
||||
"partyMustbePrivate": "Parties must be private",
|
||||
"userAlreadyInGroup": "User already in that group.",
|
||||
"cannotInviteSelfToGroup": "You cannot invite yourself to a group.",
|
||||
"userAlreadyInvitedToGroup": "User already invited to that group.",
|
||||
"userAlreadyPendingInvitation": "User already pending invitation.",
|
||||
"userAlreadyInAParty": "User already in a party.",
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"ianText": "¡Bienvenido a la Tienda de Misiones! Aquí puedes usar los Pergaminos de Misión para combatir monstruos con tus amigos. ¡Echa un vistazo al magnífico catálogo de Pergaminos de Misión que puedes encontrar a la derecha!",
|
||||
"ianBrokenText": "Te damos la bienvenida a la Tienda de Misiones. Aquí podrás usar tus Pergaminos de misión para combatir monstruos con tus amigos. Asegúrate de echar un vistazo a nuestra gran colección de Pergaminos de misión a la venta.",
|
||||
"missingKeyParam": "\"req.params.key\" is required.",
|
||||
"itemNotFound": "Item \"<%= key %>\" not found.",
|
||||
"itemNotFound": "Objeto \"<%= key %>\" no encontrado.",
|
||||
"cannotBuyItem": "You can't buy this item.",
|
||||
"missingTypeKeyEquip": "\"key\" and \"type\" are required parameters.",
|
||||
"missingPetFoodFeed": "\"pet\" and \"food\" are required parameters.",
|
||||
@@ -34,7 +34,7 @@
|
||||
"keyRequired": "Key is required",
|
||||
"notAccteptedType": "Type must be in [eggs, hatchingPotions, food, quests, gear]",
|
||||
"contentKeyNotFound": "Key not found for Content <%= type %>",
|
||||
"plusOneGem": "+1 Gem",
|
||||
"plusOneGem": "+1 Gema.",
|
||||
"typeNotSellable": "Type is not sellable. Must be one of the following <%= acceptedTypes %>",
|
||||
"userItemsKeyNotFound": "Key not found for user.items <%= type %>",
|
||||
"pathRequired": "Path string is required",
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
"spellSpecialSnowballAuraNotes": "¡Lanza una bola de nieve a un miembro de tu grupo! ¿Que podría salir mal? Dura hasta el final del día de ese miembro.",
|
||||
"spellSpecialSaltText": "Sal",
|
||||
"spellSpecialSaltNotes": "Alguien te ha lanzado una bola de nieve. Ja Ja, muy gracioso. ¡Ahora quítame esto de encima!",
|
||||
"spellSpecialSpookySparklesText": "Spooky Sparkles",
|
||||
"spellSpecialSpookySparklesText": "Brillantina espeluznante",
|
||||
"spellSpecialSpookySparklesNotes": "Turn a friend into a floating blanket with eyes!",
|
||||
"spellSpecialOpaquePotionText": "Poción Opaco",
|
||||
"spellSpecialOpaquePotionNotes": "Cancela los efectos de la brillantina espeluznante.",
|
||||
@@ -48,9 +48,9 @@
|
||||
"spellSpecialSandText": "Arena",
|
||||
"spellSpecialSandNotes": "Cancela los efectos de la espuma de mar",
|
||||
"spellNotFound": "Skill \"<%= spellId %>\" not found.",
|
||||
"partyNotFound": "Party not found",
|
||||
"targetIdUUID": "\"targetId\" must be a valid User ID.",
|
||||
"partyNotFound": "Grupo no encontrado.",
|
||||
"targetIdUUID": "\"targetId\" debe ser un ID de Usuario válido.",
|
||||
"challengeTasksNoCast": "Casting a skill on challenge tasks is not allowed.",
|
||||
"spellNotOwned": "You don't own this skill.",
|
||||
"spellLevelTooHigh": "You must be level <%= level %> to use this skill."
|
||||
"spellNotOwned": "No posees esta habilidad.",
|
||||
"spellLevelTooHigh": "Debes ser nivel <%= level %> para usar esta habilidad."
|
||||
}
|
||||
@@ -4,7 +4,7 @@
|
||||
"subDescription": "Comprar Joyas con Oro",
|
||||
"buyGemsGold": "Comprar Gemas con oro",
|
||||
"buyGemsGoldText": "Alejandro el Mercader le venderá Joyas por <%= gemCost %> por joya. Sus envíos mensuales tienen un límite de <%= gemLimit %> Joyas por mes. Sin embargo, este límite aumenta cada mes en 5 Joyas por cada tres meses de suscripción consecutiva, ¡hasta un máximo de 50 Joyas al mes!",
|
||||
"mustSubscribeToPurchaseGems": "Must subscribe to purchase gems with GP",
|
||||
"mustSubscribeToPurchaseGems": "Debes estar suscrito para conseguir gemas con oro.",
|
||||
"reachedGoldToGemCap": "You've reached the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap will reset within the first three days of next month.",
|
||||
"retainHistory": "Retener entradas adicionales al historial",
|
||||
"retainHistoryText": "Hace que las tareas completadas y el historial de tareas estén disponibles durante más tiempo.",
|
||||
|
||||
@@ -126,6 +126,6 @@
|
||||
"tagIdRequired": "\"tagId\" must be a valid UUID corresponding to a tag belonging to the user.",
|
||||
"positionRequired": "\"position\" is required and must be a number.",
|
||||
"cantMoveCompletedTodo": "Can't move a completed todo.",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'",
|
||||
"directionUpDown": "\"direction\" is required and must be 'up' or 'down'.",
|
||||
"alreadyTagged": "The task is already tagged with given tag."
|
||||
}
|
||||
@@ -161,11 +161,18 @@
|
||||
"backgroundGiantFlowersNotes": "Diviértete sobre flores gigantes.",
|
||||
"backgroundRainbowsEndText": "Final del arco iris",
|
||||
"backgroundRainbowsEndNotes": "Descubre oro al final del arco iris.",
|
||||
"backgrounds052016": "SET 24: Released May 2016",
|
||||
"backgrounds052016": "CONJUNTO 24: Emitido en mayo 2016",
|
||||
"backgroundBeehiveText": "Beehive",
|
||||
"backgroundBeehiveNotes": "Buzz and dance in a Beehive.",
|
||||
"backgroundGazeboText": "Gazebo",
|
||||
"backgroundGazeboNotes": "Battle a Gazebo.",
|
||||
"backgroundTreeRootsText": "Tree Roots",
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots."
|
||||
"backgroundTreeRootsNotes": "Explore the Tree Roots.",
|
||||
"backgrounds062016": "SET 25: Released June 2016",
|
||||
"backgroundLighthouseShoreText": "Lighthouse Shore",
|
||||
"backgroundLighthouseShoreNotes": "Stroll down the Lighthouse Shore.",
|
||||
"backgroundLilypadText": "Lilypad",
|
||||
"backgroundLilypadNotes": "Hop on a Lilypad.",
|
||||
"backgroundWaterfallRockText": "Waterfall Rock",
|
||||
"backgroundWaterfallRockNotes": "Splash on a Waterfall Rock."
|
||||
}
|
||||
@@ -110,7 +110,7 @@
|
||||
"mage": "Mago",
|
||||
"mystery": "Misterio",
|
||||
"changeClass": "Cambiar clase, devolver puntos de atributo",
|
||||
"lvl10ChangeClass": "To change class you must be at least level 10.",
|
||||
"lvl10ChangeClass": "Para cambiar de clase, debes ser al menos nivel 10.",
|
||||
"levelPopover": "Con cada nivel consigues un punto para asignar a un atributo de tu elección. Lo puedes asignar manualmente o dejar que el juego decida por ti usando una de las opciones de Asignación Automática.",
|
||||
"unallocated": "Puntos de Atributo no asignados",
|
||||
"haveUnallocated": "Tienes <%= points %> Punto(s) de Atributo no asignado(s).",
|
||||
|
||||
@@ -191,6 +191,8 @@
|
||||
"weaponArmoireBasicLongbowNotes": "Un arco útil de segunda mano. Incrementa la Fuerza por <%=str%>. Armario Encantado: Conjunto Básico de Arquero (Artículo 1 de 3).",
|
||||
"weaponArmoireHabiticanDiplomaText": "Diploma Habiticano",
|
||||
"weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 1 of 3).",
|
||||
"weaponArmoireSandySpadeText": "Sandy Spade",
|
||||
"weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Increases Strength by <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
|
||||
"armor": "armadura",
|
||||
"armorBase0Text": "Ropa Simple",
|
||||
"armorBase0Notes": "Ropa común. No otorga ningún beneficio.",
|
||||
@@ -402,6 +404,8 @@
|
||||
"armorArmoireBasicArcherArmorNotes": "Este chaleco de camuflaje te permite pasar desapercibido en los bosques. Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto Básico de Arquero (Artículo 2 de 3).",
|
||||
"armorArmoireGraduateRobeText": "Túnica de graduado",
|
||||
"armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 2 of 3).",
|
||||
"armorArmoireStripedSwimsuitText": "Striped Swimsuit",
|
||||
"armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
|
||||
"headgear": "equipamiento para la cabeza",
|
||||
"headBase0Text": "Sin yelmo",
|
||||
"headBase0Notes": "Sin equipamiento para la cabeza.",
|
||||
@@ -573,7 +577,7 @@
|
||||
"headMystery201602Notes": "Protege tu identidad de todos tus admiradores. No otorga ningún beneficio. Artículo de Suscriptor de Febrero 2016. ",
|
||||
"headMystery201603Text": "Sombrero de la Suerte",
|
||||
"headMystery201603Notes": "Esta galera es un amuleto mágico para la buena suerte. No otorga ningún beneficio. Artículo de Suscriptor de Marzo 2016.",
|
||||
"headMystery201604Text": "Crown o' Flowers",
|
||||
"headMystery201604Text": "Corona de flores",
|
||||
"headMystery201604Notes": "These woven flowers make a surprisingly strong helm! Confers no benefit. April 2016 Subscriber Item.",
|
||||
"headMystery201605Text": "Marching Bard Hat",
|
||||
"headMystery201605Notes": "Seventy-six dragons led the big parade, with a hundred and ten gryphons close at hand! Confers no benefit. May 2016 Subscriber Item.",
|
||||
@@ -625,8 +629,10 @@
|
||||
"headArmoireMinerHelmetNotes": "¡Protege tu cabeza de las tareas que caen! Incrementa la Inteligencia por <%= int %>. Armario Encantado: Conjunto de Minero (Artículo 1 de 3).",
|
||||
"headArmoireBasicArcherCapText": "Gorro Básico de Arquero",
|
||||
"headArmoireBasicArcherCapNotes": "¡Ningún arquero estaría completo sin un distinguido gorro! Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto Básico de Arquero (Artículo 3 de 3).",
|
||||
"headArmoireGraduateCapText": "Graduate Cap",
|
||||
"headArmoireGraduateCapText": "Birrete de graduacíon",
|
||||
"headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
|
||||
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
|
||||
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.",
|
||||
"offhand": "artículo adicional",
|
||||
"shieldBase0Text": "Sin equipamiento adicional",
|
||||
"shieldBase0Notes": "Sin escudo o arma secundaria.",
|
||||
@@ -730,8 +736,10 @@
|
||||
"shieldArmoireDragonTamerShieldNotes": "Distrae a tus enemigos con este escudo con forma de dragón. Incrementa la Percepción por <%= per %>. Armario Encantado: Conjunto de Domador de Dragones (Artículo 2 de 3).",
|
||||
"shieldArmoireMysticLampText": "Lámpara Mística",
|
||||
"shieldArmoireMysticLampNotes": "¡Ilumina las cuevas más oscuras con esta lámpara mística! Incrementa la Percepción por <%= per %>. Armario Encantado: Artículo Independiente.",
|
||||
"shieldArmoireFloralBouquetText": "Bouquet o' Flowers",
|
||||
"shieldArmoireFloralBouquetText": "Arreglo de flores",
|
||||
"shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
"shieldArmoireSandyBucketText": "Sandy Bucket",
|
||||
"shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
|
||||
"back": "Accesorio para espalda",
|
||||
"backBase0Text": "Sin accesorio para espalda",
|
||||
"backBase0Notes": "Sin accesorio para espalda.",
|
||||
@@ -836,7 +844,7 @@
|
||||
"eyewear": "Accesorios para ojos",
|
||||
"eyewearBase0Text": "Sin accesorios para ojos",
|
||||
"eyewearBase0Notes": "Sin accesorios para ojos.",
|
||||
"eyewearSpecialBlackTopFrameText": "Black Standard Eyeglasses",
|
||||
"eyewearSpecialBlackTopFrameText": "Lentes estándar negros",
|
||||
"eyewearSpecialBlackTopFrameNotes": "Glasses with a black frame above the lenses. Confers no benefit.",
|
||||
"eyewearSpecialBlueTopFrameText": "Blue Standard Eyeglasses",
|
||||
"eyewearSpecialBlueTopFrameNotes": "Glasses with a blue frame above the lenses. Confers no benefit.",
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
"resources": "Recursos",
|
||||
"askQuestionNewbiesGuild": "Haz una Pregunta (Gremio de los Novatos)",
|
||||
"tavernTalk": "Conversaciones de Taberna",
|
||||
"tavernAlert1": "Nota: Si estás reportando sobre un error, los desarrolladores no lo verán aquí. Por favor,",
|
||||
"tavernAlert2": "mejor utiliza GitHub",
|
||||
"tavernAlert1": "To report a bug, visit",
|
||||
"tavernAlert2": "the Report a Bug Guild",
|
||||
"moderatorIntro1": "Los moderadores de la taberna y del gremio son:",
|
||||
"communityGuidelines": "Normas de la Comunidad",
|
||||
"communityGuidelinesRead1": "Por favor lee nuestras",
|
||||
@@ -177,6 +177,7 @@
|
||||
"inviteMissingEmail": "Missing email address in invite.",
|
||||
"partyMustbePrivate": "Parties must be private",
|
||||
"userAlreadyInGroup": "User already in that group.",
|
||||
"cannotInviteSelfToGroup": "You cannot invite yourself to a group.",
|
||||
"userAlreadyInvitedToGroup": "User already invited to that group.",
|
||||
"userAlreadyPendingInvitation": "User already pending invitation.",
|
||||
"userAlreadyInAParty": "User already in a party.",
|
||||
|
||||