Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d7aa448676 | |||
| 96492e5a0e | |||
| e3757994b9 | |||
| 2e4481fc1f | |||
| c41b0b3028 | |||
| 1c40972607 | |||
| c4be9a274c | |||
| 593149abe6 | |||
| 98de7f634d | |||
| a459e54586 | |||
| 7cc705ffcd | |||
| 10a4dc5128 | |||
| ee1f95bb67 | |||
| 0fad23ad80 | |||
| 05f6c6816f | |||
| df005d1f6b | |||
| 8c59014b05 | |||
| aa227f9861 | |||
| 4525fa4401 | |||
| 19e88448b7 | |||
| 1ffa6359a9 | |||
| b9bdc3aff9 | |||
| 37f2e5e002 | |||
| 24904df79a | |||
| 10f4884505 | |||
| 1b73c5ac0b | |||
| c3d76c0e23 | |||
| b7362f6c1a | |||
| 277224e4f9 | |||
| 217cf493ec | |||
| 10030b5281 | |||
| 8d596ca5cd | |||
| 9a8c34f780 | |||
| 2dad540d43 | |||
| e70ebde392 | |||
| 04b4e63e80 | |||
| 03794f292d |
@@ -0,0 +1,108 @@
|
||||
/* eslint-disable no-console */
|
||||
const MIGRATION_NAME = '20210216_pet_group_achievements';
|
||||
import { model as User } from '../../../website/server/models/user';
|
||||
|
||||
const progressCount = 1000;
|
||||
let count = 0;
|
||||
|
||||
async function updateUser (user) {
|
||||
count++;
|
||||
|
||||
const set = {
|
||||
migration: MIGRATION_NAME,
|
||||
};
|
||||
|
||||
if (user && user.items && user.items.pets) {
|
||||
const pets = user.items.pets;
|
||||
if (pets['Dragon-Base']
|
||||
&& pets['Dragon-CottonCandyBlue']
|
||||
&& pets['Dragon-CottonCandyPink']
|
||||
&& pets['Dragon-Desert']
|
||||
&& pets['Dragon-Golden']
|
||||
&& pets['Dragon-Red']
|
||||
&& pets['Dragon-Shade']
|
||||
&& pets['Dragon-Skeleton']
|
||||
&& pets['Dragon-White']
|
||||
&& pets['Dragon-Zombie']
|
||||
&& pets['FlyingPig-Base']
|
||||
&& pets['FlyingPig-CottonCandyBlue']
|
||||
&& pets['FlyingPig-CottonCandyPink']
|
||||
&& pets['FlyingPig-Desert']
|
||||
&& pets['FlyingPig-Golden']
|
||||
&& pets['FlyingPig-Red']
|
||||
&& pets['FlyingPig-Shade']
|
||||
&& pets['FlyingPig-Skeleton']
|
||||
&& pets['FlyingPig-White']
|
||||
&& pets['FlyingPig-Zombie']
|
||||
&& pets['Gryphon-Base']
|
||||
&& pets['Gryphon-CottonCandyBlue']
|
||||
&& pets['Gryphon-CottonCandyPink']
|
||||
&& pets['Gryphon-Desert']
|
||||
&& pets['Gryphon-Golden']
|
||||
&& pets['Gryphon-Red']
|
||||
&& pets['Gryphon-Shade']
|
||||
&& pets['Gryphon-Skeleton']
|
||||
&& pets['Gryphon-White']
|
||||
&& pets['Gryphon-Zombie']
|
||||
&& pets['SeaSerpent-Base']
|
||||
&& pets['SeaSerpent-CottonCandyBlue']
|
||||
&& pets['SeaSerpent-CottonCandyPink']
|
||||
&& pets['SeaSerpent-Desert']
|
||||
&& pets['SeaSerpent-Golden']
|
||||
&& pets['SeaSerpent-Red']
|
||||
&& pets['SeaSerpent-Shade']
|
||||
&& pets['SeaSerpent-Skeleton']
|
||||
&& pets['SeaSerpent-White']
|
||||
&& pets['SeaSerpent-Zombie']
|
||||
&& pets['Unicorn-Base']
|
||||
&& pets['Unicorn-CottonCandyBlue']
|
||||
&& pets['Unicorn-CottonCandyPink']
|
||||
&& pets['Unicorn-Desert']
|
||||
&& pets['Unicorn-Golden']
|
||||
&& pets['Unicorn-Red']
|
||||
&& pets['Unicorn-Shade']
|
||||
&& pets['Unicorn-Skeleton']
|
||||
&& pets['Unicorn-White']
|
||||
&& pets['Unicorn-Zombie']) {
|
||||
set['achievements.legendaryBestiary'] = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (count % progressCount === 0) console.warn(`${count} ${user._id}`);
|
||||
|
||||
return await User.update({ _id: user._id }, { $set: set }).exec();
|
||||
}
|
||||
|
||||
export default async function processUsers () {
|
||||
let query = {
|
||||
migration: { $ne: MIGRATION_NAME },
|
||||
'auth.timestamps.loggedin': { $gt: new Date('2021-02-01') },
|
||||
};
|
||||
|
||||
const fields = {
|
||||
_id: 1,
|
||||
items: 1,
|
||||
};
|
||||
|
||||
while (true) { // eslint-disable-line no-constant-condition
|
||||
const users = await User // eslint-disable-line no-await-in-loop
|
||||
.find(query)
|
||||
.limit(250)
|
||||
.sort({_id: 1})
|
||||
.select(fields)
|
||||
.lean()
|
||||
.exec();
|
||||
|
||||
if (users.length === 0) {
|
||||
console.warn('All appropriate users found and modified.');
|
||||
console.warn(`\n${count} users processed\n`);
|
||||
break;
|
||||
} else {
|
||||
query._id = {
|
||||
$gt: users[users.length - 1]._id,
|
||||
};
|
||||
}
|
||||
|
||||
await Promise.all(users.map(updateUser)); // eslint-disable-line no-await-in-loop
|
||||
}
|
||||
};
|
||||
@@ -18,7 +18,7 @@ function setUpServer () {
|
||||
setUpServer();
|
||||
|
||||
// Replace this with your migration
|
||||
const processUsers = require('./archive/2021/20210129_habit_birthday').default;
|
||||
const processUsers = require().default;
|
||||
|
||||
processUsers()
|
||||
.then(() => {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "habitica",
|
||||
"version": "4.179.0",
|
||||
"version": "4.184.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "habitica",
|
||||
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
|
||||
"version": "4.179.0",
|
||||
"version": "4.184.1",
|
||||
"main": "./website/server/index.js",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
|
||||
@@ -169,7 +169,6 @@ describe('shared.ops.hatch', () => {
|
||||
|
||||
it('awards Back to Basics achievement', () => {
|
||||
user.items.pets = {
|
||||
'Wolf-Base': 5,
|
||||
'TigerCub-Base': 5,
|
||||
'PandaCub-Base': 10,
|
||||
'LionCub-Base': 5,
|
||||
@@ -180,14 +179,13 @@ describe('shared.ops.hatch', () => {
|
||||
'BearCub-Base': 5,
|
||||
};
|
||||
user.items.eggs = { Wolf: 1 };
|
||||
user.items.hatchingPotions = { Spooky: 1 };
|
||||
hatch(user, { params: { egg: 'Wolf', hatchingPotion: 'Spooky' } });
|
||||
user.items.hatchingPotions = { Base: 1 };
|
||||
hatch(user, { params: { egg: 'Wolf', hatchingPotion: 'Base' } });
|
||||
expect(user.achievements.backToBasics).to.eql(true);
|
||||
});
|
||||
|
||||
it('awards Dust Devil achievement', () => {
|
||||
user.items.pets = {
|
||||
'Wolf-Desert': 5,
|
||||
'TigerCub-Desert': 5,
|
||||
'PandaCub-Desert': 10,
|
||||
'LionCub-Desert': 5,
|
||||
@@ -198,8 +196,8 @@ describe('shared.ops.hatch', () => {
|
||||
'BearCub-Desert': 5,
|
||||
};
|
||||
user.items.eggs = { Wolf: 1 };
|
||||
user.items.hatchingPotions = { Spooky: 1 };
|
||||
hatch(user, { params: { egg: 'Wolf', hatchingPotion: 'Spooky' } });
|
||||
user.items.hatchingPotions = { Desert: 1 };
|
||||
hatch(user, { params: { egg: 'Wolf', hatchingPotion: 'Desert' } });
|
||||
expect(user.achievements.dustDevil).to.eql(true);
|
||||
});
|
||||
|
||||
|
||||
@@ -1,48 +1,48 @@
|
||||
.achievement-alien {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1659px -1480px;
|
||||
background-position: -1671px -1480px;
|
||||
width: 24px;
|
||||
height: 26px;
|
||||
}
|
||||
.achievement-alien2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -480px -1549px;
|
||||
background-position: -529px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-allThatGlitters2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -812px -1480px;
|
||||
background-position: -873px -1480px;
|
||||
width: 64px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-allYourBase2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -877px -1480px;
|
||||
background-position: -938px -1480px;
|
||||
width: 64px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-alpha2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -529px -1549px;
|
||||
background-position: -578px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-aridAuthority2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -942px -1480px;
|
||||
background-position: -1003px -1480px;
|
||||
width: 64px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-armor2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -578px -1549px;
|
||||
background-position: -627px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-backToBasics2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1267px -1480px;
|
||||
background-position: -1328px -1480px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
@@ -54,31 +54,31 @@
|
||||
}
|
||||
.achievement-bewilder2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -627px -1549px;
|
||||
background-position: -676px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-birthday2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -676px -1549px;
|
||||
background-position: -725px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-boneCollector2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1316px -1480px;
|
||||
background-position: -1377px -1480px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-boot2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -725px -1549px;
|
||||
background-position: -774px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-bow2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -774px -1549px;
|
||||
background-position: -823px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
@@ -90,85 +90,85 @@
|
||||
}
|
||||
.achievement-burnout2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -823px -1549px;
|
||||
background-position: -872px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-cactus2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -872px -1549px;
|
||||
background-position: -921px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-cake2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -921px -1549px;
|
||||
background-position: -970px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-cave2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -970px -1549px;
|
||||
background-position: -1019px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-challenge2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1019px -1549px;
|
||||
background-position: -1068px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-comment2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1068px -1549px;
|
||||
background-position: -1117px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-completedTask2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1365px -1480px;
|
||||
background-position: -1426px -1480px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-congrats2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1117px -1549px;
|
||||
background-position: -1166px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-costumeContest2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1166px -1549px;
|
||||
background-position: -1215px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-createdTask2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1414px -1480px;
|
||||
background-position: -1475px -1480px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-dilatory2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1215px -1549px;
|
||||
background-position: -1264px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-dustDevil2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1463px -1480px;
|
||||
background-position: -1524px -1480px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-dysheartener2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1264px -1549px;
|
||||
background-position: -1313px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-fedPet2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1512px -1480px;
|
||||
background-position: -1573px -1480px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
@@ -180,61 +180,61 @@
|
||||
}
|
||||
.achievement-friends2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1313px -1549px;
|
||||
background-position: -1362px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-getwell2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1362px -1549px;
|
||||
background-position: -1411px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-goodAsGold2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1561px -1480px;
|
||||
background-position: -1622px -1480px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-goodluck2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1411px -1549px;
|
||||
background-position: -1460px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-greeting2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1460px -1549px;
|
||||
background-position: -1509px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-guild2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1509px -1549px;
|
||||
background-position: -1558px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-habitBirthday2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1558px -1549px;
|
||||
background-position: -1607px -1549px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-habiticaDay2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1607px -1549px;
|
||||
background-position: 0px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-hatchedPet2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1610px -1480px;
|
||||
background-position: -284px -1549px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-heart2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: 0px -1628px;
|
||||
background-position: -49px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
@@ -246,13 +246,13 @@
|
||||
}
|
||||
.achievement-karaoke-2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -49px -1628px;
|
||||
background-position: -98px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-karaoke {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1659px -1507px;
|
||||
background-position: -1671px -1507px;
|
||||
width: 24px;
|
||||
height: 26px;
|
||||
}
|
||||
@@ -262,87 +262,93 @@
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.achievement-lostMasterclasser2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -98px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-mindOverMatter2x {
|
||||
.achievement-legendaryBestiary2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -751px -1480px;
|
||||
width: 60px;
|
||||
height: 64px;
|
||||
}
|
||||
.achievement-monsterMagus2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -284px -1549px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-ninja2x {
|
||||
.achievement-lostMasterclasser2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -147px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-npc2x {
|
||||
.achievement-mindOverMatter2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -196px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
background-position: -812px -1480px;
|
||||
width: 60px;
|
||||
height: 64px;
|
||||
}
|
||||
.achievement-nye2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -245px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-partyOn2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -294px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-partyUp2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -343px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-pearlyPro2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1007px -1480px;
|
||||
width: 64px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-perfect2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -392px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-primedForPainting2x {
|
||||
.achievement-monsterMagus2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -333px -1549px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-purchasedEquipment2x {
|
||||
.achievement-ninja2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -382px -1549px;
|
||||
background-position: -196px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-npc2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -245px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-nye2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -294px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-partyOn2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -343px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-partyUp2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -392px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-pearlyPro2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1068px -1480px;
|
||||
width: 64px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-rat2x {
|
||||
.achievement-perfect2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -441px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-primedForPainting2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -382px -1549px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-purchasedEquipment2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -431px -1549px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-rat2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -490px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-redLetterDay2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1072px -1480px;
|
||||
background-position: -1133px -1480px;
|
||||
width: 64px;
|
||||
height: 56px;
|
||||
}
|
||||
@@ -354,79 +360,79 @@
|
||||
}
|
||||
.achievement-royally-loyal2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -490px -1628px;
|
||||
background-position: -539px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-seafoam2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -539px -1628px;
|
||||
background-position: -588px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-seeingRed2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -431px -1549px;
|
||||
background-position: -480px -1549px;
|
||||
width: 48px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-shield2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -588px -1628px;
|
||||
background-position: -637px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-shinySeed2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -637px -1628px;
|
||||
background-position: -686px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-skeletonCrew2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1137px -1480px;
|
||||
background-position: -1198px -1480px;
|
||||
width: 64px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-snowball2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -686px -1628px;
|
||||
background-position: -735px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-spookySparkles2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -735px -1628px;
|
||||
background-position: -784px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-stoikalm2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -784px -1628px;
|
||||
background-position: -833px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-sun2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -833px -1628px;
|
||||
background-position: -882px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-sword2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -882px -1628px;
|
||||
background-position: -931px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-thankyou2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -931px -1628px;
|
||||
background-position: -980px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-thermometer2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -980px -1628px;
|
||||
background-position: -1029px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
@@ -438,61 +444,61 @@
|
||||
}
|
||||
.achievement-tree2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1029px -1628px;
|
||||
background-position: -1078px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-triadbingo2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1078px -1628px;
|
||||
background-position: -1127px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-ultimate-healer2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1127px -1628px;
|
||||
background-position: -1176px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-ultimate-mage2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1176px -1628px;
|
||||
background-position: -1225px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-ultimate-rogue2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1225px -1628px;
|
||||
background-position: -1274px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-ultimate-warrior2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1274px -1628px;
|
||||
background-position: -1323px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-undeadUndertaker2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1202px -1480px;
|
||||
background-position: -1263px -1480px;
|
||||
width: 64px;
|
||||
height: 56px;
|
||||
}
|
||||
.achievement-unearned2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1323px -1628px;
|
||||
background-position: -1372px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-valentine2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1372px -1628px;
|
||||
background-position: -1421px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-wolf2x {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1421px -1628px;
|
||||
background-position: -1470px -1628px;
|
||||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
@@ -988,265 +994,265 @@
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_flying_over_icy_steppes {
|
||||
.background_flying_over_glacier {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1278px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_flying_over_rocky_canyon {
|
||||
.background_flying_over_icy_steppes {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1278px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_flying_over_snowy_mountains {
|
||||
.background_flying_over_rocky_canyon {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: 0px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_flying_over_tropical_islands {
|
||||
.background_flying_over_snowy_mountains {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -142px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_foggy_moor {
|
||||
.background_flying_over_tropical_islands {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -284px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_forest {
|
||||
.background_foggy_moor {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -426px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_frigid_peak {
|
||||
.background_forest {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -568px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_frosty_forest {
|
||||
.background_frigid_peak {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -710px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_frozen_lake {
|
||||
.background_frosty_forest {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -852px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_garden_shed {
|
||||
.background_frozen_lake {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -994px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_gazebo {
|
||||
.background_garden_shed {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1136px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_giant_autumn_leaf {
|
||||
.background_gazebo {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1278px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_giant_birdhouse {
|
||||
.background_giant_autumn_leaf {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px 0px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_giant_book {
|
||||
.background_giant_birdhouse {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px -148px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_giant_dandelions {
|
||||
.background_giant_book {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px -296px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_giant_florals {
|
||||
.background_giant_dandelions {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px -444px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_giant_seashell {
|
||||
.background_giant_florals {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px -592px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_giant_wave {
|
||||
.background_giant_seashell {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_gingerbread_house {
|
||||
.background_giant_wave {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_glowing_mushroom_cave {
|
||||
.background_gingerbread_house {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_gorgeous_greenhouse {
|
||||
.background_glowing_mushroom_cave {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_grand_staircase {
|
||||
.background_gorgeous_greenhouse {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: 0px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_graveyard {
|
||||
.background_grand_staircase {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -142px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_green {
|
||||
.background_graveyard {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -284px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_guardian_statues {
|
||||
.background_green {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -426px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_gumdrop_land {
|
||||
.background_guardian_statues {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -568px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_habit_city_rooftops {
|
||||
.background_gumdrop_land {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -710px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_habit_city_streets {
|
||||
.background_habit_city_rooftops {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -852px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_halflings_house {
|
||||
.background_habit_city_streets {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -994px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_hall_of_heroes {
|
||||
.background_halflings_house {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1136px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_harvest_feast {
|
||||
.background_hall_of_heroes {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1278px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_harvest_fields {
|
||||
.background_harvest_feast {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1420px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_harvest_moon {
|
||||
.background_harvest_fields {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px 0px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_haunted_forest {
|
||||
.background_harvest_moon {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px -148px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_haunted_house {
|
||||
.background_haunted_forest {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px -296px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_heather_field {
|
||||
.background_haunted_house {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px -444px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_herding_sheep_in_autumn {
|
||||
.background_heart_shaped_bubbles {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px -592px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_holiday_hearth {
|
||||
.background_heather_field {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_holiday_market {
|
||||
.background_herding_sheep_in_autumn {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_holiday_wreath {
|
||||
.background_holiday_hearth {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_hot_air_balloon {
|
||||
.background_holiday_market {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_hot_spring {
|
||||
.background_holiday_wreath {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -1562px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_ice_cave {
|
||||
.background_hot_air_balloon {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: 0px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_iceberg {
|
||||
.background_hot_spring {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-0.png');
|
||||
background-position: -142px -1480px;
|
||||
width: 141px;
|
||||
|
||||
@@ -1,84 +1,132 @@
|
||||
.quest_TEMPLATE_FOR_MISSING_IMAGE {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -502px -1519px;
|
||||
width: 221px;
|
||||
height: 39px;
|
||||
}
|
||||
.quest_dilatoryDistress3 {
|
||||
.quest_bronze {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -220px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_dolphin {
|
||||
.quest_bunny {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: 0px -1546px;
|
||||
width: 210px;
|
||||
height: 186px;
|
||||
}
|
||||
.quest_butterfly {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -440px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_dustbunnies {
|
||||
.quest_cheetah {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: 0px -232px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_egg {
|
||||
.quest_cow {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1762px -362px;
|
||||
width: 165px;
|
||||
height: 207px;
|
||||
background-position: -1760px 0px;
|
||||
width: 174px;
|
||||
height: 213px;
|
||||
}
|
||||
.quest_evilsanta {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1762px -1023px;
|
||||
width: 118px;
|
||||
height: 131px;
|
||||
}
|
||||
.quest_evilsanta2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -220px -232px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_falcon {
|
||||
.quest_dilatory {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -440px -232px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_ferret {
|
||||
.quest_dilatoryDistress1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -222px -1332px;
|
||||
width: 210px;
|
||||
height: 210px;
|
||||
}
|
||||
.quest_dilatoryDistress2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1760px -422px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.quest_dilatoryDistress3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -660px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_fluorite {
|
||||
.quest_dilatory_derby {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -220px -232px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_dolphin {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -660px -220px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_frog {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1540px 0px;
|
||||
width: 221px;
|
||||
height: 213px;
|
||||
}
|
||||
.quest_ghost_stag {
|
||||
.quest_dustbunnies {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: 0px -452px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_goldenknight1 {
|
||||
.quest_egg {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1760px -214px;
|
||||
width: 165px;
|
||||
height: 207px;
|
||||
}
|
||||
.quest_evilsanta {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1760px -724px;
|
||||
width: 118px;
|
||||
height: 131px;
|
||||
}
|
||||
.quest_evilsanta2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -220px -452px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_falcon {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -440px -452px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_ferret {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -660px -452px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_fluorite {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -880px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_frog {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: 0px -1332px;
|
||||
width: 221px;
|
||||
height: 213px;
|
||||
}
|
||||
.quest_ghost_stag {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -880px -220px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_goldenknight1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -880px -440px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_goldenknight2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: 0px -1519px;
|
||||
background-position: -211px -1546px;
|
||||
width: 250px;
|
||||
height: 150px;
|
||||
}
|
||||
@@ -90,307 +138,253 @@
|
||||
}
|
||||
.quest_gryphon {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -443px -1332px;
|
||||
background-position: -876px -1332px;
|
||||
width: 216px;
|
||||
height: 177px;
|
||||
}
|
||||
.quest_guineapig {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -440px -452px;
|
||||
background-position: 0px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_harpy {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -660px -452px;
|
||||
background-position: -220px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_hedgehog {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: 0px -1332px;
|
||||
background-position: -433px -1332px;
|
||||
width: 219px;
|
||||
height: 186px;
|
||||
}
|
||||
.quest_hippo {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -880px 0px;
|
||||
background-position: -440px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_horse {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -880px -220px;
|
||||
background-position: -660px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_kangaroo {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -880px -440px;
|
||||
background-position: -880px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_kraken {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -660px -1332px;
|
||||
background-position: -1093px -1332px;
|
||||
width: 216px;
|
||||
height: 177px;
|
||||
}
|
||||
.quest_lostMasterclasser1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: 0px -672px;
|
||||
background-position: -1100px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_lostMasterclasser2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -220px -672px;
|
||||
background-position: -1100px -220px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_lostMasterclasser3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -440px -672px;
|
||||
background-position: -1100px -440px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_mayhemMistiflying1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1762px -570px;
|
||||
background-position: -1760px -573px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.quest_mayhemMistiflying2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -660px -672px;
|
||||
background-position: -1100px -660px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_mayhemMistiflying3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -880px -672px;
|
||||
background-position: 0px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_monkey {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1100px 0px;
|
||||
background-position: -220px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moon1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1540px -214px;
|
||||
background-position: -1540px -220px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_moon2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1100px -220px;
|
||||
background-position: -440px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moon3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1100px -440px;
|
||||
background-position: -660px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moonstone1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1100px -660px;
|
||||
background-position: -880px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moonstone2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: 0px -892px;
|
||||
background-position: -1100px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moonstone3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -220px -892px;
|
||||
background-position: -1320px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_nudibranch {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1540px -431px;
|
||||
background-position: -1540px -437px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_octopus {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -220px -1332px;
|
||||
background-position: -653px -1332px;
|
||||
width: 222px;
|
||||
height: 177px;
|
||||
}
|
||||
.quest_owl {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -440px -892px;
|
||||
background-position: -1320px -220px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_peacock {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1540px -648px;
|
||||
background-position: -1540px -654px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_penguin {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1762px -178px;
|
||||
background-position: 0px -1733px;
|
||||
width: 190px;
|
||||
height: 183px;
|
||||
}
|
||||
.quest_pterodactyl {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -660px -892px;
|
||||
background-position: -1320px -440px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_rat {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -880px -892px;
|
||||
background-position: -1320px -660px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_robot {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1100px -892px;
|
||||
background-position: -1320px -880px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_rock {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1540px -865px;
|
||||
background-position: -1540px -871px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_rooster {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1528px -1332px;
|
||||
background-position: -1527px -1332px;
|
||||
width: 213px;
|
||||
height: 174px;
|
||||
}
|
||||
.quest_ruby {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1320px 0px;
|
||||
background-position: 0px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_sabretooth {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1320px -220px;
|
||||
background-position: -220px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_seaserpent {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1320px -440px;
|
||||
background-position: -440px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_sheep {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1320px -660px;
|
||||
background-position: -660px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_silver {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1320px -880px;
|
||||
background-position: -880px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_slime {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: 0px -1112px;
|
||||
background-position: -1100px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_sloth {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -220px -1112px;
|
||||
background-position: -1320px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_snail {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1320px -1112px;
|
||||
background-position: -1540px -1088px;
|
||||
width: 219px;
|
||||
height: 213px;
|
||||
}
|
||||
.quest_snake {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -877px -1332px;
|
||||
background-position: -1310px -1332px;
|
||||
width: 216px;
|
||||
height: 177px;
|
||||
}
|
||||
.quest_spider {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -251px -1519px;
|
||||
background-position: -462px -1546px;
|
||||
width: 250px;
|
||||
height: 150px;
|
||||
}
|
||||
.quest_squirrel {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -440px -1112px;
|
||||
background-position: -1540px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_stoikalmCalamity1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1762px -721px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.quest_stoikalmCalamity2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -660px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_stoikalmCalamity3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -880px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_taskwoodsTerror1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1762px -872px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.quest_taskwoodsTerror2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1540px -1082px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_taskwoodsTerror3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1100px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_treeling {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1094px -1332px;
|
||||
width: 216px;
|
||||
height: 177px;
|
||||
}
|
||||
.quest_trex {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1762px 0px;
|
||||
width: 204px;
|
||||
height: 177px;
|
||||
}
|
||||
.quest_trex_undead {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-14.png');
|
||||
background-position: -1311px -1332px;
|
||||
width: 216px;
|
||||
height: 177px;
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 463 KiB After Width: | Height: | Size: 464 KiB |
|
Before Width: | Height: | Size: 522 KiB After Width: | Height: | Size: 508 KiB |
|
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 134 KiB |
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 123 KiB After Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 194 KiB After Width: | Height: | Size: 175 KiB |
|
Before Width: | Height: | Size: 428 KiB After Width: | Height: | Size: 413 KiB |
|
Before Width: | Height: | Size: 236 KiB After Width: | Height: | Size: 264 KiB |
|
Before Width: | Height: | Size: 168 KiB After Width: | Height: | Size: 162 KiB |
|
Before Width: | Height: | Size: 158 KiB After Width: | Height: | Size: 162 KiB |
|
Before Width: | Height: | Size: 144 KiB After Width: | Height: | Size: 142 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 138 KiB |
|
Before Width: | Height: | Size: 395 KiB After Width: | Height: | Size: 438 KiB |
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 189 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 145 KiB |
|
Before Width: | Height: | Size: 158 KiB After Width: | Height: | Size: 155 KiB |
|
Before Width: | Height: | Size: 149 KiB After Width: | Height: | Size: 149 KiB |
|
Before Width: | Height: | Size: 161 KiB After Width: | Height: | Size: 159 KiB |
|
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 147 KiB |
|
Before Width: | Height: | Size: 188 KiB After Width: | Height: | Size: 186 KiB |
|
Before Width: | Height: | Size: 173 KiB After Width: | Height: | Size: 173 KiB |
|
Before Width: | Height: | Size: 164 KiB After Width: | Height: | Size: 162 KiB |
|
Before Width: | Height: | Size: 133 KiB After Width: | Height: | Size: 154 KiB |
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 66 KiB |
|
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 129 KiB |
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 120 KiB After Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 149 KiB After Width: | Height: | Size: 147 KiB |
@@ -212,7 +212,10 @@ export default {
|
||||
currentEvent: 'worldState.data.currentEvent',
|
||||
}),
|
||||
eventName () {
|
||||
if (!this.currentEvent || !this.currentEvent.event || this.currentEvent.season === 'normal') return null;
|
||||
if (
|
||||
!this.currentEvent || !this.currentEvent.event
|
||||
|| this.currentEvent.season === 'normal' || this.currentEvent.season === 'valentines'
|
||||
) return null;
|
||||
return this.currentEvent.event.replace('NoPromo', '');
|
||||
},
|
||||
},
|
||||
|
||||
@@ -386,6 +386,14 @@ const NOTIFICATIONS = {
|
||||
achievement: 'redLetterDay',
|
||||
},
|
||||
},
|
||||
ACHIEVEMENT_LEGENDARY_BESTIARY: {
|
||||
achievement: true,
|
||||
label: $t => `${$t('achievement')}: ${$t('achievementLegendaryBestiary')}`,
|
||||
modalId: 'generic-achievement',
|
||||
data: {
|
||||
achievement: 'legendaryBestiary',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default {
|
||||
@@ -448,7 +456,7 @@ export default {
|
||||
'ONBOARDING_COMPLETE', 'FIRST_DROPS', 'ACHIEVEMENT_BUG_BONANZA', 'ACHIEVEMENT_BARE_NECESSITIES',
|
||||
'ACHIEVEMENT_FRESHWATER_FRIENDS', 'ACHIEVEMENT_GOOD_AS_GOLD', 'ACHIEVEMENT_ALL_THAT_GLITTERS',
|
||||
'ACHIEVEMENT_BONE_COLLECTOR', 'ACHIEVEMENT_SKELETON_CREW', 'ACHIEVEMENT_SEEING_RED',
|
||||
'ACHIEVEMENT_RED_LETTER_DAY',
|
||||
'ACHIEVEMENT_RED_LETTER_DAY', 'ACHIEVEMENT_LEGENDARY_BESTIARY',
|
||||
].forEach(type => {
|
||||
handledNotifications[type] = true;
|
||||
});
|
||||
@@ -869,6 +877,7 @@ export default {
|
||||
case 'ACHIEVEMENT_SKELETON_CREW':
|
||||
case 'ACHIEVEMENT_SEEING_RED':
|
||||
case 'ACHIEVEMENT_RED_LETTER_DAY':
|
||||
case 'ACHIEVEMENT_LEGENDARY_BESTIARY':
|
||||
case 'GENERIC_ACHIEVEMENT':
|
||||
this.showNotificationWithModal(notification);
|
||||
break;
|
||||
|
||||
@@ -151,6 +151,8 @@ export default {
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.restoreValues.stats.lvl > 999) this.restoreValues.stats.lvl = 999;
|
||||
|
||||
const userChangedLevel = this.restoreValues.stats.lvl !== this.user.stats.lvl;
|
||||
const userDidNotChangeExp = this.restoreValues.stats.exp === this.user.stats.exp;
|
||||
if (userChangedLevel && userDidNotChangeExp) this.restoreValues.stats.exp = 0;
|
||||
|
||||
@@ -7,52 +7,52 @@
|
||||
"faqQuestion1": "Kako da namjestim svoje zadatke?",
|
||||
"iosFaqAnswer1": "Dobre navike (one sa +) zadaci su koje možete raditi mnogo puta dnevno, poput jedenja povrća. Loše navike (one koje imaju -) zadaci su koje trebate izbjegavati, poput grickanja noktiju. Navike sa + i - imaju dobar i loš izbor, poput korištenja stepenica u odnosu na lift. Dobre navike daju iskustvo i zlatnike. Loše navike oduzimaju zdravlje.\n\nDnevni zadaci su zadaci koje morate obavljati svakodnevno, poput pranja zubi ili provjere e-pošte. Dnevne zadatke možete prilagoditi dodirom da biste uredili. Ako preskočite rok za dnevni zadatak koji treba dospjeti, vaš će se avatar oštetiti preko noći. Pazite da ne dodate previše dnevnih listova odjednom!\n\nZa-uraditi su vaša lista obaveza. Dovršavanjem obaveza dobijate zlatnike i iskustvo. Nikada ne gubite zdravlje zbog za-uraditi obaveza. Moguće je dodati i krajnji datum kroz uređivanje na dodir.",
|
||||
"androidFaqAnswer1": "Dobre navike (one sa +) zadaci su koje možete raditi mnogo puta dnevno, poput jedenja povrća. Loše navike (one koje imaju -) zadaci su koje trebate izbjegavati, poput grickanja noktiju. Navike sa + i - imaju dobar i loš izbor, poput korištenja stepenica u odnosu na lift. Dobre navike daju iskustvo i zlatnike. Loše navike oduzimaju zdravlje.\n\nDnevni zadaci su zadaci koje morate obavljati svakodnevno, poput pranja zubi ili provjere e-pošte. Dnevne zadatke možete prilagoditi dodirom da biste uredili. Ako preskočite rok za dnevni zadatak koji treba dospjeti, vaš će se avatar oštetiti preko noći. Pazite da ne dodate previše dnevnih listova odjednom!\n\nZa-uraditi su vaša lista obaveza. Dovršavanjem obaveza dobijate zlatnike i iskustvo. Nikada ne gubite zdravlje zbog za-uraditi obaveza. Moguće je dodati i krajnji datum kroz uređivanje na dodir.",
|
||||
"webFaqAnswer1": "* Good Habits (the ones with a :heavy_plus_sign:) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a :heavy_minus_sign:) are tasks that you should avoid, like biting nails. Habits with a :heavy_plus_sign: and a :heavy_minus_sign: have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n* Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n* To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.",
|
||||
"faqQuestion2": "What are some sample tasks?",
|
||||
"iosFaqAnswer2": "The wiki has four lists of sample tasks to use as inspiration:\n<br><br>\n * [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Sample Custom Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)",
|
||||
"androidFaqAnswer2": "The wiki has four lists of sample tasks to use as inspiration:\n<br><br>\n * [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Sample Custom Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)",
|
||||
"webFaqAnswer2": "The wiki has four lists of sample tasks to use as inspiration:\n * [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Sample Custom Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)",
|
||||
"faqQuestion3": "Why do my tasks change color?",
|
||||
"iosFaqAnswer3": "Your tasks change color based on how well you are currently accomplishing them! Each new task starts out as a neutral yellow. Perform Dailies or positive Habits more frequently and they move toward blue. Miss a Daily or give in to a bad Habit and the task moves toward red. The redder a task, the more rewards it will give you, but if it's a Daily or bad Habit, the more it will hurt you! This helps motivate you to complete the tasks that are giving you trouble.",
|
||||
"androidFaqAnswer3": "Your tasks change color based on how well you are currently accomplishing them! Each new task starts out as a neutral yellow. Perform Dailies or positive Habits more frequently and they move toward blue. Miss a Daily or give in to a bad Habit and the task moves toward red. The redder a task, the more rewards it will give you, but if it's a Daily or bad Habit, the more it will hurt you! This helps motivate you to complete the tasks that are giving you trouble.",
|
||||
"webFaqAnswer3": "Your tasks change color based on how well you are currently accomplishing them! Each new task starts out as a neutral yellow. Perform Dailies or positive Habits more frequently and they move toward blue. Miss a Daily or give in to a bad Habit and the task moves toward red. The redder a task, the more rewards it will give you, but if it’s a Daily or bad Habit, the more it will hurt you! This helps motivate you to complete the tasks that are giving you trouble.",
|
||||
"faqQuestion4": "Why did my avatar lose health, and how do I regain it?",
|
||||
"iosFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you tap a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your Party and one of your Party mates did not complete all their Dailies, the Boss will attack you.\n\n The main way to heal is to gain a level, which restores all your health. You can also buy a Health Potion with gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a Party with a Healer, they can heal you as well.",
|
||||
"androidFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you tap a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your Party and one of your Party mates did not complete all their Dailies, the Boss will attack you.\n\n The main way to heal is to gain a level, which restores all your health. You can also buy a Health Potion with gold from the Rewards tab on the Tasks page. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a Party with a Healer, they can heal you as well.",
|
||||
"webFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you click a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your party and one of your party mates did not complete all their Dailies, the Boss will attack you. The main way to heal is to gain a level, which restores all your Health. You can also buy a Health Potion with Gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. Other Healers can heal you as well if you are in a Party with them. Learn more by clicking \"Party\" in the navigation bar.",
|
||||
"faqQuestion5": "How do I play Habitica with my friends?",
|
||||
"iosFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to Menu > Party and click \"Create New Party\" if you don't already have a Party. Then tap on the Members list, and tap Invite in the upper right-hand corner to invite your friends by entering their User ID (a string of numbers and letters that they can find under Settings > Account Details on the app, and Settings > API on the website). On the website, you can also invite friends via email, which we will add to the app in a future update.\n\nOn the website, you and your friends can also join Guilds, which are public chat rooms. Guilds will be added to the app in a future update!",
|
||||
"androidFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to the [website](https://habitica.com/) to create one if you don't already have a Party. You can also join guilds together (Social > Guilds). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many guilds as you'd like, but only one party.\n\n For more detailed info, check out the wiki pages on [Parties](http://habitica.wikia.com/wiki/Party) and [Guilds](http://habitica.wikia.com/wiki/Guilds).",
|
||||
"webFaqAnswer5": "The best way is to invite them to a Party with you by clicking \"Party\" in the navigation bar! Parties can go on quests, battle monsters, and cast skills to support each other. You can also join Guilds together (click on \"Guilds\" in the navigation bar). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many Guilds as you'd like, but only one Party. For more detailed info, check out the wiki pages on [Parties](http://habitica.wikia.com/wiki/Party) and [Guilds](http://habitica.wikia.com/wiki/Guilds).",
|
||||
"faqQuestion6": "How do I get a Pet or Mount?",
|
||||
"iosFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored in Menu > Items.\n\n To hatch a Pet, you'll need an egg and a hatching potion. Tap on the egg to determine the species you want to hatch, and select \"Hatch Egg.\" Then choose a hatching potion to determine its color! Go to Menu > Pets to equip your new Pet to your avatar by clicking on it. \n\n You can also grow your Pets into Mounts by feeding them under Menu > Pets. Tap on a Pet, and then select \"Feed Pet\"! You'll have to feed a pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). Once you have a Mount, go to Menu > Mounts and tap on it to equip it to your avatar.\n\n You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)",
|
||||
"androidFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored in Menu > Items.\n\n To hatch a Pet, you'll need an egg and a hatching potion. Tap on the egg to determine the species you want to hatch, and select \"Hatch with potion.\" Then choose a hatching potion to determine its color! To equip your new Pet, go to Menu > Stable > Pets, select a species, click on the desired Pet, and select \"Use\"(Your avatar doesn't update to reflect the change). \n\n You can also grow your Pets into Mounts by feeding them under Menu > Stable [ > Pets ]. Tap on a Pet, and then select \"Feed\"! You'll have to feed a pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). To equip your Mount, go to Menu > Stable > Mounts, select a species, click on the desired Mount, and select \"Use\"(Your avatar doesn't update to reflect the change).\n\n You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)",
|
||||
"webFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored under Inventory > Items. To hatch a Pet, you'll need an egg and a hatching potion. Once you have both an egg and a potion, go to Inventory > Stable to hatch your pet by clicking on its image. Once you've hatched a pet, you can equip it by clicking on it. You can also grow your Pets into Mounts by feeding them under Inventory > Stable. Drag a piece of food from the action bar at the bottom of the screen and drop it on a pet to feed it! You'll have to feed a Pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). Once you have a Mount, click on it to equip it to your avatar. You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)",
|
||||
"faqQuestion7": "How do I become a Warrior, Mage, Rogue, or Healer?",
|
||||
"iosFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their Party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most gold and find the most item drops, and they can help their Party do the same. Finally, Healers can heal themselves and their Party members.\n\n If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click “Decide Later” and choose later under Menu > Choose Class.",
|
||||
"androidFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their Party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most gold and find the most item drops, and they can help their Party do the same. Finally, Healers can heal themselves and their Party members.\n\n If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click “Opt Out” and choose later under Menu > Choose Class.",
|
||||
"webFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most Gold and find the most item drops, and they can help their party do the same. Finally, Healers can heal themselves and their party members. If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click \"Opt Out\" and re-enable it later under Settings.",
|
||||
"faqQuestion8": "What is the blue Stat bar that appears in the Header after level 10?",
|
||||
"iosFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 under Menu > Use Skills. Unlike your health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete Good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.",
|
||||
"androidFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 under Menu > Skills. Unlike your health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete Good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.",
|
||||
"webFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 in the action bar at the bottom of the screen. Unlike your Health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.",
|
||||
"faqQuestion9": "How do I fight monsters and go on Quests?",
|
||||
"iosFaqAnswer9": "First, you need to join or start a Party (see above). Although you can battle monsters alone, we recommend playing in a group, because this will make Quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading by pulling down on the screen may be required to see the Boss's health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. \n\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.",
|
||||
"androidFaqAnswer9": "First, you need to join or start a Party (see above). Although you can battle monsters alone, we recommend playing in a group, because this will make Quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading by pulling down on the screen may be required to see the Boss's health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. \n\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.",
|
||||
"webFaqAnswer9": "First, you need to join or start a Party by clicking \"Party\" in the navigation bar. Although you can battle monsters alone, we recommend playing in a group, because this will make quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating! Next, you need a Quest Scroll, which are stored under Inventory > Quests. There are four ways to get a scroll:\n * When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n * At level 15, you get a Quest-line, i.e., three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively.\n * You can buy Quests from the Quests Shop (Shops > Quests) for Gold and Gems.\n * When you check in to Habitica a certain number of times, you'll be rewarded with Quest Scrolls. You earn a Scroll during your 1st, 7th, 22nd, and 40th check-ins.\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading may be required to see the Boss's Health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.",
|
||||
"faqQuestion10": "What are Gems, and how do I get them?",
|
||||
"iosFaqAnswer10": "Gems are purchased with real money by tapping on the Gem icon in the header. When people buy Gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying Gems directly, there are three other ways players can gain Gems:\n\n * Win a Challenge that has been set up by another player. Go to Social > Challenges to join some.\n * Subscribe and unlock the ability to buy a certain number of Gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the app without them!",
|
||||
"androidFaqAnswer10": "Gems are purchased with real money by tapping on the Gem icon in the header. When people buy Gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying Gems directly, there are three other ways players can gain Gems:\n\n * Win a Challenge that has been set up by another player. Go to Social > Challenges to join some.\n * Subscribe and unlock the ability to buy a certain number of Gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the app without them!",
|
||||
"webFaqAnswer10": "Gems are purchased with real money, although [subscribers](https://habitica.com/user/settings/subscription) can purchase them with Gold. When people subscribe or buy Gems, they are helping us to keep the site running. We're very grateful for their support! In addition to buying Gems directly or becoming a subscriber, there are two other ways players can gain Gems:\n* Win a Challenge that has been set up by another player. Go to Challenges > Discover Challenges to join some.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica). Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the site without them!",
|
||||
"faqQuestion11": "How do I report a bug or request a feature?",
|
||||
"iosFaqAnswer11": "You can report a bug, request a feature, or send feedback under Menu > About > Report a Bug and Menu > About > Send Feedback! We'll do everything we can to assist you.",
|
||||
"androidFaqAnswer11": "You can report a bug, request a feature, or send feedback under About > Report a Bug and About > Send us Feedback! We'll do everything we can to assist you.",
|
||||
"webFaqAnswer11": "To report a bug, go to [Help > Report a Bug](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) and read the points above the chat box. If you're unable to log in to Habitica, send your login details (not your password!) to [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Don't worry, we'll get you fixed up soon! Feature requests are collected on Trello. Go to [Help > Request a Feature](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) and follow the instructions. Ta-da!",
|
||||
"faqQuestion12": "How do I battle a World Boss?",
|
||||
"iosFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual.\n\n You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n\n You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.",
|
||||
"androidFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual.\n\n You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n\n You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.",
|
||||
"webFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual. You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party. A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change. You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.",
|
||||
"iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the Tavern chat under Menu > Tavern! We're happy to help.",
|
||||
"androidFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the Tavern chat under Menu > Tavern! We're happy to help.",
|
||||
"webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Habitica Help guild](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help."
|
||||
"webFaqAnswer1": "* Dobre navike (one sa :heavy_plus_sign:) su zadaci koje možete raditi više puta dnevno, poput jedenja povrća. Loše navike (one sa :heavy_minus_sign:) zadaci su kojih biste trebali izbjegavati, poput grickanja noktiju. Navike sa :heavy_plus_sign: i :heavy_minus_sign: imaju dobar i loš izbor, poput korištenja stepenica umjesto lifta. Nagrada za dobre navike su iskustvo i zlatnici. Loše navike oduzimaju zdravlje.\n* Dnevni zadaci su zadaci koje morate obavljati svakodnevno, poput pranja zubi ili provjere e-pošte. Zadatak možete prilagoditi klikom na olovku da biste je uredili. Ako preskočite rok za završetak, vaš će se avatar oštetiti preko noći. Pazite da ne dodate previše dnevnih listova odjednom!\n* Za-uraditi su vaša lista obaveza. Dovršavanjem za-uraditi dobijate zlatnike i iskustvo. Nikada ne gubite zdravlje zbog za-uraditi. Možete ih uređivati klikom na ikonu olovke za uređivanje.",
|
||||
"faqQuestion2": "Koji su neki primjeri zadataka?",
|
||||
"iosFaqAnswer2": "Wiki ima četiri liste primjera zadataka koje treba koristiti kao inspiraciju:\n<br><br>\n * [Primjeri navika](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Primjeri dnevnih zadataka](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Primjeri za-uraditi](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Primjeri prilagođenih nagrada](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)",
|
||||
"androidFaqAnswer2": "Wiki ima četiri liste primjera zadataka koje treba koristiti kao inspiraciju:\n<br><br>\n * [Primjeri navika](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Primjeri dnevnik zadataka](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Primjeri za-uraditi](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Primjeri prilagođenih nagrada](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)",
|
||||
"webFaqAnswer2": "Wiki ima četiri liste primjera zadataka koje treba koristiti kao inspiraciju:\n * [Primjeri navika](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Primjeri dnevnih zadataka](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Primjeri za-uraditi](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Primjeri prilagođenih nagrada](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)",
|
||||
"faqQuestion3": "Zašto moji zadaci mijenjaju boju?",
|
||||
"iosFaqAnswer3": "Vaši zadaci mijenjaju boju na osnovu toga koliko ih trenutno izvršavate! Svaki novi zadatak započinje kao neutralno žuto. Češće izvodite dnevne zadatke ili pozitivne navike i oni se kreću prema plavoj boji. Propuštajući dnevni zadatak ili se prepuđtajući se lošoj navici zadatak će se kretati ka crvenoj boji. Što je zadatak crveniji, to će vam više nagrada dati, ali ako je to svakodnevna ili loša navika, to će vam više naštetiti! Ovo vas pomaže motivisati da dovršite zadatke koji vam stvaraju probleme.",
|
||||
"androidFaqAnswer3": "Vaši zadaci mijenjaju boju na osnovu toga koliko ih trenutno izvršavate! Svaki novi zadatak započinje kao neutralno žuto. Češće izvođenje dnevnih zadataka ili pozitivneih navika zadatke pomijera prema plavoj boji. Propuštajući dnevni zadatak ili se prepuštajući se lošoj navici zadatak se kreće prema crvenoj boji. Što je zadatak crveniji, to će vam više nagrada dati, ali ako je to svakodnevna ili loša navika, to će vam više naštetiti! Ovo vas pomaže motivisati da dovršite zadatke koji vam stvaraju probleme.",
|
||||
"webFaqAnswer3": "Vaši zadaci mijenjaju boju na osnovu toga koliko ih trenutno izvršavate! Svaki novi zadatak započinje kao neutralno žuto. Češće izvodite dnevne zadatke ili pozitivne navike i oni se kreću prema plavoj boji. Propuštajući dnevni zadatak ili se prepuštajući lošoj navici zadatak se kreće prema crvenoj boji. Što je zadatak crveniji, to će vam više nagrada dati, ali ako je to svakodnevna ili loša navika, to će vam više naštetiti! Ovo vas pomaže motivisati da dovršite zadatke koji vam stvaraju probleme.",
|
||||
"faqQuestion4": "Zašto je moj avatar izgubio zdravlje i kako da ga povratim?",
|
||||
"iosFaqAnswer4": "Postoji nekoliko stvari zbog kojih možete pretrpjeti štetu. Prvo, ako ste ostavili dnevne zadatke nekompletne preko noći i niste ih označili na ekranu koji se pojavio sljedećeg jutra, ti nedovršeni dnevni zadaci će vas oštetiti. Drugo, ako ste imali lošu naviku, to će vas oštetiti. Konačno, ako vodite bitku za šefove sa svojom strankom, a jedan od partijskih drugova nije ispunio sve svoje dnevne zadatke, šef će vas napasti.\n\nGlavni način ozdravljenja je postizanje nivoa koji vam vraća sve zdravlje. Također možete kupiti zdravstveni napitak sa zlatnicima iz kolone Nagrade. Uz to, na nivou 10 ili višem, možete odabrati da postanete iscjelitelj, a zatim ćete naučiti iscjeliteljske vještine. Ako ste u partiji sa iscjeliteljem, oni mogu i vas izliječiti.",
|
||||
"androidFaqAnswer4": "Postoji nekoliko stvari zbog kojih možete pretrpjeti štetu. Prvo, ako ste ostavili dnevne zadatke nekompletne preko noći i niste ih označili na ekranu koji se pojavio sljedećeg jutra, ti nedovršeni dnevni zadaci će vas oštetiti. Drugo, ako ste imali lošu naviku, to će vas oštetiti. Konačno, ako vodite bitku za šefove sa svojom partijom, a jedan od partijskih drugova nije ispunio sve svoje dnevne listove, šef će vas napasti.\n\nGlavni način ozdravljenja je postizanje nivoa koji vam vraća sve zdravlje. Zdravstveni napitak sa zlatnicima možete kupiti i na kartici Nagrade na stranici Zadaci. Uz to, na nivou 10 ili višem, možete odabrati da postanete iscjelitelj, a zatim ćete naučiti iscjeliteljske vještine. Ako ste u partiji sa iscjeliteljem, oni mogu i vas izliječiti.",
|
||||
"webFaqAnswer4": "Postoji nekoliko stvari zbog kojih možete pretrpjeti štetu. Prvo, ako ste ostavili dnevne zadatke nekompletne preko noći i niste ih označili na ekranu koji se pojavio sljedećeg jutra, ti nedovršeni dnevni zadaci će vas oštetiti. Drugo, ako ste imali lošu naviku, to će vas oštetiti. Konačno, ako vodite bitku za šefove sa svojom partijom, a jedan od partijskih drugova nije ispunio sve svoje dnevne listove, šef će vas napasti. Glavni način izlječenja je postizanje nivoa koji vam vraća sve zdravlje. Također možete kupiti Zdravstveni napitak sa zlatnicima iz kolone Nagrade. Uz to, na nivou 10 ili višem, možete odabrati da postanete iscjelitelj, a zatim ćete naučiti iscjeliteljske vještine. I drugi iscjelitelji mogu vas izliječiti ako ste s njima u partiji. Saznajte više klikom na \"Partija\" na navigacijskoj traci.",
|
||||
"faqQuestion5": "Kako da igram Habiticu sa svojim prijateljima?",
|
||||
"iosFaqAnswer5": "Najbolji način je pozvati ih u partiju s vama! Partije mogu imati zadatke, boriti se protiv čudovišta i bacati vještine kako bi podržavali jedni druge.\n\nAko želite pokrenuti vlastitu Partiju, idite na Izornik > [Partija] (https://habitica.com/party) i dodirnite \"Napravi novu partiu\". Zatim se pomaknite prema dolje i dodirnite \"Pozovite člana\" da biste pozvali svoje prijatelje unošenjem njihovog @ korisničkog imena. Ako se želite pridružiti tuđoj partiji, samo im dajte svoje @ korisničko ime i oni će vas moći pozvati!\n\nVi i vaši prijatelji također se možete pridružiti esnafima, koji su javne čet sobe koje okupljaju ljude na osnovu zajedničkih interesa! Puno je korisnih i zabavnih zajednica, svakako ih provjerite.\n\nAko se osjećate konkurentnije, vi i vaši prijatelji možete stvoriti izazove ili se pridružiti njima kako biste preuzeli niz zadataka. Dostupne su sve vrste izazova koji pokrivaju širok spektar interesa i ciljeva. Neki javni izazovi dodijelit će čak i nagrade u obliku dragulja ako ste izabrani za pobjednika.",
|
||||
"androidFaqAnswer5": "Najbolji način je pozvati ih u partiju s vama! Partije mogu ići u zadatke, boriti se protiv čudovišta i bacati vještine kako bi podržavali jedni druge. Idite na [website] (https://habitica.com/) da biste je napravilli ako je već nemate. Također se možete pridružiti esnafima (Zajednica > Esnafi). Esnafi su čet sobe koje se fokusiraju na zajednički interes ili traženje zajedničkog cilja, a mogu biti javne ili privatne. Možete se učlaniti u koliko god želite esnafa, ali samo u jednu partiju.\n\nZa detaljnije informacije pogledajte wiki stranice na [Partija] (http://habitica.fandom.com/wiki/Party) i [Esnafi] (http://habitica.fandom.com/wiki/Guilds).",
|
||||
"webFaqAnswer5": "Najbolji način je pozvati ih u partiju s vama klikom na \"Partija\" na navigacijskoj traci! Partije mogu ići u zadatke, boriti se protiv čudovišta i bacati vještine kako bi podržavali jedni druge. Također se možete udružiti u esnafe (kliknite \"Esnafi\" na navigacijskoj traci). Esnafi su čet sobe koje se fokusiraju na zajednički interes ili traženje zajedničkog cilja, a mogu biti javni ili privatni. Možete se učlaniti u koliko god želite esnafa, ali samo u jednu stranku. Za detaljnije informacije pogledajte wiki stranice na [Partija] (http://habitica.wikia.com/wiki/Party) i [Esnafi] (http://habitica.wikia.com/wiki/Guilds).",
|
||||
"faqQuestion6": "Kako mogu dobiti ljubimca ili jahalicu?",
|
||||
"iosFaqAnswer6": "Svaki put kad izvršite zadatak, imat ćete slučajnu priliku dobiti jaje, napitak za izlijeganje ili parče hrane za ljubimce. Bit će pohranjeni u Izbornik > Artikli.\n\nDa biste izlegli ljubimca, trebat će vam jaje i napitak za izlijeganje. Dodirnite jaje da odredite vrstu koju želite izleći i odaberite \"Izlijegnite jaje\". Zatim odaberite napitak za izlijeganje kako biste odredili njegovu boju! Idite na Izbornik > Ljubimci i kliknite svog novog ljubimca da biste ga dodali na svoj Avatar.\n\nTakođer možete uzgajati svoje ljubimce da postanu jahalice tako što ćete ih hraniti u Izbornik > Ljubimci. Dodirnite kućnog ljubimca i odaberite \"Nahrani ljubimca\"! Morat ćete hraniti kućnog ljubimca mnogo puta prije nego što postane jahalica, ali ako uspijete otkriti njegovu omiljenu hranu, on će brže rasti. Koristite pokušaje i greške ili [pogledajte trikove za hranjene] (http://habitica.fandom.com/wiki/Food#Food_Preferences). Kada imate jahalicu, idite na Izbornik > Jahalice i dodirnite ga da biste ga dodali na svoj Avatar.\n\nJaja za ljubimce možete dobiti i ispunjavanjem određenih zadataka tokom potraga za ljubimcima (da biste saznali više o potragama, pogledajte [Kako se borim protiv čudovišta i idem u zadatke] (https://habitica.com/static/faq/9)).",
|
||||
"androidFaqAnswer6": "Svaki put kad izvršite zadatak, imat ćete slučajnu priliku dobiti jaje, napitak za izlijeganje ili parče hrane za kućne ljubimce. Bit će pohranjeni u Izbornik > Artikli.\n\nDa biste izlegli ljubimca, trebat će vam jaje i napitak za izlijeganje. Dodirnite jaje da odredite vrstu koju želite izleći i odaberite \"Izlijeganje s napitkom\". Zatim odaberite napitak za izlijeganje kako biste odredili njegovu boju! Da biste opremili svog novog ljubimca, idite na Izbornik > Štala> Ljubimci, odaberite vrstu, kliknite željenog kućnog ljubimca i odaberite \"Koristi\" (Vaš Avatar se ne ažurira da reflektuje promjenu).\n\nTakođer možete uzgajati svoje ljubimce da postanu jahalice tako što ćete ih hraniti u Izbornik > Štala [> Ljubimci]. Dodirnite ljubimca, a zatim odaberite \"Nahrani\"! Morat ćete hraniti kućnog ljubimca mnogo puta prije nego što postane jahalica, ali ako uspijete otkriti njegovu omiljenu hranu, on će brže rasti. Koristite pokušaje i greške ili [pogledajte trikove za hranjenje] (http://habitica.fandom.com/wiki/Food#Food_Preferences). Da biste opremili svoju jahalicu, idite na Izbornik > Štala > Jahalice, odaberite vrstu, kliknite željenu jahallicu i odaberite \"Koristi\" (Vaš Avatar se ne ažurira da reflektuje promjenu).\n\nJaja možete dobiti i ispunjavanjem određenih zadataka u potragama za ljubimcima. (Pogledajte dolje da biste saznali više o misijama.)",
|
||||
"webFaqAnswer6": "Svaki put kada izvršite zadatak, imat ćete slučajnu priliku dobiti jaje, napitak za izlijeganje ili parče hrane za ljubimce. Bit će pohranjeni u odjeljku Inventar > Predmeti. Da biste izlegli ljubimca, trebat će vam jaje i napitak za izlijeganje. Nakon što dobijete i jaje i napitak za izlijeganje, idite na Inventar > Štala i kliknite sliku da biste izlegli svog ljubimca. Nakon što izležete ljubimca, možete ga opremiti klikom na njega. Također možete uzgajati svoje ljubimce da postanu jahalice tako što ćete ih hraniti pod Inventar > Štala. Povucite parče hrane za ljubimce s radne trake na dnu zaslona i spustite ga na ljubimca da ga nahranite! Morat ćete hraniti ljubimca mnogo puta prije nego što postane jahalica, ali ako uspijete otkriti njegovu omiljenu hranu, on će brže rasti. Koristite pokušaje i greške ili [pogledajte trikove hranjena] (http://habitica.fandom.com/wiki/Food#Food_Preferences). Kada imate jahalicu, kliknite na njeu da je opremite za svoj Avatar. Jaja možete dobiti i ispunjavanjem određenih zadataka u potragama za ljubimcima. (Pogledajte dolje da biste saznali više o misijama.)",
|
||||
"faqQuestion7": "Kako mogu postati ratnik, mudrac, baraba ili iscjelitelj?",
|
||||
"iosFaqAnswer7": "Na nivou 10 možete odabrati da postanete ratnik, mudrac, baraba ili iscjelitelj. (Svi igrači počinju kao ratnici.) Svaki razred ima različite mogućnosti opreme, različite vještine koje mogu steći nakon nivoa 11 i različite prednosti. Ratnici mogu lahko oštetiti šefove, izdržati veću štetu od njihovih zadataka i pomoći da ojačaju svoju partiju. Mudraci također mogu lahko oštetiti šefove, kao i brzo se vratiti u normalu i vratiti mudrost za svoju partiju. Barabe zarađuju najviše zlatnika i pronalaze najviše predmeta, a mogu pomoći svojoj partiji da urade isto. Konačno, iscjelitelji mogu izliječiti sebe i svoje članove partije.\n\nAko ne želite odmah odabrati razred - na primjer, ako još uvijek radite na kupnji sve opreme vašeg trenutnog razreda - možete dodirnuti „Otkaži“ i odabrati kasnije otvaranjem izbornika, tapkajući ikonu Postavke , a zatim dodirnite „Omogući sistem razreda“.",
|
||||
"androidFaqAnswer7": "Na nivou 10, možete odabrati da postanete ratnik, mudrac, baraba ili iscjelitelj. (Svi igrači po počinju kao ratnici.) Svaki razred ima različite opcije opreme, različite vještine koje mogu steći nakon nivoa 11 i različite prednosti. Ratnici mogu lahko oštetiti šefove, izdržati veću štetu od njihovih zadataka i pomoći da njihova partija postane tvrđa. Mudraci također mogu lahko oštetiti šefove, kao i brzo se vratiti u normalu i vratiti mudrost za svoju partiju. Barabe zarađuju najviše zlatnika i pronalaze najviše predmeta, a mogu pomoći svojoj partiji da učini isto. Konačno, iscjelitelji mogu izliječiti sebe i svoje članove partije.\n\nAko ne želite odmah odabrati razred - na primjer, ako još uvijek radite na kupovini sve opreme vašeg trenutnog razreda - možete dodirnuti „Odjavi se“ i odabrati kasnije otvaranjem izbornika, tapkajući ikona postavki, a zatim dodirnite „Omogući sistem razreda“.",
|
||||
"webFaqAnswer7": "Na nivou 10, možete odabrati da postanete ratnik, mudrac, baraba ili iscjelitelj. (Svi igrači počinju kao ratnici.) Svaki razred ima različite opcije opreme, različite vještine koje mogu steći nakon nivoa 11 i različite prednosti. Ratnici mogu lahko oštetiti šefove, izdržati veću štetu od njihovih zadataka i pomoći da njihova partija postane tvrđa. Mudraci također mogu lahko oštetiti šefove, kao i brzo se vratiti u normalu i vratiti mudrost za svoju partiju. Barabe zarade najviše zlatnika i pronađu najviše predmeta, a mogu pomoći svojoj partiji da učini isto. Konačno, iscjelitelji mogu izliječiti sebe i članove svoje partije. Ako ne želite odmah odabrati razred - na primjer, ako još uvijek radite na kupnji sve opreme vašeg trenutnog razreda - možete kliknuti \"Isključi\" i ponovo ga omogućiti kasnije u Postavkama.",
|
||||
"faqQuestion8": "Šta predstavlja plava statusna traka koja se pojavljuje u zaglavlju nakon 10. nivoa?",
|
||||
"iosFaqAnswer8": "Plava traka koja se pojavila kada ste dosegli nivo 10 i odabrali razred je vaša traka mudroti. Kako nastavljate s višim nivoom, otključat ćete posebne vještine koje mudrost koštaju korištenja. Svaki razred ima različite vještine, koje se pojavljuju nakon nivoa 11 u izbornik > Koristi vještine. Za razliku od vaše zdravstvene trake, vaša traka mudrosti se ne resetira kada položite nivo. Umjesto toga, mudrost se stječe kada ispunite dobre navike, dnevne zadatke i za-uraditi, a gubi se kad se prepustite lošim navikama. Također ćete preko noći povratiti malo mudrosti - što više dnevnih zadataka završite, to ćete više dobiti mudrosti.",
|
||||
"androidFaqAnswer8": "Plava traka koja se pojavila kada ste dosegli nivo 10 i odabrali razred je vaša traka mudrosti. Kako nastavljate s povišenjem nivoa, otključat ćete posebne vještine koje mudroat koštaju korištenja. Svaki razred ima različite vještine, koje se pojavljuju nakon nivoa 11 u izbornik > Vještine. Za razliku od vaše zdravstvene trake, vaša traka mudroti se ne resetira kada pređene na novi nivo. Umjesto toga, mudrost se stječe kada ispunite dobre navike, dnevne zadatke i za-uraditi, a gubi se kad se prepustite lošim navikama. Također ćete preko noći povratiti malo mudroti - što više dnevnih zadataka završite, to ćete više dobiti.",
|
||||
"webFaqAnswer8": "Plava traka koja se pojavila kada ste dosegli nivo 10 i odabrali razred je vaša traka mudroti. Kako nastavljate s višim nivoom, otključat ćete posebne vještine koje mudrost koštaju korištenja. Svaki razred ima različite vještine, koje se pojavljuju nakon nivoa 11 na traci akcija na dnu ekrana. Za razliku od vaše trake zdravlja, vaša se traka mudrosti ne resetira kada pređete na viši nivo. Umjesto toga, mudrost se stječe kada ispunite dobre navike, dnevne zadatke i za-uraditi, a gubi se kad se prepuštate lošim navikama. Također ćete preko noći povratiti malo mudrosti - što više dnevnih zadataka završite, to ćete više dobiti.",
|
||||
"faqQuestion9": "Kako se mogu boriti protiv čudovišta i odlaziti u potrage?",
|
||||
"iosFaqAnswer9": "Prvo, morate se pridružiti ili pokrenuti partiju (pogledajte [Kako igrati Habiticu sa svojim prijateljima] (https://habitica.com/static/faq/5)). Iako se protiv čudovišta možete boriti sami, preporučujemo igranje u grupi, jer će ovo znatno olakšati zadatke. Osim toga, imati mog prijatelja koji će vas bodriti dok izvršavate svoje zadatke vrlo je motivirajuće!\n\n Dalje potrebni su vam svici potraga koji se čuvaju u Izbornik > Artikli. Postoje tri načina za dobivanje svitka:\n\n - Na nivou 15 dobivate potrage liniju, poznatu kao tri povezane misije. Više potraga linija otključava se na nivoima 30, 40 i 60, respektivno.\n - Kad pozovete ljude u svoju partiju, bit ćete nagrađeni pomicanjem sa osnovne liste svitka!\n - Misije možete kupiti u prodavnici za potrage za zlatnike i dragulje.\n\nDa biste se borili protiv šefa ili sakupljali predmete za potragu za sakupljanjem, jednostavno normalno izvršite zadatke i tokom noći će se računati da će oštetiti. (Možda će biti potrebno ponovno punjenje povlačenjem zaslona da biste vidjeli kako se šefova ljestvica zdravlja spušta.) Ako se borite protiv šefa i propustili ste bilo koji dnevni zadatak, šef će oštetiti vašu partiju istovremeno kada i vi oštetite šefa.\n\nNakon 11. nivoa mudraci i ratnici stječu vještine koje im omogućavaju da nanesu dodatnu štetu šefu, tako da su ovo izvrsne klase koje možete odabrati na 10. nivou ako želite biti težak napadač.",
|
||||
"androidFaqAnswer9": "Prvo, morate se pridružiti ili osnovati partiju (vidi gore). Iako se protiv čudovišta možete boriti sami, preporučujemo igranje u grupi, jer će to znatno olakšati zadatke. Osim toga, imati mog prijatelja koji će vas bodriti dok izvršavate svoje zadatke vrlo je motivirajuće!\n\nDalje, potrebni su vam svitci potraga koji se čuvaju u Izborik > Artikli. Postoje tri načina za dobivanje svitka:\n\n - Na nivou 15 dobivate liniju zadataka, poznatu kao tri povezane misije. Više potraga linija otključava se na nivoima 30, 40 i 60, respektivno.\n - Kad pozovete ljude u svoju partiju, bit ćete nagrađeni pomicanjem sa osnovne liste svitka!\n - Misije možete kupiti u prodavnici potraga za zlatnike i dragulje.\n\nDa biste se borili protiv šefa ili sakupljali predmete za potragu za sakupljanjem, jednostavno normalno izvršite zadatke i tokom noći će se računati da će oštetiti. (Možda će biti potrebno ponovno punjenje povlačenjem zaslona da biste vidjeli kako se šefova ljestvica zdravlja spušta.) Ako se borite protiv šefa i propustili ste bilo koji dnevni zadatak, šef će oštetiti vašu partiju istovremeno kada i vi oštetite šefa.\n\nNakon 11. nivoa mudraci i ratnici stječu vještine koje im omogućavaju da nanesu dodatnu štetu šefu, tako da su ovo izvrsne klase koje možete odabrati na 10. nivou ako želite biti težak napadač.",
|
||||
"webFaqAnswer9": "Prvo, morate se pridružiti ili pokrenuti stranku klikom na \"Stranka\" na navigacijskoj traci. Iako se protiv čudovišta možete boriti sami, preporučujemo igranje u grupi jer će to znatno olakšati zadatke. Osim toga, imati mog prijatelja koji će vas bodriti dok izvršavate svoje zadatke vrlo je motivirajuće! Dalje, potrebni su vam svitci potraga koji su pohranjeni u odjeljku Inventar > Potrage. Postoje četiri načina za dobivanje svitka:\n * Kad pozovete ljude u svoju partiju, bit ćete nagrađeni pomicanjem sa osnovne liste svitka!\n * Na nivou 15 dobivate liniju zadatka, tj. Tri povezana zadatka. Više potraga linija otključava se na nivoima 30, 40 i 60, respektivno.\n * Misije možete kupiti u prodavnici potraga (trgovina > misije) za zlatnike i dragulje.\n * Kada se prijavite na Habiticu određeni broj puta, bit ćete nagrađeni svitcima iz potraga. Svitak zaradite za vrijeme 1., 7., 22. i 40. prijave.\n Da biste se borili protiv šefa ili sakupljali predmete za potragu za sakupljanjem, jednostavno normalno izvršite zadatke i tokom noći će se računati da će oštetiti. (Možda će biti potrebno ponovno punjenje kako bi se vidjelo kako se šefova ljestvica šefa spušta.) Ako se borite sa šefom i propustili ste bilo koji dnevni zadatak, šef će oštetiti vašu partiju istovremeno kada i vi oštetite šefa. Nakon 11. nivoa mudraci i ratnici stječu vještine koje im omogućavaju da nanesu dodatnu štetu šefu, tako da su ovo izvrsne klase koje možete odabrati na 10. nivou ako želite biti težak napadač.",
|
||||
"faqQuestion10": "Šta su dragulji i kako ih mogu dobiti?",
|
||||
"iosFaqAnswer10": "Dragulji se kupuju stvarnim novcem u Izbornik > Kupovina dragulja. Kada kupujete dragulje, pomažete nam da i dalje održavamo Habiticu. Vrlo smo zahvalni na svakoj podršci!\n\nPored direktne kupovine dragulja, postoje još tri načina na koja igrači mogu dobiti dragulje:\n\n* Osvojite izazov koji je postavio drugi igrač. Idite na Izbornik > Izazovi da biste se pridružili nekim.\n* Pretplatite se i otključajte mogućnost kupovine određenog broja dragulja mjesečno.\n* Dajte svoje vještine projektu Habitica. Pogledajte ovu wiki stranicu za više detalja: [Doprinosi Habitici] (http://habitica.fandom.com/wiki/Contributing_to_Habitica).\n\nImajte na umu da predmeti kupljeni putem dragulja ne nude nikakve statusne prednosti, pa igrači i dalje mogu koristiti aplikaciju bez njih!",
|
||||
"androidFaqAnswer10": "Dragulji se kupuju stvarnim novcem u Izbornik > Kupovina dragulja. Kada kupujete dragulje, pomažete nam da i dalje održavamo Habiticu. Vrlo smo zahvalni na svakoj podršci!\n\n Pored direktne kupovine dragulja, postoje još tri načina na koja igrači mogu dobiti dragulje:\n\n * Osvojite izazov koji je postavio drugi igrač. Idite na Izbornik > Izazovi da biste se pridružili nekim.\n * Pretplatite se i otključajte mogućnost kupovine određenog broja dragulja mjesečno.\n * Dajte svoje vještine projektu Habitica. Pogledajte ovu wiki stranicu za više detalja: [Doprinosi Habitici] (http://habitica.fandom.com/wiki/Contributing_to_Habitica).\n\n Imajte na umu da predmeti kupljeni putem dragulja ne nude nikakve statusne prednosti, pa igrači i dalje mogu koristiti aplikaciju bez njih!",
|
||||
"webFaqAnswer10": "Dragulji se kupuju stvarnim novcem, iako ih [pretplatnici] (https://habitica.com/user/settings/subscription) mogu kupiti zlatnicima. Kad se ljudi pretplate ili kupe dragulje, pomažu nam da stranica i dalje radi. Vrlo smo zahvalni na njihovoj podršci! Pored direktne kupovine dragulja ili pretplate, postoje još dva načina na koje igrači mogu dobiti dragulje:\n* Osvojite izazov koji je postavio drugi igrač. Idite na Izazovi > Otkrijte izazove da biste se pridružili nekim.\n* Dajte svoje vještine projektu Habitica. Pogledajte ovu wiki stranicu za više detalja: [Doprinosi Habitici] (http://habitica.fandom.com/wiki/Contributing_to_Habitica). Imajte na umu da predmeti kupljeni putem draguljima ne nude nikakve statusne prednosti, pa igrači i dalje mogu koristiti stranicu bez njih!",
|
||||
"faqQuestion11": "Kako mogu prijaviti grešku, ili zatražiti novu mogućnost?",
|
||||
"iosFaqAnswer11": "Ako mislite da ste naišli na grešku, idite na Izbornik > Podrška > Zatraži pomoć da biste potražili brze ispravke, poznate probleme ili prijavili grešku. Učinit ćemo sve što možemo da vam pomognemo.\n\nDa biste poslali povratne informacije ili zatražili funkciju, možete pristupiti našem obrascu za povratne informacije iz Izbornik > Podrška > Pošalji povratne informacije. Ako imamo bilo kakvih pitanja, obratit ćemo vam se za više informacija!",
|
||||
"androidFaqAnswer11": "Ako mislite da ste naišli na grešku, idite na Izbornik > Pomoć i česta pitanja > Zatražite pomoć da biste potražili brze ispravke, poznate probleme ili nam prijavili grešku. Učinit ćemo sve što možemo da vam pomognemo.\n\nDa biste poslali povratne informacije ili zatražili funkciju, možete pristupiti našem obrascu za povratne informacije iz Izbornik > Pomoć i ČPP > Pošalji povratne informacije. Ako imamo bilo kakvih pitanja, obratit ćemo vam se za više informacija!",
|
||||
"webFaqAnswer11": "Da biste prijavili grešku, idite na [Pomoć> Prijavi grešku] (https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) i pročitajte tačke iznad okvira za čat. Ako se ne možete prijaviti na Habitica, pošaljite svoje podatke za prijavu (a ne lozinku!) Na [<% = techAssistanceEmail%>] (<% = wikiTechAssistanceEmail%>). Ne brinite, uskoro ćemo to srediti! Zahtjevi za nove funkcionalnosti prikupljaju se putem Google obrasca. Idite na [Pomoć > Zatraži značajku] (https://docs.google.com/forms/d/e/1FAIpQLScPhrwq_7P1C6PTrI3lbvTsvqGyTNnGzp1ugi1Ml0PFee_p5g/viewform?usp=sf_link) i slijedite upute. Ta-da!",
|
||||
"faqQuestion12": "Kako se mogu boriti protiv svjetskog šefa?",
|
||||
"iosFaqAnswer12": "Svjetski šefovi su posebna čudovišta koja se pojavljuju u aščinici. Svi aktivni korisnici automatski se bore protiv šefa, a njihovi zadaci i vještine će oštetiti šefa kao i obično.\n\nTakođe možete istovremeno biti u normalnoj potrazi. Vaši zadaci i vještine računat će se i na svjetskog šefa i na potragu za šefom/kolekcijom u vašoj partiji.\n\nSvjetski šef nikada ni na koji način neće povrijediti vas ili vaš račun. Umjesto toga, ima Rage Bar koji se puni kada korisnici preskoče dnevne zadatke. Ako se njegova traka za bijes napuni, napast će jednog od neigrača na sajtu i njihova će se slika promijeniti.\n\nMožete pročitati više o [prošlim svjetskim šefovima] (http://habitica.fandom.com/wiki/World_Bosses) na wikiju.",
|
||||
"androidFaqAnswer12": "Svjetski šefovi su posebna čudovišta koja se pojavljuju u aščinici. Svi aktivni korisnici automatski se bore protiv šefa, a njihovi zadaci i vještine će oštetiti šefa kao i obično.\n\nTakođe možete istovremeno biti u normalnoj potrazi. Vaši zadaci i vještine računat će se i na svjetskog šefa i na potragu za šefom/kolekcijom u vašoj partiji.\n\nSvjetski šef nikada ni na koji način neće povrijediti vas ili vaš račun. Umjesto toga, ima Rage Bar koji se puni kada korisnici preskoče dnevne zadatke. Ako se njegova traka za bijes napuni, napast će jednog od neigrača na sajtu i njihova će se slika promijeniti.\n\nMožete pročitati više o [prošlim svjetskim šefovima] (http://habitica.fandom.com/wiki/World_Bosses) na wikiju.",
|
||||
"webFaqAnswer12": "Svjetski šefovi su posebna čudovišta koja se pojavljuju u aščinici. Svi aktivni korisnici automatski se bore protiv šefa, a njihovi zadaci i vještine će oštetiti šefa kao i obično. Takođe možete istovremeno biti u normalnoj potrazi. Vaši zadaci i vještine računat će se i na svjetskog šefa i na potragu za šefom/kolekcijom u vašoj partiji. Svjetski šef nikada ni na koji način neće povrijediti vas ili vaš račun. Umjesto toga, ima Rage Bar koji se puni kada korisnici preskoče dnevne zadatke. Ako se njegova traka za bijes napuni, napast će jednog od neigrača na sajtu i njihova će se slika promijeniti. Možete pročitati više o [prošlim svjetskim šefovima] (http://habitica.fandom.com/wiki/World_Bosses) na wikiju.",
|
||||
"iosFaqStillNeedHelp": "Ako imate pitanje koje nije navedeno na ovom popisu ili pod [Wiki ČPP](http://habitica.wikia.com/wiki/FAQ), dođi i pitaj u aščinici pod Izbornik > Krčma! Rado ćemo pomoći.",
|
||||
"androidFaqStillNeedHelp": "Ako imate pitanje koje nije navedeno na ovom popisu ili pod [Wiki ČPP](http://habitica.wikia.com/wiki/FAQ), dođi i pitaj u aščinici pod Izbornik > Krčma! Rado ćemo pomoći.",
|
||||
"webFaqStillNeedHelp": "Ako imate pitanje koje nije navedeno na ovom popisu ili pod [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), dođi i pitaj u [Habitica esnafu za pomoć](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Rado ćemo pomoći."
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"npc": "NPC",
|
||||
"npcAchievementName": "<%= key %> NPC",
|
||||
"npcAchievementText": "Backed the Kickstarter project at the maximum level!",
|
||||
"welcomeTo": "Welcome to",
|
||||
"welcomeBack": "Welcome back!",
|
||||
"justin": "Justin",
|
||||
"justinIntroMessage1": "Hello there! You must be new here. My name is <strong>Justin</strong>, and I'll be your guide in Habitica.",
|
||||
"justinIntroMessage3": "Great! Now, what are you interested in working on throughout this journey?",
|
||||
"justinIntroMessageUsername": "Before we begin, let’s figure out what to call you. Below you’ll find a display name and username I’ve generated for you. After you’ve picked a display name and username, we’ll get started by creating an avatar!",
|
||||
"npc": "NIL",
|
||||
"npcAchievementName": "<%= key %> NIL",
|
||||
"npcAchievementText": "Podržao/la je Kickstarter projekt maksimalno!",
|
||||
"welcomeTo": "Dobrodošli u",
|
||||
"welcomeBack": "Dobrodošli nazad!",
|
||||
"justin": "Džemal",
|
||||
"justinIntroMessage1": "Zdravo! Sigurno ste novi ovdje. Moje ime je <strong>Džemal</strong> i bit ću vam vodič na Habitici.",
|
||||
"justinIntroMessage3": "Super! Sada, za šta ste zainteresovani da radite tokom ovog putovanja?",
|
||||
"justinIntroMessageUsername": "Prije nego što započnemo, hajde da vidimo kako vas možemo nazvati. Ispod ćete pronaći ime za prikaz i korisničko ime koje sam napravio za vas. Nakon što odaberete ime za prikaz i korisničko ime, započet ćemo sa stvaranjem avatara!",
|
||||
"justinIntroMessageAppearance": "So how would you like to look? Don’t worry, you can change this later.",
|
||||
"introTour": "Here we are! I've filled out some Tasks for you based on your interests, so you can get started right away. Click a Task to edit or add new Tasks to fit your routine!",
|
||||
"prev": "Prev",
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"veteranWolf": "Vuk veteran",
|
||||
"etherealLion": "Eterični lav",
|
||||
"magicMounts": "Čarobni napitci jahalica",
|
||||
"questMounts": "Jahalice iz akcija",
|
||||
"questMounts": "Jahalice iz misija",
|
||||
"mountsTamed": "Pripitomljene jahalice",
|
||||
"noActiveMount": "Nema aktivne jahalice",
|
||||
"activeMount": "Aktivna jahalica",
|
||||
@@ -42,7 +42,7 @@
|
||||
"noFoodAvailable": "Nemate hrane za ljubimce.",
|
||||
"food": "Hrana za ljubimce i sedla",
|
||||
"quickInventory": "Brzi inventar",
|
||||
"haveHatchablePet": "Imate <% = potion %> napitak za izlijeganje i <% = egg %> jaje za izlijeganje ovog ljubimca! <b>Kliknite</b> da biste se izlegli!",
|
||||
"haveHatchablePet": "Imate <%= potion %> napitak za izlijeganje i <%= egg %> jaja za izlijeganje ovog ljubimca! <b>Kliknite</b> da biste se izlegli!",
|
||||
"hatchingPotion": "napitak za izlijeganje",
|
||||
"magicHatchingPotions": "Magični napitci za izlijeganje",
|
||||
"hatchingPotions": "Napitci za izlijeganje",
|
||||
@@ -50,12 +50,64 @@
|
||||
"eggs": "Jaja",
|
||||
"egg": "<%= eggType %> jaje",
|
||||
"potion": "<%= potionType %> napitak",
|
||||
"gryphatrice": "Gryphatrice",
|
||||
"gryphatrice": "Grifetris",
|
||||
"invisibleAether": "Nevidljivi eter",
|
||||
"royalPurpleJackalope": "Kraljevski ljubičasti Jackalope",
|
||||
"hopefulHippogriffMount": "Hopeful Hippogriff",
|
||||
"hopefulHippogriffPet": "Hopeful Hippogriff",
|
||||
"royalPurpleJackalope": "Kraljevska ljubičasta džakalopa",
|
||||
"hopefulHippogriffMount": "Nadajući hipogrif",
|
||||
"hopefulHippogriffPet": "Nadajući hipogrif",
|
||||
"magicalBee": "Magična pčela",
|
||||
"phoenix": "Feniks",
|
||||
"royalPurpleGryphon": "Kraljevski Ljubičasti Grifon"
|
||||
"royalPurpleGryphon": "Kraljevski Ljubičasti Grifon",
|
||||
"mountNotOwned": "Niste vlasnik ove jahalice.",
|
||||
"petNotOwned": "Niste vlasnik ovog ljubimca.",
|
||||
"hatchedPetHowToUse": "Posjetite [Štalu](<%= stableUrl %>) da nahranite i opremite vašeg novog ljubimca!",
|
||||
"hatchedPetGeneric": "Izlegli ste novog ljubimca!",
|
||||
"hatchedPet": "Izlegli ste novo <%= potion %> <%= egg %>!",
|
||||
"triadBingoAchievement": "Zaslužili ste postignuće \"Trostrugi bingo\" jer ste pronašli sve ljubimce, pripitomili sve jahalice i ponovo pronašli sve ljubimce!",
|
||||
"triadBingoText2": " i oslobođena puna štala ukupno <%= count %> puta",
|
||||
"triadBingoText": "Pronađeno je svih 90 ljubimaca, svih 90 jahalica i PONOVO pronađeno svih 90 ljubimaca (KAKO STE TO RADILI!)",
|
||||
"invalidAmount": "Neispravna količina hrane, mora biti cijeli pozitivan broj",
|
||||
"tooMuchFood": "Pokušavate nahraniti ljubimca s previše hrane, radnja je otkazana",
|
||||
"notEnoughFood": "Nemate dovoljno hrane",
|
||||
"notEnoughPetsMounts": "Niste prikupili dovoljno ljubimaca i jahalica",
|
||||
"notEnoughMounts": "Niste prikupili dovoljno jahalica",
|
||||
"notEnoughPets": "Niste prikupili dovoljno ljubimaca",
|
||||
"clickOnPotionToHatch": "Kliknite napitak za izlijeganje da biste ga iskoristili na <% = eggName%> i izlegnite novog ljubimca!",
|
||||
"hatchDialogText": "Izlijte svoj napitak za izlijeganje <%= potionName %> na jaje <%= eggName %> i ono će se izleći u <%= petName %>.",
|
||||
"clickOnEggToHatch": "Kliknite na jaje da koristite vaš <%= potionName %> napitak za izlijeganje i izlegnite novog ljubimca!",
|
||||
"dragThisPotion": "Povucite <%= potionName %> do jajeta i izlegnite novog ljubimca!",
|
||||
"clickOnPetToFeed": "Kliknite na ljubimca da ga nahranite sa <%= foodName %> i gledajte kako raste!",
|
||||
"dragThisFood": "Povucite <%= foodName %> do ljubimca i gledajte kako raste!",
|
||||
"foodTitle": "Hrana za ljubimce",
|
||||
"hatch": "Izleći!",
|
||||
"sortByHatchable": "Izlegljiv",
|
||||
"sortByColor": "Boja",
|
||||
"standard": "Standard",
|
||||
"filterByWacky": "Otkačeno",
|
||||
"filterByQuest": "Potraga",
|
||||
"filterByMagicPotion": "Čarobni napitak",
|
||||
"filterByStandard": "Standard",
|
||||
"petLikeToEatText": "Ljubimci će rasti bez obzira čime ih hranite, ali oni će rasti brže ako ih hranite onom hranom za ljubimce koja im se najviše sviđa. Eksperimentišite da biste saznali obrazac ili pogledajte odgovore ovdje: <br/> <a href=\"http://habitica.fandom.com/wiki/Food_Preferences\" target=\"_blank\">http://habitica.fandom.com/wiki/Food_Preferences</a>",
|
||||
"petLikeToEat": "Šta moj ljubimac voli jesti?",
|
||||
"welcomeStableText": "Dobrodošli u štalu! Ja sam Matt, majstor zvijeri. Svaki put kad izvršite zadatak, imat ćete slučajnu priliku da dobijete jaje ili napitak za izlijeganje da izlegnete ljubimce. Kada izležete ljubimca, on će se pojaviti ovdje! Kliknite sliku ljubimca da biste ga dodali u svoj avatar. Nahranite ih hranom za ljubimce koju nađete i oni će izrasti u izdržljive jahalice.",
|
||||
"welcomeStable": "Dobrodošli u štalu!",
|
||||
"mountsReleased": "Jahalice oslobođene",
|
||||
"mountsAndPetsReleased": "Jahalice i ljubimci oslobođeni",
|
||||
"petsReleased": "Ljubimci oslobođeni.",
|
||||
"releaseBothSuccess": "Oslobođeni su vaši standardni ljubimci i jahalice!",
|
||||
"releaseBothConfirm": "Jeste li sigurni da želite osloboditi svoje standardne ljubimce i jahalice?",
|
||||
"releaseMountsSuccess": "Oslobođene su vaše standardne jahalice!",
|
||||
"releaseMountsConfirm": "Jeste li sigurni da želite osloboditi svoje standardne jahalice?",
|
||||
"releasePetsSuccess": "Oslobođeni su vaši standardni ljubimci!",
|
||||
"releasePetsConfirm": "Jeste li sigurni da želite otpustiti vaše standardne ljubimce?",
|
||||
"keyToBothDesc": "Oslobodite sve standardne ljubimce i jahalice kako biste ih mogli ponovo sakupljati. (To ne utječe na ljubimce/jahalice iz misija i rijetke ljubimce/jahalice.)",
|
||||
"keyToBoth": "Glavni ključ za uzgajivače",
|
||||
"keyToMountsDesc": "Otpustite sve standardne jahalice da biste ih mogli ponovo sakupljati. (To ne utječe na jahalice iz misija i rijetke jahalice.)",
|
||||
"keyToMounts": "Ključ za uzgajivače jahalica",
|
||||
"keyToPetsDesc": "Oslobodite sve standardne ljubimce kako biste ih mogli ponovo sakupljati. (To ne utječe na ljubimce iz misija i rijetke ljubimce.)",
|
||||
"keyToPets": "Ključ za uzgajivače ljubimaca",
|
||||
"mountName": "<%= potion(locale) %> <%= mount(locale) %>",
|
||||
"petName": "<%= potion(locale) %> <%= egg(locale) %>",
|
||||
"raisedPet": "Odhranili ste <%= pet %>!",
|
||||
"feedPet": "Hrana <%= text %> za vašeg <%= name %>?"
|
||||
}
|
||||
|
||||
@@ -1,75 +1,89 @@
|
||||
{
|
||||
"quests": "Quests",
|
||||
"quest": "quest",
|
||||
"petQuests": "Pet and Mount Quests",
|
||||
"unlockableQuests": "Unlockable Quests",
|
||||
"goldQuests": "Masterclasser Quest Lines",
|
||||
"questDetails": "Quest Details",
|
||||
"questDetailsTitle": "Quest Details",
|
||||
"questDescription": "Quests allow players to focus on long-term, in-game goals with the members of their party.",
|
||||
"invitations": "Invitations",
|
||||
"completed": "Completed!",
|
||||
"rewardsAllParticipants": "Rewards for all Quest Participants",
|
||||
"rewardsQuestOwner": "Additional Rewards for Quest Owner",
|
||||
"inviteParty": "Invite Party to Quest",
|
||||
"questInvitation": "Quest Invitation:",
|
||||
"quests": "Misije",
|
||||
"quest": "misija",
|
||||
"petQuests": "Potrage za ljubimcima i jahalicama",
|
||||
"unlockableQuests": "Misije koje se mogu otključati",
|
||||
"goldQuests": "Nizovi majstorskih misija",
|
||||
"questDetails": "Detalji misije",
|
||||
"questDetailsTitle": "Detalji misije",
|
||||
"questDescription": "Misije omogućavaju igračima da se usredotoče na dugoročne ciljeve u igri sa članovima svoje partije.",
|
||||
"invitations": "Pozivnice",
|
||||
"completed": "Završeno!",
|
||||
"rewardsAllParticipants": "Nagrade za sve učesnike misije",
|
||||
"rewardsQuestOwner": "Dodatne nagrade za vlasnika misije",
|
||||
"inviteParty": "Pozovite partiju u misiju",
|
||||
"questInvitation": "Pozvinice misije: ",
|
||||
"questInvitationInfo": "Invitation for the Quest <%= quest %>",
|
||||
"invitedToQuest": "You were invited to the Quest <span class=\"notification-bold-blue\"><%= quest %></span>",
|
||||
"askLater": "Ask Later",
|
||||
"buyQuest": "Buy Quest",
|
||||
"accepted": "Accepted",
|
||||
"declined": "Declined",
|
||||
"rejected": "Rejected",
|
||||
"pending": "Pending",
|
||||
"questCollection": "+ <%= val %> quest item(s) found",
|
||||
"invitedToQuest": "Bili ste pozvani da se pridružite potrazi <span class=\"notification-bold-blue\"><%= quest %></span>",
|
||||
"askLater": "Pitaj kasnije",
|
||||
"buyQuest": "Kupi misiju",
|
||||
"accepted": "Prihvaćeno",
|
||||
"declined": "Odbijeno",
|
||||
"rejected": "Odbijeno",
|
||||
"pending": "Na čekanju",
|
||||
"questCollection": "+ <%= val %> stavki pronađeno u misiji",
|
||||
"questDamage": "+ <%= val %> damage to boss",
|
||||
"begin": "Begin",
|
||||
"bossHP": "Boss HP",
|
||||
"bossStrength": "Boss Strength",
|
||||
"rage": "Rage",
|
||||
"collect": "Collect",
|
||||
"collected": "Collected",
|
||||
"abort": "Abort",
|
||||
"leaveQuest": "Leave Quest",
|
||||
"sureLeave": "Are you sure you want to leave the active quest? All your quest progress will be lost.",
|
||||
"mustComplete": "You must first complete <%= quest %>.",
|
||||
"mustLvlQuest": "You must be level <%= level %> to buy this quest!",
|
||||
"unlockByQuesting": "To unlock this quest, complete <%= title %>.",
|
||||
"questConfirm": "Are you sure? Only <%= questmembers %> of your <%= totalmembers %> party members have joined this quest! Quests start automatically when all players have joined or rejected the invitation.",
|
||||
"sureCancel": "Are you sure you want to cancel this quest? All invitation acceptances will be lost. The quest owner will retain possession of the quest scroll.",
|
||||
"sureAbort": "Are you sure you want to abort this mission? It will abort it for everyone in your party and all progress will be lost. The quest scroll will be returned to the quest owner.",
|
||||
"doubleSureAbort": "Are you double sure? Make sure they won't hate you forever!",
|
||||
"bossRageTitle": "Rage",
|
||||
"bossRageDescription": "When this bar fills, the boss will unleash a special attack!",
|
||||
"startAQuest": "START A QUEST",
|
||||
"startQuest": "Start Quest",
|
||||
"questInvitationDoesNotExist": "No quest invitation has been sent out yet.",
|
||||
"questInviteNotFound": "No quest invitation found.",
|
||||
"guildQuestsNotSupported": "Guilds cannot be invited on quests.",
|
||||
"questNotOwned": "You don't own that quest scroll.",
|
||||
"questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.",
|
||||
"questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.",
|
||||
"questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.",
|
||||
"questAlreadyAccepted": "You already accepted the quest invitation.",
|
||||
"noActiveQuestToLeave": "No active quest to leave",
|
||||
"questLeaderCannotLeaveQuest": "Quest leader cannot leave quest",
|
||||
"notPartOfQuest": "You are not part of the quest",
|
||||
"youAreNotOnQuest": "You're not on a quest",
|
||||
"noActiveQuestToAbort": "There is no active quest to abort.",
|
||||
"onlyLeaderAbortQuest": "Only the group or quest leader can abort a quest.",
|
||||
"questAlreadyRejected": "You already rejected the quest invitation.",
|
||||
"cantCancelActiveQuest": "You can not cancel an active quest, use the abort functionality.",
|
||||
"onlyLeaderCancelQuest": "Only the group or quest leader can cancel the quest.",
|
||||
"questNotPending": "There is no quest to start.",
|
||||
"questOrGroupLeaderOnlyStartQuest": "Only the quest leader or group leader can force start the quest",
|
||||
"loginIncentiveQuest": "To unlock this quest, check in to Habitica on <%= count %> different days!",
|
||||
"loginReward": "<%= count %> Check-ins",
|
||||
"questBundles": "Discounted Quest Bundles",
|
||||
"noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
|
||||
"pendingDamage": "<%= damage %> pending damage",
|
||||
"pendingDamageLabel": "pending damage",
|
||||
"bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
|
||||
"rageAttack": "Rage Attack:",
|
||||
"bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
|
||||
"rageStrikes": "Rage Strikes"
|
||||
"begin": "Početak",
|
||||
"bossHP": "Šefovo zdravlje",
|
||||
"bossStrength": "Šefova snaga",
|
||||
"rage": "Bijes",
|
||||
"collect": "Sakupiti",
|
||||
"collected": "Sakupljeno",
|
||||
"abort": "Otkaži",
|
||||
"leaveQuest": "Napusti misiju",
|
||||
"sureLeave": "Jeste li sigurni da želite napustiti aktivnu potragu? Sav vaš napredak u potrazi bit će izgubljen.",
|
||||
"mustComplete": "Prvo morate završiti <%= quest %>.",
|
||||
"mustLvlQuest": "Morate biti na nivou <%= level %> da biste kupili ovu misiju!",
|
||||
"unlockByQuesting": "Da otključate ovu misiju, završite <%= title %>.",
|
||||
"questConfirm": "Jeste li sigurni? Samo <%= questmembers %> od ukupno <% = totalmembers%> članova partije pridružili su se ovoj potrazi! Misije počinju automatski kada se svi igrači pridruže pozivu ili ga odbiju.",
|
||||
"sureCancel": "Jeste li sigurni da želite otkazati ovu potragu? Sva prihvaćanja poziva bit će izgubljena. Vlasnik zadatka zadržat će svitak misije.",
|
||||
"sureAbort": "Jeste li sigurni da želite prekinuti ovu misiju? To će prekinuti za sve u vašoj partiji i sav napredak će biti izgubljen. Svitak misije vratit će se vlasniku zadatka.",
|
||||
"doubleSureAbort": "Jeste li zaista sigurni? Pazite da vas zauvijek ne zamrzite!",
|
||||
"bossRageTitle": "Bijes",
|
||||
"bossRageDescription": "Kad se ova traka napuni, šef će izvesti poseban napad!",
|
||||
"startAQuest": "ZAPOČNI MISIJU",
|
||||
"startQuest": "Započni misiju",
|
||||
"questInvitationDoesNotExist": "Još nije poslana nijedna pozivnica.",
|
||||
"questInviteNotFound": "Nije pronađena nijedna pozivnica.",
|
||||
"guildQuestsNotSupported": "Esnafi se ne mogu pozivati u misije.",
|
||||
"questNotOwned": "Vi ne posjedujete taj svitak misije.",
|
||||
"questNotGoldPurchasable": "Misiju \"<%= key %>\" nije moguće kupiti zlatnicima.",
|
||||
"questNotGemPurchasable": "Misiju \"<%= key %>\" nije moguće kupiti draguljima.",
|
||||
"questAlreadyUnderway": "Vaša partija je već u potrazi. Pokušajte ponovo kada završi trenutna potraga.",
|
||||
"questAlreadyAccepted": "Već ste prihvatili pozivnicu za potragu.",
|
||||
"noActiveQuestToLeave": "Nema aktivne potrage koju možete napustiti",
|
||||
"questLeaderCannotLeaveQuest": "Vođa potrage ne može napustiti potragu",
|
||||
"notPartOfQuest": "Niste dio potrage",
|
||||
"youAreNotOnQuest": "Niste u potrazi",
|
||||
"noActiveQuestToAbort": "Ne postoji aktivna potraga za prekinuti.",
|
||||
"onlyLeaderAbortQuest": "Samo vođa grupe ili misije može prekinuti od misiju.",
|
||||
"questAlreadyRejected": "Već ste odbili poziv za potragu.",
|
||||
"cantCancelActiveQuest": "Ne možete otkazati aktivnu potragu, koristite funkciju prekida.",
|
||||
"onlyLeaderCancelQuest": "Samo vođa grupe ili misije može otkazati misiju.",
|
||||
"questNotPending": "Ne postoji potraga koja se može početi.",
|
||||
"questOrGroupLeaderOnlyStartQuest": "Samo vođa potrage ili vođa grupe može prisilno započeti potragu",
|
||||
"loginIncentiveQuest": "Da biste otključali ovu potragu, prijavite se na Habiticu <%= count%> dana zaredom!",
|
||||
"loginReward": "<%= count %> prijava",
|
||||
"questBundles": "Paketi misija na popustu",
|
||||
"noQuestToStart": "Ne možete pronaći potragu koja se može početi? Pokušajte provjeriti prodavnicu misija na pijaci za nove ponude!",
|
||||
"pendingDamage": "<%= damage %> štete čekanju",
|
||||
"pendingDamageLabel": "šteta na čekanju",
|
||||
"bossHealth": "<%= currentHealth %> / <%= maxHealth %> Zadravlje",
|
||||
"rageAttack": "Napad bijesa:",
|
||||
"bossRage": "<%= currentRage %> / <%= maxRage %> Bijes",
|
||||
"rageStrikes": "Udar bijesa",
|
||||
"tavernBossTired": "<%= bossName %> pokušava osloboditi <%= rageName %> ali je suviše umoran/na.",
|
||||
"chatQuestCancelled": "<%= username %> je odustao od partijske potrage <%= questName %>.",
|
||||
"chatQuestAborted": "<%= username %> prekinuo partijsku potragu <%= questName %>.",
|
||||
"chatItemQuestFinish": "Svi predmeti pronađeni! Partija je dobila njihove nagrade.",
|
||||
"chatFindItems": "<%= username %> pronašao/la <%= items %>.",
|
||||
"chatBossDefeated": "Porazili ste <%= bossName%>! Članovi partije koji su učestvovali u misiji dobijaju nagrade za pobjedu.",
|
||||
"chatBossDontAttack": "<%= username %> napada <%= bossName %> za <%= userDamage %> štete. <%= bossName %> ne napada, jer poštuje činjenicu da postoje neke greške nakon održavanja i ne želi nikoga povrijediti nepravedno. Uskoro će nastaviti sa svojim divljanjem!",
|
||||
"chatBossDamage": "<%= username %> napada <%= bossName %> s <%= userDamage %> štete. <%= bossName %> napada partiju s <%= bossDamage %> štete.",
|
||||
"chatQuestStarted": "Vaša portraga, <%= questName %>, je počela.",
|
||||
"questAlreadyStartedFriendly": "Potraga je već započela, ali uvijek možete uhvatiti sljedeću!",
|
||||
"questAlreadyStarted": "Potraga je već započela.",
|
||||
"bossDamage": "Oštetili ste šefa!",
|
||||
"questInvitationNotificationInfo": "Pozvani ste da se pridružite potrazi",
|
||||
"hatchingPotionQuests": "Čarobni napitci za izlijeganje iz misija"
|
||||
}
|
||||
|
||||
@@ -431,5 +431,11 @@
|
||||
"backgroundFlyingOverTropicalIslandsNotes": "Άσε τη θέα να σου κόψει την ανάσα όσο Πετάς πάνω από Τροπικά Νησιά.",
|
||||
"backgroundFlyingOverTropicalIslandsText": "Πετώντας πάνω από Τροπικά Νησιά",
|
||||
"backgroundBlossomingDesertNotes": "Δες μια σπάνια υπεράνθηση στην Ανθισμένη Έρημο.",
|
||||
"backgroundBlossomingDesertText": "Ανθισμένη Έρημος"
|
||||
"backgroundBlossomingDesertText": "Ανθισμένη Έρημος",
|
||||
"backgroundBirchForestNotes": "Φλέρταρε σε ένα ήρεμο Δάσος Σημύδων.",
|
||||
"backgroundBirchForestText": "Δάσος Σημύδων",
|
||||
"backgroundAmidAncientRuinsNotes": "Στάσου ευλαβικά για το μυστηριώδες παρελθόν Ανάμεσα σε Αρχαία Ερείπια.",
|
||||
"backgroundAmidAncientRuinsText": "Ανάμεσα σε Αρχαία Ερείπια",
|
||||
"backgroundGiantDandelionsText": "Γιγαντιαίες Πικραλίδες",
|
||||
"backgroundGiantDandelionsNotes": "Χασομέρησε ανάμεσα σε Γιγαντιαίες Πικραλίδες."
|
||||
}
|
||||
|
||||
@@ -8,5 +8,7 @@
|
||||
"clearBrowserData": "Διαγραφή Δεδομένων Προγράμματος Περιήγησης",
|
||||
"chores": "Μικροδουλειές",
|
||||
"termsAndAgreement": "Πατώντας το κουμπί από κάτω, υποδεικνύετε πως έχετε διαβάσει και συμφωνείτε με τους <a href='/static/terms'> Όρους Λειτουργίας</a> και <a href='/static/privacy'>Πολιτική Απορρήτου</a>.",
|
||||
"FAQ": "Συχνές Ερωτήσεις"
|
||||
"FAQ": "Συχνές Ερωτήσεις",
|
||||
"forgotPassword": "Ξέχασες τον Κωδικό σου;",
|
||||
"companyDonate": "Δωρεά"
|
||||
}
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
{
|
||||
"noItemsAvailableForType": "Δεν έχεις <%= type %>",
|
||||
"noItemsAvailableForType": "Δεν έχεις <%= type %>.",
|
||||
"foodItemType": "Ζωοτροφή",
|
||||
"eggsItemType": "Αυγά",
|
||||
"hatchingPotionsItemType": "Φίλτρα εκκόλαψης",
|
||||
"specialItemType": "Ξεχωριστά αντικείμενα",
|
||||
"lockedItem": "Κλειδωμένα αντικείμενα"
|
||||
"lockedItem": "Κλειδωμένα αντικείμενα",
|
||||
"allItems": "Όλα τα Αντικείμενα",
|
||||
"petAndMount": "Κατοικίδιο και Θηρίο"
|
||||
}
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
"worldBossDescription": "Περιγραφή του Παγκόσμιου Εχθρού",
|
||||
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
|
||||
"howManyToSell": "How many would you like to sell?",
|
||||
"yourBalance": "Your balance",
|
||||
"yourBalance": "Ο χρυσός σου:",
|
||||
"sell": "Sell",
|
||||
"buyNow": "Buy Now",
|
||||
"sortByNumber": "Number",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"activePet": "Ενεργό Κατοικίδιο",
|
||||
"pets": "Κατοικίδια",
|
||||
"stable": "Στάβλος"
|
||||
"stable": "Στάβλος",
|
||||
"petsFound": "Κατοικίδια που έχουν Βρεθεί",
|
||||
"noActivePet": "Κανένα Ενεργό Κατοικίδιο"
|
||||
}
|
||||
|
||||
@@ -102,5 +102,8 @@
|
||||
"achievementSeeingRedModalText": "You collected all the Red Pets!",
|
||||
"achievementRedLetterDay": "Red Letter Day",
|
||||
"achievementRedLetterDayText": "Has tamed all Red Mounts.",
|
||||
"achievementRedLetterDayModalText": "You tamed all the Red Mounts!"
|
||||
"achievementRedLetterDayModalText": "You tamed all the Red Mounts!",
|
||||
"achievementLegendaryBestiary": "Legendary Bestiary",
|
||||
"achievementLegendaryBestiaryText": "Has hatched all the mythical pets: Dragon, Flying Pig, Gryphon, Sea Serpent, and Unicorn!",
|
||||
"achievementLegendaryBestiaryModalText": "You collected all the mythical pets!"
|
||||
}
|
||||
|
||||
@@ -659,6 +659,22 @@
|
||||
"backgroundWintryCastleText": "Wintry Castle",
|
||||
"backgroundWintryCastleNotes": "Witness a Wintry Castle through the chilly mists.",
|
||||
|
||||
"backgrounds022021": "SET 81: Released February 2021",
|
||||
"backgroundFlyingOverGlacierText": "Flying Over a Glacier",
|
||||
"backgroundFlyingOverGlacierNotes": "Witness frozen majesty by Flying Over a Glacier.",
|
||||
"backgroundHeartShapedBubblesText": "Heart-Shaped Bubbles",
|
||||
"backgroundHeartShapedBubblesNotes": "Float cheerfully among Heart-Shaped Bubbles.",
|
||||
"backgroundThroneRoomText": "Throne Room",
|
||||
"backgroundThroneRoomNotes": "Grant an audience in your luxurious Throne Room.",
|
||||
|
||||
"backgrounds032021": "SET 82: Released March 2021",
|
||||
"backgroundInTheArmoryText": "In the Armory",
|
||||
"backgroundInTheArmoryNotes": "Gear up In the Armory.",
|
||||
"backgroundSplashInAPuddleText": "Splashing in a Puddle",
|
||||
"backgroundSplashInAPuddleNotes": "Enjoy the sequel to the storm by Splashing in a Puddle.",
|
||||
"backgroundSpringThawText": "Spring Thaw",
|
||||
"backgroundSpringThawNotes": "Watch winter yield to the Spring Thaw.",
|
||||
|
||||
"timeTravelBackgrounds": "Steampunk Backgrounds",
|
||||
"backgroundAirshipText": "Airship",
|
||||
"backgroundAirshipNotes": "Become a sky sailor on board your very own Airship.",
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
"webFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you click a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your party and one of your party mates did not complete all their Dailies, the Boss will attack you. The main way to heal is to gain a level, which restores all your Health. You can also buy a Health Potion with Gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. Other Healers can heal you as well if you are in a Party with them. Learn more by clicking \"Party\" in the navigation bar.",
|
||||
|
||||
"faqQuestion5": "How do I play Habitica with my friends?",
|
||||
"iosFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on Quests, battle monsters, and cast skills to support each other.\n\nIf you want to start your own Party, go to Menu > [Party](https://habitica.com/party) and tap \"Create New Party\". Then scroll down and tap \"Invite a Member\" to invite your friends by entering their @username. If you want to join someone else’s Party, just give them your @username and they can invite you!\n\nYou and your friends can also join Guilds, which are public chat rooms that bring people together based on shared interests! There are a lot of helpful and fun communities, be sure to check them out.\n\nIf you’re feeling more competitive, you and your friends can create or join Challenges to take on a set of tasks. There are all sorts public of Challenges available that span a wide array of interests and goals. Some public Challenges will even award Gem prizes if you’re selected as the winner.",
|
||||
"iosFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on Quests, battle monsters, and cast skills to support each other.\n\nIf you want to start your own Party, go to Menu > [Party](https://habitica.com/party) and tap \"Create New Party\". Then scroll down and tap \"Invite a Member\" to invite your friends by entering their @username. If you want to join someone else’s Party, just give them your @username and they can invite you!\n\nYou and your friends can also join Guilds, which are public chat rooms that bring people together based on shared interests! There are a lot of helpful and fun communities, be sure to check them out.\n\nIf you’re feeling more competitive, you and your friends can create or join Challenges to take on a set of tasks. There are all sorts of public Challenges available that span a wide array of interests and goals. Some public Challenges will even award Gem prizes if you’re selected as the winner.",
|
||||
"androidFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to the [website](https://habitica.com/) to create one if you don't already have a Party. You can also join guilds together (Social > Guilds). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many guilds as you'd like, but only one party.\n\n For more detailed info, check out the wiki pages on [Parties](http://habitica.fandom.com/wiki/Party) and [Guilds](http://habitica.fandom.com/wiki/Guilds).",
|
||||
"webFaqAnswer5": "The best way is to invite them to a Party with you by clicking \"Party\" in the navigation bar! Parties can go on quests, battle monsters, and cast skills to support each other. You can also join Guilds together (click on \"Guilds\" in the navigation bar). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many Guilds as you'd like, but only one Party. For more detailed info, check out the wiki pages on [Parties](http://habitica.fandom.com/wiki/Party) and [Guilds](http://habitica.fandom.com/wiki/Guilds).",
|
||||
|
||||
|
||||
@@ -405,6 +405,8 @@
|
||||
"weaponMystery201911Notes": "The crystal ball atop this staff can show you the future, but beware! Using such dangerous knowledge can change a person in unexpected ways. Confers no benefit. November 2019 Subscriber Item.",
|
||||
"weaponMystery202002Text": "Stylish Sweetheart Parasol",
|
||||
"weaponMystery202002Notes": "An accessory that lends you an air of mystery and romance. Sun protection is a bonus! Confers no benefit. February 2020 Subscriber Item.",
|
||||
"weaponMystery202102Text": "Charming Wand",
|
||||
"weaponMystery202102Notes": "The glowing pink gem in this wand holds the power to spread joy and friendship far and wide! Confers no benefit. February 2021 Subscriber Item.",
|
||||
"weaponMystery301404Text": "Steampunk Cane",
|
||||
"weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.",
|
||||
|
||||
@@ -534,6 +536,8 @@
|
||||
"weaponArmoireEveningTeaNotes": "This panacea will help you relax so those big tasks don't look so threatening. Increases Intelligence by <%= int %>. Enchanted Armoire: Dressing Gown Set (Item 3 of 3).",
|
||||
"weaponArmoireBlueMoonSaiText": "Dark Lunar Sai",
|
||||
"weaponArmoireBlueMoonSaiNotes": "This sai is a traditional weapon, imbued with the powers of the dark side of the moon. Increases Strength by <%= str %>. Enchanted Armoire: Blue Moon Rogue Set (item 1 of 4).",
|
||||
"weaponArmoireJadeGlaiveText": "Jade Glaive",
|
||||
"weaponArmoireJadeGlaiveNotes": "The reach of this glaive will keep you far from your enemies! Also, you can knock things off high shelves. Increases Strength by <%= str %>. Enchanted Armoire: Jade Warrior Set (Item 3 of 3).",
|
||||
|
||||
"armor": "armor",
|
||||
"armorCapitalized": "Armor",
|
||||
@@ -998,6 +1002,10 @@
|
||||
"armorMystery202007Notes": "Swim, flip, dive, and race with this handsome and powerful tail! Confers no benefit. July 2020 Subscriber Item.",
|
||||
"armorMystery202101Text": "Snazzy Snow Leopard Suit",
|
||||
"armorMystery202101Notes": "Wrap yourself in warm fur and nearly endless tail floof! Confers no benefit. January 2021 Subscriber Item.",
|
||||
"armorMystery202102Text": "Charming Dress",
|
||||
"armorMystery202102Notes": "Sail across the universe in fine style in this buoyantly bright dress. Confers no benefit. February 2021 Subscriber Item.",
|
||||
"armorMystery202103Text": "Blossom Viewing Robes",
|
||||
"armorMystery202103Notes": "These soft and breezy robes are perfect for a tea party beneath the showy spring trees. Confers no benefit. March 2021 Subscriber Item.",
|
||||
"armorMystery301404Text": "Steampunk Suit",
|
||||
"armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.",
|
||||
"armorMystery301703Text": "Steampunk Peacock Gown",
|
||||
@@ -1147,6 +1155,10 @@
|
||||
"armorArmoireDressingGownNotes": "Relax in style with this beautiful traditional dressing gown. Increases Constitution by <%= con %>. Enchanted Armoire: Dressing Gown Set (Item 1 of 3).",
|
||||
"armorArmoireBlueMoonShozokuText": "Blue Moon Armor",
|
||||
"armorArmoireBlueMoonShozokuNotes": "A strange serenity surrounds the wearer of this armor. Increases Constitution by <%= con %>. Enchanted Armoire: Blue Moon Rogue Set (item 4 of 4).",
|
||||
"armorArmoireSoftPinkSuitText": "Soft Pink Suit",
|
||||
"armorArmoireSoftPinkSuitNotes": "Pink is a soothing color. Slip into this loungewear set for a bit of peace during the daily grind! Increases Perception by <%= per %>. Enchanted Armoire: Pink Loungewear Set (item 2 of 3).",
|
||||
"armorArmoireJadeArmorText": "Jade Armor",
|
||||
"armorArmoireJadeArmorNotes": "This jade armor is both beautiful and functional. Protect yourself, and know that you look fabulous! Increases Perception by <%= per %>. Enchanted Armoire: Jade Warrior Set (Item 2 of 3).",
|
||||
|
||||
"headgear": "helm",
|
||||
"headgearCapitalized": "Headgear",
|
||||
@@ -1633,6 +1645,8 @@
|
||||
"headMystery202012Notes": "This imposing mask features piercing eyes that will blind foes like the glare of sunlight on fresh snow. Confers no benefit. December 2020 Subscriber Item.",
|
||||
"headMystery202101Text": "Snazzy Snow Leopard Helm",
|
||||
"headMystery202101Notes": "The icy blue eyes on this feline helm will freeze even the most intimidating task on your list. Confers no benefit. January 2021 Subscriber Item.",
|
||||
"headMystery202103Text": "Blossom Viewing Circlet",
|
||||
"headMystery202103Notes": "Greet spring in style in this circlet woven from the first blooming branches. Confers no benefit. March 2021 Subscriber Item.",
|
||||
"headMystery301404Text": "Fancy Top Hat",
|
||||
"headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
|
||||
"headMystery301405Text": "Basic Top Hat",
|
||||
@@ -1780,6 +1794,10 @@
|
||||
"headArmoireNightcapNotes": "Your new nightcap even has a nice bouncy pompom! Increases Perception by <%= per %>. Enchanted Armoire: Dressing Gown Set (Item 2 of 3).",
|
||||
"headArmoireBlueMoonHelmText": "Blue Moon Helm",
|
||||
"headArmoireBlueMoonHelmNotes": "This helm offers an astonishing amount of luck to its wearer, and exceptional events follow its use. Increases Intelligence by <%= int %>. Enchanted Armoire: Blue Moon Rogue Set (item 3 of 4).",
|
||||
"headArmoirePinkFloppyHatText": "Pink Floppy Hat",
|
||||
"headArmoirePinkFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a perfect pink color. Increases Intelligence by <%= int %>. Enchanted Armoire: Pink Loungewear Set (item 1 of 3).",
|
||||
"headArmoireJadeHelmText": "Jade Helm",
|
||||
"headArmoireJadeHelmNotes": "Some say jade decreases fear and anxiety. With this beautiful helm, you definitely have no cause to worry! Increases Constitution by <%= con %>. Enchanted Armoire: Jade Warrior Set (Item 1 of 3).",
|
||||
|
||||
"offhand": "off-hand item",
|
||||
"offhandCapitalized": "Off-Hand Item",
|
||||
@@ -2093,7 +2111,9 @@
|
||||
"shieldArmoireDarkAutumnFlameText": "Dark Autumn Flame",
|
||||
"shieldArmoireDarkAutumnFlameNotes": "These mesmerizing flames dance with lively but foreboding energy even in autumn's chilliest nights. Increases Constitution by <%= con %>. Enchanted Armoire: Autumn Enchanter Set (Item 4 of 4).",
|
||||
"shieldArmoireBlueMoonSaiText": "Light Lunar Sai",
|
||||
"shieldArmoireBlueMoonSaiNotes": "This sai is a traditional weapon, imbued with the powers of the light side of the moon. Increases Perception by <%= per %>. Enchanted Armoire: Blue Moon Rogue Set (item 3 of 4).",
|
||||
"shieldArmoireBlueMoonSaiNotes": "This sai is a traditional weapon, imbued with the powers of the light side of the moon. Increases Perception by <%= per %>. Enchanted Armoire: Blue Moon Rogue Set (item 2 of 4).",
|
||||
"shieldArmoireSoftPinkPillowText": "Soft Pink Pillow",
|
||||
"shieldArmoireSoftPinkPillowNotes": "The sensible warrior packs a pillow for any expedition. Soften life's blows... even while you nap. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Pink Loungewear Set (item 3 of 3).",
|
||||
|
||||
"back": "Back Accessory",
|
||||
"backCapitalized": "Back Accessory",
|
||||
@@ -2341,6 +2361,8 @@
|
||||
"headAccessoryMystery202005Notes": "With such mighty horns, what creature dares challenge you? Confers no benefit. May 2020 Subscriber Item.",
|
||||
"headAccessoryMystery202009Text": "Marvelous Moth Antennae",
|
||||
"headAccessoryMystery202009Notes": "These feathery appendages will help you find your way even in the dark of night. Confers no benefit. September 2020 Subscriber Item.",
|
||||
"headAccessoryMystery202102Text": "Charming Tiara",
|
||||
"headAccessoryMystery202102Notes": "Magnify your empathy and caring to new heights with this ornate golden tiara. Confers no benefit. February 2021 Subscriber Item.",
|
||||
"headAccessoryMystery301405Text": "Headwear Goggles",
|
||||
"headAccessoryMystery301405Notes": "\"Goggles are for your eyes,\" they said. \"Nobody wants goggles that you can only wear on your head,\" they said. Hah! You sure showed them! Confers no benefit. August 3015 Subscriber Item.",
|
||||
|
||||
|
||||
@@ -118,6 +118,8 @@
|
||||
"mysterySet202011": "Foliated Magus Set",
|
||||
"mysterySet202012": "Frostfire Phoenix Set",
|
||||
"mysterySet202101": "Snazzy Snow Leopard Set",
|
||||
"mysterySet202102": "Charming Champion Set",
|
||||
"mysterySet202103": "Blossom Viewing Set",
|
||||
"mysterySet301404": "Steampunk Standard Set",
|
||||
"mysterySet301405": "Steampunk Accessories Set",
|
||||
"mysterySet301703": "Peacock Steampunk Set",
|
||||
|
||||
@@ -69,8 +69,8 @@
|
||||
"achievementTickledPinkModalText": "Ye've collected all th' Cotton Candy Pink Critters!",
|
||||
"achievementTickledPinkText": "'as collected all Cotton Candy Pink Critters.",
|
||||
"achievementTickledPink": "Pickled Pink",
|
||||
"foundNewItemsCTA": "Head t' yer inventory an' try combinin' yer new 'atchin' potion an' egg!",
|
||||
"foundNewItemsExplanation": "Completin' tasks gives ye a chance ta find items, like eggs, 'atchin' potions, an' vittles.",
|
||||
"foundNewItemsCTA": "Head t' yer Inventory an' try combinin' yer new hatchin' potion an' egg!",
|
||||
"foundNewItemsExplanation": "Completin' tasks gives ye a chance t' find items, like eggs, Hatchin' Potions, an' Critter Vittle.",
|
||||
"foundNewItems": "Ye found sumpthin' new!",
|
||||
"achievementBugBonanzaModalText": "Ye've kermpleted th' Beetle, Butterfly, Snail, an' Spidey pet quests!",
|
||||
"achievementBugBonanzaText": "'as kermpleted Beetle, Butterfly, Snail, an' Spidey pet quests.",
|
||||
@@ -82,7 +82,7 @@
|
||||
"achievementAllThatGlitters": "All That be Glitterin'",
|
||||
"achievementGoodAsGoldModalText": "Ye've collected all th' Golden Critters!",
|
||||
"achievementGoodAsGoldText": "'as collected all Golden Critters.",
|
||||
"onboardingCompleteDescSmall": "If ye be wantin' e'en more, check out yer Medals an' start kerllectin'!",
|
||||
"onboardingCompleteDescSmall": "If ye be wantin' ev'n more, check out Medals an' start collectin'!",
|
||||
"achievementFreshwaterFriendsText": "'as kermpleted Axolotl, Frog, an' Hippo critter Adventures.",
|
||||
"achievementFreshwaterFriends": "Non-Briny Buckos",
|
||||
"achievementBareNecessitiesModalText": "Ye kermpleted th' Monkey, Sloth, an' Treeling critter Adventures!",
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
"userAlreadyInChallenge": "Pirate already be participatin' in this challenge.",
|
||||
"cantOnlyUnlinkChalTask": "Only broken challenges tasks can be unlinked.",
|
||||
"joinedChallenge": "Join'd a Challenge",
|
||||
"joinedChallengeText": "T'is user put themself to th' test by joinin' a Challenge!",
|
||||
"joinedChallengeText": "This pirate put 'emself to th' test by joinin' a Challenge!",
|
||||
"myChallenges": "My Challenges",
|
||||
"findChallenges": "Discover Challenges",
|
||||
"noChallengeTitle": "Ya don't have any Challenges.",
|
||||
|
||||
@@ -18,8 +18,8 @@
|
||||
"commGuideList02G": "<strong>Comply immediately with any of them Mod requests</strong>. This could include, but's no' limited ter, requesting ya limit yer posts in a particular ocean, editing yer profile t' remove unsuitable content, asking ya t' move yer discussion t' a more suitable space, etc.",
|
||||
"commGuideList02H": "<strong>Take some o' yer time t' reflect instead o' respondin' in anger</strong> if someone tells ya that somethin' ya said or did made 'em be uncomfortable. There's great pirate strength in bein' able t' sincerely apologize t' someone. If ya feel that the way they responded t' ya was inappropriate, contact a mod rather than callin' 'em out on it publicly.",
|
||||
"commGuideList02I": "<strong>Divisive/contentious conversations should be reported t' yer mods</strong> by flaggin' the messages involved or usin' the <a href='https://contact.habitica.com/' target='_blank'>Moderator Contact Form</a>. If ya feel tha' a conversation is gettin' heated, overly emotional, or hurtful, cease t' engage. Instead, report them posts t' let us know about it. Moderators'll respond as quickly as poss'ble. It's our job t' keep ya safe. If ya feel tha' more context's required, ya can report the problem usin' the <a href='https://contact.habitica.com/' target='_blank'>Moderator Contact Form</a>.",
|
||||
"commGuideList02J": "<strong>Don't spam 'em chats</strong>. Spammin' may include, but's no' limited ter: postin' the same comment or query in multiple places, postin' links withou' explanation or context, postin' nonsensical messages, posting multiple promotional messages 'bout a Guild, Party or Challenge, or postin' many messages in a row. Askin' fer gems or a subscription in any o' the chat spaces or via Private Message is also considered t' be spammin'. If people clickin' on a link will result in any benefit to ya, ye need t' disclose tha' in the text o' yer message or tha'll also be considered spam.<br/><br/>It's up to them mods t' decide if somethin' constitutes spam or might lead t' spam, even if ya don’t feel tha' ya've been spamming. Fer example, advertisin' a Guild is acceptable once or twice, but multiple posts in one day'd pro'bly constitute spam, no ma'er how useful that Guild be!",
|
||||
"commGuideList02K": "<strong>Avoid postin' large header text in them public chat spaces, particularly in yer Tavern</strong>. Much like ALL CAPS, it reads as 'ough ya were yellin', and interferes with the comfortable atmosphere.",
|
||||
"commGuideList02J": "<strong>Don't spam 'em chats</strong>. Spammin' may include, but's not limit'd t': postin' th' same comment or query in multiple places, postin' links withou' explanation or context, postin' nonsensical messages, postin' multiple promotional messages 'bout a Ship, Crew or Challenge, or postin' many messages in a row. Askin' fer sapphires or a subscr'ption in any o' th' chat spaces or via Private Message also be consider'd t' be spammin'. If people clickin' on a link will result in any benefit t' ye, ye need t' disclose that in th' text o' yer message or tha'll also be consider'd spam.<br/><br/>It's up t' them mods t' decide if somethin' constitutes spam or might lead t' spam, ev'n if ye don’t feel tha' ye've been spammin'. Fer example, advertisin' a Ship be acceptable once or twice, but multiple posts in one day'd pro'bly constitute spam, no matt'r how useful that Ship be!",
|
||||
"commGuideList02K": "<strong>Avoid postin' large header text in them public chat spaces, particularly in th' Tavern</strong>. Much like ALL CAPS, it reads as if ye were yellin', an' interferes wit' th' comfortable atmosphere.",
|
||||
"commGuideList02L": "<strong>We 'ighly discourage the exchange of pers'nal info -- particularly info tha' can be used t' identify ya -- in public chat spaces</strong>. Identifyin' info can include but's no' lim'ted ter: yer address, yer email address, and yer API token/password. This be fer yer safety! Staff or moderators may remove such posts at their discretion. If ye be asked fer personal info in a private Guild, Party, or PM, we 'ighly recommend tha' ya politely refuse and alert the staff and moderators by either 1) flagging the message if it's in a Party or private Guild, or 2) filling ou' the <a href='https://contact.habitica.com/' target='_blank'>Moderator Contact Form</a> and includin' screenshots.",
|
||||
"commGuidePara019": "<strong>In private spaces</strong>, users've more freedom t' discuss whatev'r topics they'd like, but they still may not vi'late them Terms an' Conditions, includin' postin' slurs or any of that discriminatory, violent, or threatenin' content. Note that, because Challenge names appear in the winner's public profile, ALL Challenge names must obey the public space guidelines, even if they appear in a private space.",
|
||||
"commGuidePara020": "<strong>Private Messages (PMs)</strong> 'ave some additional guidelines. If someone's blocked ye, don't contact 'em elsewhere t' ask 'em t' unblock ye. Additionally, ye shouldn't send PMs t' someone askin' fer support (since public answers t' support questions be helpful t' th' community). Finally, don't send anyone PMs beggin' fer a gift o' gems or a subscr'ption, as this can be considered spammin'.",
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"guardian": "Quartermaster",
|
||||
"staff": "Cap'ns",
|
||||
"heroic": "Cap'n",
|
||||
"modalContribAchievement": "Contributor Achievement!",
|
||||
"modalContribAchievement": "Contributor Medal!",
|
||||
"contribModal": "<%= name %>, ye are no landlubber! Ye're now a tier <%= level %> contributor fer helpin' Habitica.",
|
||||
"contribLink": "See what prizes ye've earned fer yer contribution!",
|
||||
"contribName": "Contributor",
|
||||
@@ -33,7 +33,7 @@
|
||||
"hallContributors": "Deck o' Contributors",
|
||||
"hallPatrons": "Hall o' Patrons",
|
||||
"rewardUser": "Reward User",
|
||||
"UUID": "User ID",
|
||||
"UUID": "Pirate ID",
|
||||
"loadUser": "Load User",
|
||||
"noAdminAccess": "Ye don't 'ave admin access.",
|
||||
"userNotFound": "Pirate not found.",
|
||||
|
||||
@@ -21,11 +21,11 @@
|
||||
"androidFaqAnswer4": "There be sev'ral things that can cause ye t' take damage. Firs', if ye left Dailies incomplete o'ernight and didn't check 'em off in th' screen that popp'd up th' next mornin', those unfinish'd Dailies will damage ye. Second, if ye tap a bad Habit, it will damage ye. Finally, if ye be in a Boss Battle wit' yer Crew and one o' yer Crew mates did not complete all their Dailies, th' Boss will attack ye.\n\n Th' main way t' heal be t' gain a level, which restores all yer health. Ye can also buy a Health Potion wit' gold from th' Rewards tab on th' Tasks page. Plus, at level 10 or above, ye can choose t' become a Sawbones, an' then ye will learn healin' skills. If ye be in a Crew wit' a Sawbones, they can heal ye as well.",
|
||||
"webFaqAnswer4": "There be sev'ral things that can cause ye t' take damage. Firs', if ye left Dailies incomplete o'ernight an' didn't check 'em off in th' screen that popped up th' next mornin', those unfinished Dailies will damage ye. Second, if ye click a bad Habit, it will damage ye. Finally, if ye are in a Boss Battle wit' yer crew an' one o' yer crew mates did not complete all their Dailies, the Boss will attack ye. Th' main way t' heal be t' gain a level, which restores all yer Health. Ye can also buy a Health Potion wit' Gold from th' Rewards column. Plus, at level 10 or above, ye can choose t' become a Sawbones, an' then ye will learn healin' skills. Other Sawbones can heal ye as well if ye are in a Crew wit' them. Learn more by clickin' \"Sawbones\" in th' navigation bar.",
|
||||
"faqQuestion5": "How c'n I play Habitica wit' my mates?",
|
||||
"iosFaqAnswer5": "Th' best way be t' invite them t' a Crew wit' ye! Crews can go on Adventures, battle monsters, an' cast skills t' support each other.\n\nIf ye wants t' start yer owns Party, go t' Menu > [Party](https://habitica.com/party) an' tap \"Create New Party\". Then scroll down an' tap \"Invite a Member\" t' invite yer buckos by boardin' thar @username. If ye wants t' join someone else's Party, jus' give them yer @username an' they can invite ye!\n\nYe an' yer mateys can also join Fleets, which are public chat rooms that brin' buckos together based on shared interests! Thar are a lot o' helpful an' fun communities, be sure t' check them out.\n\nIf ye're feelin' more competitive, ye an' yer hearties can create or join Challenges t' take on a set o' tasks. Thar are all sorts public o' Challenges available that span a wide array o' interests an' goals. Some public Challenges will even award Gem prizes if ye're selected as th' winner.",
|
||||
"androidFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to the [website](https://habitica.com/) to create one if you don't already have a Party. You can also join guilds together (Social > Guilds). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many guilds as you'd like, but only one party.\n\n For more detailed info, check out the wiki pages on [Parties](http://habitica.fandom.com/wiki/Party) and [Guilds](http://habitica.fandom.com/wiki/Guilds).",
|
||||
"webFaqAnswer5": "The best way is to invite them to a Party with you by clicking \"Party\" in the navigation bar! Parties can go on quests, battle monsters, and cast skills to support each other. You can also join Guilds together (click on \"Guilds\" in the navigation bar). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many Guilds as you'd like, but only one Party. For more detailed info, check out the wiki pages on [Parties](http://habitica.fandom.com/wiki/Party) and [Guilds](http://habitica.fandom.com/wiki/Guilds).",
|
||||
"faqQuestion6": "How do I get a Pet or Mount?",
|
||||
"iosFaqAnswer6": "Ev'ry time ye complete a task, ye'll have a random chance at receivin' an Egg, a Hatchin' Potion, or a piece o' Pet Food. They will be stored in Menu > Items.\n\nT' hatch a Pet, ye'll need an Egg an' a Hatchin' Potion. Tap on th' Egg t' determine th' species ye want t' hatch, an' select \"Hatch Egg.\" Then choose a Hatchin' Potion t' determine its color! Go t' Menu > Pets an' click yer new Pet t' equip it t' yer Avatar.\n\nYe can also grow yer Pets into Mounts by feedin' 'em under Menu > Pets. Tap on a Pet, an' select \"Feed Pet\"! Ye'll have t' feed a Pet many times before it becomes a Mount, but if ye can figure out its favorite food, it will grow more quickly. Use trial an' error, or [see th' spoilers here](http://habitica.fandom.com/wiki/Food#Food_Preferences). Once ye have a Mount, go t' Menu > Mounts an' tap on it t' equip it t' yer Avatar.\n\nYe can also git Eggs fer Quest Pets by completin' certain Quests (to learn more about Quests, see [How do I fight monsters an' go on Quests](https://habitica.com/static/faq/9)).",
|
||||
"iosFaqAnswer5": "Th' best way be t' invite them t' a Crew wit' ye! Crews can go on Adventures, battle monsters, an' cast skills t' support each other.\n\nIf ye wants t' start yer own Crew, go t' Menu > [Crew](https://habitica.com/party) an' tap \"Create New Crew\". Then scroll down an' tap \"Invite a Member\" t' invite yer buckos by enterin' their @username. If ye wants t' join someone else's Crew, jus' give 'em yer @username an' they can invite ye!\n\nYe an' yer mateys can also join Ships, which are public chat rooms that bring buckos togeth'r based on shared int'rests! There be a lot o' helpful an' fun communities, be sure t' check 'em out.\n\nIf ye're feelin' more competitive, ye an' yer hearties can create or join Challenges t' take on a set o' tasks. There be all sorts o' public Challenges available that span a wide array o' int'rests an' goals. Some public Challenges will ev'n award Sapphire prizes if ye're select'd as th' winn'r.",
|
||||
"androidFaqAnswer5": "Th' best way be t' invite 'em t' a Crew wit' ye! Crews can go on adventures, battle monst'rs, an' cast skills t' support each oth'r. Go t' th' [website](https://habitica.com/) t' create one if ye don't already 'ave a Crew. Ye can also join ships togeth'r (Social > Ships). Ships be chat rooms focusin' on a shared int'rest or th' pursuit o' a common goal, an' can be public or private. Ye can join as many ships as ye'd like, but only one crew.\n\n Fer more detail'd info, check out th' wiki pages on [Crews](http://habitica.fandom.com/wiki/Party) and [Ships](http://habitica.fandom.com/wiki/Guilds).",
|
||||
"webFaqAnswer5": "Th' best way be t' invite 'em t' a Crew wit' ye by clickin' \"Crew\" in th' navigation bar! Crews can go on adventures, battle monst'rs, an' cast skills t' support each oth'r. Ye can also join Ships togeth'r (click on \"Ships\" in th' navigation bar). Ships be chat rooms focusin' on a shared int'rest or th' pursuit o' a common goal, an' can be public or private. Ye can join as many Ships as ye'd like, but only one Crew. Fer more detail'd info, check out th' wiki pages on [Crews](http://habitica.fandom.com/wiki/Party) and [Ships](http://habitica.fandom.com/wiki/Guilds).",
|
||||
"faqQuestion6": "How do I git a Critter or Steed?",
|
||||
"iosFaqAnswer6": "Ev'ry time ye complete a task, ye'll have a random chance at receivin' an Egg, a Hatchin' Potion, or a piece o' Critter Food. They will be stored in Menu > Items.\n\nT' hatch a Critter, ye'll need an Egg an' a Hatchin' Potion. Tap on th' Egg t' determine th' species ye want t' hatch, an' select \"Hatch Egg.\" Then choose a Hatchin' Potion t' determine its color! Go t' Menu > Critters an' click yer new Critter t' equip it t' yer Avatar.\n\nYe can also grow yer Critters into Steeds by feedin' 'em under Menu > Critters. Tap on a Critter, an' select \"Feed Critter\"! Ye'll have t' feed a Critter many times 'fore it becomes a Steed, but if ye can figure out its fav'rite food, it will grow more quickly. Use trial an' error, or [see th' spoilers 'ere](http://habitica.fandom.com/wiki/Food#Food_Preferences). Once ye have a Steed, go t' Menu > Steeds an' tap on it t' equip it t' yer Avatar.\n\nYe can also git Eggs fer Adventure Pets by completin' certain Adventures (to learn more about Adventures, see [How do I fight monsters an' go on Adventures](https://habitica.com/static/faq/9)).",
|
||||
"androidFaqAnswer6": "Ev'ry time ye complete a task, ye'll have a random chance at receivin' an Egg, a Hatchin' Potion, or a piece o' Pet Food. They will be stored in Menu > Items.\n\nT' hatch a Pet, ye'll need an Egg an' a Hatchin' Potion. Tap on th' Egg t' determine th' species ye want t' hatch, an' select \"Hatch wit' Potion.\" Then choose a Hatchin' Potion t' determine its color! T' equip yer new Pet, go t' Menu > Stable > Pets, select a species, click on th' desired Pet, an' select \"Use\"(Yer Avatar doesn't update t' reflect th' change).\n\nYe can also grow yer Pets into Mounts by feedin' 'em under Menu > Stable [ > Pets ]. Tap on a Pet, an' then select \"Feed\"! Ye'll have t' feed a Pet many times before it becomes a Mount, but if ye can figure out its favorite food, it will grow more quickly. Use trial an' error, or [see th' spoilers here](http://habitica.fandom.com/wiki/Food#Food_Preferences). To equip yer Mount, go t' Menu > Stable > Mounts, select a species, click on th' desired Mount, an' select \"Use\"(Your Avatar doesn't update to reflect the change). \n\nYe can also git Eggs fer Quest Pets by completin' certain Quests (See below t' learn more about Quests.)",
|
||||
"webFaqAnswer6": "Ev'ry time ye complete a task, ye'll have a random chance at receivin' an Egg, a Hatchin' Potion, or a piece o' Pet Food. They will be stored under Inventory > Items. T' hatch a Pet, ye'll need an Egg an' a Hatchin' Potion. Once ye have both an Egg an' a Hatchin' Potion, go t' Inventory > Stable, an' click on th' image t' hatch yer Pet. Once ye've hatch'd a Pet, ye can equip it by clickin' on it. Ye can also grow yer Pets into Mounts by feedin' 'em under Inventory > Stable. Drag a piece o' Pet Food from th' action bar at th' bottom o' th' screen an' drop it on a Pet t' feed it! Ye'll have t' feed a Pet many times before it becomes a Mount, but if ye can figure out its favorite food, it will grow more quickly. Use trial an' error, or [see th' spoilers here](http://habitica.fandom.com/wiki/Food#Food_Preferences). Once ye have a Mount, click on it t' equip it t' yer Avatar. Ye can also git Eggs fer Quest Pets by completin' certain Quests. (See below t' learn more about Quests.)",
|
||||
"faqQuestion7": "How c'n I become a Warrior, Mage, Rogue, or Healer?",
|
||||
@@ -43,8 +43,8 @@
|
||||
"faqQuestion10": "What be Gems, an' how do ye get 'em?",
|
||||
"iosFaqAnswer10": "Sapphires be purchas'd wit' real money from Menu > Purchase Sapphires. When ye buy Sapphires, ye be helpin' us t' keep Habitica runnin'. We’re very grateful fer ev'ry bit o' support!\n\n In addition t' buyin' Sapphires directly, there be three other ways players can gain Sapphires:\n\n * Win a Challenge that has been set up by anoth'r player. Go t' Menu > Challenges t' join some.\n * Subscribe an' unlock th' ability t' buy a certain number o' Sapphires per month.\n * Contribute yer skills t' th' Habitica project. See this wiki page fer more details: [Contributin' t' Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchas'd wit' Sapphires do not offer any statistical advantages, so players can still make use o' th' app wit'out them!",
|
||||
"androidFaqAnswer10": "Sapphires be purchas'd wit' real money from Menu > Purchase Sapphires. When ye buy Sapphires, ye be helpin' us t' keep Habitica runnin'. We’re very grateful fer ev'ry bit o' support!\n\n In addition t' buyin' Sapphires directly, there be three other ways players can gain Sapphires:\n\n * Win a Challenge that has been set up by anoth'r player. Go t' Menu > Challenges t' join some.\n * Subscribe an' unlock th' ability t' buy a certain number o' Sapphires per month.\n * Contribute yer skills t' th' Habitica project. See this wiki page fer more details: [Contributin' t' Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchas'd wit' Sapphires do not offer any statistical advantages, so players can still make use o' th' app wit'out them!",
|
||||
"webFaqAnswer10": "Gems are purchased with real money, although [subscribers](https://habitica.com/user/settings/subscription) can purchase them with Gold. When people subscribe or buy Gems, they are helping us to keep the site running. We're very grateful for their support! In addition to buying Gems directly or becoming a subscriber, there are two other ways players can gain Gems:\n* Win a Challenge that has been set up by another player. Go to Challenges > Discover Challenges to join some.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica). Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the site without them!",
|
||||
"faqQuestion11": "How c'n ye report a bug or request a feature?",
|
||||
"webFaqAnswer10": "Gems be purchas'd wit' real money, although [subscrib'rs](https://habitica.com/user/settings/subscription) can purchase them wit' Gold. When people subscribe or buy Sapphires, they be helpin' us t' keep th' site runnin'. We're very grateful fer their support! In addition t' buyin' Sapphires directly or becomin' a subscrib'r, there be two oth'r ways players can gain Sapphires:\n* Win a Challenge that has been set up by anoth'r player. Go t' Challenges > Discover Challenges t' join some.\n * Contribute yer skills t' th' Habitica project. See this wiki page fer more details: [Contributin' t' Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica). Keep in mind that items purchas'd wit' Sapphires do not offer any statistical advantages, so players can still make use o' th' site wit'out 'em!",
|
||||
"faqQuestion11": "How do I report a bug or request a feature?",
|
||||
"iosFaqAnswer11": "If ye think ye’ve encounter'd a bug, go t' Menu > Support > Get Help t' look fer quick fixes, known issues, or t' report th' bug t' us. We’ll do everythin' we can t' assist ye.\n\n T' send feedback or request a feature, ye can access our feedback form from Menu > Support > Submit Feedback. If we have any questions, we’ll reach out t' ye fer more information!",
|
||||
"androidFaqAnswer11": "If ye think ye’ve encountered a bug, go t' Menu > Help & FAQ > Get Help t' look fer quick fixes, known issues, or t' report th' bug t' us. We’ll do everything we can t' assist ye.\n\n T' send feedback or request a feature, ye can access our feedback form from Menu > Help & FAQ > Submit Feedback. If we have any questions, we’ll reach out t' ye fer more information!",
|
||||
"webFaqAnswer11": "To report a bug, head t' [Help > Report a Bug](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) and read th' points above th' chat box. If ye be unable to log in t' Habitica, send yer login details (not yer password!) t' [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Don't worry, we'll get ye fixed up soon! Feature requests be collected via Google form. Head t' [Help > Request a Feature](docs.google.com/forms/d/e/1FAIpQLScPhrwq_7P1C6PTrI3lbvTsvqGyTNnGzp1ugi1Ml0PFee_p5g/viewform?usp=sf_link) and follow th' instructions. Ta-da!",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"companyContribute": "Contry-bute",
|
||||
"companyDonate": "Send Some Doubloons",
|
||||
"forgotPassword": "Forgot yer Password?",
|
||||
"emailNewPass": "Send a Link fer ta Reset a Password",
|
||||
"emailNewPass": "Send a Link t' Reset a Password",
|
||||
"forgotPasswordSteps": "Enter th' email address ye used t' register yer Habitica account.",
|
||||
"sendLink": "Send yon Link",
|
||||
"featuredIn": "Featured in yon",
|
||||
@@ -31,10 +31,10 @@
|
||||
"marketing1Lead1Title": "Yer Life, th' Role Playin' Game",
|
||||
"marketing1Lead1": "Habitica be a video game to help ye improve real life habits. It \"gamifies\" ye life by turnin' all ye tasks (Habits, Dailies, 'n To Dos) into wee monsters ye have to conquer. th' better ye be at 'tis, th' more ye progress in th' game. If ye slip up in life, ye character starts backslidin' in th' game.",
|
||||
"marketing1Lead2Title": "Get Fancy Gear",
|
||||
"marketing1Lead2": "Improve yer 'abits ta build up yer avatar. Show off th' fancy gear ye've earned!",
|
||||
"marketing1Lead2": "Improve yer habits t' build up yer avatar. Show off th' fancy gear ye've earn'd!",
|
||||
"marketing1Lead3Title": "Find Random Treasures",
|
||||
"marketing1Lead3": "For some, it's th' gamble what motivates 'em: a system called \"stochastic rewards.\" Habitica be accommodatin' ta all reinforcement and punishment styles: positive, negative, predictable, and random.",
|
||||
"marketing2Header": "Compete With Mates, Join Interest Groups",
|
||||
"marketing1Lead3": "Fer some, it's th' gamble that motivates 'em: a system called \"stochastic rewards.\" Habitica be accommodatin' ta all reinforcement an' punishment styles: positive, negative, predictable, and random.",
|
||||
"marketing2Header": "Compete Wit' Mates, Join Int'rest Groups",
|
||||
"marketing2Lead1Title": "Social Produck-tivity",
|
||||
"marketing2Lead1": "While ye kin play Habitica solo, th' lights really come on when ye start collaboratin', competin', an' 'olding each other accountable. Th' mos' effective part o' any self-improvement program be social accountability, and what better environment fer accountability and competition than a viddy-yo game?",
|
||||
"marketing2Lead2Title": "Fight Beasts",
|
||||
@@ -42,7 +42,7 @@
|
||||
"marketing2Lead3Title": "Challenge One Anudder",
|
||||
"marketing2Lead3": "Challenges let ye compete wit' friends n' strangers. Iffen ye do th' best of all at th' end o' a challenge ye kin win special prizes.",
|
||||
"marketing3Header": "Apps n' Extensions",
|
||||
"marketing3Lead1": "Th' **iPhone & Android** apps let ye take care of business on th' go. We realize that loggin' inta th' website ta click buttons kin be a drag.",
|
||||
"marketing3Lead1": "Th' **iPhone & Android** apps let ye take care o' business on th' go. We realize that loggin' into th' website t' click buttons can be a drag.",
|
||||
"marketing3Lead2Title": "Inter-grations",
|
||||
"marketing3Lead2": "Other **3rd Party Tools** tie Habitica inta vary-us aspects o' yer life. Our API pervides easy inter-gration fer things like th' [Chrome Extension](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US), fer which ye take hits iffen yer browsin' unperductive websites, an' gain points fer bein' on perductive ones. [See more 'ere](http://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
|
||||
"marketing4Header": "Orginny-sational Use",
|
||||
@@ -104,7 +104,7 @@
|
||||
"work": "Work",
|
||||
"reportAccountProblems": "Report Account Problems",
|
||||
"reportCommunityIssues": "Report Community Issues",
|
||||
"subscriptionPaymentIssues": "Subscription and Payment Issues",
|
||||
"subscriptionPaymentIssues": "Subscr'ption an' Payment Issues",
|
||||
"generalQuestionsSite": "General Questions about th' Site",
|
||||
"businessInquiries": "Business/Marketin' Inquiries",
|
||||
"merchandiseInquiries": "Physical Merchandise (T-Shirts, Stickers) Inquiries",
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
"weaponRogue4Text": "Nunchaku",
|
||||
"weaponRogue4Notes": "Heavy batons whirled 'bout on a length 'o chain. Increases Strength by <%= str %>.",
|
||||
"weaponRogue5Text": "Ninja-to",
|
||||
"weaponRogue5Notes": "Sleek 'n deadly as th' ninja themselves. Increases Strength by <%= str %>.",
|
||||
"weaponRogue5Notes": "Sleek an' deadly as th' ninja 'emselves. Increases Strength by <%= str %>.",
|
||||
"weaponRogue6Text": "Hook Sword",
|
||||
"weaponRogue6Notes": "Complex weapon adept at ensnarin' 'n disarmin' opponents. Increases Strength by <%= str %>.",
|
||||
"weaponWizard0Text": "Apprentice Staff",
|
||||
@@ -213,7 +213,7 @@
|
||||
"weaponSpecialWinter2017RogueText": "Ice Axe",
|
||||
"weaponSpecialWinter2017RogueNotes": "This axe is great for attack, defense, and ice-climbing! Increases Strength by <%= str %>. Limited Edition 2016-2017 Winter Gear.",
|
||||
"weaponSpecialWinter2017WarriorText": "Stick of Might",
|
||||
"weaponSpecialWinter2017WarriorNotes": "Conquer your goals by whacking them with this mighty stick! Increases Strength by <%= str %>. Limited Edition 2016-2017 Winter Gear.",
|
||||
"weaponSpecialWinter2017WarriorNotes": "Conquer yer goals by whackin' 'em wit' this mighty stick! Increases Strength by <%= str %>. Limited Edition 2016-2017 Winter Gear.",
|
||||
"weaponSpecialWinter2017MageText": "Winter Wolf Crystal Staff",
|
||||
"weaponSpecialWinter2017MageNotes": "The glowing blue crystal set in the end of this staff is called the Winter Wolf's Eye! It channels magic from snow and ice. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016-2017 Winter Gear.",
|
||||
"weaponSpecialWinter2017HealerText": "Sugar-Spun Wand",
|
||||
@@ -309,7 +309,7 @@
|
||||
"weaponArmoireGoldWingStaffText": "Gold Wing Staff",
|
||||
"weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all Stats by <%= attrs %> each. Enchanted Armoire: Independent Item.",
|
||||
"weaponArmoireBatWandText": "Bat Wand",
|
||||
"weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.",
|
||||
"weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about an' watch 'em fly away. Increases Intelligence by <%= int %> an' Perception by <%= per %>. Enchant'd Armoire: Independent Item.",
|
||||
"weaponArmoireShepherdsCrookText": "Shepherd's Crook",
|
||||
"weaponArmoireShepherdsCrookNotes": "Useful for herdin' gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 o' 3).",
|
||||
"weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff",
|
||||
@@ -317,7 +317,7 @@
|
||||
"weaponArmoireBlueLongbowText": "Blue Longbow",
|
||||
"weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by <%= per %>, Constitution by <%= con %>, and Strength by <%= str %>. Enchanted Armoire: Iron Archer Set (Item 3 of 3).",
|
||||
"weaponArmoireGlowingSpearText": "Glowing Spear",
|
||||
"weaponArmoireGlowingSpearNotes": "This spear hypnotizes wild tasks so you can attack them. Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.",
|
||||
"weaponArmoireGlowingSpearNotes": "This spear hypnotizes wild tasks so ye can attack 'em. Increases Strength by <%= str %>. Enchant'd Armoire: Independent Item.",
|
||||
"weaponArmoireBarristerGavelText": "Barrister Gavel",
|
||||
"weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).",
|
||||
"weaponArmoireJesterBatonText": "Jester Baton",
|
||||
@@ -349,7 +349,7 @@
|
||||
"weaponArmoireBattleAxeText": "Ancient Axe",
|
||||
"weaponArmoireBattleAxeNotes": "This fine iron axe is well-suited to battling your fiercest foes or your most difficult tasks. Increases Intelligence by <%= int %> and Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
"weaponArmoireHoofClippersText": "Hoof Clippers",
|
||||
"weaponArmoireHoofClippersNotes": "Trim th' hooves o' your hard-working mounts t' help them stay healthy as they carry ye t' adventure! Increases Strength, Intelligence, an' Constitution by <%= attrs %> each. Enchanted Armoire: Farrier Set (Item 1 o' 3).",
|
||||
"weaponArmoireHoofClippersNotes": "Trim th' hooves o' yer hard-workin' steeds t' help 'em stay healthy as they carry ye t' adventure! Increases Strength, Intelligence, an' Constitution by <%= attrs %> each. Enchant'd Armoire: Farrier Set (Item 1 o' 3).",
|
||||
"weaponArmoireWeaversCombText": "Weaver's Comb",
|
||||
"weaponArmoireWeaversCombNotes": "Use this comb to pack your weft threads together to make a tightly woven fabric. Increases Perception by <%= per %> and Strength by <%= str %>. Enchanted Armoire: Weaver Set (Item 2 of 3).",
|
||||
"weaponArmoireLamplighterText": "Lamplighter",
|
||||
@@ -453,7 +453,7 @@
|
||||
"armorSpecialTurkeyArmorBaseText": "Turkey Armor",
|
||||
"armorSpecialTurkeyArmorBaseNotes": "Keep yer drumsticks warm n' cozy in this feathery armor! It don't benefit ye.",
|
||||
"armorSpecialTurkeyArmorGildedText": "Gilded Turkey Armor",
|
||||
"armorSpecialTurkeyArmorGildedNotes": "Strut yer stuff in this seasonally shiny armor! It don't benefit ye.",
|
||||
"armorSpecialTurkeyArmorGildedNotes": "Strut yer stuff in this seas'nally shiny armor! It don't benefit ye.",
|
||||
"armorSpecialYetiText": "Yeti-Tamer Robe",
|
||||
"armorSpecialYetiNotes": "Fuzzy an' fierce. Increases Constitution by <%= con %>. Limited Edition 2013-2014 Winter Gear.",
|
||||
"armorSpecialSkiText": "Ski-sassin Parka",
|
||||
@@ -473,7 +473,7 @@
|
||||
"armorSpecialBirthday2018Text": "Fanciful Party Robes",
|
||||
"armorSpecialBirthday2018Notes": "Happy Birthday, Habitica! Wear these Fanciful Party Robes t' celebrate this wonderful day. It don't benefit ye.",
|
||||
"armorSpecialBirthday2019Text": "Outlandish Party Robes",
|
||||
"armorSpecialBirthday2019Notes": "Happy Birthday, Habitica! Wear these Outlandish Party Robes to celebrate this wonderful day. Confers no benefit.",
|
||||
"armorSpecialBirthday2019Notes": "Happy Birthday, Habitica! Wear these Outlandish Party Robes t' celebrate this wond'rful day. It don't benefit ye.",
|
||||
"armorSpecialGaymerxText": "Rainbow Warrior Armor",
|
||||
"armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.",
|
||||
"armorSpecialSpringRogueText": "Sleek Cat Suit",
|
||||
@@ -697,7 +697,7 @@
|
||||
"armorMystery201711Text": "Carpet Rider Outfit",
|
||||
"armorMystery201711Notes": "This cozy sweater set will help keep ye warm as ye ride through th' sky! It don't benefit ye. November 2017 Subscriber Item.",
|
||||
"armorMystery201712Text": "Candlemancer Armor",
|
||||
"armorMystery201712Notes": "Th' heat n' light generated by this magic armor will warm yer heart but never burn yer skin! Confers no benefit. December 2017 Subscriber Item.",
|
||||
"armorMystery201712Notes": "Th' heat an' light generat'd by this magic armor will warm yer heart but nev'r burn yer skin! It don't benefit ye. December 2017 Subscriber Item.",
|
||||
"armorMystery201802Text": "Love Bug Armor",
|
||||
"armorMystery201802Notes": "This shiny armor reflects yer strength o' heart n' infuses it into any Habiticans nearby who may need encouragement! It don't benefit ye. February 2018 Subscriber Item.",
|
||||
"armorMystery201806Text": "Alluring Anglerfish Tail",
|
||||
@@ -1161,7 +1161,7 @@
|
||||
"headMystery201811Text": "Splendid Sorcerer's Hat",
|
||||
"headMystery201811Notes": "Wear this feathered hat t' stand out at even th' fanciest wizardly gatherin's! It don't benefit ye. November 2018 Subscriber Item.",
|
||||
"headMystery201901Text": "Polaris Helm",
|
||||
"headMystery201901Notes": "The glowing gems on this helm contain light magically captured from winter auroras. Confers no benefit. January 2019 Subscriber Item.",
|
||||
"headMystery201901Notes": "Th' glowin' gems on this helm contain light magic'lly captur'd from winter auroras. It don't benefit ye. January 2019 Subscriber Item.",
|
||||
"headMystery301404Text": "Fancy Top Hat",
|
||||
"headMystery301404Notes": "A fancy top hat fer th' finest o' gentlefolk! January 3015 Subscriber Item. It don't benefit ye.",
|
||||
"headMystery301405Text": "Basic Top Hat",
|
||||
@@ -1608,7 +1608,7 @@
|
||||
"bodyMystery201711Text": "Carpet Rider Scarf",
|
||||
"bodyMystery201711Notes": "This soft knitted scarf looks quite majestic blowin' in th' wind. It don't benefit ye. November 2017 Subscriber Item.",
|
||||
"bodyMystery201901Text": "Polaris Pauldrons",
|
||||
"bodyMystery201901Notes": "These shimmering pauldrons are strong, but will rest on your shoulders as weightlessly as a ray of dancing light. Confers no benefit. January 2019 Subscriber Item.",
|
||||
"bodyMystery201901Notes": "These shimmerin' pauldrons be strong, but will rest on yer shoulders as weightlessly as a ray o' dancin' light. It don't benefit ye. January 2019 Subscriber Item.",
|
||||
"bodyArmoireCozyScarfText": "Cozy Scarf",
|
||||
"bodyArmoireCozyScarfNotes": "This fine scarf will keep you warm as you go about your wintry business. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Lamplighter's Set (Item 4 of 4).",
|
||||
"headAccessory": "head accessory",
|
||||
@@ -1696,7 +1696,7 @@
|
||||
"headAccessoryMystery201812Text": "Arctic Fox Ears",
|
||||
"headAccessoryMystery201812Notes": "Ye hear th' subtle sound o' snowflakes fallin' upon th' landscape. It don't benefit ye. December 2018 Subscriber Item.",
|
||||
"headAccessoryMystery301405Text": "Headwear Goggles",
|
||||
"headAccessoryMystery301405Notes": "\"Goggles be fer yer eyes,\" they said. \"Nobody be wantin' goggles that ye can only wear on yer head,\" they said. Hah! Ye sure showed them! It don't benefit ye. August 3015 Subscriber Item.",
|
||||
"headAccessoryMystery301405Notes": "\"Goggles be fer yer eyes,\" they said. \"Nobody be wantin' goggles that ye can only wear on yer head,\" they said. Hah! Ye sure show'd 'em! It don't benefit ye. August 3015 Subscrib'r Item.",
|
||||
"headAccessoryArmoireComicalArrowText": "Comical Arrow",
|
||||
"headAccessoryArmoireComicalArrowNotes": "This whimsical item sure is good for a laugh! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.",
|
||||
"headAccessoryArmoireGogglesOfBookbindingText": "Goggles of Bookbinding",
|
||||
@@ -1806,7 +1806,7 @@
|
||||
"weaponArmoireSlingshotText": "yon Slingshot",
|
||||
"weaponArmoireJugglingBallsNotes": "Habiticans be masters at multi-taskin', so ye should 'ave no trouble keepin' all these balls in th' air! Raises yer Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
|
||||
"weaponArmoireJugglingBallsText": "Jugglin' Balls",
|
||||
"weaponMystery201911Notes": "Th' crystal ball atop yon staff kin show ye th' future, but beware! Usin' such dang'rous knowledge kin change a person in ways ye'd no' espect. Confers no benefit. November 2019 Subscriber Item.",
|
||||
"weaponMystery201911Notes": "Th' crystal ball atop yon staff can show ye th' future, but beware! Usin' such dang'rous knowledge can change a person in ways ye'd nev'r expect. It don't benefit ye. November 2019 Subscriber Item.",
|
||||
"weaponMystery201911Text": "Becharmed Crystal Staff",
|
||||
"weaponSpecialWinter2020HealerNotes": "Wavin' it about'll waft th' aroma t' summon yer friends an' 'elpers ta begin cookin' an' bakin'! Raises yer Intelligence by <%= int %>. Limited Edition 2019-2020 Winter Gear.",
|
||||
"weaponSpecialWinter2020HealerText": "Clove-Spice Scepter",
|
||||
@@ -2009,7 +2009,7 @@
|
||||
"eyewearSpecialBlackHalfMoonNotes": "Glasses wit' a black frame an' crescent lenses. It don't benefit ye.",
|
||||
"headAccessoryMystery202009Notes": "These feathery appendages will help ye find yer way even in th' dark o' night. It don't benefit ye. September 2020 Subscriber Item.",
|
||||
"headAccessoryMystery202005Notes": "With such mighty horns, what creature dares challenge ye? It don't benefit ye. May 2020 Subscriber Item.",
|
||||
"headAccessoryMystery202004Notes": "They twitch just a bit if th' scent o' flowers drifts by--use them t' find a pretty garden! It don't benefit ye. April 2020 Subscriber Item.",
|
||||
"headAccessoryMystery202004Notes": "They twitch just a bit if th' scent o' flowers drifts by--use 'em t' find a pretty garden! It don't benefit ye. April 2020 Subscrib'r Item.",
|
||||
"headAccessoryMystery201908Notes": "If wearin' horns floats yer goat, ye're in luck! It don't benefit ye. August 2019 Subscriber Item.",
|
||||
"headAccessoryMystery201906Notes": "Legend has it these finny ears help merfolk hear th' calls an' songs of all th' denizens o' th' deep! It don't benefit ye. June 2019 Subscriber Item.",
|
||||
"headAccessoryMystery201905Notes": "These horns be as sharp as they are shimmery. It don't benefit ye. May 2019 Subscriber Item.",
|
||||
|
||||
@@ -14,15 +14,15 @@
|
||||
"bold": "**Bold**",
|
||||
"markdownImageEx": "",
|
||||
"code": "`code`",
|
||||
"achievements": "Bounties",
|
||||
"basicAchievs": "Basic Bounties",
|
||||
"seasonalAchievs": "Seas'nal Bounties",
|
||||
"specialAchievs": "Special Bounties",
|
||||
"modalAchievement": "Bounty!",
|
||||
"achievements": "Medal",
|
||||
"basicAchievs": "Basic Medals",
|
||||
"seasonalAchievs": "Seas'nal Medals",
|
||||
"specialAchievs": "Special Medals",
|
||||
"modalAchievement": "Medal!",
|
||||
"special": "Special",
|
||||
"site": "Site",
|
||||
"help": "Help",
|
||||
"user": "User",
|
||||
"user": "Pirate",
|
||||
"market": "Market",
|
||||
"newSubscriberItem": "Ye 'ave new <span class=\"notification-bold-blue\">Mystery Items</span>",
|
||||
"subscriberItemText": "Ev'ry month, subscribers be receivin' mystery loot. It be ready t' claim at th' start o' th' month. Point yer spyglass at the wiki's 'Mystery Item' page for more information.",
|
||||
@@ -98,7 +98,7 @@
|
||||
"achievementBewilder": "Savior o' Mistiflyin'",
|
||||
"achievementBewilderText": "Helped defeat th' Be-Wilder durin' th' 2016 Spring Fling Event!",
|
||||
"achievementDysheartener": "Savior o' th' Shatter'd",
|
||||
"achievementDysheartenerText": "Helped defeat th' Dyshearten'r durin' th' 2018 Valentine's Event!",
|
||||
"achievementDysheartenerText": "Help'd defeat th' Dysheartener durin' th' 2018 Valentine's Event!",
|
||||
"cards": "Cards",
|
||||
"sentCardToUser": "Ye sent a card t' <%= profileName %>",
|
||||
"cardReceived": "Ye rece'ved a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||
@@ -201,5 +201,5 @@
|
||||
"loadEarlierMessages": "Load Earlyer Messages",
|
||||
"finish": "Finish",
|
||||
"congratulations": "Congratty-lations!",
|
||||
"onboardingAchievs": "Bounties fer Startin' Out"
|
||||
"onboardingAchievs": "Onboardin' Medals"
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"resumeDamage": "Resume Damage",
|
||||
"helpfulLinks": "Helpful Links",
|
||||
"communityGuidelinesLink": "Rules o’ th’ Sea",
|
||||
"lookingForGroup": "Looking for Crew (Party Wanted) Posts",
|
||||
"lookingForGroup": "Lookin' fer Group (Crew Want'd) Posts",
|
||||
"dataDisplayTool": "Data Display Tool",
|
||||
"reportProblem": "Report a Kraken",
|
||||
"requestFeature": "Request a Feature",
|
||||
@@ -60,9 +60,9 @@
|
||||
"guilds": "Fleets",
|
||||
"sureKick": "Do ye really want to remove this mate from the Crew/Fleet?",
|
||||
"optionalMessage": "Optional message",
|
||||
"yesRemove": "Aye, scuttle them",
|
||||
"sortBackground": "Sort by Background",
|
||||
"sortClass": "Sort by Crew",
|
||||
"yesRemove": "Aye, remove 'em",
|
||||
"sortBackground": "Sort by Ba'groun'",
|
||||
"sortClass": "Sort by Class",
|
||||
"sortDateJoined": "Sort by Join Date",
|
||||
"sortLogin": "Sort by Login Date",
|
||||
"sortLevel": "Sort by Level",
|
||||
@@ -73,19 +73,19 @@
|
||||
"applySortToHeader": "Apply Sort Options to Crew Header",
|
||||
"confirmGuild": "Create Ship fer 4 Sapphires?",
|
||||
"confirm": "Confirm",
|
||||
"leaveGroup": "Leave Fleet",
|
||||
"leaveGroup": "Leave Ship",
|
||||
"leaveParty": "Leave Crew",
|
||||
"send": "Send",
|
||||
"pmsMarkedRead": "Yer Private Messages 'ave been marked as read",
|
||||
"pmsMarkedRead": "Yer Private Messages 'ave been mark'd as read",
|
||||
"possessiveParty": "<%= name %>'s Crew",
|
||||
"PMPlaceholderTitle": "Naught Here Yet",
|
||||
"PMPlaceholderDescription": "Select a natter on th' port side",
|
||||
"PMPlaceholderTitleRevoked": "Yer chat privileges 'ave been revoked",
|
||||
"PMPlaceholderTitle": "Nothin' 'ere Yet",
|
||||
"PMPlaceholderDescription": "Select a conversation on th' port side",
|
||||
"PMPlaceholderTitleRevoked": "Yer chat privileges 'ave been revok'd",
|
||||
"PMPlaceholderDescriptionRevoked": "Ye be nah able t' send private messages 'cause yer chat privileges 'ave been revoked. If ye 'ave riddles or concerns about this, email <a href=\"mailto:admin@habitica.com\">admin@habitica.com</a> t' discuss it wit' th' staff.",
|
||||
"PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact ye via yer profile.",
|
||||
"PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option t' allow users t' contact ye via yer profile.",
|
||||
"PMDisabledCaptionTitle": "Private Messages are disabled",
|
||||
"PMDisabledCaptionText": "Ye can still send messages, but no one can send them t' ye.",
|
||||
"PMEnabledOptPopoverText": "Private Messages be enabl'd. Pirates can contact ye via yer profile.",
|
||||
"PMDisabledOptPopoverText": "Private Messages be disabl'd. Enable this option t' allow pirates t' contact ye via yer profile.",
|
||||
"PMDisabledCaptionTitle": "Private Messages be disabl'd",
|
||||
"PMDisabledCaptionText": "Ye can still send messages, but no one can send 'em t' ye.",
|
||||
"block": "Block 'em",
|
||||
"unblock": "Un-block 'em",
|
||||
"blockWarning": "Block - This will 'ave no effect if th' player be a moderator now or becomes a moderator in future.",
|
||||
@@ -95,8 +95,8 @@
|
||||
"gemAmountRequired": "A number o' sapphires be required",
|
||||
"notAuthorizedToSendMessageToThisUser": "Ye can nah send a message t' this player 'cause they 'ave chosen t' block messages.",
|
||||
"privateMessageGiftGemsMessage": "Ahoy <%= receiverName %>, <%= senderName %> has sent ye <%= gemAmount %> sapphires!",
|
||||
"cannotSendGemsToYourself": "Cannot send sapphires t' yerself. Try a subscription instead.",
|
||||
"badAmountOfGemsToSend": "Amount must be within 1 'n yer current number o' sapphires.",
|
||||
"cannotSendGemsToYourself": "Cannot send sapphires t' yerself. Try a subscr'ption instead.",
|
||||
"badAmountOfGemsToSend": "Amount must be within 1 an' yer current number o' sapphires.",
|
||||
"report": "Report",
|
||||
"abuseFlagModalHeading": "Report a Violation",
|
||||
"abuseFlagModalBody": "Are ye sure ye wants t' report this post? Ye should <strong>only</strong> report a post tha' violates th' <%= firstLinkStart %>Community Guidelines<%= linkEnd %> an'/or <%= secondLinkStart %>Terms o' Service<%= linkEnd %>. Inappropriately reportin' a post be a violation o' th' Code o' Conduct an' may give ye an infraction.",
|
||||
@@ -117,7 +117,7 @@
|
||||
"invitationsSent": "Invitations sent!",
|
||||
"invitationSent": "Invitation sent!",
|
||||
"invitedFriend": "Invited a Mate",
|
||||
"invitedFriendText": "This pirate invited a mate (or mates) who joined them on thar adventure!",
|
||||
"invitedFriendText": "This pirate invit'd a mate (or mates) who join'd 'em on their adventure!",
|
||||
"inviteLimitReached": "Ye 'ave already sent th' maximum number o' email invitations. We 'ave a limit t' prevent spammin', however if ye would like more, contact us at <%= techAssistanceEmail %> 'n we'll be happy t' discuss it!",
|
||||
"sendGiftHeading": "Send Gift t' <%= name %>",
|
||||
"sendGiftGemsBalance": "From <%= number %> Sapphires",
|
||||
@@ -182,7 +182,7 @@
|
||||
"assignTask": "Assign Task",
|
||||
"claim": "Claim Task",
|
||||
"removeClaim": "Remove Claim",
|
||||
"onlyGroupLeaderCanManageSubscription": "Only the group leader can manage the group's subscription",
|
||||
"onlyGroupLeaderCanManageSubscription": "Only th' Squadron leader can manage th' squadron's subscr'ption",
|
||||
"yourTaskHasBeenApproved": "Yer task <span class=\"notification-green\"><%- taskText %></span> 'as been approv'd.",
|
||||
"taskNeedsWork": "<span class=\"notification-bold\"><%- managerName %></span> marked <span class=\"notification-bold\"><%- taskText %></span> as needing additional work.",
|
||||
"userHasRequestedTaskApproval": "<span class=\"notification-bold\"><%- user %></span> requests approval fer <span class=\"notification-bold\"><%- taskName %></span>",
|
||||
@@ -190,27 +190,27 @@
|
||||
"approveTask": "Approve Task",
|
||||
"needsWork": "Needs Work",
|
||||
"viewRequests": "View Requests",
|
||||
"groupSubscriptionPrice": "$9 every month + $3 a month for every additional group member",
|
||||
"groupSubscriptionPrice": "$9 ev'ry month + $3 a month fer ev'ry additional squadron member",
|
||||
"groupBenefitsDescription": "We've just launched the beta version of our group plans! Upgrading to a group plan unlocks some unique features to optimize the social side of Habitica.",
|
||||
"teamBasedTasks": "Team-based Tasks",
|
||||
"cannotDeleteActiveGroup": "You cannot remove a group with an active subscription",
|
||||
"cannotDeleteActiveGroup": "Ye cannot remove a squadron wit' an active subscr'ption",
|
||||
"groupTasksTitle": "Group Tasks List",
|
||||
"userIsClamingTask": "`<%= username %> has claimed:` <%= task %>",
|
||||
"approvalRequested": "Approval Requested",
|
||||
"cantDeleteAssignedGroupTasks": "Can't delete group tasks that are assigned to you.",
|
||||
"groupPlanUpgraded": "<strong><%- groupName %></strong> was upgraded to a Group Plan!",
|
||||
"groupPlanCreated": "<strong><%- groupName %></strong> was created!",
|
||||
"onlyGroupLeaderCanInviteToGroupPlan": "Only the group leader can invite users to a group with a subscription.",
|
||||
"onlyGroupLeaderCanInviteToGroupPlan": "Only th' squadron leader can invite users t' a squadron wit' a subscr'ption.",
|
||||
"paymentDetails": "Payment Details",
|
||||
"aboutToJoinCancelledGroupPlan": "You are about to join a group with a canceled plan. You will NOT receive a free subscription.",
|
||||
"cannotChangeLeaderWithActiveGroupPlan": "You can not change the leader while the group has an active plan.",
|
||||
"aboutToJoinCancelledGroupPlan": "Ye be about t' join a group wit' a cancel'd plan. Ye will NOT receive a free subscr'ption.",
|
||||
"cannotChangeLeaderWithActiveGroupPlan": "Ye can not change th' leader while th' squadron has an active plan.",
|
||||
"leaderCannotLeaveGroupWithActiveGroup": "A leader can not leave a group while the group has an active plan",
|
||||
"youHaveGroupPlan": "You have a free subscription because you are a member of a Group Plan. Your subscription will end when you are no longer a member of the Group Plan.",
|
||||
"cancelGroupSub": "Cancel Group Plan",
|
||||
"confirmCancelGroupPlan": "Are ye sure ye wants t' cancel yer Ship Plan? All Ship hands will lose thar subscription 'n benefits.",
|
||||
"canceledGroupPlan": "Ship Plan Canceled",
|
||||
"groupPlanCanceled": "Group Plan will become inactive on",
|
||||
"purchasedGroupPlanPlanExtraMonths": "You have <%= months %> months of extra group plan credit.",
|
||||
"youHaveGroupPlan": "Ye 'ave a free subscr'ption 'cause ye be a member o' a Squadron Plan. Yer subscr'ption will end when ye are no longer a member o' th' Squadron Plan.",
|
||||
"cancelGroupSub": "Cancel Squadron Plan",
|
||||
"confirmCancelGroupPlan": "Are ye sure ye want t' cancel yer Squadron Plan? All Squadron members will lose their subscr'ption an' benefits.",
|
||||
"canceledGroupPlan": "Squadron Plan Cancel'd",
|
||||
"groupPlanCanceled": "Squadron Plan will become inactive on",
|
||||
"purchasedGroupPlanPlanExtraMonths": "Ye 'ave <%= months %> months o' extra squadron plan credit.",
|
||||
"addManager": "Assign Manager",
|
||||
"removeManager2": "Unassign Manager",
|
||||
"userMustBeMember": "Pirate must be a member",
|
||||
@@ -220,12 +220,12 @@
|
||||
"joinedGuild": "Joined a Fleet",
|
||||
"joinedGuildText": "Ventured into th' social side o' Habitica by joining a Fleet!",
|
||||
"badAmountOfGemsToPurchase": "Amount must be at least 1.",
|
||||
"groupPolicyCannotGetGems": "The policy of one group you're part of prevents its members from obtaining gems.",
|
||||
"viewParty": "View Party",
|
||||
"newGuildPlaceholder": "Enter yer fleet's name.",
|
||||
"guildBank": "Fleet Bank",
|
||||
"chatPlaceholder": "Type yer message t' Fleet members here",
|
||||
"partyChatPlaceholder": "Type your message to Party members here",
|
||||
"groupPolicyCannotGetGems": "Th' policy o' one squadron ye're part o' prevents its mates from obtainin' sapphires.",
|
||||
"viewParty": "View Crew",
|
||||
"newGuildPlaceholder": "Enter yer ship's name.",
|
||||
"guildBank": "Ship Bank",
|
||||
"chatPlaceholder": "Type yer message t' Shipmates 'ere",
|
||||
"partyChatPlaceholder": "Type yer message t' Crewmates 'ere",
|
||||
"fetchRecentMessages": "Fetch Recent Messages",
|
||||
"like": "Like",
|
||||
"liked": "Liked",
|
||||
@@ -235,8 +235,8 @@
|
||||
"inviteEmailUsernameInfo": "Recruit pirates via a valid email or username. If an email isn't registered yet, we'll invite 'em t' join.",
|
||||
"emailOrUsernameInvite": "Email address or username",
|
||||
"messageGuildLeader": "Message Fleet Leader",
|
||||
"donateGems": "Donate Gems",
|
||||
"updateGuild": "Update Fleet",
|
||||
"donateGems": "Donate Sapphires",
|
||||
"updateGuild": "Update Ship",
|
||||
"viewMembers": "View Members",
|
||||
"memberCount": "Member Count",
|
||||
"recentActivity": "Recent Activity",
|
||||
@@ -289,8 +289,8 @@
|
||||
"invites": "Invites",
|
||||
"details": "Details",
|
||||
"participantDesc": "Once all members have either accepted or declined, the Quest begins. Only those who clicked 'accept' will be able to participate in the Quest and receive the rewards.",
|
||||
"groupGems": "Group Gems",
|
||||
"groupGemsDesc": "Fleet Sapphires can be spent t' make Challenges! In th' future, ye will be able t' add more Fleet Sapphires.",
|
||||
"groupGems": "Group Sapphires",
|
||||
"groupGemsDesc": "Ship Sapphires can be spent t' make Challenges! In th' future, ye will be able t' add more Ship Sapphires.",
|
||||
"groupTaskBoard": "Task Board",
|
||||
"groupInformation": "Group Information",
|
||||
"groupBilling": "Group Billing",
|
||||
@@ -315,19 +315,19 @@
|
||||
"groupManagementControls": "Group Management Controls",
|
||||
"groupManagementControlsDesc": "Use task approvals to verify that a task that was really completed, add Group Managers to share responsibilities, and enjoy a private group chat for all team members.",
|
||||
"inGameBenefits": "In-Game Benefits",
|
||||
"inGameBenefitsDesc": "Group members get an exclusive Jackalope Mount, as well as full subscription benefits, including special monthly equipment sets and the ability to buy gems with gold.",
|
||||
"inspireYourParty": "Inspire your party, gamify life together.",
|
||||
"letsMakeAccount": "First, let’s make you an account",
|
||||
"nameYourGroup": "Next, Name Your Group",
|
||||
"inGameBenefitsDesc": "Squadron members git an exclusive Jackalope Steed, as well as full subscr'ption benefits, includin' special monthly equipment sets an' th' ability t' buy sapphires wit' gold.",
|
||||
"inspireYourParty": "Inspire yer party, gamify life togeth'r.",
|
||||
"letsMakeAccount": "Firs', let’s make ye an account",
|
||||
"nameYourGroup": "Next, Name Yer Squadron",
|
||||
"exampleGroupName": "Example: Avengers Academy",
|
||||
"exampleGroupDesc": "For those selected to join the training academy for The Avengers Superhero Initiative",
|
||||
"thisGroupInviteOnly": "This group is invitation only.",
|
||||
"gettingStarted": "Getting Started",
|
||||
"congratsOnGroupPlan": "Congratulations on creating your new Group! Here are a few answers to some of the more commonly asked questions.",
|
||||
"whatsIncludedGroup": "What's includ'd in th' subscr'ption",
|
||||
"whatsIncludedGroupDesc": "All members of the Group receive full subscription benefits, including the monthly subscriber items, the ability to buy Gems with Gold, and the Royal Purple Jackalope mount, which is exclusive to users with a Group Plan membership.",
|
||||
"howDoesBillingWork": "How does billing work?",
|
||||
"howDoesBillingWorkDesc": "Group Leaders are billed based on group member count on a monthly basis. This charge includes the $9 (USD) price for the Group Leader subscription, plus $3 USD for each additional group member. For example: A group of four users will cost $18 USD/month, as the group consists of 1 Group Leader + 3 group members.",
|
||||
"whatsIncludedGroupDesc": "All members of the Squadron receive full subscr'ption benefits, includin' th' monthly subscrib'r items, th' ability t' buy Sapphires wit' Gold, an' th' Royal Purple Jackalope steed, which be exclusive t' pirates wit' a Squadron Plan membership.",
|
||||
"howDoesBillingWork": "How does billin' work?",
|
||||
"howDoesBillingWorkDesc": "Squadron Leaders are bill'd based on squadron member count on a monthly basis. This charge includes th' $9 (USD) price fer th' Squadron Leader subscr'ption, plus $3 USD fer each additional squadron member. Fer example: A group o' four users pirates will cost $18 USD/month, as th' squadron consists o' 1 Squadron Leader + 3 Squadron members.",
|
||||
"howToAssignTask": "How do you assign a Task?",
|
||||
"howToAssignTaskDesc": "Assign any Task t' one or more Ship hands (includin' th' Ship Leader or Managers themselves) by boardin' thar seanames in th' \"Assign T'\" field within th' Create Task modal. Ye can also decide t' assign a Task aft creatin' it, by editin' th' Task 'n addin' th' pirate in th' \"Assign T'\" field!",
|
||||
"howToRequireApproval": "How do you mark a Task as requiring approval?",
|
||||
@@ -349,13 +349,13 @@
|
||||
"PMDisabled": "Turn off yer Private Messages",
|
||||
"sendGiftToWhom": "Ta whom d'ye want ta be sendin' a gift?",
|
||||
"selectGift": "Pick a Gift",
|
||||
"PMUnblockUserToSendMessages": "Unblock this user ta continue sendin' an receivin' messages.",
|
||||
"PMUserDoesNotReceiveMessages": "This user be unable ta receive private messages",
|
||||
"PMCanNotReply": "Ye cannae reply ta this con-ver-sation",
|
||||
"PMUnblockUserToSendMessages": "Unblock this pirate t' continue sendin' an receivin' messages.",
|
||||
"PMUserDoesNotReceiveMessages": "This pirate be unable t' receive private messages",
|
||||
"PMCanNotReply": "Ye can not reply t' this conversation",
|
||||
"claimRewards": "Claim yer Loot",
|
||||
"managerNotes": "Manager's Notes",
|
||||
"languageSettings": "Language Settin's",
|
||||
"onlyPrivateGuildsCanUpgrade": "Only private ships can be upgraded to a squadron.",
|
||||
"onlyPrivateGuildsCanUpgrade": "Only private ships can be upgrad'd to a squadron.",
|
||||
"chooseTeamMember": "Choose ye a team member",
|
||||
"unassigned": "Unassigned",
|
||||
"bannedWordsAllowedDetail": "Wit' this option selected, th' use of banned words in this guild will be allowed.",
|
||||
|
||||
@@ -33,11 +33,11 @@
|
||||
"seasonalShopSpringText": "Happy Spring Fling!! Would ye like to buy some rare items? They’ll only be available until April 30th!",
|
||||
"seasonalShopFallTextBroken": "Oh.... Welcome t' th' Seasonal Shop... We be stockin' autumn Seasonal Edition goodies, 'r somethin'... Everything here will be available t' purchase durin' th' Fall Festival even' each year, but we only be open 'til October 31... I guess ye should be stockin' up now, or ye'll be havin' t' wait... an' wait... an' wait... <strong>*sigh*</strong>",
|
||||
"seasonalShopBrokenText": "My pavilion!!!!!!! My decorations!!!! Oh, the Dysheartener's destroyed everything :( Please help defeat it in the Tavern so I can rebuild!",
|
||||
"seasonalShopRebirth": "Iffen ye bought any o' this equipment afore but don't currently own it, ye kin repurchase it in the Rewards Column. Fer starters, ye'll only be able ta purchase th' items fer yer current class (Swashbuckler by default), but fear not, th' other class-specific items'll become available iffen ye switch t' that class.",
|
||||
"seasonalShopRebirth": "If ye bought any o' this equipment in th' past but don't currently own it, ye can repurchase it in th' Rewards Column. Fer starters, ye'll only be able t' purchase th' items fer yer current class (Swashbuckler by default), but fear not, th' other class-specific items'll become available if ye switch t' that class.",
|
||||
"candycaneSet": "Candy Cane (Conjurer)",
|
||||
"skiSet": "Ski-sassin (Scallywag)",
|
||||
"snowflakeSet": "Snowflake (Doc)",
|
||||
"yetiSet": "Albatross Tamer (Warrior)",
|
||||
"snowflakeSet": "Snowflake (Sawbones)",
|
||||
"yetiSet": "Yeti Tamer (Warrior)",
|
||||
"northMageSet": "Mage of th' North (Mage)",
|
||||
"icicleDrakeSet": "Icicle Drake (Rogue)",
|
||||
"soothingSkaterSet": "Soothing Skater (Healer)",
|
||||
@@ -50,7 +50,7 @@
|
||||
"nyeCard": "New Year's Card",
|
||||
"nyeCardExplanation": "Fer celebratin' th' new year together, ye both receive th' \"Auld Acquaintance\" badge!",
|
||||
"nyeCardNotes": "Send a New Year's card t' a crew member.",
|
||||
"seasonalItems": "Seasonal Items",
|
||||
"seasonalItems": "Seas'nal Items",
|
||||
"nyeCardAchievementTitle": "Auld Acquaintance",
|
||||
"nyeCardAchievementText": "Happy New Year! Sent or received <%= count %> New Year's cards.",
|
||||
"nye0": "Happy New Year! May ye slay many a bad Habit.",
|
||||
@@ -143,8 +143,8 @@
|
||||
"dateEndJanuary": "January 31",
|
||||
"dateEndFebruary": "February 29",
|
||||
"winterPromoGiftHeader": "GIFT A SUBSCR'PTION, GET ONE FREE!",
|
||||
"winterPromoGiftDetails1": "Until January 6th only, when ye gift somebody a subscription, ye get the same subscription fer yourself fer free!",
|
||||
"winterPromoGiftDetails2": "Please note that if yer or yer gift recipient already have a recurring subscription, th' gifted subscription will only start after that subscription is cancelled or 'as expired. Thanks so much for your support! <3",
|
||||
"winterPromoGiftDetails1": "Until January 6th only, when ye gift somebody a subscr'ption, ye git th' same subscr'ption fer yerself fer free!",
|
||||
"winterPromoGiftDetails2": "Please note that if ye or yer gift recipient already 'ave a recurrin' subscr'ption, th' gift'd subscr'ption will only start after that subscr'ption be cancell'd or has expir'd. Thanks so much fer yer support! <3",
|
||||
"discountBundle": "bundle",
|
||||
"g1g1Announcement": "<strong>Gift a subscr'ption an' get a subscr'ption free</strong> event goin' on now!",
|
||||
"g1g1Details": "Gift a subscr'ption t' a friend, an' ye'll receive th' same subscr'ption fer free!",
|
||||
|
||||
@@ -31,9 +31,9 @@
|
||||
"armoireFood": "<%= image %> Ye rummage in th' Armoire an' find <%= dropText %>. What's tha' doin' in here?",
|
||||
"armoireExp": "Ye wrestle wi' th' Armoire an' gain Experience. Take that!",
|
||||
"messageInsufficientGems": "Not enough sapphires!",
|
||||
"messageGroupAlreadyInParty": "Already in a party; try refreshin'.",
|
||||
"messageGroupOnlyLeaderCanUpdate": "Only th' group leader c'n update th' group!",
|
||||
"messageGroupRequiresInvite": "Can't join a group yer not invited to.",
|
||||
"messageGroupAlreadyInParty": "Already in a crew; try refreshin'.",
|
||||
"messageGroupOnlyLeaderCanUpdate": "Only th' squadron leader c'n update th' squadron!",
|
||||
"messageGroupRequiresInvite": "Can't join a squadron yer not invited to.",
|
||||
"messageGroupCannotRemoveSelf": "Ye can't remove yerself!",
|
||||
"messageGroupChatBlankMessage": "Ye can't be sendin' a blank message",
|
||||
"messageGroupChatLikeOwnMessage": "Ye can't like yer own message. Don't be that person.",
|
||||
|
||||
@@ -120,8 +120,8 @@
|
||||
"imReady": "Set Sail",
|
||||
"limitedOffer": "Available 'til <%= date %>",
|
||||
"paymentCanceledDisputes": "We 'ave sent a cancelation confirmation t' yer email. If ye don' see thee email, contact us t' prevent future billin' disputes.",
|
||||
"paymentAutoRenew": "This subscription will auto-renew 'til 'tis canceled. If ye needs t' cancel this subscription, ye kin do so from yer settin's.",
|
||||
"paymentSubBillingWithMethod": "Yer subscription will be billed <strong>$<%= amount %></strong> every <strong><%= months %> months</strong> via <strong><%= paymentMethod %></strong>.",
|
||||
"paymentAutoRenew": "This subscr'ption will auto-renew 'til it be cancel'd. If ye need t' cancel this subscr'ption, ye can do so from yer settin's.",
|
||||
"paymentSubBillingWithMethod": "Yer subscr'ption will be bill'd <strong>$<%= amount %></strong> ev'ry <strong><%= months %> months</strong> via <strong><%= paymentMethod %></strong>.",
|
||||
"cannotUnpinItem": "This 'ere item canno' be unpinned.",
|
||||
"invalidUnlockSet": "This set o' items be invalid an' cannot be unlocked.",
|
||||
"nMonthsSubscriptionGift": "<%= nMonths %> Month(s) Subscr'ption (Gift)",
|
||||
|
||||
@@ -48,12 +48,12 @@
|
||||
"dropsExplanationEggs": "Spend Sapphires t' get eggs more quickly, if ye don't want t' wait fer standard eggs t' drop, or t' repeat Quests t' earn Quest eggs. <a href=\"http://habitica.fandom.com/wiki/Drops\">Learn more 'bout th' drop system.</a>",
|
||||
"premiumPotionNoDropExplanation": "Magic Hatchin' Potions cannot be used on eggs received from Quests. Th' only way t' get Magic Hatching Potions is by buyin' 'em below, not from random drops.",
|
||||
"beastMasterProgress": "Beast Master Progress",
|
||||
"beastAchievement": "Ye've earned th' \"Beast Master\" Achievement fer collectin' all th' pets!",
|
||||
"beastAchievement": "Ye've earn'd th' \"Beast Master\" Medal fer collectin' all th' critters!",
|
||||
"beastMasterName": "Beast Master",
|
||||
"beastMasterText": "Has found all 90 pets (incredibly difficult, congratulate this pirate!)",
|
||||
"beastMasterText2": " an' has releas'd their pets a total o' <%= count %> time(s)",
|
||||
"mountMasterProgress": "Mount Master Progress",
|
||||
"mountAchievement": "Ye've earned the \"Mount Master\" achievement fer tamin; all ther mounts!",
|
||||
"mountAchievement": "Ye've earn'd th' \"Steed Master\" medal fer tamin' all the' steeds!",
|
||||
"mountMasterName": "Mount Master",
|
||||
"mountMasterText": "Has tamed all 90 mounts (even more difficult, congratulate this user!)",
|
||||
"mountMasterText2": " an' has releas'd all 90 o' their mounts a total o' <%= count %> time(s)",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"questEvilSantaText": "Trapp'r Santa",
|
||||
"questEvilSantaNotes": "Ye hear bemoaned roars deep in th' icefields. ye follow th' roars an' growls - punctuated by another voice's cacklin' - to a clearin' in th' woods whar ye spy wit' ye eye a fully-grown polar bear. She's caged an' shackled, roarin' fer life. Dancin' atop th' cage be a malicious wee imp wearin' castaway Christmas costumes. Vanquish Trapper Santa, 'n save th' beast!<br><br><strong>Note</strong>: “Trapper Santa” awards a stackable quest achievement but gives a rare mount that can only be added to yer stable once.",
|
||||
"questEvilSantaNotes": "Ye hear bemoan'd roars deep in th' icefields. Ye follow th' roars an' growls - punctuat'd by anoth'r voice's cacklin' - t' a clearin' in th' woods where ye spy a fully-grown polar bear. She's caged an' shackl'd, roarin' fer life. Dancin' atop th' cage be a malicious wee imp wearin' castaway Christmas costumes. Vanquish Trapper Santa, an' save th' beast!<br><br><strong>Note</strong>: “Trapper Santa” awards a stackable quest medal but gives a rare steed that can only be add'd t' yer stable once.",
|
||||
"questEvilSantaCompletion": "Trapper Santa squeals in wrath, 'n bounces off into th' night. Th' grateful she-bear, through roars 'n growls, tries t' tell ye somethin'. Ye loot her back t' th' stables, where Matt Boch th' Beast Master listens t' her tale wit' a gasp o' horror. She has a cub! He ran off into th' icefields when mama bear was captured.",
|
||||
"questEvilSantaBoss": "Trapp'r Santa",
|
||||
"questEvilSantaDropBearCubPolarMount": "Polar Bear (Steed)",
|
||||
@@ -10,7 +10,7 @@
|
||||
"questEvilSanta2CollectTracks": "Tracks",
|
||||
"questEvilSanta2CollectBranches": "Yon Broken Twigs",
|
||||
"questEvilSanta2DropBearCubPolarPet": "Polar Bear (Pet)",
|
||||
"questGryphonText": "Th' Fiery Gryphon",
|
||||
"questGryphonText": "Th' Fiery Gryph'n",
|
||||
"questGryphonNotes": "Th' grand beast master, <strong>baconsaur</strong>, has come t' yer party seekin' help. \", adventurers, ye must help me! Me prized gryphon has broken free 'n be terrorizin' Habit City! If ye can stop her, I could reward ye wit' some o' her eggs!\"",
|
||||
"questGryphonCompletion": "Defeat'd, th' mighty beast ashamedly slinks back t' its master. \"My word! Well done, adventurers!\" <strong>baconsaur</strong> exclaims, \"Please, 'ave some o' th' gryphon's eggs. I am sure ye will raise these young ones well!\"",
|
||||
"questGryphonBoss": "Fiery Gryphon",
|
||||
@@ -579,15 +579,15 @@
|
||||
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
|
||||
"questDysheartenerBossRageDescription": "The Rage Attack gauge fills when Habiticans miss their Dailies. If it fills up, the Dysheartener will unleash its Shattering Heartbreak attack on one of Habitica's shopkeepers, so be sure to do your tasks!",
|
||||
"questDysheartenerBossRageSeasonal": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nOh, no! After feasting on our undone Dailies, the Dysheartener has gained the strength to unleash its Shattering Heartbreak attack. With a shrill shriek, it brings its spiny forelegs down upon the pavilion that houses the Seasonal Shop! The concussive blast of magic shreds the wood, and the Seasonal Sorceress is overcome by sorrow at the sight.\n\nQuickly, let's keep doing our Dailies so that the beast won't strike again!",
|
||||
"seasonalShopRageStrikeHeader": "The Seasonal Shop was Attacked!",
|
||||
"seasonalShopRageStrikeLead": "Leslie is Heartbroken!",
|
||||
"seasonalShopRageStrikeRecap": "On February 21, our beloved Leslie the Seasonal Sorceress was devastated when the Dysheartener shattered the Seasonal Shop. Quickly, tackle your tasks to defeat the monster and help rebuild!",
|
||||
"marketRageStrikeHeader": "Th' Market was Attacked!",
|
||||
"marketRageStrikeLead": "Alex is Heartbroken!",
|
||||
"marketRageStrikeRecap": "On February 28, our marvelous Alex th' Merchant was horrified when th' Dysheartener shattered th' Market. Smartly, tackle yer tasks t' defeat th' monster 'n help rebuild!",
|
||||
"questsRageStrikeHeader": "The Adventure Shop was Attacked!",
|
||||
"questsRageStrikeLead": "Ian is Heartbroken!",
|
||||
"questsRageStrikeRecap": "On March 6, our wonderful Ian th' Adventure Guide was deeply shaken when th' Dysheartener shattered th' ground around th' Adventure Shop. Smartly, tackle yer tasks t' defeat th' monster 'n help rebuild!",
|
||||
"seasonalShopRageStrikeHeader": "Th' Seas'nal Shop was Attack'd!",
|
||||
"seasonalShopRageStrikeLead": "Leslie be Heartbrok'n!",
|
||||
"seasonalShopRageStrikeRecap": "On February 21, our belov'd Leslie th' Seas'nal Sorc'ress was devastat'd when th' Dysheartener shatter'd th' Seas'nal Shop. Quickly, tackle yer tasks t' defeat th' monster an' help rebuild!",
|
||||
"marketRageStrikeHeader": "Th' Market was Attack'd!",
|
||||
"marketRageStrikeLead": "Alex be Heartbroken!",
|
||||
"marketRageStrikeRecap": "On February 28, our marv'lous Alex th' Merchant was horrifi'd when th' Dysheartener shatter'd th' Market. Quickly, tackle yer tasks t' defeat th' monster an' help rebuild!",
|
||||
"questsRageStrikeHeader": "Th' Adventure Shop was Attack'd!",
|
||||
"questsRageStrikeLead": "Ian be Heartbroken!",
|
||||
"questsRageStrikeRecap": "On March 6, our wond'rful Ian th' Adventure Guide was deeply shaken when th' Dysheartener shatter'd th' ground around th' Adventure Shop. Quickly, tackle yer tasks t' defeat th' monster an' help rebuild!",
|
||||
"questDysheartenerBossRageMarket": "`Th' Dysheartener uses SHATTERING HEARTBREAK!`\n\nHelp! Aft feastin' on our incomplete Dailies, th' Dysheartener lets out another Shatterin' Heartbreak attack, smashin' th' walls 'n floor o' th' Market! As stone rains down, Alex th' Merchant weeps at his crushed merchandise, stricken by th' destruction.\n\nWe can nah let this happen again! Be sure t' do all our yer Dailies t' prevent th' Dysheartener from usin' its final strike.",
|
||||
"questDysheartenerBossRageQuests": "`Th' Dysheartener uses SHATTERING HEARTBREAK!`\n\nAaaah! We've left our Dailies undone again, 'n th' Dysheartener has mustered th' energy fer one final blow against our beloved shopkeepers. Th' countryside around Ian th' Adventure Master be ripped apart by its Shatterin' Heartbreak attack, 'n Ian be struck t' th' core by th' horrific vision. We be so close t' defeatin' this monster.... Hurry! Don't stop now!",
|
||||
"questDysheartenerDropHippogriffPet": "Hopeful Hippogriff (Pet)",
|
||||
@@ -672,7 +672,7 @@
|
||||
"questAmberCompletion": "“Trerezin?” @-Tyr- says calmly. “Could ye let @Vikte go? I don’t think they’re enjoyin' being so high up.”<br><br>Th' Trerezin’s amber skin blushes crimson and she gently lowers @Vikte t' th' ground. “My apologies! It’s been so long since I’ve had any guests that I’ve forgotten my manners!” She slithers forward t' greet ye properly before disappearin' into her treehouse, an' returnin' wit' an armful o' Amber Hatchin' Potions as thank-ye gifts!<br><br>“Magic Potions!” @Vikte gasps.<br><br>“Oh, these old things?” The Trerezin's tongue flickers as she thinks. “How about this? I’ll give you this whole stack if ye promise t' visit me every so often...”<br><br>And so ye leave th' Taskwoods, excited t' tell ev'ryone about th' new potions--an' yer new friend!",
|
||||
"questAmberNotes": "Yer sittin' in th' Tavern wit' @beffymaroo an' @-Tyr- when @Vikte bursts through th' door an' excitedly tells ye about th' rumors of another type o' Magic Hatching Potion hidden in th' Taskwoods. Havin' completed yer Dailies, th' three of ye immediately agree t' help @Vikte on their search. After all, what’s th' harm in a little adventure?<br><br>After walkin' through th' Taskwoods fer hours, yer beginnin' t' regret joinin' such a wild chase. Yee about t' head home, when ye hear a surpris'd yelp an' turn t' see a huge lizard wit' shiny amber scales coil'd 'round a tree, clutchin' @Vikte in her claws. @beffymaroo reaches fer her sword.<br><br>“Wait!” cries @-Tyr-. “It’s the Trerezin! She’s not dangerous, just dangerously clingy!”",
|
||||
"delightfulDinosNotes": "Contains 'The Pterror-dactyl,' 'The Trampling Triceratops,' an' 'The Dinosaur Unearthed.' Available 'til November 30.",
|
||||
"evilSantaAddlNotes": "Note that Trapper Santa an' Find the Cub 'ave stackable quest achievements but give a rare pet an' mount that can only be added t' yer stable once.",
|
||||
"evilSantaAddlNotes": "Note that Trapp'r Santa an' Find th' Cub 'ave stackable adventure medals but give a rare critter an' steed that can only be add'd t' yer stable once.",
|
||||
"questRubyCollectRubyGems": "Ruby Gems",
|
||||
"questRubyCollectVenusRunes": "Venus Runes",
|
||||
"questRubyCollectAquariusRunes": "Aquarius Zodiac Runes",
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"rebirthNew": "Rebirth: New Nautical Adventure Available!",
|
||||
"rebirthUnlock": "Ye've unlocked Rebirth! 'tis special Market item allows ye t' begin a new game at level 1 while keepin' ye tasks, achievements, pets, an' more. Use it t' breathe new life into Habitica if ye feel ye've achieved it all, or t' experience new weapons wit' th' fresh eyes o' a beginnin' character!",
|
||||
"rebirthAchievement": "Ye've begun a new adventure! 'tis be Rebirth <%= number %> fer ye, 'n th' highest Level ye've attained be <%= level %>. To stack 'tis Achievement, begin ye next new adventure when ye've reached an even higher Level!",
|
||||
"rebirthAchievement100": "Ye've begun a new voyage! This be Rebirth <%= number %> fer ye, an' th' highest Level ye've attained be 100 or higher. T' stack this Achievement, begin yer nex' new voyage when ye've reached at least 100!",
|
||||
"rebirthBegan": "Embarked on a New Adventure",
|
||||
"rebirthText": "Embarked on <%= rebirths %> New Adventures",
|
||||
"rebirthOrb": "Used an Orb o' Rebirth t' start o'er aft attainin' Level <%= level %>.",
|
||||
"rebirthOrb100": "Used an Orb o' Rebirth t' start over aft attainin' Level 100 or higher.",
|
||||
"rebirthUnlock": "Ye've unlock'd Rebirth! This special Market item allows ye t' begin a new game at level 1 while keepin' ye tasks, medals, critters, an' more. Use it t' breathe new life into Habitica if ye feel ye've achiev'd it all, or t' experience new weap'ns wit' th' fresh eyes o' a beginnin' character!",
|
||||
"rebirthAchievement": "Ye've begun a new adventure! This be Rebirth <%= number %> fer ye, an' th' highest Level ye've attained be <%= level %>. T' stack this Medal, begin yer next new adventure when ye've reach'd an ev'n high'r Level!",
|
||||
"rebirthAchievement100": "Ye've begun a new voyage! This be Rebirth <%= number %> fer ye, an' th' highest Level ye've attained be 100 or higher. T' stack this Medal, begin yer next new voyage when ye've reach'd at least 100!",
|
||||
"rebirthBegan": "Embark'd on a New Adventure",
|
||||
"rebirthText": "Embark'd on <%= rebirths %> New Adventures",
|
||||
"rebirthOrb": "Used an Orb o' Rebirth t' start o'er aft'r attainin' Level <%= level %>.",
|
||||
"rebirthOrb100": "Used an Orb o' Rebirth t' start o'er aft'r attainin' Level 100 or higher.",
|
||||
"rebirthOrbNoLevel": "Used an Orb o' Rebirth t' start o'er.",
|
||||
"rebirthPop": "Instantly restart yer character as a Level 1 Swashbuckler while retainin' achievements, treasures, an' equipment. Yer tasks an' their history will remain but they'll be reset t' yellow. Yer streaks will be cast overboard 'cept from tasks belongin' to active Challenges and Squadron Plans. Yer Gold, Experience, Mana, an' the effects o' all Skills will be cast overboard. All o' this will take effect immediately. Fer more information, explore th' wiki's <a href='http://habitica.fandom.com/wiki/Orb_of_Rebirth' target='_blank'>Orb o' Rebirth</a> page.",
|
||||
"rebirthName": "Orb o' Rebirth",
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
"suppressLevelUpModal": "Don't show popup when gainin' a level",
|
||||
"suppressHatchPetModal": "Don't show popup when hatchin' a pet",
|
||||
"suppressRaisePetModal": "Don't show popup when raisin' a pet into a mount",
|
||||
"suppressStreakModal": "Don't show popup when attainin' a Streak achievement",
|
||||
"suppressStreakModal": "Don't show popup when attainin' a Streak medal",
|
||||
"showTour": "Show Tour",
|
||||
"showBailey": "Show Bailey",
|
||||
"showBaileyPop": "Bring Bailey the First Mate out o' hidin' so ye can review past news.",
|
||||
@@ -33,8 +33,8 @@
|
||||
"habitHistory": "Habit Log",
|
||||
"exportHistory": "Export Log:",
|
||||
"csv": "(CSV)",
|
||||
"userData": "User Data",
|
||||
"exportUserData": "Export User Data:",
|
||||
"userData": "Pirate Data",
|
||||
"exportUserData": "Export Pirate Data:",
|
||||
"export": "Export",
|
||||
"xml": "(XML)",
|
||||
"json": "(JSON)",
|
||||
@@ -149,7 +149,7 @@
|
||||
"pushDeviceRemoved": "Push device remov'd successfully.",
|
||||
"buyGemsGoldCap": "Ye kin now get up t' <%= amount %> Gems",
|
||||
"mysticHourglass": "<%= amount %> Mystic Hourglass",
|
||||
"purchasedPlanExtraMonths": "Ye've <strong><%= months %> months</strong> months o' extra subscription credit.",
|
||||
"purchasedPlanExtraMonths": "Ye 'ave <strong><%= months %> months</strong> months o' extra subscr'ption credit.",
|
||||
"consecutiveSubscription": "Consecutive Subscr'ption",
|
||||
"consecutiveMonths": "Consecutive Moons:",
|
||||
"gemCapExtra": "Sapphire Cap Bonus",
|
||||
@@ -157,7 +157,7 @@
|
||||
"mysticHourglassesTooltip": "Mystic Hourglasses",
|
||||
"paypal": "PayPal",
|
||||
"amazonPayments": "Amazon Paym'nts",
|
||||
"amazonPaymentsRecurring": "Tickin' th' checkbox below be necessary fer yer subscription t' be created. It allows yer Amazon account t' be used fer ongoin' payments fer <strong>this</strong> subscription. 'twon't cause yer Amazon account t' be automatically used fer any future purchases.",
|
||||
"amazonPaymentsRecurring": "Tickin' th' checkbox below be necessary fer yer subscr'ption t' be creat'd. It allows yer Amazon account t' be used fer ongoin' payments fer <strong>this</strong> subscr'ption. It won't cause yer Amazon account t' be automatically used fer any future purchases.",
|
||||
"timezone": "Time Zone",
|
||||
"timezoneUTC": "Habitica uses the time zone set on yer PC, which is: <strong><%= utc %></strong>",
|
||||
"timezoneInfo": "If that time zone is wrong, first reload this page using yer browser's reload or refresh button t' ensure that Habitica has th' most recent information. If it is still wrong, adjust th' time zone on yer PC an' then reload this page again.<br><br> <strong>If ye use Habitica on other PCs or mobile devices, th' time zone must be the same on them all.</strong> If yer Dailies have been resetting at th' wrong time, repeat this check on all other PCs an' on a browser on your mobile devices.",
|
||||
@@ -177,7 +177,7 @@
|
||||
"usernameNotVerified": "Please confirm yer seaname.",
|
||||
"changeUsernameDisclaimer": "Yer username be used fer invitations, @mentions in chat, 'n messagin'. It must be 1 t' 20 characters, containin' only letters A t' Z, numbers 0 t' 9, hyphens, or underscores, an' cannae include any inappropriate terms.",
|
||||
"verifyUsernameVeteranPet": "One o' these Veteran Pets will be waitin' fer ye after ye've finish'd confirmin'!",
|
||||
"subscriptionReminders": "Don' ferget about yer Subscriptions",
|
||||
"subscriptionReminders": "Subscr'ptions Reminders",
|
||||
"newPMNotificationTitle": "There be a Message from <%= name %>",
|
||||
"chatExtensionDesc": "Th' Chat Extension fer Habitica adds an intuitive chat box t' all o' habitica.com. It allows pirates t' chat in th' Pub, their crew, and any ships they 'ave boarded.",
|
||||
"chatExtension": "<a target='blank' href='https://chrome.google.com/webstore/detail/habitrpg-chat-client/hidkdfgonpoaiannijofifhjidbnilbb'>Chrome Chat Extension</a> n' <a target='blank' href='https://addons.mozilla.org/en-US/firefox/addon/habitica-chat-client-2/'>Firefox Chat Extension</a>",
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
"subscription": "Subscr'ption",
|
||||
"subscriptions": "Subscr'ptions",
|
||||
"sendGems": "Send Sapphires",
|
||||
"buyGemsGold": "Buy Gems with Doubloons",
|
||||
"mustSubscribeToPurchaseGems": "Must subscribe t' purchase sapphires with Doubloons",
|
||||
"buyGemsGold": "Buy Sapphires with Gold",
|
||||
"mustSubscribeToPurchaseGems": "Must subscribe t' purchase sapphires with GP",
|
||||
"reachedGoldToGemCap": "Ye've reached th' Gold=>Sapphires conversion cap <%= convCap %> fer this month. We 'ave this t' prevent abuse / farmin'. Th' cap resets within th' first three days o' each month.",
|
||||
"reachedGoldToGemCapQuantity": "Yer requested amount <%= quantity %> exceeds th' amount ye can buy fer this month (<%= convCap %>). Th' full amount becomes available within th' first three days o' each month. Thanks fer subscribin'!",
|
||||
"mysteryItem": "Exclusive items per moon",
|
||||
@@ -103,9 +103,9 @@
|
||||
"typeNotAllowedHourglass": "Item type nah supported fer purchase wit' Mystic Hourglass. Allowed types: <%= allowedTypes %>",
|
||||
"hourglassPurchase": "Ye purchased an item using a Mystic Hourglass!",
|
||||
"hourglassPurchaseSet": "Ye purchased an item set using a Mystic Hourglass!",
|
||||
"missingUnsubscriptionCode": "Missin' unsubscription code.",
|
||||
"missingSubscription": "Pirate does nah 'ave a plan subscription",
|
||||
"missingSubscriptionCode": "Missin' subscription code. Possible values: basic_earned, basic_3mo, basic_6mo, google_6mo, basic_12mo.",
|
||||
"missingUnsubscriptionCode": "Missin' unsubscr'ption code.",
|
||||
"missingSubscription": "Pirate does nah 'ave a plan subscr'ption",
|
||||
"missingSubscriptionCode": "Missin' subscr'ption code. Possible values: basic_earned, basic_3mo, basic_6mo, google_6mo, basic_12mo.",
|
||||
"missingReceipt": "Missin' Receipt.",
|
||||
"cannotDeleteActiveAccount": "Ye have an active subscr'ption, cancel yer plan before deletin' yer account.",
|
||||
"paymentNotSuccessful": "Th' payment was nah successful",
|
||||
@@ -136,7 +136,7 @@
|
||||
"notEnoughGemsToBuy": "Ye be unable t' buy that amount o' Sapphires",
|
||||
"mysterySet201902": "Cryptic Crush Set",
|
||||
"subWillBecomeInactive": "Won't be active no more",
|
||||
"confirmCancelSub": "Are ye sure ye wanna cancel yer subscription? Ye'll lose all o' yer subscription benny-fits.",
|
||||
"confirmCancelSub": "Are ye sure ye want t' cancel yer subscr'ption? Ye'll lose all o' yer subscr'ption benefits.",
|
||||
"mysterySet201907": "Beach Mates Set",
|
||||
"mysterySet201906": "Kindly Koi-fish Set",
|
||||
"mysterySet201905": "Dazzlin' Dragon Set",
|
||||
@@ -148,8 +148,8 @@
|
||||
"mysterySet201909": "Affable Acorn Set",
|
||||
"mysterySet201908": "Footloose Faun Set",
|
||||
"mysticHourglassNeededNoSub": "This item requires a Mystic Hourglass. Ye earn Mystic Hourglasses by bein' a Habitica subscriber.",
|
||||
"cancelSubInfoApple": "Please follow <a href=\"https://support.apple.com/en-us/HT202039\">Apple's official instructions</a> t' cancel yer subscr'ption or t' see yer subscr'ption's termination date if ye 'ave already cancell'd it. This screen not be able t' show ye wheth'r yer subscription has been cancell'd.",
|
||||
"cancelSubInfoGoogle": "Please go t' th' \"Account\" > \"Subscr'ptions\" section o' th' Google Play Store app t' cancel yer subscription or t' see yer subscr'ption's termination date if ye 'ave already cancell'd it. This screen not be able t' show ye wheth'r yer subscription has been cancell'd.",
|
||||
"cancelSubInfoApple": "Please follow <a href=\"https://support.apple.com/en-us/HT202039\">Apple's official instructions</a> t' cancel yer subscr'ption or t' see yer subscr'ption's termination date if ye 'ave already cancell'd it. This screen not be able t' show ye wheth'r yer subscr'ption has been cancell'd.",
|
||||
"cancelSubInfoGoogle": "Please go t' th' \"Account\" > \"Subscr'ptions\" section o' th' Google Play Store app t' cancel yer subscr'ption or t' see yer subscr'ption's termination date if ye 'ave already cancell'd it. This screen not be able t' show ye wheth'r yer subscr'ption has been cancell'd.",
|
||||
"organization": "Organization",
|
||||
"giftASubscription": "Gift a Subscr'ption",
|
||||
"viewSubscriptions": "View Subscr'ptions",
|
||||
@@ -162,13 +162,13 @@
|
||||
"mysterySet202004": "Mighty Monarch Set",
|
||||
"mysterySet202002": "Stylish Sweetheart Set",
|
||||
"cancelSubAlternatives": "If ye're havin' technical problems or Habitica doesn't seem t' be working out fer ye, please consider <a href='mailto:admin@habitica.com'>contacting us</a>. We want t' help ye get th' most from Habitica.",
|
||||
"cancelYourSubscription": "Cancel yer subscription?",
|
||||
"cancelYourSubscription": "Cancel yer subscr'ption?",
|
||||
"readyToResubscribe": "Are ye ready t' resubscribe?",
|
||||
"needToUpdateCard": "Need t' update yer card?",
|
||||
"subMonths": "Sub Months",
|
||||
"subscriptionStats": "Subscription Stats",
|
||||
"subscriptionInactiveDate": "Yer subscription benefits will become inactive on <strong><%= date %></strong>",
|
||||
"subscriptionCanceled": "Yer subscription be canceled",
|
||||
"subscriptionStats": "Subscr'ption Stats",
|
||||
"subscriptionInactiveDate": "Yer subscr'ption benefits will become inactive on <strong><%= date %></strong>",
|
||||
"subscriptionCanceled": "Yer subscr'ption be cancel'd",
|
||||
"dropCapSubs": "Habitica subscribers can find double th' random items each day an' receive monthly mystery items!",
|
||||
"lookingForMoreItems": "Lookin' fer More Items?",
|
||||
"dropCapLearnMore": "Learn more about Habitica’s drop system",
|
||||
@@ -180,7 +180,7 @@
|
||||
"subscribersReceiveBenefits": "Subscribers receive these useful benefits!",
|
||||
"usuallyGems": "Usually <%= originalGems %>",
|
||||
"supportHabitica": "Support Habitica",
|
||||
"subCanceledTitle": "Subscription Cancel'd",
|
||||
"subCanceledTitle": "Subscr'ption Cancel'd",
|
||||
"backgroundAlreadyOwned": "Ba'groun' already own'd.",
|
||||
"mysterySet202012": "Frostfire Phoenix Set",
|
||||
"mysterySet202007": "Outstandin' Orca Set",
|
||||
|
||||
@@ -71,13 +71,13 @@
|
||||
"editTags2": "Edit Tags",
|
||||
"toRequired": "Ye must supply a \"t'\" property",
|
||||
"startDate": "Start Date",
|
||||
"streaks": "Streak Bounties",
|
||||
"streakName": "<%= count %> Streak Bounties",
|
||||
"streaks": "Streak Medals",
|
||||
"streakName": "<%= count %> Streak Medals",
|
||||
"streakText": "Has performed <%= count %> 21-day streaks on Dailies",
|
||||
"streakSingular": "Streak'r",
|
||||
"streakSingularText": "Has performed a 21-day streak on a Daily",
|
||||
"perfectName": "<%= count %> Perfect Days",
|
||||
"perfectText": "Completed all active Dailies on <%= count %> days. Wit' this bounty ye get a +level/2 buff t' all Stats fer th' next day. Levels greater than 100 don't 'ave any additional effects on buffs.",
|
||||
"perfectText": "Complet'd all active Dailies on <%= count %> days. Wit' this medal ye git a +level/2 buff t' all Stats fer th' next day. Levels greater than 100 don't 'ave any additional effects on buffs.",
|
||||
"perfectSingular": "Perfect Day",
|
||||
"perfectSingularText": "Completed all active Dailies in one day. Wit' this achievement, ye get a +level/2 buff t' all Stats fer th' next day. Levels greater than 100 don't 'ave any additional effects on buffs.",
|
||||
"fortifyName": "Fortifyin' Potion",
|
||||
|
||||