From 3bee0446b89e2583c810984dcf3de0e21984998f Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Fri, 9 Feb 2018 08:57:55 -0700 Subject: [PATCH 1/4] Loaded profile when not cached (#9977) --- website/client/components/chat/chatMessages.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/website/client/components/chat/chatMessages.vue b/website/client/components/chat/chatMessages.vue index 0b9494755c..3b43351bb9 100644 --- a/website/client/components/chat/chatMessages.vue +++ b/website/client/components/chat/chatMessages.vue @@ -197,8 +197,14 @@ export default { return false; }, - showMemberModal (memberId) { - const profile = this.cachedProfileData[memberId]; + async showMemberModal (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 if (profile && !profile.rejected) { From 92abb19f9c6d49325167cd3eb15ec2b62ce5d5c9 Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Fri, 9 Feb 2018 08:59:49 -0700 Subject: [PATCH 2/4] Docker update (#9976) * Updated docker prod * Added new gulp cli --- Dockerfile-Production | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-Production b/Dockerfile-Production index baee7d23ca..fdc8dd6100 100644 --- a/Dockerfile-Production +++ b/Dockerfile-Production @@ -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 RUN yarn global add npm@5 # Install global packages -RUN npm install -g gulp mocha +RUN npm install -g gulp-cli mocha # Clone Habitica repo and install dependencies RUN mkdir -p /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 gulp build:prod --force From 9017eea0c4b73a160dc4c41c4d1a52c6dfe1bbeb Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Fri, 9 Feb 2018 10:05:12 -0600 Subject: [PATCH 3/4] 4.26.1 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index f79e149f56..8e61767ed9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "habitica", - "version": "4.26.0", + "version": "4.26.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 4c7948fbd5..71b6a47f4f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "habitica", "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", "dependencies": { "@slack/client": "^3.8.1", From f78bcc20c909e0452dcb3ba56580a887893e7e6f Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Sat, 10 Feb 2018 05:18:40 +0000 Subject: [PATCH 4/4] chore(i18n): update locales --- website/common/locales/bg/content.json | 60 ++++++++++++++ website/common/locales/bg/gear.json | 5 +- website/common/locales/bg/generic.json | 2 + website/common/locales/bg/limited.json | 2 +- website/common/locales/bg/messages.json | 8 +- website/common/locales/bg/pets.json | 2 +- website/common/locales/cs/character.json | 12 +-- website/common/locales/cs/content.json | 60 ++++++++++++++ website/common/locales/cs/gear.json | 5 +- website/common/locales/cs/generic.json | 2 + website/common/locales/cs/messages.json | 8 +- website/common/locales/cs/pets.json | 18 ++-- website/common/locales/da/content.json | 60 ++++++++++++++ website/common/locales/da/gear.json | 5 +- website/common/locales/da/generic.json | 2 + website/common/locales/da/messages.json | 8 +- website/common/locales/da/pets.json | 2 +- website/common/locales/de/content.json | 60 ++++++++++++++ website/common/locales/de/gear.json | 11 +-- website/common/locales/de/generic.json | 2 + website/common/locales/de/messages.json | 8 +- website/common/locales/de/npc.json | 12 +-- website/common/locales/de/pets.json | 2 +- website/common/locales/en@pirate/content.json | 60 ++++++++++++++ website/common/locales/en@pirate/gear.json | 5 +- website/common/locales/en@pirate/generic.json | 2 + .../common/locales/en@pirate/messages.json | 8 +- website/common/locales/en@pirate/pets.json | 2 +- website/common/locales/en_GB/content.json | 60 ++++++++++++++ website/common/locales/en_GB/gear.json | 5 +- website/common/locales/en_GB/generic.json | 2 + website/common/locales/en_GB/messages.json | 8 +- website/common/locales/en_GB/pets.json | 2 +- website/common/locales/es/content.json | 60 ++++++++++++++ website/common/locales/es/gear.json | 5 +- website/common/locales/es/generic.json | 2 + website/common/locales/es/messages.json | 8 +- website/common/locales/es/pets.json | 2 +- website/common/locales/es_419/character.json | 4 +- website/common/locales/es_419/content.json | 60 ++++++++++++++ website/common/locales/es_419/gear.json | 5 +- website/common/locales/es_419/generic.json | 2 + website/common/locales/es_419/messages.json | 16 ++-- website/common/locales/es_419/pets.json | 2 +- website/common/locales/es_419/quests.json | 2 +- website/common/locales/es_419/rebirth.json | 2 +- website/common/locales/fr/content.json | 60 ++++++++++++++ website/common/locales/fr/gear.json | 5 +- website/common/locales/fr/generic.json | 2 + website/common/locales/fr/messages.json | 8 +- website/common/locales/fr/pets.json | 2 +- website/common/locales/he/content.json | 60 ++++++++++++++ website/common/locales/he/gear.json | 5 +- website/common/locales/he/generic.json | 2 + website/common/locales/he/messages.json | 8 +- website/common/locales/he/pets.json | 2 +- website/common/locales/hu/content.json | 60 ++++++++++++++ website/common/locales/hu/gear.json | 5 +- website/common/locales/hu/generic.json | 2 + website/common/locales/hu/messages.json | 8 +- website/common/locales/hu/pets.json | 2 +- website/common/locales/id/content.json | 60 ++++++++++++++ website/common/locales/id/gear.json | 5 +- website/common/locales/id/generic.json | 2 + website/common/locales/id/limited.json | 2 +- website/common/locales/id/messages.json | 8 +- website/common/locales/id/pets.json | 2 +- website/common/locales/it/content.json | 60 ++++++++++++++ website/common/locales/it/gear.json | 5 +- website/common/locales/it/generic.json | 2 + website/common/locales/it/messages.json | 8 +- website/common/locales/it/pets.json | 2 +- website/common/locales/ja/content.json | 60 ++++++++++++++ website/common/locales/ja/gear.json | 5 +- website/common/locales/ja/generic.json | 2 + website/common/locales/ja/messages.json | 8 +- website/common/locales/ja/pets.json | 2 +- website/common/locales/nl/content.json | 60 ++++++++++++++ website/common/locales/nl/gear.json | 5 +- website/common/locales/nl/generic.json | 2 + website/common/locales/nl/messages.json | 8 +- website/common/locales/nl/pets.json | 2 +- website/common/locales/pl/backgrounds.json | 14 ++-- website/common/locales/pl/challenge.json | 8 +- website/common/locales/pl/content.json | 66 ++++++++++++++- website/common/locales/pl/gear.json | 39 ++++----- website/common/locales/pl/generic.json | 2 + website/common/locales/pl/limited.json | 2 +- .../common/locales/pl/loadingscreentips.json | 26 +++--- website/common/locales/pl/messages.json | 8 +- website/common/locales/pl/npc.json | 10 +-- website/common/locales/pl/pets.json | 2 +- website/common/locales/pl/settings.json | 4 +- website/common/locales/pl/tasks.json | 32 ++++---- website/common/locales/pt/content.json | 60 ++++++++++++++ website/common/locales/pt/gear.json | 35 ++++---- website/common/locales/pt/generic.json | 2 + website/common/locales/pt/messages.json | 8 +- website/common/locales/pt/pets.json | 2 +- website/common/locales/pt_BR/content.json | 60 ++++++++++++++ website/common/locales/pt_BR/gear.json | 5 +- website/common/locales/pt_BR/generic.json | 2 + website/common/locales/pt_BR/messages.json | 8 +- website/common/locales/pt_BR/pets.json | 2 +- website/common/locales/ro/content.json | 60 ++++++++++++++ website/common/locales/ro/gear.json | 5 +- website/common/locales/ro/generic.json | 2 + website/common/locales/ro/messages.json | 8 +- website/common/locales/ro/pets.json | 2 +- website/common/locales/ru/challenge.json | 4 +- website/common/locales/ru/content.json | 62 +++++++++++++- website/common/locales/ru/gear.json | 5 +- website/common/locales/ru/generic.json | 8 +- website/common/locales/ru/groups.json | 82 +++++++++---------- website/common/locales/ru/limited.json | 2 +- .../common/locales/ru/loadingscreentips.json | 2 +- website/common/locales/ru/messages.json | 8 +- website/common/locales/ru/pets.json | 2 +- website/common/locales/ru/subscriber.json | 8 +- website/common/locales/ru/tasks.json | 2 +- website/common/locales/sk/content.json | 60 ++++++++++++++ website/common/locales/sk/gear.json | 5 +- website/common/locales/sk/generic.json | 2 + website/common/locales/sk/messages.json | 8 +- website/common/locales/sk/pets.json | 2 +- website/common/locales/sr/content.json | 60 ++++++++++++++ website/common/locales/sr/gear.json | 5 +- website/common/locales/sr/generic.json | 2 + website/common/locales/sr/messages.json | 8 +- website/common/locales/sr/pets.json | 2 +- website/common/locales/sv/content.json | 60 ++++++++++++++ website/common/locales/sv/gear.json | 5 +- website/common/locales/sv/generic.json | 2 + website/common/locales/sv/messages.json | 8 +- website/common/locales/sv/pets.json | 2 +- website/common/locales/tr/content.json | 60 ++++++++++++++ website/common/locales/tr/gear.json | 7 +- website/common/locales/tr/generic.json | 2 + website/common/locales/tr/messages.json | 8 +- website/common/locales/tr/pets.json | 2 +- website/common/locales/tr/tasks.json | 4 +- website/common/locales/uk/content.json | 60 ++++++++++++++ website/common/locales/uk/gear.json | 5 +- website/common/locales/uk/generic.json | 2 + website/common/locales/uk/messages.json | 8 +- website/common/locales/uk/pets.json | 2 +- website/common/locales/zh/content.json | 60 ++++++++++++++ website/common/locales/zh/gear.json | 5 +- website/common/locales/zh/generic.json | 2 + website/common/locales/zh/messages.json | 8 +- website/common/locales/zh/pets.json | 2 +- website/common/locales/zh_TW/content.json | 60 ++++++++++++++ website/common/locales/zh_TW/gear.json | 5 +- website/common/locales/zh_TW/generic.json | 2 + website/common/locales/zh_TW/messages.json | 8 +- website/common/locales/zh_TW/pets.json | 2 +- 156 files changed, 2063 insertions(+), 362 deletions(-) diff --git a/website/common/locales/bg/content.json b/website/common/locales/bg/content.json index b6a71aea08..ded9941986 100644 --- a/website/common/locales/bg/content.json +++ b/website/common/locales/bg/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Излейте това върху яйце и от него ще се излюпи любимец с(ъс) <%= potText(locale) %>.", "premiumPotionAddlNotes": "Не може да се използва върху яйца за любимци от мисии.", "foodMeat": "Месо", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Мляко", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Картоф", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Ягода", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Шоколад", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Риба", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Развалено месо", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Розов захарен памук", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Син захарен памук", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Мед", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Костена торта", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Обикновена торта", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Синя захарна торта", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Розова захарна торта", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Шоколадова торта", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Торта с крем", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Медена торта", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Развалена торта", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Пясъчна торта", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Ягодова торта", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Костен бонбон", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Обикновен бонбон", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Кисел син бонбон", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Кисел розов бонбон", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Шоколадов бонбон", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Ванилов бонбон", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Меден бонбон", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Развален бонбон", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Пясъчен бонбон", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Канелен бонбон", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Седло", "foodSaddleNotes": "Моментално превръща един от любимците Ви в превоз.", "foodSaddleSellWarningNote": "Хей! Това е доста полезен предмет! Знаете ли как да използвате седло за любимците си?", diff --git a/website/common/locales/bg/gear.json b/website/common/locales/bg/gear.json index 7899094933..2d5865b1d3 100644 --- a/website/common/locales/bg/gear.json +++ b/website/common/locales/bg/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "Прът на ски-убиец", "weaponSpecialSkiNotes": "Оръжие, способно да заличава орди от врагове! Също помага на носещия го да прави много добри обратни завои. Увеличава силата с <%= str %>. Ограничена серия: Зимна екипировка 2013-2014 г.", "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": "Снежинкова магическа пръчка", "weaponSpecialSnowflakeNotes": "Тази магическа пръчица искри с безгранична лековита сила. Увеличава интелигентността с <%= int %>. Ограничена серия: Зимна екипировка 2013-2014 г.", "weaponSpecialSpringRogueText": "Ноктоподобни куки", @@ -1461,5 +1461,6 @@ "eyewearMystery301703Text": "Маскарадна маска на паун", "eyewearMystery301703Notes": "Идеална за изискани маскени балове или за промъкване през особено добре издокарана тълпа. Не променя показателите. Предмет за абонати: март 3017 г.", "eyewearArmoirePlagueDoctorMaskText": "Маска на чумен лекар", - "eyewearArmoirePlagueDoctorMaskNotes": "Съвсем истинска маска, носена от лекарите, които са се борили срещу чумата на протакането. Не променя показателите. Омагьосан гардероб: комплект „Чумен лекар“ (предмет 2 от 3)." + "eyewearArmoirePlagueDoctorMaskNotes": "Съвсем истинска маска, носена от лекарите, които са се борили срещу чумата на протакането. Не променя показателите. Омагьосан гардероб: комплект „Чумен лекар“ (предмет 2 от 3).", + "twoHandedItem": "Two-handed item." } \ No newline at end of file diff --git a/website/common/locales/bg/generic.json b/website/common/locales/bg/generic.json index 43e029dec7..65898199d0 100644 --- a/website/common/locales/bg/generic.json +++ b/website/common/locales/bg/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Помогнал(а) за победата над Озадачителя по време на Буйното пролетно събитие — 2016 г.", "checkOutProgress": "Вижте напредъка ми в Хабитика!", "cards": "Картички", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "Получихте <%= card %>", "greetingCard": "Честитка", "greetingCardExplanation": "И двамата получихте постижението „Весел другар“!", diff --git a/website/common/locales/bg/limited.json b/website/common/locales/bg/limited.json index 3723a89824..ae9d495676 100644 --- a/website/common/locales/bg/limited.json +++ b/website/common/locales/bg/limited.json @@ -125,7 +125,7 @@ "dateEndOctober": "31 октомври", "dateEndNovember": "30 ноември", "dateEndJanuary": "31 януари", - "dateEndFebruary": "February 28", + "dateEndFebruary": "28 февруари", "winterPromoGiftHeader": "ПОДАРЕТЕ АБОНАМЕНТ И ЩЕ ПОЛУЧИТЕ ОЩЕ ЕДИН БЕЗПЛАТНО!", "winterPromoGiftDetails1": "Само до 12 януари, ако подарите абонамент на някого, ще получите същия и за себе си безплатно!", "winterPromoGiftDetails2": "Моля, имайте предвид, че ако Вие или получателят на подаръка Ви вече имате повтарящ се абонамент, подареният ще започне след като текущият бъде прекратен или изтече. Благодарим Ви за подкрепата! <3", diff --git a/website/common/locales/bg/messages.json b/website/common/locales/bg/messages.json index 31e519df1f..b9460423fc 100644 --- a/website/common/locales/bg/messages.json +++ b/website/common/locales/bg/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Не можете да храните този любимец.", "messageAlreadyMount": "Вече имате този превоз. Опитайте да храните друг любимец.", "messageEvolve": "Вие укротихте <%= egg %>, хайде да пояздим!", - "messageLikesFood": "Вие дадохте <%= foodText %> на <%= egg %>. <%= egg %> харесва това!", - "messageDontEnjoyFood": "Вие дадохте <%= foodText %> на <%= egg %>. <%= egg %> изобщо не харесва това!", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Закупихте <%= itemText %>", "messageEquipped": "Екипирахте <%= itemText %>.", "messageUnEquipped": "Разекипирахте <%= itemText %>.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Няма достатъчно злато", "messageTwoHandedEquip": "Използването на <%= twoHandedText %> изисква две ръце, така че разекипирахте предмета <%= offHandedText %>.", "messageTwoHandedUnequip": "Използването на <%= twoHandedText %> изисква две ръце, така че го/я разекипирахте, когато се въоръжихте с <%= offHandedText %>.", - "messageDropFood": "Намерихте <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Намерихте яйце на <%= dropText %>!", "messageDropPotion": "Намерихте излюпваща отвара с(ъс) <%= dropText %>!", "messageDropQuest": "Намерихте мисия!", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "Здравето Ви вече е пълно.", "messageHealthAlreadyMin": "О, не! Нямате здраве, така че вече е твърде късно да си купите лечебна отвара, но не се притеснявайте — можете да се преродите!", "armoireEquipment": "<%= image %> Намерихте рядък предмет в гардероба: <%= dropText %>! Страхотно!", - "armoireFood": "<%= image %> Тършувате из гардероба и намирате <%= dropText %>. Какво ли прави това там?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "Сборвате се с гардероба и получавате опит. Така му се пада!", "messageInsufficientGems": "Нямате достатъчно диаманти!", "messageAuthPasswordMustMatch": ":password и :confirmPassword не съвпадат", diff --git a/website/common/locales/bg/pets.json b/website/common/locales/bg/pets.json index b59423d792..7d76be997d 100644 --- a/website/common/locales/bg/pets.json +++ b/website/common/locales/bg/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Не притежавате този любимец.", "mountNotOwned": "Не притежавате този прево.", "earnedCompanion": "Благодарение на продуктивността си се сдобихте с нов спътник. Хранете го, за да порасне!", - "feedPet": "Искате ли да дадете <%= text %> на <%= name %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Искате ли да оседлаете <%= pet %>?", "raisedPet": "Вие отгледахте <%= pet %>!", "earnedSteed": "Изпълнявайки задачите си, Вие спечелихте верен жребец!", diff --git a/website/common/locales/cs/character.json b/website/common/locales/cs/character.json index 33675242d9..5ddde72f2d 100644 --- a/website/common/locales/cs/character.json +++ b/website/common/locales/cs/character.json @@ -75,7 +75,7 @@ "autoEquipPopoverText": "Zvol tuto možnost pro automatické nasazení koupeného vybavení.", "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:", - "moreGearAchievements": "To attain more Ultimate Gear badges, change classes on the Settings > Site page and buy your new class's gear!", + "moreGearAchievements": "Abys získal více ocenění Ultimátního Vybavení, změň své povolání v Nastavení - Stránka, a nakup si vybavení pro své nové povolání!", "armoireUnlocked": "Také jsi odemkl Začarovanou almaru! 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 %>", "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í", "allocateInt": "Body přiřazené 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 Orb of Rebirth, 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š Orb Znovuzrození, který nyní najdeš zdarma na Trhu.", "stats": "Statistiky", "achievs": "Úspěchy", "strength": "Síla", @@ -139,7 +139,7 @@ "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í.", "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.", "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!", @@ -151,7 +151,7 @@ "optOutOfPMs": "Odhlásit", "chooseClass": "Vyber si své povolání", "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 %>", "select": "Vybrat", "stealth": "Lstivost", @@ -200,7 +200,7 @@ "showQuickAllocation": "Zobrazit 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.", - "invalidAttribute": "\"<%= attr %>\" is not a valid Stat.", + "invalidAttribute": "\"<%= attr %>\" není platný atribut.", "notEnoughAttrPoints": "Nemáš dostatek vlastnostních bodů", "style": "Styl", "facialhair": "Vousy", @@ -219,5 +219,5 @@ "offHand": "Off-Hand", "pointsAvailable": "Dostupné body", "pts": "pts", - "statsObjectRequired": "Stats update is required" + "statsObjectRequired": "Je požadována aktualizace atributů" } \ No newline at end of file diff --git a/website/common/locales/cs/content.json b/website/common/locales/cs/content.json index af07cd5427..1e166aa977 100644 --- a/website/common/locales/cs/content.json +++ b/website/common/locales/cs/content.json @@ -194,35 +194,95 @@ "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.", "foodMeat": "Maso", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Mléko", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Brambor", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Jahoda", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Čokoláda", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Ryba", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Zkažené maso", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Růžová cukrová vata", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Modrá cukrová vata", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Med", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Dort z kostí", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Základní dort", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Modrý bonbónový dort", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Růžový bonbónový dort", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Čokoládový dort", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Krémový dort", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Medový dort", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Zkažený dort", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Písečný dort", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Jahodový dort", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Kostěné cukrátko", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Základní cukrátko", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Kyselé modré cukrátko", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Kyselé růžové cukrátko", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Čokoládové cukrátko", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vanilkové cukrátko", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Medové cukrátko", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Zkažené cukrátko", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Písečné cukrátko", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Skořicové cukrátko", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Sedlo", "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?", diff --git a/website/common/locales/cs/gear.json b/website/common/locales/cs/gear.json index e199356a4c..c7d7565119 100644 --- a/website/common/locales/cs/gear.json +++ b/website/common/locales/cs/gear.json @@ -119,7 +119,7 @@ "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!", "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", "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", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/cs/generic.json b/website/common/locales/cs/generic.json index c31f71dfc5..c9468bbcba 100644 --- a/website/common/locales/cs/generic.json +++ b/website/common/locales/cs/generic.json @@ -168,6 +168,8 @@ "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!", "cards": "Karty", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Blahopřání", "greetingCardExplanation": "Oba obdržíte ocenění Veselého kámoše!", diff --git a/website/common/locales/cs/messages.json b/website/common/locales/cs/messages.json index 7f15daba0e..5e32e0313e 100644 --- a/website/common/locales/cs/messages.json +++ b/website/common/locales/cs/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Tohoto mazlíčka nemůžeš nakrmit.", "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!", - "messageLikesFood": "Kdo by řekl, že <%= egg %> bude mít rád něco takového, jako je <%= foodText %>!", - "messageDontEnjoyFood": "<%= foodText %> zdá se není pro zvířátko, jakým je <%= egg %>, žádnou pochoutkou.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "<%= itemText %>, koupeno", "messageEquipped": "<%= itemText %> - nasazeno.", "messageUnEquipped": "<%= itemText %> byl odebrán.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Nedostatek zlaťáků", "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 %>.", - "messageDropFood": "Našel jsi<%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Našel jsi vajíčko, ze kterého se vylíhne <%= dropText %>!", "messageDropPotion": "Našel jsi <%= dropText %> líhnoucí lektvar!", "messageDropQuest": "Našel jsi Výpravu!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Nedostatek drahokamů!", "messageAuthPasswordMustMatch": ":password a :confirmPassword se neshodují", diff --git a/website/common/locales/cs/pets.json b/website/common/locales/cs/pets.json index 0c7afa11e4..17d36e0a1b 100644 --- a/website/common/locales/cs/pets.json +++ b/website/common/locales/cs/pets.json @@ -18,7 +18,7 @@ "veteranWolf": "Vlk veterán", "veteranTiger": "Tygr veterán", "veteranLion": "Lev veterán", - "veteranBear": "Veteran Bear", + "veteranBear": "Medvěd Veterán", "cerberusPup": "Štěně Kerbera", "hydra": "Hydra", "mantisShrimp": "Strašek paví", @@ -28,7 +28,7 @@ "phoenix": "Fénix", "magicalBee": "Magická včela", "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!", "rarePetPop2": "Jak získat toto zvíře!", "potion": "<%= potionType %> lektvar", @@ -42,11 +42,11 @@ "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.", "haveHatchablePet": "You have a <%= potion %> hatching potion and <%= egg %> egg to hatch this pet! Click the paw print to hatch.", - "quickInventory": "Quick Inventory", + "quickInventory": "Rychlý Inventář", "foodText": "jídlo", "food": "Jídlo a sedla", - "noFoodAvailable": "You don't have any Food.", - "noSaddlesAvailable": "You don't have any Saddles.", + "noFoodAvailable": "Nemáš žádné Jídlo.", + "noSaddlesAvailable": "Nemáš žá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. Zjisti více o nalézání předmětů.", "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. Nauč se více o systému nálezů", @@ -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 Inventář > Trh a kup si ho!", "hatchAPot": "Chceš vylíhnout 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!", "displayNow": "Zobrazit hned", "displayLater": "Zobrazit později", "petNotOwned": "Nevlastníte tohoto mazlíčka.", "mountNotOwned": "Nevlastníš toto jezdecké zvíře.", "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 %>?", "raisedPet": "Vychoval jsi svého <%= pet %>!", "earnedSteed": "Za splnění úkolů sis vysloužil věrné zvíře k ježdění!", @@ -89,9 +89,9 @@ "rideLater": "Osedlat později", "petName": "<%= potion(locale) %> <%= egg(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.)", - "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.)", "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.)", diff --git a/website/common/locales/da/content.json b/website/common/locales/da/content.json index 2b8e45aaab..39e2488708 100644 --- a/website/common/locales/da/content.json +++ b/website/common/locales/da/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Hæld på et æg, og det vil udklække til et <%= potText(locale) %> kæledyr.", "premiumPotionAddlNotes": "Kan ikke bruges på quest-æg.", "foodMeat": "Kød", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Mælk", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Kartoffel", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Jordbær", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Chokolade", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Fisk", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Råddent kød", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Lyserød Candyfloss", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Blå Candyfloss", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Honning", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Knogle-Kage", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Almindelig Kage", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Blå Slikkage", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Pink Slikkage", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Chokoladekage", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Flødekage", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Honningkage", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Rådden Kage", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Sandkage", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Jordbærkage", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Knogle-slik", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Almindeligt slik", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Surt Blåt Slik", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Surt Lyserødt Slik", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Chokoladeslik", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vaniljeslik", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Honningslik", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Råddent slik", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Sandslik", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Kanelslik", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Sadel", "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?", diff --git a/website/common/locales/da/gear.json b/website/common/locales/da/gear.json index 3eee03d954..074f87e42b 100644 --- a/website/common/locales/da/gear.json +++ b/website/common/locales/da/gear.json @@ -119,7 +119,7 @@ "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.", "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", "weaponSpecialSnowflakeNotes": "Denne tryllestav glimter med uendelig helende kraft. Øger intelligens med <%= int %>. Specielt 2013-2014 Vinterudstyr.", "weaponSpecialSpringRogueText": "Krogede Kløer", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/da/generic.json b/website/common/locales/da/generic.json index e107265c7d..6278f06bb1 100644 --- a/website/common/locales/da/generic.json +++ b/website/common/locales/da/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Var med til at overvinde Be-Wilder i 2016 Spring Fling-eventet!", "checkOutProgress": "Tjek mine fremskridt i Habitica!", "cards": "Kort", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Lykønskningskort", "greetingCardExplanation": "I modtager begge Glad Gut-præstationen", diff --git a/website/common/locales/da/messages.json b/website/common/locales/da/messages.json index ea3948a093..9f830f822d 100644 --- a/website/common/locales/da/messages.json +++ b/website/common/locales/da/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Dette kæledyr kan ikke fodres.", "messageAlreadyMount": "Du har allerede dette ridedyr. Prøv at fodre et andet dyr.", "messageEvolve": "Du har tæmmet <%= egg %>, lad os ride en tur!", - "messageLikesFood": "<%= egg %> er meget glad for <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> spiser <%= foodText %>, men ser ikke ud til at nyde det.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Købte <%= itemText %>", "messageEquipped": "<%= itemText %> taget i brug.", "messageUnEquipped": "<%= itemText %> lægges væk.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Ikke nok Guld", "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 %>.", - "messageDropFood": "Du har fundet <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Du har fundet et <%= dropText %> æg!", "messageDropPotion": "Du har fundet en <%= dropText %> udrugningseliksir!", "messageDropQuest": "Du har fundet en quest!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Ikke nok Ædelsten!", "messageAuthPasswordMustMatch": ":password og :confirmPassword er ikke ens", diff --git a/website/common/locales/da/pets.json b/website/common/locales/da/pets.json index e4a4bb0997..474af08d39 100644 --- a/website/common/locales/da/pets.json +++ b/website/common/locales/da/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Du ejer ikke dette kæledyr.", "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!", - "feedPet": "Giv <%= text %> til <%= name %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Giv <%= pet %> sadel på?", "raisedPet": "Du har opdrættet din/dit <%= pet %>!", "earnedSteed": "Ved at fuldføre dine opgaver, har du tjent en trofast ganger!", diff --git a/website/common/locales/de/content.json b/website/common/locales/de/content.json index d6adc725e0..4a67f9d720 100644 --- a/website/common/locales/de/content.json +++ b/website/common/locales/de/content.json @@ -194,35 +194,95 @@ "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.", "foodMeat": "Fleisch", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Milch", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Kartoffel", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Erdbeere", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Schokolade", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Fisch", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Verrottetes Fleisch", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Rosa Zuckerwatte", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Blaue Zuckerwatte", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Honig", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Knochenkuchen", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Normaler Kuchen", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Blauer Zuckerkuchen", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Rosa Zuckerkuchen", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Schokoladenkuchen", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Sahnekuchen", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Honigkuchen", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Verrotteter Kuchen", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Sandkuchen", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Erdbeerkuchen", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Knochenbonbon", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Normales Bonbon", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Saures blaues Bonbon", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Saures rosa Bonbon", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Schokoladenbonbon", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vanillebonbon", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Honigbonbon", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Verrottetes Bonbon", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Sandbonbon", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Zimtbonbon", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Magischer Sattel", "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?", diff --git a/website/common/locales/de/gear.json b/website/common/locales/de/gear.json index b3afe6f1e1..97e03691ce 100644 --- a/website/common/locales/de/gear.json +++ b/website/common/locales/de/gear.json @@ -81,7 +81,7 @@ "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 %>.", "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", "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", @@ -89,7 +89,7 @@ "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 %>.", "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", "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", @@ -113,13 +113,13 @@ "weaponSpecialTachiText": "Tachi", "weaponSpecialTachiNotes": "Dieses leichte und gebogene Schwert wird Deine Aufgaben in Streifen zerteilen! Erhöht Stärke um <%= str %>.", "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", "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", "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", - "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", "weaponSpecialSnowflakeNotes": "Dieser Zauberstab funkelt mit unerschöpflicher Heilkraft. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2013-2014 Winterausrüstung.", "weaponSpecialSpringRogueText": "Hakenkrallen", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/de/generic.json b/website/common/locales/de/generic.json index 48affe463c..6fc029bfcc 100644 --- a/website/common/locales/de/generic.json +++ b/website/common/locales/de/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Hat bei der Frühlingsfeier 2016 geholfen, den Verwirrer zu besiegen.", "checkOutProgress": "Schau Dir meinen Fortschritt in Habitica an!", "cards": "Karten", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Grußkarte", "greetingCardExplanation": "Ihr erhaltet beide den Fröhlicher-Freund-Erfolg!", diff --git a/website/common/locales/de/messages.json b/website/common/locales/de/messages.json index d2d46cf49f..1fa5ef6689 100644 --- a/website/common/locales/de/messages.json +++ b/website/common/locales/de/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Dieses Haustier will und kann nicht gefüttert werden.", "messageAlreadyMount": "Du hast dieses Reittier bereits. Füttere lieber ein anderes Haustier.", "messageEvolve": "<%= egg %> wurde gezähmt. Es ist an der Zeit aufzusitzen!", - "messageLikesFood": "<%= egg %> ist begeistert. <%= foodText %> ist seine Lieblingsspeise!", - "messageDontEnjoyFood": "<%= egg %> ist von <%= foodText %> nicht gerade begeistert, aber würgt das Futter hinunter.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "<%= itemText %> gekauft", "messageEquipped": "<%= itemText %> angelegt.", "messageUnEquipped": "<%= itemText %> abgelegt.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Nicht genug Gold", "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.", - "messageDropFood": "Du hast <%= dropArticle %> <%= dropText %> gefunden!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Du hast ein <%= dropText %> Ei gefunden!", "messageDropPotion": "Du hast ein <%= dropText %> Schlüpfelixier gefunden!", "messageDropQuest": "Du hast eine Quest gefunden!", @@ -33,7 +33,7 @@ "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.", "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!", "messageInsufficientGems": "Nicht genügend Edelsteine!", "messageAuthPasswordMustMatch": ":password und :confirmPassword stimmen nicht überein", diff --git a/website/common/locales/de/npc.json b/website/common/locales/de/npc.json index 16815b823c..39cea7e97e 100644 --- a/website/common/locales/de/npc.json +++ b/website/common/locales/de/npc.json @@ -94,9 +94,9 @@ "alreadyUnlocked": "Komplettes Set ist bereits freigeschaltet.", "alreadyUnlockedPart": "Set ist bereits teilweise freigeschaltet.", "USD": "(USD)", - "newStuff": "New Stuff by Bailey", - "newBaileyUpdate": "New Bailey Update!", - "tellMeLater": "Tell Me Later", + "newStuff": "Neuigkeiten von Bailey", + "newBaileyUpdate": "Neues Update von Bailey!", + "tellMeLater": "Erzähl es mir später", "dismissAlert": "Als gelesen markieren", "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", @@ -109,9 +109,9 @@ "paymentMethods": "Kauf mit", "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!", - "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", - "autoAllocateText": "If 'Automatic Allocation' is selected, your avatar gains Stats automatically based on your tasks' Stats, which you can find in TASK > Edit > Advanced Settings > Stat Allocation. 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 Aufgabe > Bearbeiten > Erweitert > Attribute 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", "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 To-Do.", "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!", "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!", - "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", "tourOkay": "Okay!", "tourAwesome": "Großartig!", diff --git a/website/common/locales/de/pets.json b/website/common/locales/de/pets.json index 96636c1793..38ae2cf8e0 100644 --- a/website/common/locales/de/pets.json +++ b/website/common/locales/de/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Du besitzt dieses Haustier 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!", - "feedPet": "Verfüttere <%= article %><%= text %> an <%= name %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Einen magischen Sattel auf <%= pet %> anwenden?", "raisedPet": "Du hast ein <%= pet %> aufgezogen!", "earnedSteed": "Durch das Erfüllen Deiner Aufgaben hast Du ein treues Reittier verdient!", diff --git a/website/common/locales/en@pirate/content.json b/website/common/locales/en@pirate/content.json index b55943772d..8082edb057 100644 --- a/website/common/locales/en@pirate/content.json +++ b/website/common/locales/en@pirate/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Pour this on an egg, an' it'll hatch as a <%= potText(locale) %> pet.", "premiumPotionAddlNotes": "Ye canna use this on quest pet eggs.", "foodMeat": "Meat", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Milk", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Potato", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Strawberry", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Chocolate", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Fish", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Rotten Meat", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Pink Cotton Candy", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Blue Cotton Candy", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Honey", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Bare Bones Cake", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Basic Cake", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Candy Blue Cake", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Candy Pink Cake", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Chocolate Cake", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Cream Cake", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Honey Cake", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Rotten Cake", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Sand Cake", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Strawberry Cake", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Bare Bones Candy", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Basic Candy", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Sour Blue Candy", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Sour Pink Candy", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Chocolate Candy", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vanilla Candy", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Honey Candy", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Rotten Candy", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Sand Candy", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Cinnamon Candy", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Saddle", "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?", diff --git a/website/common/locales/en@pirate/gear.json b/website/common/locales/en@pirate/gear.json index 0d810c2117..b34e8c317f 100644 --- a/website/common/locales/en@pirate/gear.json +++ b/website/common/locales/en@pirate/gear.json @@ -119,7 +119,7 @@ "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.", "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", "weaponSpecialSnowflakeNotes": "This wand sparkles wi' unlimited healin' power. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.", "weaponSpecialSpringRogueText": "Hook Claws", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/en@pirate/generic.json b/website/common/locales/en@pirate/generic.json index d32fa78503..af462c4535 100644 --- a/website/common/locales/en@pirate/generic.json +++ b/website/common/locales/en@pirate/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Helped defeat th' Be-Wilder durin' th' 2016 Spring Fling Event!", "checkOutProgress": "Check out me progress in Habitica!", "cards": "Cards", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Greetin' Card", "greetingCardExplanation": "Ye both receive th' Cheery Chum achievement!", diff --git a/website/common/locales/en@pirate/messages.json b/website/common/locales/en@pirate/messages.json index c7634fff0e..ba2fd27b44 100644 --- a/website/common/locales/en@pirate/messages.json +++ b/website/common/locales/en@pirate/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Can't feed this pet.", "messageAlreadyMount": "Ye already 'ave that mount. Try feedin' another pet.", "messageEvolve": "Ye 'ave tamed <%= egg %>, let's go fer a ride!", - "messageLikesFood": "<%= egg %> really likes th' <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> eats th' <%= foodText %> but doesn't seem t' enjoy it.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Bought <%= itemText %>", "messageEquipped": "<%= itemText %> equipped.", "messageUnEquipped": "<%= itemText %> un-equip'd.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Not Enough Doubloons", "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 %>.", - "messageDropFood": "You've found <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "You've found a <%= dropText %> Egg!", "messageDropPotion": "You've found a <%= dropText %> Hatching Potion!", "messageDropQuest": "Ye've found a quest!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Not enough gems!", "messageAuthPasswordMustMatch": ":password and :confirmPassword don' match", diff --git a/website/common/locales/en@pirate/pets.json b/website/common/locales/en@pirate/pets.json index a3e71f6de7..024b39cd70 100644 --- a/website/common/locales/en@pirate/pets.json +++ b/website/common/locales/en@pirate/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Ye don't own this pet.", "mountNotOwned": "You do not own this mount.", "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 %>?", "raisedPet": "You grew your <%= pet %>!", "earnedSteed": "By completin' yer tasks, ye've earned a faithful steed!", diff --git a/website/common/locales/en_GB/content.json b/website/common/locales/en_GB/content.json index 16ca8a6841..08ace4b56f 100644 --- a/website/common/locales/en_GB/content.json +++ b/website/common/locales/en_GB/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.", "premiumPotionAddlNotes": "Not usable on quest pet eggs.", "foodMeat": "Meat", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Milk", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Potato", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Strawberry", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Chocolate", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Fish", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Rotten Meat", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Pink Candyfloss", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Blue Candyfloss", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Honey", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Bare Bones Cake", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Basic Cake", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Candy Blue Cake", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Candy Pink Cake", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Chocolate Cake", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Cream Cake", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Honey Cake", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Rotten Cake", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Sand Cake", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Strawberry Cake", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Bare Bones Sweet", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Basic Sweet", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Sour Blue Sweet", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Sour Pink Sweet", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Chocolate Sweet", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vanilla Sweet", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Honey Sweet", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Rotten Sweet", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Sand Sweet", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Cinnamon Sweet", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Saddle", "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?", diff --git a/website/common/locales/en_GB/gear.json b/website/common/locales/en_GB/gear.json index 2a9726cba0..51b40bb942 100644 --- a/website/common/locales/en_GB/gear.json +++ b/website/common/locales/en_GB/gear.json @@ -119,7 +119,7 @@ "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.", "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", "weaponSpecialSnowflakeNotes": "This wand sparkles with unlimited healing power. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.", "weaponSpecialSpringRogueText": "Hook Claws", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/en_GB/generic.json b/website/common/locales/en_GB/generic.json index b33acbe300..0b4377ba2d 100644 --- a/website/common/locales/en_GB/generic.json +++ b/website/common/locales/en_GB/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Check out my progress in Habitica!", "cards": "Cards", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Greeting Card", "greetingCardExplanation": "You both receive the Cheery Chum achievement!", diff --git a/website/common/locales/en_GB/messages.json b/website/common/locales/en_GB/messages.json index c24f058efe..9f4a188271 100644 --- a/website/common/locales/en_GB/messages.json +++ b/website/common/locales/en_GB/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Can't feed this pet.", "messageAlreadyMount": "You already have that mount. Try feeding another pet.", "messageEvolve": "You have tamed <%= egg %>, let's go for a ride!", - "messageLikesFood": "<%= egg %> really likes the <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> eats the <%= foodText %> but doesn't seem to enjoy it.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Bought <%= itemText %>", "messageEquipped": "<%= itemText %> equipped.", "messageUnEquipped": "<%= itemText %> unequipped.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Not Enough Gold", "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 %>.", - "messageDropFood": "You've found <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "You've found a <%= dropText %> Egg!", "messageDropPotion": "You've found a <%= dropText %> Hatching Potion!", "messageDropQuest": "You've found a quest!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Not enough gems!", "messageAuthPasswordMustMatch": ":password and :confirmPassword don't match", diff --git a/website/common/locales/en_GB/pets.json b/website/common/locales/en_GB/pets.json index 6e4e6172b0..cce5d43c6d 100644 --- a/website/common/locales/en_GB/pets.json +++ b/website/common/locales/en_GB/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "You do not own this pet.", "mountNotOwned": "You do not own this mount.", "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 %>?", "raisedPet": "You grew your <%= pet %>!", "earnedSteed": "By completing your tasks, you've earned a faithful steed!", diff --git a/website/common/locales/es/content.json b/website/common/locales/es/content.json index 6c16eabd55..c4ce3d5023 100644 --- a/website/common/locales/es/content.json +++ b/website/common/locales/es/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Vierte esto en un huevo y eclosionará como una mascota <%= potText(locale) %>.", "premiumPotionAddlNotes": "No puede usarse en huevos de mascota de misión.", "foodMeat": "Carne", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Leche", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Patata", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Fresa", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Chocolate", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Pescado", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Carne podrida", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Algodón de Azúcar Rosa", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Algodón de Azúcar Azul", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Miel", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Tarta de Hueso", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Pastel básico", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Pastel Azul Golosina", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Pastel Rosa Golosina", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Pastel de chocolate", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Pastel de crema", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Pastel de miel", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Pastel descompuesto", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Pastel de arena", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Tarta de Fresa", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Caramelo de hueso", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Caramelo base", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Caramelo azul ácido", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Caramelo rosa ácido", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Caramelo de chocolate", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Caramelo de vainilla", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Caramelo de miel", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Caramelo podrido", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Caramelo de arena", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Caramelo de canela", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Silla de Montar", "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?", diff --git a/website/common/locales/es/gear.json b/website/common/locales/es/gear.json index 44fdc0259e..11d09617b4 100644 --- a/website/common/locales/es/gear.json +++ b/website/common/locales/es/gear.json @@ -119,7 +119,7 @@ "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.", "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", "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", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/es/generic.json b/website/common/locales/es/generic.json index ce87698f3f..72a988b856 100644 --- a/website/common/locales/es/generic.json +++ b/website/common/locales/es/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "¡Ayudó a derrotar al Apa-bullador durante el Evento de Primavera de 2016!", "checkOutProgress": "Consultar mi progreso en Habitica", "cards": "Tarjetas ", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Tarjeta de saludo", "greetingCardExplanation": "Ambos recibís el logro Alegres Amigotes", diff --git a/website/common/locales/es/messages.json b/website/common/locales/es/messages.json index 144c7c96a1..f112b3e0aa 100644 --- a/website/common/locales/es/messages.json +++ b/website/common/locales/es/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "No se puede alimentar a esta mascota.", "messageAlreadyMount": "Ya tienes esa montura. Intenta alimentar a otra mascota.", "messageEvolve": "Has dominado a <%= egg %>, ¡vamos a dar una vuelta!", - "messageLikesFood": "¡A <%= egg %> le encanta <%= foodText %>!", - "messageDontEnjoyFood": "Tu <%= egg %> come <%= foodText %>, pero no parece que le guste.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Has comprado <%= itemText %>", "messageEquipped": "<%= itemText %> equipado.", "messageUnEquipped": "Te has quitado <%= itemText %>.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "No tienes suficiente Oro", "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 %>.", - "messageDropFood": "¡Has encontrado un <%= dropArticle %><%= dropText %>! ", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "¡Has encontrado un huevo de <%= dropText %>!", "messageDropPotion": "¡Has encontrado una poción de eclosión de <%= dropText %>!", "messageDropQuest": "¡Has encontrado una misión!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "No hay suficientes gemas!", "messageAuthPasswordMustMatch": "Las contraseñas no coinciden.", diff --git a/website/common/locales/es/pets.json b/website/common/locales/es/pets.json index 750c685045..221ad73483 100644 --- a/website/common/locales/es/pets.json +++ b/website/common/locales/es/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "No eres dueño de esta mascota.", "mountNotOwned": "No tienes esta montura.", "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 %>?", "raisedPet": "¡Creciste tu <%= pet %>!", "earnedSteed": "¡Completando tus tareas te has ganado a un fiel corcel!", diff --git a/website/common/locales/es_419/character.json b/website/common/locales/es_419/character.json index 0bc441418b..a2091828a9 100644 --- a/website/common/locales/es_419/character.json +++ b/website/common/locales/es_419/character.json @@ -112,7 +112,7 @@ "levelBonus": "Bonus de Nivel", "levelBonusText": "Cada atributo recibe un bonus de la mitad de (tu Nivel menos 1).", "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", "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.", @@ -139,7 +139,7 @@ "classAllocation": "Distribuir los puntos basándose en la clase", "classAllocationPop": "Asignar más puntos a los atributos importantes para tu clase.", "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", "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!", diff --git a/website/common/locales/es_419/content.json b/website/common/locales/es_419/content.json index 7e1f92300d..ed27bb76e2 100644 --- a/website/common/locales/es_419/content.json +++ b/website/common/locales/es_419/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Vierte esto sobre un huevo, y nacerá una mascota <%= potText(locale) %>.", "premiumPotionAddlNotes": "No se puede usar con huevos de mascotas de misión.", "foodMeat": "Carne", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Leche", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Papa", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Fresa", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Chocolate", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Pescado", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Carne Podrida", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Algodón de azúcar rosa", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Algodón de azúcar azul", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Miel", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Pastel de huesos", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Pastel básico", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Pastel de caramelo azul", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Pastel de caramelo rosa", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Pastel de chocolate", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Pastel de crema", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Pastel de miel", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Pastel podrido", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Pastel de Arena", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Pastel de Fresa", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Caramelo de Huesos", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Caramelo Básico", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Caramelo Azul Agrio", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Caramelo Rosa Agrio", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Caramelo de Chocolate", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Caramelo de Vainilla", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Caramelo de Miel", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Caramelo Podrido", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Caramelo de Arena", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Caramelo de Canela", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Silla de Montar", "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?", diff --git a/website/common/locales/es_419/gear.json b/website/common/locales/es_419/gear.json index 7a03925573..99ceb9fb57 100644 --- a/website/common/locales/es_419/gear.json +++ b/website/common/locales/es_419/gear.json @@ -119,7 +119,7 @@ "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.", "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", "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", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/es_419/generic.json b/website/common/locales/es_419/generic.json index 6f3321889d..f53b97c53c 100644 --- a/website/common/locales/es_419/generic.json +++ b/website/common/locales/es_419/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "¡Ayudó a vencer al Obnubilave durante el Evento Fiesta de Primavera 2016!", "checkOutProgress": "¡Echa un vistazo a mi progreso en Habitica!", "cards": "Tarjetas", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Tarjeta de Felicitación", "greetingCardExplanation": "¡Ambos reciben el logro Alegre Amigo!", diff --git a/website/common/locales/es_419/messages.json b/website/common/locales/es_419/messages.json index b859df282b..ffcfd82702 100644 --- a/website/common/locales/es_419/messages.json +++ b/website/common/locales/es_419/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "No se pudo alimentar a esta mascota.", "messageAlreadyMount": "Ya posees esta montura. Intenta alimentar a otra mascota.", "messageEvolve": "Has domesticado a <%= egg %>, ¡vamos a dar una vuelta!", - "messageLikesFood": "¡A <%= egg %> le encanta el/la <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> come el/la <%= foodText %> pero no parece disfrutarlo.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Compraste <%= itemText %>", "messageEquipped": "<%= itemText %> ha sido equipad@.", "messageUnEquipped": "<%= itemText %> ha sido removid@.", @@ -21,9 +21,9 @@ "messageNotEnoughGold": "No tienes oro suficiente", "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 %>.", - "messageDropFood": "¡Has encontrado <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= 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!", "messageDropMysteryItem": "¡Abres la caja y encuentras <%= dropText %>!", "messageFoundQuest": "¡Has encontrado la misión \"<%= questText %>\"!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "¡No tienes suficientes gemas!", "messageAuthPasswordMustMatch": ":password y :confirmPassword no coinciden", @@ -53,12 +53,12 @@ "messageGroupChatFlagAlreadyReported": "Ya has denunciado este mensaje", "messageGroupChatNotFound": "¡Mensaje no encontrado!", "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. :)", "messageUserOperationProtected": "la ruta `<%= operation %>` no ha sido guardada, ya que es una ruta protegida.", "messageUserOperationNotFound": "<%= operation %> operación no encontrada", "messageNotificationNotFound": "Notificación no encontrada.", "notificationsRequired": "Se requiere el ID de notificación.", - "unallocatedStatsPoints": "You have <%= points %> unallocated Stat Points", - "beginningOfConversation": "This is the beginning of your conversation with <%= userName %>. Remember to be kind, respectful, and follow the Community Guidelines!" + "unallocatedStatsPoints": "Tienes <%= points %> Puntos de Atributo sin asignar ", + "beginningOfConversation": "Este es el comienzo de tu conversación con <%= userName %>. ¡Recuerda ser amable, respetuoso y seguir las Normas de la Comunidad!" } \ No newline at end of file diff --git a/website/common/locales/es_419/pets.json b/website/common/locales/es_419/pets.json index 4091435d2c..6db4eafcdf 100644 --- a/website/common/locales/es_419/pets.json +++ b/website/common/locales/es_419/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "No posees esta mascota.", "mountNotOwned": "No tienes esta montura.", "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 %>?", "raisedPet": "¡Has criado un/a <%= pet %>!", "earnedSteed": "Por completar tus tareas, ¡has obtenido un fiel corcel!", diff --git a/website/common/locales/es_419/quests.json b/website/common/locales/es_419/quests.json index 00c0c5d239..320c198688 100644 --- a/website/common/locales/es_419/quests.json +++ b/website/common/locales/es_419/quests.json @@ -25,7 +25,7 @@ "questInvitation": "Invitación a una misión:", "questInvitationTitle": "Invitación a una misión", "questInvitationInfo": "Invitación para la misión <%= quest %>", - "invitedToQuest": "You were invited to the Quest <%= quest %>", + "invitedToQuest": "Has sido invitado a la Misión <%= quest %>", "askLater": "Preguntar más tarde", "questLater": "Realizar misión más tarde", "buyQuest": "Comprar misión", diff --git a/website/common/locales/es_419/rebirth.json b/website/common/locales/es_419/rebirth.json index 3486084567..2a7ce2b800 100644 --- a/website/common/locales/es_419/rebirth.json +++ b/website/common/locales/es_419/rebirth.json @@ -21,7 +21,7 @@ "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.", "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 Orb of Rebirth 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 Esfera de renacimiento en la Wiki.", "rebirthName": "Esfera de Renacimiento", "reborn": "Renacido, nivel máximo <%= reLevel %>", "confirmReborn": "¿Estás seguro?", diff --git a/website/common/locales/fr/content.json b/website/common/locales/fr/content.json index 57da77ad65..9957a4a5a6 100644 --- a/website/common/locales/fr/content.json +++ b/website/common/locales/fr/content.json @@ -194,35 +194,95 @@ "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.", "foodMeat": "Côtelette", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Bouteille de lait", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Pomme de terre", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Fraise", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Tablette de chocolat", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Sardine", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Côtelette avariée", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Barbe-à-papa rose", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Barbe-à-papa bleue", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Once de miel", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Pâtisserie à l'os", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Pâtisserie simple", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Pâtisserie au sucre bleu", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Pâtisserie au sucre rose", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Pâtisserie au chocolat", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Pâtisserie à la crème", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Pâtisserie au miel", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Pâtisserie avariée", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Pâtisserie sablée", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Pâtisserie à la fraise", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Friandise à l'os", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Friandise simple", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Friandise langue-bleue", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Friandise langue-rose", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Friandise au chocolat", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Friandise vanillée", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Friandise au miel", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Friandise infecte", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Friandise sablée", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Friandise à la cannelle", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Selle", "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 ?", diff --git a/website/common/locales/fr/gear.json b/website/common/locales/fr/gear.json index 9311086d4e..7db7179235 100644 --- a/website/common/locales/fr/gear.json +++ b/website/common/locales/fr/gear.json @@ -119,7 +119,7 @@ "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.", "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", "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", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/fr/generic.json b/website/common/locales/fr/generic.json index 512661d1ed..839b108c4f 100644 --- a/website/common/locales/fr/generic.json +++ b/website/common/locales/fr/generic.json @@ -168,6 +168,8 @@ "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 !", "cards": "Cartes", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Carte de vœux", "greetingCardExplanation": "Ont tous les deux reçu le succès Pote Joyeux !", diff --git a/website/common/locales/fr/messages.json b/website/common/locales/fr/messages.json index cfe5f84861..15606b8c0a 100644 --- a/website/common/locales/fr/messages.json +++ b/website/common/locales/fr/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Vous ne pouvez pas nourrir ce familier.", "messageAlreadyMount": "Vous avez déjà cette monture. Essayez de nourrir un autre familier.", "messageEvolve": "Votre <%= egg %> a grandi, baladez-vous dessus !", - "messageLikesFood": "Votre <%= egg %> apprécie vraiment votre <%= foodText %> !", - "messageDontEnjoyFood": "Votre <%= egg %> teste votre <%= foodText %>, mais n'a pas l'air d'aimer ça.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Vous avez acheté : <%= itemText %>.", "messageEquipped": "Vous portez : <%= itemText %>.", "messageUnEquipped": "Vous enlevez : <%= itemText %>.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Pas assez d'Or", "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 %>.", - "messageDropFood": "Vous avez trouvé une <%= dropText %> ! ", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Vous avez trouvé un œuf de <%= dropText %> !", "messageDropPotion": "Vous avez trouvé une potion d'éclosion <%= dropText %> !", "messageDropQuest": "Vous avez trouvé une quête !", @@ -33,7 +33,7 @@ "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 !", "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 !", "messageInsufficientGems": "Pas assez de gemmes!", "messageAuthPasswordMustMatch": ":password et :confirmPassword ne correspondent pas", diff --git a/website/common/locales/fr/pets.json b/website/common/locales/fr/pets.json index 0a56939996..4a2126f2c2 100644 --- a/website/common/locales/fr/pets.json +++ b/website/common/locales/fr/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Vous ne possédez pas ce familier.", "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 !", - "feedPet": "Donner cette <%= text %> à votre <%= name %> ?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Seller <%= pet %> ?", "raisedPet": "Votre <%= pet %> a bien grandi !", "earnedSteed": "En effectuant vos tâches, vous avez gagné un fidèle coursier !", diff --git a/website/common/locales/he/content.json b/website/common/locales/he/content.json index e7c73c845f..1c174e5748 100644 --- a/website/common/locales/he/content.json +++ b/website/common/locales/he/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "מזוג שיקוי זה על ביצה, והיא תבקע כ: <%= potText(locale) %>.", "premiumPotionAddlNotes": "לא ניתן לשימוש על ביצי הרפתקאות.", "foodMeat": "בשר", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "חלב", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "תפוח אדמה", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "תות", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "שוקולד", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "דג", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "בשר רקוב", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "סוכר שמבלולו ורוד", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "סוכר שמבלולו כחול", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "דבש", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "עוגת עצמות", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "עוגה רגילה", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "עוגת ממתקים כחולה", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "עוגת ממתקים ורודה", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "עוגת שוקולד", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "עוגת קצפת", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "עוגת דבש", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "עוגה רקובה", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "עוגת חול", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "עוגת תותים", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "סוכריית עצמות חשופות", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "סוכריה רגילה", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "סוכריה חמוצה כחולה", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "סוכריה חמוצה ורודה", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "סוכריית שוקולד", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "סוכריית וניל", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "סוכריית דבש", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "סוכריה רקובה", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "סוכריית חול", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "סוכריית קינמון", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "אוכף", "foodSaddleNotes": "הופך חיית מחמד לחיית רכיבה בין רגע!", "foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?", diff --git a/website/common/locales/he/gear.json b/website/common/locales/he/gear.json index e75c6172fd..f555eec3ed 100644 --- a/website/common/locales/he/gear.json +++ b/website/common/locales/he/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "מוט מתנקש-סקי", "weaponSpecialSkiNotes": "נשק המאפשר להביס להקות של אויבים! ובנוסף, מאפשר למשתמש לבצע פניות מקבילות חינניות. מגביר את הכח ב <%= str %>. מהדורה מוגבלת, ציוד חורף 2013-2014 .", "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": "שרביט פתית", "weaponSpecialSnowflakeNotes": "שרביט זה בוהק ביכולת ריפוי בלתי נלאית. מגביר את התבונה ב<%= int %> נקודות. מהדורת מוגבלת, ציוד חורף 2013-2014.", "weaponSpecialSpringRogueText": "טפרי קרס", @@ -1461,5 +1461,6 @@ "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.", "eyewearArmoirePlagueDoctorMaskText": "מסכת דוקטור מגפה", - "eyewearArmoirePlagueDoctorMaskNotes": "מסכה אותנטית שנחבשה על-ידי הרופאים שנלחמו במגפת הדחיינות. לא מקנה ייתרון. ארמואר קסום: סט דוקטור מגפה (עצם 2 מתוך 3)." + "eyewearArmoirePlagueDoctorMaskNotes": "מסכה אותנטית שנחבשה על-ידי הרופאים שנלחמו במגפת הדחיינות. לא מקנה ייתרון. ארמואר קסום: סט דוקטור מגפה (עצם 2 מתוך 3).", + "twoHandedItem": "Two-handed item." } \ No newline at end of file diff --git a/website/common/locales/he/generic.json b/website/common/locales/he/generic.json index 039283e12c..16a423408a 100644 --- a/website/common/locales/he/generic.json +++ b/website/common/locales/he/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "סייעתם להביס את המש-תומם במהלך ארוע הפלינג האביבי 2016!", "checkOutProgress": "תראו את ההתקדמות שלי בהביטיקה!", "cards": "Cards", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "כרטיס ברכה", "greetingCardExplanation": "שניכם קיבלתם את הישג החבר העליז!", diff --git a/website/common/locales/he/messages.json b/website/common/locales/he/messages.json index 37387a41ac..31b3dd4ff2 100644 --- a/website/common/locales/he/messages.json +++ b/website/common/locales/he/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "אינך יכול להאכיל חיה זו.", "messageAlreadyMount": "כבר השגת את חיית הרכיבה הזו. נסה להאכיל חיה אחרת.", "messageEvolve": "הצלחתם לאלף <%= egg %>, בואו נצא לרכיבה!", - "messageLikesFood": "<%= egg %> נהנה לאכול <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> אכל את ה<%= foodText %> אך לא נראה שהוא נהנה במיוחד.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "קנית <%= itemText %>", "messageEquipped": "הצטיידת ב<%= itemText %>", "messageUnEquipped": "<%= itemText %> לא מצוייד.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "אין מספיק זהב", "messageTwoHandedEquip": "אחיזה ב<%= twoHandedText %> דורשת שתי ידיים, ולכן הורדתם את <%= offHandedText %>.", "messageTwoHandedUnequip": "אחיזה ב<%= twoHandedText %> דורשת שתי ידיים, ולכן הורדתם את הציוד הזה כשהתחמשתם ב<%= offHandedText %>.", - "messageDropFood": "You've found <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "You've found a <%= dropText %> Egg!", "messageDropPotion": "You've found a <%= dropText %> Hatching Potion!", "messageDropQuest": "מצאתם הרפתקה!", @@ -33,7 +33,7 @@ "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!", "armoireEquipment": "<%= image %> מצאתם ציוד נדיר בארמואר: <%= dropText %>! מגניב!", - "armoireFood": "<%= image %> אתם נוברים בארמואר ומוצאים <%= dropArticle %><%= dropText %>. מה זה עושה פה?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "אתם נאבקים בארמואר ומרוויחים ניסיון. קבלו!", "messageInsufficientGems": "אין לכם די אבני חן!", "messageAuthPasswordMustMatch": ":סיסמה ו :אימות-סיסמה לא מתאימים", diff --git a/website/common/locales/he/pets.json b/website/common/locales/he/pets.json index b28cda9e2a..5c4d24eb59 100644 --- a/website/common/locales/he/pets.json +++ b/website/common/locales/he/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "חיית המחמד הזו אינה בבעלותך.", "mountNotOwned": "You do not own this mount.", "earnedCompanion": "עם כל הפרודוקטיביות שלך, זכית במלווה חדש. האכל אותו כדי לגרום לו לגדול!", - "feedPet": "להאכיל את ה<%= name %> שלך ב <%= text %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "לשים אוכף על ה<%= pet %> שלך?", "raisedPet": "You grew your <%= pet %>!", "earnedSteed": "על ידי השלמת המשימות שלכם, הרווחתם חיית רכיבה נאמה!", diff --git a/website/common/locales/hu/content.json b/website/common/locales/hu/content.json index c07229eee3..690cf55ba6 100644 --- a/website/common/locales/hu/content.json +++ b/website/common/locales/hu/content.json @@ -194,35 +194,95 @@ "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.", "foodMeat": "Hús", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Tej", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Burgonya", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Eper", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Csokoládé", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Hal", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Rothadt hús", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Rózsaszín vattacukor", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Kék vattacukor", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Méz", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Csupasz csont torta", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Sima torta", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Kék vattacukor torta", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Rózsaszín vattacukor torta", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Csokitorta", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Krémtorta", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Mézestorta", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Romlott torta", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Homoktorta", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Epertorta", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Csupasz csont cukorka", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Sima cukorka", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Kék savanyú cukorka", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Rózsaszín savanyú cukorka", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Csokis cukorka", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vaniliás cukorka", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Mézes cukorka", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Romlott cukorka", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Homokos cukorka", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Fahéjas cukorka", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Nyereg", "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?", diff --git a/website/common/locales/hu/gear.json b/website/common/locales/hu/gear.json index acd4f741f9..3042edd10a 100644 --- a/website/common/locales/hu/gear.json +++ b/website/common/locales/hu/gear.json @@ -119,7 +119,7 @@ "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.", "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", "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", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/hu/generic.json b/website/common/locales/hu/generic.json index 5c1b2cbd33..5c56cbcf0d 100644 --- a/website/common/locales/hu/generic.json +++ b/website/common/locales/hu/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Segített legyőzni a Zűrzavart a 2016 tavaszi fesztivál alatt!", "checkOutProgress": "Fejlődésem megtekintése a Habiticán!", "cards": "Üdvözlőlapok", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Üdvözlőkártya", "greetingCardExplanation": "Mindketten megkaptátok a Vidám pajtás kitüntetést!", diff --git a/website/common/locales/hu/messages.json b/website/common/locales/hu/messages.json index 8ca06b7a96..0be2375ecc 100644 --- a/website/common/locales/hu/messages.json +++ b/website/common/locales/hu/messages.json @@ -9,8 +9,8 @@ "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.", "messageEvolve": "Megszelidítettél egy <%= egg %>-t, menj egy körre vele!", - "messageLikesFood": "<%= egg %> nagyon szereti a <%= foodText %>-t!", - "messageDontEnjoyFood": "<%= egg %> megette a(z) <%= foodText %>-t, de úgy néz ki nem ízlett neki.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Vettél egy <%= itemText %>-t", "messageEquipped": "Felvetted <%= itemText %>-t.", "messageUnEquipped": "Levetted <%= itemText %>-t.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Nincs elég aranyad", "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.", - "messageDropFood": "Találtál egy <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Találtál egy <%= dropText %> tojást!", "messageDropPotion": "Találtál egy <%= dropText %> keltetőfőzetet!", "messageDropQuest": "Találtál egy küldetést!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Nincs elég drágaköved!", "messageAuthPasswordMustMatch": ":password és :confirmPassword nem egyeznek", diff --git a/website/common/locales/hu/pets.json b/website/common/locales/hu/pets.json index 6cb6961520..f821c788ab 100644 --- a/website/common/locales/hu/pets.json +++ b/website/common/locales/hu/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Ennek a háziállatnak 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!", - "feedPet": "Megeteted a(z) <%= article %><%= text %>-t a <%= name %>-el?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Felnyergeled a(z) <%= pet %>-t?", "raisedPet": "Felnevelted a <%= pet %>-d!", "earnedSteed": "Feladatait elvégzésével szert tettél egy hűséges paripára!", diff --git a/website/common/locales/id/content.json b/website/common/locales/id/content.json index 225b631087..8651d878aa 100644 --- a/website/common/locales/id/content.json +++ b/website/common/locales/id/content.json @@ -194,35 +194,95 @@ "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.", "foodMeat": "Daging", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Susu", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Kentang", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Stroberi", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Cokelat", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Ikan", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Daging Busuk", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Permen Kapas Pink", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Permen Kapas Biru", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Madu", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Kue Tulang", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Kue Dasar", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Kue Permen Biru", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Kue Permen Pink", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Kue Cokelat", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Kue Krim", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Kue Madu", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Kue Basi", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Kue Pasir", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Kue Stroberi", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Permen Tulang", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Permen Biasa", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Permen Asam Biru", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Permen Asam Merah Jambu", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Permen Coklat", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Permen Vanila", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Permen Madu", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Permen Busuk", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Permen Pasir", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Permen Kayu Manis", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Pelana", "foodSaddleNotes": "Membuat peliharaanmu langsung bisa ditunggangi.", "foodSaddleSellWarningNote": "Hei! Ini adalah item yang lumayan berguna! Apakah kamu familiar dengan cara menggunakan sebuah Pelana untuk peliharaanmu?", diff --git a/website/common/locales/id/gear.json b/website/common/locales/id/gear.json index 7dcdc00018..492aa1e12c 100644 --- a/website/common/locales/id/gear.json +++ b/website/common/locales/id/gear.json @@ -119,7 +119,7 @@ "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.", "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", "weaponSpecialSnowflakeNotes": "Tongkat ini berkilauan dengan kekuatan penyembuhnya yang tak terbatas. Meningkatkan Kecerdasan sebesar <%= int %>. Perlengkapan Musim Dingin 2013-2014 Edisi Terbatas.", "weaponSpecialSpringRogueText": "Cakar Kait", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/id/generic.json b/website/common/locales/id/generic.json index a1aef649c1..63a5bfd07a 100644 --- a/website/common/locales/id/generic.json +++ b/website/common/locales/id/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Membantu mengalahkan Be-Wilder selama event Pesta Pora Musim Semi 2016!", "checkOutProgress": "Cek progresku di Habitica!", "cards": "Kartu", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "Kamu mendapat sebuah <%= card %>", "greetingCard": "Kartu Ucapan", "greetingCardExplanation": "Kalian berdua mendapatkan lencana Teman yang Ceria!", diff --git a/website/common/locales/id/limited.json b/website/common/locales/id/limited.json index 1875117305..b3b592c8ac 100644 --- a/website/common/locales/id/limited.json +++ b/website/common/locales/id/limited.json @@ -125,7 +125,7 @@ "dateEndOctober": "31 Oktober", "dateEndNovember": "30 November", "dateEndJanuary": "31 Januari", - "dateEndFebruary": "February 28", + "dateEndFebruary": "28 Februari", "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!", "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", diff --git a/website/common/locales/id/messages.json b/website/common/locales/id/messages.json index 3127576159..ea03a89483 100644 --- a/website/common/locales/id/messages.json +++ b/website/common/locales/id/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Tidak dapat memberi makan peliharaan ini.", "messageAlreadyMount": "Kamu sudah memiliki tunggangan ini. Cobalah beri makan peliharaan yang lain.", "messageEvolve": "Kamu telah menjinakkan <%= egg %>, kini kamu dapat menungganginya!", - "messageLikesFood": "<%= egg %> sangat menyukai <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> memakan <%= foodText %> namun tidak tampak menyukainya.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Membeli <%= itemText %>", "messageEquipped": "<%= itemText %> digunakan.", "messageUnEquipped": "<%= itemText %> dilepaskan.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Anda tidak memiliki cukup Gold", "messageTwoHandedEquip": "Menggunakan <%= twoHandedText %> membutuhkan dua tangan, jadi <%= offHandedText %> telah dilepaskan.", "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 %>!", "messageDropPotion": "Kamu menemukan Ramuan Penetas <%= dropText %>!", "messageDropQuest": "Kamu menemukan sebuah misi!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Permata tidak cukup!", "messageAuthPasswordMustMatch": ":password dan :confirm Kata Sandi tidak cocok", diff --git a/website/common/locales/id/pets.json b/website/common/locales/id/pets.json index 605443309c..1b153e2b6f 100644 --- a/website/common/locales/id/pets.json +++ b/website/common/locales/id/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Kamu tidak memiliki peliharaan ini.", "mountNotOwned": "Kamu tidak memiliki tunggangan ini.", "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 %>?", "raisedPet": "Kamu membesarkan <%= pet %> milikmu!", "earnedSteed": "Dengan melengkapi tugasmu, kamu mendapatkan tunggangan yang setia!", diff --git a/website/common/locales/it/content.json b/website/common/locales/it/content.json index c052265658..df278ca78e 100644 --- a/website/common/locales/it/content.json +++ b/website/common/locales/it/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Versa questa pozione su un uovo, e nascerà un animale <%= potText(locale) %>.", "premiumPotionAddlNotes": "Non utilizzabile su uova di animali ottenute dalle missioni.", "foodMeat": "Carne", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Latte", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Patata", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Fragola", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Cioccolato", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Pesce", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Carne ammuffita", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Zucchero Filato Rosa", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Zucchero Filato Blu", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Miele", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Torta d'osso", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Torta base", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Torta di Zucchero Blu", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Torta di Zucchero Rosa", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Torta al Cioccolato", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Torta alla Crema", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Torta al Miele", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Torta Ammuffita", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Torta di Sabbia", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Torta alle Fragole", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Caramella d'osso", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Caramella Base", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Caramella Aspra Blu", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Caramella Aspra Rosa", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Caramella al Cioccolato", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Caramella alla Vaniglia", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Caramella al Miele", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Caramella ammuffita", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Caramella di Sabbia", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Caramella alla Cannella", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Sella", "foodSaddleNotes": "Rende immediatamente cavalcabile uno dei tuoi animali.", "foodSaddleSellWarningNote": "Ehi! Questo è uno strumento piuttosto utile! Sai come usare una Sella con i tuoi animali?", diff --git a/website/common/locales/it/gear.json b/website/common/locales/it/gear.json index b7ec0326b0..c177cd48d2 100644 --- a/website/common/locales/it/gear.json +++ b/website/common/locales/it/gear.json @@ -119,7 +119,7 @@ "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.", "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", "weaponSpecialSnowflakeNotes": "Questa bacchetta risplende di un illimitato potere curativo! Aumenta l'Intelligenza di <%= int %>. Edizione limitata, inverno 2013-2014.", "weaponSpecialSpringRogueText": "Artigli a uncino", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/it/generic.json b/website/common/locales/it/generic.json index c26b1b671a..32d6667d75 100644 --- a/website/common/locales/it/generic.json +++ b/website/common/locales/it/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Ha contribuito alla sconfitta del Be-Wilder durante l'evento Spring Fling 2016!", "checkOutProgress": "Guarda i miei progressi su Habitica!", "cards": "Cartoline", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "Hai ricevuto una <%= card %>", "greetingCard": "Cartolina di saluto", "greetingCardExplanation": "Ricevete entrambi la medaglia Allegro Compagno!", diff --git a/website/common/locales/it/messages.json b/website/common/locales/it/messages.json index 16726094d7..a642dde42e 100644 --- a/website/common/locales/it/messages.json +++ b/website/common/locales/it/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Non puoi nutrire questo 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!", - "messageLikesFood": "<%= egg %> apprezza <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> mangia <%= foodText %>, ma non sembra piacergli molto.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Hai comprato <%= itemText %>", "messageEquipped": "<%= itemText %> equipaggiato.", "messageUnEquipped": "<%= itemText %> non è più equipaggiato.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Non hai abbastanza Oro", "messageTwoHandedEquip": "Brandire <%= twoHandedText %> richiede due mani, perciò <%= offHandedText %> è stato disequipaggiato.", "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 %>!", "messageDropPotion": "Hai trovato una Pozione di Schiusura <%= dropText %>!", "messageDropQuest": "Hai trovato una missione!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Non hai abbastanza gemme!", "messageAuthPasswordMustMatch": ":password e :confirmPassword non corrispondono", diff --git a/website/common/locales/it/pets.json b/website/common/locales/it/pets.json index f93855b869..f153da176d 100644 --- a/website/common/locales/it/pets.json +++ b/website/common/locales/it/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Non possiedi questo animale.", "mountNotOwned": "Non possiedi questa cavalcatura.", "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 %>?", "raisedPet": "Hai fatto crescere un <%= pet %>!", "earnedSteed": "Completando le tue attività, hai ottenuto un fidato destriero!", diff --git a/website/common/locales/ja/content.json b/website/common/locales/ja/content.json index 30af6510eb..f5dcbe0b41 100644 --- a/website/common/locales/ja/content.json +++ b/website/common/locales/ja/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "これをたまごにかけると、<%= potText(locale) %> ペットが生まれます。", "premiumPotionAddlNotes": "クエスト ペットのたまごには使えません。", "foodMeat": "肉", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "ミルク", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "じゃがいも", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "いちご", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "チョコレート", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "魚", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "腐った肉", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "ピンクの綿菓子", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "水色の綿菓子", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "はちみつ", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "骨のケーキ", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "基本のケーキ", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "水色のケーキ", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "ピンク色のケーキ", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "チョコレートケーキ", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "クリームケーキ", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "はちみつケーキ", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "腐ったケーキ", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "砂のケーキ", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "いちごケーキ", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "骨のキャンディー", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "基本のキャンディー", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "水色のキャンディー", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "ピンクのキャンディー", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "チョコレートキャンディー", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "バニラキャンディー", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "はちみつキャンディー", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "腐ったキャンディー", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "砂のキャンディー", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "シナモンキャンディー", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "くら", "foodSaddleNotes": "ペットの 1 匹をすぐに乗騎に成長させます。", "foodSaddleSellWarningNote": "ちょっと待って! これはとっても役に立つアイテムだよ! ペットにくらを使う方法は知ってるかな?", diff --git a/website/common/locales/ja/gear.json b/website/common/locales/ja/gear.json index e7b062f7ec..c9fd4c2ad2 100644 --- a/website/common/locales/ja/gear.json +++ b/website/common/locales/ja/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "スノアイパーのポール", "weaponSpecialSkiNotes": "敵の大群を破壊することができる武器! また、とても素晴らしいパラレルターンをするのにも役立ちます。力が <%= str %> 上がります。2013年-2014年冬の限定装備。", "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": "雪の結晶のつえ", "weaponSpecialSnowflakeNotes": "このつえは無限のいやしの力で輝いています。知能が <%= int %> 上がります。2013年-2014年冬の限定装備。", "weaponSpecialSpringRogueText": "かぎづめ", @@ -1461,5 +1461,6 @@ "eyewearMystery301703Text": "クジャクの舞踏会の仮面", "eyewearMystery301703Notes": "派手な仮面舞踏会や、身なりの良い群衆の中をひっそりと動くのに最適である。効果なし。3017年3月寄付会員アイテム。", "eyewearArmoirePlagueDoctorMaskText": "ペスト専門医のマスク", - "eyewearArmoirePlagueDoctorMaskNotes": "「先延ばし」という名のペスト(伝染病)とたたかった医師が着けていた信頼のおけるマスク。効果なし。ラッキー宝箱 : ペスト専門医セット( 3 個中 2 個目のアイテム)。" + "eyewearArmoirePlagueDoctorMaskNotes": "「先延ばし」という名のペスト(伝染病)とたたかった医師が着けていた信頼のおけるマスク。効果なし。ラッキー宝箱 : ペスト専門医セット( 3 個中 2 個目のアイテム)。", + "twoHandedItem": "Two-handed item." } \ No newline at end of file diff --git a/website/common/locales/ja/generic.json b/website/common/locales/ja/generic.json index 364e5a73ac..0486f784cd 100644 --- a/website/common/locales/ja/generic.json +++ b/website/common/locales/ja/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "2016年春の元気なダンス イベントで、「まどわしのビ・ワイルダー」の打倒に協力しました!", "checkOutProgress": "Habiticaでの私の成長を見てください!", "cards": "カード", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "<%= card %>カードが届きました!", "greetingCard": "あいさつのカード", "greetingCardExplanation": "お二人とも、Kawaii 実績を解除しました!", diff --git a/website/common/locales/ja/messages.json b/website/common/locales/ja/messages.json index d8fceb705b..bef9b8549c 100644 --- a/website/common/locales/ja/messages.json +++ b/website/common/locales/ja/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "このペットにはエサをあげられません", "messageAlreadyMount": "既にその乗騎は所持しています。他のペットにエサをあげてみましょう。", "messageEvolve": "<%= egg %> はあなたに懐きました。 一緒に出かけましょう!", - "messageLikesFood": "<%= egg %>は<%= foodText %>が大好きなようです!", - "messageDontEnjoyFood": "<%= egg %>は<%= foodText %>を食べましたが 、あまり好きではないようです。", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "<%= itemText %> を購入しました", "messageEquipped": "<%= itemText %>を装備しました", "messageUnEquipped": "<%= itemText %>を外しました。", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "ゴールドが不足しています", "messageTwoHandedEquip": "<%= twoHandedText %>は両手を使って振り回すので、<%= offHandedText %>を装備から外しました。", "messageTwoHandedUnequip": "<%= offHandedText %>を装備したので、両手を使って振り回す<%= twoHandedText %>を装備から外しました。", - "messageDropFood": "<%= dropArticle %><%= dropText %> を見つけました! ", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "<%= dropText %>のたまごを見つけました! ", "messageDropPotion": "<%= dropText %>「たまごがえしの薬」を見つけました! ", "messageDropQuest": "クエストを見つけました!", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "体力はすでに最大です。", "messageHealthAlreadyMin": "ああ、なんてこと! すでに体力が尽きているので、今から体力回復の薬を買っても仕方ありません。でも心配しないでください ー あなたは復活できます!", "armoireEquipment": "<%= image %>宝箱に貴重な装備を見つけました : <%= dropText %>! 素晴らしい!", - "armoireFood": "<%= image %>宝箱をあさって<%= dropText %>を見つけました。何でこんな所に?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "宝箱と格闘して、経験値を得ました。どうぞっ!", "messageInsufficientGems": "ジェムが足りません!", "messageAuthPasswordMustMatch": ":password と :confirmPassword が一致していません。", diff --git a/website/common/locales/ja/pets.json b/website/common/locales/ja/pets.json index 6d4ed1d835..fd442589cf 100644 --- a/website/common/locales/ja/pets.json +++ b/website/common/locales/ja/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "このペットをもっていません。", "mountNotOwned": "この乗騎をもっていません。", "earnedCompanion": "あなたの前向きな行動の一つひとつから、新しい仲間が生まれました。えさをやって成長させましょう!", - "feedPet": "<%= name %>に<%= text %>をやりますか?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "<%= pet %>にくらをおきますか?", "raisedPet": "<%= pet %>を育てた!", "earnedSteed": "多くのタスクを達成して、忠実な乗騎を手に入れた!", diff --git a/website/common/locales/nl/content.json b/website/common/locales/nl/content.json index 21fbc7ca85..10bd39e1de 100644 --- a/website/common/locales/nl/content.json +++ b/website/common/locales/nl/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Giet dit over een ei, en er zal een <%= potText(locale) %> dierlijke metgezel uitkomen.", "premiumPotionAddlNotes": "Niet te gebruiken op eieren van queeste-huisdieren.", "foodMeat": "Vlees", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Melk", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Aardappel", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Aardbei", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Chocolade", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Vis", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Bedorven vlees", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Roze suikerspin", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Blauwe suikerspin", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Honing", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Kale-beenderentaart", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Basistaart", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Snoep-blauwe taart", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Snoep-roze taart", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Chocoladetaart", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Roomtaart", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Honingtaart", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Bedorven taart", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Zandtaartje", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Aardbeientaart", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Kale-beenderensnoep", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Standaardsnoep", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Zuur blauw snoep", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Zuur roze snoep", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Chocoladesnoep", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vanillesnoep", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Honingsnoep", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Bedorven snoep", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Zandsnoep", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Kaneelsnoep", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Zadel", "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?", diff --git a/website/common/locales/nl/gear.json b/website/common/locales/nl/gear.json index 84001c38bc..5eccd5e38b 100644 --- a/website/common/locales/nl/gear.json +++ b/website/common/locales/nl/gear.json @@ -119,7 +119,7 @@ "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.", "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", "weaponSpecialSnowflakeNotes": "Deze staf schittert met onbeperkte genezingskracht. Verhoogt intelligentie met <%= int %>. Beperkte oplage winteruitrusting 2013-2014.", "weaponSpecialSpringRogueText": "Gehaakte Klauwen", @@ -1461,5 +1461,6 @@ "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. ", "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." } \ No newline at end of file diff --git a/website/common/locales/nl/generic.json b/website/common/locales/nl/generic.json index 709a115a63..63169f7467 100644 --- a/website/common/locales/nl/generic.json +++ b/website/common/locales/nl/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Heeft geholpen om de Ver-Wilder te verslaan tijdens het lente-evenement in 2016.", "checkOutProgress": "Moet je mijn vooruitgang in Habitica eens zien!", "cards": "Kaarten", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Kaartje", "greetingCardExplanation": "Jullie ontvangen allebei de Vrolijke Vriend-prestatie!", diff --git a/website/common/locales/nl/messages.json b/website/common/locales/nl/messages.json index bcc92f14b6..905bf365c4 100644 --- a/website/common/locales/nl/messages.json +++ b/website/common/locales/nl/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Dit huisdier kan niet gevoerd worden.", "messageAlreadyMount": "Je hebt dat rijdier al. Probeer een ander huisdier te voeren.", "messageEvolve": "Je hebt <%= egg %> getemd; laten we op weg gaan!", - "messageLikesFood": "<%= egg %> vindt <%= foodText %> echt heel lekker!", - "messageDontEnjoyFood": "<%= egg %> eet <%= foodText %> maar lijkt er niet echt van te smullen.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "<%= itemText %> gekocht", "messageEquipped": "<%= itemText %> in gebruik genomen.", "messageUnEquipped": "<%= itemText %> uitgedaan. ", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Niet genoeg goud", "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.", - "messageDropFood": "You've found <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Je hebt het ei van een <%= dropText %> gevonden!", "messageDropPotion": "Je hebt de uitbroeddrank van een <%= dropText %> gevonden!", "messageDropQuest": "Je hebt een queeste gevonden!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Niet genoeg edelstenen!", "messageAuthPasswordMustMatch": ":password en :confirmPassword komen niet overeen", diff --git a/website/common/locales/nl/pets.json b/website/common/locales/nl/pets.json index 3cbbf3da0f..9c3794e7fe 100644 --- a/website/common/locales/nl/pets.json +++ b/website/common/locales/nl/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Je bezit dit huisdier niet.", "mountNotOwned": "Je bezit dit rijdier niet.", "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?", "raisedPet": "Je hebt je <%= pet %> laten opgroeien!", "earnedSteed": "Door het voltooien van taken heb je een trouw ros verdiend!", diff --git a/website/common/locales/pl/backgrounds.json b/website/common/locales/pl/backgrounds.json index 4008435a22..bc7872bc02 100644 --- a/website/common/locales/pl/backgrounds.json +++ b/website/common/locales/pl/backgrounds.json @@ -325,11 +325,11 @@ "backgroundDrivingASleighNotes": "Przejedź saniami pola pokryte śniegiem.", "backgroundFlyingOverIcySteppesText": "Lodowe Stepy", "backgroundFlyingOverIcySteppesNotes": "Lataj nad Lodowymi Stepami", - "backgrounds022018": "SET 45: Released February 2018", - "backgroundChessboardLandText": "Chessboard Land", - "backgroundChessboardLandNotes": "Play a game in Chessboard Land.", - "backgroundMagicalMuseumText": "Magical Museum", - "backgroundMagicalMuseumNotes": "Tour a Magical Museum.", - "backgroundRoseGardenText": "Rose Garden", - "backgroundRoseGardenNotes": "Dally in a fragrant Rose Garden." + "backgrounds022018": "Zestaw 45: Opublikowany w lutym 2018", + "backgroundChessboardLandText": "Kraina Szachownic", + "backgroundChessboardLandNotes": "Zagraj grę w Krainie Szachownic", + "backgroundMagicalMuseumText": "Magiczne Muzeum", + "backgroundMagicalMuseumNotes": "Zwiedź Magiczne Muzeum", + "backgroundRoseGardenText": "Różany Ogród", + "backgroundRoseGardenNotes": "Zmitręż czas w wonny Różanym Ogrodzie" } \ No newline at end of file diff --git a/website/common/locales/pl/challenge.json b/website/common/locales/pl/challenge.json index 095dca686c..b91e974da4 100644 --- a/website/common/locales/pl/challenge.json +++ b/website/common/locales/pl/challenge.json @@ -6,8 +6,8 @@ "keepIt": "Zachowaj", "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?", - "keepThem": "Keep Tasks", - "removeThem": "Remove Tasks", + "keepThem": "Zachowaj Zadania", + "removeThem": "Usuń Zadania", "challengeCompleted": "Wyzwanie zakończone! Jego zwycięzcą jest <%= user %>! 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?", "challengeWinner": "Jest zwycięzcą następujących wyzwań", @@ -101,8 +101,8 @@ "addTask": "Dodaj Zadanie", "editChallenge": "Edytuj Wyzwanie", "challengeDescription": "Opis Wyzwania", - "selectChallengeWinnersDescription": "Select a winner from the Challenge participants", - "awardWinners": "Award Winner", + "selectChallengeWinnersDescription": "Wybierz zwycięzce spośród uczestników Wyzwania", + "awardWinners": "Nagródź Zwycięzce", "doYouWantedToDeleteChallenge": "Czy chcesz usunąć to Wyzwanie?", "deleteChallenge": "Usuń Wyzwanie", "challengeNamePlaceholder": "Jaka jest nazwa Twojego Wyzwania? ", diff --git a/website/common/locales/pl/content.json b/website/common/locales/pl/content.json index d7c507ff09..d56157eb52 100644 --- a/website/common/locales/pl/content.json +++ b/website/common/locales/pl/content.json @@ -164,9 +164,9 @@ "questEggPterodactylText": "Pterodaktyl", "questEggPterodactylMountText": "Pterodaktyl", "questEggPterodactylAdjective": "ufający", - "questEggBadgerText": "Badger", - "questEggBadgerMountText": "Badger", - "questEggBadgerAdjective": "bustling", + "questEggBadgerText": "Borsuk", + "questEggBadgerMountText": "Borsuk", + "questEggBadgerAdjective": "Zgiełk", "eggNotes": "Znajdź eliksir wyklucia i wylej go na to jajo, a wykluje się z niego <%= eggAdjective(locale) %> <%= eggText(locale) %>. ", "hatchingPotionBase": "Zwyczajny", "hatchingPotionWhite": "Biały", @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Wylej go na jajko, a wykluje się z niego <%=potText(locale)%>.", "premiumPotionAddlNotes": "Nie nadaje się do użytku na jajach otrzymanych za misje.", "foodMeat": "Mięso", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Mleko", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Ziemniak", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Truskawka", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Czekolada", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Ryba", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Zgniłe mięso", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Różowa wata cukrowa", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Niebieska wata cukrowa", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Miód", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Kościste ciasto", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Zwykłe ciasto", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Słodkie niebieskie ciasto", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Słodkie różowe ciasto", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Czekoladowe ciasto", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Kremowe ciasto", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Miodowe ciasto", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Zgniłe ciasto", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Piaskowe ciasto", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Truskawkowe ciasto", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Kościsty cukierek", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Zwyczajny cukierek", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Kwaśny niebieski cukierek", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Kwaśny różowy cukierek", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Czekoladowy cukierek", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Waniliowy cukierek", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Miodowy cukierek", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Zgniły cukierek", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Piaskowy cukierek", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Cynamonowy cukierek", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Siodło", "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?", diff --git a/website/common/locales/pl/gear.json b/website/common/locales/pl/gear.json index 684a45899d..837d289a20 100644 --- a/website/common/locales/pl/gear.json +++ b/website/common/locales/pl/gear.json @@ -5,13 +5,13 @@ "groupBy": "Pogrupuj według <%= type %>", "classBonus": "(Ten przedmiot pasuje do Twojej klasy, więc otrzymuje dodatkowy mnożnik 1.5 do statystyk)", "classArmor": "Zbroja Klasowa", - "featuredset": "Featured Set <%= name %>", + "featuredset": "Opisany Zestaw <%= name %>", "mysterySets": "Tajemnicze zestawy", "gearNotOwned": "Nie posiadasz tego przedmiotu.", - "noGearItemsOfType": "You don't own any of these.", - "noGearItemsOfClass": "You already have all your class equipment! More will be released during the Grand Galas, near the solstices and equinoxes.", - "classLockedItem": "This item is only available to a specific class. Change your class under the User icon > Settings > Character Build!", - "tierLockedItem": "This item is only available once you've purchased the previous items in sequence. Keep working your way up!", + "noGearItemsOfType": "Nie posiadasz żadnego z nich.", + "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": "Ten przedmiot jest dostępny tylko dla specyficznej klasy. Zmień swoją klasę naciskając na Symbol Użytkownika > Ustawienia > Budowa Postaci!", + "tierLockedItem": "Ten przedmiot jest dostępny po wykupieniu poprzednich przedmiotów z sekwencji. Kontynuuj zdobywanie przedmiotów!", "sortByType": "Typ", "sortByPrice": "Cena", "sortByCon": "KON", @@ -81,7 +81,7 @@ "weaponSpecial0Text": "Ostrze mrocznych dusz", "weaponSpecial0Notes": "Karmi się esencją życia wrogów, by wzmocnić swe nikczemne ciosy. Zwiększa Siłę o <%= str %>.", "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", "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", @@ -119,7 +119,7 @@ "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.", "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", "weaponSpecialSnowflakeNotes": "Ta różdżka iskrzy nieskończoną mocą uzdrawiania. Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Zima 2013-2014", "weaponSpecialSpringRogueText": "Hakowate pazury", @@ -235,17 +235,17 @@ "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.", "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", - "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", - "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", - "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", "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", - "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.", + "weaponSpecialWinter2018WarriorText": "Młot Świątecznej Kokardy", + "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", "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", @@ -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.", "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).", - "weaponArmoireWeaversCombText": "Weaver's Comb", - "weaponArmoireWeaversCombNotes": "Use this comb to pack your weft threads together to make a tightly woven fabric. Increases Perception by <%= per %> and Strength by <%= str %>. Enchanted Armoire: Weaver Set (Item 2 of 3).", - "weaponArmoireLamplighterText": "Lamplighter", - "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", + "weaponArmoireWeaversCombText": "Grzebień Tkacza", + "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": "Latarnik", + "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": "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).", "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).", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/pl/generic.json b/website/common/locales/pl/generic.json index bc99766ad9..59f9377e5d 100644 --- a/website/common/locales/pl/generic.json +++ b/website/common/locales/pl/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Pomógł pokonać Be-Wildera podczas Obchodów Wiosennej Uciechy 2016!", "checkOutProgress": "Sprawdź swój postęp w Habitice!", "cards": "Karty", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "Otrzymałeś <%= card %>", "greetingCard": "Kartka powitalna", "greetingCardExplanation": "Oboje otrzymaliście osiągnięcie Wesoły koleś!", diff --git a/website/common/locales/pl/limited.json b/website/common/locales/pl/limited.json index 89ec08344b..07ce1b4e69 100644 --- a/website/common/locales/pl/limited.json +++ b/website/common/locales/pl/limited.json @@ -125,7 +125,7 @@ "dateEndOctober": "31 października", "dateEndNovember": "30 listopada", "dateEndJanuary": "31 stycznia", - "dateEndFebruary": "February 28", + "dateEndFebruary": "28 Luty", "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ę!", "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", diff --git a/website/common/locales/pl/loadingscreentips.json b/website/common/locales/pl/loadingscreentips.json index 7d4d0c1d9a..012890f7ce 100644 --- a/website/common/locales/pl/loadingscreentips.json +++ b/website/common/locales/pl/loadingscreentips.json @@ -5,17 +5,17 @@ "tip3": "Używaj emoji, by łatwiej rozróżniać zadania.", "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.", - "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.", - "tip7": "Some backgrounds connect perfectly if Party members use the same background. Ex: Mountain Lake, Pagodas, and Rolling Hills.", - "tip8": "Send a Message to someone by clicking their name in chat and then clicking the envelope icon at the top of their profile!", - "tip9": "Use the filters + search bar in the Inventories, Shops, Guilds, and Challenges to quickly find what you want.", + "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": "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": "Wyślij Wiadomość do kogoś, klikając ich imię w czacie, a potem klikając symbol koperty na górze ich profilu!", + "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!", - "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!", - "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 (+/−).", - "tip15": "Complete all the Masterclasser Quest-lines to learn about Habitica’s secret lore.", - "tip16": "Click the link to the Data Display Tool in the footer for valuable insights on your progress.", + "tip15": "Wykonaj wszystkie cykle Misji Mistrzów Klas by poznać ukrytą wiedze tajemną Habitiki. ", + "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ń.", "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.", @@ -27,12 +27,12 @@ "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.", "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.", - "tip29": "Complete all your Dailies to get a Perfect Day Buff that increases your Stats!", + "tip28": "Ustaw własny początek dnia klikając na Symbol Użytkownika > Ustawienia, aby kontrolować, kiedy resetuje się Twój dzień.", + "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.", "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.", - "tip33": "Check out The Bulletin Board Guild for news about Guilds, Challenges, and other player-created events - and announce your own there!", - "tip34": "Occasionally re-evaluate your tasks to make sure they’re up-to-date!", - "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." + "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": "Czasami oceń ponownie swoje zadania by się upewnić, że są aktualne!", + "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." } diff --git a/website/common/locales/pl/messages.json b/website/common/locales/pl/messages.json index 1f001dca97..cdf36db7ae 100644 --- a/website/common/locales/pl/messages.json +++ b/website/common/locales/pl/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Nie możesz nakarmić tego chowańca.", "messageAlreadyMount": "Już masz tego wierzchowca. Spróbuj nakarmić innego chowańca.", "messageEvolve": "Oswoiłeś: <%= egg %>, chodźmy na przejażdżkę!", - "messageLikesFood": "<%= egg %> zjada: <%= foodText %> i bardzo mu smakuje!", - "messageDontEnjoyFood": "<%= egg %> zjada: <%= foodText %>, ale raczej mu nie smakuje.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Kupiono: <%= itemText %>", "messageEquipped": "Przedmiot: <%= itemText %> założony.", "messageUnEquipped": "Odłożono <%= itemText %> .", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Nie masz wystarczająco dużo złota", "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 %>.", - "messageDropFood": "Znalazłeś <%= dropArticle %> <%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Znalazłeś <%= dropText %> jajo!", "messageDropPotion": "Znalazłeś <%= dropText %> eliksir wyklucia!", "messageDropQuest": "Znalazłeś misję!", @@ -33,7 +33,7 @@ "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ć!", "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!", "messageInsufficientGems": "Masz za mało klejnotów!", "messageAuthPasswordMustMatch": ":password i :confirmPassword nie są identyczne", diff --git a/website/common/locales/pl/npc.json b/website/common/locales/pl/npc.json index 18b7ec66f1..08b9f27fdd 100644 --- a/website/common/locales/pl/npc.json +++ b/website/common/locales/pl/npc.json @@ -2,7 +2,7 @@ "npc": "NPC", "npcAchievementName": "<%= key %> NPC", "npcAchievementText": "Wsparł projekt na Kickstarterze na maksymalnym poziomie!", - "welcomeTo": "Welcome to", + "welcomeTo": "Witamy w", "welcomeBack": "Witaj ponownie!", "justin": "Justin", "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!", "prev": "Poprzedni", "next": "Następny", - "randomize": "Randomize", + "randomize": "Zrandomizuj", "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ć!", "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ć <%= itemType %> Jajo?", "displayPotionForGold": "Czy chcesz sprzedać <%= itemType %> Eliksir?", "sellForGold": "Sprzedaj za <%= gold %> szt. złota", - "howManyToSell": "How many would you like to sell?", - "yourBalance": "Your balance", + "howManyToSell": "Ile chcesz sprzedać?", + "yourBalance": "Twoja saldo", "sell": "Sprzedaj", "buyNow": "Kup", "sortByNumber": "Numer", @@ -96,7 +96,7 @@ "USD": "(USD)", "newStuff": "New Stuff by Bailey", "newBaileyUpdate": "New Bailey Update!", - "tellMeLater": "Tell Me Later", + "tellMeLater": "Przypomnij mi później", "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.", "donateText2": "Pomóż wspierać Habitikę", diff --git a/website/common/locales/pl/pets.json b/website/common/locales/pl/pets.json index c6ad20f925..49bc647a77 100644 --- a/website/common/locales/pl/pets.json +++ b/website/common/locales/pl/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Nie posiadasz tego chowańca.", "mountNotOwned": "Nie posiadasz tego wierzchowca.", "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 %>?", "raisedPet": "Wyhodowałeś <%= pet %>!", "earnedSteed": "Dzięki ukończeniu swoich zadań masz teraz wiernego wierzchowca!", diff --git a/website/common/locales/pl/settings.json b/website/common/locales/pl/settings.json index c263926a72..b7ccb9218d 100644 --- a/website/common/locales/pl/settings.json +++ b/website/common/locales/pl/settings.json @@ -72,7 +72,7 @@ "APIToken": "Token API (to Twoje hasło – zobacz ostrzeżenie powyżej!)", "showAPIToken": "Pokaż 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", "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", @@ -130,7 +130,7 @@ "remindersToLogin": "Przypominaj by meldować się do Habitica", "subscribeUsing": "Subskrybuj przez", "unsubscribedSuccessfully": "Poprawnie zrezygnowano z subskrypcji!", - "unsubscribedTextUsers": "Poprawnie zrezygnowałeś z subskrypcji wszystkich e-maili od Habitiki. W opcji Ustawienia-> Powiadomieniamożesz włączyć wiadomości, które chcesz otrzymywać. (wymaga zalogowania)", + "unsubscribedTextUsers": "Poprawnie zrezygnowałeś z subskrypcji wszystkich e-maili od Habitiki. W opcji Ustawienia-> Powiadomieniamożesz włączyć wiadomości, które chcesz otrzymywać. (wymaga zalogowania)", "unsubscribedTextOthers": "Nie otrzymasz więcej żadnych e-maili od Habitica.", "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.", diff --git a/website/common/locales/pl/tasks.json b/website/common/locales/pl/tasks.json index 9144efd3b4..381d20ef4c 100644 --- a/website/common/locales/pl/tasks.json +++ b/website/common/locales/pl/tasks.json @@ -1,8 +1,8 @@ { "clearCompleted": "Usuń zakończone", - "clearCompletedDescription": "Completed To-Dos are deleted after 30 days for non-subscribers and 90 days for subscribers.", - "clearCompletedConfirm": "Are you sure you want to delete your completed To-Dos?", - "sureDeleteCompletedTodos": "Are you sure you want to delete your completed To-Dos?", + "clearCompletedDescription": "Zakończone Do-Zrobienia zostają usunięte po 30 dniach dla nie-abonentów i bo 90 dniach dla abonentów.", + "clearCompletedConfirm": "Jesteś pewien, że chcesz usunąć zakończone Do-Zrobienia?", + "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.", "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": "Rada: 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", "notes": "Notatki", "direction/Actions": "Kierunek/działania", - "advancedSettings": "Advanced Settings", + "advancedSettings": "Zaawansowane Ustawienia", "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ć.", "taskAliasPlaceholder": "tutaj-alias-twojego-zadania", "taskAliasPopoverWarning": "UWAGA: Zmiana tej wartości przerwie wszelkie integracje z aplikacjami trzecimi, które opierają się na aliasie zadania.", "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ł", "easy": "Łatwe", "medium": "Średnie", "hard": "Trudne", - "attributes": "Stats", - "attributeAllocation": "Stat Allocation", - "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.

You can set your Automatic Allocation method to Task Based in the Stats section of your profile.", + "attributes": "Atrybuty", + "attributeAllocation": "Przydział Atrybutów", + "attributeAllocationHelp": "Przydział Statystyk jest opcją która pozwala Habitice automatycznie przydzielić zdobyty Punkt Statystyk od razu po zdobyciu poziomu.

Możesz ustawić Twoją metodę Automatycznego Przydzielania na zorientowaną na Zadania w sekcji Statystyki w Swoim profilu.", "progress": "Postęp", "daily": "Codzienne", "dailies": "Codzienne", @@ -58,7 +58,7 @@ "repeat": "Powtórz", "repeats": "Sposób powtarzania", "repeatEvery": "Powtórz co", - "repeatOn": "Repeat On", + "repeatOn": "Powtórz w", "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.", "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", "day": "Dzień", "days": "Dni", - "restoreStreak": "Adjust Streak", + "restoreStreak": "Dostosuj Serię", "resetStreak": "Zresetuj serię", "todo": "Do-Zrobienia", "todos": "Do-Zrobienia", @@ -110,9 +110,9 @@ "streakSingular": "Seryjny wykonawca", "streakSingularText": "Wykonał 21-dniową serię w Codziennym", "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ń", - "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!", "fortifyName": "Mikstura wzmocnienia", "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ę!", "confirmFortify": "Na pewno?", "fortifyComplete": "Wzmocnienie ukończone!", - "deleteTask": "Delete this Task", + "deleteTask": "Usuń to Zadanie", "sureDelete": "Jesteś pewien, że chcesz usunąć te zadanie?", "streakCoins": "Premia za serię!", "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!", "toDoHelp4": "Źródła inspiracji szukaj w przykładowych Do-Zrobienia!", "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.", "rewardHelp4": "Nie bój się ustalać własnych nagród! Sprawdź przykłady tutaj.", "clickForHelp": "Kliknij po pomoc", @@ -172,9 +172,9 @@ "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.", "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", - "approvalRequired": "Needs Approval", + "approvalRequired": "Wymagana Aprobata", "repeatZero": "Dzienne nigdy nie jest aktywne", "repeatType": "Sposób powtarzania", "repeatTypeHelpTitle": "W jaki sposób ma być to powtarzane?", diff --git a/website/common/locales/pt/content.json b/website/common/locales/pt/content.json index a15d198887..2bd1f43e7b 100644 --- a/website/common/locales/pt/content.json +++ b/website/common/locales/pt/content.json @@ -194,35 +194,95 @@ "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.", "foodMeat": "Carne", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Leite", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Batata", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Morango", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Chocolate", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Peixe", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Carne Estragada", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Algodão-doce Rosa", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Algodão-doce Azul", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Mel", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Bolo Esquelético", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Bolo Básico", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Bolo de Doce Azul", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Bolo de Doce Rosa", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Bolo de Chocolate", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Bolo de Creme", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Bolo de Mel", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Bolo Estragado", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Bolo de Areia", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Bolo de Morango", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Bala de Ossos", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Bala Comum", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Bala Azul Azedo", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Bala Rosa Azeda", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Bala de Chocolate", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Bala de Baunilha", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Bala de Mel", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Bala Podre", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Bala de Areia", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Bala de Canela", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Sela", "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?", diff --git a/website/common/locales/pt/gear.json b/website/common/locales/pt/gear.json index 4968e9f6fe..4daa49ba19 100644 --- a/website/common/locales/pt/gear.json +++ b/website/common/locales/pt/gear.json @@ -119,7 +119,7 @@ "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.", "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", "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", @@ -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).", "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 %>.", - "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).", - "weaponArmoireScepterOfDiamondsText": "Scepter of Diamonds", - "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).", + "weaponArmoireScepterOfDiamondsText": "Ceptro de Ouros", + "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", "armorCapitalized": "Armadura", "armorBase0Text": "Roupas Modestas", @@ -371,11 +371,11 @@ "armorSpecial0Text": "Armadura Sombria", "armorSpecial0Notes": "Grita quando atingida, pois ela sente dor no lugar do usuário. Aumenta Cosntituição em <%= con %>.", "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", "armorSpecial2Notes": "Te deixa extra fofo! Aumenta Constituição e Inteligência em <%= attrs %> cada.", "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", "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", @@ -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.", "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.", - "armorSpecialBirthday2018Text": "Fanciful Party Robes", - "armorSpecialBirthday2018Notes": "Happy Birthday, Habitica! Wear these Fanciful Party Robes to celebrate this wonderful day. Confers no benefit.", + "armorSpecialBirthday2018Text": "Manto de Festa Fantasioso", + "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", "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", @@ -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", "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.", - "armorSpecialWinter2018RogueText": "Reindeer Costume", - "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.", - "armorSpecialWinter2018WarriorText": "Wrapping Paper Armor", - "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.", - "armorSpecialWinter2018MageText": "Sparkly Tuxedo", - "armorSpecialWinter2018MageNotes": "The ultimate in magical formalwear. Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.", - "armorSpecialWinter2018HealerText": "Mistletoe Robes", - "armorSpecialWinter2018HealerNotes": "These robes are woven with spells for extra holiday joy. Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.", + "armorSpecialWinter2018RogueText": "Traje de Rena", + "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": "Armadura de Papel de Embrulho", + "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": "Smoking Cintilante", + "armorSpecialWinter2018MageNotes": "A derradeira roupa formal mágica. Aumenta a Inteligência em <%= int %>. Edição Limitada do Equipamento de Inverno 2017-2018. ", + "armorSpecialWinter2018HealerText": "Manto de Visco", + "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", "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", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/pt/generic.json b/website/common/locales/pt/generic.json index e964aea393..ac38cc164b 100644 --- a/website/common/locales/pt/generic.json +++ b/website/common/locales/pt/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Ajudou a derrotar o Be-Wilder durante o event do festival do Caso de Primavera de 2016!", "checkOutProgress": "Veja o meu progresso em Habitica! ", "cards": "Cartões", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Cartão de saudação", "greetingCardExplanation": "Ambos receberam a conquista Camarada Animado!", diff --git a/website/common/locales/pt/messages.json b/website/common/locales/pt/messages.json index a0a92a766c..0691b0dfa0 100644 --- a/website/common/locales/pt/messages.json +++ b/website/common/locales/pt/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Não é possível alimentar este mascote.", "messageAlreadyMount": "Já possui essa montaria. Tente alimentar outro mascote.", "messageEvolve": "Você domou <%= egg %>, vamos dar um passeio.", - "messageLikesFood": "<%= egg %> gostou muito de <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> comeu <%= foodText %>, mas parece não gostar muito.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Comprou <%= itemText %>", "messageEquipped": "<%= itemText %> equipado.", "messageUnEquipped": "<%= itemText %> desequipado.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Ouro Insuficiente", "messageTwoHandedEquip": "Para usar <%= twoHandedText %> são necessárias duas mãos, por isso <%= offHandedText %> foi desequipado.", "messageTwoHandedUnequip": "<%= twoHandedText %> precisa de duas mãos, então ele foi retirado ao equipar <%= offHandedText %>", - "messageDropFood": "You've found <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "You've found a <%= dropText %> Egg!", "messageDropPotion": "You've found a <%= dropText %> Hatching Potion!", "messageDropQuest": "Você encontrou uma Missão!", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "Já tem a saúde máxima.", "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 %> Encontrou uma peça de Equipamento raro no Armário: <%= dropText %>! Fantástico!", - "armoireFood": "<%= image %> Você remexeu no Armário e encontrou <%= dropArticle %><%= dropText %>. O que aquilo estava fazendo lá?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "Você se engalfinhou com o Armário e ganhou Experiência. Pega essa!", "messageInsufficientGems": "Gemas insuficientes!", "messageAuthPasswordMustMatch": ":password e :confirmPassword não combinam", diff --git a/website/common/locales/pt/pets.json b/website/common/locales/pt/pets.json index e2841448e0..5681d23326 100644 --- a/website/common/locales/pt/pets.json +++ b/website/common/locales/pt/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Não é o dono deste mascote.", "mountNotOwned": "You do not own this mount.", "earnedCompanion": "Com toda sua produtividade, você conseguiu um novo companheiro. Lhe dê comida para fazê-lo crescer!", - "feedPet": "Alimentar <%= article %><%= text %> para o seu <%= name %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Selar <%= pet %>?", "raisedPet": "You grew your <%= pet %>!", "earnedSteed": "Completando suas tarefas, você conquistou uma fiel montaria!", diff --git a/website/common/locales/pt_BR/content.json b/website/common/locales/pt_BR/content.json index f98ba57fb9..9f8fd0cc0f 100644 --- a/website/common/locales/pt_BR/content.json +++ b/website/common/locales/pt_BR/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Use-a em um ovo e ele chocará como um mascote <%= potText(locale) %>.", "premiumPotionAddlNotes": "Não utilizável em ovos de mascote de missões.", "foodMeat": "Carne", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Leite", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Batata", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Morango", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Chocolate", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Peixe", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Carne Estragada", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Algodão-Doce Rosa", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Algodão-Doce Azul", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Mel", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Bolo Esquelético", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Bolo Comum", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Bolo Doce Azul", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Bolo Doce Rosa", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Bolo de Chocolate", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Bolo de Creme", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Bolo de Mel", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Bolo Estragado", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Bolo de Areia", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Bolo de Morango", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Bala de Ossos", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Bala Comum", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Bala Azeda Azul", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Bala Azeda Rosa", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Bala de Chocolate", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Bala de Baunilha", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Bala de Mel", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Bala Podre", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Bala de Areia", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Bala de Canela", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Sela", "foodSaddleNotes": "Evolui um de seus mascotes para uma montaria.", "foodSaddleSellWarningNote": "Ei! Este item é bem útil! Está familiarizado sobre como usar uma Sela em seus Animais de estimação?", diff --git a/website/common/locales/pt_BR/gear.json b/website/common/locales/pt_BR/gear.json index 5538620942..c6ff69fa9e 100644 --- a/website/common/locales/pt_BR/gear.json +++ b/website/common/locales/pt_BR/gear.json @@ -119,7 +119,7 @@ "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.", "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", "weaponSpecialSnowflakeNotes": "Esta varinha brilha com poder ilimitado de cura. Aumenta Inteligência em <%= int %>. Equipamento Edição Limitada de Inverno 2013-2014.", "weaponSpecialSpringRogueText": "Garras de Gancho", @@ -1461,5 +1461,6 @@ "eyewearMystery301703Text": "Máscara do Pavão Mascarado", "eyewearMystery301703Notes": "Perfeito para um baile de máscaras ou para se mover furtivamente entre uma multidão bem vestida. Não concede benefícios. Item de Assinante, Março de 3017.", "eyewearArmoirePlagueDoctorMaskText": "Máscara de Médico da Peste", - "eyewearArmoirePlagueDoctorMaskNotes": "Uma autêntica máscara usada pelos médicos que lutam contra a Peste da Procrastinação. Não concede benefícios. Armário Encantado: Conjunto Médico da Peste (Item 2 de 3)." + "eyewearArmoirePlagueDoctorMaskNotes": "Uma autêntica máscara usada pelos médicos que lutam contra a Peste da Procrastinação. Não concede benefícios. Armário Encantado: Conjunto Médico da Peste (Item 2 de 3).", + "twoHandedItem": "Two-handed item." } \ No newline at end of file diff --git a/website/common/locales/pt_BR/generic.json b/website/common/locales/pt_BR/generic.json index 547836b9b8..03f9b778b4 100644 --- a/website/common/locales/pt_BR/generic.json +++ b/website/common/locales/pt_BR/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Ajudou a derrotar o Ilusion-lista durante o Festival de Primavera de 2016!", "checkOutProgress": "Veja o meu progresso no Habitica!", "cards": "Cartões", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Cartão de Saudação", "greetingCardExplanation": "Ambos receberam a conquista Camarada Animado!", diff --git a/website/common/locales/pt_BR/messages.json b/website/common/locales/pt_BR/messages.json index d86c359dce..3087a97186 100644 --- a/website/common/locales/pt_BR/messages.json +++ b/website/common/locales/pt_BR/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Não foi possível alimentar este mascote.", "messageAlreadyMount": "Você já possui essa montaria. Tente alimentar outro mascote.", "messageEvolve": "Você domou <%= egg %>, vamos dar um passeio!", - "messageLikesFood": "<%= egg %> gosta muito de <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> comeu <%= foodText %>, mas parece não gostar muito.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Comprou <%= itemText %>", "messageEquipped": "<%= itemText %> equipado.", "messageUnEquipped": "<%= itemText %> desequipado.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Ouro Insuficiente", "messageTwoHandedEquip": "<%= twoHandedText %> precisa das duas mãos, então <%= offHandedText %> foi desequipado.", "messageTwoHandedUnequip": "<%= twoHandedText %> precisa das duas mãos, então ele foi retirado ao equipar <%= offHandedText %>.", - "messageDropFood": "Você encontrou <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Você encontrou um Ovo <%= dropText %>!", "messageDropPotion": "Você encontrou uma Poção de Eclosão <%= dropText %>!", "messageDropQuest": "Você encontrou uma Missão!", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "Você já está com o máximo de vida.", "messageHealthAlreadyMin": "Ah não! Você já está completamente sem vida, portanto é muito tarde para comprar uma poção de vida, mas não se preocupe - você pode reviver!", "armoireEquipment": "<%= image %> Você encontrou um Equipamento raro no Armário: <%= dropText %>! Incrível!", - "armoireFood": "<%= image %> Você remexeu no Armário e encontrou <%= dropArticle %><%= dropText %>. O que isto está fazendo aqui?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "Você chutou o Armário e ganhou Experiência. Toma essa!", "messageInsufficientGems": "Gemas insuficientes!", "messageAuthPasswordMustMatch": ":password e :confirmPassword não combinam", diff --git a/website/common/locales/pt_BR/pets.json b/website/common/locales/pt_BR/pets.json index d608c97715..9d811d7e1c 100644 --- a/website/common/locales/pt_BR/pets.json +++ b/website/common/locales/pt_BR/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Você não possui esse mascote.", "mountNotOwned": "Você não possui essa montaria.", "earnedCompanion": "Com toda sua produtividade, você conseguiu um novo companheiro. Alimente-o para fazê-lo crescer.", - "feedPet": "Alimentar <%= article %><%= text %> para o seu <%= name %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Usar sela em <%= pet %>?", "raisedPet": "Você domou seu <%= pet %>!", "earnedSteed": "Por completar suas tarefas, você conquistou uma fiel montaria!", diff --git a/website/common/locales/ro/content.json b/website/common/locales/ro/content.json index 9e3694deac..ee1f016f30 100644 --- a/website/common/locales/ro/content.json +++ b/website/common/locales/ro/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Toarnă aceasta pe un ou și va ecloza ca un companion <%= potText(locale) %>.", "premiumPotionAddlNotes": "Neutilizabil pe ouă de companioni obținute din expediții.", "foodMeat": "Carne", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Lapte", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Cartof", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Căpșună", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Ciocolată", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Pește", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Carne putrezită", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Vată de zahăr roz", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Vată de zahăr albastră", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Miere", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Prăjitură de oase", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Prăjitură simplă", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Prăjitură cu bomboane albastră", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Prăjitură cu bomboane roz", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Prăjitură de ciocolată", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Prăjitură cu cremă", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Prăjitură cu miere", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Prăjitură stricată", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Prăjitură la nisip", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Prăjitură cu căpșuni", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Bomboană de oase", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Bomboană simplă", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Bomboană albastră acră", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Bomboană roz acră", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Bomboană cu ciocolată", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Bomboană cu vanilie", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Bomboană cu miere", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Prăjitură stricată", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Bomboană cu nisip", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Bomboană cu scorțișoară", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Șa", "foodSaddleNotes": "Transformă instantaneu un companion într-un animal de călărit.", "foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?", diff --git a/website/common/locales/ro/gear.json b/website/common/locales/ro/gear.json index 9124f011d6..a2ed5575c2 100644 --- a/website/common/locales/ro/gear.json +++ b/website/common/locales/ro/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "Suliță Ski-sasin", "weaponSpecialSkiNotes": "O armă ce poate distruge hoarde întregi de inamici! In plus, ajută utilizatorul să facă viraje paralele perfecte cu schiurile. Crește Forța cu <%= str %>. Echipament de Iarnă 2013-2014 în Ediție Limitată!", "weaponSpecialCandycaneText": "Toiag cu vată de zahăr", - "weaponSpecialCandycaneNotes": "Un impresionant toiag de mag. Impresionant de DELICIOS adică! Armă pentru două mâini. Sporește Inteligența cu <%= int %> și Percepția cu <%= per %>. Echipament de iarnă 2013-2014 în ediție limitată.", + "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": "Bagheta fulgului de zăpadă", "weaponSpecialSnowflakeNotes": "Această baghetă sclipește cu putere nelimitată de vindecare. Crește Inteligența cu <%= int %>. Ediție Limitată Echipament Iarna 2013-2014!", "weaponSpecialSpringRogueText": "Gheare de cățărat", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/ro/generic.json b/website/common/locales/ro/generic.json index 75a360b3d7..d1667db918 100644 --- a/website/common/locales/ro/generic.json +++ b/website/common/locales/ro/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Check out my progress in Habitica!", "cards": "Cards", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Greeting Card", "greetingCardExplanation": "You both receive the Cheery Chum achievement!", diff --git a/website/common/locales/ro/messages.json b/website/common/locales/ro/messages.json index b4d4269f3e..2700a461a9 100644 --- a/website/common/locales/ro/messages.json +++ b/website/common/locales/ro/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Nu poți hrăni acest companion.", "messageAlreadyMount": "Ai deja acest animal de călărit. Încearcă să hrănești alt companion.", "messageEvolve": "Ai îmblînzit <%= egg %>, hai să mergem la o plimbare!", - "messageLikesFood": "<%= egg %> adoră să mănânce <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> mănîncă <%= foodText %>, dar se pare că nu îi place.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Ai cumpărat <%= itemText %>", "messageEquipped": "<%= itemText %> echipat.", "messageUnEquipped": "<%= itemText %> unequipped.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Nu ai destul aur", "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 %>.", - "messageDropFood": "You've found <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "You've found a <%= dropText %> Egg!", "messageDropPotion": "You've found a <%= dropText %> Hatching Potion!", "messageDropQuest": "Ai găsit o expediție!", @@ -33,7 +33,7 @@ "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!", "armoireEquipment": "<%= image %> Ai găsit o piesă rară de echipament în șifonier: <%= dropText %>! Grozav!", - "armoireFood": "<%= image %> Ai răscolit prin șifonier și ai găsit <%= dropArticle %><%= dropText %>. Ce caută asta aici?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "Te-ai luptat cu șifonierul și ai câștigat experiență. Na!", "messageInsufficientGems": "Nu ai destule nestemate!", "messageAuthPasswordMustMatch": ":password și :confirmPassword nu se potrivesc", diff --git a/website/common/locales/ro/pets.json b/website/common/locales/ro/pets.json index e170acf121..4d956be2b4 100644 --- a/website/common/locales/ro/pets.json +++ b/website/common/locales/ro/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "You do not own this pet.", "mountNotOwned": "You do not own this mount.", "earnedCompanion": "With all your productivity, you've earned a new companion. Feed it to make it grow!", - "feedPet": "Hrănești <%= name %> cu <%= article %><%= text %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Înșeuezi <%= pet %>?", "raisedPet": "You grew your <%= pet %>!", "earnedSteed": "By completing your tasks, you've earned a faithful steed!", diff --git a/website/common/locales/ru/challenge.json b/website/common/locales/ru/challenge.json index 5e41f124d8..463ae1c801 100644 --- a/website/common/locales/ru/challenge.json +++ b/website/common/locales/ru/challenge.json @@ -99,7 +99,7 @@ "joinChallenge": "Присоединиться", "leaveChallenge": "Покинуть", "addTask": "Добавить задачу", - "editChallenge": "Редактировать испытание", + "editChallenge": "Редактировать", "challengeDescription": "Описание испытания", "selectChallengeWinnersDescription": "Выберите победителя из участников испытания", "awardWinners": "Наградить Победителя", @@ -117,7 +117,7 @@ "updateChallenge": "Обновить испытание", "haveNoChallenges": "В этой группе нет испытаний", "loadMore": "Загрузить больше", - "exportChallengeCsv": "Экспортировать испытание", + "exportChallengeCsv": "Экспортировать", "editingChallenge": "Редактирование испытания", "nameRequired": "Требуется имя", "tagTooShort": "тег слишком короткий", diff --git a/website/common/locales/ru/content.json b/website/common/locales/ru/content.json index 9081df9194..b9a9d4bbc5 100644 --- a/website/common/locales/ru/content.json +++ b/website/common/locales/ru/content.json @@ -166,7 +166,7 @@ "questEggPterodactylAdjective": "доверие", "questEggBadgerText": "Барсук", "questEggBadgerMountText": "Барсук", - "questEggBadgerAdjective": "bustling", + "questEggBadgerAdjective": "суетливый", "eggNotes": "Найдите инкубационный эликсир, чтобы полить им это яйцо, и из него вылупится <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Обыкновенный", "hatchingPotionWhite": "Белый", @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Полейте его на яйцо и из него вылупится <%= potText(locale) %> питомец.", "premiumPotionAddlNotes": "Несовместим с яйцами квестовых питомцев.", "foodMeat": "Мясо", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Молоко", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Картофель", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Земляника", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Шоколад", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Рыба", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Тухлое мясо", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Розовая сахарная вата", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Синяя сладкая вата", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Мёд", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Костяной торт", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Обычный торт", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Синий карамельный торт", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Розовый карамельный торт", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Шоколадный торт", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Кремовый торт", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Медовый торт", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Тухлый торт", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Песочный торт", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Земляничный торт", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Костяная конфета", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Обычная конфета", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Голубая кислая конфета", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Розовая кислая конфета", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Шоколадная конфета", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Ванильная конфета", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Медовая конфета", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Тухлая конфета", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Песочная конфета", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Коричная конфета", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Седло", "foodSaddleNotes": "Моментально делает одного из питомцев скакуном.", "foodSaddleSellWarningNote": "Эй! Это довольно полезная вещь! Знаете ли вы, как пользоваться седлом?", diff --git a/website/common/locales/ru/gear.json b/website/common/locales/ru/gear.json index 49da3ed3fc..f75b954123 100644 --- a/website/common/locales/ru/gear.json +++ b/website/common/locales/ru/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "Палка лыжника-ассасина", "weaponSpecialSkiNotes": "Оружие способное уничтожать орды врагов! Оно также помогает владельцу делать красивые параллельные повороты. Увеличивает силу на <%= str %>. Ограниченный выпуск зимы 2013-2014.", "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": "Палочка «Снежинка»", "weaponSpecialSnowflakeNotes": "Эта волшебная палочка так и сверкает от бесконечной исцеляющей силы. Увеличивает интеллект на <%= int %>. Ограниченный выпуск зимы 2013-2014.", "weaponSpecialSpringRogueText": "Крюк-кошка", @@ -1461,5 +1461,6 @@ "eyewearMystery301703Text": "Маскарадная маска павлина", "eyewearMystery301703Notes": "Идеально подходит для причудливого маскарада или для скрытного перемещения через особо хорошо одетую толпу. Бонусов не дает. Март 3017 Элемент подписчика.", "eyewearArmoirePlagueDoctorMaskText": "Маска чумного доктора", - "eyewearArmoirePlagueDoctorMaskNotes": "Такие маски носили доктора, боровшиеся с Чумой Прокрастинации. Бонусов не даёт. Зачарованный сундук: Набор Чумного доктора (предмет 2 из 3)" + "eyewearArmoirePlagueDoctorMaskNotes": "Такие маски носили доктора, боровшиеся с Чумой Прокрастинации. Бонусов не даёт. Зачарованный сундук: Набор Чумного доктора (предмет 2 из 3)", + "twoHandedItem": "Two-handed item." } \ No newline at end of file diff --git a/website/common/locales/ru/generic.json b/website/common/locales/ru/generic.json index b2b68632a2..9fd64bfbb5 100644 --- a/website/common/locales/ru/generic.json +++ b/website/common/locales/ru/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Помог(ла) победить С-толку-сбивателя во время события Весенней веселухи 2016!", "checkOutProgress": "Оцените мои достижения в Habitica!", "cards": "Открытки", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "Вы получили <%= card %>", "greetingCard": "Приветственная открытка", "greetingCardExplanation": "Вы оба получили достижение «Весельчак»!", @@ -177,7 +179,7 @@ "greeting2": "`энергично машет рукой`", "greeting3": "Эй, вы! ", "greetingCardAchievementTitle": "Весельчак", - "greetingCardAchievementText": "Хай! Привет! Здравствуйте! Отправлено или получено приветственных открыток: .<%= count %>", + "greetingCardAchievementText": "Хай! Привет! Здравствуйте! Отправлено или получено приветственных открыток: <%= count %>", "thankyouCard": "Благодарственная открытка", "thankyouCardExplanation": "Вы оба получили достижение «Благодарный»!", "thankyouCardNotes": "Отправьте открытку с благодарностью члену своей команды.", @@ -192,7 +194,7 @@ "birthdayCardNotes": "Отправьте поздравление с Днем рождения члену команды.", "birthday0": "С Днем рождения!", "birthdayCardAchievementTitle": "Большой куш Дня рождения", - "birthdayCardAchievementText": "С днем рождения! Отправлено или получено открыток ко дню рождения: <%= count %>.", + "birthdayCardAchievementText": "С днем рождения! Отправлено или получено открыток ко дню рождения: <%= count %>", "congratsCard": "Поздравительная открытка", "congratsCardExplanation": "Вы оба получили достижение \"Разделяющий радость\"!", "congratsCardNotes": "Отправьте поздравительную открытку члену своей команды.", @@ -211,7 +213,7 @@ "getwell2": "Думаю о тебе!", "getwell3": "Так жаль, что ты плохо себя чувствуешь!", "getwellCardAchievementTitle": "Заботливый друг", - "getwellCardAchievementText": "Желать здоровья – это прекрасно. Получено или отправлено пожеланий поправиться: <%= count %>.", + "getwellCardAchievementText": "Желать здоровья – это прекрасно. Получено или отправлено пожеланий поправиться: <%= count %>", "goodluckCard": "Открытка \"Удачи!\"", "goodluckCardExplanation": "Вы оба получили достижение «Письмо удачи»!", "goodluckCardNotes": "Отправьте открытку с пожеланием удачи члену своей команды.", diff --git a/website/common/locales/ru/groups.json b/website/common/locales/ru/groups.json index beb48eee5f..60c2bb2e1a 100644 --- a/website/common/locales/ru/groups.json +++ b/website/common/locales/ru/groups.json @@ -48,22 +48,22 @@ "userId": "ID пользователя", "invite": "Пригласить", "leave": "Выйти", - "invitedToParty": "You were invited to join the Party <%= party %>", - "invitedToPrivateGuild": "You were invited to join the private Guild <%= guild %>", - "invitedToPublicGuild": "You were invited to join the Guild <%= guild %>", - "partyInvitationsText": "You have <%= numberInvites %> Party invitations! Choose wisely, because you can only be in one Party at a time.", - "joinPartyConfirmationText": "Are you sure you want to join the Party \"<%= partyName %>\"? You can only be in one Party at a time. If you join, all other Party invitations will be rejected.", + "invitedToParty": "Вас пригласили в команду <%= party %>", + "invitedToPrivateGuild": "Вас пригласили присоединиться к частной гильдии <%= guild %>", + "invitedToPublicGuild": "Вас пригласили в гильдию <%= guild %>", + "partyInvitationsText": "У вас <%= numberInvites %> приглашений в команду! Выбирайте мудро, поскольку одновременно вы можете быть только в одной.", + "joinPartyConfirmationText": "Вы уверены, что хотите присоединиться к команде \"<%= partyName %>\"? Вы можете быть только в одной. Если вы присоединитесь, то другие приглашения будут отклонены. ", "invitationAcceptedHeader": "Ваше приглашение принято", "invitationAcceptedBody": "<%= username %> принял приглашение в <%= groupName %>!", "joinNewParty": "Вступить в новую команду", "declineInvitation": "Отклонить приглашение", - "partyLoading1": "Your Party is being summoned. Please wait...", - "partyLoading2": "Your Party is coming in from battle. Please wait...", - "partyLoading3": "Your Party is gathering. Please wait...", - "partyLoading4": "Your Party is materializing. Please wait...", + "partyLoading1": "Ваша команда призывается. Пожалуйста, подождите...", + "partyLoading2": "Ваша команда вступает в битву. Пожалуйста, подождите...", + "partyLoading3": "Ваша команда собирается. Пожалуйста, подождите...", + "partyLoading4": "Ваша команда материализуется. Пожалуйста, подождите...", "systemMessage": "Системное сообщение", - "newMsgGuild": "<%= name %> has new posts", - "newMsgParty": "Your Party, <%= name %>, has new posts", + "newMsgGuild": "<%= name %>, есть новые сообщения", + "newMsgParty": "В вашей команде <%= name %> есть новые сообщения", "chat": "Чат", "sendChat": "Написать в чат", "toolTipMsg": "Получить последние сообщения", @@ -83,7 +83,7 @@ "assignLeader": "Назначить лидера группы", "members": "Участники", "memberList": "Список участников", - "partyList": "Order for Party members in header", + "partyList": "Порядок участников команды в области персонажа", "banTip": "Выгнать", "moreMembers": "других членов", "invited": "Приглашение отправлено", @@ -100,7 +100,7 @@ "guild": "Гильдия", "guilds": "Гильдии", "guildsLink": "Гильдии", - "sureKick": "Do you really want to remove this member from the Party/Guild?", + "sureKick": "Вы действительно хотите удалить этого участника из команды/гильдии?", "optionalMessage": "Необязательное сообщение", "yesRemove": "Да, удалить", "foreverAlone": "Вы не можете лайкать свое собственное сообщение. Не будьте таким человеком.", @@ -158,9 +158,9 @@ "leaderOnlyChallenges": "Только лидер группы может создавать испытания", "sendGift": "Отправить подарок", "inviteFriends": "Пригласить друзей", - "partyMembersInfo": "Your Party currently has <%= memberCount %> members and <%= invitationCount %> pending invitations. The limit of members in a Party is <%= limitMembers %>. Invitations above this limit cannot be sent.", + "partyMembersInfo": "В вашей команде сейчас <%= memberCount %> участников и <%= invitationCount %> приглашений, которые ожидают принятия. Лимит участников команды равен <%= limitMembers %>. Вы не можете отправлять приглашения больше этого лимита.", "inviteByEmail": "Пригласить по электронной почте", - "inviteByEmailExplanation": "If a friend joins Habitica via your email, they'll automatically be invited to your Party!", + "inviteByEmailExplanation": "Если друг присоединится к Habitica, перейдя по ссылке в вашем письме, он автоматически будет приглашён в вашу команду!", "inviteMembersHowTo": "Пригласите людей с помощью электронной почты или 36-значного ID пользователя. Если электронная почта ещё не зарегистрирована, мы предложим им присоединиться к стране Habitica.", "inviteFriendsNow": "Пригласить друзей прямо сейчас", "inviteFriendsLater": "Пригласить друзей позже", @@ -186,18 +186,18 @@ "battleWithFriends": "Побеждайте монстров с друзьями", "startPartyWithFriends": "Создайте команду с друзьями!", "startAParty": "Создать команду", - "addToParty": "Add someone to your Party", + "addToParty": "Пригласите участника в команду", "likePost": "Кликните, если нравится пост!", "partyExplanation1": "Играйте с друзьями, чтобы быть ответственнее!", "partyExplanation2": "Сражайтесь с монстрами и создавайте испытания!", "partyExplanation3": "Пригласите друзей прямо сейчас, чтобы получить свиток квеста!", - "wantToStartParty": "Do you want to start a Party?", - "exclusiveQuestScroll": "Inviting a friend to your Party will grant you an exclusive Quest Scroll to battle the Basi-List together!", - "nameYourParty": "Name your new Party!", - "partyEmpty": "You're the only one in your Party. Invite your friends!", - "partyChatEmpty": "Your Party chat is empty! Type a message in the box above to start chatting.", + "wantToStartParty": "Вы хотите собрать новую команду?", + "exclusiveQuestScroll": "Пригласив друга в команду, вы получите уникальный свиток квеста для совместного сражения с Василистом!", + "nameYourParty": "Дайте имя вашей новой команде!", + "partyEmpty": "Кроме вас в вашей команде никого нет. Пригласите друзей!", + "partyChatEmpty": "Чат вашей команды пустует! Отправьте первое сообщение для начала общения.", "guildChatEmpty": "Чат этой гильдии пустует! Наберите сообщение в поле сверху, чтобы начать общаться.", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any Party or Guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them.", + "requestAcceptGuidelines": "Если вы хотите оставить сообщение в Таверне или в чате любой гильдии, сперва прочитайте наши <%= linkStart %>Правила сообщества<%= linkEnd %> а затем кнопку \"Принять правила\" внизу. Это будет означать, что вы их принимаете и обязуетесь выполнять.", "partyUpName": "Зажигаем", "partyOnName": "Время вечеринок", "partyUpText": "Вы объединились в команду с другим человеком! Веселитесь сражаясь с монстрами и поддерживая друг друга!", @@ -206,8 +206,8 @@ "groupIdRequired": "\"groupld\" должен быть действительным UUID.", "groupNotFound": "Группа не найдена, либо вы не имеете доступа.", "groupTypesRequired": "Необходима действительная строка запроса \"type\".", - "questLeaderCannotLeaveGroup": "You cannot leave your Party when you have started a quest. Abort the quest first.", - "cannotLeaveWhileActiveQuest": "You cannot leave Party during an active quest. Please leave the quest first.", + "questLeaderCannotLeaveGroup": "Нельзя покинуть команду, если вы начали квест. Сначала прервите квест.", + "cannotLeaveWhileActiveQuest": "Нельзя покинуть команду во время активного квеста. Сначала выйдите из квеста.", "onlyLeaderCanRemoveMember": "Только лидер группы может удалить члена группы!", "cannotRemoveCurrentLeader": "Вы не можете удалить лидера группы. Сначала назначьте нового лидера.", "memberCannotRemoveYourself": "Вы не можете удалить себя!", @@ -224,7 +224,7 @@ "cannotInviteSelfToGroup": "Вы не можете приглосить себя в группу.", "userAlreadyInvitedToGroup": "Пользователь уже приглашен в эту группу.", "userAlreadyPendingInvitation": "Пользователь уже получил приглашение.", - "userAlreadyInAParty": "User already in a Party.", + "userAlreadyInAParty": "Пользователь уже в группе.", "userWithIDNotFound": "Пользователь с ID \"<%= userId %>\" не найден.", "userHasNoLocalRegistration": "Пользователь не имеет местной регистрации (имя пользователя, электронная почта, пароль)", "uuidsMustBeAnArray": "Приглашения User ID должны быть массивом.", @@ -234,19 +234,19 @@ "onlyCreatorOrAdminCanDeleteChat": "Вы не авторизованы чтобы удаить это сообщение!", "onlyGroupLeaderCanEditTasks": "Вы не авторизованы, чтобы редактировать задачи!", "onlyGroupTasksCanBeAssigned": "Можно назначать только командные задачи", - "assignedTo": "Assigned To", - "assignedToUser": "Assigned to <%= userName %>", - "assignedToMembers": "Assigned to <%= userCount %> members", - "assignedToYouAndMembers": "Assigned to you and <%= userCount %> members", - "youAreAssigned": "You are assigned to this task", - "taskIsUnassigned": "This task is unassigned", - "confirmClaim": "Are you sure you want to claim this task?", - "confirmUnClaim": "Are you sure you want to unclaim this task?", - "confirmApproval": "Are you sure you want to approve this task?", - "confirmNeedsWork": "Are you sure you want to mark this task as needing work?", - "userRequestsApproval": "<%= userName %> requests approval", - "userCountRequestsApproval": "<%= userCount %> request approval", - "youAreRequestingApproval": "You are requesting approval", + "assignedTo": "Назначено", + "assignedToUser": "Назначено для <%= userName %>", + "assignedToMembers": "Назначено <%= userCount %> участникам", + "assignedToYouAndMembers": "Назначено вам и <%= userCount %> участникам", + "youAreAssigned": "Вам назначена эта задача", + "taskIsUnassigned": "Эта задача не назначена", + "confirmClaim": "Вы уверены, что хотите запросить эту задачу?", + "confirmUnClaim": "Вы уверены, что хотите освободить эту задачу?", + "confirmApproval": "Вы точно хотите одобрить эту задачу?", + "confirmNeedsWork": "Вы уверены, что хотите пометить эту задачу как нуждающуюся в работе?", + "userRequestsApproval": "<%= userName %> запрашивает одобрение", + "userCountRequestsApproval": "<%= userCount %> запрашивают одобрения", + "youAreRequestingApproval": "Вы запрашиваете одобрение", "chatPrivilegesRevoked": "Ваши права в чате были отменены.", "newChatMessagePlainNotification": "Новое сообщение в <%= groupName %> от <%= authorName %>. Нажмите, чтобы открыть чат!", "newChatMessageTitle": "Новое сообщение в <%= groupName %>", @@ -261,9 +261,9 @@ "groupHomeTitle": "Главная", "assignTask": "Назначить задачу", "claim": "Заявить", - "removeClaim": "Remove Claim", + "removeClaim": "Удалить претензию", "onlyGroupLeaderCanManageSubscription": "Только лидер группы может управлять общей подпиской", - "yourTaskHasBeenApproved": "Your task <%= taskText %> has been approved.", + "yourTaskHasBeenApproved": "Ваше задание <%= taskText %> было одобрено.", "taskNeedsWork": "<%= managerName %> marked <%= taskText %> as needing additional work.", "userHasRequestedTaskApproval": "<%= user %> requests approval for <%= taskName %>", "approve": "Одобрить", @@ -416,5 +416,5 @@ "wouldYouParticipate": "Хотите ли вы поучаствовать?", "managerAdded": "Менеджер успешно добавлен", "managerRemoved": "Менеджер успешно удалён", - "leaderChanged": "Leader has been changed" + "leaderChanged": "Лидер был сменен" } \ No newline at end of file diff --git a/website/common/locales/ru/limited.json b/website/common/locales/ru/limited.json index d5cae0fa1e..bc3bc766ac 100644 --- a/website/common/locales/ru/limited.json +++ b/website/common/locales/ru/limited.json @@ -125,7 +125,7 @@ "dateEndOctober": "31 октября", "dateEndNovember": "30 ноября", "dateEndJanuary": "31 января", - "dateEndFebruary": "February 28", + "dateEndFebruary": "Февраль 28", "winterPromoGiftHeader": "ПОДАРИТЕ ПОДПИСКУ И ПОЛУЧИТЕ ОДНУ БЕСПЛАТНО!", "winterPromoGiftDetails1": "Только до 12 января, когда вы дарите кому-то подписку, вы получаете такую же подписку для себя бесплатно!", "winterPromoGiftDetails2": "Обратите внимание, что если у вас или вашего получателя подарка уже есть повторяющаяся Подписка, одаренная Подписка начнется только после того, как эта Подписка будет отменена или истечет срок ее действия. Большое спасибо за вашу поддержку! <3", diff --git a/website/common/locales/ru/loadingscreentips.json b/website/common/locales/ru/loadingscreentips.json index f51dd8e5b3..c8b6f43908 100644 --- a/website/common/locales/ru/loadingscreentips.json +++ b/website/common/locales/ru/loadingscreentips.json @@ -1,7 +1,7 @@ { "tipTitle": "Совет #<%= tipNumber %>", "tip1": "Отмечайте задачи на ходу с помощью мобильных приложений Habitica.", - "tip2": "Нажмите на любое оборудование, чтобы увидеть предварительный просмотр, или надеть его мгновенно, нажав на звезду в левом верхнем углу!", + "tip2": "Клик на любом снаряжение откроет предварительный просмотр, чтобы надеть его - нажмите на звезду в левом верхнем углу!", "tip3": "Используйте эмодзи, чтобы быстро различать задания.", "tip4": "Используйте символ # перед названием задания, чтобы сделать его очень большим!", "tip5": "Лучше всего использовать вызывающие баффы навыки с утра пораньше, чтобы они длились дольше.", diff --git a/website/common/locales/ru/messages.json b/website/common/locales/ru/messages.json index b07696b0ef..36f6be9d27 100644 --- a/website/common/locales/ru/messages.json +++ b/website/common/locales/ru/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Невозможно покормить этого питомца.", "messageAlreadyMount": "У вас уже есть такой скакун. Попробуйте покормить другого питомца.", "messageEvolve": "<%= egg %> ждет в стойлах, пора покататься!", - "messageLikesFood": "<%= egg %> любит такую еду. <%= foodText %> — вкуснятина!", - "messageDontEnjoyFood": "<%= egg %> все съедает, но с трудом. <%= foodText %> нравится не всем.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Куплено: <%= itemText %>", "messageEquipped": "Надето: <%= itemText %>.", "messageUnEquipped": "Не надето: <%= itemText %>", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Недостаточно золота", "messageTwoHandedEquip": "Удержать <%= twoHandedText %> можно только двумя руками, поэтому пришлось снять <%= offHandedText %>.", "messageTwoHandedUnequip": "Удержать <%= twoHandedText %> возможно только двумя руками, поэтому его пришлось положить, когда вы вооружились <%= offHandedText %>.", - "messageDropFood": "Вы нашли <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Вы нашли <%= dropText %> в яйце!", "messageDropPotion": "Вы нашли <%= dropText %>инкубационный эликсир!", "messageDropQuest": "Вы нашли квест!", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "Вы и так полностью здоровы.", "messageHealthAlreadyMin": "О, нет! У вас закончилось здоровье, так что уже слишком поздно покупать эликсир, но не беспокойтесь - вы можете воскреснуть!", "armoireEquipment": "<%= image %> Вы нашли в сундуке редкий предмет: <%= dropText %>! Потрясающе!", - "armoireFood": "<%= image %> Копаясь в сундуке, вы что-то находите. Откуда здесь <%= dropText %>?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "Вы сражаетесь с сундуком и набираете опыт. Получай!", "messageInsufficientGems": "Недостаточно самоцветов!", "messageAuthPasswordMustMatch": ":password и :confirmPassword не совпадают", diff --git a/website/common/locales/ru/pets.json b/website/common/locales/ru/pets.json index 3202b43676..85370d1d94 100644 --- a/website/common/locales/ru/pets.json +++ b/website/common/locales/ru/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "У вас нет этого питомца.", "mountNotOwned": "Вы не являетесь владельцем этого скакуна.", "earnedCompanion": "Вы были так продуктивны, что заработали нового спутника. Кормите его, чтобы он вырос!", - "feedPet": "Скормить <%= text %> вашему питомцу: <%= name %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Оседлать питомца: <%= pet %>?", "raisedPet": "У вас вырос(ла) <%= pet %>!", "earnedSteed": "Завершая свои задания, вы заработали верного скакуна!", diff --git a/website/common/locales/ru/subscriber.json b/website/common/locales/ru/subscriber.json index f91e3e3d64..d901bf5cf5 100644 --- a/website/common/locales/ru/subscriber.json +++ b/website/common/locales/ru/subscriber.json @@ -192,14 +192,14 @@ "gemBenefit1": "Уникальные и стильные костюмы для вашего аватара", "gemBenefit2": "Фоны для вовлечения Вашего аватара в страну Habitica!", "gemBenefit3": "Exciting Quest chains that drop pet eggs.", - "gemBenefit4": "Reset your avatar's Stat Points and change its Class.", + "gemBenefit4": "Сбросьте распределение очков аватара и поменяйте класс", "subscriptionBenefitLeadin": "Станьте подписчиком, и вы получите следующие преимущества:", "subscriptionBenefit1": "торговец Александр продаст Вам самоцветы по 20 золота за каждый", "subscriptionBenefit2": "Выполненные задачи хранятся дольше.", - "subscriptionBenefit3": "Discover more items in Habitica with a doubled daily drop cap.", - "subscriptionBenefit4": "Unique cosmetic items for your avatar each month.", + "subscriptionBenefit3": "Откройте для себя больше предметов в Habitica с удвоением суточного выпадения трофеев.", + "subscriptionBenefit4": "Уникальные косметические предметы для вашего аватара каждый месяц.", "subscriptionBenefit5": "Получите эксклюзивного Королевского пурпурного Джекалопа", - "subscriptionBenefit6": "Earn Mystic Hourglasses for use in the Time Travelers' Shop!", + "subscriptionBenefit6": "Зарабатывайте Мистические песочные часы для использования в магазине Путешественников во времени!", "haveCouponCode": "У вас есть код купона?", "subscriptionAlreadySubscribedLeadIn": "Спасибо за подписку!", "subscriptionAlreadySubscribed1": "To see your subscription details and cancel, renew, or change your subscription, please go to User icon > Settings > Subscription.", diff --git a/website/common/locales/ru/tasks.json b/website/common/locales/ru/tasks.json index 23cb9fa63c..a8790c8991 100644 --- a/website/common/locales/ru/tasks.json +++ b/website/common/locales/ru/tasks.json @@ -106,7 +106,7 @@ "startDateHelp": "Задайте дату, в этот день задание вступит в силу. До этого оно будет необязательным.", "streaks": "Достижения серии", "streakName": "<%= count %> достижения серии", - "streakText": "Количество серий выполненных подряд ежедневных заданий, достигших 21 дня: <%= count %>.", + "streakText": "Количество серий выполненных подряд ежедневных заданий, достигших 21 дня: <%= count %>", "streakSingular": "Серии", "streakSingularText": "Достигнута 21-дневная серия для ежедневного задания", "perfectName": "<%= count %> идеальных дней", diff --git a/website/common/locales/sk/content.json b/website/common/locales/sk/content.json index 75a636e21c..8835a6324b 100644 --- a/website/common/locales/sk/content.json +++ b/website/common/locales/sk/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Vylej tento elixír na vajíčko a vyliahne sa z neho <%= potText(locale) %> zvieratko.", "premiumPotionAddlNotes": "Nedá sa použiť na vajíčka zvieratiek z výprav.", "foodMeat": "Mäso", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Mlieko", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Zemiak", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Jahoda", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Čokoláda", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Ryba", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Zhnité mäso", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Ružová cukrová vata", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Modrá cukrová vata", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Med", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Koláč z holých kostí", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Základný koláč", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Modrý koláč", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Ružový koláč", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Čokoládový koláč", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Smotanový koláč", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Medový koláč", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Zhnitý koláč", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Pieskový koláč", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Jahodový koláč", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Kostnatý cukrík", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Základný cukrík", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Modrý kyslý cukrík", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Ružový kyslý cukrík", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Čokoládový cukrík", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vanilkový cukrík", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Medový cukrík", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Zhnitý cukrík", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Pieskový cukrí", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Škoricový cukrík", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Sedlo", "foodSaddleNotes": "Ihneď vychová z tvojho zvieratka tátoša.", "foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?", diff --git a/website/common/locales/sk/gear.json b/website/common/locales/sk/gear.json index a107f17528..141916ebee 100644 --- a/website/common/locales/sk/gear.json +++ b/website/common/locales/sk/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "Lyžossassinská palica", "weaponSpecialSkiNotes": "Zbraň schopná ničiť davy nepriateľov! Pomáha tiež robiť veľmi pekné oblúčiky. Zvyšuje silu o <%= str %>. Limitovaná Edícia 2013-2014 Zimná Výbava.", "weaponSpecialCandycaneText": "Lízatková palica", - "weaponSpecialCandycaneNotes": "Mocná čarodejná palica. Mocne LAHODNÁ, samozrejme! Obojručná zbraň. Zvyšuje inteligenciu o <%= int %> a postreh o <%= per %>. Limitovaná Edícia 2013-2014 Zimná Výbava.", + "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ý prútik", "weaponSpecialSnowflakeNotes": "Tento prútik sa ligoce nezmernou liečebnou silou. Zvyšuje inteligenciu o <%= int %>. Limitovaná Edícia 2013-2014 Zimná Výbava.", "weaponSpecialSpringRogueText": "Hákové pazúre", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/sk/generic.json b/website/common/locales/sk/generic.json index 2adb2a1405..a2a1296a2d 100644 --- a/website/common/locales/sk/generic.json +++ b/website/common/locales/sk/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Pomohol poraziť Be-Wildera počas Udalosti jarnej rozcvičky 2016!", "checkOutProgress": "Pozrieť si môj postup v Habitike!", "cards": "Cards", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Pozdrav", "greetingCardExplanation": "Obaja získavate odznak Čerešňový kamarát!", diff --git a/website/common/locales/sk/messages.json b/website/common/locales/sk/messages.json index 47a035e63c..fdf6c5c4f5 100644 --- a/website/common/locales/sk/messages.json +++ b/website/common/locales/sk/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Toto zvieratko nemôžeš nakŕmiť.", "messageAlreadyMount": "Takého tátoša už máš. Skús nakŕmiť iné zvieratko.", "messageEvolve": "Skrotil si si <%= egg %>, vezmi ho na jazdu!", - "messageLikesFood": "<%= egg %> si pochutnalo na <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> zjedlo <%= foodText %>, ale veľmi mu to nechutí.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Kúpené: <%= itemText %>", "messageEquipped": "<%= itemText %> - vo výbave.", "messageUnEquipped": "<%= itemText %> odložený/á/é.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Nemáš dosť zlata", "messageTwoHandedEquip": "Používanie <%= twoHandedText %> si vyžeduje obe ruky, takže <%= offHandedText %> bol odložený.", "messageTwoHandedUnequip": "Používanie <%= twoHandedText %> si vyžaduje obe ruky, takže bol odložený, keď si sa vybavil predmetom <%= offHandedText %>.", - "messageDropFood": "You've found <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "You've found a <%= dropText %> Egg!", "messageDropPotion": "You've found a <%= dropText %> Hatching Potion!", "messageDropQuest": "Našiel si výpravu!", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "Už máš maximum zdravia.", "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 %> Našiel si časť vzácneho výstroja v skrini: <%= dropText %>! Úžasné!", - "armoireFood": "<%= image %> Prehrabával si sa v skrini a našiel si <%= dropArticle %><%= dropText %>. Čo to tam robí?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "Zápasil si so skriňou a získal si skúsenosti. Tu máš!", "messageInsufficientGems": "Nemáš dostatok drahokamov!", "messageAuthPasswordMustMatch": ":heslo a :potvrďHeslo sa nezhodujú", diff --git a/website/common/locales/sk/pets.json b/website/common/locales/sk/pets.json index a7e538c609..ceec15615f 100644 --- a/website/common/locales/sk/pets.json +++ b/website/common/locales/sk/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Nevlastníš toto zvieratko.", "mountNotOwned": "Nevlastníš tohto tátoša.", "earnedCompanion": "Vďaka tvojej produktivite si získal nového spoločníka. Nakŕm ho, aby vyrástol!", - "feedPet": "Chceš nakŕmiť toto zvieratko: <%= name %> týmto: <%= article %><%= text %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Chceš osedlať toto zvieratko: <%= pet %>?", "raisedPet": "You grew your <%= pet %>!", "earnedSteed": "Plnením tvojich úloh si získal verného tátoša!", diff --git a/website/common/locales/sr/content.json b/website/common/locales/sr/content.json index d9cd958c82..b1165f30d6 100644 --- a/website/common/locales/sr/content.json +++ b/website/common/locales/sr/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Pospite ovo po jajetu, i iz njega će se izleći <%= potText(locale) %> ljubimac.", "premiumPotionAddlNotes": "Not usable on quest pet eggs.", "foodMeat": "Meso", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Mleko", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Krompir", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Jagoda", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Čokolada", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Riba", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Trulo meso", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Roza šećerna vuna", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Plava šećerna vuna", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Med", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Torta od kostiju", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Obična torta", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Plava torta", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Roza torta", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Čokoladna torta", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Krem torta", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Medena torta", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Trula torta", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Peščana torta", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Torta od jagode", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Koštana bombona", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Obična bombona", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Kisela plava bombona", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Kisela roza bombona", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Čokoladna bombona", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vanila bombona", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Medena bombona", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Trula bombona", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Peščana bombona", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Cimet bombona", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Sedlo", "foodSaddleNotes": "Pretvara Vašeg ljubimca u životinju za jahanje.", "foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?", diff --git a/website/common/locales/sr/gear.json b/website/common/locales/sr/gear.json index b2e0c35a2a..4c17a57141 100644 --- a/website/common/locales/sr/gear.json +++ b/website/common/locales/sr/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "Skijaška motka", "weaponSpecialSkiNotes": "Oružje koje može da uništi horde neprijatelja. Takođe pomaže pri skijanju. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2013/14.", "weaponSpecialCandycaneText": "Šećerna motka", - "weaponSpecialCandycaneNotes": "Motka moćnog čarobnjaka. I moćnog ukusa! Dvoručno oružje. Povećava Inteligenciju za <%= int %> i Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2013/14.", + "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": "Snežni štapić", "weaponSpecialSnowflakeNotes": "Iz ovog štapića isijava neograničena moć lečenja. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2013/14.", "weaponSpecialSpringRogueText": "Kukaste kandže", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/sr/generic.json b/website/common/locales/sr/generic.json index c0800578c9..c377f5ed7c 100644 --- a/website/common/locales/sr/generic.json +++ b/website/common/locales/sr/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Check out my progress in Habitica!", "cards": "Cards", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Pozdravna karta", "greetingCardExplanation": "You both receive the Cheery Chum achievement!", diff --git a/website/common/locales/sr/messages.json b/website/common/locales/sr/messages.json index f25447f359..8037c7a5c9 100644 --- a/website/common/locales/sr/messages.json +++ b/website/common/locales/sr/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Ovu zver nije moguće hraniti.", "messageAlreadyMount": "Već imate takvu zver za jahanje. Hranite neku drugu zver.", "messageEvolve": "Ukrotili ste <%= egg %>, idemo na jahanje!", - "messageLikesFood": "<%= egg %> je veoma zadovoljan/na hranom <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> ne odbija <%= foodText %>, ali izgleda da je ne voli.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Predmet <%= itemText %> kupljen", "messageEquipped": "Predmet <%= itemText %> postavljen.", "messageUnEquipped": "<%= itemText %> unequipped.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Nemate dovoljno zlata.", "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 %>.", - "messageDropFood": "You've found <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "You've found a <%= dropText %> Egg!", "messageDropPotion": "You've found a <%= dropText %> Hatching Potion!", "messageDropQuest": "Našli ste misiju!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Not enough gems!", "messageAuthPasswordMustMatch": ":password and :confirmPassword don't match", diff --git a/website/common/locales/sr/pets.json b/website/common/locales/sr/pets.json index f6e0946cbe..a7312a56f5 100644 --- a/website/common/locales/sr/pets.json +++ b/website/common/locales/sr/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Ne posedujete ovog ljubimca.", "mountNotOwned": "You do not own this mount.", "earnedCompanion": "Svojom produktivnošću, zaradili ste novog pratioca. Hranite ga da bi porastao!", - "feedPet": "Želite li da <%= name %> pojede <%= article %><%= text %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Staviti sedlo na <%= pet %>?", "raisedPet": "You grew your <%= pet %>!", "earnedSteed": "Odrađujući svoje zadatke, zaradili ste vernog konja!", diff --git a/website/common/locales/sv/content.json b/website/common/locales/sv/content.json index 586e20da25..b0e36e96fb 100644 --- a/website/common/locales/sv/content.json +++ b/website/common/locales/sv/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Häll den här på ett ägg, så kläcks det som ett <%= potText(locale) %> husdjur.", "premiumPotionAddlNotes": "Kan ej användas på ägg till uppdragshusdjur", "foodMeat": "Kött", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Mjölk", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Potatis", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Jordgubbe", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Choklad", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Fisk", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Ruttet kött", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Rosa sockervadd", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Blå sockervadd", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Honung", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Bentårta", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Enkel tårta", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Ljusblå tårta", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Ljusrosa tårta", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Chokladtårta", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Gräddtårta", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Honungskaka", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Rutten kaka", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Sandkaka", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Jordgubbskaka", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Bengodis", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Standardgodis", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Sur Blå Godisbit", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Sur Rosa Godisbit", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Chokladgodis", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vaniljgodis", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Honungsgodis", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Ruttet Godis", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Sandgodis", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Kanelgodis", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Sadel", "foodSaddleNotes": "Gör direkt ett av dina husdjur till springare.", "foodSaddleSellWarningNote": "Hallå! Detta är ett ganska användbart föremål! Är du bekant med hur man använder en Sadel på dina Husdjur?", diff --git a/website/common/locales/sv/gear.json b/website/common/locales/sv/gear.json index ffe0216615..b3ce78b571 100644 --- a/website/common/locales/sv/gear.json +++ b/website/common/locales/sv/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "Skid-ninja stav", "weaponSpecialSkiNotes": "Ett vapen som är kapabelt till att förinta horder med fiender! Det hjälper också dess användare att göra väldigt schyssta parallella vändningar. Ökar styrka med <%= str %>. Begränsad utgåva av Vinterutrustning 2013-2014.", "weaponSpecialCandycaneText": "Polkagrisstav", - "weaponSpecialCandycaneNotes": "En kraftfull magikers stav. Kraftfullt SMASKIGT, menar vi! Två-hänt vapen. Ökar intelligens med <%= int %> och uppmärksamhet med <%= per %>. Begränsad utgåva av Vinterutrustning 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": "Snöflingsstav", "weaponSpecialSnowflakeNotes": "Denna stav gnistrar med en obegränsad helande kraft. Ökar intelligens med <%= int %>. Begränsad utgåva av Vinterutrustning 2013-2014.", "weaponSpecialSpringRogueText": "Krokklor", @@ -1461,5 +1461,6 @@ "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.", "eyewearArmoirePlagueDoctorMaskText": "Pestdoktorns Mask", - "eyewearArmoirePlagueDoctorMaskNotes": "En äkta mask som bärdes av doktorer som slogs mot Pesten av Uppskjutningar. Ger ingen fördel. Förtrollad Kista: Pestläkar-set (Objekt 2 av 3)." + "eyewearArmoirePlagueDoctorMaskNotes": "En äkta mask som bärdes av doktorer som slogs mot Pesten av Uppskjutningar. Ger ingen fördel. Förtrollad Kista: Pestläkar-set (Objekt 2 av 3).", + "twoHandedItem": "Two-handed item." } \ No newline at end of file diff --git a/website/common/locales/sv/generic.json b/website/common/locales/sv/generic.json index 43fa5952ac..53fa7ec6b2 100644 --- a/website/common/locales/sv/generic.json +++ b/website/common/locales/sv/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Hjälpte till att besegra Förvildaren under våren 2016.", "checkOutProgress": "Kolla mina framsteg i Habitica!", "cards": "Kort", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Hälsningskort", "greetingCardExplanation": "Ni får båda en Lycklig Lirare-bedrift!", diff --git a/website/common/locales/sv/messages.json b/website/common/locales/sv/messages.json index c942076790..9e70390c6d 100644 --- a/website/common/locales/sv/messages.json +++ b/website/common/locales/sv/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Kan inte mata detta husdjur.", "messageAlreadyMount": "Du har redan det riddjuret. Försök att mata ett annat djur.", "messageEvolve": "Du har tämjt <%= egg %>. Ta en ridtur!", - "messageLikesFood": "<%= egg %> gillar verkligen <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> äter <%= foodText %> men ser inte ut att gilla det.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Köpt <%= itemText %>", "messageEquipped": "<%= itemText %> pårustad.", "messageUnEquipped": "Tog av <%= itemText %>.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Inte tillräckligt med Guld", "messageTwoHandedEquip": "Att använda <%= twoHandedText %> kräver två händer, så <%= offHandedText %> har tagits av. ", "messageTwoHandedUnequip": "Att använda <%= twoHandedText %> kräver två händer, så den togs av när du utrustade dig med <%= offHandedText %>.", - "messageDropFood": "Du har hittat <%= dropArticle %> <%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Du har hittat ett <%= dropText %> Ägg!", "messageDropPotion": "Du har hittat en <%= dropText %> Kläckningsdryck!", "messageDropQuest": "Du har hittat ett uppdrag!", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "Du har redan maximal hälsa.", "messageHealthAlreadyMin": "Åh nej! Din hälsa har redan tagit slut, så det är försent att köpa en Hälsodryck. Men oroa dig inte - du kan återuppliva dig själv!", "armoireEquipment": "<%= image %> Du hittade en bit sällsynt utrustning i vapenskåpet: <%= dropText %>! Grymt!", - "armoireFood": "<%= image %> Du rotar igenom vapenskåpet och hittar <%= dropArticle %><%= dropText %>. Vad gör den här?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "Du brottas med vapenskåpet och tjänar erfarenhet. Ta det! ", "messageInsufficientGems": "Inte tillräckligt med juveler!", "messageAuthPasswordMustMatch": ":password och :confirmPassword matchar inte", diff --git a/website/common/locales/sv/pets.json b/website/common/locales/sv/pets.json index 958cddad21..000c6c7f23 100644 --- a/website/common/locales/sv/pets.json +++ b/website/common/locales/sv/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Du har inte detta husdjur.", "mountNotOwned": "Du äger inte detta riddjur", "earnedCompanion": "All din produktivitet har gett dig en ny kompanjon. Mata den så att den växer!", - "feedPet": "Mata <%= article %><%= text %> till din <%= name %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Sadla <%= pet %>?", "raisedPet": "Du födde upp en <%= pet %>!", "earnedSteed": "Genom att genomföra dina uppgifter har du fått en trogen springare!", diff --git a/website/common/locales/tr/content.json b/website/common/locales/tr/content.json index 5e8bd174e2..df0e48f72f 100644 --- a/website/common/locales/tr/content.json +++ b/website/common/locales/tr/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Bunu yumurtanın üstüne döktüğünde <%= potText(locale) %> türünde bir hayvan çıkacak.", "premiumPotionAddlNotes": "Görev yumurtalarıyla kullanılamaz.", "foodMeat": "Et", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Süt", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Patates", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Çilek", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Çikolata", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Balık", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Çürük Et", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Pembe Pamuk Şeker", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Mavi Pamuk Şeker", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Bal", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Kemik Kek", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Sade Kek", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Mavi Şekerli Kek", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Pembe Şekerli Kek", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Çikolatalı Kek", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Kremalı Kek", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Ballı Kek", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Çürük Kek", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Kumdan Kek", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Çilekli Kek", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Kemik Şeker", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Sade Şeker", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Ekşi Mavi Şeker", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Ekşi Pembe Şeker", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Çikolatalı Şeker", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Vanilyalı Şeker", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Ballı Şeker", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Çürük Şeker", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Kumdan Şeker", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Tarçınlı Şeker", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Eyer", "foodSaddleNotes": "Hayvanlarından birini anında bir bineğe dönüştürür.", "foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?", diff --git a/website/common/locales/tr/gear.json b/website/common/locales/tr/gear.json index a346df7410..5ec8242dcc 100644 --- a/website/common/locales/tr/gear.json +++ b/website/common/locales/tr/gear.json @@ -3,7 +3,7 @@ "equipmentType": "Tür", "klass": "Sınıf", "groupBy": "<%= type %> Farkına Göre Gruplandır", - "classBonus": "(This item matches your class, so it gets an additional 1.5 Stat multiplier.)", + "classBonus": "(Bu eşya karakter sınıfın ile uyumlu olduğu için Nitelik Değerleri 1.5 katına çıkar.)", "classArmor": "Sınıf Zırhı", "featuredset": "Featured Set <%= name %>", "mysterySets": "Gizemli Setler", @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "Sui-kay-st Sopası", "weaponSpecialSkiNotes": "Yığınla düşmanı haklayabilen bir silah! Kullananın çok iyi paralel dönüşler yapmasına da yardımcı olur. Gücü <%= str %> puan arttırır. Sınırlı Sürüm 2013-2014 Kış Ekipmanı.", "weaponSpecialCandycaneText": "Baston Şeker Asası", - "weaponSpecialCandycaneNotes": "Güçlü bir büyücü asası. Güçlü bir biçimde LEZZETLİ, demek istemiştik! Çift elli silah. Zekayı <%= int %> ve Sezgiyi <%= per %> puan arttırır. Sınırlı Sürüm 2013-2014 Kış Ekipmanı.", + "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": "Kar Tanesi Asası", "weaponSpecialSnowflakeNotes": "Bu değnek sınırsız şifa gücü ile ışıldar. Zekayı <%= int %> puan arttırır. Sınırlı Sürüm 2013-2014 Kış Ekipmanı.", "weaponSpecialSpringRogueText": "Kanca Pençesi", @@ -1461,5 +1461,6 @@ "eyewearMystery301703Text": "Tavuskuşu Maskesi", "eyewearMystery301703Notes": "Süslü bir maskeli balo için ya da iyi giyimli bir kalabalığın içinden görünmeden ilerlemek için uygundur. Bir fayda sağlamaz. Mart 3017 Abone Eşyası.", "eyewearArmoirePlagueDoctorMaskText": "Veba Doktoru Maskesi", - "eyewearArmoirePlagueDoctorMaskNotes": "Ağırdan Alma Vebası ile savaşmış doktorlar tarafından giyilmiş, otantik bir maske. Bir fayda sağlamaz. Efsunlu Gardırop: Veba Doktoru Seti (3 Eşyadan 2'ncisi)." + "eyewearArmoirePlagueDoctorMaskNotes": "Ağırdan Alma Vebası ile savaşmış doktorlar tarafından giyilmiş, otantik bir maske. Bir fayda sağlamaz. Efsunlu Gardırop: Veba Doktoru Seti (3 Eşyadan 2'ncisi).", + "twoHandedItem": "Two-handed item." } \ No newline at end of file diff --git a/website/common/locales/tr/generic.json b/website/common/locales/tr/generic.json index 9b21aae5cd..bf2b33f8ba 100644 --- a/website/common/locales/tr/generic.json +++ b/website/common/locales/tr/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "2016 Bahar Şenliği Etkinliği sırasında Şaşkhoroz'u yenmeye yardım etti!", "checkOutProgress": "Habitica'daki gelişimimi görüntüle!", "cards": "Kartlar", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Selamlama Kartı", "greetingCardExplanation": "İkiniz de Şen Dost başarısını kazandınız!", diff --git a/website/common/locales/tr/messages.json b/website/common/locales/tr/messages.json index f3bfa691b3..092128158b 100644 --- a/website/common/locales/tr/messages.json +++ b/website/common/locales/tr/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Bu hayvanı besleyemezsin.", "messageAlreadyMount": "Bu bineğe zaten sahipsin. Başka bir hayvanı beslemeyi dene.", "messageEvolve": "<%= egg %> yetiştirildi, haydi biraz dolaşalım!", - "messageLikesFood": "<%= egg %> gerçekten de <%= foodText %> seviyor!", - "messageDontEnjoyFood": "<%= egg %>, <%= foodText %> yedi ama tadını beğenmiş gibi durmuyor.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "<%= itemText %> satın alındı", "messageEquipped": "<%= itemText %> kuşanıldı.", "messageUnEquipped": "<%= itemText %> çıkartıldı.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Yetersiz Altın", "messageTwoHandedEquip": "<%= twoHandedText %> iki elle tutulabilir, bu yüzden <%= offHandedText %> bırakıldı.", "messageTwoHandedUnequip": "<%= twoHandedText %> iki elle tutulabilir, bu yüzden <%= offHandedText %> kuşanıldığı için bırakıldı.", - "messageDropFood": "<%= dropArticle %><%= dropText %> buldun!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "Bir <%= dropText %> yumurtası buldun.", "messageDropPotion": "<%= dropText %> kuluçka iksiri buldun!", "messageDropQuest": "Bir görev buldun!", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "Zaten maksimum sağlığa sahipsin.", "messageHealthAlreadyMin": "Oh hayır! Sağlığını yitirdin, ve sağlık iksiri satın almak için artık çok geç, ama endişelenmeyin - kendinizi canlandırabilirsiniz!", "armoireEquipment": "<%= image %> Efsunlu Gardıropta nadide bir ekipman buldun: <%= dropText %>! Muhteşem!", - "armoireFood": "<%= image %> Efsunlu Gardırobu karıştırırken bir <%= dropArticle %><%= dropText %> buldun. Ne işi varmış onun orada?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "Efsunlu Gardırop ile güreş tuttun ve Tecrübe kazandın. Oh olsun!", "messageInsufficientGems": "Yeteri kadar elmasın yok!", "messageAuthPasswordMustMatch": ":password ve :confirmPassword uyuşmuyor", diff --git a/website/common/locales/tr/pets.json b/website/common/locales/tr/pets.json index 893a8bb9d4..24f8032460 100644 --- a/website/common/locales/tr/pets.json +++ b/website/common/locales/tr/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "Bu hayvana sahip değilsin.", "mountNotOwned": "Bu bineğe sahip değilsin.", "earnedCompanion": "Tüm üretkenliğinin sonucunda yeni bir yol arkadaşı kazandın. Onu besle ki büyüsün!", - "feedPet": "<%= name %>, <%= article %><%= text %> ile beslensin mi?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "<%= pet %> üzerinde eyer kullanılsın mı?", "raisedPet": "Bir <%= pet %> yetiştirdin!", "earnedSteed": "İşlerini tamamlayarak sadık bir binek kazandın!", diff --git a/website/common/locales/tr/tasks.json b/website/common/locales/tr/tasks.json index a735a1eff8..8f69cdc20c 100644 --- a/website/common/locales/tr/tasks.json +++ b/website/common/locales/tr/tasks.json @@ -1,8 +1,8 @@ { "clearCompleted": "Tamamlanmışları Sil", "clearCompletedDescription": "Completed To-Dos are deleted after 30 days for non-subscribers and 90 days for subscribers.", - "clearCompletedConfirm": "Are you sure you want to delete your completed To-Dos?", - "sureDeleteCompletedTodos": "Are you sure you want to delete your completed To-Dos?", + "clearCompletedConfirm": "Tamamlanmış Yapılacak iİlerini silmek istediğine emin misin?", + "sureDeleteCompletedTodos": "Tamamlanmış Yapılacak iİlerini silmek istediğine emin misin?", "lotOfToDos": "En son tamamladığın 30 Yapılacak İş burada gösterilir. Tamamlanan Yapılacak İşlerin daha eskilerini Veri > Veri Görüntüleme Aracı veya Veri > Veriyi Dışa Aktar > Kullanıcı Verisi sekmelerinden görebilirsin.", "deleteToDosExplanation": "Aşağıdaki düğmeye tıkladığında, Grup Planları ve aktif mücadele Yapılacakları dışında, tamamlanmış tüm Yapılacaklar ve arşivlenmiş Yapılacaklar kalıcı olarak silinecektir. Eğer bir kopya saklamak istersen öncelikle bunları dışa aktar.", "addMultipleTip": "öneri Birden fazla iş eklemek için her birini aralarında (Shift+Enter) a basarak yazıp sonra Enter a basarak ekliyebilirsin", diff --git a/website/common/locales/uk/content.json b/website/common/locales/uk/content.json index aa9b719237..6c59ed3ef6 100644 --- a/website/common/locales/uk/content.json +++ b/website/common/locales/uk/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "Вилийте це на яйце, і з нього вилупиться улюбленець<%= potText(locale) %>.", "premiumPotionAddlNotes": "Неможливо використати на квестових яйцях з улюбленцями.", "foodMeat": "М'ясо", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "Молоко", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "Картопля", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "Полуниця", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "Шоколад", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "Риба", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "Гниле м'ясо", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "Рожева цукровата", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "Синя цукровата", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "Мед", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "Кістковий пиріг", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "Просто пиріг", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "Синій цукерковий пиріг", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "Рожевий цукерковий пиріг", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "Шоколадний пиріг", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "Вершковий пиріг", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "Медовий пиріг", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "Зіпсутий пиріг", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "Піщаний пиріг", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "Полуничний торт", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "Кістяний цукерок", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "Простий цукерок", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "Кислий синій цукерок", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "Кислий рожевий цукерок", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "Шоколадний цукерок", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "Ванільний цукерок", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "Медовий цукерок", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "Зіпсутий цукерок", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "Піщаний цукерок", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Коричневий цукерок", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "Сідло", "foodSaddleNotes": "Миттєво перетворює улюбленця на скакуна.", "foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?", diff --git a/website/common/locales/uk/gear.json b/website/common/locales/uk/gear.json index 69e4330e57..6ac3796af2 100644 --- a/website/common/locales/uk/gear.json +++ b/website/common/locales/uk/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "Палка лижника-вбивці", "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": "Карамельна патериця", - "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": "Паличка \"Сніжинка\"", "weaponSpecialSnowflakeNotes": "This wand sparkles with unlimited healing power. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.", "weaponSpecialSpringRogueText": "Бойові кігті", @@ -1461,5 +1461,6 @@ "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.", "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." } \ No newline at end of file diff --git a/website/common/locales/uk/generic.json b/website/common/locales/uk/generic.json index 9f4c84e7cc..9280a5052e 100644 --- a/website/common/locales/uk/generic.json +++ b/website/common/locales/uk/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "Check out my progress in Habitica!", "cards": "Cards", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "Вітальна листівка", "greetingCardExplanation": "You both receive the Cheery Chum achievement!", diff --git a/website/common/locales/uk/messages.json b/website/common/locales/uk/messages.json index aabc266c17..bafe94e252 100644 --- a/website/common/locales/uk/messages.json +++ b/website/common/locales/uk/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "Цього улюбленця не можна годувати.", "messageAlreadyMount": "У Вас уже є такий скакун. Погодуйте-но іншого улюбленця.", "messageEvolve": "Ви приборкали <%= egg %>, давайте кататися верхи!", - "messageLikesFood": "<%= egg %> дійсно любить <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> їсть <%= foodText %> , але без особливого задоволення.", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Придбано <%= itemText %>", "messageEquipped": "<%= itemText %> споряджено.", "messageUnEquipped": "<%= itemText %> unequipped.", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "Замало золота", "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 %>.", - "messageDropFood": "You've found <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "You've found a <%= dropText %> Egg!", "messageDropPotion": "You've found a <%= dropText %> Hatching Potion!", "messageDropQuest": "You've found a quest!", @@ -33,7 +33,7 @@ "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!", "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!", "messageInsufficientGems": "Not enough gems!", "messageAuthPasswordMustMatch": ":password and :confirmPassword don't match", diff --git a/website/common/locales/uk/pets.json b/website/common/locales/uk/pets.json index 24f2b330e0..2243f9f7a7 100644 --- a/website/common/locales/uk/pets.json +++ b/website/common/locales/uk/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "You do not own this pet.", "mountNotOwned": "You do not own this mount.", "earnedCompanion": "With all your productivity, you've earned a new companion. Feed it to make it grow!", - "feedPet": "Згодувати <%= article %><%= text %> Вашому <%= name %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "Осідлати <%= pet %>?", "raisedPet": "You grew your <%= pet %>!", "earnedSteed": "By completing your tasks, you've earned a faithful steed!", diff --git a/website/common/locales/zh/content.json b/website/common/locales/zh/content.json index 477cb691e2..e46709d324 100644 --- a/website/common/locales/zh/content.json +++ b/website/common/locales/zh/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "把它倒在宠物蛋上可以孵化出一只<%= potText(locale) %>宠物。", "premiumPotionAddlNotes": "无法在任务奖励宠物蛋上使用", "foodMeat": "肉", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "牛奶", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "土豆", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "草莓", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "巧克力", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "鱼", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "腐肉", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "粉色棉花糖", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "蓝色棉花糖", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "蜂蜜", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "骨骼蛋糕", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "基本蛋糕", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "蓝色棉花糖蛋糕", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "粉色棉花糖蛋糕", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "巧克力蛋糕", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "忌廉蛋糕", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "蜂蜜蛋糕", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "腐朽蛋糕", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "沙蛋糕", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "草莓蛋糕", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "骨骼糖果", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "普通糖果", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "酸味藍色糖果", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "酸味粉色糖果", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "巧克力糖", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "香草糖果", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "蜂蜜糖果", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "腐朽糖果", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "砂糖", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "肉桂糖", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "鞍", "foodSaddleNotes": "即时把你的一只宠物变成坐骑。", "foodSaddleSellWarningNote": "嗨! 這是個有用的用品啊! 你知道怎样去把鞍用在你的寵物上嗎?", diff --git a/website/common/locales/zh/gear.json b/website/common/locales/zh/gear.json index 9553fa672b..85934b9a94 100644 --- a/website/common/locales/zh/gear.json +++ b/website/common/locales/zh/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "滑雪刺客杖", "weaponSpecialSkiNotes": "该武器能够消灭成群的敌人!同时,它还能帮助玩家进行很好的双板平行转弯。增加<%= str %>力量。2013-2014冬季装备限量版。", "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": "雪花魔杖", "weaponSpecialSnowflakeNotes": "这把魔杖闪耀着无限的治疗之力。增加<%= int %>点智力。2013-2014冬季限量版装备。", "weaponSpecialSpringRogueText": "钩爪", @@ -1461,5 +1461,6 @@ "eyewearMystery301703Text": "孔雀化妆舞会面具", "eyewearMystery301703Notes": "完美适配美妙的化妆舞会,或者静悄悄地穿过那些特别讲究穿着的人群。没有属性加成。3017年三月捐赠者礼品。", "eyewearArmoirePlagueDoctorMaskText": "瘟疫医生面具", - "eyewearArmoirePlagueDoctorMaskNotes": "防治延迟瘟疫的医生袋的地道面具。没有属性加成。魔法衣橱: 瘟疫医生系列 (3件的第2件)。" + "eyewearArmoirePlagueDoctorMaskNotes": "防治延迟瘟疫的医生袋的地道面具。没有属性加成。魔法衣橱: 瘟疫医生系列 (3件的第2件)。", + "twoHandedItem": "Two-handed item." } \ No newline at end of file diff --git a/website/common/locales/zh/generic.json b/website/common/locales/zh/generic.json index fda73877c9..9379d9947b 100644 --- a/website/common/locales/zh/generic.json +++ b/website/common/locales/zh/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "在2016年春季嘉年华事件中协助战胜迷失怪!", "checkOutProgress": "看一下我在Habitica的进步!", "cards": "卡片", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "祝贺卡", "greetingCardExplanation": "你们两个人都获得了“欢乐伙伴”成就!", diff --git a/website/common/locales/zh/messages.json b/website/common/locales/zh/messages.json index abe737decf..0e121e5849 100644 --- a/website/common/locales/zh/messages.json +++ b/website/common/locales/zh/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "不能喂这只宠物。", "messageAlreadyMount": "你已经有这个坐骑了。请喂另一只宠物。", "messageEvolve": "你驯养了<%= egg %>,去骑几圈吧!", - "messageLikesFood": "<%= egg %> 很喜欢你给的<%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %>吃了<%= foodText %>,但似乎不是很喜欢。", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "购买了 <%= itemText %>", "messageEquipped": "装备了<%= itemText %>", "messageUnEquipped": "<%= itemText %>未装备。", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "金币不够", "messageTwoHandedEquip": " <%= twoHandedText %> 是双手武器,所以 <%= offHandedText %> 被卸下了。", "messageTwoHandedUnequip": " <%= twoHandedText %> 是双手武器,所以 当你装备<%= offHandedText %>时, <%= twoHandedText %> 被卸下了。", - "messageDropFood": "你找到了 <%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "你找到了一个 <%= dropText %>蛋!", "messageDropPotion": "你找到了一瓶<%= dropText %>孵化药水!", "messageDropQuest": "你找到一个任务!", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "你的体力已经达到最大值。", "messageHealthAlreadyMin": "哦不!你耗光了生命值,而且吃药也来不及了,不过别担心——你能复活!", "armoireEquipment": "<%= image %> 你发现了一件稀有装备!恭喜你 <%= dropText %>! ", - "armoireFood": "<%= image %> 你找到了 <%= dropArticle %><%= dropText %>. 它是用来做什么的?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "你和大衣柜展开了殊死搏斗,并赢得了经验,尝尝这个吧!", "messageInsufficientGems": "宝石不够了!", "messageAuthPasswordMustMatch": "密码不匹配", diff --git a/website/common/locales/zh/pets.json b/website/common/locales/zh/pets.json index 6891fd9218..37e6e56b2d 100644 --- a/website/common/locales/zh/pets.json +++ b/website/common/locales/zh/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "你没有拥有这个宠物。", "mountNotOwned": "您还未拥有这一坐骑", "earnedCompanion": "因为你的不懈努力,你又获得了一个新的伙伴,好好喂养它,让它成长!", - "feedPet": "喂你的<%= name %>一个<%= article %><%= text %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "把鞍用在<%= pet %>上?", "raisedPet": "你让你的<%= pet %>长大了!", "earnedSteed": "通过完成你的任务,你获得了一匹忠诚的坐骑!", diff --git a/website/common/locales/zh_TW/content.json b/website/common/locales/zh_TW/content.json index 136fdc45df..abb0780221 100644 --- a/website/common/locales/zh_TW/content.json +++ b/website/common/locales/zh_TW/content.json @@ -194,35 +194,95 @@ "hatchingPotionNotes": "把它倒在寵物蛋上可以孵化出一隻<%= potText(locale) %>寵物。", "premiumPotionAddlNotes": "不能夠在任務寵物蛋上使用。", "foodMeat": "肉", + "foodMeatThe": "the Meat", + "foodMeatA": "Meat", "foodMilk": "牛奶", + "foodMilkThe": "the Milk", + "foodMilkA": "Milk", "foodPotatoe": "馬鈴薯", + "foodPotatoeThe": "the Potato", + "foodPotatoeA": "a Potato", "foodStrawberry": "草莓", + "foodStrawberryThe": "the Strawberry", + "foodStrawberryA": "a Strawberry", "foodChocolate": "巧克力", + "foodChocolateThe": "the Chocolate", + "foodChocolateA": "Chocolate", "foodFish": "魚", + "foodFishThe": "the Fish", + "foodFishA": "a Fish", "foodRottenMeat": "腐肉", + "foodRottenMeatThe": "the Rotten Meat", + "foodRottenMeatA": "Rotten Meat", "foodCottonCandyPink": "粉紅色棉花糖", + "foodCottonCandyPinkThe": "the Pink Cotton Candy", + "foodCottonCandyPinkA": "Pink Cotton Candy", "foodCottonCandyBlue": "藍色棉花糖", + "foodCottonCandyBlueThe": "the Blue Cotton Candy", + "foodCottonCandyBlueA": "Blue Cotton Candy", "foodHoney": "蜂蜜", + "foodHoneyThe": "the Honey", + "foodHoneyA": "Honey", "foodCakeSkeleton": "骸骨蛋糕", + "foodCakeSkeletonThe": "the Bare Bones Cake", + "foodCakeSkeletonA": "a Bare Bones Cake", "foodCakeBase": "普通蛋糕", + "foodCakeBaseThe": "the Basic Cake", + "foodCakeBaseA": "a Basic Cake", "foodCakeCottonCandyBlue": "藍色棉花糖蛋糕", + "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", + "foodCakeCottonCandyBlueA": "a Candy Blue Cake", "foodCakeCottonCandyPink": "粉紅棉花糖蛋糕", + "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", + "foodCakeCottonCandyPinkA": "a Candy Pink Cake", "foodCakeShade": "巧克力蛋糕", + "foodCakeShadeThe": "the Chocolate Cake", + "foodCakeShadeA": "a Chocolate Cake", "foodCakeWhite": "奶油蛋糕", + "foodCakeWhiteThe": "the Cream Cake", + "foodCakeWhiteA": "a Cream Cake", "foodCakeGolden": "蜂蜜蛋糕", + "foodCakeGoldenThe": "the Honey Cake", + "foodCakeGoldenA": "a Honey Cake", "foodCakeZombie": "過期蛋糕", + "foodCakeZombieThe": "the Rotten Cake", + "foodCakeZombieA": "a Rotten Cake", "foodCakeDesert": "沙子蛋糕", + "foodCakeDesertThe": "the Sand Cake", + "foodCakeDesertA": "a Sand Cake", "foodCakeRed": "草莓蛋糕", + "foodCakeRedThe": "the Strawberry Cake", + "foodCakeRedA": "a Strawberry Cake", "foodCandySkeleton": "骸骨糖果", + "foodCandySkeletonThe": "the Bare Bones Candy", + "foodCandySkeletonA": "Bare Bones Candy", "foodCandyBase": "普通糖果", + "foodCandyBaseThe": "the Basic Candy", + "foodCandyBaseA": "Basic Candy", "foodCandyCottonCandyBlue": "酸味藍色糖果", + "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", + "foodCandyCottonCandyBlueA": "Sour Blue Candy", "foodCandyCottonCandyPink": "酸味粉紅色糖果", + "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", + "foodCandyCottonCandyPinkA": "Sour Pink Candy", "foodCandyShade": "巧克力糖果", + "foodCandyShadeThe": "the Chocolate Candy", + "foodCandyShadeA": "Chocolate Candy", "foodCandyWhite": "香草糖果", + "foodCandyWhiteThe": "the Vanilla Candy", + "foodCandyWhiteA": "Vanilla Candy", "foodCandyGolden": "蜂蜜糖果", + "foodCandyGoldenThe": "the Honey Candy", + "foodCandyGoldenA": "Honey Candy", "foodCandyZombie": "腐爛糖果", + "foodCandyZombieThe": "the Rotten Candy", + "foodCandyZombieA": "Rotten Candy", "foodCandyDesert": "沙子糖果", + "foodCandyDesertThe": "the Sand Candy", + "foodCandyDesertA": "Sand Candy", "foodCandyRed": "肉桂糖果", + "foodCandyRedThe": "the Cinnamon Candy", + "foodCandyRedA": "Cinnamon Candy", "foodSaddleText": "鞍", "foodSaddleNotes": "立即把你的一隻寵物變成坐騎。", "foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?", diff --git a/website/common/locales/zh_TW/gear.json b/website/common/locales/zh_TW/gear.json index a64a42f679..706e95879e 100644 --- a/website/common/locales/zh_TW/gear.json +++ b/website/common/locales/zh_TW/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "刺客滑雪杖", "weaponSpecialSkiNotes": "一把能消滅大群敵人的武器!同時,它還能幫助玩家進行很好的雙板平行轉彎。增加<%= str %>力量。2013-2014冬季限定版裝備。", "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": "雪花魔杖", "weaponSpecialSnowflakeNotes": "這把魔杖閃耀著無限的治療之力。增加<%= int %>點智力。2013-2014冬季限定版裝備。", "weaponSpecialSpringRogueText": "鉤爪", @@ -1461,5 +1461,6 @@ "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.", "eyewearArmoirePlagueDoctorMaskText": "瘟疫醫師面罩", - "eyewearArmoirePlagueDoctorMaskNotes": "讓醫生戴上這個面罩去抵抗拖拉瘟疫吧!沒有屬性加成。神祕寶箱:瘟疫醫師系列(2/3)。" + "eyewearArmoirePlagueDoctorMaskNotes": "讓醫生戴上這個面罩去抵抗拖拉瘟疫吧!沒有屬性加成。神祕寶箱:瘟疫醫師系列(2/3)。", + "twoHandedItem": "Two-handed item." } \ No newline at end of file diff --git a/website/common/locales/zh_TW/generic.json b/website/common/locales/zh_TW/generic.json index d274164772..dc969d90ad 100644 --- a/website/common/locales/zh_TW/generic.json +++ b/website/common/locales/zh_TW/generic.json @@ -168,6 +168,8 @@ "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!", "checkOutProgress": "檢查在 Habitica 的進度!", "cards": "Cards", + "sentCardToUser": "You sent a card to <%= profileName %>", + "cardReceivedFrom": "<%= cardType %> from <%= userName %>", "cardReceived": "You received a <%= card %>", "greetingCard": "賀卡", "greetingCardExplanation": "你收到愉快的密友成就!", diff --git a/website/common/locales/zh_TW/messages.json b/website/common/locales/zh_TW/messages.json index 4889817174..305d674c9d 100644 --- a/website/common/locales/zh_TW/messages.json +++ b/website/common/locales/zh_TW/messages.json @@ -9,8 +9,8 @@ "messageCannotFeedPet": "無法餵食這隻寵物。", "messageAlreadyMount": "你已經擁有這個坐騎了,試著給其他的寵物。", "messageEvolve": "你已經馴服 <%= egg %>,出去兜兜風吧!", - "messageLikesFood": "<%= egg %> 真的很喜歡 <%= foodText %>!", - "messageDontEnjoyFood": "<%= egg %> 吃了 <%= foodText %> 但好像不是很喜歡它。", + "messageLikesFood": "<%= egg %> really likes <%= foodText %>!", + "messageDontEnjoyFood": "<%= egg %> eats <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "購買了 <%= itemText %>", "messageEquipped": "裝備了 <%= itemText %>。", "messageUnEquipped": "取下 <%= itemText %> 了。", @@ -21,7 +21,7 @@ "messageNotEnoughGold": "金幣不足", "messageTwoHandedEquip": "使用 <%= twoHandedText %> 需要用到雙手,所以 <%= offHandedText %> 要解除裝備了。", "messageTwoHandedUnequip": "裝備 <%= twoHandedText %> 需要用到雙手,所以 <%= offHandedText %> 要解除裝備了。", - "messageDropFood": "您發現了<%= dropArticle %><%= dropText %>!", + "messageDropFood": "You've found <%= dropText %>!", "messageDropEgg": "您發現了一顆<%= dropText %>蛋!", "messageDropPotion": "您發現了一瓶<%= dropText %>孵化藥劑!", "messageDropQuest": "發現一個任務 !", @@ -33,7 +33,7 @@ "messageHealthAlreadyMax": "你的生命力已經是最大值。", "messageHealthAlreadyMin": "喔不!您沒有生命值了,購買治療藥水已經來不及了。但別擔心,您還可以復活!", "armoireEquipment": "<%= image %> 你在神祕寶箱裡找到稀有的裝備 <%= dropText %>!好棒!", - "armoireFood": "<%= image %> 你在神祕寶箱裡找到 <%= dropArticle %><%= dropText %>. 這是什麼東西啊?", + "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", "armoireExp": "你打開神祕寶箱⋯⋯只得到經驗值。", "messageInsufficientGems": "寶石不足 !", "messageAuthPasswordMustMatch": ":password 和 :confirm密碼不配合。", diff --git a/website/common/locales/zh_TW/pets.json b/website/common/locales/zh_TW/pets.json index 3d64700bae..c0c88ab950 100644 --- a/website/common/locales/zh_TW/pets.json +++ b/website/common/locales/zh_TW/pets.json @@ -81,7 +81,7 @@ "petNotOwned": "你不擁有這隻寵物。", "mountNotOwned": "You do not own this mount.", "earnedCompanion": "因為你的效率,你已經獲得了一個新的同伴。餵養它,使其茁壯成長!", - "feedPet": "餵一個<%= article %><%= text %> 給 <%= name %>?", + "feedPet": "Feed <%= text %> to your <%= name %>?", "useSaddle": "把鞍用在<%= pet %>上?", "raisedPet": "You grew your <%= pet %>!", "earnedSteed": "通過完成你的任務,你贏得一個忠心的坐騎!",