mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-13 15:38:59 +00:00
Merge branch 'release' into develop
This commit is contained in:
commit
b4cbcb172b
160 changed files with 2075 additions and 368 deletions
|
|
@ -15,12 +15,12 @@ ENV STRIPE_PUB_KEY pk_85fQ0yMECHNfHTSsZoxZXlPSwSNfA
|
||||||
# The used solution is suggested here https://github.com/npm/npm/issues/16807#issuecomment-313591975
|
# The used solution is suggested here https://github.com/npm/npm/issues/16807#issuecomment-313591975
|
||||||
RUN yarn global add npm@5
|
RUN yarn global add npm@5
|
||||||
# Install global packages
|
# Install global packages
|
||||||
RUN npm install -g gulp mocha
|
RUN npm install -g gulp-cli mocha
|
||||||
|
|
||||||
# Clone Habitica repo and install dependencies
|
# Clone Habitica repo and install dependencies
|
||||||
RUN mkdir -p /usr/src/habitrpg
|
RUN mkdir -p /usr/src/habitrpg
|
||||||
WORKDIR /usr/src/habitrpg
|
WORKDIR /usr/src/habitrpg
|
||||||
RUN git clone --branch v4.25.0 https://github.com/HabitRPG/habitica.git /usr/src/habitrpg
|
RUN git clone --branch v4.26.0 https://github.com/HabitRPG/habitica.git /usr/src/habitrpg
|
||||||
RUN npm install
|
RUN npm install
|
||||||
RUN gulp build:prod --force
|
RUN gulp build:prod --force
|
||||||
|
|
||||||
|
|
|
||||||
2
package-lock.json
generated
2
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "habitica",
|
"name": "habitica",
|
||||||
"version": "4.26.0",
|
"version": "4.26.1",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "habitica",
|
"name": "habitica",
|
||||||
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
|
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
|
||||||
"version": "4.26.0",
|
"version": "4.26.1",
|
||||||
"main": "./website/server/index.js",
|
"main": "./website/server/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@slack/client": "^3.8.1",
|
"@slack/client": "^3.8.1",
|
||||||
|
|
|
||||||
|
|
@ -197,8 +197,14 @@ export default {
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
showMemberModal (memberId) {
|
async showMemberModal (memberId) {
|
||||||
const profile = this.cachedProfileData[memberId];
|
let profile = this.cachedProfileData[memberId];
|
||||||
|
|
||||||
|
if (!profile._id) {
|
||||||
|
const result = await this.$store.dispatch('members:fetchMember', { memberId });
|
||||||
|
this.cachedProfileData[memberId] = result.data.data;
|
||||||
|
profile = result.data.data;
|
||||||
|
}
|
||||||
|
|
||||||
// Open the modal only if the data is available
|
// Open the modal only if the data is available
|
||||||
if (profile && !profile.rejected) {
|
if (profile && !profile.rejected) {
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Излейте това върху яйце и от него ще се излюпи любимец с(ъс) <%= potText(locale) %>.",
|
"hatchingPotionNotes": "Излейте това върху яйце и от него ще се излюпи любимец с(ъс) <%= potText(locale) %>.",
|
||||||
"premiumPotionAddlNotes": "Не може да се използва върху яйца за любимци от мисии.",
|
"premiumPotionAddlNotes": "Не може да се използва върху яйца за любимци от мисии.",
|
||||||
"foodMeat": "Месо",
|
"foodMeat": "Месо",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Мляко",
|
"foodMilk": "Мляко",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Картоф",
|
"foodPotatoe": "Картоф",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Ягода",
|
"foodStrawberry": "Ягода",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Шоколад",
|
"foodChocolate": "Шоколад",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Риба",
|
"foodFish": "Риба",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Развалено месо",
|
"foodRottenMeat": "Развалено месо",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Розов захарен памук",
|
"foodCottonCandyPink": "Розов захарен памук",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Син захарен памук",
|
"foodCottonCandyBlue": "Син захарен памук",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Мед",
|
"foodHoney": "Мед",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Костена торта",
|
"foodCakeSkeleton": "Костена торта",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Обикновена торта",
|
"foodCakeBase": "Обикновена торта",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Синя захарна торта",
|
"foodCakeCottonCandyBlue": "Синя захарна торта",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Розова захарна торта",
|
"foodCakeCottonCandyPink": "Розова захарна торта",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Шоколадова торта",
|
"foodCakeShade": "Шоколадова торта",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Торта с крем",
|
"foodCakeWhite": "Торта с крем",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Медена торта",
|
"foodCakeGolden": "Медена торта",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Развалена торта",
|
"foodCakeZombie": "Развалена торта",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Пясъчна торта",
|
"foodCakeDesert": "Пясъчна торта",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Ягодова торта",
|
"foodCakeRed": "Ягодова торта",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Костен бонбон",
|
"foodCandySkeleton": "Костен бонбон",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Обикновен бонбон",
|
"foodCandyBase": "Обикновен бонбон",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Кисел син бонбон",
|
"foodCandyCottonCandyBlue": "Кисел син бонбон",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Кисел розов бонбон",
|
"foodCandyCottonCandyPink": "Кисел розов бонбон",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Шоколадов бонбон",
|
"foodCandyShade": "Шоколадов бонбон",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Ванилов бонбон",
|
"foodCandyWhite": "Ванилов бонбон",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Меден бонбон",
|
"foodCandyGolden": "Меден бонбон",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Развален бонбон",
|
"foodCandyZombie": "Развален бонбон",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Пясъчен бонбон",
|
"foodCandyDesert": "Пясъчен бонбон",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Канелен бонбон",
|
"foodCandyRed": "Канелен бонбон",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Седло",
|
"foodSaddleText": "Седло",
|
||||||
"foodSaddleNotes": "Моментално превръща един от любимците Ви в превоз.",
|
"foodSaddleNotes": "Моментално превръща един от любимците Ви в превоз.",
|
||||||
"foodSaddleSellWarningNote": "Хей! Това е доста полезен предмет! Знаете ли как да използвате седло за любимците си?",
|
"foodSaddleSellWarningNote": "Хей! Това е доста полезен предмет! Знаете ли как да използвате седло за любимците си?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Прът на ски-убиец",
|
"weaponSpecialSkiText": "Прът на ски-убиец",
|
||||||
"weaponSpecialSkiNotes": "Оръжие, способно да заличава орди от врагове! Също помага на носещия го да прави много добри обратни завои. Увеличава силата с <%= str %>. Ограничена серия: Зимна екипировка 2013-2014 г.",
|
"weaponSpecialSkiNotes": "Оръжие, способно да заличава орди от врагове! Също помага на носещия го да прави много добри обратни завои. Увеличава силата с <%= str %>. Ограничена серия: Зимна екипировка 2013-2014 г.",
|
||||||
"weaponSpecialCandycaneText": "Бонбонен скиптър",
|
"weaponSpecialCandycaneText": "Бонбонен скиптър",
|
||||||
"weaponSpecialCandycaneNotes": "Могъщ магьоснически скиптър. Могъщо ВКУСЕН! Оръжие за две ръце. Увеличава интелигентността с <%= int %> и усета с <%= per %>. Ограничена серия: Зимна екипировка 2013-2014 г.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Снежинкова магическа пръчка",
|
"weaponSpecialSnowflakeText": "Снежинкова магическа пръчка",
|
||||||
"weaponSpecialSnowflakeNotes": "Тази магическа пръчица искри с безгранична лековита сила. Увеличава интелигентността с <%= int %>. Ограничена серия: Зимна екипировка 2013-2014 г.",
|
"weaponSpecialSnowflakeNotes": "Тази магическа пръчица искри с безгранична лековита сила. Увеличава интелигентността с <%= int %>. Ограничена серия: Зимна екипировка 2013-2014 г.",
|
||||||
"weaponSpecialSpringRogueText": "Ноктоподобни куки",
|
"weaponSpecialSpringRogueText": "Ноктоподобни куки",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Маскарадна маска на паун",
|
"eyewearMystery301703Text": "Маскарадна маска на паун",
|
||||||
"eyewearMystery301703Notes": "Идеална за изискани маскени балове или за промъкване през особено добре издокарана тълпа. Не променя показателите. Предмет за абонати: март 3017 г.",
|
"eyewearMystery301703Notes": "Идеална за изискани маскени балове или за промъкване през особено добре издокарана тълпа. Не променя показателите. Предмет за абонати: март 3017 г.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Маска на чумен лекар",
|
"eyewearArmoirePlagueDoctorMaskText": "Маска на чумен лекар",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Съвсем истинска маска, носена от лекарите, които са се борили срещу чумата на протакането. Не променя показателите. Омагьосан гардероб: комплект „Чумен лекар“ (предмет 2 от 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Съвсем истинска маска, носена от лекарите, които са се борили срещу чумата на протакането. Не променя показателите. Омагьосан гардероб: комплект „Чумен лекар“ (предмет 2 от 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Помогнал(а) за победата над Озадачителя по време на Буйното пролетно събитие — 2016 г.",
|
"achievementBewilderText": "Помогнал(а) за победата над Озадачителя по време на Буйното пролетно събитие — 2016 г.",
|
||||||
"checkOutProgress": "Вижте напредъка ми в Хабитика!",
|
"checkOutProgress": "Вижте напредъка ми в Хабитика!",
|
||||||
"cards": "Картички",
|
"cards": "Картички",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "Получихте <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "Получихте <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Честитка",
|
"greetingCard": "Честитка",
|
||||||
"greetingCardExplanation": "И двамата получихте постижението „Весел другар“!",
|
"greetingCardExplanation": "И двамата получихте постижението „Весел другар“!",
|
||||||
|
|
|
||||||
|
|
@ -125,7 +125,7 @@
|
||||||
"dateEndOctober": "31 октомври",
|
"dateEndOctober": "31 октомври",
|
||||||
"dateEndNovember": "30 ноември",
|
"dateEndNovember": "30 ноември",
|
||||||
"dateEndJanuary": "31 януари",
|
"dateEndJanuary": "31 януари",
|
||||||
"dateEndFebruary": "February 28",
|
"dateEndFebruary": "28 февруари",
|
||||||
"winterPromoGiftHeader": "ПОДАРЕТЕ АБОНАМЕНТ И ЩЕ ПОЛУЧИТЕ ОЩЕ ЕДИН БЕЗПЛАТНО!",
|
"winterPromoGiftHeader": "ПОДАРЕТЕ АБОНАМЕНТ И ЩЕ ПОЛУЧИТЕ ОЩЕ ЕДИН БЕЗПЛАТНО!",
|
||||||
"winterPromoGiftDetails1": "Само до 12 януари, ако подарите абонамент на някого, ще получите същия и за себе си безплатно!",
|
"winterPromoGiftDetails1": "Само до 12 януари, ако подарите абонамент на някого, ще получите същия и за себе си безплатно!",
|
||||||
"winterPromoGiftDetails2": "Моля, имайте предвид, че ако Вие или получателят на подаръка Ви вече имате повтарящ се абонамент, подареният ще започне след като текущият бъде прекратен или изтече. Благодарим Ви за подкрепата! <3",
|
"winterPromoGiftDetails2": "Моля, имайте предвид, че ако Вие или получателят на подаръка Ви вече имате повтарящ се абонамент, подареният ще започне след като текущият бъде прекратен или изтече. Благодарим Ви за подкрепата! <3",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Не можете да храните този любимец.",
|
"messageCannotFeedPet": "Не можете да храните този любимец.",
|
||||||
"messageAlreadyMount": "Вече имате този превоз. Опитайте да храните друг любимец.",
|
"messageAlreadyMount": "Вече имате този превоз. Опитайте да храните друг любимец.",
|
||||||
"messageEvolve": "Вие укротихте <%= egg %>, хайде да пояздим!",
|
"messageEvolve": "Вие укротихте <%= egg %>, хайде да пояздим!",
|
||||||
"messageLikesFood": "Вие дадохте <%= foodText %> на <%= egg %>. <%= egg %> харесва това!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "Вие дадохте <%= foodText %> на <%= egg %>. <%= egg %> изобщо не харесва това!",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Закупихте <%= itemText %>",
|
"messageBought": "Закупихте <%= itemText %>",
|
||||||
"messageEquipped": "Екипирахте <%= itemText %>.",
|
"messageEquipped": "Екипирахте <%= itemText %>.",
|
||||||
"messageUnEquipped": "Разекипирахте <%= itemText %>.",
|
"messageUnEquipped": "Разекипирахте <%= itemText %>.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Няма достатъчно злато",
|
"messageNotEnoughGold": "Няма достатъчно злато",
|
||||||
"messageTwoHandedEquip": "Използването на <%= twoHandedText %> изисква две ръце, така че разекипирахте предмета <%= offHandedText %>.",
|
"messageTwoHandedEquip": "Използването на <%= twoHandedText %> изисква две ръце, така че разекипирахте предмета <%= offHandedText %>.",
|
||||||
"messageTwoHandedUnequip": "Използването на <%= twoHandedText %> изисква две ръце, така че го/я разекипирахте, когато се въоръжихте с <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "Използването на <%= twoHandedText %> изисква две ръце, така че го/я разекипирахте, когато се въоръжихте с <%= offHandedText %>.",
|
||||||
"messageDropFood": "Намерихте <%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Намерихте яйце на <%= dropText %>!",
|
"messageDropEgg": "Намерихте яйце на <%= dropText %>!",
|
||||||
"messageDropPotion": "Намерихте излюпваща отвара с(ъс) <%= dropText %>!",
|
"messageDropPotion": "Намерихте излюпваща отвара с(ъс) <%= dropText %>!",
|
||||||
"messageDropQuest": "Намерихте мисия!",
|
"messageDropQuest": "Намерихте мисия!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Здравето Ви вече е пълно.",
|
"messageHealthAlreadyMax": "Здравето Ви вече е пълно.",
|
||||||
"messageHealthAlreadyMin": "О, не! Нямате здраве, така че вече е твърде късно да си купите лечебна отвара, но не се притеснявайте — можете да се преродите!",
|
"messageHealthAlreadyMin": "О, не! Нямате здраве, така че вече е твърде късно да си купите лечебна отвара, но не се притеснявайте — можете да се преродите!",
|
||||||
"armoireEquipment": "<%= image %> Намерихте рядък предмет в гардероба: <%= dropText %>! Страхотно!",
|
"armoireEquipment": "<%= image %> Намерихте рядък предмет в гардероба: <%= dropText %>! Страхотно!",
|
||||||
"armoireFood": "<%= image %> Тършувате из гардероба и намирате <%= dropText %>. Какво ли прави това там?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Сборвате се с гардероба и получавате опит. Така му се пада!",
|
"armoireExp": "Сборвате се с гардероба и получавате опит. Така му се пада!",
|
||||||
"messageInsufficientGems": "Нямате достатъчно диаманти!",
|
"messageInsufficientGems": "Нямате достатъчно диаманти!",
|
||||||
"messageAuthPasswordMustMatch": ":password и :confirmPassword не съвпадат",
|
"messageAuthPasswordMustMatch": ":password и :confirmPassword не съвпадат",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Не притежавате този любимец.",
|
"petNotOwned": "Не притежавате този любимец.",
|
||||||
"mountNotOwned": "Не притежавате този прево.",
|
"mountNotOwned": "Не притежавате този прево.",
|
||||||
"earnedCompanion": "Благодарение на продуктивността си се сдобихте с нов спътник. Хранете го, за да порасне!",
|
"earnedCompanion": "Благодарение на продуктивността си се сдобихте с нов спътник. Хранете го, за да порасне!",
|
||||||
"feedPet": "Искате ли да дадете <%= text %> на <%= name %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Искате ли да оседлаете <%= pet %>?",
|
"useSaddle": "Искате ли да оседлаете <%= pet %>?",
|
||||||
"raisedPet": "Вие отгледахте <%= pet %>!",
|
"raisedPet": "Вие отгледахте <%= pet %>!",
|
||||||
"earnedSteed": "Изпълнявайки задачите си, Вие спечелихте верен жребец!",
|
"earnedSteed": "Изпълнявайки задачите си, Вие спечелихте верен жребец!",
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@
|
||||||
"autoEquipPopoverText": "Zvol tuto možnost pro automatické nasazení koupeného vybavení.",
|
"autoEquipPopoverText": "Zvol tuto možnost pro automatické nasazení koupeného vybavení.",
|
||||||
"costumeDisabled": "Vypnul jsi svůj kostým",
|
"costumeDisabled": "Vypnul jsi svůj kostým",
|
||||||
"gearAchievement": "Získal jsi Ocenění \"Maximální Vybavení\" za vylepšení výbavy na maximální set vybavení pro povolání! Získal jsi následující kompletní sety:",
|
"gearAchievement": "Získal jsi Ocenění \"Maximální Vybavení\" za vylepšení výbavy na maximální set vybavení pro povolání! Získal jsi následující kompletní sety:",
|
||||||
"moreGearAchievements": "To attain more Ultimate Gear badges, change classes on <a href='/user/settings/site' target='_blank'>the Settings > Site page</a> and buy your new class's gear!",
|
"moreGearAchievements": "Abys získal více ocenění Ultimátního Vybavení, změň své povolání v <a href='/user/settings/site' target='_blank'>Nastavení - Stránka</a>, a nakup si vybavení pro své nové povolání!",
|
||||||
"armoireUnlocked": "Také jsi odemkl <strong>Začarovanou almaru!</strong> Klikni na Odměnu začarované almary a náhodně získej speciální Vybavení! Také ti může náhodně dát Zkušenostní body nebo jídlo.",
|
"armoireUnlocked": "Také jsi odemkl <strong>Začarovanou almaru!</strong> Klikni na Odměnu začarované almary a náhodně získej speciální Vybavení! Také ti může náhodně dát Zkušenostní body nebo jídlo.",
|
||||||
"ultimGearName": "Ultimátní výbava - <%= ultClass %>",
|
"ultimGearName": "Ultimátní výbava - <%= ultClass %>",
|
||||||
"ultimGearText": "Vylepšil zbraň a brnění na maximální úroveň pro povolání <%= ultClass %> .",
|
"ultimGearText": "Vylepšil zbraň a brnění na maximální úroveň pro povolání <%= ultClass %> .",
|
||||||
|
|
@ -98,7 +98,7 @@
|
||||||
"allocatePerPop": "Přidat bod k vnímání",
|
"allocatePerPop": "Přidat bod k vnímání",
|
||||||
"allocateInt": "Body přiřazené k Inteligenci:",
|
"allocateInt": "Body přiřazené k Inteligenci:",
|
||||||
"allocateIntPop": "Přidat bod k inteligenci",
|
"allocateIntPop": "Přidat bod k inteligenci",
|
||||||
"noMoreAllocate": "Now that you've hit level 100, you won't gain any more Stat Points. You can continue leveling up, or start a new adventure at level 1 by using the <a href='http://habitica.wikia.com/wiki/Orb_of_Rebirth' target='_blank'>Orb of Rebirth</a>, now available for free in the Market.",
|
"noMoreAllocate": "Nyní, když jsi dosáhl úrovně 100, už nebudeš dostávat žádné body atributů. Můžeš pokračovat v dosahování dalších úrovní, nebo můžeš začít nové dobrodružství na úrovni 1, když použiješ <a href='http://habitica.wikia.com/wiki/Orb_of_Rebirth' target='_blank'>Orb Znovuzrození</a>, který nyní najdeš zdarma na Trhu.",
|
||||||
"stats": "Statistiky",
|
"stats": "Statistiky",
|
||||||
"achievs": "Úspěchy",
|
"achievs": "Úspěchy",
|
||||||
"strength": "Síla",
|
"strength": "Síla",
|
||||||
|
|
@ -139,7 +139,7 @@
|
||||||
"classAllocation": "Přiřadit body na základě povolání",
|
"classAllocation": "Přiřadit body na základě povolání",
|
||||||
"classAllocationPop": "Přiřadí více bodů k vlastnostem, které jsou důležité pro tvé povolání.",
|
"classAllocationPop": "Přiřadí více bodů k vlastnostem, které jsou důležité pro tvé povolání.",
|
||||||
"taskAllocation": "Přiřadit body na základě aktivity v úkolech",
|
"taskAllocation": "Přiřadit body na základě aktivity v úkolech",
|
||||||
"taskAllocationPop": "Assigns Points based on the Strength, Intelligence, Constitution, and Perception categories associated with the tasks you complete.",
|
"taskAllocationPop": "Přiřadí body podle Fyzické (síla), Mentální (Inteligence), Sociální (Obrana) a Další (Vnímání) kategorie přiřazené k úkolům, které splníš.",
|
||||||
"distributePoints": "Přiřaď nevyužité body.",
|
"distributePoints": "Přiřaď nevyužité body.",
|
||||||
"distributePointsPop": "Přiřadí všechny nepřidělené body v závislosti na zvoleném režimu přidělování.",
|
"distributePointsPop": "Přiřadí všechny nepřidělené body v závislosti na zvoleném režimu přidělování.",
|
||||||
"warriorText": "Válečníci získávají lepší \"kritické zásahy\", které náhodně dávají bonusové zlaťáky a zkušenosti a zvyšují šanci na nalezení předmětů při splnění úkolu. Také způsobují větší újmu příšerám. Hraj za válečníka, pokud tě motivují nepředvídatelné odměny nebo to chceš pořádně nandat příšerám při Výpravách!",
|
"warriorText": "Válečníci získávají lepší \"kritické zásahy\", které náhodně dávají bonusové zlaťáky a zkušenosti a zvyšují šanci na nalezení předmětů při splnění úkolu. Také způsobují větší újmu příšerám. Hraj za válečníka, pokud tě motivují nepředvídatelné odměny nebo to chceš pořádně nandat příšerám při Výpravách!",
|
||||||
|
|
@ -151,7 +151,7 @@
|
||||||
"optOutOfPMs": "Odhlásit",
|
"optOutOfPMs": "Odhlásit",
|
||||||
"chooseClass": "Vyber si své povolání",
|
"chooseClass": "Vyber si své povolání",
|
||||||
"chooseClassLearnMarkdown": "[Zjisti více o systému povolání Habitice](http://habitica.wikia.com/wiki/Class_System)",
|
"chooseClassLearnMarkdown": "[Zjisti více o systému povolání Habitice](http://habitica.wikia.com/wiki/Class_System)",
|
||||||
"optOutOfClassesText": "Can't be bothered with classes? Want to choose later? Opt out - you'll be a warrior with no special abilities. You can read about the class system later on the wiki and enable classes at any time under User Icon > Settings.",
|
"optOutOfClassesText": "Nechceš se obtěžovat s povoláními? Chceš se rozhodnout později? Nech to - budeš válečníkem bez speciálních schopností. O systému povolání si můžeš přečíst na wiki a povolit si povolání kdykoliv v Uživatel -> Statistiky.",
|
||||||
"selectClass": "Vyber <%= heroClass %>",
|
"selectClass": "Vyber <%= heroClass %>",
|
||||||
"select": "Vybrat",
|
"select": "Vybrat",
|
||||||
"stealth": "Lstivost",
|
"stealth": "Lstivost",
|
||||||
|
|
@ -200,7 +200,7 @@
|
||||||
"showQuickAllocation": "Zobrazit přidělení vlastnostních bodů",
|
"showQuickAllocation": "Zobrazit přidělení vlastnostních bodů",
|
||||||
"hideQuickAllocation": "Skrýt přidělení vlastnostních bodů",
|
"hideQuickAllocation": "Skrýt přidělení vlastnostních bodů",
|
||||||
"quickAllocationLevelPopover": "S každou další úrovní získáš jeden bod, který můžeš přiřadit k libovolné vlastnosti. Přiřadit body můžeš buď manuálně anebo můžeš nechat hru rozhodnout za tebe na základě některé z možností Automatického Přiřazení, které nalezneš v Uživatel -> Statistiky.",
|
"quickAllocationLevelPopover": "S každou další úrovní získáš jeden bod, který můžeš přiřadit k libovolné vlastnosti. Přiřadit body můžeš buď manuálně anebo můžeš nechat hru rozhodnout za tebe na základě některé z možností Automatického Přiřazení, které nalezneš v Uživatel -> Statistiky.",
|
||||||
"invalidAttribute": "\"<%= attr %>\" is not a valid Stat.",
|
"invalidAttribute": "\"<%= attr %>\" není platný atribut.",
|
||||||
"notEnoughAttrPoints": "Nemáš dostatek vlastnostních bodů",
|
"notEnoughAttrPoints": "Nemáš dostatek vlastnostních bodů",
|
||||||
"style": "Styl",
|
"style": "Styl",
|
||||||
"facialhair": "Vousy",
|
"facialhair": "Vousy",
|
||||||
|
|
@ -219,5 +219,5 @@
|
||||||
"offHand": "Off-Hand",
|
"offHand": "Off-Hand",
|
||||||
"pointsAvailable": "Dostupné body",
|
"pointsAvailable": "Dostupné body",
|
||||||
"pts": "pts",
|
"pts": "pts",
|
||||||
"statsObjectRequired": "Stats update is required"
|
"statsObjectRequired": "Je požadována aktualizace atributů"
|
||||||
}
|
}
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Nalij ho na vejce a vylíhne se ti <%= potText(locale) %> mazlíček.",
|
"hatchingPotionNotes": "Nalij ho na vejce a vylíhne se ti <%= potText(locale) %> mazlíček.",
|
||||||
"premiumPotionAddlNotes": "Nelze použít na vejce mazlíčků z výprav.",
|
"premiumPotionAddlNotes": "Nelze použít na vejce mazlíčků z výprav.",
|
||||||
"foodMeat": "Maso",
|
"foodMeat": "Maso",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Mléko",
|
"foodMilk": "Mléko",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Brambor",
|
"foodPotatoe": "Brambor",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Jahoda",
|
"foodStrawberry": "Jahoda",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Čokoláda",
|
"foodChocolate": "Čokoláda",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Ryba",
|
"foodFish": "Ryba",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Zkažené maso",
|
"foodRottenMeat": "Zkažené maso",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Růžová cukrová vata",
|
"foodCottonCandyPink": "Růžová cukrová vata",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Modrá cukrová vata",
|
"foodCottonCandyBlue": "Modrá cukrová vata",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Med",
|
"foodHoney": "Med",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Dort z kostí",
|
"foodCakeSkeleton": "Dort z kostí",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Základní dort",
|
"foodCakeBase": "Základní dort",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Modrý bonbónový dort",
|
"foodCakeCottonCandyBlue": "Modrý bonbónový dort",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Růžový bonbónový dort",
|
"foodCakeCottonCandyPink": "Růžový bonbónový dort",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Čokoládový dort",
|
"foodCakeShade": "Čokoládový dort",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Krémový dort",
|
"foodCakeWhite": "Krémový dort",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Medový dort",
|
"foodCakeGolden": "Medový dort",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Zkažený dort",
|
"foodCakeZombie": "Zkažený dort",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Písečný dort",
|
"foodCakeDesert": "Písečný dort",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Jahodový dort",
|
"foodCakeRed": "Jahodový dort",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Kostěné cukrátko",
|
"foodCandySkeleton": "Kostěné cukrátko",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Základní cukrátko",
|
"foodCandyBase": "Základní cukrátko",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Kyselé modré cukrátko",
|
"foodCandyCottonCandyBlue": "Kyselé modré cukrátko",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Kyselé růžové cukrátko",
|
"foodCandyCottonCandyPink": "Kyselé růžové cukrátko",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Čokoládové cukrátko",
|
"foodCandyShade": "Čokoládové cukrátko",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Vanilkové cukrátko",
|
"foodCandyWhite": "Vanilkové cukrátko",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Medové cukrátko",
|
"foodCandyGolden": "Medové cukrátko",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Zkažené cukrátko",
|
"foodCandyZombie": "Zkažené cukrátko",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Písečné cukrátko",
|
"foodCandyDesert": "Písečné cukrátko",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Skořicové cukrátko",
|
"foodCandyRed": "Skořicové cukrátko",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Sedlo",
|
"foodSaddleText": "Sedlo",
|
||||||
"foodSaddleNotes": "Okamžitě zkrotí jednoho z tvých mazlíčků, aby sis ho mohl osedlat.",
|
"foodSaddleNotes": "Okamžitě zkrotí jednoho z tvých mazlíčků, aby sis ho mohl osedlat.",
|
||||||
"foodSaddleSellWarningNote": "Hej! Toto je fakt užitečná věc! Jsi seznámen s tím, jak použít pro tvé mazlíčky použít sedlo?",
|
"foodSaddleSellWarningNote": "Hej! Toto je fakt užitečná věc! Jsi seznámen s tím, jak použít pro tvé mazlíčky použít sedlo?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Lyžovražedná hůl",
|
"weaponSpecialSkiText": "Lyžovražedná hůl",
|
||||||
"weaponSpecialSkiNotes": "Zbraň schopná ničení hord nepřátel! Také pomáhá svému uživateli dělat pěkně souběžné obraty. Zvyšuje sílu o <%= str %>. Limitovaná edice Zimního vybavení 2013-2014!",
|
"weaponSpecialSkiNotes": "Zbraň schopná ničení hord nepřátel! Také pomáhá svému uživateli dělat pěkně souběžné obraty. Zvyšuje sílu o <%= str %>. Limitovaná edice Zimního vybavení 2013-2014!",
|
||||||
"weaponSpecialCandycaneText": "Cukrátková hůl",
|
"weaponSpecialCandycaneText": "Cukrátková hůl",
|
||||||
"weaponSpecialCandycaneNotes": "Mocná kouzelnická hůl. Silně VYNIKAJÍCÍ, máme na mysli! Zbraň pro obě ruce. Zvyšuje Inteligenci o <%= int %> a Vnímání o <%= per %>. Limitovaná edice Zimního vybavení 2013-2014!",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Vločková hůlka",
|
"weaponSpecialSnowflakeText": "Vločková hůlka",
|
||||||
"weaponSpecialSnowflakeNotes": "Tato hůlka září nekonečnou léčebnou silou. Zvyšuje Inteligenci o <%= int %>. Limitovaná edice Zimního vybavení 2013-2014!",
|
"weaponSpecialSnowflakeNotes": "Tato hůlka září nekonečnou léčebnou silou. Zvyšuje Inteligenci o <%= int %>. Limitovaná edice Zimního vybavení 2013-2014!",
|
||||||
"weaponSpecialSpringRogueText": "Hákové drápy",
|
"weaponSpecialSpringRogueText": "Hákové drápy",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
||||||
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Maska Morového Lékaře",
|
"eyewearArmoirePlagueDoctorMaskText": "Maska Morového Lékaře",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Autentická maska, která chránila doktory bojující s Morem Otálení! Nepřináší žádné výhody. Začarovaná almara: Set Morových Lékařů (Předmět 2 ze 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Autentická maska, která chránila doktory bojující s Morem Otálení! Nepřináší žádné výhody. Začarovaná almara: Set Morových Lékařů (Předmět 2 ze 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Přispěl k poražení Be-Wildera během akce Jarního Hodu 2016!",
|
"achievementBewilderText": "Přispěl k poražení Be-Wildera během akce Jarního Hodu 2016!",
|
||||||
"checkOutProgress": "Koukejte, jaký pokrok se mi povedl v zemi Habitica!",
|
"checkOutProgress": "Koukejte, jaký pokrok se mi povedl v zemi Habitica!",
|
||||||
"cards": "Karty",
|
"cards": "Karty",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Blahopřání",
|
"greetingCard": "Blahopřání",
|
||||||
"greetingCardExplanation": "Oba obdržíte ocenění Veselého kámoše!",
|
"greetingCardExplanation": "Oba obdržíte ocenění Veselého kámoše!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Tohoto mazlíčka nemůžeš nakrmit.",
|
"messageCannotFeedPet": "Tohoto mazlíčka nemůžeš nakrmit.",
|
||||||
"messageAlreadyMount": "Toto zvíře už ve stáji máš. Zkus nakrmit jiného mazlíčka.",
|
"messageAlreadyMount": "Toto zvíře už ve stáji máš. Zkus nakrmit jiného mazlíčka.",
|
||||||
"messageEvolve": "<%= egg %> už má na sobě sedlo, pojďme si zajezdit!",
|
"messageEvolve": "<%= egg %> už má na sobě sedlo, pojďme si zajezdit!",
|
||||||
"messageLikesFood": "Kdo by řekl, že <%= egg %> bude mít rád něco takového, jako je <%= foodText %>!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= foodText %> zdá se není pro zvířátko, jakým je <%= egg %>, žádnou pochoutkou.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "<%= itemText %>, koupeno",
|
"messageBought": "<%= itemText %>, koupeno",
|
||||||
"messageEquipped": "<%= itemText %> - nasazeno.",
|
"messageEquipped": "<%= itemText %> - nasazeno.",
|
||||||
"messageUnEquipped": "<%= itemText %> byl odebrán.",
|
"messageUnEquipped": "<%= itemText %> byl odebrán.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Nedostatek zlaťáků",
|
"messageNotEnoughGold": "Nedostatek zlaťáků",
|
||||||
"messageTwoHandedEquip": "<%= twoHandedText %> vyžaduje obě ruce, takže je <%= offHandedText %> zpět ve Vybavení.",
|
"messageTwoHandedEquip": "<%= twoHandedText %> vyžaduje obě ruce, takže je <%= offHandedText %> zpět ve Vybavení.",
|
||||||
"messageTwoHandedUnequip": "<%= twoHandedText %> vyžaduje dvě ruce, a tak je zpátky ve Vybavení a místo toho je v tvé ruce <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "<%= twoHandedText %> vyžaduje dvě ruce, a tak je zpátky ve Vybavení a místo toho je v tvé ruce <%= offHandedText %>.",
|
||||||
"messageDropFood": "Našel jsi<%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Našel jsi vajíčko, ze kterého se vylíhne <%= dropText %>!",
|
"messageDropEgg": "Našel jsi vajíčko, ze kterého se vylíhne <%= dropText %>!",
|
||||||
"messageDropPotion": "Našel jsi <%= dropText %> líhnoucí lektvar!",
|
"messageDropPotion": "Našel jsi <%= dropText %> líhnoucí lektvar!",
|
||||||
"messageDropQuest": "Našel jsi Výpravu!",
|
"messageDropQuest": "Našel jsi Výpravu!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Už teď máš plné zdraví.",
|
"messageHealthAlreadyMax": "Už teď máš plné zdraví.",
|
||||||
"messageHealthAlreadyMin": "Ach ne! Už nemáš žádné životy, takže je pozdě si kupovat lektvar života, ale neboj se - můžeš se oživit!",
|
"messageHealthAlreadyMin": "Ach ne! Už nemáš žádné životy, takže je pozdě si kupovat lektvar života, ale neboj se - můžeš se oživit!",
|
||||||
"armoireEquipment": "<%= image %> V almaře jsi našel kus vzácného vybavení ve Zbrojnici: <%= dropText %>! Skvělé!",
|
"armoireEquipment": "<%= image %> V almaře jsi našel kus vzácného vybavení ve Zbrojnici: <%= dropText %>! Skvělé!",
|
||||||
"armoireFood": "<%= image %> Prohledáváš almaru a nacházíš <%= dropText %>. Co to tu dělá?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Zápasíš s Almarou a získáváš zkušenost. To jsi jí to nandal!",
|
"armoireExp": "Zápasíš s Almarou a získáváš zkušenost. To jsi jí to nandal!",
|
||||||
"messageInsufficientGems": "Nedostatek drahokamů!",
|
"messageInsufficientGems": "Nedostatek drahokamů!",
|
||||||
"messageAuthPasswordMustMatch": ":password a :confirmPassword se neshodují",
|
"messageAuthPasswordMustMatch": ":password a :confirmPassword se neshodují",
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
"veteranWolf": "Vlk veterán",
|
"veteranWolf": "Vlk veterán",
|
||||||
"veteranTiger": "Tygr veterán",
|
"veteranTiger": "Tygr veterán",
|
||||||
"veteranLion": "Lev veterán",
|
"veteranLion": "Lev veterán",
|
||||||
"veteranBear": "Veteran Bear",
|
"veteranBear": "Medvěd Veterán",
|
||||||
"cerberusPup": "Štěně Kerbera",
|
"cerberusPup": "Štěně Kerbera",
|
||||||
"hydra": "Hydra",
|
"hydra": "Hydra",
|
||||||
"mantisShrimp": "Strašek paví",
|
"mantisShrimp": "Strašek paví",
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
"phoenix": "Fénix",
|
"phoenix": "Fénix",
|
||||||
"magicalBee": "Magická včela",
|
"magicalBee": "Magická včela",
|
||||||
"royalPurpleJackalope": "Královský Fialový Zajdalen",
|
"royalPurpleJackalope": "Královský Fialový Zajdalen",
|
||||||
"invisibleAether": "Invisible Aether",
|
"invisibleAether": "Neviditelný Éter",
|
||||||
"rarePetPop1": "Klikni na zlatou packu pro více informací o tom, jak získat toto vzácné zvíře za přispívání programu Habitica!",
|
"rarePetPop1": "Klikni na zlatou packu pro více informací o tom, jak získat toto vzácné zvíře za přispívání programu Habitica!",
|
||||||
"rarePetPop2": "Jak získat toto zvíře!",
|
"rarePetPop2": "Jak získat toto zvíře!",
|
||||||
"potion": "<%= potionType %> lektvar",
|
"potion": "<%= potionType %> lektvar",
|
||||||
|
|
@ -42,11 +42,11 @@
|
||||||
"noHatchingPotions": "Nemáš žádné líhnoucí lektvary.",
|
"noHatchingPotions": "Nemáš žádné líhnoucí lektvary.",
|
||||||
"inventoryText": "Po kliknutí na vejce se zeleně zvýrazní použitelné lektvary. Poté klikni na jeden z nich pro vylíhnutí mazlíčka. Pokud nejsou žádné lektvary zvýrazněny, klikni na vejce znovu pro zrušení jeho výběru a místo toho klikni nejprve na lektvar, aby se označila použitelná vejce. Také můžeš nechtěné nalezené předměty prodat obchodníku Alexanderovi.",
|
"inventoryText": "Po kliknutí na vejce se zeleně zvýrazní použitelné lektvary. Poté klikni na jeden z nich pro vylíhnutí mazlíčka. Pokud nejsou žádné lektvary zvýrazněny, klikni na vejce znovu pro zrušení jeho výběru a místo toho klikni nejprve na lektvar, aby se označila použitelná vejce. Také můžeš nechtěné nalezené předměty prodat obchodníku Alexanderovi.",
|
||||||
"haveHatchablePet": "You have a <%= potion %> hatching potion and <%= egg %> egg to hatch this pet! <b>Click</b> the paw print to hatch.",
|
"haveHatchablePet": "You have a <%= potion %> hatching potion and <%= egg %> egg to hatch this pet! <b>Click</b> the paw print to hatch.",
|
||||||
"quickInventory": "Quick Inventory",
|
"quickInventory": "Rychlý Inventář",
|
||||||
"foodText": "jídlo",
|
"foodText": "jídlo",
|
||||||
"food": "Jídlo a sedla",
|
"food": "Jídlo a sedla",
|
||||||
"noFoodAvailable": "You don't have any Food.",
|
"noFoodAvailable": "Nemáš žádné Jídlo.",
|
||||||
"noSaddlesAvailable": "You don't have any Saddles.",
|
"noSaddlesAvailable": "Nemáš žádná Sedla.",
|
||||||
"noFood": "Nemáš žádné jídlo ani žádná sedla.",
|
"noFood": "Nemáš žádné jídlo ani žádná sedla.",
|
||||||
"dropsExplanation": "Tyto předměty můžeš získat rychleji, když si je koupíš za Drahokamy, a nemusíš tak čekat, až je najdeš po splnění úkolu. <a href=\"http://habitica.wikia.com/wiki/Drops\">Zjisti více o nalézání předmětů.</a>",
|
"dropsExplanation": "Tyto předměty můžeš získat rychleji, když si je koupíš za Drahokamy, a nemusíš tak čekat, až je najdeš po splnění úkolu. <a href=\"http://habitica.wikia.com/wiki/Drops\">Zjisti více o nalézání předmětů.</a>",
|
||||||
"dropsExplanationEggs": "Použij Drahokamy, aby jsi získal vajíčka rychleji, jestli se ti nechce čekat než je dostaneš nebo se ti nechce opakovat výpravy aby jsi získal vejce z výprav. <a href=\"http://habitica.wikia.com/wiki/Drops\">Nauč se více o systému nálezů</a>",
|
"dropsExplanationEggs": "Použij Drahokamy, aby jsi získal vajíčka rychleji, jestli se ti nechce čekat než je dostaneš nebo se ti nechce opakovat výpravy aby jsi získal vejce z výprav. <a href=\"http://habitica.wikia.com/wiki/Drops\">Nauč se více o systému nálezů</a>",
|
||||||
|
|
@ -74,14 +74,14 @@
|
||||||
"useGems": "Pokud ti padlo oko na zvířátko a nemůžeš se dočkat až ti padne, použij Drahokamy v <strong> Inventář > Trh </strong> a kup si ho!",
|
"useGems": "Pokud ti padlo oko na zvířátko a nemůžeš se dočkat až ti padne, použij Drahokamy v <strong> Inventář > Trh </strong> a kup si ho!",
|
||||||
"hatchAPot": "Chceš vylíhnout nového <%= potion %><%= egg %>?",
|
"hatchAPot": "Chceš vylíhnout nového <%= potion %><%= egg %>?",
|
||||||
"hatchedPet": "Vylíhnul jsi nového <%= potion %><%= egg %>!",
|
"hatchedPet": "Vylíhnul jsi nového <%= potion %><%= egg %>!",
|
||||||
"hatchedPetGeneric": "You hatched a new pet!",
|
"hatchedPetGeneric": "Vylíhl se ti nový mazlíček!",
|
||||||
"hatchedPetHowToUse": "Visit the [Stable](/inventory/stable) to feed and equip your newest pet!",
|
"hatchedPetHowToUse": "Visit the [Stable](/inventory/stable) to feed and equip your newest pet!",
|
||||||
"displayNow": "Zobrazit hned",
|
"displayNow": "Zobrazit hned",
|
||||||
"displayLater": "Zobrazit později",
|
"displayLater": "Zobrazit později",
|
||||||
"petNotOwned": "Nevlastníte tohoto mazlíčka.",
|
"petNotOwned": "Nevlastníte tohoto mazlíčka.",
|
||||||
"mountNotOwned": "Nevlastníš toto jezdecké zvíře.",
|
"mountNotOwned": "Nevlastníš toto jezdecké zvíře.",
|
||||||
"earnedCompanion": "Za svou pracovitost sis vysloužil nového kamaráda. Nakrm ho, aby vyrostl!",
|
"earnedCompanion": "Za svou pracovitost sis vysloužil nového kamaráda. Nakrm ho, aby vyrostl!",
|
||||||
"feedPet": "Myslíš, že <%= name %> si pochutná na něčem takovém jako je <%= article %><%= text %> ?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Koho osedláme? Bude to <%= pet %>?",
|
"useSaddle": "Koho osedláme? Bude to <%= pet %>?",
|
||||||
"raisedPet": "Vychoval jsi svého <%= pet %>!",
|
"raisedPet": "Vychoval jsi svého <%= pet %>!",
|
||||||
"earnedSteed": "Za splnění úkolů sis vysloužil věrné zvíře k ježdění!",
|
"earnedSteed": "Za splnění úkolů sis vysloužil věrné zvíře k ježdění!",
|
||||||
|
|
@ -89,9 +89,9 @@
|
||||||
"rideLater": "Osedlat později",
|
"rideLater": "Osedlat později",
|
||||||
"petName": "<%= potion(locale) %> <%= egg(locale) %>",
|
"petName": "<%= potion(locale) %> <%= egg(locale) %>",
|
||||||
"mountName": "<%= potion(locale) %> <%= mount(locale) %>",
|
"mountName": "<%= potion(locale) %> <%= mount(locale) %>",
|
||||||
"keyToPets": "Key to the Pet Kennels",
|
"keyToPets": "Klíč ke Kotcům Mazlíčků",
|
||||||
"keyToPetsDesc": "Release all standard Pets so you can collect them again. (Quest Pets and rare Pets are not affected.)",
|
"keyToPetsDesc": "Release all standard Pets so you can collect them again. (Quest Pets and rare Pets are not affected.)",
|
||||||
"keyToMounts": "Key to the Mount Kennels",
|
"keyToMounts": "Klíč ke Kotcům Zvířat",
|
||||||
"keyToMountsDesc": "Release all standard Mounts so you can collect them again. (Quest Mounts and rare Mounts are not affected.)",
|
"keyToMountsDesc": "Release all standard Mounts so you can collect them again. (Quest Mounts and rare Mounts are not affected.)",
|
||||||
"keyToBoth": "Master Keys to the Kennels",
|
"keyToBoth": "Master Keys to the Kennels",
|
||||||
"keyToBothDesc": "Release all standard Pets and Mounts so you can collect them again. (Quest Pets/Mounts and rare Pets/Mounts are not affected.)",
|
"keyToBothDesc": "Release all standard Pets and Mounts so you can collect them again. (Quest Pets/Mounts and rare Pets/Mounts are not affected.)",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Hæld på et æg, og det vil udklække til et <%= potText(locale) %> kæledyr.",
|
"hatchingPotionNotes": "Hæld på et æg, og det vil udklække til et <%= potText(locale) %> kæledyr.",
|
||||||
"premiumPotionAddlNotes": "Kan ikke bruges på quest-æg.",
|
"premiumPotionAddlNotes": "Kan ikke bruges på quest-æg.",
|
||||||
"foodMeat": "Kød",
|
"foodMeat": "Kød",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Mælk",
|
"foodMilk": "Mælk",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Kartoffel",
|
"foodPotatoe": "Kartoffel",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Jordbær",
|
"foodStrawberry": "Jordbær",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Chokolade",
|
"foodChocolate": "Chokolade",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Fisk",
|
"foodFish": "Fisk",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Råddent kød",
|
"foodRottenMeat": "Råddent kød",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Lyserød Candyfloss",
|
"foodCottonCandyPink": "Lyserød Candyfloss",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Blå Candyfloss",
|
"foodCottonCandyBlue": "Blå Candyfloss",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Honning",
|
"foodHoney": "Honning",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Knogle-Kage",
|
"foodCakeSkeleton": "Knogle-Kage",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Almindelig Kage",
|
"foodCakeBase": "Almindelig Kage",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Blå Slikkage",
|
"foodCakeCottonCandyBlue": "Blå Slikkage",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Pink Slikkage",
|
"foodCakeCottonCandyPink": "Pink Slikkage",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Chokoladekage",
|
"foodCakeShade": "Chokoladekage",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Flødekage",
|
"foodCakeWhite": "Flødekage",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Honningkage",
|
"foodCakeGolden": "Honningkage",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Rådden Kage",
|
"foodCakeZombie": "Rådden Kage",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Sandkage",
|
"foodCakeDesert": "Sandkage",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Jordbærkage",
|
"foodCakeRed": "Jordbærkage",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Knogle-slik",
|
"foodCandySkeleton": "Knogle-slik",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Almindeligt slik",
|
"foodCandyBase": "Almindeligt slik",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Surt Blåt Slik",
|
"foodCandyCottonCandyBlue": "Surt Blåt Slik",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Surt Lyserødt Slik",
|
"foodCandyCottonCandyPink": "Surt Lyserødt Slik",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Chokoladeslik",
|
"foodCandyShade": "Chokoladeslik",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Vaniljeslik",
|
"foodCandyWhite": "Vaniljeslik",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Honningslik",
|
"foodCandyGolden": "Honningslik",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Råddent slik",
|
"foodCandyZombie": "Råddent slik",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Sandslik",
|
"foodCandyDesert": "Sandslik",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Kanelslik",
|
"foodCandyRed": "Kanelslik",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Sadel",
|
"foodSaddleText": "Sadel",
|
||||||
"foodSaddleNotes": "Gør øjeblikkeligt et af dine kæledyr til et ridedyr.",
|
"foodSaddleNotes": "Gør øjeblikkeligt et af dine kæledyr til et ridedyr.",
|
||||||
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Ski-morders Stang",
|
"weaponSpecialSkiText": "Ski-morders Stang",
|
||||||
"weaponSpecialSkiNotes": "Et våben, der kan smadre horder af fjender! Det hjælper også brugeren til at lave fine parallelle sving. Øger Styrke med <%= str %>. Specielt 2013-2014 Vinterudstyr.",
|
"weaponSpecialSkiNotes": "Et våben, der kan smadre horder af fjender! Det hjælper også brugeren til at lave fine parallelle sving. Øger Styrke med <%= str %>. Specielt 2013-2014 Vinterudstyr.",
|
||||||
"weaponSpecialCandycaneText": "Slikstok-stav",
|
"weaponSpecialCandycaneText": "Slikstok-stav",
|
||||||
"weaponSpecialCandycaneNotes": "En kraftfuld Magikerstav. Kraftfuld lækker smag, mener vi! Tohåndsvåben. Øger Intelligens med <%= int %> og Opfattelse med <%= per %>. Specielt 2013-2014 Vinterudstyr.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Snefnugstryllestav",
|
"weaponSpecialSnowflakeText": "Snefnugstryllestav",
|
||||||
"weaponSpecialSnowflakeNotes": "Denne tryllestav glimter med uendelig helende kraft. Øger intelligens med <%= int %>. Specielt 2013-2014 Vinterudstyr.",
|
"weaponSpecialSnowflakeNotes": "Denne tryllestav glimter med uendelig helende kraft. Øger intelligens med <%= int %>. Specielt 2013-2014 Vinterudstyr.",
|
||||||
"weaponSpecialSpringRogueText": "Krogede Kløer",
|
"weaponSpecialSpringRogueText": "Krogede Kløer",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Påfugl Maskerade Maske",
|
"eyewearMystery301703Text": "Påfugl Maskerade Maske",
|
||||||
"eyewearMystery301703Notes": "Perfekt til en smart maskerade eller til at listende bevæge sig gennem en særlig velklædt menneskemængde. Giver ingen bonusser. Marts 3017 Abonnentting.",
|
"eyewearMystery301703Notes": "Perfekt til en smart maskerade eller til at listende bevæge sig gennem en særlig velklædt menneskemængde. Giver ingen bonusser. Marts 3017 Abonnentting.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Pestlægemaske",
|
"eyewearArmoirePlagueDoctorMaskText": "Pestlægemaske",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "En autentisk maske båret af de læger, der bekæmper udsættelsespesten. Giver ingen bonusser. Fortryllet Klædeskab: Pestlægesæt (Genstand 2 af 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "En autentisk maske båret af de læger, der bekæmper udsættelsespesten. Giver ingen bonusser. Fortryllet Klædeskab: Pestlægesæt (Genstand 2 af 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Var med til at overvinde Be-Wilder i 2016 Spring Fling-eventet!",
|
"achievementBewilderText": "Var med til at overvinde Be-Wilder i 2016 Spring Fling-eventet!",
|
||||||
"checkOutProgress": "Tjek mine fremskridt i Habitica!",
|
"checkOutProgress": "Tjek mine fremskridt i Habitica!",
|
||||||
"cards": "Kort",
|
"cards": "Kort",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Lykønskningskort",
|
"greetingCard": "Lykønskningskort",
|
||||||
"greetingCardExplanation": "I modtager begge Glad Gut-præstationen",
|
"greetingCardExplanation": "I modtager begge Glad Gut-præstationen",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Dette kæledyr kan ikke fodres.",
|
"messageCannotFeedPet": "Dette kæledyr kan ikke fodres.",
|
||||||
"messageAlreadyMount": "Du har allerede dette ridedyr. Prøv at fodre et andet dyr.",
|
"messageAlreadyMount": "Du har allerede dette ridedyr. Prøv at fodre et andet dyr.",
|
||||||
"messageEvolve": "Du har tæmmet <%= egg %>, lad os ride en tur!",
|
"messageEvolve": "Du har tæmmet <%= egg %>, lad os ride en tur!",
|
||||||
"messageLikesFood": "<%= egg %> er meget glad for <%= foodText %>!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> spiser <%= foodText %>, men ser ikke ud til at nyde det.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Købte <%= itemText %>",
|
"messageBought": "Købte <%= itemText %>",
|
||||||
"messageEquipped": "<%= itemText %> taget i brug.",
|
"messageEquipped": "<%= itemText %> taget i brug.",
|
||||||
"messageUnEquipped": "<%= itemText %> lægges væk.",
|
"messageUnEquipped": "<%= itemText %> lægges væk.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Ikke nok Guld",
|
"messageNotEnoughGold": "Ikke nok Guld",
|
||||||
"messageTwoHandedEquip": "At håndtere <%= twoHandedText %> kræver to hænder. Derfor afvæbnes <%= offHandedText %>.",
|
"messageTwoHandedEquip": "At håndtere <%= twoHandedText %> kræver to hænder. Derfor afvæbnes <%= offHandedText %>.",
|
||||||
"messageTwoHandedUnequip": "At håndtere <%= twoHandedText %> kræver to hænder. Det blev derfor afvæbnet, da du bevæbnede dig med <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "At håndtere <%= twoHandedText %> kræver to hænder. Det blev derfor afvæbnet, da du bevæbnede dig med <%= offHandedText %>.",
|
||||||
"messageDropFood": "Du har fundet <%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Du har fundet et <%= dropText %> æg!",
|
"messageDropEgg": "Du har fundet et <%= dropText %> æg!",
|
||||||
"messageDropPotion": "Du har fundet en <%= dropText %> udrugningseliksir!",
|
"messageDropPotion": "Du har fundet en <%= dropText %> udrugningseliksir!",
|
||||||
"messageDropQuest": "Du har fundet en quest!",
|
"messageDropQuest": "Du har fundet en quest!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Du har allerede fuldt liv.",
|
"messageHealthAlreadyMax": "Du har allerede fuldt liv.",
|
||||||
"messageHealthAlreadyMin": "Åh nej! Du er allerede løbet tør for liv så det erfor sent at købe en Livseliksir, mens bare rolig - du kan genoplive!",
|
"messageHealthAlreadyMin": "Åh nej! Du er allerede løbet tør for liv så det erfor sent at købe en Livseliksir, mens bare rolig - du kan genoplive!",
|
||||||
"armoireEquipment": "<%= image %> Du har fundet sjældent Udstyr i Klædeskabet: <%= dropText %>! Fantastisk!",
|
"armoireEquipment": "<%= image %> Du har fundet sjældent Udstyr i Klædeskabet: <%= dropText %>! Fantastisk!",
|
||||||
"armoireFood": "<%= image %> Du roder rundt i bunden af Klædeskabet. Pludselig finder du <%= dropText %>. Gad vide hvad den laver her?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Du kæmper med Klædeskabet og får Erfaring. Sådan!",
|
"armoireExp": "Du kæmper med Klædeskabet og får Erfaring. Sådan!",
|
||||||
"messageInsufficientGems": "Ikke nok Ædelsten!",
|
"messageInsufficientGems": "Ikke nok Ædelsten!",
|
||||||
"messageAuthPasswordMustMatch": ":password og :confirmPassword er ikke ens",
|
"messageAuthPasswordMustMatch": ":password og :confirmPassword er ikke ens",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Du ejer ikke dette kæledyr.",
|
"petNotOwned": "Du ejer ikke dette kæledyr.",
|
||||||
"mountNotOwned": "Du ejer ikke dette ridedyr.",
|
"mountNotOwned": "Du ejer ikke dette ridedyr.",
|
||||||
"earnedCompanion": "Med all din produktivitet har du fortjent en ny følgesvend. Giv den mad for at få den til at vokse!",
|
"earnedCompanion": "Med all din produktivitet har du fortjent en ny følgesvend. Giv den mad for at få den til at vokse!",
|
||||||
"feedPet": "Giv <%= text %> til <%= name %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Giv <%= pet %> sadel på?",
|
"useSaddle": "Giv <%= pet %> sadel på?",
|
||||||
"raisedPet": "Du har opdrættet din/dit <%= pet %>!",
|
"raisedPet": "Du har opdrættet din/dit <%= pet %>!",
|
||||||
"earnedSteed": "Ved at fuldføre dine opgaver, har du tjent en trofast ganger!",
|
"earnedSteed": "Ved at fuldføre dine opgaver, har du tjent en trofast ganger!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Gieße dies über ein Ei und es wird ein <%= potText(locale) %> Haustier daraus schlüpfen.",
|
"hatchingPotionNotes": "Gieße dies über ein Ei und es wird ein <%= potText(locale) %> Haustier daraus schlüpfen.",
|
||||||
"premiumPotionAddlNotes": "Nicht auf Eier von Quest-Haustieren anwendbar.",
|
"premiumPotionAddlNotes": "Nicht auf Eier von Quest-Haustieren anwendbar.",
|
||||||
"foodMeat": "Fleisch",
|
"foodMeat": "Fleisch",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Milch",
|
"foodMilk": "Milch",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Kartoffel",
|
"foodPotatoe": "Kartoffel",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Erdbeere",
|
"foodStrawberry": "Erdbeere",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Schokolade",
|
"foodChocolate": "Schokolade",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Fisch",
|
"foodFish": "Fisch",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Verrottetes Fleisch",
|
"foodRottenMeat": "Verrottetes Fleisch",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Rosa Zuckerwatte",
|
"foodCottonCandyPink": "Rosa Zuckerwatte",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Blaue Zuckerwatte",
|
"foodCottonCandyBlue": "Blaue Zuckerwatte",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Honig",
|
"foodHoney": "Honig",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Knochenkuchen",
|
"foodCakeSkeleton": "Knochenkuchen",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Normaler Kuchen",
|
"foodCakeBase": "Normaler Kuchen",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Blauer Zuckerkuchen",
|
"foodCakeCottonCandyBlue": "Blauer Zuckerkuchen",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Rosa Zuckerkuchen",
|
"foodCakeCottonCandyPink": "Rosa Zuckerkuchen",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Schokoladenkuchen",
|
"foodCakeShade": "Schokoladenkuchen",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Sahnekuchen",
|
"foodCakeWhite": "Sahnekuchen",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Honigkuchen",
|
"foodCakeGolden": "Honigkuchen",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Verrotteter Kuchen",
|
"foodCakeZombie": "Verrotteter Kuchen",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Sandkuchen",
|
"foodCakeDesert": "Sandkuchen",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Erdbeerkuchen",
|
"foodCakeRed": "Erdbeerkuchen",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Knochenbonbon",
|
"foodCandySkeleton": "Knochenbonbon",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Normales Bonbon",
|
"foodCandyBase": "Normales Bonbon",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Saures blaues Bonbon",
|
"foodCandyCottonCandyBlue": "Saures blaues Bonbon",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Saures rosa Bonbon",
|
"foodCandyCottonCandyPink": "Saures rosa Bonbon",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Schokoladenbonbon",
|
"foodCandyShade": "Schokoladenbonbon",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Vanillebonbon",
|
"foodCandyWhite": "Vanillebonbon",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Honigbonbon",
|
"foodCandyGolden": "Honigbonbon",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Verrottetes Bonbon",
|
"foodCandyZombie": "Verrottetes Bonbon",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Sandbonbon",
|
"foodCandyDesert": "Sandbonbon",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Zimtbonbon",
|
"foodCandyRed": "Zimtbonbon",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Magischer Sattel",
|
"foodSaddleText": "Magischer Sattel",
|
||||||
"foodSaddleNotes": "Lässt eines Deiner Haustiere augenblicklich zum Reittier heranwachsen.",
|
"foodSaddleNotes": "Lässt eines Deiner Haustiere augenblicklich zum Reittier heranwachsen.",
|
||||||
"foodSaddleSellWarningNote": "Hey! Das ist ein sehr nützlicher Gegenstand! Bist Du vertraut damit, wie Du den Sattel mit Deinen Haustieren nutzt?",
|
"foodSaddleSellWarningNote": "Hey! Das ist ein sehr nützlicher Gegenstand! Bist Du vertraut damit, wie Du den Sattel mit Deinen Haustieren nutzt?",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"weaponSpecial0Text": "Klinge der Dunkelseelen",
|
"weaponSpecial0Text": "Klinge der Dunkelseelen",
|
||||||
"weaponSpecial0Notes": "Die Macht für seine gefährlichen Hiebe bezieht diese Waffe aus der Lebensenergie seiner Gegner. Erhöht Stärke um <%= str %>.",
|
"weaponSpecial0Notes": "Die Macht für seine gefährlichen Hiebe bezieht diese Waffe aus der Lebensenergie seiner Gegner. Erhöht Stärke um <%= str %>.",
|
||||||
"weaponSpecial1Text": "Kristallklinge",
|
"weaponSpecial1Text": "Kristallklinge",
|
||||||
"weaponSpecial1Notes": "Its glittering facets tell the tale of a hero. Increases all Stats by <%= attrs %>.",
|
"weaponSpecial1Notes": "Seine glitzernden Facetten erzählen die Geschichte eines Helden. Erhöht alle Attribute um <%= attrs %>.",
|
||||||
"weaponSpecial2Text": "Stephen Webers Drachenschaft",
|
"weaponSpecial2Text": "Stephen Webers Drachenschaft",
|
||||||
"weaponSpecial2Notes": "Spüre die Macht des Drachen, die darin schwelt! Erhöht Stärke und Wahrnehmung um jeweils <%= attrs %> Punkte.",
|
"weaponSpecial2Notes": "Spüre die Macht des Drachen, die darin schwelt! Erhöht Stärke und Wahrnehmung um jeweils <%= attrs %> Punkte.",
|
||||||
"weaponSpecial3Text": "Mustaines Meilenstein-matschender Morgenstern",
|
"weaponSpecial3Text": "Mustaines Meilenstein-matschender Morgenstern",
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
"weaponSpecialCriticalText": "Bedrohlicher Hammer der Bug-Vernichtung",
|
"weaponSpecialCriticalText": "Bedrohlicher Hammer der Bug-Vernichtung",
|
||||||
"weaponSpecialCriticalNotes": "Dieses Meisterwerkzeug erschlug einen bösartigen GitHub-Gegner, dem bereits viele Krieger erlegen sind. Der aus Bug-Knochen gefertigte Hammer teilt mächtige kritische Treffer aus. Erhöht Stärke und Wahrnehmung um jeweils <%= attrs %>.",
|
"weaponSpecialCriticalNotes": "Dieses Meisterwerkzeug erschlug einen bösartigen GitHub-Gegner, dem bereits viele Krieger erlegen sind. Der aus Bug-Knochen gefertigte Hammer teilt mächtige kritische Treffer aus. Erhöht Stärke und Wahrnehmung um jeweils <%= attrs %>.",
|
||||||
"weaponSpecialTakeThisText": "Take This-Schwert",
|
"weaponSpecialTakeThisText": "Take This-Schwert",
|
||||||
"weaponSpecialTakeThisNotes": "This sword was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
|
"weaponSpecialTakeThisNotes": "Dieses Schwert wurde durch die Teilnahme an einem von Take This gesponsorten Wettbewerb verdient. Gratulation! Erhöht alle Attribute um <%= attrs %>.",
|
||||||
"weaponSpecialTridentOfCrashingTidesText": "Dreizack der brechenden Gezeiten",
|
"weaponSpecialTridentOfCrashingTidesText": "Dreizack der brechenden Gezeiten",
|
||||||
"weaponSpecialTridentOfCrashingTidesNotes": "Gibt Dir die Fähigkeit Fische zu befehligen und Deine Aufgaben mit kraftvollen Stichen zu attackieren. Erhöht Intelligenz um <%= int %>.",
|
"weaponSpecialTridentOfCrashingTidesNotes": "Gibt Dir die Fähigkeit Fische zu befehligen und Deine Aufgaben mit kraftvollen Stichen zu attackieren. Erhöht Intelligenz um <%= int %>.",
|
||||||
"weaponSpecialTaskwoodsLanternText": "Laterne der Aufgabenwälder",
|
"weaponSpecialTaskwoodsLanternText": "Laterne der Aufgabenwälder",
|
||||||
|
|
@ -113,13 +113,13 @@
|
||||||
"weaponSpecialTachiText": "Tachi",
|
"weaponSpecialTachiText": "Tachi",
|
||||||
"weaponSpecialTachiNotes": "Dieses leichte und gebogene Schwert wird Deine Aufgaben in Streifen zerteilen! Erhöht Stärke um <%= str %>.",
|
"weaponSpecialTachiNotes": "Dieses leichte und gebogene Schwert wird Deine Aufgaben in Streifen zerteilen! Erhöht Stärke um <%= str %>.",
|
||||||
"weaponSpecialAetherCrystalsText": "Ätherkristalle",
|
"weaponSpecialAetherCrystalsText": "Ätherkristalle",
|
||||||
"weaponSpecialAetherCrystalsNotes": "These bracers and crystals once belonged to the Lost Masterclasser herself. Increases all Stats by <%= attrs %>.",
|
"weaponSpecialAetherCrystalsNotes": "Diese Armschienen und Kristalle gehörten einst der Lost Masterclasser höchstpersönlich. Erhöht alle Attribute um <%= attrs %>.",
|
||||||
"weaponSpecialYetiText": "Speer des Yeti-Zähmers",
|
"weaponSpecialYetiText": "Speer des Yeti-Zähmers",
|
||||||
"weaponSpecialYetiNotes": "Dieser Speer erlaubt dem Träger, jeden Yeti zu bändigen. Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2013-2014 Winterausrüstung.",
|
"weaponSpecialYetiNotes": "Dieser Speer erlaubt dem Träger, jeden Yeti zu bändigen. Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2013-2014 Winterausrüstung.",
|
||||||
"weaponSpecialSkiText": "Stock des Sk(i)-attentäters",
|
"weaponSpecialSkiText": "Stock des Sk(i)-attentäters",
|
||||||
"weaponSpecialSkiNotes": "Zermalmt ganze Horden von Gegnern! Außerdem hilft es dem Träger dabei, schöne Parallelschwünge zu fahren. Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2013-2014 Winterausrüstung.",
|
"weaponSpecialSkiNotes": "Zermalmt ganze Horden von Gegnern! Außerdem hilft es dem Träger dabei, schöne Parallelschwünge zu fahren. Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2013-2014 Winterausrüstung.",
|
||||||
"weaponSpecialCandycaneText": "Zuckerstangenstab",
|
"weaponSpecialCandycaneText": "Zuckerstangenstab",
|
||||||
"weaponSpecialCandycaneNotes": "Ein mächtiger Zauberstab. Mächtig LECKER, wollten wir sagen! Zweihändige Waffe. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limitierte Ausgabe 2013-2014 Winterausrüstung.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Zauberstab der Schneeflocke",
|
"weaponSpecialSnowflakeText": "Zauberstab der Schneeflocke",
|
||||||
"weaponSpecialSnowflakeNotes": "Dieser Zauberstab funkelt mit unerschöpflicher Heilkraft. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2013-2014 Winterausrüstung.",
|
"weaponSpecialSnowflakeNotes": "Dieser Zauberstab funkelt mit unerschöpflicher Heilkraft. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2013-2014 Winterausrüstung.",
|
||||||
"weaponSpecialSpringRogueText": "Hakenkrallen",
|
"weaponSpecialSpringRogueText": "Hakenkrallen",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Pfauen-Maskerademaske",
|
"eyewearMystery301703Text": "Pfauen-Maskerademaske",
|
||||||
"eyewearMystery301703Notes": "Perfekt für ausgefallene Maskeraden oder um sich unentdeckt an besonders gut gekleideten Massen vorbei zu schleichen. Gewährt keinen Attributbonus. Abonnentengegenstand, März 3017.",
|
"eyewearMystery301703Notes": "Perfekt für ausgefallene Maskeraden oder um sich unentdeckt an besonders gut gekleideten Massen vorbei zu schleichen. Gewährt keinen Attributbonus. Abonnentengegenstand, März 3017.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Pestarzt-Maske",
|
"eyewearArmoirePlagueDoctorMaskText": "Pestarzt-Maske",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Eine authentische Maske wie sie Ärzte tragen, die die Pest des Aufschubs bekämpfen! Gewährt keinen Attributbonus. Verzauberter Schrank: Pestarzt-Set (Gegenstand 2 von 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Eine authentische Maske wie sie Ärzte tragen, die die Pest des Aufschubs bekämpfen! Gewährt keinen Attributbonus. Verzauberter Schrank: Pestarzt-Set (Gegenstand 2 von 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Hat bei der Frühlingsfeier 2016 geholfen, den Verwirrer zu besiegen.",
|
"achievementBewilderText": "Hat bei der Frühlingsfeier 2016 geholfen, den Verwirrer zu besiegen.",
|
||||||
"checkOutProgress": "Schau Dir meinen Fortschritt in Habitica an!",
|
"checkOutProgress": "Schau Dir meinen Fortschritt in Habitica an!",
|
||||||
"cards": "Karten",
|
"cards": "Karten",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Grußkarte",
|
"greetingCard": "Grußkarte",
|
||||||
"greetingCardExplanation": "Ihr erhaltet beide den Fröhlicher-Freund-Erfolg!",
|
"greetingCardExplanation": "Ihr erhaltet beide den Fröhlicher-Freund-Erfolg!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Dieses Haustier will und kann nicht gefüttert werden.",
|
"messageCannotFeedPet": "Dieses Haustier will und kann nicht gefüttert werden.",
|
||||||
"messageAlreadyMount": "Du hast dieses Reittier bereits. Füttere lieber ein anderes Haustier.",
|
"messageAlreadyMount": "Du hast dieses Reittier bereits. Füttere lieber ein anderes Haustier.",
|
||||||
"messageEvolve": "<%= egg %> wurde gezähmt. Es ist an der Zeit aufzusitzen!",
|
"messageEvolve": "<%= egg %> wurde gezähmt. Es ist an der Zeit aufzusitzen!",
|
||||||
"messageLikesFood": "<%= egg %> ist begeistert. <%= foodText %> ist seine Lieblingsspeise!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> ist von <%= foodText %> nicht gerade begeistert, aber würgt das Futter hinunter.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "<%= itemText %> gekauft",
|
"messageBought": "<%= itemText %> gekauft",
|
||||||
"messageEquipped": "<%= itemText %> angelegt.",
|
"messageEquipped": "<%= itemText %> angelegt.",
|
||||||
"messageUnEquipped": "<%= itemText %> abgelegt.",
|
"messageUnEquipped": "<%= itemText %> abgelegt.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Nicht genug Gold",
|
"messageNotEnoughGold": "Nicht genug Gold",
|
||||||
"messageTwoHandedEquip": "Um <%= twoHandedText %> zu führen brauchst Du beide Hände, daher wurde <%= offHandedText %> zurück in das Inventar gelegt.",
|
"messageTwoHandedEquip": "Um <%= twoHandedText %> zu führen brauchst Du beide Hände, daher wurde <%= offHandedText %> zurück in das Inventar gelegt.",
|
||||||
"messageTwoHandedUnequip": "Um <%= twoHandedText %> zu führen brauchst Du beide Hände, daher wurde es zurück in das Inventar gelegt als Du Dich mit <%= offHandedText %> bewaffnet hast.",
|
"messageTwoHandedUnequip": "Um <%= twoHandedText %> zu führen brauchst Du beide Hände, daher wurde es zurück in das Inventar gelegt als Du Dich mit <%= offHandedText %> bewaffnet hast.",
|
||||||
"messageDropFood": "Du hast <%= dropArticle %> <%= dropText %> gefunden!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Du hast ein <%= dropText %> Ei gefunden!",
|
"messageDropEgg": "Du hast ein <%= dropText %> Ei gefunden!",
|
||||||
"messageDropPotion": "Du hast ein <%= dropText %> Schlüpfelixier gefunden!",
|
"messageDropPotion": "Du hast ein <%= dropText %> Schlüpfelixier gefunden!",
|
||||||
"messageDropQuest": "Du hast eine Quest gefunden!",
|
"messageDropQuest": "Du hast eine Quest gefunden!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Du hast schon alle Lebenspunkte.",
|
"messageHealthAlreadyMax": "Du hast schon alle Lebenspunkte.",
|
||||||
"messageHealthAlreadyMin": "Oh nein! Du hast bereits alle Lebenspunkte verloren - jetzt ist es zu spät, um noch einen Heiltrank zu kaufen! Aber keine Sorge, Du kannst Dich wiederbeleben.",
|
"messageHealthAlreadyMin": "Oh nein! Du hast bereits alle Lebenspunkte verloren - jetzt ist es zu spät, um noch einen Heiltrank zu kaufen! Aber keine Sorge, Du kannst Dich wiederbeleben.",
|
||||||
"armoireEquipment": "<%= image %> Du hast ein Stück seltener Ausrüstung im verzauberten Schrank gefunden: <%= dropText %>! Großartig!",
|
"armoireEquipment": "<%= image %> Du hast ein Stück seltener Ausrüstung im verzauberten Schrank gefunden: <%= dropText %>! Großartig!",
|
||||||
"armoireFood": "<%= image %> Du wühlst im verzauberten Schrank herum und findest <%= dropArticle %><%= dropText %>. Was macht das denn da drin?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Du ringst mit dem verzauberten Schrank und gewinnst Erfahrung. Nimm das!",
|
"armoireExp": "Du ringst mit dem verzauberten Schrank und gewinnst Erfahrung. Nimm das!",
|
||||||
"messageInsufficientGems": "Nicht genügend Edelsteine!",
|
"messageInsufficientGems": "Nicht genügend Edelsteine!",
|
||||||
"messageAuthPasswordMustMatch": ":password und :confirmPassword stimmen nicht überein",
|
"messageAuthPasswordMustMatch": ":password und :confirmPassword stimmen nicht überein",
|
||||||
|
|
|
||||||
|
|
@ -94,9 +94,9 @@
|
||||||
"alreadyUnlocked": "Komplettes Set ist bereits freigeschaltet.",
|
"alreadyUnlocked": "Komplettes Set ist bereits freigeschaltet.",
|
||||||
"alreadyUnlockedPart": "Set ist bereits teilweise freigeschaltet.",
|
"alreadyUnlockedPart": "Set ist bereits teilweise freigeschaltet.",
|
||||||
"USD": "(USD)",
|
"USD": "(USD)",
|
||||||
"newStuff": "New Stuff by Bailey",
|
"newStuff": "Neuigkeiten von Bailey",
|
||||||
"newBaileyUpdate": "New Bailey Update!",
|
"newBaileyUpdate": "Neues Update von Bailey!",
|
||||||
"tellMeLater": "Tell Me Later",
|
"tellMeLater": "Erzähl es mir später",
|
||||||
"dismissAlert": "Als gelesen markieren",
|
"dismissAlert": "Als gelesen markieren",
|
||||||
"donateText1": "Fügt Deinem Konto 20 Edelsteine hinzu. Edelsteine werden benutzt um Spielgegenstände wie Shirts und Frisuren zu kaufen.",
|
"donateText1": "Fügt Deinem Konto 20 Edelsteine hinzu. Edelsteine werden benutzt um Spielgegenstände wie Shirts und Frisuren zu kaufen.",
|
||||||
"donateText2": "Hilf dabei, Habitica zu unterstützen",
|
"donateText2": "Hilf dabei, Habitica zu unterstützen",
|
||||||
|
|
@ -109,9 +109,9 @@
|
||||||
"paymentMethods": "Kauf mit",
|
"paymentMethods": "Kauf mit",
|
||||||
"classGear": "Klassenausrüstung",
|
"classGear": "Klassenausrüstung",
|
||||||
"classGearText": "Glückwunsch zur Wahl Deiner Klasse! Ich habe deine neue Basiswaffe dem Inventar hinzugefügt. Schaue sie dir unten an, um sie auszurüsten!",
|
"classGearText": "Glückwunsch zur Wahl Deiner Klasse! Ich habe deine neue Basiswaffe dem Inventar hinzugefügt. Schaue sie dir unten an, um sie auszurüsten!",
|
||||||
"classStats": "These are your class's Stats; they affect the game-play. Each time you level up, you get one Point to allocate to a particular Stat. Hover over each Stat for more information.",
|
"classStats": "Dies sind die Statuswerte Deiner Klasse; sie beeinflussen das Spiel. Jedes Mal, wenn Du einen Level aufsteigst, erhältst Du einen Punkt, den Du einem Statuswert zuordnen kannst. Bewege die Maus über jeden der Statuswerte für weitere Informationen.",
|
||||||
"autoAllocate": "Automatische Verteilung",
|
"autoAllocate": "Automatische Verteilung",
|
||||||
"autoAllocateText": "If 'Automatic Allocation' is selected, your avatar gains Stats automatically based on your tasks' Stats, which you can find in <strong>TASK > Edit > Advanced Settings > Stat Allocation</strong>. Eg, if you hit the gym often, and your 'Gym' Daily is set to 'Strength', you'll gain Strength automatically.",
|
"autoAllocateText": "Falls Du eine automatische Verteilung wählst, werden die Punkte automatisch vergeben, abhängig von den Attributen Deiner Aufgaben, die Du unter <strong>Aufgabe > Bearbeiten > Erweitert > Attribute</strong> finden kannst. Ein Beispiel: Wenn Du oft im Fitnessstudio bist und die entsprechende Aufgabe auf \"körperlich\" gesetzt ist, bekommst Du automatisch Stärke.",
|
||||||
"spells": "Fertigkeiten",
|
"spells": "Fertigkeiten",
|
||||||
"spellsText": "Du kannst jetzt klassenspezifische Fertigkeiten freischalten. Deine Erste siehst Du bei Level 11. Dein Mana füllt sich um 10 Punkte am Tag auf, plus einen Punkt pro erledigtem <a target='_blank' href='http://habitica.wikia.com/wiki/Todos'>To-Do</a>.",
|
"spellsText": "Du kannst jetzt klassenspezifische Fertigkeiten freischalten. Deine Erste siehst Du bei Level 11. Dein Mana füllt sich um 10 Punkte am Tag auf, plus einen Punkt pro erledigtem <a target='_blank' href='http://habitica.wikia.com/wiki/Todos'>To-Do</a>.",
|
||||||
"skillsTitle": "Fertigkeiten",
|
"skillsTitle": "Fertigkeiten",
|
||||||
|
|
@ -137,7 +137,7 @@
|
||||||
"tourHallPage": "Willkommen in der Halle der Helden, in der Mitwirkende an Habitica geehrt werden. Durch Code, Design, Musik, Text oder einfach durch Hilfsbereitschaft, haben sie Edelsteine, exklusive Ausrüstungen und angesehene Titel verdient. Auch Du kannst bei Habitica mitwirken!",
|
"tourHallPage": "Willkommen in der Halle der Helden, in der Mitwirkende an Habitica geehrt werden. Durch Code, Design, Musik, Text oder einfach durch Hilfsbereitschaft, haben sie Edelsteine, exklusive Ausrüstungen und angesehene Titel verdient. Auch Du kannst bei Habitica mitwirken!",
|
||||||
"tourPetsPage": "Dies ist der Stall! Nachdem Du Level 3 erreicht hast, wirst Du Haustier-Eier und Schlüpfelixiere sammeln, wenn Du Aufgaben erledigst. Wenn Du auf dem Markt ein Haustier schlüpfen lässt, erscheint es hier im Stall! Klicke auf das Bild eines Tiers um es deinem Avatar hinzuzufügen. Füttere es mit Futter, das Du ab Level 3 findest, dann wird es zu einem mächtigen Reittier.",
|
"tourPetsPage": "Dies ist der Stall! Nachdem Du Level 3 erreicht hast, wirst Du Haustier-Eier und Schlüpfelixiere sammeln, wenn Du Aufgaben erledigst. Wenn Du auf dem Markt ein Haustier schlüpfen lässt, erscheint es hier im Stall! Klicke auf das Bild eines Tiers um es deinem Avatar hinzuzufügen. Füttere es mit Futter, das Du ab Level 3 findest, dann wird es zu einem mächtigen Reittier.",
|
||||||
"tourMountsPage": "Sobald Du einem Haustier so viel Futter gegeben hast, dass es zu einem Reittier werden konnte, wird es hier erscheinen. Klicke auf ein Reittier um aufzusteigen!",
|
"tourMountsPage": "Sobald Du einem Haustier so viel Futter gegeben hast, dass es zu einem Reittier werden konnte, wird es hier erscheinen. Klicke auf ein Reittier um aufzusteigen!",
|
||||||
"tourEquipmentPage": "This is where your Equipment is stored! Your Battle Gear affects your Stats. If you want to show different Equipment on your avatar without changing your Stats, click \"Enable Costume.\"",
|
"tourEquipmentPage": "Hier wird Deine Ausrüstung gelagert! Deine Kampfausrüstung beeinflusst Deine Statuswerte. Wenn Du eine andere Ausrüstung an Deinem Avatar zeigen willst ohne Deine Statuswerte zu verändern, klicke auf \"Verkleidung tragen\".",
|
||||||
"equipmentAlreadyOwned": "Du besitzt diesen Ausrüstungsgegenstand bereits",
|
"equipmentAlreadyOwned": "Du besitzt diesen Ausrüstungsgegenstand bereits",
|
||||||
"tourOkay": "Okay!",
|
"tourOkay": "Okay!",
|
||||||
"tourAwesome": "Großartig!",
|
"tourAwesome": "Großartig!",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Du besitzt dieses Haustier nicht.",
|
"petNotOwned": "Du besitzt dieses Haustier nicht.",
|
||||||
"mountNotOwned": "Du besitzt dieses Reittier nicht.",
|
"mountNotOwned": "Du besitzt dieses Reittier nicht.",
|
||||||
"earnedCompanion": "Durch all Deine Produktivität hast Du einen neuen Begleiter erhalten. Füttere ihn damit er wächst!",
|
"earnedCompanion": "Durch all Deine Produktivität hast Du einen neuen Begleiter erhalten. Füttere ihn damit er wächst!",
|
||||||
"feedPet": "Verfüttere <%= article %><%= text %> an <%= name %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Einen magischen Sattel auf <%= pet %> anwenden?",
|
"useSaddle": "Einen magischen Sattel auf <%= pet %> anwenden?",
|
||||||
"raisedPet": "Du hast ein <%= pet %> aufgezogen!",
|
"raisedPet": "Du hast ein <%= pet %> aufgezogen!",
|
||||||
"earnedSteed": "Durch das Erfüllen Deiner Aufgaben hast Du ein treues Reittier verdient!",
|
"earnedSteed": "Durch das Erfüllen Deiner Aufgaben hast Du ein treues Reittier verdient!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Pour this on an egg, an' it'll hatch as a <%= potText(locale) %> pet.",
|
"hatchingPotionNotes": "Pour this on an egg, an' it'll hatch as a <%= potText(locale) %> pet.",
|
||||||
"premiumPotionAddlNotes": "Ye canna use this on quest pet eggs.",
|
"premiumPotionAddlNotes": "Ye canna use this on quest pet eggs.",
|
||||||
"foodMeat": "Meat",
|
"foodMeat": "Meat",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Milk",
|
"foodMilk": "Milk",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Potato",
|
"foodPotatoe": "Potato",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Strawberry",
|
"foodStrawberry": "Strawberry",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Chocolate",
|
"foodChocolate": "Chocolate",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Fish",
|
"foodFish": "Fish",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Rotten Meat",
|
"foodRottenMeat": "Rotten Meat",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Pink Cotton Candy",
|
"foodCottonCandyPink": "Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Blue Cotton Candy",
|
"foodCottonCandyBlue": "Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Honey",
|
"foodHoney": "Honey",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Bare Bones Cake",
|
"foodCakeSkeleton": "Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Basic Cake",
|
"foodCakeBase": "Basic Cake",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Candy Blue Cake",
|
"foodCakeCottonCandyBlue": "Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Candy Pink Cake",
|
"foodCakeCottonCandyPink": "Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Chocolate Cake",
|
"foodCakeShade": "Chocolate Cake",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Cream Cake",
|
"foodCakeWhite": "Cream Cake",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Honey Cake",
|
"foodCakeGolden": "Honey Cake",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Rotten Cake",
|
"foodCakeZombie": "Rotten Cake",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Sand Cake",
|
"foodCakeDesert": "Sand Cake",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Strawberry Cake",
|
"foodCakeRed": "Strawberry Cake",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Bare Bones Candy",
|
"foodCandySkeleton": "Bare Bones Candy",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Basic Candy",
|
"foodCandyBase": "Basic Candy",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Sour Blue Candy",
|
"foodCandyCottonCandyBlue": "Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Sour Pink Candy",
|
"foodCandyCottonCandyPink": "Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Chocolate Candy",
|
"foodCandyShade": "Chocolate Candy",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Vanilla Candy",
|
"foodCandyWhite": "Vanilla Candy",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Honey Candy",
|
"foodCandyGolden": "Honey Candy",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Rotten Candy",
|
"foodCandyZombie": "Rotten Candy",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Sand Candy",
|
"foodCandyDesert": "Sand Candy",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Cinnamon Candy",
|
"foodCandyRed": "Cinnamon Candy",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Saddle",
|
"foodSaddleText": "Saddle",
|
||||||
"foodSaddleNotes": "Instantly turns one 'o yer pets into a mount.",
|
"foodSaddleNotes": "Instantly turns one 'o yer pets into a mount.",
|
||||||
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Ski-sassin Pole",
|
"weaponSpecialSkiText": "Ski-sassin Pole",
|
||||||
"weaponSpecialSkiNotes": "A weapon capable o' destroying hordes o' enemies! It also helps th' user make very nice parallel turns. Increases Strength by <%= str %>. Limited Edition 2013-2014 Winter Gear.",
|
"weaponSpecialSkiNotes": "A weapon capable o' destroying hordes o' enemies! It also helps th' user make very nice parallel turns. Increases Strength by <%= str %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialCandycaneText": "Candy Cane Staff",
|
"weaponSpecialCandycaneText": "Candy Cane Staff",
|
||||||
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Two-handed weapon. Increases Intelligence by <%= int %> an' Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Snowflake Wand",
|
"weaponSpecialSnowflakeText": "Snowflake Wand",
|
||||||
"weaponSpecialSnowflakeNotes": "This wand sparkles wi' unlimited healin' power. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.",
|
"weaponSpecialSnowflakeNotes": "This wand sparkles wi' unlimited healin' power. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSpringRogueText": "Hook Claws",
|
"weaponSpecialSpringRogueText": "Hook Claws",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
||||||
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Plague Doctor Mask",
|
"eyewearArmoirePlagueDoctorMaskText": "Plague Doctor Mask",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "An authentic mask worn by th' doctors who battl'd the Plague of Procrastination. Confers no benefit. Enchanted Chest: Plague Doctor Set (Item 2 of 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "An authentic mask worn by th' doctors who battl'd the Plague of Procrastination. Confers no benefit. Enchanted Chest: Plague Doctor Set (Item 2 of 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Helped defeat th' Be-Wilder durin' th' 2016 Spring Fling Event!",
|
"achievementBewilderText": "Helped defeat th' Be-Wilder durin' th' 2016 Spring Fling Event!",
|
||||||
"checkOutProgress": "Check out me progress in Habitica!",
|
"checkOutProgress": "Check out me progress in Habitica!",
|
||||||
"cards": "Cards",
|
"cards": "Cards",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Greetin' Card",
|
"greetingCard": "Greetin' Card",
|
||||||
"greetingCardExplanation": "Ye both receive th' Cheery Chum achievement!",
|
"greetingCardExplanation": "Ye both receive th' Cheery Chum achievement!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Can't feed this pet.",
|
"messageCannotFeedPet": "Can't feed this pet.",
|
||||||
"messageAlreadyMount": "Ye already 'ave that mount. Try feedin' another pet.",
|
"messageAlreadyMount": "Ye already 'ave that mount. Try feedin' another pet.",
|
||||||
"messageEvolve": "Ye 'ave tamed <%= egg %>, let's go fer a ride!",
|
"messageEvolve": "Ye 'ave tamed <%= egg %>, let's go fer a ride!",
|
||||||
"messageLikesFood": "<%= egg %> really likes th' <%= foodText %>!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> eats th' <%= foodText %> but doesn't seem t' enjoy it.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Bought <%= itemText %>",
|
"messageBought": "Bought <%= itemText %>",
|
||||||
"messageEquipped": "<%= itemText %> equipped.",
|
"messageEquipped": "<%= itemText %> equipped.",
|
||||||
"messageUnEquipped": "<%= itemText %> un-equip'd.",
|
"messageUnEquipped": "<%= itemText %> un-equip'd.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Not Enough Doubloons",
|
"messageNotEnoughGold": "Not Enough Doubloons",
|
||||||
"messageTwoHandedEquip": "Wieldin' <%= twoHandedText %> takes two hands, so <%= offHandedText %> has been unequipped.",
|
"messageTwoHandedEquip": "Wieldin' <%= twoHandedText %> takes two hands, so <%= offHandedText %> has been unequipped.",
|
||||||
"messageTwoHandedUnequip": "Wieldin' <%= twoHandedText %> takes two hands, so it was unequipped when ye armed yerself wit' <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "Wieldin' <%= twoHandedText %> takes two hands, so it was unequipped when ye armed yerself wit' <%= offHandedText %>.",
|
||||||
"messageDropFood": "You've found <%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "You've found a <%= dropText %> Egg!",
|
"messageDropEgg": "You've found a <%= dropText %> Egg!",
|
||||||
"messageDropPotion": "You've found a <%= dropText %> Hatching Potion!",
|
"messageDropPotion": "You've found a <%= dropText %> Hatching Potion!",
|
||||||
"messageDropQuest": "Ye've found a quest!",
|
"messageDropQuest": "Ye've found a quest!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Ye already 'ave maximum health.",
|
"messageHealthAlreadyMax": "Ye already 'ave maximum health.",
|
||||||
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
|
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
|
||||||
"armoireEquipment": "<%= image %> Ye found a piece of rare Equipment in th' Armoire: <%= dropText %>! Awesome!",
|
"armoireEquipment": "<%= image %> Ye found a piece of rare Equipment in th' Armoire: <%= dropText %>! Awesome!",
|
||||||
"armoireFood": "<%= image %> Ye rummage in the Armoire an' find <%= dropArticle %><%= dropText %>. What's tha' doin' in here?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Ye wrestle wi' th' Armoire an' gain Experience. Take that!",
|
"armoireExp": "Ye wrestle wi' th' Armoire an' gain Experience. Take that!",
|
||||||
"messageInsufficientGems": "Not enough gems!",
|
"messageInsufficientGems": "Not enough gems!",
|
||||||
"messageAuthPasswordMustMatch": ":password and :confirmPassword don' match",
|
"messageAuthPasswordMustMatch": ":password and :confirmPassword don' match",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Ye don't own this pet.",
|
"petNotOwned": "Ye don't own this pet.",
|
||||||
"mountNotOwned": "You do not own this mount.",
|
"mountNotOwned": "You do not own this mount.",
|
||||||
"earnedCompanion": "Wit' all yer productivity, ye've earned a new companion. Feed it t' make it grow!",
|
"earnedCompanion": "Wit' all yer productivity, ye've earned a new companion. Feed it t' make it grow!",
|
||||||
"feedPet": "Feed <%= article %><%= text %> t' yer <%= name %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Saddle <%= pet %>?",
|
"useSaddle": "Saddle <%= pet %>?",
|
||||||
"raisedPet": "You grew your <%= pet %>!",
|
"raisedPet": "You grew your <%= pet %>!",
|
||||||
"earnedSteed": "By completin' yer tasks, ye've earned a faithful steed!",
|
"earnedSteed": "By completin' yer tasks, ye've earned a faithful steed!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.",
|
"hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.",
|
||||||
"premiumPotionAddlNotes": "Not usable on quest pet eggs.",
|
"premiumPotionAddlNotes": "Not usable on quest pet eggs.",
|
||||||
"foodMeat": "Meat",
|
"foodMeat": "Meat",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Milk",
|
"foodMilk": "Milk",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Potato",
|
"foodPotatoe": "Potato",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Strawberry",
|
"foodStrawberry": "Strawberry",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Chocolate",
|
"foodChocolate": "Chocolate",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Fish",
|
"foodFish": "Fish",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Rotten Meat",
|
"foodRottenMeat": "Rotten Meat",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Pink Candyfloss",
|
"foodCottonCandyPink": "Pink Candyfloss",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Blue Candyfloss",
|
"foodCottonCandyBlue": "Blue Candyfloss",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Honey",
|
"foodHoney": "Honey",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Bare Bones Cake",
|
"foodCakeSkeleton": "Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Basic Cake",
|
"foodCakeBase": "Basic Cake",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Candy Blue Cake",
|
"foodCakeCottonCandyBlue": "Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Candy Pink Cake",
|
"foodCakeCottonCandyPink": "Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Chocolate Cake",
|
"foodCakeShade": "Chocolate Cake",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Cream Cake",
|
"foodCakeWhite": "Cream Cake",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Honey Cake",
|
"foodCakeGolden": "Honey Cake",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Rotten Cake",
|
"foodCakeZombie": "Rotten Cake",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Sand Cake",
|
"foodCakeDesert": "Sand Cake",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Strawberry Cake",
|
"foodCakeRed": "Strawberry Cake",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Bare Bones Sweet",
|
"foodCandySkeleton": "Bare Bones Sweet",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Basic Sweet",
|
"foodCandyBase": "Basic Sweet",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Sour Blue Sweet",
|
"foodCandyCottonCandyBlue": "Sour Blue Sweet",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Sour Pink Sweet",
|
"foodCandyCottonCandyPink": "Sour Pink Sweet",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Chocolate Sweet",
|
"foodCandyShade": "Chocolate Sweet",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Vanilla Sweet",
|
"foodCandyWhite": "Vanilla Sweet",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Honey Sweet",
|
"foodCandyGolden": "Honey Sweet",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Rotten Sweet",
|
"foodCandyZombie": "Rotten Sweet",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Sand Sweet",
|
"foodCandyDesert": "Sand Sweet",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Cinnamon Sweet",
|
"foodCandyRed": "Cinnamon Sweet",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Saddle",
|
"foodSaddleText": "Saddle",
|
||||||
"foodSaddleNotes": "Instantly raises one of your pets into a mount.",
|
"foodSaddleNotes": "Instantly raises one of your pets into a mount.",
|
||||||
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Ski-sassin Pole",
|
"weaponSpecialSkiText": "Ski-sassin Pole",
|
||||||
"weaponSpecialSkiNotes": "A weapon capable of destroying hordes of enemies! It also helps the user make very nice parallel turns. Increases Strength by <%= str %>. Limited Edition 2013-2014 Winter Gear.",
|
"weaponSpecialSkiNotes": "A weapon capable of destroying hordes of enemies! It also helps the user make very nice parallel turns. Increases Strength by <%= str %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialCandycaneText": "Candy Cane Staff",
|
"weaponSpecialCandycaneText": "Candy Cane Staff",
|
||||||
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Two-handed weapon. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Snowflake Wand",
|
"weaponSpecialSnowflakeText": "Snowflake Wand",
|
||||||
"weaponSpecialSnowflakeNotes": "This wand sparkles with unlimited healing power. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.",
|
"weaponSpecialSnowflakeNotes": "This wand sparkles with unlimited healing power. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSpringRogueText": "Hook Claws",
|
"weaponSpecialSpringRogueText": "Hook Claws",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
||||||
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Plague Doctor Mask",
|
"eyewearArmoirePlagueDoctorMaskText": "Plague Doctor Mask",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "An authentic mask worn by the doctors who battle the Plague of Procrastination. Confers no benefit. Enchanted Armoire: Plague Doctor Set (Item 2 of 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "An authentic mask worn by the doctors who battle the Plague of Procrastination. Confers no benefit. Enchanted Armoire: Plague Doctor Set (Item 2 of 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!",
|
"achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!",
|
||||||
"checkOutProgress": "Check out my progress in Habitica!",
|
"checkOutProgress": "Check out my progress in Habitica!",
|
||||||
"cards": "Cards",
|
"cards": "Cards",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Greeting Card",
|
"greetingCard": "Greeting Card",
|
||||||
"greetingCardExplanation": "You both receive the Cheery Chum achievement!",
|
"greetingCardExplanation": "You both receive the Cheery Chum achievement!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Can't feed this pet.",
|
"messageCannotFeedPet": "Can't feed this pet.",
|
||||||
"messageAlreadyMount": "You already have that mount. Try feeding another pet.",
|
"messageAlreadyMount": "You already have that mount. Try feeding another pet.",
|
||||||
"messageEvolve": "You have tamed <%= egg %>, let's go for a ride!",
|
"messageEvolve": "You have tamed <%= egg %>, let's go for a ride!",
|
||||||
"messageLikesFood": "<%= egg %> really likes the <%= foodText %>!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> eats the <%= foodText %> but doesn't seem to enjoy it.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Bought <%= itemText %>",
|
"messageBought": "Bought <%= itemText %>",
|
||||||
"messageEquipped": "<%= itemText %> equipped.",
|
"messageEquipped": "<%= itemText %> equipped.",
|
||||||
"messageUnEquipped": "<%= itemText %> unequipped.",
|
"messageUnEquipped": "<%= itemText %> unequipped.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Not Enough Gold",
|
"messageNotEnoughGold": "Not Enough Gold",
|
||||||
"messageTwoHandedEquip": "Wielding <%= twoHandedText %> takes two hands, so <%= offHandedText %> has been unequipped.",
|
"messageTwoHandedEquip": "Wielding <%= twoHandedText %> takes two hands, so <%= offHandedText %> has been unequipped.",
|
||||||
"messageTwoHandedUnequip": "Wielding <%= twoHandedText %> takes two hands, so it was unequipped when you armed yourself with <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "Wielding <%= twoHandedText %> takes two hands, so it was unequipped when you armed yourself with <%= offHandedText %>.",
|
||||||
"messageDropFood": "You've found <%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "You've found a <%= dropText %> Egg!",
|
"messageDropEgg": "You've found a <%= dropText %> Egg!",
|
||||||
"messageDropPotion": "You've found a <%= dropText %> Hatching Potion!",
|
"messageDropPotion": "You've found a <%= dropText %> Hatching Potion!",
|
||||||
"messageDropQuest": "You've found a quest!",
|
"messageDropQuest": "You've found a quest!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "You already have maximum health.",
|
"messageHealthAlreadyMax": "You already have maximum health.",
|
||||||
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
|
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
|
||||||
"armoireEquipment": "<%= image %> You found a piece of rare Equipment in the Armoire: <%= dropText %>! Awesome!",
|
"armoireEquipment": "<%= image %> You found a piece of rare Equipment in the Armoire: <%= dropText %>! Awesome!",
|
||||||
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropArticle %><%= dropText %>. What's that doing in here?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "You wrestle with the Armoire and gain Experience. Take that!",
|
"armoireExp": "You wrestle with the Armoire and gain Experience. Take that!",
|
||||||
"messageInsufficientGems": "Not enough gems!",
|
"messageInsufficientGems": "Not enough gems!",
|
||||||
"messageAuthPasswordMustMatch": ":password and :confirmPassword don't match",
|
"messageAuthPasswordMustMatch": ":password and :confirmPassword don't match",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "You do not own this pet.",
|
"petNotOwned": "You do not own this pet.",
|
||||||
"mountNotOwned": "You do not own this mount.",
|
"mountNotOwned": "You do not own this mount.",
|
||||||
"earnedCompanion": "With all your productivity, you've earned a new companion. Feed it to make it grow!",
|
"earnedCompanion": "With all your productivity, you've earned a new companion. Feed it to make it grow!",
|
||||||
"feedPet": "Feed <%= article %><%= text %> to your <%= name %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Saddle <%= pet %>?",
|
"useSaddle": "Saddle <%= pet %>?",
|
||||||
"raisedPet": "You grew your <%= pet %>!",
|
"raisedPet": "You grew your <%= pet %>!",
|
||||||
"earnedSteed": "By completing your tasks, you've earned a faithful steed!",
|
"earnedSteed": "By completing your tasks, you've earned a faithful steed!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Vierte esto en un huevo y eclosionará como una mascota <%= potText(locale) %>.",
|
"hatchingPotionNotes": "Vierte esto en un huevo y eclosionará como una mascota <%= potText(locale) %>.",
|
||||||
"premiumPotionAddlNotes": "No puede usarse en huevos de mascota de misión.",
|
"premiumPotionAddlNotes": "No puede usarse en huevos de mascota de misión.",
|
||||||
"foodMeat": "Carne",
|
"foodMeat": "Carne",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Leche",
|
"foodMilk": "Leche",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Patata",
|
"foodPotatoe": "Patata",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Fresa",
|
"foodStrawberry": "Fresa",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Chocolate",
|
"foodChocolate": "Chocolate",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Pescado",
|
"foodFish": "Pescado",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Carne podrida",
|
"foodRottenMeat": "Carne podrida",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Algodón de Azúcar Rosa",
|
"foodCottonCandyPink": "Algodón de Azúcar Rosa",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Algodón de Azúcar Azul",
|
"foodCottonCandyBlue": "Algodón de Azúcar Azul",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Miel",
|
"foodHoney": "Miel",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Tarta de Hueso",
|
"foodCakeSkeleton": "Tarta de Hueso",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Pastel básico",
|
"foodCakeBase": "Pastel básico",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Pastel Azul Golosina",
|
"foodCakeCottonCandyBlue": "Pastel Azul Golosina",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Pastel Rosa Golosina",
|
"foodCakeCottonCandyPink": "Pastel Rosa Golosina",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Pastel de chocolate",
|
"foodCakeShade": "Pastel de chocolate",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Pastel de crema",
|
"foodCakeWhite": "Pastel de crema",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Pastel de miel",
|
"foodCakeGolden": "Pastel de miel",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Pastel descompuesto",
|
"foodCakeZombie": "Pastel descompuesto",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Pastel de arena",
|
"foodCakeDesert": "Pastel de arena",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Tarta de Fresa",
|
"foodCakeRed": "Tarta de Fresa",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Caramelo de hueso",
|
"foodCandySkeleton": "Caramelo de hueso",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Caramelo base",
|
"foodCandyBase": "Caramelo base",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Caramelo azul ácido",
|
"foodCandyCottonCandyBlue": "Caramelo azul ácido",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Caramelo rosa ácido",
|
"foodCandyCottonCandyPink": "Caramelo rosa ácido",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Caramelo de chocolate",
|
"foodCandyShade": "Caramelo de chocolate",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Caramelo de vainilla",
|
"foodCandyWhite": "Caramelo de vainilla",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Caramelo de miel",
|
"foodCandyGolden": "Caramelo de miel",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Caramelo podrido",
|
"foodCandyZombie": "Caramelo podrido",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Caramelo de arena",
|
"foodCandyDesert": "Caramelo de arena",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Caramelo de canela",
|
"foodCandyRed": "Caramelo de canela",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Silla de Montar",
|
"foodSaddleText": "Silla de Montar",
|
||||||
"foodSaddleNotes": "Convierte instantáneamente una de tus mascotas en una montura.",
|
"foodSaddleNotes": "Convierte instantáneamente una de tus mascotas en una montura.",
|
||||||
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Pértiga del Ski-asesino",
|
"weaponSpecialSkiText": "Pértiga del Ski-asesino",
|
||||||
"weaponSpecialSkiNotes": "¡Un arma capaz de destruir hordas enteras de enemigos! También ayuda al usuario a hacer bonitos giros en paralelo. Aumenta la Fuerza en <%= str %>. Equipo de Invierno Edición Limitada 2013-2014.",
|
"weaponSpecialSkiNotes": "¡Un arma capaz de destruir hordas enteras de enemigos! También ayuda al usuario a hacer bonitos giros en paralelo. Aumenta la Fuerza en <%= str %>. Equipo de Invierno Edición Limitada 2013-2014.",
|
||||||
"weaponSpecialCandycaneText": "Báculo Bastón de Caramelo",
|
"weaponSpecialCandycaneText": "Báculo Bastón de Caramelo",
|
||||||
"weaponSpecialCandycaneNotes": "Un poderoso báculo de mago. ¡Nos referimos a poderosamente DELICIOSO! Arma de dos manos. Incrementa Inteligencia en <%= int %> y Percepción en <%= per %>. Equipo de Invierno Edición Limitada 2013-2014.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Varita de Copo de Nieve",
|
"weaponSpecialSnowflakeText": "Varita de Copo de Nieve",
|
||||||
"weaponSpecialSnowflakeNotes": "Esta varita centellea con poder sanador ilimitado. Aumenta la Inteligencia en <%= int %>. Equipo de Invierno Edición Limitada 2013-2014.",
|
"weaponSpecialSnowflakeNotes": "Esta varita centellea con poder sanador ilimitado. Aumenta la Inteligencia en <%= int %>. Equipo de Invierno Edición Limitada 2013-2014.",
|
||||||
"weaponSpecialSpringRogueText": "Garras de Gancho",
|
"weaponSpecialSpringRogueText": "Garras de Gancho",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Máscara de Faisán para Baile de Máscaras ",
|
"eyewearMystery301703Text": "Máscara de Faisán para Baile de Máscaras ",
|
||||||
"eyewearMystery301703Notes": "Perfecto para un sofisticado baile de máscaras o para moverte sigilosamente entre cualquier muchedumbre bien vestida. No otorga beneficios. Artículo de Suscriptor de marzo de 3017.",
|
"eyewearMystery301703Notes": "Perfecto para un sofisticado baile de máscaras o para moverte sigilosamente entre cualquier muchedumbre bien vestida. No otorga beneficios. Artículo de Suscriptor de marzo de 3017.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Máscara de médico de la peste negra",
|
"eyewearArmoirePlagueDoctorMaskText": "Máscara de médico de la peste negra",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "La auténtica máscara de los médicos que combatieron la plaga de la procrastinación. No aporta ningún beneficio. Armario encantado: conjunto de médico de la plaga (artículo 2 de 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "La auténtica máscara de los médicos que combatieron la plaga de la procrastinación. No aporta ningún beneficio. Armario encantado: conjunto de médico de la plaga (artículo 2 de 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "¡Ayudó a derrotar al Apa-bullador durante el Evento de Primavera de 2016!",
|
"achievementBewilderText": "¡Ayudó a derrotar al Apa-bullador durante el Evento de Primavera de 2016!",
|
||||||
"checkOutProgress": "Consultar mi progreso en Habitica",
|
"checkOutProgress": "Consultar mi progreso en Habitica",
|
||||||
"cards": "Tarjetas ",
|
"cards": "Tarjetas ",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Tarjeta de saludo",
|
"greetingCard": "Tarjeta de saludo",
|
||||||
"greetingCardExplanation": "Ambos recibís el logro Alegres Amigotes",
|
"greetingCardExplanation": "Ambos recibís el logro Alegres Amigotes",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "No se puede alimentar a esta mascota.",
|
"messageCannotFeedPet": "No se puede alimentar a esta mascota.",
|
||||||
"messageAlreadyMount": "Ya tienes esa montura. Intenta alimentar a otra mascota.",
|
"messageAlreadyMount": "Ya tienes esa montura. Intenta alimentar a otra mascota.",
|
||||||
"messageEvolve": "Has dominado a <%= egg %>, ¡vamos a dar una vuelta!",
|
"messageEvolve": "Has dominado a <%= egg %>, ¡vamos a dar una vuelta!",
|
||||||
"messageLikesFood": "¡A <%= egg %> le encanta <%= foodText %>!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "Tu <%= egg %> come <%= foodText %>, pero no parece que le guste.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Has comprado <%= itemText %>",
|
"messageBought": "Has comprado <%= itemText %>",
|
||||||
"messageEquipped": "<%= itemText %> equipado.",
|
"messageEquipped": "<%= itemText %> equipado.",
|
||||||
"messageUnEquipped": "Te has quitado <%= itemText %>.",
|
"messageUnEquipped": "Te has quitado <%= itemText %>.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "No tienes suficiente Oro",
|
"messageNotEnoughGold": "No tienes suficiente Oro",
|
||||||
"messageTwoHandedEquip": "Para empuñar <%= twoHandedText %> se necesitan dos manos, así que te has quitado <%= offHandedText %>.",
|
"messageTwoHandedEquip": "Para empuñar <%= twoHandedText %> se necesitan dos manos, así que te has quitado <%= offHandedText %>.",
|
||||||
"messageTwoHandedUnequip": "Para empuñar <%= twoHandedText %> se necesitan dos manos, así que te has quitado ese objeto al ponerte <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "Para empuñar <%= twoHandedText %> se necesitan dos manos, así que te has quitado ese objeto al ponerte <%= offHandedText %>.",
|
||||||
"messageDropFood": "¡Has encontrado un <%= dropArticle %><%= dropText %>! ",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "¡Has encontrado un huevo de <%= dropText %>!",
|
"messageDropEgg": "¡Has encontrado un huevo de <%= dropText %>!",
|
||||||
"messageDropPotion": "¡Has encontrado una poción de eclosión de <%= dropText %>!",
|
"messageDropPotion": "¡Has encontrado una poción de eclosión de <%= dropText %>!",
|
||||||
"messageDropQuest": "¡Has encontrado una misión!",
|
"messageDropQuest": "¡Has encontrado una misión!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Ya tienes el máximo de salud.",
|
"messageHealthAlreadyMax": "Ya tienes el máximo de salud.",
|
||||||
"messageHealthAlreadyMin": "¡Oh no! Ya has perdido completamente tu salud, por lo que es demasiado tarde para comprar una poción, pero no te preocupes - ¡puedes resucitar!",
|
"messageHealthAlreadyMin": "¡Oh no! Ya has perdido completamente tu salud, por lo que es demasiado tarde para comprar una poción, pero no te preocupes - ¡puedes resucitar!",
|
||||||
"armoireEquipment": "<%= image %> Has encontrado un objeto de equipamiento raro en el armario: <%= dropText %>! ¡Genial!",
|
"armoireEquipment": "<%= image %> Has encontrado un objeto de equipamiento raro en el armario: <%= dropText %>! ¡Genial!",
|
||||||
"armoireFood": "<%= image %> Hurgas en el Ropero y encuentras <%= dropArticle %><%= dropText %>. ¿Qué hace eso aquí?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Luchas con el Ropero y ganas Experiencia. ¡Toma eso!",
|
"armoireExp": "Luchas con el Ropero y ganas Experiencia. ¡Toma eso!",
|
||||||
"messageInsufficientGems": "No hay suficientes gemas!",
|
"messageInsufficientGems": "No hay suficientes gemas!",
|
||||||
"messageAuthPasswordMustMatch": "Las contraseñas no coinciden.",
|
"messageAuthPasswordMustMatch": "Las contraseñas no coinciden.",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "No eres dueño de esta mascota.",
|
"petNotOwned": "No eres dueño de esta mascota.",
|
||||||
"mountNotOwned": "No tienes esta montura.",
|
"mountNotOwned": "No tienes esta montura.",
|
||||||
"earnedCompanion": "Tu productividad te ha granjeado un nuevo acompañante. Aliméntalo y crecerá.",
|
"earnedCompanion": "Tu productividad te ha granjeado un nuevo acompañante. Aliméntalo y crecerá.",
|
||||||
"feedPet": "¿Dar de comer <%= article %><%= text %>a su <%= name %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "¿Ensillar <%= pet %>?",
|
"useSaddle": "¿Ensillar <%= pet %>?",
|
||||||
"raisedPet": "¡Creciste tu <%= pet %>!",
|
"raisedPet": "¡Creciste tu <%= pet %>!",
|
||||||
"earnedSteed": "¡Completando tus tareas te has ganado a un fiel corcel!",
|
"earnedSteed": "¡Completando tus tareas te has ganado a un fiel corcel!",
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@
|
||||||
"levelBonus": "Bonus de Nivel",
|
"levelBonus": "Bonus de Nivel",
|
||||||
"levelBonusText": "Cada atributo recibe un bonus de la mitad de (tu Nivel menos 1).",
|
"levelBonusText": "Cada atributo recibe un bonus de la mitad de (tu Nivel menos 1).",
|
||||||
"allocatedPoints": "Puntos asignados",
|
"allocatedPoints": "Puntos asignados",
|
||||||
"allocatedPointsText": "Stat Points you've earned and assigned. Assign Points using the Character Build column.",
|
"allocatedPointsText": "Puntos de Atributo que has conseguido y asignado. Asigna puntos usando la columna de Creación de Personaje.",
|
||||||
"allocated": "Asignados",
|
"allocated": "Asignados",
|
||||||
"buffs": "Mejoras",
|
"buffs": "Mejoras",
|
||||||
"buffsText": "Bonus temporales a los atributos dados por las habilidades y los logros. Éstos desaparecen cuando termina el día. Las habilidades que has desbloqueado aparecen en la lista de Recompensas de tu página de Tareas.",
|
"buffsText": "Bonus temporales a los atributos dados por las habilidades y los logros. Éstos desaparecen cuando termina el día. Las habilidades que has desbloqueado aparecen en la lista de Recompensas de tu página de Tareas.",
|
||||||
|
|
@ -139,7 +139,7 @@
|
||||||
"classAllocation": "Distribuir los puntos basándose en la clase",
|
"classAllocation": "Distribuir los puntos basándose en la clase",
|
||||||
"classAllocationPop": "Asignar más puntos a los atributos importantes para tu clase.",
|
"classAllocationPop": "Asignar más puntos a los atributos importantes para tu clase.",
|
||||||
"taskAllocation": "Distribuir los puntos según la actividad de tus tareas",
|
"taskAllocation": "Distribuir los puntos según la actividad de tus tareas",
|
||||||
"taskAllocationPop": "Assigns Points based on the Strength, Intelligence, Constitution, and Perception categories associated with the tasks you complete.",
|
"taskAllocationPop": "Asigna los puntos en Fuerza, Inteligencia, Constitución y Percepción, categorías asociadas según las tareas que completas.",
|
||||||
"distributePoints": "Distribuir puntos no asignados",
|
"distributePoints": "Distribuir puntos no asignados",
|
||||||
"distributePointsPop": "Asigna los puntos no distribuidos según el esquema de asignación seleccionado.",
|
"distributePointsPop": "Asigna los puntos no distribuidos según el esquema de asignación seleccionado.",
|
||||||
"warriorText": "Los Guerreros consiguen más y mejores \"golpes críticos\", los cuales otorgan bonus de Oro, Experiencia y probabilidad de botín al completar una tarea. También hacen graves daños a los monstruos jefes. ¡Juega como un Guerrero si te motivan las recompensas impredecibles como al ganar la lotería o si deseas ser la fuente de daño en las Misiones!",
|
"warriorText": "Los Guerreros consiguen más y mejores \"golpes críticos\", los cuales otorgan bonus de Oro, Experiencia y probabilidad de botín al completar una tarea. También hacen graves daños a los monstruos jefes. ¡Juega como un Guerrero si te motivan las recompensas impredecibles como al ganar la lotería o si deseas ser la fuente de daño en las Misiones!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Vierte esto sobre un huevo, y nacerá una mascota <%= potText(locale) %>.",
|
"hatchingPotionNotes": "Vierte esto sobre un huevo, y nacerá una mascota <%= potText(locale) %>.",
|
||||||
"premiumPotionAddlNotes": "No se puede usar con huevos de mascotas de misión.",
|
"premiumPotionAddlNotes": "No se puede usar con huevos de mascotas de misión.",
|
||||||
"foodMeat": "Carne",
|
"foodMeat": "Carne",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Leche",
|
"foodMilk": "Leche",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Papa",
|
"foodPotatoe": "Papa",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Fresa",
|
"foodStrawberry": "Fresa",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Chocolate",
|
"foodChocolate": "Chocolate",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Pescado",
|
"foodFish": "Pescado",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Carne Podrida",
|
"foodRottenMeat": "Carne Podrida",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Algodón de azúcar rosa",
|
"foodCottonCandyPink": "Algodón de azúcar rosa",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Algodón de azúcar azul",
|
"foodCottonCandyBlue": "Algodón de azúcar azul",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Miel",
|
"foodHoney": "Miel",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Pastel de huesos",
|
"foodCakeSkeleton": "Pastel de huesos",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Pastel básico",
|
"foodCakeBase": "Pastel básico",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Pastel de caramelo azul",
|
"foodCakeCottonCandyBlue": "Pastel de caramelo azul",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Pastel de caramelo rosa",
|
"foodCakeCottonCandyPink": "Pastel de caramelo rosa",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Pastel de chocolate",
|
"foodCakeShade": "Pastel de chocolate",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Pastel de crema",
|
"foodCakeWhite": "Pastel de crema",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Pastel de miel",
|
"foodCakeGolden": "Pastel de miel",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Pastel podrido",
|
"foodCakeZombie": "Pastel podrido",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Pastel de Arena",
|
"foodCakeDesert": "Pastel de Arena",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Pastel de Fresa",
|
"foodCakeRed": "Pastel de Fresa",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Caramelo de Huesos",
|
"foodCandySkeleton": "Caramelo de Huesos",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Caramelo Básico",
|
"foodCandyBase": "Caramelo Básico",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Caramelo Azul Agrio",
|
"foodCandyCottonCandyBlue": "Caramelo Azul Agrio",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Caramelo Rosa Agrio",
|
"foodCandyCottonCandyPink": "Caramelo Rosa Agrio",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Caramelo de Chocolate",
|
"foodCandyShade": "Caramelo de Chocolate",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Caramelo de Vainilla",
|
"foodCandyWhite": "Caramelo de Vainilla",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Caramelo de Miel",
|
"foodCandyGolden": "Caramelo de Miel",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Caramelo Podrido",
|
"foodCandyZombie": "Caramelo Podrido",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Caramelo de Arena",
|
"foodCandyDesert": "Caramelo de Arena",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Caramelo de Canela",
|
"foodCandyRed": "Caramelo de Canela",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Silla de Montar",
|
"foodSaddleText": "Silla de Montar",
|
||||||
"foodSaddleNotes": "Convierte instantáneamente a una de tus mascotas en una montura.",
|
"foodSaddleNotes": "Convierte instantáneamente a una de tus mascotas en una montura.",
|
||||||
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Bastón de Esquia-sesino",
|
"weaponSpecialSkiText": "Bastón de Esquia-sesino",
|
||||||
"weaponSpecialSkiNotes": "¡Un arma capaz de destruir hordas de enemigos! También permite al portador dar vueltas paralelas perfectas. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Invierno 2013-2014.",
|
"weaponSpecialSkiNotes": "¡Un arma capaz de destruir hordas de enemigos! También permite al portador dar vueltas paralelas perfectas. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Invierno 2013-2014.",
|
||||||
"weaponSpecialCandycaneText": "Báculo de Caramelo",
|
"weaponSpecialCandycaneText": "Báculo de Caramelo",
|
||||||
"weaponSpecialCandycaneNotes": "Un poderoso báculo de mago. ¡Poderosamente DELICIOSO, quisimos decir! Arma de dos manos. Incrementa la Inteligencia por <%= int %> y la Percepción por <%= per %>. Equipamiento de Edición Limitada de Invierno 2013-2014.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Varita de Copo de Nieve",
|
"weaponSpecialSnowflakeText": "Varita de Copo de Nieve",
|
||||||
"weaponSpecialSnowflakeNotes": "Esta vara mágica centellea con poder curativo ilimitado. Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Invierno 2013-2014.",
|
"weaponSpecialSnowflakeNotes": "Esta vara mágica centellea con poder curativo ilimitado. Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Invierno 2013-2014.",
|
||||||
"weaponSpecialSpringRogueText": "Garras de Gancho",
|
"weaponSpecialSpringRogueText": "Garras de Gancho",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Máscara de pavo real",
|
"eyewearMystery301703Text": "Máscara de pavo real",
|
||||||
"eyewearMystery301703Notes": "Perfecta para un baile de máscaras o para moverse en secreto en una multitud muy bien vestida. No otorga ningún beneficio. Artículo de suscriptor de marzo 3017.",
|
"eyewearMystery301703Notes": "Perfecta para un baile de máscaras o para moverse en secreto en una multitud muy bien vestida. No otorga ningún beneficio. Artículo de suscriptor de marzo 3017.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Máscara de Médico de la Peste",
|
"eyewearArmoirePlagueDoctorMaskText": "Máscara de Médico de la Peste",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Una máscara auténtica usada por los médicos que luchan contra la Peste de la Procrastinación. No otorga ningún beneficio. Armario Encantado: Conjunto de Médico de la Peste (Artículo 2 de 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Una máscara auténtica usada por los médicos que luchan contra la Peste de la Procrastinación. No otorga ningún beneficio. Armario Encantado: Conjunto de Médico de la Peste (Artículo 2 de 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "¡Ayudó a vencer al Obnubilave durante el Evento Fiesta de Primavera 2016!",
|
"achievementBewilderText": "¡Ayudó a vencer al Obnubilave durante el Evento Fiesta de Primavera 2016!",
|
||||||
"checkOutProgress": "¡Echa un vistazo a mi progreso en Habitica!",
|
"checkOutProgress": "¡Echa un vistazo a mi progreso en Habitica!",
|
||||||
"cards": "Tarjetas",
|
"cards": "Tarjetas",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Tarjeta de Felicitación",
|
"greetingCard": "Tarjeta de Felicitación",
|
||||||
"greetingCardExplanation": "¡Ambos reciben el logro Alegre Amigo!",
|
"greetingCardExplanation": "¡Ambos reciben el logro Alegre Amigo!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "No se pudo alimentar a esta mascota.",
|
"messageCannotFeedPet": "No se pudo alimentar a esta mascota.",
|
||||||
"messageAlreadyMount": "Ya posees esta montura. Intenta alimentar a otra mascota.",
|
"messageAlreadyMount": "Ya posees esta montura. Intenta alimentar a otra mascota.",
|
||||||
"messageEvolve": "Has domesticado a <%= egg %>, ¡vamos a dar una vuelta!",
|
"messageEvolve": "Has domesticado a <%= egg %>, ¡vamos a dar una vuelta!",
|
||||||
"messageLikesFood": "¡A <%= egg %> le encanta el/la <%= foodText %>!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> come el/la <%= foodText %> pero no parece disfrutarlo.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Compraste <%= itemText %>",
|
"messageBought": "Compraste <%= itemText %>",
|
||||||
"messageEquipped": "<%= itemText %> ha sido equipad@.",
|
"messageEquipped": "<%= itemText %> ha sido equipad@.",
|
||||||
"messageUnEquipped": "<%= itemText %> ha sido removid@.",
|
"messageUnEquipped": "<%= itemText %> ha sido removid@.",
|
||||||
|
|
@ -21,9 +21,9 @@
|
||||||
"messageNotEnoughGold": "No tienes oro suficiente",
|
"messageNotEnoughGold": "No tienes oro suficiente",
|
||||||
"messageTwoHandedEquip": "Empuñar <%= twoHandedText %> requiere dos manos, por lo cual <%= offHandedText %> ha sido removid@.",
|
"messageTwoHandedEquip": "Empuñar <%= twoHandedText %> requiere dos manos, por lo cual <%= offHandedText %> ha sido removid@.",
|
||||||
"messageTwoHandedUnequip": "Empuñar <%= twoHandedText %> requiere dos manos, por lo cual fue removido cuando equipaste <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "Empuñar <%= twoHandedText %> requiere dos manos, por lo cual fue removido cuando equipaste <%= offHandedText %>.",
|
||||||
"messageDropFood": "¡Has encontrado <%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "¡Has encontrado un Huevo de <%= dropText %>!",
|
"messageDropEgg": "¡Has encontrado un Huevo de <%= dropText %>!",
|
||||||
"messageDropPotion": "You've found a <%= dropText %> Hatching Potion!",
|
"messageDropPotion": "¡Has encontrado una Poción de eclosión <%= dropText %> !",
|
||||||
"messageDropQuest": "¡Has encontrado una misión!",
|
"messageDropQuest": "¡Has encontrado una misión!",
|
||||||
"messageDropMysteryItem": "¡Abres la caja y encuentras <%= dropText %>!",
|
"messageDropMysteryItem": "¡Abres la caja y encuentras <%= dropText %>!",
|
||||||
"messageFoundQuest": "¡Has encontrado la misión \"<%= questText %>\"!",
|
"messageFoundQuest": "¡Has encontrado la misión \"<%= questText %>\"!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Tu salud ya se encuentra en el nivel máximo.",
|
"messageHealthAlreadyMax": "Tu salud ya se encuentra en el nivel máximo.",
|
||||||
"messageHealthAlreadyMin": "¡Oh no! Te has quedado sin salud y es muy tarde para comprar una poción, pero no te preocupes - ¡puedes revivir!",
|
"messageHealthAlreadyMin": "¡Oh no! Te has quedado sin salud y es muy tarde para comprar una poción, pero no te preocupes - ¡puedes revivir!",
|
||||||
"armoireEquipment": "<%= image %> Hallaste una pieza de Equipamiento raro en el Armario: ¡<%= dropText %>! ¡Genial!",
|
"armoireEquipment": "<%= image %> Hallaste una pieza de Equipamiento raro en el Armario: ¡<%= dropText %>! ¡Genial!",
|
||||||
"armoireFood": "<%= image %> Hurgas en el Armario y encuentras <%= dropArticle %><%= dropText %>. ¿Que hacía eso ahí?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Luchas con el Armario y ganas Experiencia. ¡Toma esto!",
|
"armoireExp": "Luchas con el Armario y ganas Experiencia. ¡Toma esto!",
|
||||||
"messageInsufficientGems": "¡No tienes suficientes gemas!",
|
"messageInsufficientGems": "¡No tienes suficientes gemas!",
|
||||||
"messageAuthPasswordMustMatch": ":password y :confirmPassword no coinciden",
|
"messageAuthPasswordMustMatch": ":password y :confirmPassword no coinciden",
|
||||||
|
|
@ -53,12 +53,12 @@
|
||||||
"messageGroupChatFlagAlreadyReported": "Ya has denunciado este mensaje",
|
"messageGroupChatFlagAlreadyReported": "Ya has denunciado este mensaje",
|
||||||
"messageGroupChatNotFound": "¡Mensaje no encontrado!",
|
"messageGroupChatNotFound": "¡Mensaje no encontrado!",
|
||||||
"messageGroupChatAdminClearFlagCount": "¡Sólo un administrador puede borrar el número de denuncias!",
|
"messageGroupChatAdminClearFlagCount": "¡Sólo un administrador puede borrar el número de denuncias!",
|
||||||
"messageCannotFlagSystemMessages": "You cannot flag a system message. If you need to report a violation of the Community Guidelines related to this message, please email a screenshot and explanation to Lemoness at <%= communityManagerEmail %>.",
|
"messageCannotFlagSystemMessages": "No puedes marcar un mensaje del sistema. Si necesitas informar una infracción de las Normas de la comunidad relacionadas con este mensaje, envíe un mensaje de correo electrónico con una captura de pantalla y una explicación a Lemoness <%= communityManagerEmail %>.",
|
||||||
"messageGroupChatSpam": "Ups, ¡parece que estás publicando demasiados mensajes! Espera un minuto y vuelve a intentarlo. El chat de la Taberna solo puede con 200 mensajes a la vez, por lo que Habitica recomienda publicar mensajes más largos y meditados, así como respuestas unificadas. No podemos esperar a oir lo que tienes que decir. :)",
|
"messageGroupChatSpam": "Ups, ¡parece que estás publicando demasiados mensajes! Espera un minuto y vuelve a intentarlo. El chat de la Taberna solo puede con 200 mensajes a la vez, por lo que Habitica recomienda publicar mensajes más largos y meditados, así como respuestas unificadas. No podemos esperar a oir lo que tienes que decir. :)",
|
||||||
"messageUserOperationProtected": "la ruta `<%= operation %>` no ha sido guardada, ya que es una ruta protegida.",
|
"messageUserOperationProtected": "la ruta `<%= operation %>` no ha sido guardada, ya que es una ruta protegida.",
|
||||||
"messageUserOperationNotFound": "<%= operation %> operación no encontrada",
|
"messageUserOperationNotFound": "<%= operation %> operación no encontrada",
|
||||||
"messageNotificationNotFound": "Notificación no encontrada.",
|
"messageNotificationNotFound": "Notificación no encontrada.",
|
||||||
"notificationsRequired": "Se requiere el ID de notificación.",
|
"notificationsRequired": "Se requiere el ID de notificación.",
|
||||||
"unallocatedStatsPoints": "You have <span class=\"notification-bold-blue\"><%= points %> unallocated Stat Points</span>",
|
"unallocatedStatsPoints": "Tienes <span class=\"notification-bold-blue\"><%= points %> Puntos de Atributo sin asignar </span>",
|
||||||
"beginningOfConversation": "This is the beginning of your conversation with <%= userName %>. Remember to be kind, respectful, and follow the Community Guidelines!"
|
"beginningOfConversation": "Este es el comienzo de tu conversación con <%= userName %>. ¡Recuerda ser amable, respetuoso y seguir las Normas de la Comunidad!"
|
||||||
}
|
}
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "No posees esta mascota.",
|
"petNotOwned": "No posees esta mascota.",
|
||||||
"mountNotOwned": "No tienes esta montura.",
|
"mountNotOwned": "No tienes esta montura.",
|
||||||
"earnedCompanion": "Con toda tu productividad, has obtenido un nuevo compañero. ¡Aliméntalo para hacerlo crecer!",
|
"earnedCompanion": "Con toda tu productividad, has obtenido un nuevo compañero. ¡Aliméntalo para hacerlo crecer!",
|
||||||
"feedPet": "¿Dar de comer <%= article %><%= text %> a tu <%= name %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "¿Ensillar <%= pet %>?",
|
"useSaddle": "¿Ensillar <%= pet %>?",
|
||||||
"raisedPet": "¡Has criado un/a <%= pet %>!",
|
"raisedPet": "¡Has criado un/a <%= pet %>!",
|
||||||
"earnedSteed": "Por completar tus tareas, ¡has obtenido un fiel corcel!",
|
"earnedSteed": "Por completar tus tareas, ¡has obtenido un fiel corcel!",
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
"questInvitation": "Invitación a una misión:",
|
"questInvitation": "Invitación a una misión:",
|
||||||
"questInvitationTitle": "Invitación a una misión",
|
"questInvitationTitle": "Invitación a una misión",
|
||||||
"questInvitationInfo": "Invitación para la misión <%= quest %>",
|
"questInvitationInfo": "Invitación para la misión <%= quest %>",
|
||||||
"invitedToQuest": "You were invited to the Quest <span class=\"notification-bold-blue\"><%= quest %></span>",
|
"invitedToQuest": "Has sido invitado a la Misión <span class=\"notification-bold-blue\"><%= quest %></span>",
|
||||||
"askLater": "Preguntar más tarde",
|
"askLater": "Preguntar más tarde",
|
||||||
"questLater": "Realizar misión más tarde",
|
"questLater": "Realizar misión más tarde",
|
||||||
"buyQuest": "Comprar misión",
|
"buyQuest": "Comprar misión",
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"rebirthOrb": "Ha utilizado una esfera de renacimiento para empezar de nuevo luego de alcanzar el nivel <%= level %>.",
|
"rebirthOrb": "Ha utilizado una esfera de renacimiento para empezar de nuevo luego de alcanzar el nivel <%= level %>.",
|
||||||
"rebirthOrb100": "Ha usado una Esfera de renacimiento para volver a empezar al alcanzar el nivel 100 o más.",
|
"rebirthOrb100": "Ha usado una Esfera de renacimiento para volver a empezar al alcanzar el nivel 100 o más.",
|
||||||
"rebirthOrbNoLevel": "Ha utilizado una esfera de renacimiento para comenzar de nuevo.",
|
"rebirthOrbNoLevel": "Ha utilizado una esfera de renacimiento para comenzar de nuevo.",
|
||||||
"rebirthPop": "Instantly restart your character as a Level 1 Warrior while retaining achievements, collectibles, and equipment. Your tasks and their history will remain but they will be reset to yellow. Your streaks will be removed except from challenge tasks. Your Gold, Experience, Mana, and the effects of all Skills will be removed. All of this will take effect immediately. For more information, see the wiki's <a href='http://habitica.wikia.com/wiki/Orb_of_Rebirth' target='_blank'>Orb of Rebirth</a> page.",
|
"rebirthPop": "Reinicia instantáneamente tu personaje a Guerrero nivel 1, manteniendo tus Logros, Coleccionables y Equipamiento. Tus Tareas y su historial se mantendrán pero se volverás amarillas.\nTus rachas serán removidas exceptuando aquellas de tareas que provengan de desafíos. Tu Oro, Experiencia, Maná, y los efectos de todas las Habilidades serán removidas. Todo esto tomará efecto inmediatamente. Para mas información, ve la página <a href='http://habitica.wikia.com/wiki/Orb_of_Rebirth' target='_blank'>Esfera de renacimiento</a> en la Wiki.",
|
||||||
"rebirthName": "Esfera de Renacimiento",
|
"rebirthName": "Esfera de Renacimiento",
|
||||||
"reborn": "Renacido, nivel máximo <%= reLevel %>",
|
"reborn": "Renacido, nivel máximo <%= reLevel %>",
|
||||||
"confirmReborn": "¿Estás seguro?",
|
"confirmReborn": "¿Estás seguro?",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Versez-la sur un œuf et il en sortira un familier <%= potText(locale) %>.",
|
"hatchingPotionNotes": "Versez-la sur un œuf et il en sortira un familier <%= potText(locale) %>.",
|
||||||
"premiumPotionAddlNotes": "N'est pas utilisable sur les œufs de quête.",
|
"premiumPotionAddlNotes": "N'est pas utilisable sur les œufs de quête.",
|
||||||
"foodMeat": "Côtelette",
|
"foodMeat": "Côtelette",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Bouteille de lait",
|
"foodMilk": "Bouteille de lait",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Pomme de terre",
|
"foodPotatoe": "Pomme de terre",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Fraise",
|
"foodStrawberry": "Fraise",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Tablette de chocolat",
|
"foodChocolate": "Tablette de chocolat",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Sardine",
|
"foodFish": "Sardine",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Côtelette avariée",
|
"foodRottenMeat": "Côtelette avariée",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Barbe-à-papa rose",
|
"foodCottonCandyPink": "Barbe-à-papa rose",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Barbe-à-papa bleue",
|
"foodCottonCandyBlue": "Barbe-à-papa bleue",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Once de miel",
|
"foodHoney": "Once de miel",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Pâtisserie à l'os",
|
"foodCakeSkeleton": "Pâtisserie à l'os",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Pâtisserie simple",
|
"foodCakeBase": "Pâtisserie simple",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Pâtisserie au sucre bleu",
|
"foodCakeCottonCandyBlue": "Pâtisserie au sucre bleu",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Pâtisserie au sucre rose",
|
"foodCakeCottonCandyPink": "Pâtisserie au sucre rose",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Pâtisserie au chocolat",
|
"foodCakeShade": "Pâtisserie au chocolat",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Pâtisserie à la crème",
|
"foodCakeWhite": "Pâtisserie à la crème",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Pâtisserie au miel",
|
"foodCakeGolden": "Pâtisserie au miel",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Pâtisserie avariée",
|
"foodCakeZombie": "Pâtisserie avariée",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Pâtisserie sablée",
|
"foodCakeDesert": "Pâtisserie sablée",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Pâtisserie à la fraise",
|
"foodCakeRed": "Pâtisserie à la fraise",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Friandise à l'os",
|
"foodCandySkeleton": "Friandise à l'os",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Friandise simple",
|
"foodCandyBase": "Friandise simple",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Friandise langue-bleue",
|
"foodCandyCottonCandyBlue": "Friandise langue-bleue",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Friandise langue-rose",
|
"foodCandyCottonCandyPink": "Friandise langue-rose",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Friandise au chocolat",
|
"foodCandyShade": "Friandise au chocolat",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Friandise vanillée",
|
"foodCandyWhite": "Friandise vanillée",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Friandise au miel",
|
"foodCandyGolden": "Friandise au miel",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Friandise infecte",
|
"foodCandyZombie": "Friandise infecte",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Friandise sablée",
|
"foodCandyDesert": "Friandise sablée",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Friandise à la cannelle",
|
"foodCandyRed": "Friandise à la cannelle",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Selle",
|
"foodSaddleText": "Selle",
|
||||||
"foodSaddleNotes": "Transforme directement l'un de vos familiers en monture.",
|
"foodSaddleNotes": "Transforme directement l'un de vos familiers en monture.",
|
||||||
"foodSaddleSellWarningNote": "Hé ! Cet objet est super utile ! Savez-vous comment utiliser une selle sur vos familiers ?",
|
"foodSaddleSellWarningNote": "Hé ! Cet objet est super utile ! Savez-vous comment utiliser une selle sur vos familiers ?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Bâton de ski-ssassin",
|
"weaponSpecialSkiText": "Bâton de ski-ssassin",
|
||||||
"weaponSpecialSkiNotes": "Une arme capable de détruire des hordes d'ennemis ! Elle permet aussi à son porteur d'effectuer de jolis virages parallèles. Augmente la Force de <%= str %>. Équipement en édition limitée de l'hiver 2013-2014.",
|
"weaponSpecialSkiNotes": "Une arme capable de détruire des hordes d'ennemis ! Elle permet aussi à son porteur d'effectuer de jolis virages parallèles. Augmente la Force de <%= str %>. Équipement en édition limitée de l'hiver 2013-2014.",
|
||||||
"weaponSpecialCandycaneText": "Bâton en sucre d'orge",
|
"weaponSpecialCandycaneText": "Bâton en sucre d'orge",
|
||||||
"weaponSpecialCandycaneNotes": "Un puissant bâton de mage. Puissamment DÉLICIEUX, en vérité ! Arme à deux mains. Augmente l'Intelligence de <%= int %> et la Perception de <%= per %>. Équipement en édition limitée de l'hiver 2013-2014.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Baguette flocon-de-neige",
|
"weaponSpecialSnowflakeText": "Baguette flocon-de-neige",
|
||||||
"weaponSpecialSnowflakeNotes": "Cette baguette brille d'un pouvoir de guérison illimité. Augmente l'Intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2013-2014.",
|
"weaponSpecialSnowflakeNotes": "Cette baguette brille d'un pouvoir de guérison illimité. Augmente l'Intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2013-2014.",
|
||||||
"weaponSpecialSpringRogueText": "Griffes-crochet",
|
"weaponSpecialSpringRogueText": "Griffes-crochet",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Masque de paon de mascarade",
|
"eyewearMystery301703Text": "Masque de paon de mascarade",
|
||||||
"eyewearMystery301703Notes": "Parfait pour un chouette défilé... ou pour se fondre subrepticement dans une foule particulièrement bien habillée. N'apporte aucun bonus. Équipement d'abonné·e de mars 3017.",
|
"eyewearMystery301703Notes": "Parfait pour un chouette défilé... ou pour se fondre subrepticement dans une foule particulièrement bien habillée. N'apporte aucun bonus. Équipement d'abonné·e de mars 3017.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Masque de médecin de la peste",
|
"eyewearArmoirePlagueDoctorMaskText": "Masque de médecin de la peste",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Un authentique masque porté par les médecins qui ont combattu la peste de Procrastination ! N'apporte aucun bonus. Armoire enchantée : ensemble du médecin de la peste (objet 2 sur 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Un authentique masque porté par les médecins qui ont combattu la peste de Procrastination ! N'apporte aucun bonus. Armoire enchantée : ensemble du médecin de la peste (objet 2 sur 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "A contribué à vaincre l'Être Déchaîné au cours de l'événement Ménage de Printemps 2016 !",
|
"achievementBewilderText": "A contribué à vaincre l'Être Déchaîné au cours de l'événement Ménage de Printemps 2016 !",
|
||||||
"checkOutProgress": "Regardez mes progrès sur Habitica !",
|
"checkOutProgress": "Regardez mes progrès sur Habitica !",
|
||||||
"cards": "Cartes",
|
"cards": "Cartes",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Carte de vœux",
|
"greetingCard": "Carte de vœux",
|
||||||
"greetingCardExplanation": "Ont tous les deux reçu le succès Pote Joyeux !",
|
"greetingCardExplanation": "Ont tous les deux reçu le succès Pote Joyeux !",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Vous ne pouvez pas nourrir ce familier.",
|
"messageCannotFeedPet": "Vous ne pouvez pas nourrir ce familier.",
|
||||||
"messageAlreadyMount": "Vous avez déjà cette monture. Essayez de nourrir un autre familier.",
|
"messageAlreadyMount": "Vous avez déjà cette monture. Essayez de nourrir un autre familier.",
|
||||||
"messageEvolve": "Votre <%= egg %> a grandi, baladez-vous dessus !",
|
"messageEvolve": "Votre <%= egg %> a grandi, baladez-vous dessus !",
|
||||||
"messageLikesFood": "Votre <%= egg %> apprécie vraiment votre <%= foodText %> !",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "Votre <%= egg %> teste votre <%= foodText %>, mais n'a pas l'air d'aimer ça.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Vous avez acheté : <%= itemText %>.",
|
"messageBought": "Vous avez acheté : <%= itemText %>.",
|
||||||
"messageEquipped": "Vous portez : <%= itemText %>.",
|
"messageEquipped": "Vous portez : <%= itemText %>.",
|
||||||
"messageUnEquipped": "Vous enlevez : <%= itemText %>.",
|
"messageUnEquipped": "Vous enlevez : <%= itemText %>.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Pas assez d'Or",
|
"messageNotEnoughGold": "Pas assez d'Or",
|
||||||
"messageTwoHandedEquip": "Manier ceci demande deux mains : <%= twoHandedText %>. Vous ne portez donc plus ceci : <%= offHandedText %>.",
|
"messageTwoHandedEquip": "Manier ceci demande deux mains : <%= twoHandedText %>. Vous ne portez donc plus ceci : <%= offHandedText %>.",
|
||||||
"messageTwoHandedUnequip": "Manier ceci demande deux mains : <%= twoHandedText %>. Vous ne le portez donc plus car vous vous avez saisi ceci : <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "Manier ceci demande deux mains : <%= twoHandedText %>. Vous ne le portez donc plus car vous vous avez saisi ceci : <%= offHandedText %>.",
|
||||||
"messageDropFood": "Vous avez trouvé une <%= dropText %> ! <!-- <%= dropArticle %>-->",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Vous avez trouvé un œuf de <%= dropText %> !",
|
"messageDropEgg": "Vous avez trouvé un œuf de <%= dropText %> !",
|
||||||
"messageDropPotion": "Vous avez trouvé une potion d'éclosion <%= dropText %> !",
|
"messageDropPotion": "Vous avez trouvé une potion d'éclosion <%= dropText %> !",
|
||||||
"messageDropQuest": "Vous avez trouvé une quête !",
|
"messageDropQuest": "Vous avez trouvé une quête !",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Votre santé est déjà à son maximum.",
|
"messageHealthAlreadyMax": "Votre santé est déjà à son maximum.",
|
||||||
"messageHealthAlreadyMin": "Ho non ! Votre santé est déjà tombée au plus bas et il est trop tard pour acheter une potion de santé ! Mais pas de panique... vous pouvez revivre !",
|
"messageHealthAlreadyMin": "Ho non ! Votre santé est déjà tombée au plus bas et il est trop tard pour acheter une potion de santé ! Mais pas de panique... vous pouvez revivre !",
|
||||||
"armoireEquipment": "<%= image %> Vous avez trouvé une pièce d'équipement rare dans l'armoire : <%= dropText %> ! Génial !",
|
"armoireEquipment": "<%= image %> Vous avez trouvé une pièce d'équipement rare dans l'armoire : <%= dropText %> ! Génial !",
|
||||||
"armoireFood": "<%= image %> Vous farfouillez dans l'Armoire et trouvez une <%= dropText %>. Qu'est-ce que ça fait là ?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Vous luttez contre l'armoire et gagnez de l'expérience. Prends ça !",
|
"armoireExp": "Vous luttez contre l'armoire et gagnez de l'expérience. Prends ça !",
|
||||||
"messageInsufficientGems": "Pas assez de gemmes!",
|
"messageInsufficientGems": "Pas assez de gemmes!",
|
||||||
"messageAuthPasswordMustMatch": ":password et :confirmPassword ne correspondent pas",
|
"messageAuthPasswordMustMatch": ":password et :confirmPassword ne correspondent pas",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Vous ne possédez pas ce familier.",
|
"petNotOwned": "Vous ne possédez pas ce familier.",
|
||||||
"mountNotOwned": "Vous ne possédez pas cette monture.",
|
"mountNotOwned": "Vous ne possédez pas cette monture.",
|
||||||
"earnedCompanion": "Grâce à votre productivité, vous avez gagné un nouveau compagnon. Nourrissez-le pour le faire grandir !",
|
"earnedCompanion": "Grâce à votre productivité, vous avez gagné un nouveau compagnon. Nourrissez-le pour le faire grandir !",
|
||||||
"feedPet": "Donner cette <%= text %> à votre <%= name %> ?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Seller <%= pet %> ?",
|
"useSaddle": "Seller <%= pet %> ?",
|
||||||
"raisedPet": "Votre <%= pet %> a bien grandi !",
|
"raisedPet": "Votre <%= pet %> a bien grandi !",
|
||||||
"earnedSteed": "En effectuant vos tâches, vous avez gagné un fidèle coursier !",
|
"earnedSteed": "En effectuant vos tâches, vous avez gagné un fidèle coursier !",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "מזוג שיקוי זה על ביצה, והיא תבקע כ: <%= potText(locale) %>.",
|
"hatchingPotionNotes": "מזוג שיקוי זה על ביצה, והיא תבקע כ: <%= potText(locale) %>.",
|
||||||
"premiumPotionAddlNotes": "לא ניתן לשימוש על ביצי הרפתקאות.",
|
"premiumPotionAddlNotes": "לא ניתן לשימוש על ביצי הרפתקאות.",
|
||||||
"foodMeat": "בשר",
|
"foodMeat": "בשר",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "חלב",
|
"foodMilk": "חלב",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "תפוח אדמה",
|
"foodPotatoe": "תפוח אדמה",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "תות",
|
"foodStrawberry": "תות",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "שוקולד",
|
"foodChocolate": "שוקולד",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "דג",
|
"foodFish": "דג",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "בשר רקוב",
|
"foodRottenMeat": "בשר רקוב",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "סוכר שמבלולו ורוד",
|
"foodCottonCandyPink": "סוכר שמבלולו ורוד",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "סוכר שמבלולו כחול",
|
"foodCottonCandyBlue": "סוכר שמבלולו כחול",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "דבש",
|
"foodHoney": "דבש",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "עוגת עצמות",
|
"foodCakeSkeleton": "עוגת עצמות",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "עוגה רגילה",
|
"foodCakeBase": "עוגה רגילה",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "עוגת ממתקים כחולה",
|
"foodCakeCottonCandyBlue": "עוגת ממתקים כחולה",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "עוגת ממתקים ורודה",
|
"foodCakeCottonCandyPink": "עוגת ממתקים ורודה",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "עוגת שוקולד",
|
"foodCakeShade": "עוגת שוקולד",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "עוגת קצפת",
|
"foodCakeWhite": "עוגת קצפת",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "עוגת דבש",
|
"foodCakeGolden": "עוגת דבש",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "עוגה רקובה",
|
"foodCakeZombie": "עוגה רקובה",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "עוגת חול",
|
"foodCakeDesert": "עוגת חול",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "עוגת תותים",
|
"foodCakeRed": "עוגת תותים",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "סוכריית עצמות חשופות",
|
"foodCandySkeleton": "סוכריית עצמות חשופות",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "סוכריה רגילה",
|
"foodCandyBase": "סוכריה רגילה",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "סוכריה חמוצה כחולה",
|
"foodCandyCottonCandyBlue": "סוכריה חמוצה כחולה",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "סוכריה חמוצה ורודה",
|
"foodCandyCottonCandyPink": "סוכריה חמוצה ורודה",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "סוכריית שוקולד",
|
"foodCandyShade": "סוכריית שוקולד",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "סוכריית וניל",
|
"foodCandyWhite": "סוכריית וניל",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "סוכריית דבש",
|
"foodCandyGolden": "סוכריית דבש",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "סוכריה רקובה",
|
"foodCandyZombie": "סוכריה רקובה",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "סוכריית חול",
|
"foodCandyDesert": "סוכריית חול",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "סוכריית קינמון",
|
"foodCandyRed": "סוכריית קינמון",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "אוכף",
|
"foodSaddleText": "אוכף",
|
||||||
"foodSaddleNotes": "הופך חיית מחמד לחיית רכיבה בין רגע!",
|
"foodSaddleNotes": "הופך חיית מחמד לחיית רכיבה בין רגע!",
|
||||||
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "מוט מתנקש-סקי",
|
"weaponSpecialSkiText": "מוט מתנקש-סקי",
|
||||||
"weaponSpecialSkiNotes": "נשק המאפשר להביס להקות של אויבים! ובנוסף, מאפשר למשתמש לבצע פניות מקבילות חינניות. מגביר את הכח ב <%= str %>. מהדורה מוגבלת, ציוד חורף 2013-2014 .",
|
"weaponSpecialSkiNotes": "נשק המאפשר להביס להקות של אויבים! ובנוסף, מאפשר למשתמש לבצע פניות מקבילות חינניות. מגביר את הכח ב <%= str %>. מהדורה מוגבלת, ציוד חורף 2013-2014 .",
|
||||||
"weaponSpecialCandycaneText": "מטה סוכרייה על מקל",
|
"weaponSpecialCandycaneText": "מטה סוכרייה על מקל",
|
||||||
"weaponSpecialCandycaneNotes": "מטה מכשף עוצמתי. הוא עוצמתי באופן טעים במיוחד! נשק זה דורש שני ידיים. מעלה את התבונה ב<%= int %> , ואת התפיסה ב<%= per %> נקודות. מהדורה מוגבלת, ציוד חורף 2013-2014.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "שרביט פתית",
|
"weaponSpecialSnowflakeText": "שרביט פתית",
|
||||||
"weaponSpecialSnowflakeNotes": "שרביט זה בוהק ביכולת ריפוי בלתי נלאית. מגביר את התבונה ב<%= int %> נקודות. מהדורת מוגבלת, ציוד חורף 2013-2014.",
|
"weaponSpecialSnowflakeNotes": "שרביט זה בוהק ביכולת ריפוי בלתי נלאית. מגביר את התבונה ב<%= int %> נקודות. מהדורת מוגבלת, ציוד חורף 2013-2014.",
|
||||||
"weaponSpecialSpringRogueText": "טפרי קרס",
|
"weaponSpecialSpringRogueText": "טפרי קרס",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
||||||
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "מסכת דוקטור מגפה",
|
"eyewearArmoirePlagueDoctorMaskText": "מסכת דוקטור מגפה",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "מסכה אותנטית שנחבשה על-ידי הרופאים שנלחמו במגפת הדחיינות. לא מקנה ייתרון. ארמואר קסום: סט דוקטור מגפה (עצם 2 מתוך 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "מסכה אותנטית שנחבשה על-ידי הרופאים שנלחמו במגפת הדחיינות. לא מקנה ייתרון. ארמואר קסום: סט דוקטור מגפה (עצם 2 מתוך 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "סייעתם להביס את המש-תומם במהלך ארוע הפלינג האביבי 2016!",
|
"achievementBewilderText": "סייעתם להביס את המש-תומם במהלך ארוע הפלינג האביבי 2016!",
|
||||||
"checkOutProgress": "תראו את ההתקדמות שלי בהביטיקה!",
|
"checkOutProgress": "תראו את ההתקדמות שלי בהביטיקה!",
|
||||||
"cards": "Cards",
|
"cards": "Cards",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "כרטיס ברכה",
|
"greetingCard": "כרטיס ברכה",
|
||||||
"greetingCardExplanation": "שניכם קיבלתם את הישג החבר העליז!",
|
"greetingCardExplanation": "שניכם קיבלתם את הישג החבר העליז!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "אינך יכול להאכיל חיה זו.",
|
"messageCannotFeedPet": "אינך יכול להאכיל חיה זו.",
|
||||||
"messageAlreadyMount": "כבר השגת את חיית הרכיבה הזו. נסה להאכיל חיה אחרת.",
|
"messageAlreadyMount": "כבר השגת את חיית הרכיבה הזו. נסה להאכיל חיה אחרת.",
|
||||||
"messageEvolve": "הצלחתם לאלף <%= egg %>, בואו נצא לרכיבה!",
|
"messageEvolve": "הצלחתם לאלף <%= egg %>, בואו נצא לרכיבה!",
|
||||||
"messageLikesFood": "<%= egg %> נהנה לאכול <%= foodText %>!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> אכל את ה<%= foodText %> אך לא נראה שהוא נהנה במיוחד.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "קנית <%= itemText %>",
|
"messageBought": "קנית <%= itemText %>",
|
||||||
"messageEquipped": "הצטיידת ב<%= itemText %>",
|
"messageEquipped": "הצטיידת ב<%= itemText %>",
|
||||||
"messageUnEquipped": "<%= itemText %> לא מצוייד.",
|
"messageUnEquipped": "<%= itemText %> לא מצוייד.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "אין מספיק זהב",
|
"messageNotEnoughGold": "אין מספיק זהב",
|
||||||
"messageTwoHandedEquip": "אחיזה ב<%= twoHandedText %> דורשת שתי ידיים, ולכן הורדתם את <%= offHandedText %>.",
|
"messageTwoHandedEquip": "אחיזה ב<%= twoHandedText %> דורשת שתי ידיים, ולכן הורדתם את <%= offHandedText %>.",
|
||||||
"messageTwoHandedUnequip": "אחיזה ב<%= twoHandedText %> דורשת שתי ידיים, ולכן הורדתם את הציוד הזה כשהתחמשתם ב<%= offHandedText %>.",
|
"messageTwoHandedUnequip": "אחיזה ב<%= twoHandedText %> דורשת שתי ידיים, ולכן הורדתם את הציוד הזה כשהתחמשתם ב<%= offHandedText %>.",
|
||||||
"messageDropFood": "You've found <%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "You've found a <%= dropText %> Egg!",
|
"messageDropEgg": "You've found a <%= dropText %> Egg!",
|
||||||
"messageDropPotion": "You've found a <%= dropText %> Hatching Potion!",
|
"messageDropPotion": "You've found a <%= dropText %> Hatching Potion!",
|
||||||
"messageDropQuest": "מצאתם הרפתקה!",
|
"messageDropQuest": "מצאתם הרפתקה!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "כבר יש לכם את הבריאות המקסימלית.",
|
"messageHealthAlreadyMax": "כבר יש לכם את הבריאות המקסימלית.",
|
||||||
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
|
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
|
||||||
"armoireEquipment": "<%= image %> מצאתם ציוד נדיר בארמואר: <%= dropText %>! מגניב!",
|
"armoireEquipment": "<%= image %> מצאתם ציוד נדיר בארמואר: <%= dropText %>! מגניב!",
|
||||||
"armoireFood": "<%= image %> אתם נוברים בארמואר ומוצאים <%= dropArticle %><%= dropText %>. מה זה עושה פה?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "אתם נאבקים בארמואר ומרוויחים ניסיון. קבלו!",
|
"armoireExp": "אתם נאבקים בארמואר ומרוויחים ניסיון. קבלו!",
|
||||||
"messageInsufficientGems": "אין לכם די אבני חן!",
|
"messageInsufficientGems": "אין לכם די אבני חן!",
|
||||||
"messageAuthPasswordMustMatch": ":סיסמה ו :אימות-סיסמה לא מתאימים",
|
"messageAuthPasswordMustMatch": ":סיסמה ו :אימות-סיסמה לא מתאימים",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "חיית המחמד הזו אינה בבעלותך.",
|
"petNotOwned": "חיית המחמד הזו אינה בבעלותך.",
|
||||||
"mountNotOwned": "You do not own this mount.",
|
"mountNotOwned": "You do not own this mount.",
|
||||||
"earnedCompanion": "עם כל הפרודוקטיביות שלך, זכית במלווה חדש. האכל אותו כדי לגרום לו לגדול!",
|
"earnedCompanion": "עם כל הפרודוקטיביות שלך, זכית במלווה חדש. האכל אותו כדי לגרום לו לגדול!",
|
||||||
"feedPet": "להאכיל את ה<%= name %> שלך ב <%= text %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "לשים אוכף על ה<%= pet %> שלך?",
|
"useSaddle": "לשים אוכף על ה<%= pet %> שלך?",
|
||||||
"raisedPet": "You grew your <%= pet %>!",
|
"raisedPet": "You grew your <%= pet %>!",
|
||||||
"earnedSteed": "על ידי השלמת המשימות שלכם, הרווחתם חיית רכיבה נאמה!",
|
"earnedSteed": "על ידי השלמת המשימות שלכם, הרווחתם חיית רכיבה נאמה!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Öntsd ezt egy tojásra, és egy <%= potText(locale) %> háziállat fog belőle kikelni.",
|
"hatchingPotionNotes": "Öntsd ezt egy tojásra, és egy <%= potText(locale) %> háziállat fog belőle kikelni.",
|
||||||
"premiumPotionAddlNotes": "Nem használható küldetésben szerzett tojásokhoz.",
|
"premiumPotionAddlNotes": "Nem használható küldetésben szerzett tojásokhoz.",
|
||||||
"foodMeat": "Hús",
|
"foodMeat": "Hús",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Tej",
|
"foodMilk": "Tej",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Burgonya",
|
"foodPotatoe": "Burgonya",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Eper",
|
"foodStrawberry": "Eper",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Csokoládé",
|
"foodChocolate": "Csokoládé",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Hal",
|
"foodFish": "Hal",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Rothadt hús",
|
"foodRottenMeat": "Rothadt hús",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Rózsaszín vattacukor",
|
"foodCottonCandyPink": "Rózsaszín vattacukor",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Kék vattacukor",
|
"foodCottonCandyBlue": "Kék vattacukor",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Méz",
|
"foodHoney": "Méz",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Csupasz csont torta",
|
"foodCakeSkeleton": "Csupasz csont torta",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Sima torta",
|
"foodCakeBase": "Sima torta",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Kék vattacukor torta",
|
"foodCakeCottonCandyBlue": "Kék vattacukor torta",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Rózsaszín vattacukor torta",
|
"foodCakeCottonCandyPink": "Rózsaszín vattacukor torta",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Csokitorta",
|
"foodCakeShade": "Csokitorta",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Krémtorta",
|
"foodCakeWhite": "Krémtorta",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Mézestorta",
|
"foodCakeGolden": "Mézestorta",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Romlott torta",
|
"foodCakeZombie": "Romlott torta",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Homoktorta",
|
"foodCakeDesert": "Homoktorta",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Epertorta",
|
"foodCakeRed": "Epertorta",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Csupasz csont cukorka",
|
"foodCandySkeleton": "Csupasz csont cukorka",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Sima cukorka",
|
"foodCandyBase": "Sima cukorka",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Kék savanyú cukorka",
|
"foodCandyCottonCandyBlue": "Kék savanyú cukorka",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Rózsaszín savanyú cukorka",
|
"foodCandyCottonCandyPink": "Rózsaszín savanyú cukorka",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Csokis cukorka",
|
"foodCandyShade": "Csokis cukorka",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Vaniliás cukorka",
|
"foodCandyWhite": "Vaniliás cukorka",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Mézes cukorka",
|
"foodCandyGolden": "Mézes cukorka",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Romlott cukorka",
|
"foodCandyZombie": "Romlott cukorka",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Homokos cukorka",
|
"foodCandyDesert": "Homokos cukorka",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Fahéjas cukorka",
|
"foodCandyRed": "Fahéjas cukorka",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Nyereg",
|
"foodSaddleText": "Nyereg",
|
||||||
"foodSaddleNotes": "Azonnal hátassá változtatja egy háziállatodat.",
|
"foodSaddleNotes": "Azonnal hátassá változtatja egy háziállatodat.",
|
||||||
"foodSaddleSellWarningNote": "Hey! Ez aztán egy igazán hasznos tárgy! Tudod hogyan kell használni a nyerget a háziállataiddal?",
|
"foodSaddleSellWarningNote": "Hey! Ez aztán egy igazán hasznos tárgy! Tudod hogyan kell használni a nyerget a háziállataiddal?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Sí-gyilkos bot",
|
"weaponSpecialSkiText": "Sí-gyilkos bot",
|
||||||
"weaponSpecialSkiNotes": "Ez a fegyver képes ellenségeid egész hordáját megsemmisíteni! Továbbá a használója szuper párhuzamos fordulásokat tud végrehajtani vele. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2013-2014-es téli felszerelés.",
|
"weaponSpecialSkiNotes": "Ez a fegyver képes ellenségeid egész hordáját megsemmisíteni! Továbbá a használója szuper párhuzamos fordulásokat tud végrehajtani vele. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2013-2014-es téli felszerelés.",
|
||||||
"weaponSpecialCandycaneText": "Cukorbot varázspálca",
|
"weaponSpecialCandycaneText": "Cukorbot varázspálca",
|
||||||
"weaponSpecialCandycaneNotes": "Egy erőteljes mágus varázsbotja. Mármint erőteljesen ÍZLETES! Kétkezes fegyver. Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2013-2014-es téli felszerelés.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Hópehely varázspálca",
|
"weaponSpecialSnowflakeText": "Hópehely varázspálca",
|
||||||
"weaponSpecialSnowflakeNotes": "Ez a varázspálca végtelen gyógyítóerővel ragyog. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2013-2014-es téli felszerelés.",
|
"weaponSpecialSnowflakeNotes": "Ez a varázspálca végtelen gyógyítóerővel ragyog. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2013-2014-es téli felszerelés.",
|
||||||
"weaponSpecialSpringRogueText": "Kampós karmok",
|
"weaponSpecialSpringRogueText": "Kampós karmok",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Álarcosbáli páva maszk",
|
"eyewearMystery301703Text": "Álarcosbáli páva maszk",
|
||||||
"eyewearMystery301703Notes": "Tökéletes egy előkelő álarcosbálon vagy hogy végiglopakodj egy jól öltözött tömegen. Nem változtat a tulajdonságaidon. 3017 márciusi előfizetői tárgy.",
|
"eyewearMystery301703Notes": "Tökéletes egy előkelő álarcosbálon vagy hogy végiglopakodj egy jól öltözött tömegen. Nem változtat a tulajdonságaidon. 3017 márciusi előfizetői tárgy.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Pestisdoktor maszk",
|
"eyewearArmoirePlagueDoctorMaskText": "Pestisdoktor maszk",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Ezt az eredeti maszkot azok a doktorok hordják akik a Halogatás pestise ellen harcolnak! Nem változtat a tulajdonságaidon. Elvarázsolt láda: Pestisdoktor szett (2. tárgy a 3-ból)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Ezt az eredeti maszkot azok a doktorok hordják akik a Halogatás pestise ellen harcolnak! Nem változtat a tulajdonságaidon. Elvarázsolt láda: Pestisdoktor szett (2. tárgy a 3-ból).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Segített legyőzni a Zűrzavart a 2016 tavaszi fesztivál alatt!",
|
"achievementBewilderText": "Segített legyőzni a Zűrzavart a 2016 tavaszi fesztivál alatt!",
|
||||||
"checkOutProgress": "Fejlődésem megtekintése a Habiticán!",
|
"checkOutProgress": "Fejlődésem megtekintése a Habiticán!",
|
||||||
"cards": "Üdvözlőlapok",
|
"cards": "Üdvözlőlapok",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Üdvözlőkártya",
|
"greetingCard": "Üdvözlőkártya",
|
||||||
"greetingCardExplanation": "Mindketten megkaptátok a Vidám pajtás kitüntetést!",
|
"greetingCardExplanation": "Mindketten megkaptátok a Vidám pajtás kitüntetést!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Nem etetheted ezt a háziállatot.",
|
"messageCannotFeedPet": "Nem etetheted ezt a háziállatot.",
|
||||||
"messageAlreadyMount": "Már megvan ez a hátas. Próbálj egy másik háziállatot etetni.",
|
"messageAlreadyMount": "Már megvan ez a hátas. Próbálj egy másik háziállatot etetni.",
|
||||||
"messageEvolve": "Megszelidítettél egy <%= egg %>-t, menj egy körre vele!",
|
"messageEvolve": "Megszelidítettél egy <%= egg %>-t, menj egy körre vele!",
|
||||||
"messageLikesFood": "<%= egg %> nagyon szereti a <%= foodText %>-t!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> megette a(z) <%= foodText %>-t, de úgy néz ki nem ízlett neki.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Vettél egy <%= itemText %>-t",
|
"messageBought": "Vettél egy <%= itemText %>-t",
|
||||||
"messageEquipped": "Felvetted <%= itemText %>-t.",
|
"messageEquipped": "Felvetted <%= itemText %>-t.",
|
||||||
"messageUnEquipped": "Levetted <%= itemText %>-t.",
|
"messageUnEquipped": "Levetted <%= itemText %>-t.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Nincs elég aranyad",
|
"messageNotEnoughGold": "Nincs elég aranyad",
|
||||||
"messageTwoHandedEquip": "<%= twoHandedText %> használatához két kézre van szükséged, ezért <%= offHandedText %>-t elraktad.",
|
"messageTwoHandedEquip": "<%= twoHandedText %> használatához két kézre van szükséged, ezért <%= offHandedText %>-t elraktad.",
|
||||||
"messageTwoHandedUnequip": "<%= twoHandedText %> használatához két kézre van szükséged ezért elraktad, hogy használhasd a(z) <%= offHandedText %>-t.",
|
"messageTwoHandedUnequip": "<%= twoHandedText %> használatához két kézre van szükséged ezért elraktad, hogy használhasd a(z) <%= offHandedText %>-t.",
|
||||||
"messageDropFood": "Találtál egy <%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Találtál egy <%= dropText %> tojást!",
|
"messageDropEgg": "Találtál egy <%= dropText %> tojást!",
|
||||||
"messageDropPotion": "Találtál egy <%= dropText %> keltetőfőzetet!",
|
"messageDropPotion": "Találtál egy <%= dropText %> keltetőfőzetet!",
|
||||||
"messageDropQuest": "Találtál egy küldetést!",
|
"messageDropQuest": "Találtál egy küldetést!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Már maximumon van az életerőd. ",
|
"messageHealthAlreadyMax": "Már maximumon van az életerőd. ",
|
||||||
"messageHealthAlreadyMin": "Jajj ne! Nincs több életed ezért már nem tudsz gyógyitalt használni. De ne aggódj - újraéledhetsz!",
|
"messageHealthAlreadyMin": "Jajj ne! Nincs több életed ezért már nem tudsz gyógyitalt használni. De ne aggódj - újraéledhetsz!",
|
||||||
"armoireEquipment": "<%= image %> Találtál egy ritka felszerelést a Szekrényben: <%= dropText %>! Hihetetlen!",
|
"armoireEquipment": "<%= image %> Találtál egy ritka felszerelést a Szekrényben: <%= dropText %>! Hihetetlen!",
|
||||||
"armoireFood": "<%= image %> Átkutattad a ládát és találtál <%= dropArticle %><%= dropText %>. Mégis mit keres ez itt?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Megküzdöttél a ládával és értékes tapasztalatot szereztél. Erre varj gombot!",
|
"armoireExp": "Megküzdöttél a ládával és értékes tapasztalatot szereztél. Erre varj gombot!",
|
||||||
"messageInsufficientGems": "Nincs elég drágaköved!",
|
"messageInsufficientGems": "Nincs elég drágaköved!",
|
||||||
"messageAuthPasswordMustMatch": ":password és :confirmPassword nem egyeznek",
|
"messageAuthPasswordMustMatch": ":password és :confirmPassword nem egyeznek",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Ennek a háziállatnak nem te vagy a gazdája.",
|
"petNotOwned": "Ennek a háziállatnak nem te vagy a gazdája.",
|
||||||
"mountNotOwned": "Ennek a hátasnak nem te vagy a gazdája.",
|
"mountNotOwned": "Ennek a hátasnak nem te vagy a gazdája.",
|
||||||
"earnedCompanion": "Produktivitásoddal új társaságra tettél szert! Etesd meg, hogy megnőjön!",
|
"earnedCompanion": "Produktivitásoddal új társaságra tettél szert! Etesd meg, hogy megnőjön!",
|
||||||
"feedPet": "Megeteted a(z) <%= article %><%= text %>-t a <%= name %>-el?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Felnyergeled a(z) <%= pet %>-t?",
|
"useSaddle": "Felnyergeled a(z) <%= pet %>-t?",
|
||||||
"raisedPet": "Felnevelted a <%= pet %>-d!",
|
"raisedPet": "Felnevelted a <%= pet %>-d!",
|
||||||
"earnedSteed": "Feladatait elvégzésével szert tettél egy hűséges paripára!",
|
"earnedSteed": "Feladatait elvégzésével szert tettél egy hűséges paripára!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Berikan ini kepada sebuah telur, dan ia akan menetas menjadi binatang peliharaan <%= potText(locale) %>.",
|
"hatchingPotionNotes": "Berikan ini kepada sebuah telur, dan ia akan menetas menjadi binatang peliharaan <%= potText(locale) %>.",
|
||||||
"premiumPotionAddlNotes": "Tidak dapat digunakan kepada telur peliharaan yang didapat dari misi.",
|
"premiumPotionAddlNotes": "Tidak dapat digunakan kepada telur peliharaan yang didapat dari misi.",
|
||||||
"foodMeat": "Daging",
|
"foodMeat": "Daging",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Susu",
|
"foodMilk": "Susu",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Kentang",
|
"foodPotatoe": "Kentang",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Stroberi",
|
"foodStrawberry": "Stroberi",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Cokelat",
|
"foodChocolate": "Cokelat",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Ikan",
|
"foodFish": "Ikan",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Daging Busuk",
|
"foodRottenMeat": "Daging Busuk",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Permen Kapas Pink",
|
"foodCottonCandyPink": "Permen Kapas Pink",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Permen Kapas Biru",
|
"foodCottonCandyBlue": "Permen Kapas Biru",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Madu",
|
"foodHoney": "Madu",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Kue Tulang",
|
"foodCakeSkeleton": "Kue Tulang",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Kue Dasar",
|
"foodCakeBase": "Kue Dasar",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Kue Permen Biru",
|
"foodCakeCottonCandyBlue": "Kue Permen Biru",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Kue Permen Pink",
|
"foodCakeCottonCandyPink": "Kue Permen Pink",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Kue Cokelat",
|
"foodCakeShade": "Kue Cokelat",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Kue Krim",
|
"foodCakeWhite": "Kue Krim",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Kue Madu",
|
"foodCakeGolden": "Kue Madu",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Kue Basi",
|
"foodCakeZombie": "Kue Basi",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Kue Pasir",
|
"foodCakeDesert": "Kue Pasir",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Kue Stroberi",
|
"foodCakeRed": "Kue Stroberi",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Permen Tulang",
|
"foodCandySkeleton": "Permen Tulang",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Permen Biasa",
|
"foodCandyBase": "Permen Biasa",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Permen Asam Biru",
|
"foodCandyCottonCandyBlue": "Permen Asam Biru",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Permen Asam Merah Jambu",
|
"foodCandyCottonCandyPink": "Permen Asam Merah Jambu",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Permen Coklat",
|
"foodCandyShade": "Permen Coklat",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Permen Vanila",
|
"foodCandyWhite": "Permen Vanila",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Permen Madu",
|
"foodCandyGolden": "Permen Madu",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Permen Busuk",
|
"foodCandyZombie": "Permen Busuk",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Permen Pasir",
|
"foodCandyDesert": "Permen Pasir",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Permen Kayu Manis",
|
"foodCandyRed": "Permen Kayu Manis",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Pelana",
|
"foodSaddleText": "Pelana",
|
||||||
"foodSaddleNotes": "Membuat peliharaanmu langsung bisa ditunggangi.",
|
"foodSaddleNotes": "Membuat peliharaanmu langsung bisa ditunggangi.",
|
||||||
"foodSaddleSellWarningNote": "Hei! Ini adalah item yang lumayan berguna! Apakah kamu familiar dengan cara menggunakan sebuah Pelana untuk peliharaanmu?",
|
"foodSaddleSellWarningNote": "Hei! Ini adalah item yang lumayan berguna! Apakah kamu familiar dengan cara menggunakan sebuah Pelana untuk peliharaanmu?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Tongkat Ski Pembunuh",
|
"weaponSpecialSkiText": "Tongkat Ski Pembunuh",
|
||||||
"weaponSpecialSkiNotes": "Senjata yang mampu menghancurkan pasukan musuh! Juga mampu membuat belokan paralel yang lancar. Meningkatkan Kekuatan sebesar <%= str %>. Perlengkapan Musim Dingin 2013-2014 Edisi Terbatas.",
|
"weaponSpecialSkiNotes": "Senjata yang mampu menghancurkan pasukan musuh! Juga mampu membuat belokan paralel yang lancar. Meningkatkan Kekuatan sebesar <%= str %>. Perlengkapan Musim Dingin 2013-2014 Edisi Terbatas.",
|
||||||
"weaponSpecialCandycaneText": "Tongkat Permen",
|
"weaponSpecialCandycaneText": "Tongkat Permen",
|
||||||
"weaponSpecialCandycaneNotes": "Tongkat penyihir yang sangat kuat. Sangat ENAK, beneran! Senjata untuk dua tangan. Meningkatkan Kecerdasan sebesar <%= int %> dan Persepsi sebesar <%= per %>. Perlengkapan Musim Dingin 2013-2014 Edisi Terbatas.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Tongkat Kristal Salju",
|
"weaponSpecialSnowflakeText": "Tongkat Kristal Salju",
|
||||||
"weaponSpecialSnowflakeNotes": "Tongkat ini berkilauan dengan kekuatan penyembuhnya yang tak terbatas. Meningkatkan Kecerdasan sebesar <%= int %>. Perlengkapan Musim Dingin 2013-2014 Edisi Terbatas.",
|
"weaponSpecialSnowflakeNotes": "Tongkat ini berkilauan dengan kekuatan penyembuhnya yang tak terbatas. Meningkatkan Kecerdasan sebesar <%= int %>. Perlengkapan Musim Dingin 2013-2014 Edisi Terbatas.",
|
||||||
"weaponSpecialSpringRogueText": "Cakar Kait",
|
"weaponSpecialSpringRogueText": "Cakar Kait",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
"eyewearMystery301703Text": "Peacock Masquerade Mask",
|
||||||
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
"eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Topeng Dokter Wabah",
|
"eyewearArmoirePlagueDoctorMaskText": "Topeng Dokter Wabah",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Topeng autentik yang dikenakan para doktor untuk memerangi Wabah Kemalasan. Tidak menambah status apapun. Peti Harta Karun: Set Doktor Wabah (Item 2 dari 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Topeng autentik yang dikenakan para doktor untuk memerangi Wabah Kemalasan. Tidak menambah status apapun. Peti Harta Karun: Set Doktor Wabah (Item 2 dari 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Membantu mengalahkan Be-Wilder selama event Pesta Pora Musim Semi 2016!",
|
"achievementBewilderText": "Membantu mengalahkan Be-Wilder selama event Pesta Pora Musim Semi 2016!",
|
||||||
"checkOutProgress": "Cek progresku di Habitica!",
|
"checkOutProgress": "Cek progresku di Habitica!",
|
||||||
"cards": "Kartu",
|
"cards": "Kartu",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "Kamu mendapat sebuah <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "Kamu mendapat sebuah <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Kartu Ucapan",
|
"greetingCard": "Kartu Ucapan",
|
||||||
"greetingCardExplanation": "Kalian berdua mendapatkan lencana Teman yang Ceria!",
|
"greetingCardExplanation": "Kalian berdua mendapatkan lencana Teman yang Ceria!",
|
||||||
|
|
|
||||||
|
|
@ -125,7 +125,7 @@
|
||||||
"dateEndOctober": "31 Oktober",
|
"dateEndOctober": "31 Oktober",
|
||||||
"dateEndNovember": "30 November",
|
"dateEndNovember": "30 November",
|
||||||
"dateEndJanuary": "31 Januari",
|
"dateEndJanuary": "31 Januari",
|
||||||
"dateEndFebruary": "February 28",
|
"dateEndFebruary": "28 Februari",
|
||||||
"winterPromoGiftHeader": "HADIAHKAN LANGGANAN DAN DAPATKAN GRATIS SATU!",
|
"winterPromoGiftHeader": "HADIAHKAN LANGGANAN DAN DAPATKAN GRATIS SATU!",
|
||||||
"winterPromoGiftDetails1": "Hanya hingga 12 Januari, sewaktu kamu menghadiahkan orang lain dengan langganan, kamu akan mendapatkan paket langganan yang sama, gratis untuk dirimu sendiri!",
|
"winterPromoGiftDetails1": "Hanya hingga 12 Januari, sewaktu kamu menghadiahkan orang lain dengan langganan, kamu akan mendapatkan paket langganan yang sama, gratis untuk dirimu sendiri!",
|
||||||
"winterPromoGiftDetails2": "Ingat saja kalau kamu atau penerima hadiah itu sudah mempunyai paket langganan yang berulang, hadiah langganan itu baru akan mulai setelah yang sekarang telah dibatalkan atau telah habis. Terima kasih untuk semua dukungan kalian! <3",
|
"winterPromoGiftDetails2": "Ingat saja kalau kamu atau penerima hadiah itu sudah mempunyai paket langganan yang berulang, hadiah langganan itu baru akan mulai setelah yang sekarang telah dibatalkan atau telah habis. Terima kasih untuk semua dukungan kalian! <3",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Tidak dapat memberi makan peliharaan ini.",
|
"messageCannotFeedPet": "Tidak dapat memberi makan peliharaan ini.",
|
||||||
"messageAlreadyMount": "Kamu sudah memiliki tunggangan ini. Cobalah beri makan peliharaan yang lain.",
|
"messageAlreadyMount": "Kamu sudah memiliki tunggangan ini. Cobalah beri makan peliharaan yang lain.",
|
||||||
"messageEvolve": "Kamu telah menjinakkan <%= egg %>, kini kamu dapat menungganginya!",
|
"messageEvolve": "Kamu telah menjinakkan <%= egg %>, kini kamu dapat menungganginya!",
|
||||||
"messageLikesFood": "<%= egg %> sangat menyukai <%= foodText %>!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> memakan <%= foodText %> namun tidak tampak menyukainya.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Membeli <%= itemText %>",
|
"messageBought": "Membeli <%= itemText %>",
|
||||||
"messageEquipped": "<%= itemText %> digunakan.",
|
"messageEquipped": "<%= itemText %> digunakan.",
|
||||||
"messageUnEquipped": "<%= itemText %> dilepaskan.",
|
"messageUnEquipped": "<%= itemText %> dilepaskan.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Anda tidak memiliki cukup Gold",
|
"messageNotEnoughGold": "Anda tidak memiliki cukup Gold",
|
||||||
"messageTwoHandedEquip": "Menggunakan <%= twoHandedText %> membutuhkan dua tangan, jadi <%= offHandedText %> telah dilepaskan.",
|
"messageTwoHandedEquip": "Menggunakan <%= twoHandedText %> membutuhkan dua tangan, jadi <%= offHandedText %> telah dilepaskan.",
|
||||||
"messageTwoHandedUnequip": "Menggunakan <%= twoHandedText %> membutuhkan dua tangan, jadi benda tersebut dilepaskan saat kamu menggunakan <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "Menggunakan <%= twoHandedText %> membutuhkan dua tangan, jadi benda tersebut dilepaskan saat kamu menggunakan <%= offHandedText %>.",
|
||||||
"messageDropFood": "Kamu menemukan <%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Kamu menemukan Telur <%= dropText %>!",
|
"messageDropEgg": "Kamu menemukan Telur <%= dropText %>!",
|
||||||
"messageDropPotion": "Kamu menemukan Ramuan Penetas <%= dropText %>!",
|
"messageDropPotion": "Kamu menemukan Ramuan Penetas <%= dropText %>!",
|
||||||
"messageDropQuest": "Kamu menemukan sebuah misi!",
|
"messageDropQuest": "Kamu menemukan sebuah misi!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Kamu sudah punya nyawa maksimum.",
|
"messageHealthAlreadyMax": "Kamu sudah punya nyawa maksimum.",
|
||||||
"messageHealthAlreadyMin": "Oh tidak! Kamu sudah kehabisan nyawa, jadi sudah telat untuk membeli ramuan kesehatan, tetapi jangan khawatir - kamu bisa bangkit lagi!",
|
"messageHealthAlreadyMin": "Oh tidak! Kamu sudah kehabisan nyawa, jadi sudah telat untuk membeli ramuan kesehatan, tetapi jangan khawatir - kamu bisa bangkit lagi!",
|
||||||
"armoireEquipment": "<%= image %> Kamu menemukan bagian dari perlengkapan yang langka di Armoire: <%= dropText %>! Keren!",
|
"armoireEquipment": "<%= image %> Kamu menemukan bagian dari perlengkapan yang langka di Armoire: <%= dropText %>! Keren!",
|
||||||
"armoireFood": "<%= image %> Kamu mengobrak-abrik Airmore dan menemukan <%= dropArticle %><%= dropText %>. Kenapa bisa ada di sini?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Kamu menghajar Armoire dan mendapatkan Pengalaman. Rasakan itu!",
|
"armoireExp": "Kamu menghajar Armoire dan mendapatkan Pengalaman. Rasakan itu!",
|
||||||
"messageInsufficientGems": "Permata tidak cukup!",
|
"messageInsufficientGems": "Permata tidak cukup!",
|
||||||
"messageAuthPasswordMustMatch": ":password dan :confirm Kata Sandi tidak cocok",
|
"messageAuthPasswordMustMatch": ":password dan :confirm Kata Sandi tidak cocok",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Kamu tidak memiliki peliharaan ini.",
|
"petNotOwned": "Kamu tidak memiliki peliharaan ini.",
|
||||||
"mountNotOwned": "Kamu tidak memiliki tunggangan ini.",
|
"mountNotOwned": "Kamu tidak memiliki tunggangan ini.",
|
||||||
"earnedCompanion": "Berkat produktivitasmu, kamu mendapatkan seekor teman baru. Beri dia makan supaya dia tumbuh besar!",
|
"earnedCompanion": "Berkat produktivitasmu, kamu mendapatkan seekor teman baru. Beri dia makan supaya dia tumbuh besar!",
|
||||||
"feedPet": "Beri makan <%= article %><%= text %> kepada <%= name %> milikmu?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Tunggangi <%= pet %>?",
|
"useSaddle": "Tunggangi <%= pet %>?",
|
||||||
"raisedPet": "Kamu membesarkan <%= pet %> milikmu!",
|
"raisedPet": "Kamu membesarkan <%= pet %> milikmu!",
|
||||||
"earnedSteed": "Dengan melengkapi tugasmu, kamu mendapatkan tunggangan yang setia!",
|
"earnedSteed": "Dengan melengkapi tugasmu, kamu mendapatkan tunggangan yang setia!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Versa questa pozione su un uovo, e nascerà un animale <%= potText(locale) %>.",
|
"hatchingPotionNotes": "Versa questa pozione su un uovo, e nascerà un animale <%= potText(locale) %>.",
|
||||||
"premiumPotionAddlNotes": "Non utilizzabile su uova di animali ottenute dalle missioni.",
|
"premiumPotionAddlNotes": "Non utilizzabile su uova di animali ottenute dalle missioni.",
|
||||||
"foodMeat": "Carne",
|
"foodMeat": "Carne",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Latte",
|
"foodMilk": "Latte",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Patata",
|
"foodPotatoe": "Patata",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Fragola",
|
"foodStrawberry": "Fragola",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Cioccolato",
|
"foodChocolate": "Cioccolato",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Pesce",
|
"foodFish": "Pesce",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Carne ammuffita",
|
"foodRottenMeat": "Carne ammuffita",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Zucchero Filato Rosa",
|
"foodCottonCandyPink": "Zucchero Filato Rosa",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Zucchero Filato Blu",
|
"foodCottonCandyBlue": "Zucchero Filato Blu",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Miele",
|
"foodHoney": "Miele",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Torta d'osso",
|
"foodCakeSkeleton": "Torta d'osso",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Torta base",
|
"foodCakeBase": "Torta base",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Torta di Zucchero Blu",
|
"foodCakeCottonCandyBlue": "Torta di Zucchero Blu",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Torta di Zucchero Rosa",
|
"foodCakeCottonCandyPink": "Torta di Zucchero Rosa",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Torta al Cioccolato",
|
"foodCakeShade": "Torta al Cioccolato",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Torta alla Crema",
|
"foodCakeWhite": "Torta alla Crema",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Torta al Miele",
|
"foodCakeGolden": "Torta al Miele",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Torta Ammuffita",
|
"foodCakeZombie": "Torta Ammuffita",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Torta di Sabbia",
|
"foodCakeDesert": "Torta di Sabbia",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Torta alle Fragole",
|
"foodCakeRed": "Torta alle Fragole",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Caramella d'osso",
|
"foodCandySkeleton": "Caramella d'osso",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Caramella Base",
|
"foodCandyBase": "Caramella Base",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Caramella Aspra Blu",
|
"foodCandyCottonCandyBlue": "Caramella Aspra Blu",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Caramella Aspra Rosa",
|
"foodCandyCottonCandyPink": "Caramella Aspra Rosa",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Caramella al Cioccolato",
|
"foodCandyShade": "Caramella al Cioccolato",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Caramella alla Vaniglia",
|
"foodCandyWhite": "Caramella alla Vaniglia",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Caramella al Miele",
|
"foodCandyGolden": "Caramella al Miele",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Caramella ammuffita",
|
"foodCandyZombie": "Caramella ammuffita",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Caramella di Sabbia",
|
"foodCandyDesert": "Caramella di Sabbia",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Caramella alla Cannella",
|
"foodCandyRed": "Caramella alla Cannella",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Sella",
|
"foodSaddleText": "Sella",
|
||||||
"foodSaddleNotes": "Rende immediatamente cavalcabile uno dei tuoi animali.",
|
"foodSaddleNotes": "Rende immediatamente cavalcabile uno dei tuoi animali.",
|
||||||
"foodSaddleSellWarningNote": "Ehi! Questo è uno strumento piuttosto utile! Sai come usare una Sella con i tuoi animali?",
|
"foodSaddleSellWarningNote": "Ehi! Questo è uno strumento piuttosto utile! Sai come usare una Sella con i tuoi animali?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Asta del Nevassassino",
|
"weaponSpecialSkiText": "Asta del Nevassassino",
|
||||||
"weaponSpecialSkiNotes": "Un'arma capace di distruggere orde di nemici! Aiuta anche a fare splendide curve con gli sci. Aumenta la Forza di <%= str %>. Edizione limitata, inverno 2013-2014.",
|
"weaponSpecialSkiNotes": "Un'arma capace di distruggere orde di nemici! Aiuta anche a fare splendide curve con gli sci. Aumenta la Forza di <%= str %>. Edizione limitata, inverno 2013-2014.",
|
||||||
"weaponSpecialCandycaneText": "Verga Caramellata",
|
"weaponSpecialCandycaneText": "Verga Caramellata",
|
||||||
"weaponSpecialCandycaneNotes": "Un potente bastone da mago. Anzi, DELIZIOSAMENTE potente! Arma a due mani. Aumenta l'Intelligenza di <%= int %> e la Percezione di <%= per %>. Edizione limitata, inverno 2013-2014.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Bacchetta Fioccodineve",
|
"weaponSpecialSnowflakeText": "Bacchetta Fioccodineve",
|
||||||
"weaponSpecialSnowflakeNotes": "Questa bacchetta risplende di un illimitato potere curativo! Aumenta l'Intelligenza di <%= int %>. Edizione limitata, inverno 2013-2014.",
|
"weaponSpecialSnowflakeNotes": "Questa bacchetta risplende di un illimitato potere curativo! Aumenta l'Intelligenza di <%= int %>. Edizione limitata, inverno 2013-2014.",
|
||||||
"weaponSpecialSpringRogueText": "Artigli a uncino",
|
"weaponSpecialSpringRogueText": "Artigli a uncino",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Maschera della Festa in Maschera del Pavone",
|
"eyewearMystery301703Text": "Maschera della Festa in Maschera del Pavone",
|
||||||
"eyewearMystery301703Notes": "Perfetto per una lussuosa festa in maschera o per muoverti furtivamente attraverso una folla particolarmente ben vestita. Non conferisce alcun beneficio. Oggetto per abbonati, marzo 3017.",
|
"eyewearMystery301703Notes": "Perfetto per una lussuosa festa in maschera o per muoverti furtivamente attraverso una folla particolarmente ben vestita. Non conferisce alcun beneficio. Oggetto per abbonati, marzo 3017.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Maschera del Dottore della Piaga",
|
"eyewearArmoirePlagueDoctorMaskText": "Maschera del Dottore della Piaga",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Un'autentica maschera indossata dai dottori che combattono la Piaga della Procrastinazione. Non conferisce alcun bonus. Scrigno Incantato: Set da Dottore della Piaga (Oggetto 2 di 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Un'autentica maschera indossata dai dottori che combattono la Piaga della Procrastinazione. Non conferisce alcun bonus. Scrigno Incantato: Set da Dottore della Piaga (Oggetto 2 di 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Ha contribuito alla sconfitta del Be-Wilder durante l'evento Spring Fling 2016!",
|
"achievementBewilderText": "Ha contribuito alla sconfitta del Be-Wilder durante l'evento Spring Fling 2016!",
|
||||||
"checkOutProgress": "Guarda i miei progressi su Habitica!",
|
"checkOutProgress": "Guarda i miei progressi su Habitica!",
|
||||||
"cards": "Cartoline",
|
"cards": "Cartoline",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "Hai ricevuto una <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "Hai ricevuto una <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Cartolina di saluto",
|
"greetingCard": "Cartolina di saluto",
|
||||||
"greetingCardExplanation": "Ricevete entrambi la medaglia Allegro Compagno!",
|
"greetingCardExplanation": "Ricevete entrambi la medaglia Allegro Compagno!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Non puoi nutrire questo animale.",
|
"messageCannotFeedPet": "Non puoi nutrire questo animale.",
|
||||||
"messageAlreadyMount": "Possiedi già quella cavalcatura. Prova a dare da mangiare ad un altro animale.",
|
"messageAlreadyMount": "Possiedi già quella cavalcatura. Prova a dare da mangiare ad un altro animale.",
|
||||||
"messageEvolve": "Hai appena addomesticato <%= egg %>, andiamo a farci un giro!",
|
"messageEvolve": "Hai appena addomesticato <%= egg %>, andiamo a farci un giro!",
|
||||||
"messageLikesFood": "<%= egg %> apprezza <%= foodText %>!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> mangia <%= foodText %>, ma non sembra piacergli molto.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Hai comprato <%= itemText %>",
|
"messageBought": "Hai comprato <%= itemText %>",
|
||||||
"messageEquipped": "<%= itemText %> equipaggiato.",
|
"messageEquipped": "<%= itemText %> equipaggiato.",
|
||||||
"messageUnEquipped": "<%= itemText %> non è più equipaggiato.",
|
"messageUnEquipped": "<%= itemText %> non è più equipaggiato.",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Non hai abbastanza Oro",
|
"messageNotEnoughGold": "Non hai abbastanza Oro",
|
||||||
"messageTwoHandedEquip": "Brandire <%= twoHandedText %> richiede due mani, perciò <%= offHandedText %> è stato disequipaggiato.",
|
"messageTwoHandedEquip": "Brandire <%= twoHandedText %> richiede due mani, perciò <%= offHandedText %> è stato disequipaggiato.",
|
||||||
"messageTwoHandedUnequip": "Brandire <%= twoHandedText %> richiede due mani, perciò è stato disequipaggiato per poterti armare con <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "Brandire <%= twoHandedText %> richiede due mani, perciò è stato disequipaggiato per poterti armare con <%= offHandedText %>.",
|
||||||
"messageDropFood": "Hai trovato <%= dropArticle %> <%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Hai trovato un uovo di <%= dropText %>!",
|
"messageDropEgg": "Hai trovato un uovo di <%= dropText %>!",
|
||||||
"messageDropPotion": "Hai trovato una Pozione di Schiusura <%= dropText %>!",
|
"messageDropPotion": "Hai trovato una Pozione di Schiusura <%= dropText %>!",
|
||||||
"messageDropQuest": "Hai trovato una missione!",
|
"messageDropQuest": "Hai trovato una missione!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Hai già la salute massima.",
|
"messageHealthAlreadyMax": "Hai già la salute massima.",
|
||||||
"messageHealthAlreadyMin": "Oh no! Hai già finito la tua Salute, quindi è troppo tardi comprare una Pozione della Salute, ma non preoccuparti - puoi resuscitare!",
|
"messageHealthAlreadyMin": "Oh no! Hai già finito la tua Salute, quindi è troppo tardi comprare una Pozione della Salute, ma non preoccuparti - puoi resuscitare!",
|
||||||
"armoireEquipment": "<%= image %> Hai trovato dell'equipaggiamento raro nello Scrigno: <%= dropText %>! Fantastico!",
|
"armoireEquipment": "<%= image %> Hai trovato dell'equipaggiamento raro nello Scrigno: <%= dropText %>! Fantastico!",
|
||||||
"armoireFood": "<%= image %> Frughi nello Scrigno e trovi <%= dropArticle %><%= dropText %>. Cosa ci fa qui dentro?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Fai a botte con lo Scrigno e ottieni dell'Esperienza. Prendi questo!",
|
"armoireExp": "Fai a botte con lo Scrigno e ottieni dell'Esperienza. Prendi questo!",
|
||||||
"messageInsufficientGems": "Non hai abbastanza gemme!",
|
"messageInsufficientGems": "Non hai abbastanza gemme!",
|
||||||
"messageAuthPasswordMustMatch": ":password e :confirmPassword non corrispondono",
|
"messageAuthPasswordMustMatch": ":password e :confirmPassword non corrispondono",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Non possiedi questo animale.",
|
"petNotOwned": "Non possiedi questo animale.",
|
||||||
"mountNotOwned": "Non possiedi questa cavalcatura.",
|
"mountNotOwned": "Non possiedi questa cavalcatura.",
|
||||||
"earnedCompanion": "Con tutta la tua produttività, ti sei guadagnato un nuovo compagno. Nutrilo per farlo crescere!",
|
"earnedCompanion": "Con tutta la tua produttività, ti sei guadagnato un nuovo compagno. Nutrilo per farlo crescere!",
|
||||||
"feedPet": "Dare da mangiare <%= article %><%= text %> al tuo <%= name %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Mettere la sella a <%= pet %>?",
|
"useSaddle": "Mettere la sella a <%= pet %>?",
|
||||||
"raisedPet": "Hai fatto crescere un <%= pet %>!",
|
"raisedPet": "Hai fatto crescere un <%= pet %>!",
|
||||||
"earnedSteed": "Completando le tue attività, hai ottenuto un fidato destriero!",
|
"earnedSteed": "Completando le tue attività, hai ottenuto un fidato destriero!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "これをたまごにかけると、<%= potText(locale) %> ペットが生まれます。",
|
"hatchingPotionNotes": "これをたまごにかけると、<%= potText(locale) %> ペットが生まれます。",
|
||||||
"premiumPotionAddlNotes": "クエスト ペットのたまごには使えません。",
|
"premiumPotionAddlNotes": "クエスト ペットのたまごには使えません。",
|
||||||
"foodMeat": "肉",
|
"foodMeat": "肉",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "ミルク",
|
"foodMilk": "ミルク",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "じゃがいも",
|
"foodPotatoe": "じゃがいも",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "いちご",
|
"foodStrawberry": "いちご",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "チョコレート",
|
"foodChocolate": "チョコレート",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "魚",
|
"foodFish": "魚",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "腐った肉",
|
"foodRottenMeat": "腐った肉",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "ピンクの綿菓子",
|
"foodCottonCandyPink": "ピンクの綿菓子",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "水色の綿菓子",
|
"foodCottonCandyBlue": "水色の綿菓子",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "はちみつ",
|
"foodHoney": "はちみつ",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "骨のケーキ",
|
"foodCakeSkeleton": "骨のケーキ",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "基本のケーキ",
|
"foodCakeBase": "基本のケーキ",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "水色のケーキ",
|
"foodCakeCottonCandyBlue": "水色のケーキ",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "ピンク色のケーキ",
|
"foodCakeCottonCandyPink": "ピンク色のケーキ",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "チョコレートケーキ",
|
"foodCakeShade": "チョコレートケーキ",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "クリームケーキ",
|
"foodCakeWhite": "クリームケーキ",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "はちみつケーキ",
|
"foodCakeGolden": "はちみつケーキ",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "腐ったケーキ",
|
"foodCakeZombie": "腐ったケーキ",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "砂のケーキ",
|
"foodCakeDesert": "砂のケーキ",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "いちごケーキ",
|
"foodCakeRed": "いちごケーキ",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "骨のキャンディー",
|
"foodCandySkeleton": "骨のキャンディー",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "基本のキャンディー",
|
"foodCandyBase": "基本のキャンディー",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "水色のキャンディー",
|
"foodCandyCottonCandyBlue": "水色のキャンディー",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "ピンクのキャンディー",
|
"foodCandyCottonCandyPink": "ピンクのキャンディー",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "チョコレートキャンディー",
|
"foodCandyShade": "チョコレートキャンディー",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "バニラキャンディー",
|
"foodCandyWhite": "バニラキャンディー",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "はちみつキャンディー",
|
"foodCandyGolden": "はちみつキャンディー",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "腐ったキャンディー",
|
"foodCandyZombie": "腐ったキャンディー",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "砂のキャンディー",
|
"foodCandyDesert": "砂のキャンディー",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "シナモンキャンディー",
|
"foodCandyRed": "シナモンキャンディー",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "くら",
|
"foodSaddleText": "くら",
|
||||||
"foodSaddleNotes": "ペットの 1 匹をすぐに乗騎に成長させます。",
|
"foodSaddleNotes": "ペットの 1 匹をすぐに乗騎に成長させます。",
|
||||||
"foodSaddleSellWarningNote": "ちょっと待って! これはとっても役に立つアイテムだよ! ペットにくらを使う方法は知ってるかな?",
|
"foodSaddleSellWarningNote": "ちょっと待って! これはとっても役に立つアイテムだよ! ペットにくらを使う方法は知ってるかな?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "スノアイパーのポール",
|
"weaponSpecialSkiText": "スノアイパーのポール",
|
||||||
"weaponSpecialSkiNotes": "敵の大群を破壊することができる武器! また、とても素晴らしいパラレルターンをするのにも役立ちます。力が <%= str %> 上がります。2013年-2014年冬の限定装備。",
|
"weaponSpecialSkiNotes": "敵の大群を破壊することができる武器! また、とても素晴らしいパラレルターンをするのにも役立ちます。力が <%= str %> 上がります。2013年-2014年冬の限定装備。",
|
||||||
"weaponSpecialCandycaneText": "キャンディー棒のつえ",
|
"weaponSpecialCandycaneText": "キャンディー棒のつえ",
|
||||||
"weaponSpecialCandycaneNotes": "パワフルな魔道士のつえ。パワフルにおいしい! 両手もちの武器。知能が <%= int %>、知覚が <%= per %> 上がります。2013年-2014年冬の限定装備。",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "雪の結晶のつえ",
|
"weaponSpecialSnowflakeText": "雪の結晶のつえ",
|
||||||
"weaponSpecialSnowflakeNotes": "このつえは無限のいやしの力で輝いています。知能が <%= int %> 上がります。2013年-2014年冬の限定装備。",
|
"weaponSpecialSnowflakeNotes": "このつえは無限のいやしの力で輝いています。知能が <%= int %> 上がります。2013年-2014年冬の限定装備。",
|
||||||
"weaponSpecialSpringRogueText": "かぎづめ",
|
"weaponSpecialSpringRogueText": "かぎづめ",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "クジャクの舞踏会の仮面",
|
"eyewearMystery301703Text": "クジャクの舞踏会の仮面",
|
||||||
"eyewearMystery301703Notes": "派手な仮面舞踏会や、身なりの良い群衆の中をひっそりと動くのに最適である。効果なし。3017年3月寄付会員アイテム。",
|
"eyewearMystery301703Notes": "派手な仮面舞踏会や、身なりの良い群衆の中をひっそりと動くのに最適である。効果なし。3017年3月寄付会員アイテム。",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "ペスト専門医のマスク",
|
"eyewearArmoirePlagueDoctorMaskText": "ペスト専門医のマスク",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "「先延ばし」という名のペスト(伝染病)とたたかった医師が着けていた信頼のおけるマスク。効果なし。ラッキー宝箱 : ペスト専門医セット( 3 個中 2 個目のアイテム)。"
|
"eyewearArmoirePlagueDoctorMaskNotes": "「先延ばし」という名のペスト(伝染病)とたたかった医師が着けていた信頼のおけるマスク。効果なし。ラッキー宝箱 : ペスト専門医セット( 3 個中 2 個目のアイテム)。",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "2016年春の元気なダンス イベントで、「まどわしのビ・ワイルダー」の打倒に協力しました!",
|
"achievementBewilderText": "2016年春の元気なダンス イベントで、「まどわしのビ・ワイルダー」の打倒に協力しました!",
|
||||||
"checkOutProgress": "Habiticaでの私の成長を見てください!",
|
"checkOutProgress": "Habiticaでの私の成長を見てください!",
|
||||||
"cards": "カード",
|
"cards": "カード",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "<span class=\"notification-bold-blue\"><%= card %></span>カードが届きました!",
|
"cardReceived": "<span class=\"notification-bold-blue\"><%= card %></span>カードが届きました!",
|
||||||
"greetingCard": "あいさつのカード",
|
"greetingCard": "あいさつのカード",
|
||||||
"greetingCardExplanation": "お二人とも、Kawaii 実績を解除しました!",
|
"greetingCardExplanation": "お二人とも、Kawaii 実績を解除しました!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "このペットにはエサをあげられません",
|
"messageCannotFeedPet": "このペットにはエサをあげられません",
|
||||||
"messageAlreadyMount": "既にその乗騎は所持しています。他のペットにエサをあげてみましょう。",
|
"messageAlreadyMount": "既にその乗騎は所持しています。他のペットにエサをあげてみましょう。",
|
||||||
"messageEvolve": "<%= egg %> はあなたに懐きました。 一緒に出かけましょう!",
|
"messageEvolve": "<%= egg %> はあなたに懐きました。 一緒に出かけましょう!",
|
||||||
"messageLikesFood": "<%= egg %>は<%= foodText %>が大好きなようです!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %>は<%= foodText %>を食べましたが 、あまり好きではないようです。",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "<%= itemText %> を購入しました",
|
"messageBought": "<%= itemText %> を購入しました",
|
||||||
"messageEquipped": "<%= itemText %>を装備しました",
|
"messageEquipped": "<%= itemText %>を装備しました",
|
||||||
"messageUnEquipped": "<%= itemText %>を外しました。",
|
"messageUnEquipped": "<%= itemText %>を外しました。",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "ゴールドが不足しています",
|
"messageNotEnoughGold": "ゴールドが不足しています",
|
||||||
"messageTwoHandedEquip": "<%= twoHandedText %>は両手を使って振り回すので、<%= offHandedText %>を装備から外しました。",
|
"messageTwoHandedEquip": "<%= twoHandedText %>は両手を使って振り回すので、<%= offHandedText %>を装備から外しました。",
|
||||||
"messageTwoHandedUnequip": "<%= offHandedText %>を装備したので、両手を使って振り回す<%= twoHandedText %>を装備から外しました。",
|
"messageTwoHandedUnequip": "<%= offHandedText %>を装備したので、両手を使って振り回す<%= twoHandedText %>を装備から外しました。",
|
||||||
"messageDropFood": "<%= dropArticle %><%= dropText %> を見つけました! ",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "<%= dropText %>のたまごを見つけました! ",
|
"messageDropEgg": "<%= dropText %>のたまごを見つけました! ",
|
||||||
"messageDropPotion": "<%= dropText %>「たまごがえしの薬」を見つけました! ",
|
"messageDropPotion": "<%= dropText %>「たまごがえしの薬」を見つけました! ",
|
||||||
"messageDropQuest": "クエストを見つけました!",
|
"messageDropQuest": "クエストを見つけました!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "体力はすでに最大です。",
|
"messageHealthAlreadyMax": "体力はすでに最大です。",
|
||||||
"messageHealthAlreadyMin": "ああ、なんてこと! すでに体力が尽きているので、今から体力回復の薬を買っても仕方ありません。でも心配しないでください ー あなたは復活できます!",
|
"messageHealthAlreadyMin": "ああ、なんてこと! すでに体力が尽きているので、今から体力回復の薬を買っても仕方ありません。でも心配しないでください ー あなたは復活できます!",
|
||||||
"armoireEquipment": "<%= image %>宝箱に貴重な装備を見つけました : <%= dropText %>! 素晴らしい!",
|
"armoireEquipment": "<%= image %>宝箱に貴重な装備を見つけました : <%= dropText %>! 素晴らしい!",
|
||||||
"armoireFood": "<%= image %>宝箱をあさって<%= dropText %>を見つけました。何でこんな所に?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "宝箱と格闘して、経験値を得ました。どうぞっ!",
|
"armoireExp": "宝箱と格闘して、経験値を得ました。どうぞっ!",
|
||||||
"messageInsufficientGems": "ジェムが足りません!",
|
"messageInsufficientGems": "ジェムが足りません!",
|
||||||
"messageAuthPasswordMustMatch": ":password と :confirmPassword が一致していません。",
|
"messageAuthPasswordMustMatch": ":password と :confirmPassword が一致していません。",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "このペットをもっていません。",
|
"petNotOwned": "このペットをもっていません。",
|
||||||
"mountNotOwned": "この乗騎をもっていません。",
|
"mountNotOwned": "この乗騎をもっていません。",
|
||||||
"earnedCompanion": "あなたの前向きな行動の一つひとつから、新しい仲間が生まれました。えさをやって成長させましょう!",
|
"earnedCompanion": "あなたの前向きな行動の一つひとつから、新しい仲間が生まれました。えさをやって成長させましょう!",
|
||||||
"feedPet": "<%= name %>に<%= text %>をやりますか?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "<%= pet %>にくらをおきますか?",
|
"useSaddle": "<%= pet %>にくらをおきますか?",
|
||||||
"raisedPet": "<%= pet %>を育てた!",
|
"raisedPet": "<%= pet %>を育てた!",
|
||||||
"earnedSteed": "多くのタスクを達成して、忠実な乗騎を手に入れた!",
|
"earnedSteed": "多くのタスクを達成して、忠実な乗騎を手に入れた!",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Giet dit over een ei, en er zal een <%= potText(locale) %> dierlijke metgezel uitkomen.",
|
"hatchingPotionNotes": "Giet dit over een ei, en er zal een <%= potText(locale) %> dierlijke metgezel uitkomen.",
|
||||||
"premiumPotionAddlNotes": "Niet te gebruiken op eieren van queeste-huisdieren.",
|
"premiumPotionAddlNotes": "Niet te gebruiken op eieren van queeste-huisdieren.",
|
||||||
"foodMeat": "Vlees",
|
"foodMeat": "Vlees",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Melk",
|
"foodMilk": "Melk",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Aardappel",
|
"foodPotatoe": "Aardappel",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Aardbei",
|
"foodStrawberry": "Aardbei",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Chocolade",
|
"foodChocolate": "Chocolade",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Vis",
|
"foodFish": "Vis",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Bedorven vlees",
|
"foodRottenMeat": "Bedorven vlees",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Roze suikerspin",
|
"foodCottonCandyPink": "Roze suikerspin",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Blauwe suikerspin",
|
"foodCottonCandyBlue": "Blauwe suikerspin",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Honing",
|
"foodHoney": "Honing",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Kale-beenderentaart",
|
"foodCakeSkeleton": "Kale-beenderentaart",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Basistaart",
|
"foodCakeBase": "Basistaart",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Snoep-blauwe taart",
|
"foodCakeCottonCandyBlue": "Snoep-blauwe taart",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Snoep-roze taart",
|
"foodCakeCottonCandyPink": "Snoep-roze taart",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Chocoladetaart",
|
"foodCakeShade": "Chocoladetaart",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Roomtaart",
|
"foodCakeWhite": "Roomtaart",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Honingtaart",
|
"foodCakeGolden": "Honingtaart",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Bedorven taart",
|
"foodCakeZombie": "Bedorven taart",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Zandtaartje",
|
"foodCakeDesert": "Zandtaartje",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Aardbeientaart",
|
"foodCakeRed": "Aardbeientaart",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Kale-beenderensnoep",
|
"foodCandySkeleton": "Kale-beenderensnoep",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Standaardsnoep",
|
"foodCandyBase": "Standaardsnoep",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Zuur blauw snoep",
|
"foodCandyCottonCandyBlue": "Zuur blauw snoep",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Zuur roze snoep",
|
"foodCandyCottonCandyPink": "Zuur roze snoep",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Chocoladesnoep",
|
"foodCandyShade": "Chocoladesnoep",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Vanillesnoep",
|
"foodCandyWhite": "Vanillesnoep",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Honingsnoep",
|
"foodCandyGolden": "Honingsnoep",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Bedorven snoep",
|
"foodCandyZombie": "Bedorven snoep",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Zandsnoep",
|
"foodCandyDesert": "Zandsnoep",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Kaneelsnoep",
|
"foodCandyRed": "Kaneelsnoep",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Zadel",
|
"foodSaddleText": "Zadel",
|
||||||
"foodSaddleNotes": "Laat één van je dieren direct opgroeien tot een rijdier.",
|
"foodSaddleNotes": "Laat één van je dieren direct opgroeien tot een rijdier.",
|
||||||
"foodSaddleSellWarningNote": "Hé! Dit is een erg handig voorwerp! Weet je waarvoor een Zadel dient?",
|
"foodSaddleSellWarningNote": "Hé! Dit is een erg handig voorwerp! Weet je waarvoor een Zadel dient?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Skimoordenaarsstok",
|
"weaponSpecialSkiText": "Skimoordenaarsstok",
|
||||||
"weaponSpecialSkiNotes": "Een wapen dat in staat is om hordes vijanden te vernietigen! Het helpt zijn gebruiker ook hele nette parallelle bochtjes te maken. Verhoogt kracht met <%= str %>. Beperkte oplage winteruitrusting 2013-2014.",
|
"weaponSpecialSkiNotes": "Een wapen dat in staat is om hordes vijanden te vernietigen! Het helpt zijn gebruiker ook hele nette parallelle bochtjes te maken. Verhoogt kracht met <%= str %>. Beperkte oplage winteruitrusting 2013-2014.",
|
||||||
"weaponSpecialCandycaneText": "Zuurstokstaf",
|
"weaponSpecialCandycaneText": "Zuurstokstaf",
|
||||||
"weaponSpecialCandycaneNotes": "Een machtige magiërsstaf. Machtig LEKKER, bedoelen we! Tweehandig wapen. Verhoogt intelligentie met <%= int %> en perceptie met <%= per %>. Beperkte oplage winteruitrusting 2013-2014.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Sneeuwvloktoverstaf",
|
"weaponSpecialSnowflakeText": "Sneeuwvloktoverstaf",
|
||||||
"weaponSpecialSnowflakeNotes": "Deze staf schittert met onbeperkte genezingskracht. Verhoogt intelligentie met <%= int %>. Beperkte oplage winteruitrusting 2013-2014.",
|
"weaponSpecialSnowflakeNotes": "Deze staf schittert met onbeperkte genezingskracht. Verhoogt intelligentie met <%= int %>. Beperkte oplage winteruitrusting 2013-2014.",
|
||||||
"weaponSpecialSpringRogueText": "Gehaakte Klauwen",
|
"weaponSpecialSpringRogueText": "Gehaakte Klauwen",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Pauw maskerade masker",
|
"eyewearMystery301703Text": "Pauw maskerade masker",
|
||||||
"eyewearMystery301703Notes": "Perfect voor een elegante maskerade of om geniepig door een mooi gekleed publiek te bewegen. Verleent geen voordelen. Abonnee-artikel Maart 3017. ",
|
"eyewearMystery301703Notes": "Perfect voor een elegante maskerade of om geniepig door een mooi gekleed publiek te bewegen. Verleent geen voordelen. Abonnee-artikel Maart 3017. ",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Pestmeestersmasker",
|
"eyewearArmoirePlagueDoctorMaskText": "Pestmeestersmasker",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Een authentiek masker dat nog gedragen werd door dokters tijdens de procrastinatiepest! Verleent geen voordelen. Betoverd kabinet: pestmeesterset (voorwerp 2 van 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Een authentiek masker dat nog gedragen werd door dokters tijdens de procrastinatiepest! Verleent geen voordelen. Betoverd kabinet: pestmeesterset (voorwerp 2 van 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Heeft geholpen om de Ver-Wilder te verslaan tijdens het lente-evenement in 2016.",
|
"achievementBewilderText": "Heeft geholpen om de Ver-Wilder te verslaan tijdens het lente-evenement in 2016.",
|
||||||
"checkOutProgress": "Moet je mijn vooruitgang in Habitica eens zien!",
|
"checkOutProgress": "Moet je mijn vooruitgang in Habitica eens zien!",
|
||||||
"cards": "Kaarten",
|
"cards": "Kaarten",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Kaartje",
|
"greetingCard": "Kaartje",
|
||||||
"greetingCardExplanation": "Jullie ontvangen allebei de Vrolijke Vriend-prestatie!",
|
"greetingCardExplanation": "Jullie ontvangen allebei de Vrolijke Vriend-prestatie!",
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Dit huisdier kan niet gevoerd worden.",
|
"messageCannotFeedPet": "Dit huisdier kan niet gevoerd worden.",
|
||||||
"messageAlreadyMount": "Je hebt dat rijdier al. Probeer een ander huisdier te voeren.",
|
"messageAlreadyMount": "Je hebt dat rijdier al. Probeer een ander huisdier te voeren.",
|
||||||
"messageEvolve": "Je hebt <%= egg %> getemd; laten we op weg gaan!",
|
"messageEvolve": "Je hebt <%= egg %> getemd; laten we op weg gaan!",
|
||||||
"messageLikesFood": "<%= egg %> vindt <%= foodText %> echt heel lekker!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> eet <%= foodText %> maar lijkt er niet echt van te smullen.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "<%= itemText %> gekocht",
|
"messageBought": "<%= itemText %> gekocht",
|
||||||
"messageEquipped": "<%= itemText %> in gebruik genomen.",
|
"messageEquipped": "<%= itemText %> in gebruik genomen.",
|
||||||
"messageUnEquipped": "<%= itemText %> uitgedaan. ",
|
"messageUnEquipped": "<%= itemText %> uitgedaan. ",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Niet genoeg goud",
|
"messageNotEnoughGold": "Niet genoeg goud",
|
||||||
"messageTwoHandedEquip": "Om <%= twoHandedText %> te hanteren heb je beide handen nodig, dus <%= offHandedText %> is weggelegd. ",
|
"messageTwoHandedEquip": "Om <%= twoHandedText %> te hanteren heb je beide handen nodig, dus <%= offHandedText %> is weggelegd. ",
|
||||||
"messageTwoHandedUnequip": "Om <%= twoHandedText %> te hanteren heb je beide handen nodig, dus het is weggelegd toen je jezelf met <%= offHandedText %> bewapende.",
|
"messageTwoHandedUnequip": "Om <%= twoHandedText %> te hanteren heb je beide handen nodig, dus het is weggelegd toen je jezelf met <%= offHandedText %> bewapende.",
|
||||||
"messageDropFood": "You've found <%= dropArticle %><%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Je hebt het ei van een <%= dropText %> gevonden!",
|
"messageDropEgg": "Je hebt het ei van een <%= dropText %> gevonden!",
|
||||||
"messageDropPotion": "Je hebt de uitbroeddrank van een <%= dropText %> gevonden!",
|
"messageDropPotion": "Je hebt de uitbroeddrank van een <%= dropText %> gevonden!",
|
||||||
"messageDropQuest": "Je hebt een queeste gevonden!",
|
"messageDropQuest": "Je hebt een queeste gevonden!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Je hebt de maximale gezondheid al.",
|
"messageHealthAlreadyMax": "Je hebt de maximale gezondheid al.",
|
||||||
"messageHealthAlreadyMin": "Oh nee! Je gezondheidspunten zijn al op, dus het is te laat om nog een gezondheidsdrankje te kopen, maar geen zorgen - je kan jezelf tot leven wekken!",
|
"messageHealthAlreadyMin": "Oh nee! Je gezondheidspunten zijn al op, dus het is te laat om nog een gezondheidsdrankje te kopen, maar geen zorgen - je kan jezelf tot leven wekken!",
|
||||||
"armoireEquipment": "<%= image %> Je hebt een zeldzaam uitrustingsstuk gevonden in het kabinet: <%= dropText %>! Super!",
|
"armoireEquipment": "<%= image %> Je hebt een zeldzaam uitrustingsstuk gevonden in het kabinet: <%= dropText %>! Super!",
|
||||||
"armoireFood": "<%= image %> Je rommelt wat in het kabinet en vindt <%= dropText %>. Hoe komt dat nou hier?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Je worstelt met het kabinet en krijgt er ervaringspunten bij. Daar met je!",
|
"armoireExp": "Je worstelt met het kabinet en krijgt er ervaringspunten bij. Daar met je!",
|
||||||
"messageInsufficientGems": "Niet genoeg edelstenen!",
|
"messageInsufficientGems": "Niet genoeg edelstenen!",
|
||||||
"messageAuthPasswordMustMatch": ":password en :confirmPassword komen niet overeen",
|
"messageAuthPasswordMustMatch": ":password en :confirmPassword komen niet overeen",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Je bezit dit huisdier niet.",
|
"petNotOwned": "Je bezit dit huisdier niet.",
|
||||||
"mountNotOwned": "Je bezit dit rijdier niet.",
|
"mountNotOwned": "Je bezit dit rijdier niet.",
|
||||||
"earnedCompanion": "Door al jouw productiviteit heb je een nieuwe kameraad verdiend. Voer hem en laat hem groeien! ",
|
"earnedCompanion": "Door al jouw productiviteit heb je een nieuwe kameraad verdiend. Voer hem en laat hem groeien! ",
|
||||||
"feedPet": "<%= text %> aan je <%= name %> voeren?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "<%= pet %> zadelen?",
|
"useSaddle": "<%= pet %> zadelen?",
|
||||||
"raisedPet": "Je hebt je <%= pet %> laten opgroeien!",
|
"raisedPet": "Je hebt je <%= pet %> laten opgroeien!",
|
||||||
"earnedSteed": "Door het voltooien van taken heb je een trouw ros verdiend!",
|
"earnedSteed": "Door het voltooien van taken heb je een trouw ros verdiend!",
|
||||||
|
|
|
||||||
|
|
@ -325,11 +325,11 @@
|
||||||
"backgroundDrivingASleighNotes": "Przejedź saniami pola pokryte śniegiem.",
|
"backgroundDrivingASleighNotes": "Przejedź saniami pola pokryte śniegiem.",
|
||||||
"backgroundFlyingOverIcySteppesText": "Lodowe Stepy",
|
"backgroundFlyingOverIcySteppesText": "Lodowe Stepy",
|
||||||
"backgroundFlyingOverIcySteppesNotes": "Lataj nad Lodowymi Stepami",
|
"backgroundFlyingOverIcySteppesNotes": "Lataj nad Lodowymi Stepami",
|
||||||
"backgrounds022018": "SET 45: Released February 2018",
|
"backgrounds022018": "Zestaw 45: Opublikowany w lutym 2018",
|
||||||
"backgroundChessboardLandText": "Chessboard Land",
|
"backgroundChessboardLandText": "Kraina Szachownic",
|
||||||
"backgroundChessboardLandNotes": "Play a game in Chessboard Land.",
|
"backgroundChessboardLandNotes": "Zagraj grę w Krainie Szachownic",
|
||||||
"backgroundMagicalMuseumText": "Magical Museum",
|
"backgroundMagicalMuseumText": "Magiczne Muzeum",
|
||||||
"backgroundMagicalMuseumNotes": "Tour a Magical Museum.",
|
"backgroundMagicalMuseumNotes": "Zwiedź Magiczne Muzeum",
|
||||||
"backgroundRoseGardenText": "Rose Garden",
|
"backgroundRoseGardenText": "Różany Ogród",
|
||||||
"backgroundRoseGardenNotes": "Dally in a fragrant Rose Garden."
|
"backgroundRoseGardenNotes": "Zmitręż czas w wonny Różanym Ogrodzie"
|
||||||
}
|
}
|
||||||
|
|
@ -6,8 +6,8 @@
|
||||||
"keepIt": "Zachowaj",
|
"keepIt": "Zachowaj",
|
||||||
"removeIt": "Usuń",
|
"removeIt": "Usuń",
|
||||||
"brokenChallenge": "Nieprawidłowy link do wyzwania – to zadanie było częścią wyzwania, jednak wyzwanie (lub grupa) zostało usunięte. Co zrobić z porzuconym zadaniem?",
|
"brokenChallenge": "Nieprawidłowy link do wyzwania – to zadanie było częścią wyzwania, jednak wyzwanie (lub grupa) zostało usunięte. Co zrobić z porzuconym zadaniem?",
|
||||||
"keepThem": "Keep Tasks",
|
"keepThem": "Zachowaj Zadania",
|
||||||
"removeThem": "Remove Tasks",
|
"removeThem": "Usuń Zadania",
|
||||||
"challengeCompleted": "Wyzwanie zakończone! Jego zwycięzcą jest <span class=\"badge\"><%= user %></span>! Co chcesz zrobić z porzuconymi zadaniami?",
|
"challengeCompleted": "Wyzwanie zakończone! Jego zwycięzcą jest <span class=\"badge\"><%= user %></span>! Co chcesz zrobić z porzuconymi zadaniami?",
|
||||||
"unsubChallenge": "Nieprawidłowy link do wyzwania – to zadanie było częścią wyzwania, ale wypisałeś się z niego. Co zrobić z porzuconym zadaniem?",
|
"unsubChallenge": "Nieprawidłowy link do wyzwania – to zadanie było częścią wyzwania, ale wypisałeś się z niego. Co zrobić z porzuconym zadaniem?",
|
||||||
"challengeWinner": "Jest zwycięzcą następujących wyzwań",
|
"challengeWinner": "Jest zwycięzcą następujących wyzwań",
|
||||||
|
|
@ -101,8 +101,8 @@
|
||||||
"addTask": "Dodaj Zadanie",
|
"addTask": "Dodaj Zadanie",
|
||||||
"editChallenge": "Edytuj Wyzwanie",
|
"editChallenge": "Edytuj Wyzwanie",
|
||||||
"challengeDescription": "Opis Wyzwania",
|
"challengeDescription": "Opis Wyzwania",
|
||||||
"selectChallengeWinnersDescription": "Select a winner from the Challenge participants",
|
"selectChallengeWinnersDescription": "Wybierz zwycięzce spośród uczestników Wyzwania",
|
||||||
"awardWinners": "Award Winner",
|
"awardWinners": "Nagródź Zwycięzce",
|
||||||
"doYouWantedToDeleteChallenge": "Czy chcesz usunąć to Wyzwanie?",
|
"doYouWantedToDeleteChallenge": "Czy chcesz usunąć to Wyzwanie?",
|
||||||
"deleteChallenge": "Usuń Wyzwanie",
|
"deleteChallenge": "Usuń Wyzwanie",
|
||||||
"challengeNamePlaceholder": "Jaka jest nazwa Twojego Wyzwania? ",
|
"challengeNamePlaceholder": "Jaka jest nazwa Twojego Wyzwania? ",
|
||||||
|
|
|
||||||
|
|
@ -164,9 +164,9 @@
|
||||||
"questEggPterodactylText": "Pterodaktyl",
|
"questEggPterodactylText": "Pterodaktyl",
|
||||||
"questEggPterodactylMountText": "Pterodaktyl",
|
"questEggPterodactylMountText": "Pterodaktyl",
|
||||||
"questEggPterodactylAdjective": "ufający",
|
"questEggPterodactylAdjective": "ufający",
|
||||||
"questEggBadgerText": "Badger",
|
"questEggBadgerText": "Borsuk",
|
||||||
"questEggBadgerMountText": "Badger",
|
"questEggBadgerMountText": "Borsuk",
|
||||||
"questEggBadgerAdjective": "bustling",
|
"questEggBadgerAdjective": "Zgiełk",
|
||||||
"eggNotes": "Znajdź eliksir wyklucia i wylej go na to jajo, a wykluje się z niego <%= eggAdjective(locale) %> <%= eggText(locale) %>. ",
|
"eggNotes": "Znajdź eliksir wyklucia i wylej go na to jajo, a wykluje się z niego <%= eggAdjective(locale) %> <%= eggText(locale) %>. ",
|
||||||
"hatchingPotionBase": "Zwyczajny",
|
"hatchingPotionBase": "Zwyczajny",
|
||||||
"hatchingPotionWhite": "Biały",
|
"hatchingPotionWhite": "Biały",
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Wylej go na jajko, a wykluje się z niego <%=potText(locale)%>.",
|
"hatchingPotionNotes": "Wylej go na jajko, a wykluje się z niego <%=potText(locale)%>.",
|
||||||
"premiumPotionAddlNotes": "Nie nadaje się do użytku na jajach otrzymanych za misje.",
|
"premiumPotionAddlNotes": "Nie nadaje się do użytku na jajach otrzymanych za misje.",
|
||||||
"foodMeat": "Mięso",
|
"foodMeat": "Mięso",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Mleko",
|
"foodMilk": "Mleko",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Ziemniak",
|
"foodPotatoe": "Ziemniak",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Truskawka",
|
"foodStrawberry": "Truskawka",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Czekolada",
|
"foodChocolate": "Czekolada",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Ryba",
|
"foodFish": "Ryba",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Zgniłe mięso",
|
"foodRottenMeat": "Zgniłe mięso",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Różowa wata cukrowa",
|
"foodCottonCandyPink": "Różowa wata cukrowa",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Niebieska wata cukrowa",
|
"foodCottonCandyBlue": "Niebieska wata cukrowa",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Miód",
|
"foodHoney": "Miód",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Kościste ciasto",
|
"foodCakeSkeleton": "Kościste ciasto",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Zwykłe ciasto",
|
"foodCakeBase": "Zwykłe ciasto",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Słodkie niebieskie ciasto",
|
"foodCakeCottonCandyBlue": "Słodkie niebieskie ciasto",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Słodkie różowe ciasto",
|
"foodCakeCottonCandyPink": "Słodkie różowe ciasto",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Czekoladowe ciasto",
|
"foodCakeShade": "Czekoladowe ciasto",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Kremowe ciasto",
|
"foodCakeWhite": "Kremowe ciasto",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Miodowe ciasto",
|
"foodCakeGolden": "Miodowe ciasto",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Zgniłe ciasto",
|
"foodCakeZombie": "Zgniłe ciasto",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Piaskowe ciasto",
|
"foodCakeDesert": "Piaskowe ciasto",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Truskawkowe ciasto",
|
"foodCakeRed": "Truskawkowe ciasto",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Kościsty cukierek",
|
"foodCandySkeleton": "Kościsty cukierek",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Zwyczajny cukierek",
|
"foodCandyBase": "Zwyczajny cukierek",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Kwaśny niebieski cukierek",
|
"foodCandyCottonCandyBlue": "Kwaśny niebieski cukierek",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Kwaśny różowy cukierek",
|
"foodCandyCottonCandyPink": "Kwaśny różowy cukierek",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Czekoladowy cukierek",
|
"foodCandyShade": "Czekoladowy cukierek",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Waniliowy cukierek",
|
"foodCandyWhite": "Waniliowy cukierek",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Miodowy cukierek",
|
"foodCandyGolden": "Miodowy cukierek",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Zgniły cukierek",
|
"foodCandyZombie": "Zgniły cukierek",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Piaskowy cukierek",
|
"foodCandyDesert": "Piaskowy cukierek",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Cynamonowy cukierek",
|
"foodCandyRed": "Cynamonowy cukierek",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Siodło",
|
"foodSaddleText": "Siodło",
|
||||||
"foodSaddleNotes": "Natychmiastowo zmienia jednego z Twoich chowańców w wierzchowca.",
|
"foodSaddleNotes": "Natychmiastowo zmienia jednego z Twoich chowańców w wierzchowca.",
|
||||||
"foodSaddleSellWarningNote": "Hej! To całkiem użyteczny przedmiot! Czy jesteś zaznajomiony z tym, jak używać siodła wraz z twoimi chowańcami?",
|
"foodSaddleSellWarningNote": "Hej! To całkiem użyteczny przedmiot! Czy jesteś zaznajomiony z tym, jak używać siodła wraz z twoimi chowańcami?",
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,13 @@
|
||||||
"groupBy": "Pogrupuj według <%= type %>",
|
"groupBy": "Pogrupuj według <%= type %>",
|
||||||
"classBonus": "(Ten przedmiot pasuje do Twojej klasy, więc otrzymuje dodatkowy mnożnik 1.5 do statystyk)",
|
"classBonus": "(Ten przedmiot pasuje do Twojej klasy, więc otrzymuje dodatkowy mnożnik 1.5 do statystyk)",
|
||||||
"classArmor": "Zbroja Klasowa",
|
"classArmor": "Zbroja Klasowa",
|
||||||
"featuredset": "Featured Set <%= name %>",
|
"featuredset": "Opisany Zestaw <%= name %>",
|
||||||
"mysterySets": "Tajemnicze zestawy",
|
"mysterySets": "Tajemnicze zestawy",
|
||||||
"gearNotOwned": "Nie posiadasz tego przedmiotu.",
|
"gearNotOwned": "Nie posiadasz tego przedmiotu.",
|
||||||
"noGearItemsOfType": "You don't own any of these.",
|
"noGearItemsOfType": "Nie posiadasz żadnego z nich.",
|
||||||
"noGearItemsOfClass": "You already have all your class equipment! More will be released during the Grand Galas, near the solstices and equinoxes.",
|
"noGearItemsOfClass": "Już posiadasz wszystkie przedmioty dla swojej klasy. Więcej zostanie dodanych podczas Wielkich Gali zaczynających się w okolicach równonocy i przesileń.",
|
||||||
"classLockedItem": "This item is only available to a specific class. Change your class under the User icon > Settings > Character Build!",
|
"classLockedItem": "Ten przedmiot jest dostępny tylko dla specyficznej klasy. Zmień swoją klasę naciskając na Symbol Użytkownika > Ustawienia > Budowa Postaci!",
|
||||||
"tierLockedItem": "This item is only available once you've purchased the previous items in sequence. Keep working your way up!",
|
"tierLockedItem": "Ten przedmiot jest dostępny po wykupieniu poprzednich przedmiotów z sekwencji. Kontynuuj zdobywanie przedmiotów!",
|
||||||
"sortByType": "Typ",
|
"sortByType": "Typ",
|
||||||
"sortByPrice": "Cena",
|
"sortByPrice": "Cena",
|
||||||
"sortByCon": "KON",
|
"sortByCon": "KON",
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"weaponSpecial0Text": "Ostrze mrocznych dusz",
|
"weaponSpecial0Text": "Ostrze mrocznych dusz",
|
||||||
"weaponSpecial0Notes": "Karmi się esencją życia wrogów, by wzmocnić swe nikczemne ciosy. Zwiększa Siłę o <%= str %>.",
|
"weaponSpecial0Notes": "Karmi się esencją życia wrogów, by wzmocnić swe nikczemne ciosy. Zwiększa Siłę o <%= str %>.",
|
||||||
"weaponSpecial1Text": "Kryształowy miecz",
|
"weaponSpecial1Text": "Kryształowy miecz",
|
||||||
"weaponSpecial1Notes": "Its glittering facets tell the tale of a hero. Increases all Stats by <%= attrs %>.",
|
"weaponSpecial1Notes": "Blask odbity od oszlifowanych powierzchni klejnotu opowiada bohaterską historie. Zwiększa wszystkie Statystyki o <%= attrs %>.",
|
||||||
"weaponSpecial2Text": "Smocza laska Stephena Webera",
|
"weaponSpecial2Text": "Smocza laska Stephena Webera",
|
||||||
"weaponSpecial2Notes": "Poczuj moc smoka płynącą z wnętrza! Zwiększa Siłę jak i Percepcję o <%= attrs %>.",
|
"weaponSpecial2Notes": "Poczuj moc smoka płynącą z wnętrza! Zwiększa Siłę jak i Percepcję o <%= attrs %>.",
|
||||||
"weaponSpecial3Text": "Morgensztern miażdżący kamienie milowe Mustaine'a",
|
"weaponSpecial3Text": "Morgensztern miażdżący kamienie milowe Mustaine'a",
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Kij szusującego asasyna",
|
"weaponSpecialSkiText": "Kij szusującego asasyna",
|
||||||
"weaponSpecialSkiNotes": "Broń zdolna do niszczenia hord wrogów! Pozwala też użytkownikowi na wykonywanie ładnych skrętów równoległych. Zwiększa Siłę o <%= str %>. Edycja Limitowana Zima 2013-2014.",
|
"weaponSpecialSkiNotes": "Broń zdolna do niszczenia hord wrogów! Pozwala też użytkownikowi na wykonywanie ładnych skrętów równoległych. Zwiększa Siłę o <%= str %>. Edycja Limitowana Zima 2013-2014.",
|
||||||
"weaponSpecialCandycaneText": "Cukierkowa laska",
|
"weaponSpecialCandycaneText": "Cukierkowa laska",
|
||||||
"weaponSpecialCandycaneNotes": "Prze-potężna laska maga. Prze-smaczna, znaczy się! Broń dwuręczna. Zwiększa Inteligencję o <%= int %> i Percepcję o <%= per %>. Edycja Limitowana Zima 2013-2014",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Różdżka śnieżynki",
|
"weaponSpecialSnowflakeText": "Różdżka śnieżynki",
|
||||||
"weaponSpecialSnowflakeNotes": "Ta różdżka iskrzy nieskończoną mocą uzdrawiania. Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Zima 2013-2014",
|
"weaponSpecialSnowflakeNotes": "Ta różdżka iskrzy nieskończoną mocą uzdrawiania. Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Zima 2013-2014",
|
||||||
"weaponSpecialSpringRogueText": "Hakowate pazury",
|
"weaponSpecialSpringRogueText": "Hakowate pazury",
|
||||||
|
|
@ -235,17 +235,17 @@
|
||||||
"weaponSpecialSummer2017HealerText": "Perłowa różdżka",
|
"weaponSpecialSummer2017HealerText": "Perłowa różdżka",
|
||||||
"weaponSpecialSummer2017HealerNotes": " Różdżką z perłową końcówką. Zaledwie jeden dotyk łagodzi wszelkie rany. Zwiększa inteligencję o <%= int %>. Edycja Limitowana Letniego Wyposażenia 2017.",
|
"weaponSpecialSummer2017HealerNotes": " Różdżką z perłową końcówką. Zaledwie jeden dotyk łagodzi wszelkie rany. Zwiększa inteligencję o <%= int %>. Edycja Limitowana Letniego Wyposażenia 2017.",
|
||||||
"weaponSpecialFall2017RogueText": "Maczuga Kandyzowane Jabłko",
|
"weaponSpecialFall2017RogueText": "Maczuga Kandyzowane Jabłko",
|
||||||
"weaponSpecialFall2017RogueNotes": "Defeat your foes with sweetness! Increases Strength by <%= str %>. Limited Edition 2017 Autumn Gear.",
|
"weaponSpecialFall2017RogueNotes": "Pokonaj swoich przeciwników słodyczą! Zwiększa Siłę o <%= str %>. Edycja Limitowana Jesiennego Wyposażenia 2017.",
|
||||||
"weaponSpecialFall2017WarriorText": "Lanca Kandyzowana Kukurydza",
|
"weaponSpecialFall2017WarriorText": "Lanca Kandyzowana Kukurydza",
|
||||||
"weaponSpecialFall2017WarriorNotes": "All your foes will cower before this tasty-looking lance, regardless of whether they're ghosts, monsters, or red To-Dos. Increases Strength by <%= str %>. Limited Edition 2017 Autumn Gear.",
|
"weaponSpecialFall2017WarriorNotes": "Wszyscy Twoi przeciwnicy będą się kryć przed tą smacznie wyglądającą lanca, niezależnie od tego czy są duchami, potworami czy czerwonymi Do-Zrobienia. Zwiększa Siłę o <%= str %>. Edycja Limitowana Jesiennego Wyposażenia 2017.",
|
||||||
"weaponSpecialFall2017MageText": "Upiorna laska",
|
"weaponSpecialFall2017MageText": "Upiorna laska",
|
||||||
"weaponSpecialFall2017MageNotes": "The eyes of the glowing skull on this staff radiate magic and mystery. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
|
"weaponSpecialFall2017MageNotes": "Oczy żarzącej czaszki tej laski promieniują magią i tajemnica. Zwiększa Inteligencję o <%= int %> i Percepcję o <%= per %>. Edycja Limitowana Jesień 2017.",
|
||||||
"weaponSpecialFall2017HealerText": "Przerażający świecznik",
|
"weaponSpecialFall2017HealerText": "Przerażający świecznik",
|
||||||
"weaponSpecialFall2017HealerNotes": "This light dispels fear and lets others know you're here to help. Increases Intelligence by <%= int %>. Limited Edition 2017 Autumn Gear.",
|
"weaponSpecialFall2017HealerNotes": "To światło rozprasza strach i daje innym znać, że jesteś tu by pomóc. Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Jesień 2017.",
|
||||||
"weaponSpecialWinter2018RogueText": "Miętowy Hak",
|
"weaponSpecialWinter2018RogueText": "Miętowy Hak",
|
||||||
"weaponSpecialWinter2018RogueNotes": "Idealny do wspinania się po ścianach i rozpraszania wrogów słodziutkim cukierkiem. Zwiększa siłę o <%= str %>. Limitowana Edycja Zimowa 2017-2018.",
|
"weaponSpecialWinter2018RogueNotes": "Idealny do wspinania się po ścianach i rozpraszania wrogów słodziutkim cukierkiem. Zwiększa siłę o <%= str %>. Limitowana Edycja Zimowa 2017-2018.",
|
||||||
"weaponSpecialWinter2018WarriorText": "Holiday Bow Hammer",
|
"weaponSpecialWinter2018WarriorText": "Młot Świątecznej Kokardy",
|
||||||
"weaponSpecialWinter2018WarriorNotes": "The sparkly appearance of this bright weapon will dazzle your enemies as you swing it! Increases Strength by <%= str %>. Limited Edition 2017-2018 Winter Gear.",
|
"weaponSpecialWinter2018WarriorNotes": "Skrzący wygląd tej promiennej broni olśni Twoich przeciwników kiedy będziesz nią wymachiwać. Zwiększa Siłę o <%= str %>. Edycja Limitowana Zima 2017-2018.",
|
||||||
"weaponSpecialWinter2018MageText": "Świąteczne Konfetti",
|
"weaponSpecialWinter2018MageText": "Świąteczne Konfetti",
|
||||||
"weaponSpecialWinter2018MageNotes": "Magic--and glitter--is in the air! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
|
"weaponSpecialWinter2018MageNotes": "Magic--and glitter--is in the air! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
|
||||||
"weaponSpecialWinter2018HealerText": "Jemiołowa różdżka",
|
"weaponSpecialWinter2018HealerText": "Jemiołowa różdżka",
|
||||||
|
|
@ -316,11 +316,11 @@
|
||||||
"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.",
|
"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": "Obcęgi do kopyt",
|
"weaponArmoireHoofClippersText": "Obcęgi do kopyt",
|
||||||
"weaponArmoireHoofClippersNotes": "Trim the hooves of your hard-working mounts to help them stay healthy as they carry you to adventure! Increases Strength, Intelligence, and Constitution by <%= attrs %> each. Enchanted Armoire: Farrier Set (Item 1 of 3).",
|
"weaponArmoireHoofClippersNotes": "Trim the hooves of your hard-working mounts to help them stay healthy as they carry you to adventure! Increases Strength, Intelligence, and Constitution by <%= attrs %> each. Enchanted Armoire: Farrier Set (Item 1 of 3).",
|
||||||
"weaponArmoireWeaversCombText": "Weaver's Comb",
|
"weaponArmoireWeaversCombText": "Grzebień Tkacza",
|
||||||
"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).",
|
"weaponArmoireWeaversCombNotes": "Użyj tego grzebienia by ścisnąć wątki przędzy razem tkaninę. Zwiększa Percepcję o <%= per %> i Siłę o <%= str %>. Zaczarowana Szafa: Zestaw Tkacza (przedmiot 2 z 3).",
|
||||||
"weaponArmoireLamplighterText": "Lamplighter",
|
"weaponArmoireLamplighterText": "Latarnik",
|
||||||
"weaponArmoireLamplighterNotes": "This long pole has a wick on one end for lighting lamps, and a hook on the other end for putting them out. Increases Constitution by <%= con %> and Perception by <%= per %>.",
|
"weaponArmoireLamplighterNotes": "Ta długa tyczka ma knot służący do zapalania lamp na jednym końcu i hak by je gasić na drugim. Zwiększa Kondycję o <%= con %> i Percepcję o <%= per %>.",
|
||||||
"weaponArmoireCoachDriversWhipText": "Coach Driver's Whip",
|
"weaponArmoireCoachDriversWhipText": "Bicz Stangreta",
|
||||||
"weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 3 of 3).",
|
"weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 3 of 3).",
|
||||||
"weaponArmoireScepterOfDiamondsText": "Diamentowe Berło",
|
"weaponArmoireScepterOfDiamondsText": "Diamentowe Berło",
|
||||||
"weaponArmoireScepterOfDiamondsNotes": "This scepter shines with a warm red glow as it grants you increased willpower. Increases Strength by <%= str %>. Enchanted Armoire: King of Diamonds Set (Item 3 of 3).",
|
"weaponArmoireScepterOfDiamondsNotes": "This scepter shines with a warm red glow as it grants you increased willpower. Increases Strength by <%= str %>. Enchanted Armoire: King of Diamonds Set (Item 3 of 3).",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Pawia maskaradowa maska",
|
"eyewearMystery301703Text": "Pawia maskaradowa maska",
|
||||||
"eyewearMystery301703Notes": "Idealna na maskaradę lub do ukrywania się w specyficznie ubranym tłumie. Brak dodatkowych korzyści. Przedmiot Abonencki, marzec 3017.",
|
"eyewearMystery301703Notes": "Idealna na maskaradę lub do ukrywania się w specyficznie ubranym tłumie. Brak dodatkowych korzyści. Przedmiot Abonencki, marzec 3017.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Maska Medyków",
|
"eyewearArmoirePlagueDoctorMaskText": "Maska Medyków",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Autentyczna maska medyczna z czasów Plagi Prokrastynacji... niestety nic nie daje. Zaczarowana szafa: zestaw medyka (przedmiot 2 z 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Autentyczna maska medyczna z czasów Plagi Prokrastynacji... niestety nic nie daje. Zaczarowana szafa: zestaw medyka (przedmiot 2 z 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +168,8 @@
|
||||||
"achievementBewilderText": "Pomógł pokonać Be-Wildera podczas Obchodów Wiosennej Uciechy 2016!",
|
"achievementBewilderText": "Pomógł pokonać Be-Wildera podczas Obchodów Wiosennej Uciechy 2016!",
|
||||||
"checkOutProgress": "Sprawdź swój postęp w Habitice!",
|
"checkOutProgress": "Sprawdź swój postęp w Habitice!",
|
||||||
"cards": "Karty",
|
"cards": "Karty",
|
||||||
|
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||||
|
"cardReceivedFrom": "<%= cardType %> from <%= userName %>",
|
||||||
"cardReceived": "Otrzymałeś <span class=\"notification-bold-blue\"><%= card %></span>",
|
"cardReceived": "Otrzymałeś <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||||
"greetingCard": "Kartka powitalna",
|
"greetingCard": "Kartka powitalna",
|
||||||
"greetingCardExplanation": "Oboje otrzymaliście osiągnięcie Wesoły koleś!",
|
"greetingCardExplanation": "Oboje otrzymaliście osiągnięcie Wesoły koleś!",
|
||||||
|
|
|
||||||
|
|
@ -125,7 +125,7 @@
|
||||||
"dateEndOctober": "31 października",
|
"dateEndOctober": "31 października",
|
||||||
"dateEndNovember": "30 listopada",
|
"dateEndNovember": "30 listopada",
|
||||||
"dateEndJanuary": "31 stycznia",
|
"dateEndJanuary": "31 stycznia",
|
||||||
"dateEndFebruary": "February 28",
|
"dateEndFebruary": "28 Luty",
|
||||||
"winterPromoGiftHeader": "DAJ KOMUŚ ABONAMENT W PREZENCIE I ODBIERZ TAKI SAM DLA SIEBIE!",
|
"winterPromoGiftHeader": "DAJ KOMUŚ ABONAMENT W PREZENCIE I ODBIERZ TAKI SAM DLA SIEBIE!",
|
||||||
"winterPromoGiftDetails1": "Tylko do 12 stycznia, gdy podarujesz komuś subskrypcję, otrzymasz za darmo taką samą subskrypcję!",
|
"winterPromoGiftDetails1": "Tylko do 12 stycznia, gdy podarujesz komuś subskrypcję, otrzymasz za darmo taką samą subskrypcję!",
|
||||||
"winterPromoGiftDetails2": "Zauważ, że w przypadku gdy Ty, lub osoba dla której wykupujesz subskrypcję posiada już podobny abonament, subskrypcja wykupiona jako prezent rozpocznie się dopiero po anulowaniu subskrypcji lub jej wygaśnięciu. Dziękujemy bardzo za wsparcie! <3",
|
"winterPromoGiftDetails2": "Zauważ, że w przypadku gdy Ty, lub osoba dla której wykupujesz subskrypcję posiada już podobny abonament, subskrypcja wykupiona jako prezent rozpocznie się dopiero po anulowaniu subskrypcji lub jej wygaśnięciu. Dziękujemy bardzo za wsparcie! <3",
|
||||||
|
|
|
||||||
|
|
@ -5,17 +5,17 @@
|
||||||
"tip3": "Używaj emoji, by łatwiej rozróżniać zadania.",
|
"tip3": "Używaj emoji, by łatwiej rozróżniać zadania.",
|
||||||
"tip4": "Użyj znaku # przed nazwą zadania, żeby ją powiększyć!",
|
"tip4": "Użyj znaku # przed nazwą zadania, żeby ją powiększyć!",
|
||||||
"tip5": "Umiejętności które dają bonusy najlepiej wykorzystać rano, żeby trwały one dłużej.",
|
"tip5": "Umiejętności które dają bonusy najlepiej wykorzystać rano, żeby trwały one dłużej.",
|
||||||
"tip6": "Hover over a task and click the dots to access advanced task controls, such as the ability to push tasks to the top/bottom of your list.",
|
"tip6": "Najedź na zadanie i naciśnij kropki by dostać się do zaawansowanych opcji takich jak możliwość przesuwania zadań na szczyt/dół Swojej listy.",
|
||||||
"tip7": "Some backgrounds connect perfectly if Party members use the same background. Ex: Mountain Lake, Pagodas, and Rolling Hills.",
|
"tip7": "Niektóre tła łączą się ze sobą idealnie jeżeli członkowie Drużyny używają tego samego. Np: Górskie jezioro, Pagody lub Faliste wzgórza",
|
||||||
"tip8": "Send a Message to someone by clicking their name in chat and then clicking the envelope icon at the top of their profile!",
|
"tip8": "Wyślij Wiadomość do kogoś, klikając ich imię w czacie, a potem klikając symbol koperty na górze ich profilu!",
|
||||||
"tip9": "Use the filters + search bar in the Inventories, Shops, Guilds, and Challenges to quickly find what you want.",
|
"tip9": "Użyj filtrów i paska wyszukiwania w Ekwipunku, Sklepach, Gildiach i Wyzwaniach by szybko znaleźć to co potrzebujesz.",
|
||||||
"tip10": "Możesz wygrać klejnoty w Wyzwaniach. Nowe Wyzwania są dodawane każdego dnia!",
|
"tip10": "Możesz wygrać klejnoty w Wyzwaniach. Nowe Wyzwania są dodawane każdego dnia!",
|
||||||
"tip11": "Having more than four Party members increases accountability!",
|
"tip11": "Posiadanie w drużynie więcej niż czterech członków nakłada większą odpowiedzialność!",
|
||||||
"tip12": "Dodaj podpunkty do swoich zadań Do-Zrobienia, żeby zwielokrotnić nagrody!",
|
"tip12": "Dodaj podpunkty do swoich zadań Do-Zrobienia, żeby zwielokrotnić nagrody!",
|
||||||
"tip13": "Click “Filters” on your task page to make an unwieldy task list very manageable!",
|
"tip13": "Naciśnij \"Filtry\" na stronie Swoich zadań by zamienić nieporęczną listę w posłuszną!",
|
||||||
"tip14": "Możesz dodać do swojej listy nagłówki i inspirujące cytaty jako Nawyki bez (+/−).",
|
"tip14": "Możesz dodać do swojej listy nagłówki i inspirujące cytaty jako Nawyki bez (+/−).",
|
||||||
"tip15": "Complete all the Masterclasser Quest-lines to learn about Habitica’s secret lore.",
|
"tip15": "Wykonaj wszystkie cykle Misji Mistrzów Klas by poznać ukrytą wiedze tajemną Habitiki. ",
|
||||||
"tip16": "Click the link to the Data Display Tool in the footer for valuable insights on your progress.",
|
"tip16": "Kliknij link do Narzędzia Wyświetlania Danych w stopce, by uzyskać cenny wgląd do swoich postępów.",
|
||||||
"tip17": "Użyj aplikacji telefonicznych by ustawić przypomnienia dla swoich zadań.",
|
"tip17": "Użyj aplikacji telefonicznych by ustawić przypomnienia dla swoich zadań.",
|
||||||
"tip18": "Nawyki tylko pozytywne lub tylko negatywne będą z czasem wracać do koloru żółtego.",
|
"tip18": "Nawyki tylko pozytywne lub tylko negatywne będą z czasem wracać do koloru żółtego.",
|
||||||
"tip19": "Wzmocnij swoją Inteligencje by zdobywać więcej doświadczenia gdy wykonasz zadanie.",
|
"tip19": "Wzmocnij swoją Inteligencje by zdobywać więcej doświadczenia gdy wykonasz zadanie.",
|
||||||
|
|
@ -27,12 +27,12 @@
|
||||||
"tip25": "Sezonowe Wielkie Gale zaczynają się w okolicach równonocy i przesileń.",
|
"tip25": "Sezonowe Wielkie Gale zaczynają się w okolicach równonocy i przesileń.",
|
||||||
"tip26": "Strzałka po prawej od czyjegoś imienia oznacza że jest właśnie wzmocniony.",
|
"tip26": "Strzałka po prawej od czyjegoś imienia oznacza że jest właśnie wzmocniony.",
|
||||||
"tip27": "Wykonałeś Codzienne poprzedniego dnia, ale zapomniałeś je odznaczyć? Nie martw się! Używając opcji sprawdzania wczorajszej aktywności masz szansę na odznaczenie tych zadań, zanim zaczniesz nowy dzień.",
|
"tip27": "Wykonałeś Codzienne poprzedniego dnia, ale zapomniałeś je odznaczyć? Nie martw się! Używając opcji sprawdzania wczorajszej aktywności masz szansę na odznaczenie tych zadań, zanim zaczniesz nowy dzień.",
|
||||||
"tip28": "Set a Custom Day Start under User Icon > Settings to control when your day restarts.",
|
"tip28": "Ustaw własny początek dnia klikając na Symbol Użytkownika > Ustawienia, aby kontrolować, kiedy resetuje się Twój dzień.",
|
||||||
"tip29": "Complete all your Dailies to get a Perfect Day Buff that increases your Stats!",
|
"tip29": "Ukończ wszystkie Codzienne, aby otrzymać wzmocnienie za doskonały dzień, które podwyższy Twoje Atrybuty.",
|
||||||
"tip30": "Możesz zapraszać innych graczy nie tylko do drużyn, ale także do gildii.",
|
"tip30": "Możesz zapraszać innych graczy nie tylko do drużyn, ale także do gildii.",
|
||||||
"tip31": "Sprawdź gotowe listy w Bibliotece Gildii Zadań i Wyzwań i znajdź przykładowe zadania.",
|
"tip31": "Sprawdź gotowe listy w Bibliotece Gildii Zadań i Wyzwań i znajdź przykładowe zadania.",
|
||||||
"tip32": "Duża część kodu, ilustracji oraz tekstów Habitiki jest tworzona przez wolontariuszy! Udaj się do Aspiring Legends Guild po pomoc.",
|
"tip32": "Duża część kodu, ilustracji oraz tekstów Habitiki jest tworzona przez wolontariuszy! Udaj się do Aspiring Legends Guild po pomoc.",
|
||||||
"tip33": "Check out The Bulletin Board Guild for news about Guilds, Challenges, and other player-created events - and announce your own there!",
|
"tip33": "Sprawdź gildię The Bulletin Board aby zobaczyć informacje na temat Gildii, Wyzwań i innych wydarzeń stworzonych przez graczy oraz ogłosić własne wydarzenia!",
|
||||||
"tip34": "Occasionally re-evaluate your tasks to make sure they’re up-to-date!",
|
"tip34": "Czasami oceń ponownie swoje zadania by się upewnić, że są aktualne!",
|
||||||
"tip35": "Users who are part of a Group Plan gain the ability to assign tasks to other users in that Group for extra task management and accountability."
|
"tip35": "Użytkownicy będący częścią Planu Grupowego zyskują zdolność przyznawania zadań innym użytkownikom w tej grupie, by zwiększyć odpowiedzialność i zdolność zarządzania zadaniami."
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
"messageCannotFeedPet": "Nie możesz nakarmić tego chowańca.",
|
"messageCannotFeedPet": "Nie możesz nakarmić tego chowańca.",
|
||||||
"messageAlreadyMount": "Już masz tego wierzchowca. Spróbuj nakarmić innego chowańca.",
|
"messageAlreadyMount": "Już masz tego wierzchowca. Spróbuj nakarmić innego chowańca.",
|
||||||
"messageEvolve": "Oswoiłeś: <%= egg %>, chodźmy na przejażdżkę!",
|
"messageEvolve": "Oswoiłeś: <%= egg %>, chodźmy na przejażdżkę!",
|
||||||
"messageLikesFood": "<%= egg %> zjada: <%= foodText %> i bardzo mu smakuje!",
|
"messageLikesFood": "<%= egg %> really likes <%= foodText %>!",
|
||||||
"messageDontEnjoyFood": "<%= egg %> zjada: <%= foodText %>, ale raczej mu nie smakuje.",
|
"messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.",
|
||||||
"messageBought": "Kupiono: <%= itemText %>",
|
"messageBought": "Kupiono: <%= itemText %>",
|
||||||
"messageEquipped": "Przedmiot: <%= itemText %> założony.",
|
"messageEquipped": "Przedmiot: <%= itemText %> założony.",
|
||||||
"messageUnEquipped": "Odłożono <%= itemText %> .",
|
"messageUnEquipped": "Odłożono <%= itemText %> .",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"messageNotEnoughGold": "Nie masz wystarczająco dużo złota",
|
"messageNotEnoughGold": "Nie masz wystarczająco dużo złota",
|
||||||
"messageTwoHandedEquip": "Odłożono <%= offHandedText %>, ponieważ <%= twoHandedText %> zajmuje obie ręce.",
|
"messageTwoHandedEquip": "Odłożono <%= offHandedText %>, ponieważ <%= twoHandedText %> zajmuje obie ręce.",
|
||||||
"messageTwoHandedUnequip": "Używanie <%= twoHandedText %> zajmuje obie ręce, więc trzeba to odłożyć, gdy chcesz zabrać <%= offHandedText %>.",
|
"messageTwoHandedUnequip": "Używanie <%= twoHandedText %> zajmuje obie ręce, więc trzeba to odłożyć, gdy chcesz zabrać <%= offHandedText %>.",
|
||||||
"messageDropFood": "Znalazłeś <%= dropArticle %> <%= dropText %>!",
|
"messageDropFood": "You've found <%= dropText %>!",
|
||||||
"messageDropEgg": "Znalazłeś <%= dropText %> jajo!",
|
"messageDropEgg": "Znalazłeś <%= dropText %> jajo!",
|
||||||
"messageDropPotion": "Znalazłeś <%= dropText %> eliksir wyklucia!",
|
"messageDropPotion": "Znalazłeś <%= dropText %> eliksir wyklucia!",
|
||||||
"messageDropQuest": "Znalazłeś misję!",
|
"messageDropQuest": "Znalazłeś misję!",
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"messageHealthAlreadyMax": "Już masz maksymalny poziom zdrowia.",
|
"messageHealthAlreadyMax": "Już masz maksymalny poziom zdrowia.",
|
||||||
"messageHealthAlreadyMin": "O nie! Skończyły ci sie punkty życia, więc jest już za późno, aby kupić eliksir uzdrawiający, ale nie martw się - możesz się odrodzić!",
|
"messageHealthAlreadyMin": "O nie! Skończyły ci sie punkty życia, więc jest już za późno, aby kupić eliksir uzdrawiający, ale nie martw się - możesz się odrodzić!",
|
||||||
"armoireEquipment": "<%= image %> Znalazłeś część rzadkiego wyposażenia w Zaczarowanej Szafie: <%= dropText %>! Fantastycznie!",
|
"armoireEquipment": "<%= image %> Znalazłeś część rzadkiego wyposażenia w Zaczarowanej Szafie: <%= dropText %>! Fantastycznie!",
|
||||||
"armoireFood": "<%= image %> Przeszukując Zaczarowaną Szafę znaleziono <%= dropArticle %><%= dropText %>. Co to tutaj robi?",
|
"armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?",
|
||||||
"armoireExp": "Mocujesz się z Zaczarowaną Szafą i zyskujesz doświadczenie. Masz za swoje!",
|
"armoireExp": "Mocujesz się z Zaczarowaną Szafą i zyskujesz doświadczenie. Masz za swoje!",
|
||||||
"messageInsufficientGems": "Masz za mało klejnotów!",
|
"messageInsufficientGems": "Masz za mało klejnotów!",
|
||||||
"messageAuthPasswordMustMatch": ":password i :confirmPassword nie są identyczne",
|
"messageAuthPasswordMustMatch": ":password i :confirmPassword nie są identyczne",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"npc": "NPC",
|
"npc": "NPC",
|
||||||
"npcAchievementName": "<%= key %> NPC",
|
"npcAchievementName": "<%= key %> NPC",
|
||||||
"npcAchievementText": "Wsparł projekt na Kickstarterze na maksymalnym poziomie!",
|
"npcAchievementText": "Wsparł projekt na Kickstarterze na maksymalnym poziomie!",
|
||||||
"welcomeTo": "Welcome to",
|
"welcomeTo": "Witamy w",
|
||||||
"welcomeBack": "Witaj ponownie!",
|
"welcomeBack": "Witaj ponownie!",
|
||||||
"justin": "Justin",
|
"justin": "Justin",
|
||||||
"justinIntroMessage1": "Witaj! Chyba jesteś tu nowy. Nazywam się Justin i będę Twoim przewodnikiem po świecie Habitiki.",
|
"justinIntroMessage1": "Witaj! Chyba jesteś tu nowy. Nazywam się Justin i będę Twoim przewodnikiem po świecie Habitiki.",
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
"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!",
|
"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": "Poprzedni",
|
"prev": "Poprzedni",
|
||||||
"next": "Następny",
|
"next": "Następny",
|
||||||
"randomize": "Randomize",
|
"randomize": "Zrandomizuj",
|
||||||
"mattBoch": "Matt Boch",
|
"mattBoch": "Matt Boch",
|
||||||
"mattShall": "Mam przyprowadzić wierzchowca, <%= name %>? Gdy nakarmisz chowańca wystarczającą ilością jedzenia, by zamienił się w wierzchowca, pojawi się tutaj. Kliknij wierzchowca, by go osiodłać!",
|
"mattShall": "Mam przyprowadzić wierzchowca, <%= name %>? Gdy nakarmisz chowańca wystarczającą ilością jedzenia, by zamienił się w wierzchowca, pojawi się tutaj. Kliknij wierzchowca, by go osiodłać!",
|
||||||
"mattBochText1": "Witaj w stajni! Mam na imię Matt i jestem władcą chowańców. Od poziomu 3 możesz za pomocą jaj i eliksirów wykluwać chowańce. Gdy na Targu wyklujesz chowańca, to pojawi się on tutaj! Kliknij na obrazek jednego z nich, by pojawił się na twoim awatarze. Karm chowańce jedzeniem znajdowanym od poziomu 3, by wyrosły z nich potężne wierzchowce.",
|
"mattBochText1": "Witaj w stajni! Mam na imię Matt i jestem władcą chowańców. Od poziomu 3 możesz za pomocą jaj i eliksirów wykluwać chowańce. Gdy na Targu wyklujesz chowańca, to pojawi się on tutaj! Kliknij na obrazek jednego z nich, by pojawił się na twoim awatarze. Karm chowańce jedzeniem znajdowanym od poziomu 3, by wyrosły z nich potężne wierzchowce.",
|
||||||
|
|
@ -38,8 +38,8 @@
|
||||||
"displayEggForGold": "Czy chcesz sprzedać <strong><%= itemType %> Jajo</strong>?",
|
"displayEggForGold": "Czy chcesz sprzedać <strong><%= itemType %> Jajo</strong>?",
|
||||||
"displayPotionForGold": "Czy chcesz sprzedać <strong><%= itemType %> Eliksir</strong>?",
|
"displayPotionForGold": "Czy chcesz sprzedać <strong><%= itemType %> Eliksir</strong>?",
|
||||||
"sellForGold": "Sprzedaj za <%= gold %> szt. złota",
|
"sellForGold": "Sprzedaj za <%= gold %> szt. złota",
|
||||||
"howManyToSell": "How many would you like to sell?",
|
"howManyToSell": "Ile chcesz sprzedać?",
|
||||||
"yourBalance": "Your balance",
|
"yourBalance": "Twoja saldo",
|
||||||
"sell": "Sprzedaj",
|
"sell": "Sprzedaj",
|
||||||
"buyNow": "Kup",
|
"buyNow": "Kup",
|
||||||
"sortByNumber": "Numer",
|
"sortByNumber": "Numer",
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
"USD": "(USD)",
|
"USD": "(USD)",
|
||||||
"newStuff": "New Stuff by Bailey",
|
"newStuff": "New Stuff by Bailey",
|
||||||
"newBaileyUpdate": "New Bailey Update!",
|
"newBaileyUpdate": "New Bailey Update!",
|
||||||
"tellMeLater": "Tell Me Later",
|
"tellMeLater": "Przypomnij mi później",
|
||||||
"dismissAlert": "Ukryj to powiadomienie",
|
"dismissAlert": "Ukryj to powiadomienie",
|
||||||
"donateText1": "Twoje konto wzbogaci się o 20 Klejnotów. Za pomocą Klejnotów można kupić specjalne przedmioty w grze, na przykład stroje lub fryzury.",
|
"donateText1": "Twoje konto wzbogaci się o 20 Klejnotów. Za pomocą Klejnotów można kupić specjalne przedmioty w grze, na przykład stroje lub fryzury.",
|
||||||
"donateText2": "Pomóż wspierać Habitikę",
|
"donateText2": "Pomóż wspierać Habitikę",
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
"petNotOwned": "Nie posiadasz tego chowańca.",
|
"petNotOwned": "Nie posiadasz tego chowańca.",
|
||||||
"mountNotOwned": "Nie posiadasz tego wierzchowca.",
|
"mountNotOwned": "Nie posiadasz tego wierzchowca.",
|
||||||
"earnedCompanion": "Dzięki swej produktywności masz nowego towarzysza. Nakarm go by urósł!",
|
"earnedCompanion": "Dzięki swej produktywności masz nowego towarzysza. Nakarm go by urósł!",
|
||||||
"feedPet": "Nakarmić <%= text %> twojego <%= name %>?",
|
"feedPet": "Feed <%= text %> to your <%= name %>?",
|
||||||
"useSaddle": "Osiodłać <%= pet %>?",
|
"useSaddle": "Osiodłać <%= pet %>?",
|
||||||
"raisedPet": "Wyhodowałeś <%= pet %>!",
|
"raisedPet": "Wyhodowałeś <%= pet %>!",
|
||||||
"earnedSteed": "Dzięki ukończeniu swoich zadań masz teraz wiernego wierzchowca!",
|
"earnedSteed": "Dzięki ukończeniu swoich zadań masz teraz wiernego wierzchowca!",
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@
|
||||||
"APIToken": "Token API (to Twoje hasło – zobacz ostrzeżenie powyżej!)",
|
"APIToken": "Token API (to Twoje hasło – zobacz ostrzeżenie powyżej!)",
|
||||||
"showAPIToken": "Pokaż Token API",
|
"showAPIToken": "Pokaż Token API",
|
||||||
"hideAPIToken": "Ukryj Token API",
|
"hideAPIToken": "Ukryj Token API",
|
||||||
"APITokenWarning": "Jeśli potrzebujesz nowy token API (jeśli np. omyłkowo udostępniłeś go publicznie), to napisz wiadomość na <%= hrefTechAssistanceEmail %> zawierając twoje ID użytkownika oraz obecny token API. Gdy token zostanie zresetowany będziesz musiał jeszcze raz zalogować się na stronie oraz aplikacji mobilnej oraz wprowadzić nowy token do innych narzędzi do Habitica, których używasz.",
|
"APITokenWarning": "Jeśli potrzebujesz nowy token API (jeśli np. omyłkowo udostępniłeś go publicznie), to napisz wiadomość na e-mail<%= hrefTechAssistanceEmail %> zawierając twoje ID użytkownika oraz obecny token API. Gdy token zostanie zresetowany będziesz musiał jeszcze raz zalogować się na stronie oraz aplikacji mobilnej oraz wprowadzić nowy token do innych narzędzi do Habitica, których używasz.",
|
||||||
"thirdPartyApps": "Aplikacje osób trzecich",
|
"thirdPartyApps": "Aplikacje osób trzecich",
|
||||||
"dataToolDesc": "Strona internetowa, która pokazuje ci niektóre informacje na temat twojego konta Habitica, takie jak statystyki twoich zadań, ekwipunku i umiejętności.",
|
"dataToolDesc": "Strona internetowa, która pokazuje ci niektóre informacje na temat twojego konta Habitica, takie jak statystyki twoich zadań, ekwipunku i umiejętności.",
|
||||||
"beeminder": "Beeminder",
|
"beeminder": "Beeminder",
|
||||||
|
|
@ -130,7 +130,7 @@
|
||||||
"remindersToLogin": "Przypominaj by meldować się do Habitica",
|
"remindersToLogin": "Przypominaj by meldować się do Habitica",
|
||||||
"subscribeUsing": "Subskrybuj przez",
|
"subscribeUsing": "Subskrybuj przez",
|
||||||
"unsubscribedSuccessfully": "Poprawnie zrezygnowano z subskrypcji!",
|
"unsubscribedSuccessfully": "Poprawnie zrezygnowano z subskrypcji!",
|
||||||
"unsubscribedTextUsers": "Poprawnie zrezygnowałeś z subskrypcji wszystkich e-maili od Habitiki. W opcji </a>Ustawienia-> Powiadomienia</a>możesz włączyć wiadomości, które chcesz otrzymywać. (wymaga zalogowania)",
|
"unsubscribedTextUsers": "Poprawnie zrezygnowałeś z subskrypcji wszystkich e-maili od Habitiki. W opcji <a href=\"/user/settings/notifications\">Ustawienia-> Powiadomienia</a>możesz włączyć wiadomości, które chcesz otrzymywać. (wymaga zalogowania)",
|
||||||
"unsubscribedTextOthers": "Nie otrzymasz więcej żadnych e-maili od Habitica.",
|
"unsubscribedTextOthers": "Nie otrzymasz więcej żadnych e-maili od Habitica.",
|
||||||
"unsubscribeAllEmails": "Zaznacz by zrezygnować z subskrypcji e-maili",
|
"unsubscribeAllEmails": "Zaznacz by zrezygnować z subskrypcji e-maili",
|
||||||
"unsubscribeAllEmailsText": "Przez zaznaczenie tego pola poświadczam, że rozumiem że po zrezygnowaniu z subskrypcji wszystkich e-maili, Habitica nie będzie w stanie powiadamiać mnie przez e-mail o ważnych zmianach na stronie lub na moim koncie.",
|
"unsubscribeAllEmailsText": "Przez zaznaczenie tego pola poświadczam, że rozumiem że po zrezygnowaniu z subskrypcji wszystkich e-maili, Habitica nie będzie w stanie powiadamiać mnie przez e-mail o ważnych zmianach na stronie lub na moim koncie.",
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"clearCompleted": "Usuń zakończone",
|
"clearCompleted": "Usuń zakończone",
|
||||||
"clearCompletedDescription": "Completed To-Dos are deleted after 30 days for non-subscribers and 90 days for subscribers.",
|
"clearCompletedDescription": "Zakończone Do-Zrobienia zostają usunięte po 30 dniach dla nie-abonentów i bo 90 dniach dla abonentów.",
|
||||||
"clearCompletedConfirm": "Are you sure you want to delete your completed To-Dos?",
|
"clearCompletedConfirm": "Jesteś pewien, że chcesz usunąć zakończone Do-Zrobienia?",
|
||||||
"sureDeleteCompletedTodos": "Are you sure you want to delete your completed To-Dos?",
|
"sureDeleteCompletedTodos": "Jesteś pewien, że chcesz usunąć zakończone Do-Zrobienia?",
|
||||||
"lotOfToDos": "Ostatnie 30 skończonych Zadań jest widoczne tutaj. Możesz zobaczyć starsze skończone Zadania w Dane > Narzędzie wyświetlania danych lub Dane > Eksport danych > Dane użytkownika.",
|
"lotOfToDos": "Ostatnie 30 skończonych Zadań jest widoczne tutaj. Możesz zobaczyć starsze skończone Zadania w Dane > Narzędzie wyświetlania danych lub Dane > Eksport danych > Dane użytkownika.",
|
||||||
"deleteToDosExplanation": "Jeśli wciśniesz ten przycisk, to wszystkie twoje zakończone i zarchiwizowane Do-Zrobienia zostaną na zawsze usunięte. Nie dotyczyny do Do-Zrobienia z aktywnych wyzwań oraz planów grupowych. Eksoportuj je najpierw, jeśli chcesz je zachować.",
|
"deleteToDosExplanation": "Jeśli wciśniesz ten przycisk, to wszystkie twoje zakończone i zarchiwizowane Do-Zrobienia zostaną na zawsze usunięte. Nie dotyczyny do Do-Zrobienia z aktywnych wyzwań oraz planów grupowych. Eksoportuj je najpierw, jeśli chcesz je zachować.",
|
||||||
"addMultipleTip": "<strong>Rada:</strong> W celu dodania wielu zadań, oddziel każde z nich wstawiając znak końca linii (Shift + Enter), a następnie wciśnij \"Enter\".",
|
"addMultipleTip": "<strong>Rada:</strong> W celu dodania wielu zadań, oddziel każde z nich wstawiając znak końca linii (Shift + Enter), a następnie wciśnij \"Enter\".",
|
||||||
|
|
@ -34,20 +34,20 @@
|
||||||
"extraNotes": "Dodatkowe notatki",
|
"extraNotes": "Dodatkowe notatki",
|
||||||
"notes": "Notatki",
|
"notes": "Notatki",
|
||||||
"direction/Actions": "Kierunek/działania",
|
"direction/Actions": "Kierunek/działania",
|
||||||
"advancedSettings": "Advanced Settings",
|
"advancedSettings": "Zaawansowane Ustawienia",
|
||||||
"taskAlias": "Alias zadania",
|
"taskAlias": "Alias zadania",
|
||||||
"taskAliasPopover": "Nazwa zadania może być stosowana podczas integracji z aplikacjami trzecimi. Obsługiwane są tylko znaki podkreślenia, myślniki i znaki alfanumeryczne. Alias zadania nie może się powtarzać.",
|
"taskAliasPopover": "Nazwa zadania może być stosowana podczas integracji z aplikacjami trzecimi. Obsługiwane są tylko znaki podkreślenia, myślniki i znaki alfanumeryczne. Alias zadania nie może się powtarzać.",
|
||||||
"taskAliasPlaceholder": "tutaj-alias-twojego-zadania",
|
"taskAliasPlaceholder": "tutaj-alias-twojego-zadania",
|
||||||
"taskAliasPopoverWarning": "UWAGA: Zmiana tej wartości przerwie wszelkie integracje z aplikacjami trzecimi, które opierają się na aliasie zadania.",
|
"taskAliasPopoverWarning": "UWAGA: Zmiana tej wartości przerwie wszelkie integracje z aplikacjami trzecimi, które opierają się na aliasie zadania.",
|
||||||
"difficulty": "Trudność",
|
"difficulty": "Trudność",
|
||||||
"difficultyHelp": "Difficulty describes how challenging a Habit, Daily, or To-Do is for you to complete. A higher difficulty results in greater rewards when a Task is completed, but also greater damage when a Daily is missed or a negative Habit is clicked.",
|
"difficultyHelp": "Trudność odzwierciedla jak wymagający dla Ciebie do wykonania jest Nawyk, Codzienne albo Do-Zrobienia. Wyższa trudność daje większe nagrody kiedy Zadanie zostaje wykonane, ale powoduje też większe obrażenia kiedy Codzienne zostaje ominięte albo kiedy negatywny Nawyk zostaje naciśnięty.",
|
||||||
"trivial": "Banał",
|
"trivial": "Banał",
|
||||||
"easy": "Łatwe",
|
"easy": "Łatwe",
|
||||||
"medium": "Średnie",
|
"medium": "Średnie",
|
||||||
"hard": "Trudne",
|
"hard": "Trudne",
|
||||||
"attributes": "Stats",
|
"attributes": "Atrybuty",
|
||||||
"attributeAllocation": "Stat Allocation",
|
"attributeAllocation": "Przydział Atrybutów",
|
||||||
"attributeAllocationHelp": "Stat allocation is an option that provides methods for Habitica to automatically assign an earned Stat Point to a Stat immediately upon level-up. <br/><br/> You can set your Automatic Allocation method to Task Based in the Stats section of your profile.",
|
"attributeAllocationHelp": "Przydział Statystyk jest opcją która pozwala Habitice automatycznie przydzielić zdobyty Punkt Statystyk od razu po zdobyciu poziomu. <br/><br/>Możesz ustawić Twoją metodę Automatycznego Przydzielania na zorientowaną na Zadania w sekcji Statystyki w Swoim profilu.",
|
||||||
"progress": "Postęp",
|
"progress": "Postęp",
|
||||||
"daily": "Codzienne",
|
"daily": "Codzienne",
|
||||||
"dailies": "Codzienne",
|
"dailies": "Codzienne",
|
||||||
|
|
@ -58,7 +58,7 @@
|
||||||
"repeat": "Powtórz",
|
"repeat": "Powtórz",
|
||||||
"repeats": "Sposób powtarzania",
|
"repeats": "Sposób powtarzania",
|
||||||
"repeatEvery": "Powtórz co",
|
"repeatEvery": "Powtórz co",
|
||||||
"repeatOn": "Repeat On",
|
"repeatOn": "Powtórz w",
|
||||||
"repeatHelpTitle": "Jak często powinno się powtarzać to zadanie?",
|
"repeatHelpTitle": "Jak często powinno się powtarzać to zadanie?",
|
||||||
"dailyRepeatHelpContent": "To zadanie należy wypełniać co X dni. Możesz ustalić wartość X poniżej.",
|
"dailyRepeatHelpContent": "To zadanie należy wypełniać co X dni. Możesz ustalić wartość X poniżej.",
|
||||||
"weeklyRepeatHelpContent": "To zadanie należy wypełnić w wyróżnione podświetleniem poniższe dni. Kliknij dzień, by go dodać do wyróżnionych lub z nich wykluczyć. ",
|
"weeklyRepeatHelpContent": "To zadanie należy wypełnić w wyróżnione podświetleniem poniższe dni. Kliknij dzień, by go dodać do wyróżnionych lub z nich wykluczyć. ",
|
||||||
|
|
@ -66,7 +66,7 @@
|
||||||
"repeatWeek": "W niektóre dni tygodnia",
|
"repeatWeek": "W niektóre dni tygodnia",
|
||||||
"day": "Dzień",
|
"day": "Dzień",
|
||||||
"days": "Dni",
|
"days": "Dni",
|
||||||
"restoreStreak": "Adjust Streak",
|
"restoreStreak": "Dostosuj Serię",
|
||||||
"resetStreak": "Zresetuj serię",
|
"resetStreak": "Zresetuj serię",
|
||||||
"todo": "Do-Zrobienia",
|
"todo": "Do-Zrobienia",
|
||||||
"todos": "Do-Zrobienia",
|
"todos": "Do-Zrobienia",
|
||||||
|
|
@ -110,9 +110,9 @@
|
||||||
"streakSingular": "Seryjny wykonawca",
|
"streakSingular": "Seryjny wykonawca",
|
||||||
"streakSingularText": "Wykonał 21-dniową serię w Codziennym",
|
"streakSingularText": "Wykonał 21-dniową serię w Codziennym",
|
||||||
"perfectName": "<%= count %> Doskonałych Dni",
|
"perfectName": "<%= count %> Doskonałych Dni",
|
||||||
"perfectText": "Completed all active Dailies on <%= count %> days. With this achievement you get a +level/2 buff to all Stats for the next day. Levels greater than 100 don't have any additional effects on buffs.",
|
"perfectText": "Wykonał wszystkie aktywne Codzienne przez <%= count %> dni. Przy tym osiągnięciu otrzymujesz premię +poziom/2 do wszystkich Statystyk przez następny dzień. Poziomy większe niż 100 nie mają żadnych dodatkowych efektów premii.",
|
||||||
"perfectSingular": "Doskonały dzień",
|
"perfectSingular": "Doskonały dzień",
|
||||||
"perfectSingularText": "Completed all active Dailies in one day. With this achievement you get a +level/2 buff to all Stats for the next day. Levels greater than 100 don't have any additional effects on buffs.",
|
"perfectSingularText": "Wykonane wszystkie aktywne Codzienne w jednym dniu. Z tym osiągnięciem otrzymujesz wzmocnienie +poziom/2 do wszystkich Statystyk na następny dzień. Poziomy większe niż 100 nie mają żadnych dodatkowych efektów na wzmocnienia.",
|
||||||
"streakerAchievement": "Zdobyłeś osiągnięcie \"Seryjny wykonawca!\" 21 dni to kamień milowy w tworzeniu nawyku. Możesz nadal zbierać dodatkowe osiągnięcia za każde kolejne 21 dni, na tym Codziennym lub na każdym innym!",
|
"streakerAchievement": "Zdobyłeś osiągnięcie \"Seryjny wykonawca!\" 21 dni to kamień milowy w tworzeniu nawyku. Możesz nadal zbierać dodatkowe osiągnięcia za każde kolejne 21 dni, na tym Codziennym lub na każdym innym!",
|
||||||
"fortifyName": "Mikstura wzmocnienia",
|
"fortifyName": "Mikstura wzmocnienia",
|
||||||
"fortifyPop": "Przywraca wszystkie zadania do neutralnej wartości (żółty kolor), oraz uzdrawia całe stracone Zdrowie.",
|
"fortifyPop": "Przywraca wszystkie zadania do neutralnej wartości (żółty kolor), oraz uzdrawia całe stracone Zdrowie.",
|
||||||
|
|
@ -120,7 +120,7 @@
|
||||||
"fortifyText": "Wzmocnienie przywróci wszystkie zadania do wartości neutralnej (żółty kolor), tak jakbyś dopiero co je dodał, a w dodatku uzdrowi cię do pełna. Jest to świetne rozwiązanie, jeśli czerwone zadania sprawiają w grze zbyt wiele trudności lub z powodu niebieskich zadań gra jest zbyt łatwa. Jeśli rozpoczęcie od zera brzmi znacznie bardziej motywująco, to poświęć Klejnoty i poczuj ulgę!",
|
"fortifyText": "Wzmocnienie przywróci wszystkie zadania do wartości neutralnej (żółty kolor), tak jakbyś dopiero co je dodał, a w dodatku uzdrowi cię do pełna. Jest to świetne rozwiązanie, jeśli czerwone zadania sprawiają w grze zbyt wiele trudności lub z powodu niebieskich zadań gra jest zbyt łatwa. Jeśli rozpoczęcie od zera brzmi znacznie bardziej motywująco, to poświęć Klejnoty i poczuj ulgę!",
|
||||||
"confirmFortify": "Na pewno?",
|
"confirmFortify": "Na pewno?",
|
||||||
"fortifyComplete": "Wzmocnienie ukończone!",
|
"fortifyComplete": "Wzmocnienie ukończone!",
|
||||||
"deleteTask": "Delete this Task",
|
"deleteTask": "Usuń to Zadanie",
|
||||||
"sureDelete": "Jesteś pewien, że chcesz usunąć te zadanie?",
|
"sureDelete": "Jesteś pewien, że chcesz usunąć te zadanie?",
|
||||||
"streakCoins": "Premia za serię!",
|
"streakCoins": "Premia za serię!",
|
||||||
"taskToTop": "Na górę",
|
"taskToTop": "Na górę",
|
||||||
|
|
@ -141,7 +141,7 @@
|
||||||
"toDoHelp3": "Rozbicie Do-Zrobienia na listę mniejszych pozycji sprawi, że będą mniej straszne i zwiększą ilość twoich punktów!",
|
"toDoHelp3": "Rozbicie Do-Zrobienia na listę mniejszych pozycji sprawi, że będą mniej straszne i zwiększą ilość twoich punktów!",
|
||||||
"toDoHelp4": "Źródła inspiracji szukaj w <a href='http://habitica.wikia.com/wiki/Sample_To-Dos' target='_blank'>przykładowych Do-Zrobienia</a>!",
|
"toDoHelp4": "Źródła inspiracji szukaj w <a href='http://habitica.wikia.com/wiki/Sample_To-Dos' target='_blank'>przykładowych Do-Zrobienia</a>!",
|
||||||
"rewardHelp1": "Wyposażenie, które kupujesz dla swojego awatara, jest przechowywane w sekcji <%= linkStart %>Ekwipunek > Wyposażenie<%= linkEnd %>.",
|
"rewardHelp1": "Wyposażenie, które kupujesz dla swojego awatara, jest przechowywane w sekcji <%= linkStart %>Ekwipunek > Wyposażenie<%= linkEnd %>.",
|
||||||
"rewardHelp2": "Equipment affects your Stats (<%= linkStart %>Avatar > Stats<%= linkEnd %>).",
|
"rewardHelp2": "Wyposażenie wpływa na Twoje Statystyki (<%= linkStart %>Użytkownik > Statystyki<%= linkEnd %>).",
|
||||||
"rewardHelp3": "Specjalne elementy wyposażenia będą się pojawiały podczas wydarzeń o skali światowej.",
|
"rewardHelp3": "Specjalne elementy wyposażenia będą się pojawiały podczas wydarzeń o skali światowej.",
|
||||||
"rewardHelp4": "Nie bój się ustalać własnych nagród! Sprawdź <a href='http://habitica.wikia.com/wiki/Sample_Custom_Rewards' target='_blank'>przykłady tutaj</a>.",
|
"rewardHelp4": "Nie bój się ustalać własnych nagród! Sprawdź <a href='http://habitica.wikia.com/wiki/Sample_Custom_Rewards' target='_blank'>przykłady tutaj</a>.",
|
||||||
"clickForHelp": "Kliknij po pomoc",
|
"clickForHelp": "Kliknij po pomoc",
|
||||||
|
|
@ -172,9 +172,9 @@
|
||||||
"habitCounterDown": "Negatywny licznik (Resetowany <%= frequency %>)",
|
"habitCounterDown": "Negatywny licznik (Resetowany <%= frequency %>)",
|
||||||
"taskRequiresApproval": "To zadanie musi zostać zaaprobowane, zanim będziesz mógł je ukończyć. Prośba o zatwierdzenie została już wysłana.",
|
"taskRequiresApproval": "To zadanie musi zostać zaaprobowane, zanim będziesz mógł je ukończyć. Prośba o zatwierdzenie została już wysłana.",
|
||||||
"taskApprovalHasBeenRequested": "Prośba o zatwierdzenie została wysłana",
|
"taskApprovalHasBeenRequested": "Prośba o zatwierdzenie została wysłana",
|
||||||
"taskApprovalWasNotRequested": "Only a task waiting for approval can be marked as needing more work",
|
"taskApprovalWasNotRequested": "Tylko zadanie oczekujące aprobaty może zostać oznaczone jako potrzebujące większej pracy",
|
||||||
"approvals": "Aprobaty",
|
"approvals": "Aprobaty",
|
||||||
"approvalRequired": "Needs Approval",
|
"approvalRequired": "Wymagana Aprobata",
|
||||||
"repeatZero": "Dzienne nigdy nie jest aktywne",
|
"repeatZero": "Dzienne nigdy nie jest aktywne",
|
||||||
"repeatType": "Sposób powtarzania",
|
"repeatType": "Sposób powtarzania",
|
||||||
"repeatTypeHelpTitle": "W jaki sposób ma być to powtarzane?",
|
"repeatTypeHelpTitle": "W jaki sposób ma być to powtarzane?",
|
||||||
|
|
|
||||||
|
|
@ -194,35 +194,95 @@
|
||||||
"hatchingPotionNotes": "Utilize isto num ovo, e ele chocará como um mascote <%= potText(locale) %>.",
|
"hatchingPotionNotes": "Utilize isto num ovo, e ele chocará como um mascote <%= potText(locale) %>.",
|
||||||
"premiumPotionAddlNotes": "Não utilizável nos ovos de mascote de missão.",
|
"premiumPotionAddlNotes": "Não utilizável nos ovos de mascote de missão.",
|
||||||
"foodMeat": "Carne",
|
"foodMeat": "Carne",
|
||||||
|
"foodMeatThe": "the Meat",
|
||||||
|
"foodMeatA": "Meat",
|
||||||
"foodMilk": "Leite",
|
"foodMilk": "Leite",
|
||||||
|
"foodMilkThe": "the Milk",
|
||||||
|
"foodMilkA": "Milk",
|
||||||
"foodPotatoe": "Batata",
|
"foodPotatoe": "Batata",
|
||||||
|
"foodPotatoeThe": "the Potato",
|
||||||
|
"foodPotatoeA": "a Potato",
|
||||||
"foodStrawberry": "Morango",
|
"foodStrawberry": "Morango",
|
||||||
|
"foodStrawberryThe": "the Strawberry",
|
||||||
|
"foodStrawberryA": "a Strawberry",
|
||||||
"foodChocolate": "Chocolate",
|
"foodChocolate": "Chocolate",
|
||||||
|
"foodChocolateThe": "the Chocolate",
|
||||||
|
"foodChocolateA": "Chocolate",
|
||||||
"foodFish": "Peixe",
|
"foodFish": "Peixe",
|
||||||
|
"foodFishThe": "the Fish",
|
||||||
|
"foodFishA": "a Fish",
|
||||||
"foodRottenMeat": "Carne Estragada",
|
"foodRottenMeat": "Carne Estragada",
|
||||||
|
"foodRottenMeatThe": "the Rotten Meat",
|
||||||
|
"foodRottenMeatA": "Rotten Meat",
|
||||||
"foodCottonCandyPink": "Algodão-doce Rosa",
|
"foodCottonCandyPink": "Algodão-doce Rosa",
|
||||||
|
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
|
||||||
|
"foodCottonCandyPinkA": "Pink Cotton Candy",
|
||||||
"foodCottonCandyBlue": "Algodão-doce Azul",
|
"foodCottonCandyBlue": "Algodão-doce Azul",
|
||||||
|
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
|
||||||
|
"foodCottonCandyBlueA": "Blue Cotton Candy",
|
||||||
"foodHoney": "Mel",
|
"foodHoney": "Mel",
|
||||||
|
"foodHoneyThe": "the Honey",
|
||||||
|
"foodHoneyA": "Honey",
|
||||||
"foodCakeSkeleton": "Bolo Esquelético",
|
"foodCakeSkeleton": "Bolo Esquelético",
|
||||||
|
"foodCakeSkeletonThe": "the Bare Bones Cake",
|
||||||
|
"foodCakeSkeletonA": "a Bare Bones Cake",
|
||||||
"foodCakeBase": "Bolo Básico",
|
"foodCakeBase": "Bolo Básico",
|
||||||
|
"foodCakeBaseThe": "the Basic Cake",
|
||||||
|
"foodCakeBaseA": "a Basic Cake",
|
||||||
"foodCakeCottonCandyBlue": "Bolo de Doce Azul",
|
"foodCakeCottonCandyBlue": "Bolo de Doce Azul",
|
||||||
|
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
|
||||||
|
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
|
||||||
"foodCakeCottonCandyPink": "Bolo de Doce Rosa",
|
"foodCakeCottonCandyPink": "Bolo de Doce Rosa",
|
||||||
|
"foodCakeCottonCandyPinkThe": "the Candy Pink Cake",
|
||||||
|
"foodCakeCottonCandyPinkA": "a Candy Pink Cake",
|
||||||
"foodCakeShade": "Bolo de Chocolate",
|
"foodCakeShade": "Bolo de Chocolate",
|
||||||
|
"foodCakeShadeThe": "the Chocolate Cake",
|
||||||
|
"foodCakeShadeA": "a Chocolate Cake",
|
||||||
"foodCakeWhite": "Bolo de Creme",
|
"foodCakeWhite": "Bolo de Creme",
|
||||||
|
"foodCakeWhiteThe": "the Cream Cake",
|
||||||
|
"foodCakeWhiteA": "a Cream Cake",
|
||||||
"foodCakeGolden": "Bolo de Mel",
|
"foodCakeGolden": "Bolo de Mel",
|
||||||
|
"foodCakeGoldenThe": "the Honey Cake",
|
||||||
|
"foodCakeGoldenA": "a Honey Cake",
|
||||||
"foodCakeZombie": "Bolo Estragado",
|
"foodCakeZombie": "Bolo Estragado",
|
||||||
|
"foodCakeZombieThe": "the Rotten Cake",
|
||||||
|
"foodCakeZombieA": "a Rotten Cake",
|
||||||
"foodCakeDesert": "Bolo de Areia",
|
"foodCakeDesert": "Bolo de Areia",
|
||||||
|
"foodCakeDesertThe": "the Sand Cake",
|
||||||
|
"foodCakeDesertA": "a Sand Cake",
|
||||||
"foodCakeRed": "Bolo de Morango",
|
"foodCakeRed": "Bolo de Morango",
|
||||||
|
"foodCakeRedThe": "the Strawberry Cake",
|
||||||
|
"foodCakeRedA": "a Strawberry Cake",
|
||||||
"foodCandySkeleton": "Bala de Ossos",
|
"foodCandySkeleton": "Bala de Ossos",
|
||||||
|
"foodCandySkeletonThe": "the Bare Bones Candy",
|
||||||
|
"foodCandySkeletonA": "Bare Bones Candy",
|
||||||
"foodCandyBase": "Bala Comum",
|
"foodCandyBase": "Bala Comum",
|
||||||
|
"foodCandyBaseThe": "the Basic Candy",
|
||||||
|
"foodCandyBaseA": "Basic Candy",
|
||||||
"foodCandyCottonCandyBlue": "Bala Azul Azedo",
|
"foodCandyCottonCandyBlue": "Bala Azul Azedo",
|
||||||
|
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
|
||||||
|
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
|
||||||
"foodCandyCottonCandyPink": "Bala Rosa Azeda",
|
"foodCandyCottonCandyPink": "Bala Rosa Azeda",
|
||||||
|
"foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
|
||||||
|
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
|
||||||
"foodCandyShade": "Bala de Chocolate",
|
"foodCandyShade": "Bala de Chocolate",
|
||||||
|
"foodCandyShadeThe": "the Chocolate Candy",
|
||||||
|
"foodCandyShadeA": "Chocolate Candy",
|
||||||
"foodCandyWhite": "Bala de Baunilha",
|
"foodCandyWhite": "Bala de Baunilha",
|
||||||
|
"foodCandyWhiteThe": "the Vanilla Candy",
|
||||||
|
"foodCandyWhiteA": "Vanilla Candy",
|
||||||
"foodCandyGolden": "Bala de Mel",
|
"foodCandyGolden": "Bala de Mel",
|
||||||
|
"foodCandyGoldenThe": "the Honey Candy",
|
||||||
|
"foodCandyGoldenA": "Honey Candy",
|
||||||
"foodCandyZombie": "Bala Podre",
|
"foodCandyZombie": "Bala Podre",
|
||||||
|
"foodCandyZombieThe": "the Rotten Candy",
|
||||||
|
"foodCandyZombieA": "Rotten Candy",
|
||||||
"foodCandyDesert": "Bala de Areia",
|
"foodCandyDesert": "Bala de Areia",
|
||||||
|
"foodCandyDesertThe": "the Sand Candy",
|
||||||
|
"foodCandyDesertA": "Sand Candy",
|
||||||
"foodCandyRed": "Bala de Canela",
|
"foodCandyRed": "Bala de Canela",
|
||||||
|
"foodCandyRedThe": "the Cinnamon Candy",
|
||||||
|
"foodCandyRedA": "Cinnamon Candy",
|
||||||
"foodSaddleText": "Sela",
|
"foodSaddleText": "Sela",
|
||||||
"foodSaddleNotes": "Eleve instantaneamente um dos seus mascotes para uma montada.",
|
"foodSaddleNotes": "Eleve instantaneamente um dos seus mascotes para uma montada.",
|
||||||
"foodSaddleSellWarningNote": "Hey! Este objeto é bastante útil! Está familiarizado com a utilização de uma Sela com as suas Mascotes?",
|
"foodSaddleSellWarningNote": "Hey! Este objeto é bastante útil! Está familiarizado com a utilização de uma Sela com as suas Mascotes?",
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
"weaponSpecialSkiText": "Mastro Assa-ski-no",
|
"weaponSpecialSkiText": "Mastro Assa-ski-no",
|
||||||
"weaponSpecialSkiNotes": "Uma arma capaz de destruir hordas de inimigos! Também ajuda o usuário a fazer belas curvas paralelas no esqui. Aumenta Força em <%= str %>. Equipamento Edição Limitada de Inverno 2013-2014.",
|
"weaponSpecialSkiNotes": "Uma arma capaz de destruir hordas de inimigos! Também ajuda o usuário a fazer belas curvas paralelas no esqui. Aumenta Força em <%= str %>. Equipamento Edição Limitada de Inverno 2013-2014.",
|
||||||
"weaponSpecialCandycaneText": "Cajado de Bastão Doce",
|
"weaponSpecialCandycaneText": "Cajado de Bastão Doce",
|
||||||
"weaponSpecialCandycaneNotes": "Um poderoso cajado de mago. Poderosamente DELICIOSO, queremos dizer! Arma de duas mãos. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento Edição Limitada de Inverno 2013-2014.",
|
"weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
|
||||||
"weaponSpecialSnowflakeText": "Varinha Floco de Neve",
|
"weaponSpecialSnowflakeText": "Varinha Floco de Neve",
|
||||||
"weaponSpecialSnowflakeNotes": "Esta varinha brilha com ilimitado poder de cura. Aumenta Inteligência em <%= int %> pontos. Equipamento Edição Limitada de Inverno 2013-2014.",
|
"weaponSpecialSnowflakeNotes": "Esta varinha brilha com ilimitado poder de cura. Aumenta Inteligência em <%= int %> pontos. Equipamento Edição Limitada de Inverno 2013-2014.",
|
||||||
"weaponSpecialSpringRogueText": "Garras de Gancho",
|
"weaponSpecialSpringRogueText": "Garras de Gancho",
|
||||||
|
|
@ -320,10 +320,10 @@
|
||||||
"weaponArmoireWeaversCombNotes": "Use este pente para agrupar os seus fios cruzados de forma a tecer um tecido forte. Aumenta Percepção em <%= per %> e Força em <%= str %>. Armário Encantado: Conjunto de Tecelão (Item 2 de 3).",
|
"weaponArmoireWeaversCombNotes": "Use este pente para agrupar os seus fios cruzados de forma a tecer um tecido forte. Aumenta Percepção em <%= per %> e Força em <%= str %>. Armário Encantado: Conjunto de Tecelão (Item 2 de 3).",
|
||||||
"weaponArmoireLamplighterText": "Acende-lâmpadas",
|
"weaponArmoireLamplighterText": "Acende-lâmpadas",
|
||||||
"weaponArmoireLamplighterNotes": "This long pole has a wick on one end for lighting lamps, and a hook on the other end for putting them out. Increases Constitution by <%= con %> and Perception by <%= per %>.",
|
"weaponArmoireLamplighterNotes": "This long pole has a wick on one end for lighting lamps, and a hook on the other end for putting them out. Increases Constitution by <%= con %> and Perception by <%= per %>.",
|
||||||
"weaponArmoireCoachDriversWhipText": "Coach Driver's Whip",
|
"weaponArmoireCoachDriversWhipText": "Chicote de Cocheiro",
|
||||||
"weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 3 of 3).",
|
"weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 3 of 3).",
|
||||||
"weaponArmoireScepterOfDiamondsText": "Scepter of Diamonds",
|
"weaponArmoireScepterOfDiamondsText": "Ceptro de Ouros",
|
||||||
"weaponArmoireScepterOfDiamondsNotes": "This scepter shines with a warm red glow as it grants you increased willpower. Increases Strength by <%= str %>. Enchanted Armoire: King of Diamonds Set (Item 3 of 3).",
|
"weaponArmoireScepterOfDiamondsNotes": "Este ceptro reluz em tons quentes e avermelhados enquanto intensifica a tua força de vontade. Aumenta Força em <%= str %>. Armário Encantado: Conjunto de Rei de Ouros (Item 3 de 3).",
|
||||||
"armor": "armadura",
|
"armor": "armadura",
|
||||||
"armorCapitalized": "Armadura",
|
"armorCapitalized": "Armadura",
|
||||||
"armorBase0Text": "Roupas Modestas",
|
"armorBase0Text": "Roupas Modestas",
|
||||||
|
|
@ -371,11 +371,11 @@
|
||||||
"armorSpecial0Text": "Armadura Sombria",
|
"armorSpecial0Text": "Armadura Sombria",
|
||||||
"armorSpecial0Notes": "Grita quando atingida, pois ela sente dor no lugar do usuário. Aumenta Cosntituição em <%= con %>.",
|
"armorSpecial0Notes": "Grita quando atingida, pois ela sente dor no lugar do usuário. Aumenta Cosntituição em <%= con %>.",
|
||||||
"armorSpecial1Text": "Armadura de Cristal",
|
"armorSpecial1Text": "Armadura de Cristal",
|
||||||
"armorSpecial1Notes": "Its tireless power inures the wearer to mundane discomfort. Increases all Stats by <%= attrs %>.",
|
"armorSpecial1Notes": "O seu poder incansável torna o portador imune ao desconforto mundano. Aumenta todas as Características em <%= attrs %>.",
|
||||||
"armorSpecial2Text": "Nobre túnica do Jean Chalard",
|
"armorSpecial2Text": "Nobre túnica do Jean Chalard",
|
||||||
"armorSpecial2Notes": "Te deixa extra fofo! Aumenta Constituição e Inteligência em <%= attrs %> cada.",
|
"armorSpecial2Notes": "Te deixa extra fofo! Aumenta Constituição e Inteligência em <%= attrs %> cada.",
|
||||||
"armorSpecialTakeThisText": "Armadura Take This",
|
"armorSpecialTakeThisText": "Armadura Take This",
|
||||||
"armorSpecialTakeThisNotes": "This armor was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
|
"armorSpecialTakeThisNotes": "Ganhaste esta armadura por participares num Desafio patrocinado, criado pela Take This. Parabéns! Aumenta todas as Características em <%= attrs %>.",
|
||||||
"armorSpecialFinnedOceanicArmorText": "Armadura Oceânica com Barbatanas",
|
"armorSpecialFinnedOceanicArmorText": "Armadura Oceânica com Barbatanas",
|
||||||
"armorSpecialFinnedOceanicArmorNotes": "Apesar de delicada, esta armadura faz a sua pele ser tão nociva quanto um coral de fogo. Aumenta a Força em <%= str %>.",
|
"armorSpecialFinnedOceanicArmorNotes": "Apesar de delicada, esta armadura faz a sua pele ser tão nociva quanto um coral de fogo. Aumenta a Força em <%= str %>.",
|
||||||
"armorSpecialPyromancersRobesText": "Túnica do Pyromancer",
|
"armorSpecialPyromancersRobesText": "Túnica do Pyromancer",
|
||||||
|
|
@ -418,8 +418,8 @@
|
||||||
"armorSpecialBirthday2016Notes": "Feliz Aniversário, Habitica! Use esta Túnica Ridícula de Festa para celebrar este dia maravilhoso. Não confere benefícios.",
|
"armorSpecialBirthday2016Notes": "Feliz Aniversário, Habitica! Use esta Túnica Ridícula de Festa para celebrar este dia maravilhoso. Não confere benefícios.",
|
||||||
"armorSpecialBirthday2017Text": "Túnica Caprichosa de Festa",
|
"armorSpecialBirthday2017Text": "Túnica Caprichosa de Festa",
|
||||||
"armorSpecialBirthday2017Notes": "Feliz Aniversário, Habitica! Vista esta Túnicas Caprichosa de Festa para celebrar este dia maravilhoso. Não confere benefícios.",
|
"armorSpecialBirthday2017Notes": "Feliz Aniversário, Habitica! Vista esta Túnicas Caprichosa de Festa para celebrar este dia maravilhoso. Não confere benefícios.",
|
||||||
"armorSpecialBirthday2018Text": "Fanciful Party Robes",
|
"armorSpecialBirthday2018Text": "Manto de Festa Fantasioso",
|
||||||
"armorSpecialBirthday2018Notes": "Happy Birthday, Habitica! Wear these Fanciful Party Robes to celebrate this wonderful day. Confers no benefit.",
|
"armorSpecialBirthday2018Notes": "Feliz aniversário, Habitica! Usa este Manto de Festa Fantasioso para celebrar este dia maravilhoso. Não confere qualquer benefício.",
|
||||||
"armorSpecialGaymerxText": "Armadura do Guerreiro Arco-Íris",
|
"armorSpecialGaymerxText": "Armadura do Guerreiro Arco-Íris",
|
||||||
"armorSpecialGaymerxNotes": "Para celebrar a Conferência GaymerX, esta armadura especial foi decorada com uma colorida e radiante estampa arco-íris. A GaymerX é uma conferência de games que celebra a comunidade LGTBQ e jogos, sendo aberta para todo mundo.",
|
"armorSpecialGaymerxNotes": "Para celebrar a Conferência GaymerX, esta armadura especial foi decorada com uma colorida e radiante estampa arco-íris. A GaymerX é uma conferência de games que celebra a comunidade LGTBQ e jogos, sendo aberta para todo mundo.",
|
||||||
"armorSpecialSpringRogueText": "Traje Elegante de Gato",
|
"armorSpecialSpringRogueText": "Traje Elegante de Gato",
|
||||||
|
|
@ -542,14 +542,14 @@
|
||||||
"armorSpecialFall2017MageNotes": "Que conjunto de mascarada estaria completo sem túnicas arrebatadoras e dramáticas? Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada do Outono de 2017",
|
"armorSpecialFall2017MageNotes": "Que conjunto de mascarada estaria completo sem túnicas arrebatadoras e dramáticas? Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada do Outono de 2017",
|
||||||
"armorSpecialFall2017HealerText": "Armadura de Casa Assombrada",
|
"armorSpecialFall2017HealerText": "Armadura de Casa Assombrada",
|
||||||
"armorSpecialFall2017HealerNotes": "O seu coração é uma porta aberta. E os seus ombros são telhas de telhado! Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2017.",
|
"armorSpecialFall2017HealerNotes": "O seu coração é uma porta aberta. E os seus ombros são telhas de telhado! Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2017.",
|
||||||
"armorSpecialWinter2018RogueText": "Reindeer Costume",
|
"armorSpecialWinter2018RogueText": "Traje de Rena",
|
||||||
"armorSpecialWinter2018RogueNotes": "You look so cute and fuzzy, who could suspect you are after holiday loot? Increases Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
|
"armorSpecialWinter2018RogueNotes": "Ficas tão giro e fofinho, quem poderia suspeitar que andas atrás de saque festivo? Aumenta a Percepção em <%= per %>. Edição Limitada do Equipamento de Inverno 2017-2018.",
|
||||||
"armorSpecialWinter2018WarriorText": "Wrapping Paper Armor",
|
"armorSpecialWinter2018WarriorText": "Armadura de Papel de Embrulho",
|
||||||
"armorSpecialWinter2018WarriorNotes": "Don't let the papery feel of this armor fool you. It's nearly impossible to rip! Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
|
"armorSpecialWinter2018WarriorNotes": "Não deixes a sensação papelosa desta armadura enganar-te. É quase impossível de rasgar! Aumenta a Constituição em <%= con %>. Edição Limitada do Equipamento de Inverno 2017-2018.",
|
||||||
"armorSpecialWinter2018MageText": "Sparkly Tuxedo",
|
"armorSpecialWinter2018MageText": "Smoking Cintilante",
|
||||||
"armorSpecialWinter2018MageNotes": "The ultimate in magical formalwear. Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.",
|
"armorSpecialWinter2018MageNotes": "A derradeira roupa formal mágica. Aumenta a Inteligência em <%= int %>. Edição Limitada do Equipamento de Inverno 2017-2018. ",
|
||||||
"armorSpecialWinter2018HealerText": "Mistletoe Robes",
|
"armorSpecialWinter2018HealerText": "Manto de Visco",
|
||||||
"armorSpecialWinter2018HealerNotes": "These robes are woven with spells for extra holiday joy. Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
|
"armorSpecialWinter2018HealerNotes": "Este manto foi tecido com feitiços de alegria festiva extra. Aumenta a Constituição em <%= con %>. Edição Limitada do Equipamento de Inverno 2017-2018. ",
|
||||||
"armorMystery201402Text": "Túnicas do Mensageiro",
|
"armorMystery201402Text": "Túnicas do Mensageiro",
|
||||||
"armorMystery201402Notes": "Cintilantes e resistentes, essas túnicas tem vários bolsos para carregar cartas. Não concede benefícios. Item de Assinante de Fevereiro 2014.",
|
"armorMystery201402Notes": "Cintilantes e resistentes, essas túnicas tem vários bolsos para carregar cartas. Não concede benefícios. Item de Assinante de Fevereiro 2014.",
|
||||||
"armorMystery201403Text": "Armadura do Andador da Floresta",
|
"armorMystery201403Text": "Armadura do Andador da Floresta",
|
||||||
|
|
@ -1461,5 +1461,6 @@
|
||||||
"eyewearMystery301703Text": "Máscara de Carnaval de Pavão",
|
"eyewearMystery301703Text": "Máscara de Carnaval de Pavão",
|
||||||
"eyewearMystery301703Notes": "Perfeita para um baile de máscaras elegante ou para se mover de forma furtiva numa multidão particularmente bem vestida. Não confere benefícios. Item de Assinante de Março de 3017.",
|
"eyewearMystery301703Notes": "Perfeita para um baile de máscaras elegante ou para se mover de forma furtiva numa multidão particularmente bem vestida. Não confere benefícios. Item de Assinante de Março de 3017.",
|
||||||
"eyewearArmoirePlagueDoctorMaskText": "Máscara Doutor Praga",
|
"eyewearArmoirePlagueDoctorMaskText": "Máscara Doutor Praga",
|
||||||
"eyewearArmoirePlagueDoctorMaskNotes": "Uma autêntica máscara usada pelos médicos que lutaram contra a Praga da Procrastinação. Não confere benefícios. Armário Encantado: Conjunto Doutor Praga (Item 2 de 3)."
|
"eyewearArmoirePlagueDoctorMaskNotes": "Uma autêntica máscara usada pelos médicos que lutaram contra a Praga da Procrastinação. Não confere benefícios. Armário Encantado: Conjunto Doutor Praga (Item 2 de 3).",
|
||||||
|
"twoHandedItem": "Two-handed item."
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue