mirror of
https://github.com/HabitRPG/habitica.git
synced 2026-05-08 11:20:04 -05:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 38a591bdd1 | |||
| 2736d8acf3 | |||
| 8fe13dbb23 | |||
| 4581bb9315 | |||
| 2999212379 | |||
| d2bd246e6e | |||
| 1482f6c225 | |||
| 1178da3a26 | |||
| 819ed2b355 | |||
| a92999fc11 | |||
| 3489b88752 |
Generated
+8
-7
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "habitica",
|
||||
"version": "5.47.5",
|
||||
"version": "5.47.8",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "habitica",
|
||||
"version": "5.47.5",
|
||||
"version": "5.47.8",
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.22.10",
|
||||
@@ -46,7 +46,7 @@
|
||||
"gulp.spritesmith": "^6.13.0",
|
||||
"habitica-markdown": "^4.1.0",
|
||||
"heapdump": "^0.3.15",
|
||||
"helmet": "^8.1.0",
|
||||
"helmet": "^4.6.0",
|
||||
"in-app-purchase": "^1.11.3",
|
||||
"js2xmlparser": "^5.0.0",
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
@@ -12798,11 +12798,12 @@
|
||||
}
|
||||
},
|
||||
"node_modules/helmet": {
|
||||
"version": "8.1.0",
|
||||
"resolved": "https://registry.npmjs.org/helmet/-/helmet-8.1.0.tgz",
|
||||
"integrity": "sha512-jOiHyAZsmnr8LqoPGmCjYAaiuWwjAPLgY8ZX2XrmHawt99/u1y6RgrZMTeoPfpUbV96HOalYgz1qzkRbw54Pmg==",
|
||||
"version": "4.6.0",
|
||||
"resolved": "https://registry.npmjs.org/helmet/-/helmet-4.6.0.tgz",
|
||||
"integrity": "sha512-HVqALKZlR95ROkrnesdhbbZJFi/rIVSoNq6f3jA/9u6MIbTsPh3xZwihjeI5+DO/2sOV6HMHooXcEOuwskHpTg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
"node": ">=10.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/hex2dec": {
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "habitica",
|
||||
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
|
||||
"version": "5.47.5",
|
||||
"version": "5.47.8",
|
||||
"main": "./website/server/index.js",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.22.10",
|
||||
@@ -41,7 +41,7 @@
|
||||
"gulp.spritesmith": "^6.13.0",
|
||||
"habitica-markdown": "^4.1.0",
|
||||
"heapdump": "^0.3.15",
|
||||
"helmet": "^8.1.0",
|
||||
"helmet": "^4.6.0",
|
||||
"in-app-purchase": "^1.11.3",
|
||||
"js2xmlparser": "^5.0.0",
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
|
||||
@@ -6,6 +6,8 @@ import {
|
||||
SPAM_MESSAGE_LIMIT,
|
||||
SPAM_MIN_EXEMPT_CONTRIB_LEVEL,
|
||||
SPAM_WINDOW_LENGTH,
|
||||
MAX_CHAT_COUNT,
|
||||
MAX_SUBBED_GROUP_CHAT_COUNT,
|
||||
INVITES_LIMIT,
|
||||
model as Group,
|
||||
} from '../../../../website/server/models/group';
|
||||
@@ -18,6 +20,7 @@ import {
|
||||
import * as email from '../../../../website/server/libs/email';
|
||||
import { TAVERN_ID } from '../../../../website/common/script/constants';
|
||||
import shared from '../../../../website/common';
|
||||
import { chatModel as Chat } from '../../../../website/server/models/message';
|
||||
|
||||
describe('Group Model', () => {
|
||||
let party; let questLeader; let participatingMember;
|
||||
@@ -1356,6 +1359,29 @@ describe('Group Model', () => {
|
||||
});
|
||||
});
|
||||
|
||||
describe('#getEffectiveChatLimit', () => {
|
||||
it('returns the correct chat limit', () => {
|
||||
const group = new Group();
|
||||
expect(group.getEffectiveChatLimit()).to.eql(MAX_CHAT_COUNT);
|
||||
});
|
||||
|
||||
it('returns the passed limit if it is lower than the max', () => {
|
||||
const group = new Group();
|
||||
expect(group.getEffectiveChatLimit(10)).to.eql(10);
|
||||
});
|
||||
|
||||
it('returns the max if the passed limit is higher', () => {
|
||||
const group = new Group();
|
||||
expect(group.getEffectiveChatLimit(MAX_CHAT_COUNT + 10)).to.eql(MAX_CHAT_COUNT);
|
||||
});
|
||||
|
||||
it('returns the max for group plans', () => {
|
||||
const group = new Group();
|
||||
group.purchased.plan.customerId = '110002222333';
|
||||
expect(group.getEffectiveChatLimit()).to.eql(MAX_SUBBED_GROUP_CHAT_COUNT);
|
||||
});
|
||||
});
|
||||
|
||||
describe('#sendChat', () => {
|
||||
beforeEach(() => {
|
||||
sandbox.spy(User, 'updateOne');
|
||||
@@ -1462,6 +1488,34 @@ describe('Group Model', () => {
|
||||
});
|
||||
});
|
||||
|
||||
describe('#trimChat', () => {
|
||||
it('Only checks last message when not enough messages to trim', async () => {
|
||||
sandbox.spy(Chat, 'find');
|
||||
sandbox.spy(Chat, 'deleteMany');
|
||||
await Chat.insertOne({ groupId: party._id, timestamp: new Date() });
|
||||
await Chat.insertOne({ groupId: party._id, timestamp: new Date() });
|
||||
await Chat.insertOne({ groupId: party._id, timestamp: new Date() });
|
||||
await party.trimChat();
|
||||
|
||||
expect(Chat.find).to.be.calledOnce;
|
||||
expect(Chat.deleteMany).to.not.be.called;
|
||||
expect(await Chat.countDocuments({ groupId: party._id })).to.eql(3);
|
||||
});
|
||||
it('Deletes messages over the limit', async () => {
|
||||
sandbox.spy(Chat, 'find');
|
||||
sandbox.spy(Chat, 'deleteMany');
|
||||
await Chat.insertOne({ groupId: party._id, timestamp: new Date() });
|
||||
await Chat.insertOne({ groupId: party._id, timestamp: new Date() });
|
||||
await Chat.insertOne({ groupId: party._id, timestamp: new Date() });
|
||||
|
||||
await party.trimChat(1);
|
||||
|
||||
expect(Chat.find).to.be.calledOnce;
|
||||
expect(Chat.deleteMany).to.be.calledOnce;
|
||||
expect(await Chat.countDocuments({ groupId: party._id })).to.eql(1);
|
||||
});
|
||||
});
|
||||
|
||||
describe('#startQuest', () => {
|
||||
context('Failure Conditions', () => {
|
||||
it('throws an error if group is not a party', async () => {
|
||||
|
||||
@@ -91,6 +91,23 @@ describe('POST /groups/:groupId/quests/accept', () => {
|
||||
expect(partyMembers[0].party.quest.RSVPNeeded).to.be.false;
|
||||
});
|
||||
|
||||
it('heals stuck RSVPNeeded when group already has the user accepted', async () => {
|
||||
await leader.post(`/groups/${questingGroup._id}/quests/invite/${PET_QUEST}`);
|
||||
await partyMembers[0].post(`/groups/${questingGroup._id}/quests/accept`);
|
||||
|
||||
await partyMembers[0].updateOne({ 'party.quest.RSVPNeeded': true });
|
||||
await partyMembers[0].sync();
|
||||
expect(partyMembers[0].party.quest.RSVPNeeded).to.be.true;
|
||||
|
||||
const res = await partyMembers[0].post(`/groups/${questingGroup._id}/quests/accept`);
|
||||
expect(res).to.exist;
|
||||
|
||||
await partyMembers[0].sync();
|
||||
await questingGroup.sync();
|
||||
expect(partyMembers[0].party.quest.RSVPNeeded).to.equal(false);
|
||||
expect(questingGroup.quest.members[partyMembers[0]._id]).to.equal(true);
|
||||
});
|
||||
|
||||
it('does not accept invite for a quest already underway', async () => {
|
||||
await leader.post(`/groups/${questingGroup._id}/quests/invite/${PET_QUEST}`);
|
||||
await partyMembers[0].post(`/groups/${questingGroup._id}/quests/accept`);
|
||||
|
||||
@@ -100,6 +100,23 @@ describe('POST /groups/:groupId/quests/reject', () => {
|
||||
expect(partyMembers[0].party.quest.RSVPNeeded).to.be.false;
|
||||
});
|
||||
|
||||
it('heals stuck RSVPNeeded when group already has the user rejected', async () => {
|
||||
await leader.post(`/groups/${questingGroup._id}/quests/invite/${PET_QUEST}`);
|
||||
await partyMembers[0].post(`/groups/${questingGroup._id}/quests/reject`);
|
||||
|
||||
await partyMembers[0].updateOne({ 'party.quest.RSVPNeeded': true });
|
||||
await partyMembers[0].sync();
|
||||
expect(partyMembers[0].party.quest.RSVPNeeded).to.be.true;
|
||||
|
||||
const res = await partyMembers[0].post(`/groups/${questingGroup._id}/quests/reject`);
|
||||
expect(res).to.exist;
|
||||
|
||||
await partyMembers[0].sync();
|
||||
await questingGroup.sync();
|
||||
expect(partyMembers[0].party.quest.RSVPNeeded).to.equal(false);
|
||||
expect(questingGroup.quest.members[partyMembers[0]._id]).to.equal(false);
|
||||
});
|
||||
|
||||
it('return an error when a user rejects an invite already accepted', async () => {
|
||||
await leader.post(`/groups/${questingGroup._id}/quests/invite/${PET_QUEST}`);
|
||||
await partyMembers[0].post(`/groups/${questingGroup._id}/quests/accept`);
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
}, `type_${task.type}`
|
||||
]"
|
||||
@click="castEnd($event, task)"
|
||||
tabindex="0"
|
||||
@keypress.enter="$emit('editTask', task)"
|
||||
>
|
||||
<div
|
||||
class="d-flex"
|
||||
@@ -98,9 +100,7 @@
|
||||
<div
|
||||
class="task-clickable-area pt-1 pl-75 pb-0"
|
||||
:class="{ 'cursor-auto': !teamManagerAccess }"
|
||||
tabindex="0"
|
||||
@click="edit($event, task)"
|
||||
@keypress.enter="edit($event, task)"
|
||||
>
|
||||
<div class="d-flex justify-content-between">
|
||||
<h3
|
||||
@@ -432,10 +432,6 @@
|
||||
outline: none;
|
||||
transition: none;
|
||||
border: $purple-400 solid 1px;
|
||||
|
||||
:not(task-best-control-inner-habit) { // round icon
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.control-bottom-box {
|
||||
@@ -462,16 +458,13 @@
|
||||
&:hover:not(.task-not-editable.task-not-scoreable),
|
||||
&:focus-within:not(.task-not-editable.task-not-scoreable) {
|
||||
box-shadow: 0 1px 8px 0 rgba($black, 0.12), 0 4px 4px 0 rgba($black, 0.16);
|
||||
z-index: 11;
|
||||
}
|
||||
}
|
||||
|
||||
.task:not(.groupTask) {
|
||||
&:hover,
|
||||
&:focus-within {
|
||||
.left-control, .right-control, .task-content {
|
||||
border-color: $purple-400;
|
||||
}
|
||||
&:hover, &:focus {
|
||||
border: none;
|
||||
outline: 1px solid $purple-400;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -522,11 +515,6 @@
|
||||
&-user {
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border-radius: 4px;
|
||||
border: $purple-400 solid 1px;
|
||||
}
|
||||
}
|
||||
|
||||
.task-title + .task-dropdown ::v-deep .dropdown-menu {
|
||||
|
||||
@@ -164,5 +164,6 @@
|
||||
"achievementRodentRulerModalText": "Nasbíral jsi všechny hlodavce!",
|
||||
"achievementCatsText": "Vylíhly se všechny standardní barvy kočičích mazlíčků: gepard, lev, šavlozubý tygr a tygr!",
|
||||
"achievementRodentRuler": "Vládce hlodavců",
|
||||
"achievementCats": "Pasák koček"
|
||||
"achievementCats": "Pasák koček",
|
||||
"achievementDomesticated": "Hejá"
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@
|
||||
"backgroundTavernNotes": "Navštiv krčmu města Habitica.",
|
||||
"backgrounds102015": "Sada 17: zveřejněna v říjnu 2015",
|
||||
"backgroundHarvestMoonText": "Měsíc při sklizni",
|
||||
"backgroundHarvestMoonNotes": "Kdákání pod měsícem při sklizni.",
|
||||
"backgroundHarvestMoonNotes": "Chechtej se pod sklizňovým měsícem.",
|
||||
"backgroundSlimySwampText": "Slizká bažina",
|
||||
"backgroundSlimySwampNotes": "Přebroď se slizkou bažinou.",
|
||||
"backgroundSwarmingDarknessText": "Valící se temnota",
|
||||
@@ -213,7 +213,7 @@
|
||||
"backgroundStormyRooftopsNotes": "Propliž se přes bouřlivé střechy.",
|
||||
"backgroundWindyAutumnText": "Větrný podzim",
|
||||
"backgroundWindyAutumnNotes": "Hoň se za listy během větrného podzimu.",
|
||||
"incentiveBackgrounds": "Prosté pozadí",
|
||||
"incentiveBackgrounds": "Standardní pozadí",
|
||||
"backgroundVioletText": "Fialová",
|
||||
"backgroundVioletNotes": "Živá fialová tapeta.",
|
||||
"backgroundBlueText": "Modrá",
|
||||
@@ -736,7 +736,64 @@
|
||||
"backgroundMaskMakersWorkshopNotes": "Vyzkoušej novou tvář v maskářově dílně.",
|
||||
"backgroundCemeteryGateText": "Hřbitovní brána",
|
||||
"backgroundCemeteryGateNotes": "Straš u hřbitovní brány.",
|
||||
"backgroundAutumnBridgeText": "Podzimní most",
|
||||
"backgroundAutumnBridgeNotes": "Obdivuj krásu podzimního mostu.",
|
||||
"backgroundInsideACrystalText": "Uvnitř krystalu."
|
||||
"backgroundAutumnBridgeText": "Most na podzim",
|
||||
"backgroundAutumnBridgeNotes": "Obdivuj krásu mostu na podzim.",
|
||||
"backgroundInsideACrystalText": "Uvnitř krystalu",
|
||||
"backgrounds032023": "Sada 106: Zveřejněna v březnu 2023",
|
||||
"backgroundOldTimeyBasketballCourtText": "Retro basketbalové hřiště",
|
||||
"backgroundOldTimeyBasketballCourtNotes": "Zaházej si na koš na retro basketbalovém hřišti.",
|
||||
"backgroundJungleWateringHoleText": "Napajedlo v džungli",
|
||||
"backgroundJungleWateringHoleNotes": "Zastav se na doušek u džunglového napajedla.",
|
||||
"backgroundMangroveForestText": "Mangrovový les",
|
||||
"backgroundMangroveForestNotes": "Prozkoumej okraj mangrovového lesa.",
|
||||
"backgrounds052023": "Sada 108: Zveřejněna v květnu 2023",
|
||||
"backgroundInAPaintingText": "V obraze",
|
||||
"backgroundFlyingOverHedgeMazeText": "Let nad labyrintem ze živého plotu",
|
||||
"backgroundFlyingOverHedgeMazeNotes": "Žasněte při letu nad labyrintem ze živého plotu.",
|
||||
"backgroundCretaceousForestText": "Křídový les",
|
||||
"backgroundCretaceousForestNotes": "Vychutnejte si pradávnou zeleň křídového lesa.",
|
||||
"backgroundLeafyTreeTunnelNotes": "Procházejte se tunelem z listnatých stromů.",
|
||||
"backgroundSpringtimeShowerText": "Jarní přeháňka",
|
||||
"backgroundSpringtimeShowerNotes": "Podívejte se na květnatou jarní přeháňku.",
|
||||
"backgroundUnderWisteriaText": "Pod vistérií",
|
||||
"backgrounds022023": "SADA 105: Vydáno v únoru 2023",
|
||||
"backgroundInFrontOfFountainText": "Před Fontánou",
|
||||
"backgroundInFrontOfFountainNotes": "Procházej se před Fontánou.",
|
||||
"backgroundGoldenBirdcageText": "Zlatá klec",
|
||||
"backgroundGoldenBirdcageNotes": "Schovej se v zlaté kleci.",
|
||||
"backgroundFancyBedroomText": "Luxusní ložnice",
|
||||
"backgroundFancyBedroomNotes": "Dopřej si luxus v luxusní ložnici.",
|
||||
"backgrounds042023": "Sada 107: Zveřejněna v dubnu 2023",
|
||||
"backgroundLeafyTreeTunnelText": "Tunel z listnatých stromů",
|
||||
"backgroundUnderWisteriaNotes": "Odpočiňte si pod vistérií.",
|
||||
"backgroundInAPaintingNotes": "Užijte si kreativní činnosti uvnitř obrazu.",
|
||||
"backgrounds012023": "SADA 104: Vydáno v lednu 2023",
|
||||
"backgroundRimeIceText": "Jinovatka",
|
||||
"backgroundRimeIceNotes": "Pokochej se třpytivou jinovatkou.",
|
||||
"backgroundSnowyTempleText": "Zasněžený chrám",
|
||||
"backgroundSnowyTempleNotes": "Pokochej se klidným zasněženým chrámem.",
|
||||
"backgroundWinterLakeWithSwansText": "Zimní jezero s labutěmi",
|
||||
"backgroundWinterLakeWithSwansNotes": "Užij si přírodu u zimního jezera s labutěmi.",
|
||||
"backgrounds122022": "SADA 103: Vydáno v prosinci 2022",
|
||||
"backgroundBranchesOfAHolidayTreeText": "Větve svátečního stromku",
|
||||
"backgroundBranchesOfAHolidayTreeNotes": "Dováděj na větvích svátečního stromku.",
|
||||
"backgroundInsideACrystalNotes": "Vyhlédni z nitra krystalu.",
|
||||
"backgroundSnowyVillageText": "Zasněžená vesnice",
|
||||
"backgroundSnowyVillageNotes": "Pokochej se zasněženou vesnicí.",
|
||||
"backgrounds062023": "Sada 109: Zveřejněna v červnu 2023",
|
||||
"backgroundInAnAquariumText": "V akváriu",
|
||||
"backgroundInAnAquariumNotes": "Zaplavejte si poklidně s rybkami v akváriu.",
|
||||
"backgroundInsideAdventurersHideoutText": "V úkrytu dobrodruhů",
|
||||
"backgroundInsideAdventurersHideoutNotes": "Naplánujte cestu v úkrytu dobrodruhů.",
|
||||
"backgroundCraterLakeText": "Kráterové jezero",
|
||||
"backgroundCraterLakeNotes": "Obdivujte nádherné kráterové jezero.",
|
||||
"backgrounds072023": "Sada 110: Zveřejněna v červenci 2023",
|
||||
"backgroundOnAPaddlewheelBoatText": "Na loďce s lopatkovým kolem",
|
||||
"backgroundOnAPaddlewheelBoatNotes": "Projet se na loďce s lopatkovým kolem.",
|
||||
"backgroundColorfulCoralText": "Barevný korál",
|
||||
"backgroundColorfulCoralNotes": "Potopte se mezi barevné korály.",
|
||||
"backgrounds082023": "Sada 111: zveřejněaa v srpnu 2023",
|
||||
"backgroundBonsaiCollectionText": "Sbírka bonsají",
|
||||
"backgroundBoardwalkIntoSunsetNotes": "Vydejte se po Stezce do západu slunce.",
|
||||
"backgroundBoardwalkIntoSunsetText": "Stezka do západu slunce"
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"battleGear": "Bojová výzbroj",
|
||||
"gear": "Výbava",
|
||||
"autoEquipBattleGear": "Automaticky použít nové vybavení",
|
||||
"costume": "Kostým",
|
||||
"costume": "kostým",
|
||||
"useCostume": "Použít kostým",
|
||||
"costumePopoverText": "Vyber \"Použít kostým\", abys vybavil svého avatara, aniž bys nějak ovlivnil statistiky tvé bojové výzbroje! To znamená, že můžeš obléct svého avatara do jakéhokoliv vybavení chceš a stále mít tvojí nejlepší bojovou výzbroj na sobě.",
|
||||
"autoEquipPopoverText": "Zvol tuto možnost pro automatické nasazení koupeného vybavení.",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"stable": "Stáj",
|
||||
"stable": "Mazlíčci a Mounty",
|
||||
"pets": "Mazlíčci",
|
||||
"activePet": "Aktivní mazlíček",
|
||||
"noActivePet": "Bez aktivního mazlíčka",
|
||||
@@ -109,5 +109,7 @@
|
||||
"wackyPets": "Šílená zvířátka",
|
||||
"invalidAmount": "Neplatný počet jídla,je vyžadováno pozitivní celé číslo",
|
||||
"tooMuchFood": "Snažíš se dát svému zvířeti moc jídla, akce byla zrušena",
|
||||
"notEnoughFood": "Nemáš dost jídla"
|
||||
"notEnoughFood": "Nemáš dost jídla",
|
||||
"veteranCactus": "Kaktus Veterán",
|
||||
"veteranDragon": "Drak Veterán"
|
||||
}
|
||||
|
||||
@@ -160,5 +160,25 @@
|
||||
"newPMNotificationTitle": "Nová zpráva od <%= name %>",
|
||||
"displaynameIssueNewline": "Zobrazovaná jména nesmí obsahovat zpětné lomítko následované písmenem N.",
|
||||
"resetAccount": "Resetovat účet",
|
||||
"giftedSubscriptionWinterPromo": "Ahoj <%= username %>, získal/a jsi <%= monthCount %> měsíce/ů předplatného jako součást naší sváteční dárkové akce!"
|
||||
"giftedSubscriptionWinterPromo": "Ahoj <%= username %>, získal/a jsi <%= monthCount %> měsíce/ů předplatného jako součást naší sváteční dárkové akce!",
|
||||
"generalSettings": "Hlavní nastavení",
|
||||
"siteData": "Údaje o webu",
|
||||
"taskSettings": "Nastavení úkolu",
|
||||
"confirmCancelChanges": "Jste si jistí? Neuložené změny přijdou vniveč.",
|
||||
"account": "Účet",
|
||||
"loginMethods": "Možnosti přihlášení",
|
||||
"character": "Postava",
|
||||
"siteLanguage": "Jazyk webu",
|
||||
"showLevelUpModal": "Při dosažení vyšší úrovně",
|
||||
"showHatchPetModal": "Při odchovu zvířátka",
|
||||
"showRaisePetModal": "Jak z domácího mazlíčka vychovat jízdní zvíře",
|
||||
"showStreakModal": "Při dosažení úspěchu v sérii",
|
||||
"baileyAnnouncement": "Nejnovější oznámení společnosti Bailey",
|
||||
"view": "Zobrazit",
|
||||
"feedbackPlaceholder": "Vlož zpětnou vazbu",
|
||||
"downloadCSV": "Stáhni si CSV",
|
||||
"downloadAs": "Ulož jako",
|
||||
"yourUserData": "Tvá uživatelská data",
|
||||
"taskHistory": "Historie",
|
||||
"yourUserDataDisclaimer": "Zde si lze stáhnout výpis historie úkolů nebo kompletní uživatelská data."
|
||||
}
|
||||
|
||||
@@ -3484,7 +3484,7 @@
|
||||
"shieldSpecialWinter2026WarriorText": "Raureif Schild",
|
||||
"shieldSpecialWinter2026WarriorNotes": "Stoppe eiskalt Hindernisse mit diesem praktischen, pieksigen Schild. Erhöht Ausdauer um %= con %>. Limitierte Ausgabe Winterausrüstung 2025-2026.",
|
||||
"headMystery202602Text": "Kirschblüte Fuchsohren",
|
||||
"headMystery202602Notes": " Diese Ohren schärfen dein Gehör so sehr, dass du im nahenden Frühling das Wachsen der Blütenknospen an den Zweigen der Bäume hören kannst. Gewährt keinen Attributbonus. Februar 2026 Abonnentengegenstand.",
|
||||
"headMystery202602Notes": "Diese Ohren schärfen dein Gehör so sehr, dass du im nahenden Frühling das Wachsen der Blütenknospen an den Zweigen der Bäume hören kannst. Gewährt keinen Attributbonus. Februar 2026 Abonnentengegenstand.",
|
||||
"headArmoireLoneCowpokeHatNotes": "Howdy Kumpel! Hasst du’s auch so, wenn du draußen auf dem Schießstand bist, an Aufgaben arbeitest und dir die Sonne in die Augen scheint? Also, gute Sache, dass du dafür jetzt ’nen Hut hast. Erhöht deine Wahrnehmung um <%= per %>. Verzauberter Schrank: Einsamer Cowboy Set (Item 1 of 2)",
|
||||
"shieldSpecialWinter2026HealerText": "Sternenexplosion",
|
||||
"shieldArmoireDoubleBassNotes": "Bom doo bom brrrr brr brr brrrr! Versammle deine Party, um euch zu erden oder zu tanzen, während ihr euch Musik von dieser tiefen Double Bass anhört. Erhört Ausdauer und Stärke um jeweils <%= attrs %>. Verzauberter Schwank: Musikinstrumente Set 2 (Gegenstand 3 von 3)",
|
||||
@@ -3497,5 +3497,9 @@
|
||||
"backMystery202602Notes": "Diese flauschigen Schweife haben die Farbe der Kirschblüte, eine Erinnerung, dass der Frühling auf dem Weg ist. Gewährt keinen Autobusbonus. Februar 2026 Abonnentengegenstand.",
|
||||
"backArmoireHarpsichordText": "Cembalo",
|
||||
"weaponSpecialSpring2026HealerText": "Schneeglöckchen Stab",
|
||||
"weaponSpecialSpring2026HealerNotes": "Eine Gelegenheit für einen Neuanfang liegt direkt vor dir, und mit diesem prächtigen Stab wirst du bereit sein! Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe Frühlingsausrüstung 2026."
|
||||
"weaponSpecialSpring2026HealerNotes": "Eine Gelegenheit für einen Neuanfang liegt direkt vor dir, und mit diesem prächtigen Stab wirst du bereit sein! Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe Frühlingsausrüstung 2026.",
|
||||
"armorSpecialSpring2026WarriorText": "Froschrüstung",
|
||||
"armorSpecialSpring2026WarriorNotes": "Hüpf in Aktion, sobald der Schnee taut. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe Frühlingsausrüstung 2026.",
|
||||
"armorSpecialSpring2026RogueText": "Birkenrinde Rüstung",
|
||||
"armorSpecialSpring2026RogueNotes": "Trotze dem unvermeidlichen Frühlingsregen ebenso wie leichten Brisen. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe Frühlingsausrüstung 2026."
|
||||
}
|
||||
|
||||
@@ -63,11 +63,11 @@
|
||||
"letsGetStarted": "Let's get started!",
|
||||
"onboardingProgress": "<%= percentage %>% progress",
|
||||
"gettingStartedDesc": "Complete these onboarding tasks and you’ll earn <strong>5 Achievements</strong> and <strong class=\"gold-amount\">100 Gold</strong> once you’re done!",
|
||||
"achievementRosyOutlookModalText": "You tamed all the Cotton Candy Pink Mounts!",
|
||||
"achievementRosyOutlookText": "Has tamed all Cotton Candy Pink Mounts.",
|
||||
"achievementRosyOutlookModalText": "You tamed all the Candyfloss Pink Mounts!",
|
||||
"achievementRosyOutlookText": "Has tamed all Candyfloss Pink Mounts.",
|
||||
"achievementRosyOutlook": "Rosy Outlook",
|
||||
"achievementTickledPinkModalText": "You collected all the Cotton Candy Pink Pets!",
|
||||
"achievementTickledPinkText": "Has collected all Cotton Candy Pink Pets.",
|
||||
"achievementTickledPinkModalText": "You collected all the Candyfloss Pink Pets!",
|
||||
"achievementTickledPinkText": "Has collected all Candyfloss Pink Pets.",
|
||||
"achievementTickledPink": "Tickled Pink",
|
||||
"foundNewItemsCTA": "Head to your Inventory and try combining your new hatching potion and egg!",
|
||||
"foundNewItemsExplanation": "Completing tasks gives you a chance to find items, like Eggs, Hatching Potions, and Pet Food.",
|
||||
@@ -109,11 +109,11 @@
|
||||
"achievementSeasonalSpecialistModalText": "You completed all the seasonal quests!",
|
||||
"achievementSeasonalSpecialistText": "Has completed all the Spring and Winter seasonal quests: Egg Hunt, Trapper Santa, and Find the Cub!",
|
||||
"achievementSeasonalSpecialist": "Seasonal Specialist",
|
||||
"achievementVioletsAreBlueText": "Has collected all Cotton Candy Blue Pets.",
|
||||
"achievementVioletsAreBlueModalText": "You collected all the Cotton Candy Blue Pets!",
|
||||
"achievementWildBlueYonderModalText": "You tamed all the Cotton Candy Blue Mounts!",
|
||||
"achievementVioletsAreBlueText": "Has collected all Candyfloss Blue Pets.",
|
||||
"achievementVioletsAreBlueModalText": "You collected all the Candyfloss Blue Pets!",
|
||||
"achievementWildBlueYonderModalText": "You tamed all the Candyfloss Blue Mounts!",
|
||||
"achievementDomesticated": "E-I-E-I-O",
|
||||
"achievementWildBlueYonderText": "Has tamed all Cotton Candy Blue Mounts.",
|
||||
"achievementWildBlueYonderText": "Has tamed all Candyfloss Blue Mounts.",
|
||||
"achievementVioletsAreBlue": "Violets are Blue",
|
||||
"achievementWildBlueYonder": "Wild Blue Yonder",
|
||||
"achievementDomesticatedModalText": "You collected all the domesticated pets!",
|
||||
@@ -123,7 +123,7 @@
|
||||
"achievementZodiacZookeeperText": "Has hatched all standard colours of zodiac pets: Rat, Cow, Bunny, Snake, Horse, Sheep, Monkey, Rooster, Wolf, Tiger, Flying Pig, and Dragon!",
|
||||
"achievementShadyCustomer": "Shady Customer",
|
||||
"achievementShadyCustomerText": "Has collected all Shade Pets.",
|
||||
"achievementShadyCustomerModalText": "You colleted all the Shade Pets!",
|
||||
"achievementShadyCustomerModalText": "You collected all the Shade Pets!",
|
||||
"achievementShadeOfItAll": "The Shade of It All",
|
||||
"achievementShadeOfItAllText": "Has tamed all Shade Mounts.",
|
||||
"achievementShadeOfItAllModalText": "You tamed all the Shade Mounts!",
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
"backgroundHauntedHouseText": "Haunted House",
|
||||
"backgroundHauntedHouseNotes": "Sneak through a Haunted House.",
|
||||
"backgroundPumpkinPatchText": "Pumpkin Patch",
|
||||
"backgroundPumpkinPatchNotes": "Carve jack-o-lanterns in a Pumpkin Patch.",
|
||||
"backgroundPumpkinPatchNotes": "Carve jack-o'-lanterns in a Pumpkin Patch.",
|
||||
"backgrounds112014": "SET 6: Released November 2014",
|
||||
"backgroundHarvestFeastText": "Harvest Feast",
|
||||
"backgroundHarvestFeastNotes": "Enjoy a Harvest Feast.",
|
||||
@@ -665,7 +665,7 @@
|
||||
"backgroundRopeBridgeText": "Rope Bridge",
|
||||
"backgrounds112021": "SET 90: Released November 2021",
|
||||
"backgroundFortuneTellersShopText": "Fortune Teller's Shop",
|
||||
"backgroundFortuneTellersShopNotes": "Seek tantalizing hints of your future in a Fortune Teller's Shop.",
|
||||
"backgroundFortuneTellersShopNotes": "Seek tantalising hints of your future in a Fortune Teller’s Shop.",
|
||||
"backgroundInsideAPotionBottleText": "Inside a Potion Bottle",
|
||||
"backgroundInsideAPotionBottleNotes": "Peer through the glass while hoping for rescue from Inside a Potion Bottle.",
|
||||
"backgroundSpiralStaircaseText": "Spiral Staircase",
|
||||
@@ -865,8 +865,8 @@
|
||||
"backgroundSpectralCandleRoomNotes": "Commune with spirits in a Room of Spectral Candles.",
|
||||
"backgroundMonstrousCaveText": "Monstrous Cave",
|
||||
"backgroundMonstrousCaveNotes": "Gaze into the maw of the Monstrous Cave.",
|
||||
"backgroundJackOLanternStacksText": "Jack O'Lantern Stacks",
|
||||
"backgroundJackOLanternStacksNotes": "Admire a field of Jack O’Lantern Stacks.",
|
||||
"backgroundJackOLanternStacksText": "Jack-o’-Lantern Stacks",
|
||||
"backgroundJackOLanternStacksNotes": "Admire a field of Jack-o’-Lantern Stacks.",
|
||||
"backgrounds062024": "Set 121: Released June 2024",
|
||||
"backgroundShellGateText": "Shell Gate",
|
||||
"backgroundShellGateNotes": "March through the decorated coral of a Shell Gate.",
|
||||
@@ -930,5 +930,16 @@
|
||||
"backgroundWinterDesertWithSaguarosText": "Winter Desert with Saguaros",
|
||||
"backgroundWinterDesertWithSaguarosNotes": "Breathe the crisp air of a Winter Desert with Saguaros.",
|
||||
"backgrounds022026": "SET 141: Released February 2026",
|
||||
"backgroundElegantPalaceText": "Elegant Palace"
|
||||
"backgroundElegantPalaceText": "Elegant Palace",
|
||||
"backgroundWaterfallWithRainbowText": "Waterfall with Rainbow",
|
||||
"backgroundWaterfallWithRainbowNotes": "Admire the breathtaking beauty of a Waterfall with a Rainbow.",
|
||||
"backgroundRidingACometText": "Riding a Comet",
|
||||
"backgrounds032026": "SET 142: Released March 2026",
|
||||
"backgrounds042026": "SET 143: Released April 2026",
|
||||
"backgroundRidingACometNotes": "Travel through space while Riding a Comet!",
|
||||
"backgroundElvenCitadelText": "Elven Citadel",
|
||||
"backgroundElvenCitadelNotes": "Take a scenic journey to an Elven Citadel.",
|
||||
"backgrounds052026": "SET 144: Released May 2026",
|
||||
"backgroundOnAStrangePlanetText": "On a Strange Planet",
|
||||
"backgroundOnAStrangePlanetNotes": "Venture where no Habitican has gone before: On a Strange Planet."
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"keepIt": "Keep It",
|
||||
"removeIt": "Remove It",
|
||||
"brokenChallenge": "Broken Challenge Link",
|
||||
"challengeCompleted": "This challenge has been completed, and the winner was <span class=\"badge\"><%= user %></span>! What to do with the orphan tasks?",
|
||||
"challengeCompleted": "Challenge Completed!",
|
||||
"unsubChallenge": "Broken Challenge Link: this task was part of a challenge, but you have unsubscribed from the challenge. What to do with the orphan tasks?",
|
||||
"challenges": "Challenges",
|
||||
"endDate": "Ends",
|
||||
@@ -103,11 +103,14 @@
|
||||
"flaggedAndHidden": "Challenge flagged and hidden",
|
||||
"messageChallengeFlagAlreadyReported": "You have already reported this Challenge.",
|
||||
"flaggedNotHidden": "Challenge flagged once, not hidden",
|
||||
"cannotClone": "This Challenge cannot be cloned because one or more players have reported it as inappropriate. A staff member will contact you shortly with instructions. If over 48 hours have passed and you have not heard from them, please email admin@habitica.com for assistance.",
|
||||
"cannotClone": "This Challenge cannot be cloned because one or more players have reported it as inappropriate. A staff member will contact you shortly with instructions. If over 48 hours have passed and you have not heard from them, please e-mail admin@habitica.com for assistance.",
|
||||
"resetFlags": "Reset Flags",
|
||||
"cannotClose": "This Challenge cannot be closed because one or more players have reported it as inappropriate. A staff members will contact you shortly with instructions. If over 48 hours have passed and you have not heard from them, please email admin@habitica.com for assistance.",
|
||||
"cannotClose": "This Challenge cannot be closed because one or more players have reported it as inappropriate. A staff members will contact you shortly with instructions. If over 48 hours have passed and you have not heard from them, please e-mail admin@habitica.com for assistance.",
|
||||
"abuseFlagModalBodyChallenge": "You should only report a Challenge that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Submitting a false report is a violation of Habitica's Community Guidelines.",
|
||||
"cannotMakeChallenge": "You are unable to create public Challenges as your account currently does not have chat privileges. Please contact admin@habitica.com for more information.",
|
||||
"deleteChallengeRefundDescription": "If you delete this Challenge, you will be refunded the Gem prize and the Challenge tasks will remain on the participants' task boards.",
|
||||
"brokenTask": "Broken Challenge Link"
|
||||
"brokenTask": "Broken Challenge Link",
|
||||
"brokenTaskDescription": "This task was part of a challenge, but has been removed from it. What would you like to do?",
|
||||
"brokenChallengeDescription": "This task was part of a challenge, but the challenge (or group) has been deleted. What to do with the orphan tasks?",
|
||||
"challengeCompletedDescription": "The winner was <%= user %>! What to do with the orphan tasks?"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"communityGuidelinesWarning": "Please keep in mind that your Display Name, profile photo, and blurb must comply with the <a href='https://habitica.com/static/community-guidelines' target='_blank'>Community Guidelines</a> (e.g. no profanity, no adult topics, no insults, etc). If you have any questions about whether or not something is appropriate, feel free to email <%= hrefBlankCommunityManagerEmail %>!",
|
||||
"communityGuidelinesWarning": "Please keep in mind that your Display Name, profile photo, and blurb must comply with the <a href='https://habitica.com/static/community-guidelines' target='_blank'>Community Guidelines</a> (e.g. no profanity, no adult topics, no insults, etc). If you have any questions about whether or not something is appropriate, feel free to e-mail <%= hrefBlankCommunityManagerEmail %>!",
|
||||
"profile": "Profile",
|
||||
"avatar": "Customise Avatar",
|
||||
"editAvatar": "Customise Avatar",
|
||||
@@ -63,7 +63,7 @@
|
||||
"gearAchievementNotification": "You have earned the \"Ultimate Gear\" Achievement for upgrading to the maximum gear set for a class!",
|
||||
"moreGearAchievements": "To attain more Ultimate Gear badges, change classes on <a href='/user/settings/site' target='_blank'>the Settings > Site page</a> and buy your new class's gear!",
|
||||
"armoireUnlocked": "For more equipment, check out the <strong>Enchanted Armoire!</strong> Click on the Enchanted Armoire Reward for a random chance at special Equipment! It may also give you random XP or food items.",
|
||||
"ultimGearName": "Ultimate Gear - <%= ultClass %>",
|
||||
"ultimGearName": "Ultimate Gear—<%= ultClass %>",
|
||||
"ultimGearText": "Has upgraded to the maximum weapon and armour set for the <%= ultClass %> class.",
|
||||
"level": "Level",
|
||||
"levelUp": "Level Up!",
|
||||
@@ -193,5 +193,12 @@
|
||||
"customizations": "Customisations",
|
||||
"skins": "Skins",
|
||||
"pointsAvailable": "Points Available",
|
||||
"assignedStat": "Assigned Stat"
|
||||
"assignedStat": "Assigned Stat",
|
||||
"strTaskText": "Increases critical hit chance and damage when scoring tasks. Also increases damage dealt to Quest bosses.",
|
||||
"perTaskText": "Increases item drop chance, daily item drop cap, task streak bonuses, and Gold earned when completing tasks.",
|
||||
"autoAllocate": "Auto Allocate",
|
||||
"allocationMethod": "Allocation Method",
|
||||
"statAllocationInfo": "Each level earns you one point to assign to a Stat of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options.",
|
||||
"conTaskText": "Reduces damage taken from missed Dailies and negative Habits. Does not reduce damage from Quest bosses.",
|
||||
"intTaskText": "Increases Experience earned from tasks. Also increases your Mana cap and Mana regeneration rate."
|
||||
}
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
"commGuideList02C": "<strong>Do not post images or text that are violent, threatening, or sexually explicit/suggestive, or that promote discrimination, bigotry, racism, sexism, hatred, harassment or harm against any individual or group</strong>. Not even as a joke or meme. This includes slurs as well as statements. Not everyone has the same sense of humour, and so something that you consider a joke may be hurtful to another.",
|
||||
"commGuideList02D": "<strong>Be mindful that Habiticans are of all ages and backgrounds</strong>. Challenges and player profiles should not mention adult topics, use profanity, or promote contention or conflict.",
|
||||
"commGuideList02E": "<strong>If a staff member tells you that a term is disallowed on Habitica, even if it is a term that you did not realise was problematic, that decision is final.</strong> Additionally, slurs will be dealt with very severely, as they are also a violation of the Terms of Service.",
|
||||
"commGuideList02G": "<strong>Comply immediately with any Staff request.</strong> This could include, but is not limited to, requesting you limit your posts in a particular space, editing your profile to remove unsuitable content, etc. Do not argue with Staff. If you have concerns or comments about Staff actions, email <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> to contact our community manager.",
|
||||
"commGuideList02G": "<strong>Comply immediately with any Staff request.</strong> This could include, but is not limited to, requesting you limit your posts in a particular space, editing your profile to remove unsuitable content, etc. Do not argue with Staff. If you have concerns or comments about Staff actions, e-mail <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> to contact our community manager.",
|
||||
"commGuideList02J": "<strong>Do not spam</strong>. Spamming may include, but is not limited to: sending multiple unsolicited private messages, sending nonsensical messages, sending multiple promotional messages about a Party or Challenge, or creating multiple similar or low quality Challenges in a row. Staff has discretion to determine what messages are considered spamming.",
|
||||
"commGuideList02K": "<strong>Do not send links without explanation or context</strong>. If players clicking on a link will result in any benefit to you, you need to disclose that. This applies in messages as well as Challenges.",
|
||||
"commGuideList02L": "<strong>We highly discourage the exchange of personal information--particularly information that can be used to identify you</strong>. Identifying information can include but is not limited to: your address, your email, and your password or API token. If you are asked for personal information in a Party chat or private message, we highly recommend that you do not respond, and alert the Staff by either reporting the message or contacting <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> with screenshots of the messages if more context is needed.",
|
||||
"commGuideList02L": "<strong>We highly discourage the exchange of personal information—particularly information that can be used to identify you</strong>. Identifying information can include but is not limited to: your address, your e-mail, and your password or API token. If you are asked for personal information in a Party chat or private message, we highly recommend that you do not respond, and alert the Staff by either reporting the message or contacting <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> with screenshots of the messages if more context is needed.",
|
||||
"commGuidePara037": "<strong>No Guilds, Public or Private, should be created for the purpose of attacking any group or individual</strong>. Creating such a Guild is grounds for an instant ban. Fight bad habits, not your fellow adventurers!",
|
||||
"commGuideHeadingInfractionsEtc": "Infractions, Consequences, and Restoration",
|
||||
"commGuideHeadingInfractions": "Infractions",
|
||||
@@ -27,14 +27,14 @@
|
||||
"commGuideList05A": "Other breaches of the Terms and Conditions not specified here",
|
||||
"commGuideList05B": "Hate Speech/Images, Harassment/Stalking, Cyber-Bullying, Flaming, and Trolling",
|
||||
"commGuideList05C": "Violation of Probation",
|
||||
"commGuideList05D": "Impersonation of Staff - this includes claiming player-created spaces not affiliated with Habitica are official and/or moderated by Habitica or its Staff",
|
||||
"commGuideList05D": "Impersonation of Staff—this includes claiming player-created spaces not affiliated with Habitica are official and/or moderated by Habitica or its Staff",
|
||||
"commGuideList05E": "Repeated Moderate Infractions",
|
||||
"commGuideList05F": "Creation of a duplicate account to avoid consequences",
|
||||
"commGuideList05G": "Intentional deception of Staff in order to avoid consequences or to get another user in trouble",
|
||||
"commGuideHeadingModerateInfractions": "Moderate Infractions",
|
||||
"commGuidePara054": "These infractions will have moderate consequences. When in conjunction with multiple infractions, the consequences may grow more severe.",
|
||||
"commGuidePara055": "The following are some examples of Moderate Infractions. This is not a comprehensive list.",
|
||||
"commGuideList06A": "Ignoring, disrespecting or arguing with Staff. If you are concerned about one of the rules or the behavior of the staff, please contact us at <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>.",
|
||||
"commGuideList06A": "Ignoring, disrespecting or arguing with Staff. If you are concerned about one of the rules or the behaviour of the staff, please contact us at <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>.",
|
||||
"commGuideList06C": "Intentionally flagging innocent Challenges, profiles, or messages.",
|
||||
"commGuideList06E": "Repeatedly Committing Minor Infractions",
|
||||
"commGuideHeadingMinorInfractions": "Minor Infractions",
|
||||
@@ -58,7 +58,7 @@
|
||||
"commGuideList11E": "Edits of problematic content by Staff",
|
||||
"commGuideHeadingRestoration": "Restoration",
|
||||
"commGuidePara061": "Habitica is devoted to self-improvement, and we believe in second chances. <strong>If you commit an infraction and receive a consequence, view it as a chance to evaluate your actions and strive to be a better member of the community</strong>.",
|
||||
"commGuidePara062": "<strong>If you wish to ask questions about your infraction or consequences, apologize, or make a plea for reinstatement, please contact us at <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> with your User ID or @username</strong>. It is <strong>your</strong> responsibility to reach out.",
|
||||
"commGuidePara062": "<strong>If you wish to ask questions about your infraction or consequences, apologise, or make a plea for reinstatement, please contact us at <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> with your User ID or @username</strong>. It is <strong>your</strong> responsibility to reach out.",
|
||||
"commGuidePara063": "If you do not understand your consequences or the nature of your infraction, or if you have other questions related to the matter, you can contact the staff to discuss it at <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>. Cooperate with any restrictions which have been imposed, and endeavor to meet the requirements to have any penalties lifted.",
|
||||
"commGuideHeadingMeet": "Meet the Staff",
|
||||
"commGuidePara007": "The Habitica Staff keep the app and sites running and can act as chat moderators. They have purple tags marked with crowns. Their title is \"Heroic\".",
|
||||
@@ -68,10 +68,10 @@
|
||||
"commGuidePara011b": "on GitHub/Fandom",
|
||||
"commGuidePara011c": "on the Wiki",
|
||||
"commGuidePara011d": "on GitHub",
|
||||
"commGuidePara013": "In a community as big as Habitica, players come and go, and sometimes a Staff member or moderator needs to lay down their noble mantle and relax. The following are Staff and Moderators Emeritus. They no longer act with the power of a Staff member or Moderator, but we would still like to honor their work!",
|
||||
"commGuidePara013": "In a community as big as Habitica, players come and go, and sometimes a Staff member or moderator needs to lay down their noble mantle and relax. The following are Staff and Moderators Emeritus. They no longer act with the power of a Staff member or Moderator, but we would still like to honour their work!",
|
||||
"commGuidePara014": "Staff and Moderators Emeritus:",
|
||||
"commGuideHeadingFinal": "The Final Section",
|
||||
"commGuidePara067": "So there you have it, brave Habitican -- the Community Guidelines! Wipe that sweat off of your brow and give yourself some EXP for reading it all. If you have any questions or concerns about these Community Guidelines, please reach out to us via <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> and we will be happy to help clarify things.",
|
||||
"commGuidePara067": "So there you have it, brave Habitican—the Community Guidelines! Wipe that sweat off your brow and give yourself some EXP for reading it all. If you have any questions or concerns about these Community Guidelines, please reach out to us via <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> and we will be happy to help clarify things.",
|
||||
"commGuidePara068": "Now go forth, brave adventurer, and slay some Dailies!",
|
||||
"commGuideHeadingLinks": "Useful Links",
|
||||
"commGuideLink02": "<a href='https://habitica.fandom.com/wiki/Habitica_Wiki' target='_blank'>The Wiki</a>: the biggest collection of information about Habitica. Note that this space is unofficial, being hosted by Fandom and maintained by players.",
|
||||
|
||||
@@ -190,8 +190,8 @@
|
||||
"hatchingPotionShade": "Shade",
|
||||
"hatchingPotionSkeleton": "Skeleton",
|
||||
"hatchingPotionZombie": "Zombie",
|
||||
"hatchingPotionCottonCandyPink": "Cotton Candy Pink",
|
||||
"hatchingPotionCottonCandyBlue": "Cotton Candy Blue",
|
||||
"hatchingPotionCottonCandyPink": "Candyfloss Pink",
|
||||
"hatchingPotionCottonCandyBlue": "Candyfloss Blue",
|
||||
"hatchingPotionGolden": "Golden",
|
||||
"hatchingPotionSpooky": "Spooky",
|
||||
"hatchingPotionPeppermint": "Peppermint",
|
||||
@@ -249,11 +249,11 @@
|
||||
"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",
|
||||
"foodCakeCottonCandyBlueThe": "the Sweet Blue Cake",
|
||||
"foodCakeCottonCandyBlueA": "a Sweet Blue Cake",
|
||||
"foodCakeCottonCandyPink": "Sweet Pink Cake",
|
||||
"foodCakeCottonCandyPinkThe": "the Sweet Pink Cake",
|
||||
"foodCakeCottonCandyPinkA": "a Sweet Pink Cake",
|
||||
"foodCakeShade": "Chocolate Cake",
|
||||
"foodCakeShadeThe": "the Chocolate Cake",
|
||||
"foodCakeShadeA": "a Chocolate Cake",
|
||||
@@ -272,36 +272,36 @@
|
||||
"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 Sweety",
|
||||
"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",
|
||||
"foodCandySkeleton": "Bare Bones Sweet",
|
||||
"foodCandySkeletonThe": "the Bare Bones Sweet",
|
||||
"foodCandySkeletonA": "Bare Bones Sweet",
|
||||
"foodCandyBase": "Basic Sweet",
|
||||
"foodCandyBaseThe": "the Basic Sweet",
|
||||
"foodCandyBaseA": "Basic Sweet",
|
||||
"foodCandyCottonCandyBlue": "Sour Blue Sweet",
|
||||
"foodCandyCottonCandyBlueThe": "the Sour Blue Sweet",
|
||||
"foodCandyCottonCandyBlueA": "Sour Blue Sweet",
|
||||
"foodCandyCottonCandyPink": "Sour Pink Sweet",
|
||||
"foodCandyCottonCandyPinkThe": "the Sour Pink Sweet",
|
||||
"foodCandyCottonCandyPinkA": "Sour Pink Sweet",
|
||||
"foodCandyShade": "Chocolate Sweet",
|
||||
"foodCandyShadeThe": "the Chocolate Sweet",
|
||||
"foodCandyShadeA": "Chocolate Sweet",
|
||||
"foodCandyWhite": "Vanilla Sweet",
|
||||
"foodCandyWhiteThe": "the Vanilla Sweet",
|
||||
"foodCandyWhiteA": "Vanilla Sweet",
|
||||
"foodCandyGolden": "Honey Sweet",
|
||||
"foodCandyGoldenThe": "the Honey Sweet",
|
||||
"foodCandyGoldenA": "Honey Sweet",
|
||||
"foodCandyZombie": "Rotten Sweet",
|
||||
"foodCandyZombieThe": "the Rotten Sweet",
|
||||
"foodCandyZombieA": "Rotten Sweet",
|
||||
"foodCandyDesert": "Sand Sweet",
|
||||
"foodCandyDesertThe": "the Sand Sweet",
|
||||
"foodCandyDesertA": "Sand Sweet",
|
||||
"foodCandyRed": "Cinnamon Sweet",
|
||||
"foodCandyRedThe": "the Cinnamon Sweet",
|
||||
"foodCandyRedA": "Cinnamon Sweet",
|
||||
"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?",
|
||||
@@ -410,5 +410,6 @@
|
||||
"questEggPlatypusText": "Platypus",
|
||||
"questEggPlatypusMountText": "Platypus",
|
||||
"questEggPlatypusAdjective": "a perfectionist",
|
||||
"hatchingPotionOpal": "Opal"
|
||||
"hatchingPotionOpal": "Opal",
|
||||
"hatchingPotionAlien": "Alien"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"playerTiersDesc": "The coloured usernames you see in chat represent a person's contributor tier. The higher the tier, the more the person has contributed to Habitica through art, code, the community, or more!",
|
||||
"playerTiersDesc": "The coloured usernames you see in chat represent a person’s contributor tier. The higher the tier, the more the person has contributed to Habitica through art, code, the community, or more!",
|
||||
"tier1": "Tier 1 (Friend)",
|
||||
"tier2": "Tier 2 (Friend)",
|
||||
"tier3": "Tier 3 (Elite)",
|
||||
@@ -19,8 +19,8 @@
|
||||
"staff": "Habitica Staff",
|
||||
"heroic": "Heroic",
|
||||
"modalContribAchievement": "Contributor Achievement!",
|
||||
"contribModal": "<%= name %>, you awesome person! You're now a tier <%= level %> contributor for helping Habitica.",
|
||||
"contribLink": "See what prizes you've earned for your contribution!",
|
||||
"contribModal": "<%= name %>, you awesome person! You’re now a tier <%= level %> contributor for helping Habitica.",
|
||||
"contribLink": "See what prizes you’ve earned for your contribution!",
|
||||
"contribName": "Contributor",
|
||||
"contribText": "Has contributed to Habitica, whether via code, art, music, writing, or other methods.",
|
||||
"kickstartName": "Kickstarter Backer - $<%= key %> Tier",
|
||||
@@ -30,7 +30,7 @@
|
||||
"contribLevel": "Contrib Tier",
|
||||
"hallContributors": "Hall of Contributors",
|
||||
"hallPatrons": "Hall of Patrons",
|
||||
"noAdminAccess": "You don't have admin access.",
|
||||
"noAdminAccess": "You don’t have admin access.",
|
||||
"userNotFound": "User not found.",
|
||||
"invalidUUID": "UUID must be valid",
|
||||
"title": "Title",
|
||||
@@ -43,7 +43,7 @@
|
||||
"conRewardsURL": "https://github.com/HabitRPG/habitica/wiki/Contributing-to-Habitica#contributor-tier-rewards",
|
||||
"surveysSingle": "Helped Habitica grow, either by filling out a survey or helping with a major testing effort. Thank you!",
|
||||
"surveysMultiple": "Helped Habitica grow on <%= count %> occasions, either by filling out a survey or helping with a major testing effort. Thank you!",
|
||||
"blurbHallPatrons": "This is the Hall of Patrons, where we honour the noble adventurers who backed Habitica's original Kickstarter. We thank them for helping us bring Habitica to life!",
|
||||
"blurbHallPatrons": "This is the Hall of Patrons, where we honour the noble adventurers who backed Habitica’s original Kickstarter. We thank them for helping us bring Habitica to life!",
|
||||
"blurbHallContributors": "This is the Hall of Contributors, where open-source contributors to Habitica are honoured. Whether through code, art, music, writing, or even just helpfulness, they have earned <a href='https://github.com/HabitRPG/habitica/wiki/Contributing-to-Habitica#contributor-tier-rewards' target='_blank'>Gems, exclusive Equipment</a>, and <a href='https://github.com/HabitRPG/habitica/wiki/Contributing-to-Habitica#contributor-tiers' target='_blank'>prestigious titles</a>. You can contribute to Habitica, too! <a href='https://github.com/HabitRPG/habitica/wiki/Contributing-to-Habitica' target='_blank'>Find out more here.</a>",
|
||||
"noPrivAccess": "You don't have the required privileges."
|
||||
"noPrivAccess": "You don’t have the required privileges."
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"lostAllHealth": "You ran out of Health!",
|
||||
"dontDespair": "Don't despair!",
|
||||
"deathPenaltyDetails": "You lost a Level, your Gold, and a piece of Equipment, but you can get them all back with hard work! Good luck—you'll do great.",
|
||||
"deathPenaltyDetails": "You lost a Level, your Gold, and a piece of Equipment, but you can get them all back with hard work! Good luck—you’ll do brilliantly.",
|
||||
"refillHealthTryAgain": "Refill Health & Try Again",
|
||||
"dyingOftenTips": "Is this happening often? <a href='/static/faq#prevent-damage' target='_blank'>Here are some tips!</a>",
|
||||
"losingHealthWarning": "Careful - You're Losing Health!",
|
||||
"losingHealthWarning": "Careful—You're Losing Health!",
|
||||
"losingHealthWarning2": "Don't let your Health drop to zero! If you do, you'll lose a level, your Gold, and a piece of equipment.",
|
||||
"toRegainHealth": "To regain Health:",
|
||||
"lowHealthTips1": "Level up to fully heal!",
|
||||
|
||||
@@ -52,5 +52,5 @@
|
||||
"workTodoProject": "Work project >> Complete work project",
|
||||
"workDailyImportantTaskNotes": "Tap to specify your most important task",
|
||||
"workDailyImportantTask": "Most important task >> Worked on today’s most important task",
|
||||
"workHabitMail": "Process email"
|
||||
"workHabitMail": "Process e-mail"
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"frequentlyAskedQuestions": "Frequently Asked Questions",
|
||||
"iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), come ask in the Tavern chat under Menu > Tavern! We're happy to help.",
|
||||
"androidFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), use the Ask a Question form! We're happy to help.",
|
||||
"webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), come ask in the [Habitica Help guild](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help.",
|
||||
"webFaqStillNeedHelp": "If you have a question that isn’t on this list or on the [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), use the Ask a Question form [LINK NEEDED]! We're happy to help.",
|
||||
"commonQuestions": "Common Questions",
|
||||
"faqQuestion25": "What are the different task types?",
|
||||
"webFaqAnswer25": "Habitica uses three different task types to accommodate your needs: Habits, Dailies, and To Do’s.\n\nHabits can be positive or negative and represent something you may want to track multiple times per day, or on an unset schedule. Positive Habits will provide you with rewards, like Gold and Experience (Exp), while Negative Habits will cause you to lose health points (HP).\n\nDailies are repeated tasks you want to complete on a more structured schedule. For example, once per day, three times a week, or four times a month. Missing Dailies causes you to lose HP, but the more difficult they are, the better the rewards!\n\nTo Do’s are one-off tasks that provide rewards after you complete them. To Do’s can have a due date, but you won’t lose HP if you miss it.\n\nPick the task type that best fits what you want to achieve!",
|
||||
@@ -17,7 +17,7 @@
|
||||
"faqQuestion65": "Are Group Plans supported on the mobile apps?",
|
||||
"parties": "Parties",
|
||||
"faqQuestion28": "Can I pause my Dailies if I need a break?",
|
||||
"webFaqAnswer26": "Positive Habits (Behaviors you want to encourage; should have a plus button)\n\n * Take vitamins\n * Floss teeth\n * One hour of studying\n\nNegative Habits (Behaviors you want to limit or avoid; should have a minus button)\n\n * Smoking\n * Doom scrolling\n * Biting nails\n\nDual Habits (Habits that involve a positive vs. negative option; should have both plus and minus buttons)\n\n * Drink water vs. drink soda\n * Study vs. procrastinate\n\nSample Dailies (Tasks you want to repeat on a regular schedule)\n * Wash dishes\n * Water plants\n * 30 minutes of physical activity\n\nSample To Do’s (Tasks you only need to do once)\n\n * Schedule appointment\n * Organise closet\n * Finish essay",
|
||||
"webFaqAnswer26": "Positive Habits (Behaviours you want to encourage; should have a plus button)\n\n * Take vitamins\n * Floss teeth\n * One hour of studying\n\nNegative Habits (Behaviours you want to limit or avoid; should have a minus button)\n\n * Smoking\n * Doom scrolling\n * Biting nails\n\nDual Habits (Habits that involve a positive vs. negative option; should have both plus and minus buttons)\n\n * Drink water vs. drink fizzy drink\n * Study vs. procrastinate\n\nSample Dailies (Tasks you want to repeat on a regular schedule)\n * Wash dishes\n * Water plants\n * 30 minutes of physical activity\n\nSample To Do’s (Tasks you only need to do once)\n\n * Schedule appointment\n * Organise closet\n * Finish essay",
|
||||
"webFaqAnswer27": "The colour of a task is a visual representation of the task’s value. All tasks start as yellow for neutral. Blue is better, and red is worse. Here’s how each task type determines the task’s value:\n\nHabits become more blue or red based on whether you tap the plus or minus button. Positive and negative Habits degrade to yellow over time if you don’t complete them. Dual Habits only change colour based on your inputs.\n\nDailies change colour based on how often they are completed, becoming more blue as they’re completed or more red if they’re missed.\n\nTo Do’s gradually get more red the longer they stay incomplete.\n\nThe more red the task, the more Gold and Experience you’ll earn for completing it, so be sure to take on even your toughest tasks!",
|
||||
"webFaqAnswer28": "Yes! The “Pause Damage” button can be found in Settings. It will prevent you from losing HP for missed Dailies. This is helpful if you are on holiday, need a rest, or for any other reason you might need a break. If you are participating in a Quest, your own pending progress will be paused, but you will still take damage from your Party member’s missed Dailies.\n\nTo pause specific Dailies, you can edit the scheduling to make it due every 0 days until you’re ready to restart it.",
|
||||
"webFaqAnswer29": "You can recover 15 HP by purchasing a Health Potion from your Rewards column for 25 Gold. Additionally, you will always recover full HP when you level up!",
|
||||
@@ -29,7 +29,7 @@
|
||||
"webFaqAnswer32": "All players start as the Warrior class until they reach level 10. Once you reach level 10, you’ll be given the choice between selecting a new class or continuing as a Warrior.\n\nEach class has different Equipment and Skills. If you don't want to choose a class, you can select \"Opt Out.\" If you choose to opt out, you can always enable the Class System from Settings later.\n\nIf you’d like to change your class after Level 10, you can do so by using the Orb of Rebirth. The Orb of Rebirth becomes available in the Market for 6 Gems at level 50 or for free at level 100.\n\nAlternatively, you can change class at any time from Settings for 3 Gems. This will not reset your level like Orb of Rebirth, but it will allow you to re-allocate the skill points you’ve accumulated as you’ve levelled up to match your new class.",
|
||||
"faqQuestion33": "What is the blue bar that appears after level 10?",
|
||||
"webFaqAnswer33": "After you unlock the Class System, you also unlock Skills that require Mana to be cast. Mana is determined by your INT stat and can be adjusted by Skills and Equipment.",
|
||||
"webFaqAnswer34": "Pets like Food that matches their colour. Base Pets are the exception, but all Base Pets like the same item. You can see the specific foods each Pet likes below:\n\n * Base Pets like Meat\n * White Pets like Milk\n * Desert Pets like Potatoes\n * Red Pets like Strawberries\n * Shade Pets like Chocolate\n * Skeleton Pets like Fish\n * Zombie Pets like Rotten Meat\n * Cotton Candy Pink Pets like Pink Candyfloss\n * Cotton Candy Blue Pets like Blue Candyfloss\n * Golden Pets like Honey",
|
||||
"webFaqAnswer34": "Pets like Food that matches their colour. Base Pets are the exception, but all Base Pets like the same item. You can see the specific foods each Pet likes below:\n\n * Base Pets like Meat\n * White Pets like Milk\n * Desert Pets like Potatoes\n * Red Pets like Strawberries\n * Shade Pets like Chocolate\n * Skeleton Pets like Fish\n * Zombie Pets like Rotten Meat\n * Candyfloss Pink Pets like Pink Candyfloss\n * Candyfloss Blue Pets like Blue Candyfloss\n * Golden Pets like Honey",
|
||||
"webFaqAnswer35": "Once you’ve fed your Pet enough to raise it into a Mount, you’ll need to hatch that type of Pet again to have it in your stable.\n\nTo view Mounts on the mobile apps:\n\n * From the Menu, select “Pets & Mounts” and switch to the Mounts tab\n\nTo view Mounts on the website:\n\n * From the Inventory menu, select “Pets and Mounts” and scroll down to the Mounts section",
|
||||
"faqQuestion36": "How do I change the appearance of my Avatar?",
|
||||
"webFaqAnswer36": "There are endless ways to customise the appearance of your Habitica Avatar! You can change your Avatar’s body shape, hair style and colour, or skin colour, or add glasses or mobility aids by selecting \"Customise Avatar\" from the menu.\n\nTo customise your Avatar on the mobile apps:\n * From the menu, select “Customise Avatar”\n\nTo customise your Avatar on the website:\n * From the user menu in the navigation, select \"Customise Avatar\"",
|
||||
@@ -37,16 +37,16 @@
|
||||
"webFaqAnswer37": "Check to see if the Costume option is toggled on. If your Avatar is wearing a Costume, that set of Equipment will show instead of your Battle Gear.\n\nTo toggle the Costume on the mobile apps:\n * From the menu, select “Equipment” to find the Costume toggle\n\nTo toggle the Costume on the website:\n * From your Inventory, select “Equipment” and locate the Costume toggle in the Costume tab of the Equipment drawer",
|
||||
"faqQuestion38": "Why can't I purchase certain items?",
|
||||
"webFaqAnswer38": "New Habitica players can only purchase the basic Warrior class Equipment. Players must buy Equipment in sequential order to unlock the next piece.\n\nMany pieces of Equipment are class-specific, which means that a player can only buy Equipment belonging to their current class.",
|
||||
"webFaqAnswer39": "If you’re looking to get more Equipment, you can become a Habitica Subscriber, take a chance on the Enchanted Armoire, or splurge during one of Habitica’s Grand Galas.\n\nHabitica subscribers receive a special exclusive gear set every month and Mystic Hourglasses to buy past Equipment sets from the Time Traveller Shop.\n\nThe Enchanted Armoire treasure chest in your Rewards has over 350 pieces of Equipment! For 100 Gold, you’ll have a chance at receiving either special Equipment, Food to raise your Pet to a Mount, or Experience to level up!\n\nDuring the four seasonal Grand Galas, brand-new class Equipment becomes available for purchase with Gold and previous Gala sets can be purchased with Gems.",
|
||||
"webFaqAnswer39": "If you’re looking to get more Equipment, you can become a Habitica Subscriber, take a chance on the Enchanted Armoire, or splurge during one of Habitica’s Grand Galas.\n\nHabitica subscribers receive a special exclusive gear set every month and Mystic Hourglasses to buy past Equipment sets from the Time Travellers’ Shop.\n\nThe Enchanted Armoire treasure chest in your Rewards has over 350 pieces of Equipment! For 100 Gold, you’ll have a chance at receiving either special Equipment, Food to raise your Pet to a Mount, or Experience to level up!\n\nDuring the four seasonal Grand Galas, brand-new class Equipment becomes available for purchase with Gold and previous Gala sets can be purchased with Gems.",
|
||||
"faqQuestion40": "What are Gems, and how do I get them?",
|
||||
"webFaqAnswer40": "Gems are Habitica’s in-app paid currency used to purchase Equipment, Avatar Customisations, Backgrounds, and more! Gems can be purchased in bundles or with Gold if you’re a Habitica subscriber. You can also win Gems by being selected as the winner of a Challenge.",
|
||||
"webFaqAnswer41": "Mystic Hourglasses are Habitica’s exclusive Subscriber currency used in the Time Travellers Shop. Subscribers receive a Mystic Hourglass at the start of each month they have subscription benefits, along with a bunch of other perks. Be sure to check out our subscription options if you’re interested in the special Backgrounds, Pets, Quests, and Equipment offered in the Time Travellers Shop!",
|
||||
"webFaqAnswer41": "Mystic Hourglasses are Habitica’s exclusive Subscriber currency used in the Time Travellers’ Shop. Subscribers receive a Mystic Hourglass at the start of each month they have subscription benefits, along with a bunch of other perks. Be sure to check out our subscription options if you’re interested in the special Backgrounds, Pets, Quests, and Equipment offered in the Time Travellers’ Shop!",
|
||||
"faqQuestion42": "What can I do to increase accountability?",
|
||||
"webFaqAnswer42": "One of the best ways to motivate yourself and hold yourself accountable for accomplishing your tasks is to join a Party! Partying with other Habitica players is a great way to take on Quests to receive Pets and Equipment, receive buffs from Party members’ Skills, and boost your motivation.\n\nAnother way to increase accountability is to join a Challenge. Challenges automatically add tasks related to a specific goal to your lists! They also add an element of competition against other Habitica players that may motivate you as you strive for the Gem prize. There are official Challenges created by the Habitica Team as well as Challenges made by other players.",
|
||||
"faqQuestion43": "How do I take on Quests?",
|
||||
"webFaqAnswer43": "To begin a Quest, you will need to be a member of a Party. Parties can be solo adventures where you challenge Quests alone, or you can invite other Habitica players to tackle Quests at a quicker rate!\n\nChoose a Quest Scroll from your inventory by selecting the “Begin Quest” button from your Party. Complete your tasks as you normally would to progress on the Quest! You’ll either build up damage against a monster if you’re taking on a Boss Quest, or have a chance to find items if you’re taking on a Collection Quest. All pending progress is applied the next day.\n\nWhen you do enough damage or collect all items, the Quest is complete and you will receive your rewards!",
|
||||
"faqQuestion44": "How can I delete Challenge tasks?",
|
||||
"webFaqAnswer44": "You will need to leave the Challenge or wait for the Challenge to be closed in order to delete the associated tasks. A red megaphone icon implies the Challenge has been closed and a gray megaphone implies the Challenge is still running.\n\nTo delete Challenge tasks on the **Android** app:\n 1. Tap on a task belonging to the Challenge.\n 2. Tap on \"Delete\" in the upper right corner of the screen.\n 3. Choose to remove the Challenge tasks from your task list.\n\nTo delete Challenge tasks on the **iOS** app:\n 1. Find the Challenge task you wish to delete and look at the megaphone icon.\n 2. If the megaphone icon is red, tap on the task and select \"Delete\" at the bottom\n 3. If the megaphone icon is grey, you’ll need to find the Challenge and leave it to remove the task.\n\nTo delete Challenge tasks on the **website**:\n 1. Find the Challenge task you wish to delete and look at the megaphone icon.\n 2. If the megaphone icon is red, click it then choose to remove the tasks from your task list.\n 3. If the megaphone icon is grey, you'll need to find the Challenge and leave it to remove the task.",
|
||||
"webFaqAnswer44": "You will need to leave the Challenge or wait for the Challenge to be closed in order to delete the associated tasks. A red megaphone icon implies the Challenge has been closed and a grey megaphone implies the Challenge is still running.\n\nTo delete Challenge tasks on the **Android** app:\n 1. Tap on a task belonging to the Challenge.\n 2. Tap on \"Delete\" in the upper right corner of the screen.\n 3. Choose to remove the Challenge tasks from your task list.\n\nTo delete Challenge tasks on the **iOS** app:\n 1. Find the Challenge task you wish to delete and look at the megaphone icon.\n 2. If the megaphone icon is red, tap on the task and select \"Delete\" at the bottom\n 3. If the megaphone icon is grey, you’ll need to find the Challenge and leave it to remove the task.\n\nTo delete Challenge tasks on the **website**:\n 1. Find the Challenge task you wish to delete and look at the megaphone icon.\n 2. If the megaphone icon is red, click it then choose to remove the tasks from your task list.\n 3. If the megaphone icon is grey, you'll need to find the Challenge and leave it to remove the task.",
|
||||
"faqQuestion45": "My Avatar transformed into a snowman, starfish, flower, or ghost. How can I change back?",
|
||||
"contentFaqTitle": "Habitica Content Release Change FAQ",
|
||||
"contentFaqPara0": "Habitica has so much fun and engaging content to offer, and we want everyone to be able to enjoy it all! Changes are coming to make it easier for new players to get started on their collection as well as for veteran players to complete theirs!",
|
||||
@@ -64,7 +64,7 @@
|
||||
"contentAnswer22": "Magic Hatching Potions will no longer be tied to Galas and will instead be on their own monthly release schedule themed to the ongoing festivities.",
|
||||
"contentAnswer30": "Shops will rotate a selection of their items every month. This will help keep the amount of content in the shops manageable and easy to browse. The new schedule will offer fresh items to check out each month for newer players while creating a predictable schedule for veteran collectors.",
|
||||
"contentQuestion3": "How is the content release schedule changing?",
|
||||
"contentAnswer300": "<strong>1st of each month:</strong> New Subscriber set is released. Subscriber sets available in the Time Travellers Shop rotate.",
|
||||
"contentAnswer300": "<strong>1st of each month:</strong> New Subscriber set is released. Subscriber sets available in the Time Travellers’ Shop rotate.",
|
||||
"contentAnswer301": "<strong>7th of each month:</strong> New Enchanted Armoire items and one new Background released. Backgrounds available in the Customisation Shop rotate.",
|
||||
"contentAnswer400": "Pet Quests",
|
||||
"contentAnswer401": "Magic Hatching Potion Quests",
|
||||
@@ -82,10 +82,10 @@
|
||||
"contentAnswer60": "All other current events will continue as normal! Everyone will still get their special rewards and themed food as they do now.",
|
||||
"contentAnswer61": "Valentine’s Day and New Year cards will be released on set dates.",
|
||||
"contentQuestion6": "What will happen to other seasonal events, like Habitoween, April Fools’ Day, and Birthday?",
|
||||
"contentQuestion7": "What about other items available in the Time Travellers Shop besides past Subscriber Sets?",
|
||||
"contentQuestion7": "What about other items available in the Time Travellers’ Shop besides past Subscriber Sets?",
|
||||
"contentAnswer63": "Wacky Pets will remain available throughout most of April.",
|
||||
"contentAnswer70": "Backgrounds, Quests, Pets, and Mounts available in the Time Travellers Shop will remain available all year round.",
|
||||
"contentAnswer71": "Stay tuned for further updates on planned improvements to the Time Travellers Shop experience.",
|
||||
"contentAnswer70": "Backgrounds, Quests, Pets, and Mounts available in the Time Travellers’ Shop will remain available all year round.",
|
||||
"contentAnswer71": "Stay tuned for further updates on planned improvements to the Time Travellers’ Shop experience.",
|
||||
"contentFaqPara3": "If you have any questions not covered by the answers above, you can always contact our team at <%= mailto %>! We’re excited for this new content release schedule and looking forward to even more projects in the future to help make Habitica better for all players.",
|
||||
"subscriptionBenefitsAdjustments": "Subscriber Benefit Adjustments",
|
||||
"subscriptionBenefitsFaqTitle": "Subscriber Benefit Adjustments FAQ",
|
||||
@@ -99,7 +99,7 @@
|
||||
"contentAnswer02": "Brand new <strong>Pet Quests, Magic Hatching Potion Quests, and Magic Hatching Potions</strong> will be released to fill out this new schedule!",
|
||||
"contentAnswer03": "Backgrounds, Hair Colours, Hair Styles, Skins, Animal Ears, Animal Tails, and Shirts will now be purchasable from the brand new <strong>Customisation Shop!</strong>",
|
||||
"contentAnswer200": "<strong>Summer Splash</strong>: June 21 to Sept 20",
|
||||
"contentAnswer201": "<strong>Fall Festival</strong>: Sept 21 to Dec 20",
|
||||
"contentAnswer201": "<strong>Autumn Festival</strong>: Sept 21 to Dec 20",
|
||||
"contentAnswer302": "<strong>14th of each month:</strong> Pet Quests, Potion Quests, and Quest Bundles available in the Quest Shop rotate.",
|
||||
"contentAnswer303": "<strong>21st of each month:</strong> Magic Hatching Potions available in the Market rotate.",
|
||||
"contentQuestion4": "What brand-new content is coming?",
|
||||
@@ -114,7 +114,7 @@
|
||||
"subscriptionDetail20": "Under the current structure, it can be difficult to understand how many Mystic Hourglasses you would receive and when.",
|
||||
"subscriptionDetail21": "The four subscription tiers were known to cause complications when upgrading or downgrading to different tiers.",
|
||||
"subscriptionDetail22": "Gifted and recurring subscriptions had conflicting benefit experiences and rules that we wanted to simplify.",
|
||||
"subscriptionDetail24": "We wanted subscribers to have more than four chances per year to collect items from the Time Travellers Shop.",
|
||||
"subscriptionDetail24": "We wanted subscribers to have more than four chances per year to collect items from the Time Travellers’ Shop.",
|
||||
"subscriptionHeading3": "Release day rewards",
|
||||
"subscriptionPara1": "To help ease the transition to the new schedule, existing subscribers can expect some extra goodies on release day. We want to sincerely thank you for your continued support through this change!",
|
||||
"subscriptionDetail30": "Players with recurring 1 month subscriptions or Group Plan subscriptions will receive 2 Mystic Hourglasses and 20 Gems.",
|
||||
@@ -138,7 +138,7 @@
|
||||
"contentAnswer10": "Habitica has been around since 2013 (wow!) and over time we’ve released thousands of items players can collect. This can be overwhelming, especially for new players. We want to be sure that we showcase everything we have to offer, and that excellent items released earlier in our history aren’t overlooked.",
|
||||
"contentAnswer11": "When new players join between Grand Galas they are often unaware of these events and miss out on the fun. We want to be sure all new players can join in on our seasonal festivities no matter when they choose to start their journeys.",
|
||||
"subscriptionDetail00": "All subscribers, including those with gifted subscriptions, will receive 1 Mystic Hourglass at the start of each month they have subscriber benefits.",
|
||||
"subscriptionDetail23": "Giving one Mystic Hourglass per month allows subscribers to enjoy the rotating items in the Time Travellers Shop.",
|
||||
"subscriptionDetail23": "Giving one Mystic Hourglass per month allows subscribers to enjoy the rotating items in the Time Travellers’ Shop.",
|
||||
"subscriptionDetail32": "Players with recurring 12 month subscriptions will receive the 12 Mystic Hourglass bonus noted above and 20 Gems.",
|
||||
"subscriptionDetail001": "All subscribers will receive Mystic Hourglasses on the same schedule, matching the release schedule of the monthly Mystery Gear Sets.",
|
||||
"subscriptionDetail25": "We understand that finances change and we didn’t want to punish subscribers for lapsed subscriptions by taking away benefits they had earned.",
|
||||
@@ -150,7 +150,7 @@
|
||||
"subscriptionDetail110": "If you raise the amount of Gems you can buy each month then cancel your subscription, you can pick back up at the same amount any time in the future, even if you purchase a lower subscription tier.",
|
||||
"subscriptionDetail420": "Just like Mystery Gear Sets, you will not miss out on any Mystic Hourglasses or Gem cap increases if you don’t log in while subscribed. The next time you log in, you will receive all benefits owed for each month you were subscribed.",
|
||||
"subscriptionDetail4400": "If you currently have unlocked <%= initialNumber %> Gems per month, you will be set to <%= roundedNumber %>.",
|
||||
"subscriptionPara3": "We hope this new schedule will be more predictable, allow more access to the amazing stock of items in the Time Travellers Shop, and give even more motivation to make progress on your tasks each month!",
|
||||
"subscriptionPara3": "We hope this new schedule will be more predictable, allow more access to the amazing stock of items in the Time Travellers’ Shop, and give even more motivation to make progress on your tasks each month!",
|
||||
"subscriptionDetail45": "Will purchasing extra gifted subscriptions get me more Mystic Hourglasses or a higher Gem cap faster?",
|
||||
"subscriptionDetail430": "Cancelling a recurring subscription will set a termination date for your benefits, but you will still have full access to all perks of a subscription before that date. That means you will still receive monthly Mystic Hourglasses and Gem cap increases at the start of each month you have access to those benefits.",
|
||||
"subscriptionDetail451": "Each gifted subscription will add to the amount of months a player has subscription benefits, allowing them to continue receiving more Mystic Hourglasses and increases to their Gem cap each passing month.",
|
||||
@@ -162,7 +162,7 @@
|
||||
"faqQuestion48": "Can I play Habitica with others?",
|
||||
"webFaqAnswer48": "Yes, with Parties! You can start your own Party or join an existing one. Partying with other Habitica players is a great way to take on Quests, receive buffs from Party members’ skills, and boost your motivation with additional accountability.",
|
||||
"faqQuestion49": "How do I find a Party when I'm not in one?",
|
||||
"webFaqAnswer49": "If you want to experience Habitica with others but don’t know other players, searching for a Party is your best option! If you already know other players that have a Party, you can share your @username with them to be invited. Alternatively, you can create a new Party and invite them with their @username or email address.\n\nTo create or search for a Party, select “Party” in the navigation menu, then choose the option that works for you.",
|
||||
"webFaqAnswer49": "If you want to experience Habitica with others but don’t know other players, searching for a Party is your best option! If you already know other players that have a Party, you can share your @username with them to be invited. Alternatively, you can create a new Party and invite them with their @username or e-mail address.\n\nTo create or search for a Party, select “Party” in the navigation menu, then choose the option that works for you.",
|
||||
"faqQuestion50": "How does searching for a Party work?",
|
||||
"webFaqAnswer50": "After selecting \"Look for a Party\", you’ll be added to a list of players that want to join a Party. Party leaders can view this list and send invitations. Once you receive an invitation, you can accept it from your notifications to join the Party of your choosing!\n\nYou may get multiple invitations to different Parties. However, you can only be a member of one Party at a time.",
|
||||
"faqQuestion51": "How long can I search for a Party after joining the list?",
|
||||
@@ -174,7 +174,7 @@
|
||||
"faqQuestion54": "How many members can I invite to my Party?",
|
||||
"webFaqAnswer54": "Parties have a maximum limit of 30 members and a minimum of 1 member. Pending invites count towards the member count. For example, 29 members and 1 pending invite would count as 30 members. To clear a pending invite, the invited player must accept or decline, or the Party leader must cancel the invite.",
|
||||
"faqQuestion55": "Can I invite someone I already know?",
|
||||
"webFaqAnswer55": "Yes! If you already have a Habitica player’s username or email address, you can invite them to join your Party. Here’s how to send an invite on the different platforms:\n\nTo invite someone on the mobile apps:\n 1. From the menu, select \"Party\" and scroll down to the Members section\n 2. Tap \"Find Members\" then switch to the \"By Invite\" tab\n 3. Enter the usernames or email addresses of the players you want to invite and click \"Send Invite\"\n\nTo invite someone on the website:\n 1. Navigate to your Party and click \"Invite to Party\"\n 2. Enter the usernames or email addresses of the players you want to invite and click \"Send Invites\"",
|
||||
"webFaqAnswer55": "Yes! If you already have a Habitica player’s username or e-mail address, you can invite them to join your Party. Here’s how to send an invite on the different platforms:\n\nTo invite someone on the mobile apps:\n 1. From the menu, select \"Party\" and scroll down to the Members section\n 2. Tap \"Find Members\" then switch to the \"By Invite\" tab\n 3. Enter the usernames or e-mail addresses of the players you want to invite and click \"Send Invite\"\n\nTo invite someone on the website:\n 1. Navigate to your Party and click \"Invite to Party\"\n 2. Enter the usernames or e-mail addresses of the players you want to invite and click \"Send Invites\"",
|
||||
"faqQuestion56": "How do I cancel a pending invitation to my Party?",
|
||||
"webFaqAnswer56": "To cancel a pending invitation on the mobile apps:\n 1. When viewing your Party, scroll down to the bottom of your Member list\n 2. Find the player whose invite you wish to cancel and tap the “Cancel invitation” button.\n\nTo cancel a pending invitation on the website:\n1. Navigate to your Party’s member list and switch to the “Invites” tab\n 2. Hover the player whose invite you wish to cancel\n 3. Click the three dots and choose “Cancel Invite”",
|
||||
"faqQuestion57": "How do I stop unwanted invitations?",
|
||||
@@ -190,7 +190,7 @@
|
||||
"faqQuestion62": "How do assigned tasks work?",
|
||||
"webFaqAnswer62": "Group Plans give you the unique ability to assign shared tasks to other members of your Group Plan. When a shared task is assigned to a member, other members are prevented from completing it.\n\nYou can also assign a task to multiple members. For example, if everyone has to brush their teeth, create a task and assign it to each member. Each member will be able to complete the task and earn their individual rewards. The main task will show as complete once everyone has completed it.",
|
||||
"faqQuestion63": "How do unassigned tasks work?",
|
||||
"webFaqAnswer63": "Unassigned tasks can be completed by any member. For example, taking out the trash. Whoever takes out the trash can complete the unassigned task and it will show as completed for everyone.",
|
||||
"webFaqAnswer63": "Unassigned tasks can be completed by any member. For example, taking out the rubbish. Whoever takes out the rubbish can complete the unassigned task and it will show as completed for everyone.",
|
||||
"faqQuestion64": "How does the synchronised day reset work?",
|
||||
"webFaqAnswer64": "Shared tasks will reset at the same time for everyone to keep the shared task board in sync. This time is visible on the shared task board and is determined by the Group Plan leader’s day start time. Because shared tasks reset automatically, you will not get a chance to complete yesterday’s uncompleted shared Dailies when you check in the next morning.\n\nShared Dailies will not do damage if they are missed, however they will degrade in colour to help visualise progress.",
|
||||
"webFaqAnswer65": "While the mobile apps don’t fully support all Group Plans functionality yet, you can still complete shared tasks from the iOS and Android apps!\n\nOn Android, you can tap your Display Name at the top of the screen when viewing your tasks to switch to your shared task board. From there you can view members, access your chat, and create, complete, or assign tasks.\n\nYou can also switch on a preference to copy shared tasks to your personal task board so you can complete all your tasks from one place.\n\nTo do this on the mobile apps:\n * Open Settings and switch on “Copy shared tasks”\n\nTo do this on Habitica’s website:\n * Navigate to your Group Plan and switch on the “Copy tasks” toggle on the shared task board",
|
||||
@@ -235,7 +235,7 @@
|
||||
"sunsetFaqList7": "Currently many Challenges have tasks that require posts in Habitica’s public chat spaces. Creators of those Challenges can adapt their tasks or move the chat requirement to posting on an outside service.",
|
||||
"sunsetFaqList8": "Our existing <a href='https://habitica.com/static/faq'>FAQ</a> is a great resource and can be found from the Help menu, or Support on mobile. We are in the process of creating a more comprehensive and improved FAQ to help guide players moving forward.",
|
||||
"sunsetFaqList9": "This <a href='https://habitica.wordpress.com/beginning-adventurers-guide/'>blog post</a> also provides a handy guide for new players.",
|
||||
"sunsetFaqList10": "Players are also encouraged to email <a href='mailto:admin@habitica.com'>admin@habitica.com</a> with any questions for which they cannot find answers in the above links.",
|
||||
"sunsetFaqList10": "Players are also encouraged to e-mail <a href='mailto:admin@habitica.com'>admin@habitica.com</a> with any questions for which they cannot find answers in the above links.",
|
||||
"sunsetFaqPara20": "Habitica’s Community Guidelines will be updated at the time Tavern and Guild service is discontinued. They will reflect that community rules for conduct are now in relation to player profiles, Challenges, and messages in private spaces. Our Terms of Service have always applied to both public and private spaces and do not require an immediate update in regard to this change.",
|
||||
"sunsetFaqHeader12": "What will happen to Guild Bank Gems?",
|
||||
"sunsetFaqPara21": "Gems in the Guild Bank will be refunded to the leader of the Guild on August 8th when Guild Services end.",
|
||||
@@ -243,5 +243,13 @@
|
||||
"contactAdmin": "Contact <a href='mailto:admin@habitica.com'>admin@habitica.com</a>",
|
||||
"webFaqAnswer60": "Here are some quick tips to get you started with your new Habitica Group Plan:\n\n * Promote a member to a manager to give them the ability to create and edit tasks\n * Leave tasks unassigned if anyone can complete it, and it only needs to be done once\n * Assign a task to one person to make sure no one else can complete their task\n * Assign a task to multiple people if they all need to complete it\n * Toggle the ability to display shared tasks on your personal board to not miss anything\n * You get rewarded for the tasks you complete, even multi-assigned\n * Task completion rewards aren’t split between members\n * Use task colour on the team board to judge the average completion rate of tasks\n * Regularly review the tasks on the shared task board to make sure they are still relevant\n * Missing a Daily won’t damage you or your team, but the task will degrade in colour",
|
||||
"webFaqAnswer67": "Classes are different roles that your character can play. Each class provides its own set of unique benefits and skills as you level up. These skills can complement the way you interact with your tasks or help you contribute to completing Quests in your Party.\n\nYour class also determines the Equipment that will be available to you for purchase in your Rewards, the Market, and the Seasonal Shop.\n\nHere’s a rundown of each class to help you choose which one is best suited to your playstyle:\n#### **Warrior**\n* Warriors deal high damage to bosses and have a high chance of critical hits when completing tasks, rewarding you extra Experience and Gold.\n* Strength is their primary stat, raising the damage they do.\n* Constitution is their secondary stat, lowering the damage they take.\n* Warriors' skills buff their Party mates' Constitution and Strength.\n* Consider playing as a Warrior if you love to fight bosses but also want some protection if you miss tasks occasionally.\n#### **Healer**\n* Healers have high defence and can heal themselves as well as their Party mates.\n* Constitution is their primary stat, increasing their heals and lowering the damage they take.\n* Intelligence is their secondary stat, increasing their Mana and Experience.\n* Healers' skills make their tasks less red and buff their Party mates' Constitution.\n* Consider playing as a Healer if you miss tasks often and need the ability to heal yourself or your Party members. Healers also level up quickly.\n#### **Mage**\n* Mages level up quickly, gain lots of Mana, and damage bosses in Quests.\n* Intelligence is their primary stat, increasing their Mana and Experience.\n* Perception is their secondary stat, increasing their Gold and item drops.\n* Mages' skills freeze their task streaks, restore their Party mates' Mana, and buff their Intelligence.\n* Consider playing as a Mage if you are motivated by progressing quickly through levels and contributing damage to boss Quests.\n#### **Rogue**\n* Rogues get the most item drops and Gold from completing tasks, and have a high chance of critical hits, getting even more Experience and Gold.\n* Perception is their primary stat, increasing their Gold and item drops.\n* Strength is their secondary stat, raising the damage they do.\n* Rogues' skills help them dodge missed Dailies, pilfer Gold, and buff their Party mates’ Perception.\n* Consider playing as a Rogue if you’re highly motivated by rewards.",
|
||||
"sunsetFaqPara2": "Habitica’s primary purpose is and has always been to provide a gamified task management experience. Taverns and Guilds helped motivate players by helping them find others with similar goals. Some truly wonderful spaces were created and we had a chance to see the community thrive with helpful discussion. As the years passed, we noticed changes in how players use and rely on Habitica. Parties flourished, while Guilds and public spaces were used by less and less of our player base. In an ever changing internet landscape, the resources necessary to maintain these spaces became too disproportionate to the number of people actually participating in them."
|
||||
"sunsetFaqPara2": "Habitica’s primary purpose is and has always been to provide a gamified task management experience. Taverns and Guilds helped motivate players by helping them find others with similar goals. Some truly wonderful spaces were created and we had a chance to see the community thrive with helpful discussion. As the years passed, we noticed changes in how players use and rely on Habitica. Parties flourished, while Guilds and public spaces were used by less and less of our player base. In an ever changing internet landscape, the resources necessary to maintain these spaces became too disproportionate to the number of people actually participating in them.",
|
||||
"faqQuestion68": "How do I prevent losing HP?",
|
||||
"faqQuestion69": "What are character stats?",
|
||||
"webFaqAnswer68": "If you find yourself losing HP often, try some of these tips:\n\n- Pause your Dailies. The \"Pause Damage\" button in Settings will prevent you from losing HP for missed Dailies.\n- Adjust the schedule of your Dailies. By setting them to never be due, you can still complete them for rewards without risking HP loss.\n- Try using class skills:\n\t- Rogues can cast Stealth to prevent damage from missed Dailies\n\t- Warriors can cast Brutal Smash to reduce a Daily's redness, lowering damage taken if missed\n\t- Healers can cast Searing Brightness to reduce Dailies' redness, lowering damage taken if missed",
|
||||
"faqQuestion70": "What are stat points?",
|
||||
"webFaqAnswer70": "Stat points let you increase your character's core stats. You earn one stat point each time you level up (up to level 100), which you can assign manually or automatically using the Automatic Allocation feature. Stat allocation unlocks with the Class System at level 10.",
|
||||
"faqQuestion71": "How does Automatic Allocation work?",
|
||||
"webFaqAnswer69": "All players have four character stats that provide different benefits:\n\n* Strength—Increases critical hit chance and damage when scoring tasks. Also increases damage dealt to Quest bosses.\n* Intelligence—Increases Experience earned from tasks. Also increases your Mana cap and Mana regeneration rate.\n* Constitution—Reduces damage taken from missed Dailies and negative Habits. Does not reduce damage from Quest bosses.\n* Perception—Increases item drop chance, daily item drop cap, task streak bonuses, and Gold earned when completing tasks.\n\nStats can be increased through stat point allocation, Equipment, class skills, and levelling up. You also gain one bonus point to all stats every two levels, up to level 100.",
|
||||
"webFaqAnswer71": "The Automatic Allocation feature automatically assigns stat points according to one of the following distribution methods:\n\n* Distribute evenly—Assigns the same number of points to each attribute\n* Distribute based on class—Assigns more points to the attributes important to your class\n* Distribute based on task activity—Assigns points based on Strength, Intelligence, Constitution, and Perception categories associated with the tasks you complete\n\nIf you choose not to use Automatic Allocation, you can manually assign your stat points from the Stats section."
|
||||
}
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
"companyContribute": "Contributing to Habitica",
|
||||
"companyDonate": "Donate to Habitica",
|
||||
"forgotPassword": "Forgot Password?",
|
||||
"emailNewPass": "Email a Password Reset Link",
|
||||
"forgotPasswordSteps": "Enter your username or the email address you used to register your Habitica account.",
|
||||
"emailNewPass": "E-mail a Password Reset Link",
|
||||
"forgotPasswordSteps": "Enter your username or the e-mail address you used to register your Habitica account.",
|
||||
"sendLink": "Send Link",
|
||||
"featuredIn": "Featured in",
|
||||
"footerDevs": "Developers",
|
||||
@@ -21,16 +21,16 @@
|
||||
"free": "Join for free",
|
||||
"guidanceForBlacksmiths": "Guidance for Blacksmiths",
|
||||
"history": "History",
|
||||
"invalidEmail": "A valid email address is required in order to perform a password reset.",
|
||||
"invalidEmail": "A valid e-mail address is required in order to perform a password reset.",
|
||||
"login": "Log In",
|
||||
"logout": "Log Out",
|
||||
"marketing1Header": "Build better habits one level at a time!",
|
||||
"marketing1Lead1Title": "Gamify your life",
|
||||
"marketing1Lead1": "Habitica is the perfect app for anyone who struggles with to-do lists. We use familiar game mechanics like rewarding you with Gold, Experience, and items to help you feel productive and boost your sense of accomplishment when you complete tasks. The better you are at your tasks, the more you progress in the game.",
|
||||
"marketing1Lead1": "Habitica is the perfect app for anyone who struggles with to-do lists. We use familiar game mechanisms like rewarding you with Gold, Experience, and items to help you feel productive and boost your sense of accomplishment when you complete tasks. The better you are at your tasks, the more you progress in the game.",
|
||||
"marketing1Lead2Title": "Gear up in style",
|
||||
"marketing1Lead2": "Collect swords, armour, and much more with the Gold you earn from completing tasks. With hundreds of pieces to collect and choose from, you'll never run out of combinations to try. Optimise for stats, style, or both! ",
|
||||
"marketing1Lead3Title": "Get rewarded for your effort",
|
||||
"marketing1Lead3": "Having something to look forward to can be the difference between getting a task done, or having it taunt you for weeks. When life doesn't offer a reward, Habitica has you covered! You’ll be rewarded for every task, but surprises are around every corner–so keep up your progress! ",
|
||||
"marketing1Lead3": "Having something to look forward to can be the difference between getting a task done, or having it taunt you for weeks. When life doesn’t offer a reward, Habitica has you covered! You’ll be rewarded for every task, but surprises are around every corner—so keep up your progress! ",
|
||||
"marketing2Header": "Team up with friends",
|
||||
"marketing2Lead1Title": "Social productivity",
|
||||
"marketing2Lead1": "Get a boost of motivation by collaborating, competing, and interacting with others! Habitica is built to harness the most effective part of any self-improvement program: social accountability.",
|
||||
@@ -74,7 +74,7 @@
|
||||
"pkAnswer7": "Habitica uses pixel art for several reasons. In addition to the fun nostalgia factor, pixel art is very approachable to our volunteer artists who want to chip in. It's much easier to keep our pixel art consistent even when lots of different artists contribute, and it lets us quickly generate a ton of new content!",
|
||||
"pkQuestion8": "How has Habitica affected people's real lives?",
|
||||
"pkAnswer8": "You can find lots of testimonials for how Habitica has helped people here: https://habitversary.tumblr.com",
|
||||
"pkMoreQuestions": "Do you have a question that’s not on this list? Send an email to admin@habitica.com!",
|
||||
"pkMoreQuestions": "Do you have a question that’s not on this list? Send an e-mail to admin@habitica.com!",
|
||||
"pkPromo": "Promos",
|
||||
"pkLogo": "Logos",
|
||||
"pkBoss": "Bosses",
|
||||
@@ -93,7 +93,7 @@
|
||||
"localStorageClear": "Clear Data",
|
||||
"localStorageClearExplanation": "This button will clear local storage and most cookies, and log you out.",
|
||||
"username": "Username",
|
||||
"emailOrUsername": "Username or Email (case-sensitive)",
|
||||
"emailOrUsername": "Username or E-mail (case-sensitive)",
|
||||
"work": "Work",
|
||||
"reportAccountProblems": "Report Account Problems",
|
||||
"reportCommunityIssues": "Report Community Issues",
|
||||
@@ -104,27 +104,27 @@
|
||||
"tweet": "Tweet",
|
||||
"checkOutMobileApps": "Check out our mobile apps!",
|
||||
"missingAuthHeaders": "Missing authentication headers.",
|
||||
"missingUsernameEmail": "Missing username or email.",
|
||||
"missingEmail": "Missing email.",
|
||||
"missingUsernameEmail": "Missing username or e-mail.",
|
||||
"missingEmail": "Missing e-mail.",
|
||||
"missingUsername": "Missing username.",
|
||||
"missingPassword": "Missing password.",
|
||||
"missingNewPassword": "Missing new password.",
|
||||
"invalidEmailDomain": "You cannot register with emails with the following domains: <%= domains %>",
|
||||
"invalidEmailDomain": "You cannot register with e-mails with the following domains: <%= domains %>",
|
||||
"wrongPassword": "Password is incorrect. If you forgot your password, click \"Forgot Password.\"",
|
||||
"incorrectDeletePhrase": "Please type <%= magicWord %> in all capital letters to delete your account.",
|
||||
"notAnEmail": "Invalid email address.",
|
||||
"emailTaken": "Email address is already used in an account.",
|
||||
"newEmailRequired": "Missing new email address.",
|
||||
"notAnEmail": "Invalid e-mail address.",
|
||||
"emailTaken": "E-mail address is already used in an account.",
|
||||
"newEmailRequired": "Missing new e-mail address.",
|
||||
"usernameTime": "It's time to set your username!",
|
||||
"usernameInfo": "Login names are now unique usernames that will be visible beside your display name and used for invitations, chat @mentions, and messaging.<br><br>If you'd like to learn more about this change, <a href='https://habitica.fandom.com/wiki/Player_Names' target='_blank'>visit our wiki</a>.",
|
||||
"usernameTOSRequirements": "Usernames must conform to our <a href='/static/terms' target='_blank'>Terms of Service</a> and <a href='/static/community-guidelines' target='_blank'>Community Guidelines</a>. If you didn’t previously set a login name, your username was auto-generated.",
|
||||
"usernameTaken": "Username already taken.",
|
||||
"passwordConfirmationMatch": "Password confirmation doesn't match password.",
|
||||
"passwordResetPage": "Reset Password",
|
||||
"passwordReset": "If we have your email or username on file, instructions for setting a new password have been sent to your email.",
|
||||
"invalidLoginCredentialsLong": "Your email, username, or password are incorrect. Please try again or use \"Forgot Password\".",
|
||||
"passwordReset": "If we have your e-mail or username on file, instructions for setting a new password have been sent to your e-mail.",
|
||||
"invalidLoginCredentialsLong": "Your e-mail, username, or password are incorrect. Please try again or use \"Forgot Password\".",
|
||||
"invalidCredentials": "There is no account that uses those credentials.",
|
||||
"accountSuspended": "Your account @<%= username %> has been blocked. For additional information, or to request an appeal, email admin@habitica.com with your Habitica username or User ID.",
|
||||
"accountSuspended": "Your account @<%= username %> has been blocked. For additional information, or to request an appeal, e-mail admin@habitica.com with your Habitica username or User ID.",
|
||||
"accountSuspendedTitle": "Account has been suspended",
|
||||
"unsupportedNetwork": "This network is not currently supported.",
|
||||
"cantDetachSocial": "Account lacks another authentication method; can't detach this authentication method.",
|
||||
@@ -132,7 +132,7 @@
|
||||
"invalidReqParams": "Invalid request parameters.",
|
||||
"memberIdRequired": "\"member\" must be a valid UUID.",
|
||||
"heroIdRequired": "\"heroId\" must be a valid UUID.",
|
||||
"cannotFulfillReq": "This email address is already in use. You can try logging in or use a different email to register. If you need help, reach out to admin@habitica.com.",
|
||||
"cannotFulfillReq": "This e-mail address is already in use. You can try logging in or use a different e-mail to register. If you need help, reach out to admin@habitica.com.",
|
||||
"modelNotFound": "This model does not exist.",
|
||||
"signUpWithSocial": "Continue with <%= social %>",
|
||||
"loginWithSocial": "Log in with <%= social %>",
|
||||
@@ -163,7 +163,7 @@
|
||||
"schoolAndWork": "School and Work",
|
||||
"schoolAndWorkDesc": "Whether you're preparing a report for your teacher or your boss, it's easy to keep track of your progress as you tackle your toughest tasks.",
|
||||
"muchmuchMore": "And much, much more!",
|
||||
"muchmuchMoreDesc": "Our fully customisable task list means that you can shape Habitica to fit your personal goals. Work on creative projects, emphasise self-care, or pursue a different dream -- it's all up to you.",
|
||||
"muchmuchMoreDesc": "Our fully customisable task list means that you can shape Habitica to fit your personal goals. Work on creative projects, emphasise self-care, or pursue a different dream—it’s all up to you.",
|
||||
"levelUpAnywhere": "Level Up Anywhere",
|
||||
"levelUpAnywhereDesc": "Our mobile apps make it simple to keep track of your tasks on-the-go. Accomplish your goals with a single tap, no matter where you are.",
|
||||
"joinMany": "Join over <%= userCountInMillions %> million people having fun while accomplishing their goals!",
|
||||
@@ -185,6 +185,9 @@
|
||||
"missingClientHeader": "Missing x-client headers.",
|
||||
"emailBlockedRegistration": "This E-Mail is blocked from registration. If you think this is a mistake, please contact us at admin@habitica.com.",
|
||||
"minPasswordLengthLogin": "Your password is at least 8 characters long.",
|
||||
"enterValidEmail": "Please enter a valid email address.",
|
||||
"whatToCallYou": "What should we call you?"
|
||||
"enterValidEmail": "Please enter a valid e-mail address.",
|
||||
"whatToCallYou": "What should we call you?",
|
||||
"acceptPrivacyTOS": "You confirm that you are at least 18 years old, and that you have read and agree to our <a href='/static/terms' target='_blank'>Terms of Service</a> and <a href='/static/privacy' target='_blank'>Privacy Policy</a>",
|
||||
"emailAddress": "E-mail address",
|
||||
"emailRequiredForSupport": "We require an e-mail address for user support. Please enter an e-mail address to continue creating your account."
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@
|
||||
"onward": "Onward!",
|
||||
"done": "Done",
|
||||
"gotIt": "Got it!",
|
||||
"titleTimeTravelers": "Time Travellers",
|
||||
"titleTimeTravelers": "Time Travellers’",
|
||||
"titleSeasonalShop": "Seasonal Shop",
|
||||
"saveEdits": "Save Edits",
|
||||
"showMore": "Show More",
|
||||
@@ -63,7 +63,7 @@
|
||||
"costumeContest": "Costume Contestant",
|
||||
"costumeContestText": "Participated in the Habitoween Costume Contest. See some of the awesome entries at blog.habitrpg.com!",
|
||||
"costumeContestTextPlural": "Participated in <%= count %> Habitoween Costume Contests. See some of the awesome entries at blog.habitrpg.com!",
|
||||
"newPassSent": "If we have your email on file, instructions for setting a new password have been sent to your email.",
|
||||
"newPassSent": "If we have your e-mail on file, instructions for setting a new password have been sent to your e-mail.",
|
||||
"error": "Error",
|
||||
"menu": "Menu",
|
||||
"notifications": "Notifications",
|
||||
@@ -85,7 +85,7 @@
|
||||
"audioTheme_lunasolTheme": "Lunasol Theme",
|
||||
"audioTheme_spacePenguinTheme": "SpacePenguin's Theme",
|
||||
"audioTheme_maflTheme": "MAFL Theme",
|
||||
"audioTheme_pizildenTheme": "Pizilden's Theme",
|
||||
"audioTheme_pizildenTheme": "Pizilden’s Theme",
|
||||
"audioTheme_farvoidTheme": "Farvoid Theme",
|
||||
"reportBug": "Report a Bug",
|
||||
"overview": "Overview for New Users",
|
||||
@@ -93,10 +93,10 @@
|
||||
"achievementStressbeast": "Saviour of Stoïkalm",
|
||||
"achievementStressbeastText": "Helped defeat the Abominable Stressbeast during the 2014 Winter Wonderland Event!",
|
||||
"achievementBurnout": "Saviour of the Flourishing Fields",
|
||||
"achievementBurnoutText": "Helped defeat Burnout and restore the Exhaust Spirits during the 2015 Fall Festival Event!",
|
||||
"achievementBurnoutText": "Helped defeat Burnout and restore the Exhaust Spirits during the 2015 Autumn Festival Event!",
|
||||
"achievementBewilder": "Saviour of Mistiflying",
|
||||
"achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!",
|
||||
"achievementDysheartener": "Savior of the Shattered",
|
||||
"achievementDysheartener": "Saviour of the Shattered",
|
||||
"achievementDysheartenerText": "Helped defeat the Dysheartener during the 2018 Valentine's Event!",
|
||||
"cards": "Cards",
|
||||
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||
@@ -161,7 +161,7 @@
|
||||
"wonChallengeShare": "I won a challenge in Habitica!",
|
||||
"orderBy": "Order By <%= item %>",
|
||||
"you": "(you)",
|
||||
"loading": "Loading...",
|
||||
"loading": "Loading…",
|
||||
"userIdRequired": "User ID is required",
|
||||
"resetFilters": "Clear all filters",
|
||||
"applyFilters": "Apply Filters",
|
||||
@@ -204,7 +204,7 @@
|
||||
"leaveHabitica": "You are about to leave Habitica.com",
|
||||
"leaveHabiticaText": "Habitica is not responsible for the content of any linked website that is not owned or operated by HabitRPG.<br>Please note that these websites' practices may differ from Habitica’s community guidelines.",
|
||||
"allNotifications": "All Notifications",
|
||||
"reportEmailPlaceholder": "Your email address",
|
||||
"reportEmailPlaceholder": "Your e-mail address",
|
||||
"reportDescriptionText": "Include screenshots or Javascript console errors if helpful.",
|
||||
"reportSent": "Thank you for your submission!",
|
||||
"reportSentDescription": "We’ll get back to you once our team has a chance to review.",
|
||||
@@ -219,7 +219,7 @@
|
||||
"refreshList": "Refresh List",
|
||||
"skipExternalLinkModal": "Hold CTRL (Windows) or Command (Mac) when clicking a link to skip this modal.",
|
||||
"general": "General",
|
||||
"reportEmailError": "Please provide a valid email address",
|
||||
"reportEmailError": "Please provide a valid e-mail address",
|
||||
"reportDescription": "Description",
|
||||
"reportDescriptionPlaceholder": "Describe the bug in detail here",
|
||||
"submitBugReport": "Submit Bug Report",
|
||||
@@ -243,5 +243,7 @@
|
||||
"targetUserNotExist": "Target User: '<%= userName %>' does not exist.",
|
||||
"rememberToBeKind": "Please remember to be kind, respectful, and follow the <a href='/static/community-guidelines' target='_blank'>Community Guidelines</a>.",
|
||||
"gem": "Gem",
|
||||
"confirmPurchase": "Confirm Purchase"
|
||||
"confirmPurchase": "Confirm Purchase",
|
||||
"avoidSPI": "Avoid SPI",
|
||||
"avoidSPIDetails": "For your privacy, avoid including <%= firstLink %>sensitive personal information<%= linkClose %> (SPI) when using Habitica. Your account data, including tasks, is stored on our servers so you can access it from any device.<br><br>To learn more, review our <%= secondLink %>Privacy Policy<%= linkClose %>."
|
||||
}
|
||||
|
||||
@@ -98,14 +98,14 @@
|
||||
"leaderOnlyChallenges": "Only the group leader can create challenges",
|
||||
"sendGift": "Send Gift",
|
||||
"inviteFriends": "Invite Friends",
|
||||
"inviteByEmail": "Invite by Email",
|
||||
"inviteMembersHowTo": "Invite people via a valid email or 36-digit User ID. If an email isn't registered yet, we'll invite them to join Habitica.",
|
||||
"inviteByEmail": "Invite by E-mail",
|
||||
"inviteMembersHowTo": "Invite people via a valid e-mail or 36-digit User ID. If an e-mail isn't registered yet, we'll invite them to join Habitica.",
|
||||
"sendInvitations": "Send Invites",
|
||||
"invitationsSent": "Invitations sent!",
|
||||
"invitationSent": "Invitation sent!",
|
||||
"invitedFriend": "Invited a Friend",
|
||||
"invitedFriendText": "This user invited a friend (or friends) who joined them on their adventure!",
|
||||
"inviteLimitReached": "You have already sent the maximum number of email invitations. We have a limit to prevent spamming, however if you would like more, please contact us at <%= techAssistanceEmail %> and we'll be happy to discuss it!",
|
||||
"inviteLimitReached": "You have already sent the maximum number of e-mail invitations. We have a limit to prevent spamming. However, if you would like more, please contact us at <%= techAssistanceEmail %> and we'll be happy to discuss it!",
|
||||
"sendGiftHeading": "Send Gift to <%= name %>",
|
||||
"sendGiftGemsBalance": "From <%= number %> Gems",
|
||||
"sendGiftCost": "Total: $<%= cost %> USD",
|
||||
@@ -129,8 +129,8 @@
|
||||
"memberCannotRemoveYourself": "You cannot remove yourself!",
|
||||
"groupMemberNotFound": "User not found among group's members",
|
||||
"mustBeGroupMember": "Must be member of the group.",
|
||||
"canOnlyInviteEmailUuid": "Can only invite using User IDs, emails, or usernames.",
|
||||
"inviteMissingEmail": "Missing email address in invite.",
|
||||
"canOnlyInviteEmailUuid": "Can only invite using User IDs, e-mails, or usernames.",
|
||||
"inviteMissingEmail": "Missing e-mail address in invite.",
|
||||
"inviteMustNotBeEmpty": "Invite must not be empty.",
|
||||
"partyMustbePrivate": "Parties must be private",
|
||||
"userAlreadyInGroup": "UserID: <%= userId %>, User \"<%= username %>\" already in that group.",
|
||||
@@ -141,9 +141,9 @@
|
||||
"userAlreadyInAParty": "UserID: <%= userId %>, User \"<%= username %>\" already in a party.",
|
||||
"userWithIDNotFound": "User with ID \"<%= userId %>\" not found.",
|
||||
"userWithUsernameNotFound": "User with username \"<%= username %>\" not found.",
|
||||
"userHasNoLocalRegistration": "User does not have a local registration (username, email, password).",
|
||||
"userHasNoLocalRegistration": "User does not have a local registration (username, e-mail, password).",
|
||||
"uuidsMustBeAnArray": "User ID invites must be an array.",
|
||||
"emailsMustBeAnArray": "Email address invites must be an array.",
|
||||
"emailsMustBeAnArray": "E-mail address invites must be an array.",
|
||||
"usernamesMustBeAnArray": "Username invites must be an array.",
|
||||
"canOnlyInviteMaxInvites": "You can only invite \"<%= maxInvites %>\" at a time",
|
||||
"partyExceedsMembersLimit": "Party size is limited to <%= maxMembersParty %> members",
|
||||
@@ -161,7 +161,7 @@
|
||||
"userRequestsApproval": "<strong><%= userName %></strong> requests approval",
|
||||
"userCountRequestsApproval": "<strong><%= userCount %> members</strong> request approval",
|
||||
"youAreRequestingApproval": "You are requesting approval",
|
||||
"chatPrivilegesRevoked": "You cannot do this because your chat privileges have been removed. For details or to ask if your privileges can be returned, please email our Community Manager at admin@habitica.com or ask your parent or guardian to email them. Please include your @Username in the email. If a moderator has already told you that your chat ban is temporary, you do not need to send an email.",
|
||||
"chatPrivilegesRevoked": "You cannot do this because your chat privileges have been removed. For details or to ask if your privileges can be returned, please e-mail our Community Manager at admin@habitica.com or ask your parent or guardian to e-mail them. Please include your @Username in the e-mail. If a moderator has already told you that your chat ban is temporary, you do not need to send an e-mail.",
|
||||
"to": "To:",
|
||||
"from": "From:",
|
||||
"assignTask": "Assign Task",
|
||||
@@ -215,9 +215,9 @@
|
||||
"liked": "Liked",
|
||||
"inviteToGuild": "Invite to Group",
|
||||
"inviteToParty": "Invite to Party",
|
||||
"inviteEmailUsername": "Invite via Email or Username",
|
||||
"inviteEmailUsernameInfo": "Invite users via a valid email or username. If an email isn't registered yet, we'll invite them to join.",
|
||||
"emailOrUsernameInvite": "Email address or username",
|
||||
"inviteEmailUsername": "Invite via E-mail or Username",
|
||||
"inviteEmailUsernameInfo": "Invite users via a valid e-mail or username. If an e-mail isn't registered yet, we'll invite them to join.",
|
||||
"emailOrUsernameInvite": "E-mail address or username",
|
||||
"messageGuildLeader": "Message Group Leader",
|
||||
"donateGems": "Donate Gems",
|
||||
"updateGuild": "Update Group",
|
||||
@@ -288,7 +288,7 @@
|
||||
"worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks",
|
||||
"worldBoss": "World Boss",
|
||||
"groupPlanTitle": "Need More for Your Crew?",
|
||||
"groupPlanDesc": "Organizing the household chores or managing a small class project? Habitica’s Group Plans provide a shared task experience and dedicated chat space to help you and your group stay motivated.",
|
||||
"groupPlanDesc": "Organising the household chores or managing a small class project? Habitica’s Group Plans provide a shared task experience and dedicated chat space to help you and your group stay motivated.",
|
||||
"billedMonthly": "*billed as a monthly subscription",
|
||||
"teamBasedTasksList": "Shared Task Board",
|
||||
"teamBasedTasksListDesc": "Group members can all work from the same task board to ensure the group is staying on top of things. Complete tasks from the shared task board or copy them to your personal tasks to complete them on the go.",
|
||||
@@ -316,9 +316,9 @@
|
||||
"whatIsGroupManagerDesc": "A Group Manager is a user role that do not have access to the group's billing details, but can create, assign, and approve shared Tasks for the Group's members. Promote Group Managers from the Group’s member list.",
|
||||
"goToTaskBoard": "Go to Task Board",
|
||||
"sharedCompletion": "Completion Condition",
|
||||
"recurringCompletion": "None - Group task does not complete",
|
||||
"singleCompletion": "Single - Completes when any assigned user finishes",
|
||||
"allAssignedCompletion": "All - Completes when all assigned users finish",
|
||||
"recurringCompletion": "None—Group task does not complete",
|
||||
"singleCompletion": "Single—Completes when any assigned user finishes",
|
||||
"allAssignedCompletion": "All—Completes when all assigned users finish",
|
||||
"pmReported": "Thank you for reporting this message.",
|
||||
"groupActivityNotificationTitle": "<%= user %> posted in <%= group %>",
|
||||
"suggestedGroup": "Suggested because you’re new to Habitica.",
|
||||
@@ -428,5 +428,17 @@
|
||||
"groupManager": "Using for work",
|
||||
"groupTeacher": "Using for education",
|
||||
"groupPlanBillingFYI": "Group Plan subscriptions will automatically renew unless you cancel at least 24 hours before the end of your current period. You can cancel from the Group Billing tab of your Group Plan. You will be charged within 24 hours before your subscription renews, based on the number of members in your Group Plan at that time. If you add members between payment periods, you will see an additional pro-rated charge for their benefits in your next billing cycle.",
|
||||
"groupPlanBillingFYIShort": "Group Plan subscriptions will automatically renew unless you cancel at least 24 hours before the end of your current period. You can cancel from the Group Billing tab of your Group Plan. You will be charged within 24 hours before your subscription renews, based on the number of members in your Group Plan at that time. If you add members between payment periods, you will see an additional pro-rated charge for their benefits in your next billing cycle."
|
||||
"groupPlanBillingFYIShort": "Group Plan subscriptions will automatically renew unless you cancel at least 24 hours before the end of your current period. You can cancel from the Group Billing tab of your Group Plan. You will be charged within 24 hours before your subscription renews, based on the number of members in your Group Plan at that time. If you add members between payment periods, you will see an additional pro-rated charge for their benefits in your next billing cycle.",
|
||||
"chooseAnOption": "Choose an Option",
|
||||
"upgradeExistingGroup": "Upgrade an Existing Group",
|
||||
"createNewGroup": "Create a New Group",
|
||||
"yourParty": "Your Party",
|
||||
"perMember": "per member",
|
||||
"additionalMembersProrated": "Additional members invited during the month will be added to the next invoice cycle's total as a pro-rated charge.",
|
||||
"oneMember": "1 member",
|
||||
"membersCount": "<%= count %> members",
|
||||
"pendingCount": "(<%= count %> pending)",
|
||||
"previouslyUpgradedGroup": "Previously upgraded Group",
|
||||
"inviteOthersForAdditional": "Invite others to your Group for an additional",
|
||||
"upgradeCancelsPendingInvites": "Upgrading your Party will cancel all pending invites"
|
||||
}
|
||||
|
||||
@@ -20,18 +20,18 @@
|
||||
"turkey": "Turkey",
|
||||
"gildedTurkey": "Gilded Turkey",
|
||||
"polarBearPup": "Polar Bear Cub",
|
||||
"jackolantern": "Jack-O-Lantern",
|
||||
"ghostJackolantern": "Ghost Jack-O-Lantern",
|
||||
"glowJackolantern": "Glow-in-the-Dark Jack-O-Lantern",
|
||||
"jackolantern": "Jack-o’-Lantern",
|
||||
"ghostJackolantern": "Ghost Jack-o’-Lantern",
|
||||
"glowJackolantern": "Glow-in-the-Dark Jack-o’-Lantern",
|
||||
"seasonalShop": "Seasonal Shop",
|
||||
"seasonalShopClosedTitle": "<%= linkStart %>Leslie<%= linkEnd %>",
|
||||
"seasonalShopTitle": "<%= linkStart %>Seasonal Sorceress<%= linkEnd %>",
|
||||
"seasonalShopClosedText": "The Seasonal Shop is currently closed!! It’s only open during Habitica’s four Grand Galas.",
|
||||
"seasonalShopSummerText": "Happy Summer Splash!! Would you like to buy some rare items? Be sure to get them before the Gala ends!",
|
||||
"seasonalShopFallText": "Happy Fall Festival!! Would you like to buy some rare items? Be sure to get them before the Gala ends!",
|
||||
"seasonalShopFallText": "Happy Autumn Festival!! Would you like to buy some rare items? Be sure to get them before the Gala ends!",
|
||||
"seasonalShopWinterText": "Happy Winter Wonderland!! Would you like to buy some rare items? Be sure to get them before the Gala ends!",
|
||||
"seasonalShopSpringText": "Happy Spring Fling!! Would you like to buy some rare items? Be sure to get them before the Gala ends!",
|
||||
"seasonalShopFallTextBroken": "Oh.... Welcome to the Seasonal Shop... We're stocking autumn Seasonal Edition goodies, or something... Everything here will be available to purchase during the Fall Festival event each year, but we're only open until 31 October... I guess you should to stock up now, or you'll have to wait... and wait... and wait... <strong>*sigh*</strong>",
|
||||
"seasonalShopFallTextBroken": "Oh… Welcome to the Seasonal Shop… We’re stocking autumn Seasonal Edition goodies, or something… Everything here will be available to purchase during the Autumn Festival event each year, but we’re only open until 31 October… I guess you should stock up now, or you’ll have to wait… and wait… and wait… <strong>*sigh*</strong>",
|
||||
"seasonalShopBrokenText": "My pavilion!!!!!!! My decorations!!!! Oh, the Dysheartener's destroyed everything :( Please help defeat it in the Tavern so I can rebuild!",
|
||||
"seasonalShopRebirth": "If you bought any of this equipment in the past but don't currently own it, you can repurchase it in the Rewards Column. Initially, you'll only be able to purchase the items for your current class (Warrior by default), but fear not, the other class-specific items will become available if you switch to that class.",
|
||||
"candycaneSet": "Candy Cane (Mage)",
|
||||
@@ -147,7 +147,7 @@
|
||||
"fall2019RavenSet": "Raven (Warrior)",
|
||||
"fall2019LichSet": "Lich (Healer)",
|
||||
"fall2019CyclopsSet": "Cyclops (Mage)",
|
||||
"fall2019OperaticSpecterSet": "Operatic Specter (Rogue)",
|
||||
"fall2019OperaticSpecterSet": "Operatic Spectre (Rogue)",
|
||||
"summer2019HammerheadRogueSet": "Hammerhead (Rogue)",
|
||||
"summer2019ConchHealerSet": "Conch (Healer)",
|
||||
"summer2019WaterLilyMageSet": "Water Lily (Mage)",
|
||||
@@ -164,11 +164,11 @@
|
||||
"fall2020TwoHeadedRogueSet": "Two-Headed (Rogue)",
|
||||
"fall2020ThirdEyeMageSet": "Third Eye (Mage)",
|
||||
"fall2020DeathsHeadMothHealerSet": "Death's Head Moth (Healer)",
|
||||
"royalPurpleJackolantern": "Royal Purple Jack-O-Lantern",
|
||||
"royalPurpleJackolantern": "Royal Purple Jack-o’-Lantern",
|
||||
"g1g1Limitations": "This is a limited time event that starts on <%= promoStartMonth %> <%= promoStartOrdinal %> at <%= promoStartTime %> and will end <%= promoEndMonth %> <%= promoEndOrdinal %> at <%= promoEndTime %>. This promotion only applies when you gift to another Habitican. If you or your gift recipient already have a subscription, the gifted subscription will add months of credit that will only be used after the current subscription is cancelled or expires.",
|
||||
"limitations": "Limitations",
|
||||
"howItWorks": "How it Works",
|
||||
"g1g1Returning": "In honor of the season, we’re bringing back a very special promotion. Now when you gift a subscription, you’ll receive the same in return!",
|
||||
"g1g1Returning": "In honour of the season, we’re bringing back a very special promotion. Now when you gift a subscription, you’ll receive the same in return!",
|
||||
"g1g1Event": "Gift One, Get One event going on now!",
|
||||
"g1g1": "Gift One, Get One",
|
||||
"winter2021HollyIvyRogueSet": "Holly and Ivy (Rogue)",
|
||||
@@ -282,5 +282,13 @@
|
||||
"summer2025ScallopWarriorSet": "Scallop Set (Warrior)",
|
||||
"summer2025SquidRogueSet": "Squid Set (Rogue)",
|
||||
"summer2025SeaAngelHealerSet": "Sea Angel Set (Healer)",
|
||||
"summer2025FairyWrasseMageSet": "Fairy Wrasse Set (Mage)"
|
||||
"summer2025FairyWrasseMageSet": "Fairy Wrasse Set (Mage)",
|
||||
"spring2026FrogWarriorSet": "Frog Set (Warrior)",
|
||||
"spring2026BranchRogueSet": "Spring Branch Set (Rogue)",
|
||||
"spring2026SnowdropHealerSet": "Snowdrop Set (Healer)",
|
||||
"spring2026MaypoleMageSet": "Maypole Set (Mage)",
|
||||
"winter2026RimeReaperWarriorSet": "Rime Reaper Set (Warrior)",
|
||||
"winter2026SkiRogueSet": "Ski Set (Rogue)",
|
||||
"winter2026PolarBearHealerSet": "Polar Bear Set (Healer)",
|
||||
"winter2026MidwinterCandleMageSet": "Midwinter Candle Set (Mage)"
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"messageAlreadyOwnGear": "You already own this item. Equip it by going to the equipment page.",
|
||||
"previousGearNotOwned": "You need to purchase a lower level gear before this one.",
|
||||
"messageHealthAlreadyMax": "You already have maximum health.",
|
||||
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it's too late to buy a health potion, but don't worry - you can revive!",
|
||||
"messageHealthAlreadyMin": "Oh no! You have already run out of health so it’s too late to buy a health potion, but don’t worry—you can revive!",
|
||||
"armoireEquipment": "<%= image %> You found a piece of rare Equipment in the Armoire: <%= dropText %>! Awesome!",
|
||||
"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!",
|
||||
@@ -39,7 +39,7 @@
|
||||
"messageGroupChatFlagAlreadyReported": "You have already reported this message",
|
||||
"messageGroupChatNotFound": "Message not found!",
|
||||
"messageGroupChatAdminClearFlagCount": "Only an admin can clear the flag count!",
|
||||
"messageCannotFlagSystemMessages": "You cannot report 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 our Community Manager at <%= communityManagerEmail %>.",
|
||||
"messageCannotFlagSystemMessages": "You cannot report a system message. If you need to report a violation of the Community Guidelines related to this message, please e-mail a screenshot and explanation to our Community Manager at <%= communityManagerEmail %>.",
|
||||
"messageCannotLeaveWhileQuesting": "You cannot accept this party invitation while you are in a quest. If you'd like to join this party, you must first abort your quest, which you can do from your party screen. You will be given back the quest scroll.",
|
||||
"messageUserOperationProtected": "path `<%= operation %>` was not saved, as it's a protected path.",
|
||||
"messageNotificationNotFound": "Notification not found.",
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
{
|
||||
|
||||
"jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly",
|
||||
|
||||
"jsDisabledHeadingFull": "Alas! Your browser doesn’t have JavaScript enabled and without it, Habitica can’t work properly",
|
||||
"jsDisabledLink": "Please enable JavaScript to continue!"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
"mattBoch": "Matt Boch",
|
||||
"mattBochText1": "Welcome to the stable! I’m Matt, the beastmaster. Every time you complete a task, you'll have a random chance at receiving an Egg or a Hatching Potion to hatch Pets. When you hatch a Pet, it will appear here! Click a Pet's image to add it to your Avatar. Feed them with the Pet Food you find, and they'll grow into hardy Mounts.",
|
||||
"welcomeToTavern": "Welcome to The Tavern!",
|
||||
"sleepDescription": "Need a break? Pause Damage (located in Settings) to pause some of Habitica's more difficult game mechanics:",
|
||||
"sleepBullet1": "Your missed Dailies won't damage you (bosses will still do damage caused by other Party member's missed Dailies)",
|
||||
"sleepDescription": "Need a break? Pause Damage (located in Settings) to pause some of Habitica’s more difficult game mechanisms:",
|
||||
"sleepBullet1": "Your missed Dailies won’t damage you (bosses will still do damage caused by other Party members’ missed Dailies)",
|
||||
"sleepBullet2": "Your Task streaks and Habit counters will not reset",
|
||||
"sleepBullet3": "Your damage to the Quest boss or found collection items will remain pending until you resume Damage",
|
||||
"pauseDailies": "Pause Damage",
|
||||
@@ -93,7 +93,7 @@
|
||||
"toDo": "To Do",
|
||||
"tourStatsPage": "This is your Stats page! Earn achievements by completing the listed tasks.",
|
||||
"tourTavernPage": "Welcome to the Tavern, an all-ages chat room! You can keep your Dailies from hurting you in case of illness or travel by clicking \"Pause Damage\". Come say hi!",
|
||||
"tourPartyPage": "Welcome to your new Party! You can invite other players to your Party by username, email, or from a list of players looking for a Party to earn the exclusive Basi-List Quest Scroll.<br/><br/>Select <a href='/static/faq#parties'>FAQ</a> from the Help dropdown to learn more about how Parties work.",
|
||||
"tourPartyPage": "Welcome to your new Party! You can invite other players to your Party by username, e-mail, or from a list of players looking for a Party to earn the exclusive Basi-List Quest Scroll.<br/><br/>Select <a href='/static/faq#parties'>FAQ</a> from the Help dropdown to learn more about how Parties work.",
|
||||
"tourChallengesPage": "Challenges are themed task lists created by users! Joining a Challenge will add its tasks to your account. Compete against other users to win Gem prizes!",
|
||||
"tourMarketPage": "Every time you complete a task, you'll have a random chance at receiving an Egg, a Hatching Potion, or a piece of Pet Food. You can also buy these items here.",
|
||||
"tourHallPage": "Welcome to the Hall of Heroes, where open-source contributors to Habitica are honoured. Whether through code, art, music, writing, or even just helpfulness, they have earned Gems, exclusive Equipment, and prestigious titles. You can contribute to Habitica, too!",
|
||||
@@ -112,7 +112,7 @@
|
||||
"welcome3notes": "As you improve your life, your avatar will level up and unlock pets, quests, equipment, and more!",
|
||||
"limitedOffer": "Available until <%= date %>",
|
||||
"paymentAutoRenew": "This subscription will auto-renew until it is cancelled. If you need to cancel this subscription, you can do so from your settings.",
|
||||
"paymentCanceledDisputes": "We’ve sent a cancellation confirmation to your email. If you don’t see the email, please contact us to prevent future billing disputes.",
|
||||
"paymentCanceledDisputes": "We’ve sent a cancellation confirmation to your e-mail. If you don’t see the e-mail, please contact us to prevent future invoice disputes.",
|
||||
"cannotUnpinItem": "This item cannot be unpinned.",
|
||||
"paymentSubBillingWithMethod": "Your subscription will be billed<br><strong>$<%= amount %>.00 USD</strong> every <strong><%= months %> month(s) </strong> via <strong><%= paymentMethod %></strong>.",
|
||||
"invalidUnlockSet": "This set of items is invalid and cannot be unlocked.",
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"needTips": "Need some tips on how to begin? Here's a straightforward guide!",
|
||||
"needTips": "Need some tips on how to begin? Here’s a straightforward guide!",
|
||||
"step1": "Step 1: Enter Tasks",
|
||||
"webStep1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them! All tasks can be added by clicking the green \"Create\" button.\n* **Set up [To Do's](https://habitica.fandom.com/wiki/To_Do%27s):** Enter tasks you do once or rarely in the To Do's column, one at a time. You can click on the tasks to edit them and add checklists, due dates, and more!\n* **Set up [Dailies](http://habitica.fandom.com/wiki/Dailies):** Enter activities you need to do daily or on a particular day of the week, month, or year in the Dailies column. Click task to edit when it will be due and/or set a start date. You can also make it due on a repeating basis, for example, every 3 days.\n* **Set up [Habits](http://habitica.fandom.com/wiki/Habits):** Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit :heavy_plus_sign: or a bad habit :heavy_minus_sign:\n* **Set up [Rewards](http://habitica.fandom.com/wiki/Rewards):** In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!\n* If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.fandom.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.fandom.com/wiki/Sample_Dailies), [Sample To Do's](https://habitica.fandom.com/wiki/Sample_To_Do%27s), and [Sample Rewards](http://habitica.fandom.com/wiki/Sample_Custom_Rewards).",
|
||||
"webStep1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them! All tasks can be added by clicking the green “Create” button.\n* **Set up [To Do’s](https://habitica.fandom.com/wiki/To_Do%27s):** Enter tasks you do once or rarely in the To Do’s column, one at a time. You can click on the tasks to edit them and add checklists, due dates, and more!\n* **Set up [Dailies](http://habitica.fandom.com/wiki/Dailies):** Enter activities you need to do daily or on a particular day of the week, month, or year in the Dailies column. Click the task to edit when it will be due and/or set a start date. You can also make it due on a repeating basis; for example, every 3 days.\n* **Set up [Habits](http://habitica.fandom.com/wiki/Habits):** Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit :heavy_plus_sign: or a bad habit :heavy_minus_sign:\n* **Set up [Rewards](http://habitica.fandom.com/wiki/Rewards):** In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It’s important to give yourself a break or allow some indulgence in moderation!\n* If you need inspiration for which tasks to add, you can look at the wiki’s pages on [Sample Habits](http://habitica.fandom.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.fandom.com/wiki/Sample_Dailies), [Sample To Do’s](https://habitica.fandom.com/wiki/Sample_To_Do%27s), and [Sample Rewards](http://habitica.fandom.com/wiki/Sample_Custom_Rewards).",
|
||||
"step2": "Step 2: Gain Points by Doing Things in Real Life",
|
||||
"webStep2Text": "Now, start tackling your goals from the list! As you complete tasks and check them off in Habitica, you will gain [Experience](https://habitica.fandom.com/wiki/Experience_Points), which helps you level up, and [Gold](https://habitica.fandom.com/wiki/Gold_Points), which allows you to purchase Rewards. If you fall into bad habits or miss your Dailies, you will lose [Health](https://habitica.fandom.com/wiki/Health_Points). In that way, the Habitica Experience and Health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.",
|
||||
"webStep2Text": "Now, start tackling your goals from the list! As you complete tasks and check them off in Habitica, you will gain [Experience](https://habitica.fandom.com/wiki/Experience_Points), which helps you level up, and [Gold](https://habitica.fandom.com/wiki/Gold_Points), which allows you to purchase Rewards. If you fall into bad habits or miss your Dailies, you will lose [Health](https://habitica.fandom.com/wiki/Health_Points). In that way, the Habitica Experience and Health bars serve as a fun indicator of your progress toward your goals. You’ll start seeing your real life improve as your character advances in the game.",
|
||||
"step3": "Step 3: Customise and Explore Habitica",
|
||||
"webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organise your Tasks with [tags](https://habitica.fandom.com/wiki/Tags) (edit a Task to add them).\n * Customise your [Avatar](https://habitica.fandom.com/wiki/Avatar) by clicking the user icon in the upper-right corner.\n * Buy your [Equipment](https://habitica.fandom.com/wiki/Equipment) under Rewards or from the [Shops](<%= shopUrl %>), and change it under [Inventory > Equipment](<%= equipUrl %>).\n * Connect with other users via the [Looking for Party tool](https://habitica.com/looking-for-party).\n * Hatch [Pets](https://habitica.fandom.com/wiki/Pets) by collecting [Eggs](https://habitica.fandom.com/wiki/Eggs) and [Hatching Potions](https://habitica.fandom.com/wiki/Hatching_Potions). [Feed](https://habitica.fandom.com/wiki/Food) them to create [Mounts](https://habitica.fandom.com/wiki/Mounts).\n * At level 10: Choose a particular [Class](https://habitica.fandom.com/wiki/Class_System) and then use Class-specific [skills](https://habitica.fandom.com/wiki/Skills) (levels 11 to 14).\n * Form a Party with your friends (by clicking [Party](<%= partyUrl %>) in the navigation bar) to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [Quests](https://habitica.fandom.com/wiki/Quests) (you will be given a quest at level 15).",
|
||||
"overviewQuestionsRevised": "Have questions? Check out the <a href='/static/faq'>FAQ</a>! If your question isn't mentioned there, you can ask for further help using this form: "
|
||||
"webStep3Text": "Once you’re familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organise your Tasks with [tags](https://habitica.fandom.com/wiki/Tags) (edit a Task to add them).\n * Customise your [Avatar](https://habitica.fandom.com/wiki/Avatar) by clicking the user icon in the upper-right corner.\n * Buy your [Equipment](https://habitica.fandom.com/wiki/Equipment) under Rewards or from the [Shops](<%= shopUrl %>), and change it under [Inventory > Equipment](<%= equipUrl %>).\n * Connect with other users via the [Looking for Party tool](https://habitica.com/looking-for-party).\n * Hatch [Pets](https://habitica.fandom.com/wiki/Pets) by collecting [Eggs](https://habitica.fandom.com/wiki/Eggs) and [Hatching Potions](https://habitica.fandom.com/wiki/Hatching_Potions). [Feed](https://habitica.fandom.com/wiki/Food) them to create [Mounts](https://habitica.fandom.com/wiki/Mounts).\n * At level 10: Choose a particular [Class](https://habitica.fandom.com/wiki/Class_System) and then use Class-specific [skills](https://habitica.fandom.com/wiki/Skills) (levels 11 to 14).\n * Form a Party with your friends (by clicking [Party](<%= partyUrl %>) in the navigation bar) to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [Quests](https://habitica.fandom.com/wiki/Quests) (you will be given a quest at level 15).",
|
||||
"overviewQuestionsRevised": "Have questions? Check out the <a href='/static/faq'>FAQ</a>! If your question isn’t mentioned there, you can ask for further help using this form: "
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
"mustLvlQuest": "You must be level <%= level %> to buy this quest!",
|
||||
"unlockByQuesting": "To unlock this quest, complete <%= title %>.",
|
||||
"questConfirm": "Are you sure you want to start this Quest? Not all Party members have accepted the Quest invite. Quests start automatically after all members respond to the invite.",
|
||||
"sureCancel": "Are you sure you want to cancel this Quest? Canceling the Quest will cancel all accepted and pending invitations. The Quest will be returned to the owner's inventory.",
|
||||
"sureCancel": "Are you sure you want to cancel this Quest? Cancelling the Quest will cancel all accepted and pending invitations. The Quest will be returned to the owner's inventory.",
|
||||
"sureAbort": "Are you sure you want to cancel this Quest? All progress will be lost. The Quest will be returned to the owner's inventory.",
|
||||
"bossRageDescription": "When this bar fills, the boss will unleash a special attack!",
|
||||
"startQuest": "Start Quest",
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
{
|
||||
"questEvilSantaText": "Trapper Santa",
|
||||
"questEvilSantaNotes": "You hear agonised roars deep in the icefields. You follow the growls - punctuated by the sound of cackling - to a clearing in the woods, where you see a fully-grown polar bear. She's caged and shackled, fighting for her life. Dancing atop the cage is a malicious little imp wearing a castaway costume. Vanquish Trapper Santa, and save the beast!<br><br><strong>Note</strong>: “Trapper Santa” awards a stackable quest achievement but gives a rare mount that can only be added to your stable once.",
|
||||
"questEvilSantaNotes": "You hear agonised roars deep in the icefields. You follow the growls—punctuated by the sound of cackling—to a clearing in the woods, where you see a fully-grown polar bear. She’s caged and shackled, fighting for her life. Dancing atop the cage is a malicious little imp wearing a castaway costume. Vanquish Trapper Santa, and save the beast!<br><br><strong>Note</strong>: “Trapper Santa” awards a stackable quest achievement but gives a rare mount that can only be added to your stable once.",
|
||||
"questEvilSantaCompletion": "Trapper Santa squeals in anger, and bounces off into the night. The grateful she-bear, through roars and growls, tries to tell you something. You take her back to the stables, where Matt Boch, the Beast Master, listens to her tale with a gasp of horror. She has a cub! He ran off into the icefields when mama bear was captured.",
|
||||
"questEvilSantaBoss": "Trapper Santa",
|
||||
"questEvilSantaDropBearCubPolarMount": "Polar Bear (Mount)",
|
||||
"questEvilSanta2Text": "Find the Cub",
|
||||
"questEvilSanta2Notes": "When Trapper Santa captured the polar bear mount, her cub ran off into the icefields. You hear twig-snaps and snow crunch through the crystalline sound of the forest. Paw prints! You start racing to follow the trail. Find all the prints and broken twigs, and retrieve the cub!<br><br><strong>Note</strong>: “Find the Cub” awards a stackable quest achievement but gives a rare pet that can only be added to your stable once.",
|
||||
"questEvilSanta2Completion": "You've found the cub! It will keep you company forever.",
|
||||
"questEvilSanta2Completion": "You’ve found the cub! It will keep you company forever.",
|
||||
"questEvilSanta2CollectTracks": "Tracks",
|
||||
"questEvilSanta2CollectBranches": "Broken Twigs",
|
||||
"questEvilSanta2DropBearCubPolarPet": "Polar Bear (Pet)",
|
||||
"questGryphonText": "The Fiery Gryphon",
|
||||
"questGryphonNotes": "The grand beast master, <strong>baconsaur</strong>, has come to your party seeking help. \"Please, adventurers, you must help me! My prized gryphon has broken free and is terrorising Habit City! If you can stop her, I could reward you with some of her eggs!\"",
|
||||
"questGryphonCompletion": "Defeated, the mighty beast ashamedly slinks back to its master. \"My word! Well done, adventurers!\" <strong>baconsaur</strong> exclaims, \"Please, have some of the gryphon's eggs. I am sure you will raise these young ones well!\"",
|
||||
"questGryphonCompletion": "Defeated, the mighty beast ashamedly slinks back to its master. “My word! Well done, adventurers!” <strong>baconsaur</strong> exclaims, “Please, have some of the gryphon’s eggs. I am sure you will raise these young ones well!”",
|
||||
"questGryphonBoss": "Fiery Gryphon",
|
||||
"questGryphonDropGryphonEgg": "Gryphon (Egg)",
|
||||
"questGryphonUnlockText": "Unlocks Gryphon Eggs for purchase in the Market",
|
||||
@@ -23,14 +23,14 @@
|
||||
"questHedgehogDropHedgehogEgg": "Hedgehog (Egg)",
|
||||
"questHedgehogUnlockText": "Unlocks Hedgehog Eggs for purchase in the Market",
|
||||
"questGhostStagText": "The Spirit of Spring",
|
||||
"questGhostStagNotes": "Ahh, Spring. The time of year when colour once again begins to fill the landscape. Gone are the cold, snowy mounds of winter. Where frost once stood, vibrant plant life takes its place. Luscious green leaves fill in the trees, grass returns to its former vivid hue, a rainbow of flowers rise along the plains, and a white mystical fog covers the land! ... Wait. Mystical fog? \"Oh no,\" <strong>InspectorCaracal</strong> says apprehensively, \"It would appear that some kind of spirit is the cause of this fog. Oh, and it is charging right at you.\"",
|
||||
"questGhostStagNotes": "Ahh, Spring. The time of year when colour once again begins to fill the landscape. Gone are the cold, snowy mounds of winter. Where frost once stood, vibrant plant life takes its place. Luscious green leaves fill in the trees, grass returns to its former vivid hue, a rainbow of flowers rise along the plains, and a white mystical fog covers the land! …Wait. Mystical fog? “Oh no,” <strong>InspectorCaracal</strong> says apprehensively, “It would appear that some kind of spirit is the cause of this fog. Oh, and it is charging right at you.”",
|
||||
"questGhostStagCompletion": "The spirit, seemingly unwounded, lowers its nose to the ground. A calming voice envelops your party. \"I apologise for my behaviour. I have only just awoken from my slumber, and it would appear my wits have not completely returned to me. Please take these as a token of my apology.\" A cluster of eggs materialise on the grass before the spirit. Without another word, the spirit runs off into the forest with flowers falling in his wake.",
|
||||
"questGhostStagBoss": "Ghost Stag",
|
||||
"questGhostStagDropDeerEgg": "Deer (Egg)",
|
||||
"questGhostStagUnlockText": "Unlocks Deer Eggs for purchase in the Market",
|
||||
"questRatText": "The Rat King",
|
||||
"questRatNotes": "Rubbish! Massive piles of unchecked Dailies are lying all across Habitica. The problem has become so serious that hordes of rats are now seen everywhere. You notice @Pandah petting one of the beasts lovingly. She explains that rats are gentle creatures that feed on unchecked Dailies. The real problem is that the Dailies have fallen into the sewer, creating a dangerous pit that must be cleared. As you descend into the sewers, a massive rat, with blood red eyes and mangled yellow teeth, attacks you, defending its horde. Will you cower in fear or face the fabled Rat King?",
|
||||
"questRatCompletion": "Your final strike saps the gargantuan rat's strength, his eyes fading to a dull grey. The beast splits into many tiny rats, which scurry off in fright. You notice @Pandah standing behind you, looking at the once mighty creature. She explains that the citizens of Habitica have been inspired by your courage and are quickly completing all their unchecked Dailies. She warns you that we must be vigilant, for should we let down our guard, the Rat King will return. As payment, @Pandah offers you several rat eggs. Noticing your uneasy expression, she smiles, \"They make wonderful pets.\"",
|
||||
"questRatCompletion": "Your final strike saps the gargantuan rat’s strength, his eyes fading to a dull grey. The beast splits into many tiny rats, which scurry off in fright. You notice @Pandah standing behind you, looking at the once mighty creature. She explains that the citizens of Habitica have been inspired by your courage and are quickly completing all their unchecked Dailies. She warns you that we must be vigilant, for should we let down our guard, the Rat King will return. As payment, @Pandah offers you several rat eggs. Noticing your uneasy expression, she smiles, “They make wonderful pets.”",
|
||||
"questRatBoss": "Rat King",
|
||||
"questRatDropRatEgg": "Rat (Egg)",
|
||||
"questRatUnlockText": "Unlocks Rat Eggs for purchase in the Market",
|
||||
@@ -47,138 +47,138 @@
|
||||
"questHarpyDropParrotEgg": "Parrot (Egg)",
|
||||
"questHarpyUnlockText": "Unlocks Parrot Eggs for purchase in the Market",
|
||||
"questRoosterText": "Rooster Rampage",
|
||||
"questRoosterNotes": "For years the farmer @extrajordinary has used Roosters as an alarm clock. But now a giant Rooster has appeared, crowing louder than any before – and waking up everyone in Habitica! The sleep-deprived Habiticans struggle through their daily tasks. @Pandoro decides the time has come to put a stop to this. \"Please, is there anyone who can teach that Rooster to crow quietly?\" You volunteer, approaching the Rooster early one morning – but it turns, flapping its giant wings and showing its sharp claws, and crows a battle cry.",
|
||||
"questRoosterNotes": "For years the farmer @extrajordinary has used Roosters as an alarm clock. But now a giant Rooster has appeared, crowing louder than any before—and waking up everyone in Habitica! The sleep-deprived Habiticans struggle through their daily tasks. @Pandoro decides the time has come to put a stop to this. “Please, is there anyone who can teach that Rooster to crow quietly?” You volunteer, approaching the Rooster early one morning—but it turns, flapping its giant wings and showing its sharp claws, and crows a battle cry.",
|
||||
"questRoosterCompletion": "With finesse and strength, you have tamed the wild beast. Its ears, once filled with feathers and half-remembered tasks, are now clear as day. It crows at you quietly, snuggling its beak into your shoulder. The next day you’re set to take your leave, but @EmeraldOx runs up to you with a covered basket. “Wait! When I went into the farmhouse this morning, the Rooster had pushed these against the door where you slept. I think he wants you to have them.” You uncover the basket to see three delicate eggs.",
|
||||
"questRoosterBoss": "Rooster",
|
||||
"questRoosterDropRoosterEgg": "Rooster (Egg)",
|
||||
"questRoosterUnlockText": "Unlocks Rooster Eggs for purchase in the Market",
|
||||
"questSpiderText": "The Icy Arachnid",
|
||||
"questSpiderNotes": "As the weather starts cooling down, delicate frost begins appearing on Habiticans' windowpanes in lacy webs... except for @Arcosine, whose windows are frozen completely shut by the Frost Spider currently taking up residence in his home. Oh dear.",
|
||||
"questSpiderCompletion": "The Frost Spider collapses, leaving behind a small pile of frost and a few of her enchanted egg sacs. @Arcosine rather hurriedly offers them to you as a reward--perhaps you could raise some non-threatening spiders as pets of your own?",
|
||||
"questSpiderNotes": "As the weather starts cooling down, delicate frost begins appearing on Habiticans’ windowpanes in lacy webs… except for @Arcosine, whose windows are frozen completely shut by the Frost Spider currently taking up residence in his home. Oh dear.",
|
||||
"questSpiderCompletion": "The Frost Spider collapses, leaving behind a small pile of frost and a few of her enchanted egg sacs. @Arcosine rather hurriedly offers them to you as a reward—perhaps you could raise some non-threatening spiders as pets of your own?",
|
||||
"questSpiderBoss": "Spider",
|
||||
"questSpiderDropSpiderEgg": "Spider (Egg)",
|
||||
"questSpiderUnlockText": "Unlocks Spider Eggs for purchase in the Market",
|
||||
"questGroupVice": "Vice the Shadow Wyrm",
|
||||
"questVice1Text": "Vice, Part 1: Free Yourself of the Dragon's Influence",
|
||||
"questVice1Notes": "They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.<br><br>How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!",
|
||||
"questVice1Boss": "Vice's Shade",
|
||||
"questVice1Completion": "With Vice's influence over you dispelled, you feel a surge of strength you didn't know you had return to you. Congratulations! But a more frightening foe awaits...",
|
||||
"questVice1Text": "Vice, Part 1: Free Yourself of the Dragon’s Influence",
|
||||
"questVice1Notes": "They say there lies a terrible evil in the caverns of Mt. Habitica: a monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.<br><br>How can you expect to fight the beast if it already has control over you? Don’t fall victim to laziness and vice! Work hard to fight against the dragon’s dark influence and dispel his hold on you!",
|
||||
"questVice1Boss": "Vice’s Shade",
|
||||
"questVice1Completion": "With Vice’s influence over you dispelled, you feel a surge of strength you didn’t know you had return to you. Congratulations! But a more frightening foe awaits…",
|
||||
"questVice1DropVice2Quest": "Vice Part 2 (Scroll)",
|
||||
"questVice2Text": "Vice, Part 2: Find the Lair of the Wyrm",
|
||||
"questVice2Notes": "Confident in yourselves and your ability to withstand the influence of Vice the Shadow Wyrm, your Party makes its way to Mt. Habitica. You approach the entrance to the mountain's caverns and pause. Swells of shadows, almost like fog, wisp out from the opening. It is near impossible to see anything in front of you. The light from your lanterns seem to end abruptly where the shadows begin. It is said that only magical light can pierce the dragon's infernal haze. If you can find enough light crystals, you could make your way to the dragon.",
|
||||
"questVice2Notes": "Confident in yourselves and your ability to withstand the influence of Vice the Shadow Wyrm, your Party makes its way to Mt. Habitica. You approach the entrance to the mountain’s caverns and pause. Swells of shadows, almost like fog, wisp out from the opening. It is near impossible to see anything in front of you. The light from your lanterns seem to end abruptly where the shadows begin. It is said that only magical light can pierce the dragon’s infernal haze. If you can find enough light crystals, you could make your way to the dragon.",
|
||||
"questVice2CollectLightCrystal": "Light Crystals",
|
||||
"questVice2Completion": "As you lift the final crystal aloft, the shadows are dispelled, and your path forward is clear. With a quickening heart, you step forward into the cavern.",
|
||||
"questVice2DropVice3Quest": "Vice Part 3 (Scroll)",
|
||||
"questVice3Text": "Vice, Part 3: Vice Awakens",
|
||||
"questVice3Notes": "After much effort, your party has discovered Vice's lair. The hulking monster eyes your party with distaste. As shadows swirl around you, a voice whispers through your head, \"More foolish citizens of Habitica come to stop me? Cute. You'd have been wise not to come.\" The scaly titan rears back its head and prepares to attack. This is your chance! Give it everything you've got and defeat Vice once and for all!",
|
||||
"questVice3Completion": "The shadows dissipate from the cavern and a steely silence falls. My word, you've done it! You have defeated Vice! You and your party may finally breathe a sigh of relief. Enjoy your victory, brave Habiteers, but take the lessons you've learned from battling Vice and move forward. There are still Habits to be done and potentially worse evils to conquer!",
|
||||
"questVice3Notes": "After much effort, your party has discovered Vice’s lair. The hulking monster eyes your party with distaste. As shadows swirl around you, a voice whispers through your head, “More foolish citizens of Habitica come to stop me? Cute. You’d have been wise not to come.” The scaly titan rears back its head and prepares to attack. This is your chance! Give it everything you’ve got and defeat Vice once and for all!",
|
||||
"questVice3Completion": "The shadows dissipate from the cavern and a steely silence falls. My word, you’ve done it! You have defeated Vice! You and your party may finally breathe a sigh of relief. Enjoy your victory, brave Habiteers, but take the lessons you’ve learned from battling Vice and move forward. There are still Habits to be done and potentially worse evils to conquer!",
|
||||
"questVice3Boss": "Vice, the Shadow Wyrm",
|
||||
"questVice3DropWeaponSpecial2": "Stephen Weber's Shaft of the Dragon",
|
||||
"questVice3DropWeaponSpecial2": "Stephen Weber’s Shaft of the Dragon",
|
||||
"questVice3DropDragonEgg": "Dragon (Egg)",
|
||||
"questVice3DropShadeHatchingPotion": "Shade Hatching Potion",
|
||||
"questGroupMoonstone": "Recidivate Rising",
|
||||
"questMoonstone1Text": "Recidivate, Part 1: The Moonstone Chain",
|
||||
"questMoonstone1Notes": "A terrible affliction has struck Habiteers. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!<br><br>You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her spectre uselessly.<br><br>\"Don’t bother,\" she hisses with a dry rasp. \"Without a chain of moonstones, nothing can harm me – and master jeweller @aurakami scattered all the moonstones across Habitica long ago!\" Panting, you retreat... but you know what you must do.",
|
||||
"questMoonstone1Notes": "A terrible affliction has struck Habiteers. Bad Habits thought long-dead are rising back up with a vengeance. Dishes lie unwashed, textbooks linger unread, and procrastination runs rampant!<br><br>You track some of your own returning Bad Habits to the Swamps of Stagnation and discover the culprit: the ghostly Necromancer, Recidivate. You rush in, weapons swinging, but they slide through her spectre uselessly.<br><br>“Don’t bother,” she hisses with a dry rasp. “Without a chain of moonstones, nothing can harm me—and master jeweller @aurakami scattered all the moonstones across Habitica long ago!” Panting, you retreat… but you know what you must do.",
|
||||
"questMoonstone1CollectMoonstone": "Moonstones",
|
||||
"questMoonstone1Completion": "At last, you manage to pull the final moonstone from the swampy sludge. It’s time to go fashion your collection into a weapon that can finally defeat Recidivate!",
|
||||
"questMoonstone1DropMoonstone2Quest": "Recidivate, Part 2: Recidivate the Necromancer (Scroll)",
|
||||
"questMoonstone2Text": "Recidivate, Part 2: Recidivate the Necromancer",
|
||||
"questMoonstone2Notes": "The brave weaponsmith @InspectorCaracal helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.<br><br>Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"",
|
||||
"questMoonstone2Notes": "The brave weaponsmith @InspectorCaracal helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.<br><br>Rotting breath whispers in your ear, “Back again? How delightful…” You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. “You may have bound me to the world once more,” Recidivate snarls, “but now it is time for you to leave it!”",
|
||||
"questMoonstone2Boss": "The Necromancer",
|
||||
"questMoonstone2Completion": "Recidivate staggers backwards under your final blow, and for a moment, your heart brightens – but then she throws back her head and lets out a horrible laugh. What’s happening?",
|
||||
"questMoonstone2Completion": "Recidivate staggers backwards under your final blow, and for a moment, your heart brightens—but then she throws back her head and lets out a horrible laugh. What’s happening?",
|
||||
"questMoonstone2DropMoonstone3Quest": "Recidivate, Part 3: Recidivate Transformed (Scroll)",
|
||||
"questMoonstone3Text": "Recidivate, Part 3: Recidivate Transformed",
|
||||
"questMoonstone3Notes": "Laughing wickedly, Recidivate crumples to the ground, and you strike at her again with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.<br><br>\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"<br><br>A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.",
|
||||
"questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.<br><br>@Baconsaur the beast master swoops down on a gryphon. \"I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic – your bravery speaks of a noble heart, and I believe you were meant to have it.\"",
|
||||
"questMoonstone3Notes": "Laughing wickedly, Recidivate crumples to the ground, and you strike at her again with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.<br><br>“Foolish creature of flesh!” she shouts, “These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the spectre of your most feared foe!”<br><br>A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread—the undead body of Vice, horribly reborn.",
|
||||
"questMoonstone3Completion": "Your breath comes hard and sweat stings your eyes as the undead Wyrm collapses. The remains of Recidivate dissipate into a thin grey mist that clears quickly under the onslaught of a refreshing breeze, and you hear the distant, rallying cries of Habiticans defeating their Bad Habits for once and for all.<br><br>@Baconsaur the beast master swoops down on a gryphon, “I saw the end of your battle from the sky, and I was greatly moved. Please, take this enchanted tunic—your bravery speaks of a noble heart, and I believe you were meant to have it.”",
|
||||
"questMoonstone3Boss": "Necro-Vice",
|
||||
"questMoonstone3DropRottenMeat": "Rotten Meat (Food)",
|
||||
"questMoonstone3DropZombiePotion": "Zombie Hatching Potion",
|
||||
"questGroupGoldenknight": "The Golden Knight",
|
||||
"questGoldenknight1Text": "The Golden Knight, Part 1: A Stern Talking-To",
|
||||
"questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!",
|
||||
"questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans’ cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!",
|
||||
"questGoldenknight1CollectTestimony": "Testimonies",
|
||||
"questGoldenknight1Completion": "Look at all these testimonies! Surely this will be enough to convince the Golden Knight. Now all you need to do is find her.",
|
||||
"questGoldenknight1DropGoldenknight2Quest": "The Golden Knight Part 2: Gold Knight (Scroll)",
|
||||
"questGoldenknight2Text": "The Golden Knight, Part 2: Gold Knight",
|
||||
"questGoldenknight2Notes": "Armed with dozens of Habiticans' testimonies, you finally confront the Golden Knight. You begin to recite the Habitcans' complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!",
|
||||
"questGoldenknight2Notes": "Armed with dozens of Habiticans’ testimonies, you finally confront the Golden Knight. You begin to recite the Habitcans’ complaints to her, one by one. “And @Pfeffernusse says that your constant bragging—” The knight raises her hand to silence you and scoffs, “Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!” She raises her morningstar and prepares to attack you!",
|
||||
"questGoldenknight2Boss": "Gold Knight",
|
||||
"questGoldenknight2Completion": "The Golden Knight lowers her Morningstar in consternation. “I apologise for my rash outburst,” she says. “The truth is, it’s painful to think that I’ve been inadvertently hurting others, and it made me lash out in defence… but perhaps I can still apologise?”",
|
||||
"questGoldenknight2DropGoldenknight3Quest": "The Golden Knight Part 3: The Iron Knight (Scroll)",
|
||||
"questGoldenknight3Text": "The Golden Knight, Part 3: The Iron Knight",
|
||||
"questGoldenknight3Notes": "@Jon Arinbjorn cries out to you to get your attention. In the aftermath of your battle, a new figure has appeared. A knight coated in stained-black iron slowly approaches you with sword in hand. The Golden Knight shouts to the figure, \"Father, no!\" but the knight shows no signs of stopping. She turns to you and says, \"I am sorry. I have been a fool, with a head too big to see how cruel I have been. But my father is crueler than I could ever be. If he isn't stopped he'll destroy us all. Here, use my morningstar and halt the Iron Knight!\"",
|
||||
"questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. \"You are quite strong,\" he pants. \"I have been humbled, today.\" The Golden Knight approaches you and says, \"Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologizing to the other Habiticans.\" She mulls over in thought before turning back to you. \"Here: as our gift to you, I want you to keep my morningstar. It is yours now.\"",
|
||||
"questGoldenknight3Notes": "@Jon Arinbjorn cries out to you to get your attention. In the aftermath of your battle, a new figure has appeared. A knight coated in stained-black iron slowly approaches you with sword in hand. The Golden Knight shouts to the figure, “Father, no!” but the knight shows no signs of stopping. She turns to you and says, “I am sorry. I have been a fool, with a head too big to see how cruel I have been. But my father is crueler than I could ever be. If he isn’t stopped he’ll destroy us all. Here, use my morningstar and halt the Iron Knight!”",
|
||||
"questGoldenknight3Completion": "With a satisfying clang, the Iron Knight falls to his knees and slumps over. “You are quite strong,” he pants, “I have been humbled, today.” The Golden Knight approaches you and says, “Thank you. I believe we have gained some humility from our encounter with you. I will speak with my father and explain the complaints against us. Perhaps, we should begin apologising to the other Habiticans.” She mulls over in thought before turning back to you. “Here: as our gift to you, I want you to keep my morningstar. It is yours now.”",
|
||||
"questGoldenknight3Boss": "The Iron Knight",
|
||||
"questGoldenknight3DropHoney": "Honey (Food)",
|
||||
"questGoldenknight3DropGoldenPotion": "Golden Hatching Potion",
|
||||
"questGoldenknight3DropWeapon": "Mustaine's Milestone Mashing Morning Star (Off-hand Weapon)",
|
||||
"questGoldenknight3DropWeapon": "Mustaine’s Milestone Mashing Morning Star (Off-hand Weapon)",
|
||||
"questGroupEarnable": "Earnable Quests",
|
||||
"questBasilistText": "The Basi-List",
|
||||
"questBasilistNotes": "There's a commotion in the marketplace--the kind that should make you run away. Being a courageous adventurer, you run towards it instead, and discover a Basi-list, coalescing from a clump of incomplete To Do's! Nearby Habiticans are paralyzed with fear at the length of the Basi-list, unable to start working. From somewhere in the vicinity, you hear @Arcosine shout: \"Quick! Complete your To Do's and Dailies to defang the monster, before someone gets a paper cut!\" Strike fast, adventurer, and check something off - but beware! If you leave any Dailies undone, the Basi-list will attack you and your party!",
|
||||
"questBasilistNotes": "There’s a commotion in the marketplace—the kind that should make you run away. Being a courageous adventurer, you run towards it instead, and discover a Basi-list, coalescing from a clump of incomplete To Do’s! Nearby Habiticans are paralysed with fear at the length of the Basi-list, unable to start working. From somewhere in the vicinity, you hear @Arcosine shout: “Quick! Complete your To Do’s and Dailies to defang the monster, before someone gets a paper cut!” Strike fast, adventurer, and check something off—but beware! If you leave any Dailies undone, the Basi-list will attack you and your party!",
|
||||
"questBasilistCompletion": "The Basi-list has scattered into paper scraps, which shimmer gently in rainbow colours. \"Whew!\" says @Arcosine. \"Good thing you guys were here!\" Feeling more experienced than before, you gather up some fallen gold from among the papers.",
|
||||
"questBasilistBoss": "The Basi-List",
|
||||
"questEggHuntText": "Egg Hunt",
|
||||
"questEggHuntNotes": "Overnight, strange plain eggs have appeared everywhere: in Matt's stables, behind the counter at the Tavern, and even among the pet eggs at the Marketplace! What a nuisance! \"Nobody knows where they came from, or what they might hatch into,\" says Megan, \"but we can't just leave them laying around! Work hard and search hard to help me gather up these mysterious eggs. Maybe if you collect enough, there will be some extras left over for you...\"",
|
||||
"questEggHuntCompletion": "You did it! In gratitude, <strong>Megan</strong> gives you ten of the eggs. \"I bet the hatching potions will dye them beautiful colours! And I wonder what will happen when they turn into mounts....\"",
|
||||
"questEggHuntNotes": "Overnight, strange plain eggs have appeared everywhere: in Matt’s stables, behind the counter at the Tavern, and even among the pet eggs at the Marketplace! What a nuisance! “Nobody knows where they came from, or what they might hatch into,” says Megan, “But we can’t just leave them lying around! Work hard and search hard to help me gather up these mysterious eggs. Maybe if you collect enough, there will be some extras left over for you…”",
|
||||
"questEggHuntCompletion": "You did it! In gratitude, <strong>Megan</strong> gives you ten of the eggs. “I bet the hatching potions will dye them beautiful colours! And I wonder what will happen when they turn into mounts…”",
|
||||
"questEggHuntCollectPlainEgg": "Plain Eggs",
|
||||
"questEggHuntDropPlainEgg": "Plain Egg",
|
||||
"questDilatoryText": "The Dread Drag'on of Dilatory",
|
||||
"questDilatoryNotes": "We should have heeded the warnings.<br><br>Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: <strong>the Dread Drag'on of Dilatory!</strong> Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.<br><br>\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"<br><br>\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"<br><br>Why, the same way we defeat all beasts - with productivity! Quickly, Habiticans, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....",
|
||||
"questDilatoryBoss": "The Dread Drag'on of Dilatory",
|
||||
"questDilatoryText": "The Dread Drag’on of Dilatory",
|
||||
"questDilatoryNotes": "We should have heeded the warnings.<br><br>Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We’ve awoken something horrifying from the crevasse: <strong>the Dread Drag’on of Dilatory!</strong> Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.<br><br>“This must be what dragged Dilatory down!” yells Lemoness, “It wasn’t the weight of the neglected tasks—the Dark Red Dailies just attracted its attention!”<br><br>“It’s surging with magical energy!” @Baconsaur cries, “To have lived this long, it must be able to heal itself! How can we defeat it?”<br><br>Why, the same way we defeat all beasts—with productivity! Quickly, Habiticans, band together and strike through your tasks, and all of us will battle this monster together. (There’s no need to abandon previous quests—we believe in your ability to double-strike!) It won’t attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike—and I don't like the way it’s eyeing the Tavern…",
|
||||
"questDilatoryBoss": "The Dread Drag’on of Dilatory",
|
||||
"questDilatoryBossRageTitle": "Neglect Strike",
|
||||
"questDilatoryBossRageDescription": "When this bar has filled up, the Dread Drag'on of Dilatory will unleash great havoc on Habitica's terrain",
|
||||
"questDilatoryBossRageDescription": "When this bar has filled up, the Dread Drag’on of Dilatory will unleash great havoc on Habitica’s terrain",
|
||||
"questDilatoryDropMantisShrimpPet": "Mantis Shrimp (Pet)",
|
||||
"questDilatoryDropMantisShrimpMount": "Mantis Shrimp (Mount)",
|
||||
"questDilatoryBossRageTavern": "`Dread Drag'on Casts NEGLECT STRIKE!`\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and their dark-red colour has attracted the Drag'on's rage! With its fearsome Neglect Strike attack, it has decimated the Tavern! Luckily, we've set up an Inn in a nearby city, and you're free to keep chatting on the shore... but poor Daniel the Barkeep just saw his beloved building crumble around him!\n\nI hope the beast doesn't attack again!",
|
||||
"questDilatoryBossRageStables": "`Dread Drag'on Casts NEGLECT STRIKE!`\n\nYikes! Once again we left too many Dailies undone. The Drag'on has unleashed its Neglect Strike against Matt and the stables! Pets have been fleeing in all directions. Luckily it seems like all of yours are safe!\n\nPoor Habitica! I hope this doesn't happen again. Hurry and do all your tasks!",
|
||||
"questDilatoryBossRageMarket": "`Dread Drag'on Casts NEGLECT STRIKE!`\n\nAhhh!! Alex the Merchant just had his shop smashed to smithereens by the Drag'on's Neglect Strike! But it seems like we're really wearing this beast down. I doubt it has enough energy for another strike.\n\nSo do not waver, Habitica! Let's drive this beast away from our shores!",
|
||||
"questDilatoryCompletion": "`The Defeat Of The Dread Drag'On Of Dilatory`\n\nWe've done it! With a final last roar, the Dread Drag'on collapses and swims far, far away. Crowds of cheering Habiticans line the shores! We've helped Matt, Daniel, and Alex rebuild their buildings. But what's this?\n\n`The Citizens Return!`\n\nNow that the Drag'on has fled, thousands of sparkling colours are ascending through the sea. It is a rainbow swarm of Mantis Shrimp... and among them, hundreds of merpeople!\n\n\"We are the lost citizens of Dilatory!\" explains their leader, Manta. \"When Dilatory sank, the Mantis Shrimp that lived in these waters used a spell to transform us into merpeople so that we could survive. But in its rage, the Dread Drag'on trapped us all in the dark crevasse. We have been imprisoned there for hundreds of years - but now at last we are free to rebuild our city!\"\n\n\"As a thank you,\" says his friend @Ottl, \"Please accept this Mantis Shrimp pet and Mantis Shrimp mount, as well as XP, gold, and our eternal gratitude.\"\n\n`Rewards`\n * Mantis Shrimp Pet\n * Mantis Shrimp Mount\n * Chocolate, Blue Candyfloss, Pink Candyfloss, Fish, Honey, Meat, Milk, Potato, Rotten Meat, Strawberry",
|
||||
"questDilatoryBossRageTavern": "`Dread Drag’on Casts NEGLECT STRIKE!`\n\nOh no! Despite our best efforts, we’ve let some Dailies get away from us, and their dark-red colour has attracted the Drag’on’s rage! With its fearsome Neglect Strike attack, it has decimated the Tavern! Luckily, we’ve set up an Inn in a nearby city, and you’re free to keep chatting on the shore… but poor Daniel the Barkeep just saw his beloved building crumble around him!\n\nI hope the beast doesn’t attack again!",
|
||||
"questDilatoryBossRageStables": "`Dread Drag’on Casts NEGLECT STRIKE!`\n\nYikes! Once again we left too many Dailies undone. The Drag’on has unleashed its Neglect Strike against Matt and the stables! Pets have been fleeing in all directions. Luckily it seems like all of yours are safe!\n\nPoor Habitica! I hope this doesn’t happen again. Hurry and do all your tasks!",
|
||||
"questDilatoryBossRageMarket": "`Dread Drag’on Casts NEGLECT STRIKE!`\n\nAhhh!! Alex the Merchant just had his shop smashed to smithereens by the Drag’on’s Neglect Strike! But it seems like we’re really wearing this beast down. I doubt it has enough energy for another strike.\n\nSo do not waver, Habitica! Let’s drive this beast away from our shores!",
|
||||
"questDilatoryCompletion": "`The Defeat Of The Dread Drag’On Of Dilatory`\n\nWe’ve done it! With a final last roar, the Dread Drag’on collapses and swims far, far away. Crowds of cheering Habiticans line the shores! We’ve helped Matt, Daniel, and Alex rebuild their buildings. But what’s this?\n\n`The Citizens Return!`\n\nNow that the Drag’on has fled, thousands of sparkling colours are ascending through the sea. It is a rainbow swarm of Mantis Shrimp… and among them, hundreds of merpeople!\n\n“We are the lost citizens of Dilatory!” explains their leader, Manta, “When Dilatory sank, the Mantis Shrimp that lived in these waters used a spell to transform us into merpeople so that we could survive. But in its rage, the Dread Drag’on trapped us all in the dark crevasse. We have been imprisoned there for hundreds of years—but now at last we are free to rebuild our city!”\n\n“As a thank you,” says his friend @Ottl, “Please accept this Mantis Shrimp pet and Mantis Shrimp mount, as well as XP, gold, and our eternal gratitude.”\n\n`Rewards`\n * Mantis Shrimp Pet\n * Mantis Shrimp Mount\n * Chocolate, Blue Candyfloss, Pink Candyfloss, Fish, Honey, Meat, Milk, Potato, Rotten Meat, Strawberry",
|
||||
"questSeahorseText": "The Dilatory Derby",
|
||||
"questSeahorseNotes": "It's Derby Day, and Habiticans from all over the continent have travelled to Dilatory to race their pet seahorses! Suddenly, a great splashing and snarling breaks out at the racetrack, and you hear Seahorse Keeper @Kiwibot shouting above the roar of the waves. \"The gathering of seahorses has attracted a fierce Sea Stallion!\" she cries. \"He's smashing through the stables and destroying the ancient track! Can anyone calm him down?\"",
|
||||
"questSeahorseCompletion": "The now-tame Sea Stallion swims docilely to your side. \"Oh, look!\" Kiwibot says. \"He wants us to take care of his children.\" She gives you three eggs. \"Raise them well,\" she says. \"You're welcome at the Dilatory Derby any day!\"",
|
||||
"questSeahorseNotes": "It’s Derby Day, and Habiticans from all over the continent have travelled to Dilatory to race their pet seahorses! Suddenly, a great splashing and snarling breaks out at the racetrack, and you hear Seahorse Keeper @Kiwibot shouting above the roar of the waves. “The gathering of seahorses has attracted a fierce Sea Stallion!” she cries, “He’s smashing through the stables and destroying the ancient track! Can anyone calm him down?”",
|
||||
"questSeahorseCompletion": "The now-tame Sea Stallion swims docilely to your side. “Oh, look!” Kiwibot says, “He wants us to take care of his children.” She gives you three eggs. “Raise them well,” she says, “You're welcome at the Dilatory Derby any day!”",
|
||||
"questSeahorseBoss": "Sea Stallion",
|
||||
"questSeahorseDropSeahorseEgg": "Seahorse (Egg)",
|
||||
"questSeahorseUnlockText": "Unlocks Seahorse Eggs for purchase in the Market",
|
||||
"questGroupAtom": "Attack of the Mundane",
|
||||
"questAtom1Text": "Attack of the Mundane, Part 1: Dish Disaster!",
|
||||
"questAtom1Notes": "You reach the shores of Washed-Up Lake for some well-earned relaxation... But the lake is polluted with unwashed dishes! How did this happen? Well, you simply cannot allow the lake to be in this state. There is only one thing you can do: clean the dishes and save your vacation spot! Better find some soap to clean up this mess. A lot of soap...",
|
||||
"questAtom1Notes": "You reach the shores of Washed-Up Lake for some well-earned relaxation… But the lake is polluted with unwashed dishes! How did this happen? Well, you simply cannot allow the lake to be in this state. There is only one thing you can do: clean the dishes and save your vacation spot! Better find some soap to clean up this mess. A lot of soap…",
|
||||
"questAtom1CollectSoapBars": "Bars of Soap",
|
||||
"questAtom1Drop": "The SnackLess Monster (Scroll)",
|
||||
"questAtom1Completion": "After some thorough scrubbing, all the dishes are stacked safely on the shore! You stand back and proudly survey your hard work.",
|
||||
"questAtom2Text": "Attack of the Mundane, Part 2: The SnackLess Monster",
|
||||
"questAtom2Notes": "Phew, this place is looking a lot nicer with all these dishes cleaned. Maybe you can finally have some fun now. Oh - there seems to be a pizza box floating in the lake. Well, what's one more thing to clean really? But alas, it is no mere pizza box! With a sudden rush the box lifts from the water to reveal itself to be the head of a monster. It cannot be! The fabled SnackLess Monster?! It is said it has existed hidden in the lake since prehistoric times: a creature spawned from the leftover food and trash of the ancient Habiticans. Yuck!",
|
||||
"questAtom2Notes": "Phew, this place is looking a lot nicer with all these dishes cleaned. Maybe you can finally have some fun now. Oh—there seems to be a pizza box floating in the lake. Well, what’s one more thing to clean really? But alas, it is no mere pizza box! With a sudden rush the box lifts from the water to reveal itself to be the head of a monster. It cannot be! The fabled SnackLess Monster?! It is said it has existed hidden in the lake since prehistoric times: a creature spawned from the leftover food and rubbish of the ancient Habiticans. Yuck!",
|
||||
"questAtom2Boss": "The SnackLess Monster",
|
||||
"questAtom2Drop": "The Laundromancer (Scroll)",
|
||||
"questAtom2Completion": "With a deafening cry, and five delicious types of cheese bursting from its mouth, the Snackless Monster falls to pieces. Well done, brave adventurer! But wait... is there something else wrong with the lake?",
|
||||
"questAtom2Completion": "With a deafening cry, and five delicious types of cheese bursting from its mouth, the Snackless Monster falls to pieces. Well done, brave adventurer! But wait… is there something else wrong with the lake?",
|
||||
"questAtom3Text": "Attack of the Mundane, Part 3: The Laundromancer",
|
||||
"questAtom3Notes": "Just when you thought that your trials had ended, Washed-Up Lake begins to froth violently. “HOW DARE YOU!” booms a voice from beneath the water's surface. A robed, blue figure emerges from the water, wielding a magic toilet brush. Filthy laundry begins to bubble up to the surface of the lake. \"I am the Laundromancer!\" he angrily announces. \"You have some nerve - washing my delightfully dirty dishes, destroying my pet, and entering my domain with such clean clothes. Prepare to feel the soggy wrath of my anti-laundry magic!\"",
|
||||
"questAtom3Completion": "The wicked Laundromancer has been defeated! Clean laundry falls in piles all around you. Things are looking much better around here. As you begin to wade through the freshly pressed armour, a glint of metal catches your eye, and your gaze falls upon a gleaming helm. The original owner of this shining item may be unknown, but as you put it on, you feel the warming presence of a generous spirit. Too bad they didn't sew on a nametag.",
|
||||
"questAtom3Notes": "Just when you thought that your trials had ended, Washed-Up Lake begins to froth violently. “HOW DARE YOU!” booms a voice from beneath the water’s surface. A robed, blue figure emerges from the water, wielding a magic toilet brush. Filthy laundry begins to bubble up to the surface of the lake. “I am the Laundromancer!” he angrily announces, “You have some nerve—washing my delightfully dirty dishes, destroying my pet, and entering my domain with such clean clothes. Prepare to feel the soggy wrath of my anti-laundry magic!”",
|
||||
"questAtom3Completion": "The wicked Laundromancer has been defeated! Clean laundry falls in piles all around you. Things are looking much better around here. As you begin to wade through the freshly pressed armour, a glint of metal catches your eye, and your gaze falls upon a gleaming helm. The original owner of this shining item may be unknown, but as you put it on, you feel the warming presence of a generous spirit. Too bad they didn’t sew on a name tag.",
|
||||
"questAtom3Boss": "The Laundromancer",
|
||||
"questAtom3DropPotion": "Base Hatching Potion",
|
||||
"questOwlText": "The Night-Owl",
|
||||
"questOwlNotes": "The Tavern light is lit 'til dawn<br>Until one eve the glow is gone!<br>How can we see for our all-nighters?<br>@Twitching cries, \"I need some fighters!<br>See that Night-Owl, starry foe?<br>Fight with haste and do not slow!<br>We'll drive its shadow from our door,<br>And make the night shine bright once more!\"",
|
||||
"questOwlCompletion": "The Night-Owl fades before the dawn,<br>But even so, you feel a yawn.<br>Perhaps it's time to get some rest?<br>Then on your bed, you see a nest!<br>A Night-Owl knows it can be great<br>To finish work and stay up late,<br>But your new pets will softly peep<br>To tell you when it's time to sleep.",
|
||||
"questOwlNotes": "The Tavern light is lit ‘til dawn<br>Until one eve the glow is gone!<br>How can we see for our all-nighters?<br>@Twitching cries, “I need some fighters!<br>See that Night-Owl, starry foe?<br>Fight with haste and do not slow!<br>We’ll drive its shadow from our door,<br>And make the night shine bright once more!”",
|
||||
"questOwlCompletion": "The Night-Owl fades before the dawn,<br>But even so, you feel a yawn.<br>Perhaps it’s time to get some rest?<br>Then on your bed, you see a nest!<br>A Night-Owl knows it can be great<br>To finish work and stay up late,<br>But your new pets will softly peep<br>To tell you when it’s time to sleep.",
|
||||
"questOwlBoss": "The Night-Owl",
|
||||
"questOwlDropOwlEgg": "Owl (Egg)",
|
||||
"questOwlUnlockText": "Unlocks Owl Eggs for purchase in the Market",
|
||||
"questPenguinText": "The Fowl Frost",
|
||||
"questPenguinNotes": "Although it's a hot summer day in the southernmost tip of Habitica, an unnatural chill has fallen upon Lively Lake. Strong, frigid winds rush around as the shore begins to freeze over. Ice spikes jut up from the ground, pushing grass and dirt away. @Melynnrose and @Breadstrings run up to you.<br><br>\"Help!\" says @Melynnrose. \"We brought a giant penguin in to freeze the lake so we could all go ice skating, but we ran out of fish to feed him!\"<br><br>\"He got angry and is using his freeze breath on everything he sees!\" says @Breadstrings. \"Please, you have to subdue him before all of us are covered in ice!\" Looks like you need this penguin to... <em>cool down.</em>",
|
||||
"questPenguinCompletion": "Upon the penguin's defeat, the ice melts away. The giant penguin settles down in the sunshine, slurping up an extra bucket of fish you found. He skates off across the lake, blowing gently downwards to create smooth, sparkling ice. What an odd bird! \"It appears he left behind a few eggs, as well,\" says @Painter de Cluster. <br><br>@Rattify laughs. \"Maybe these penguins will be a little more... chill?\"",
|
||||
"questPenguinNotes": "Although it’s a hot summer day in the southernmost tip of Habitica, an unnatural chill has fallen upon Lively Lake. Strong, frigid winds rush around as the shore begins to freeze over. Ice spikes jut up from the ground, pushing grass and dirt away. @Melynnrose and @Breadstrings run up to you.<br><br>“Help!” says @Melynnrose, “We brought a giant penguin in to freeze the lake so we could all go ice skating, but we ran out of fish to feed him!”<br><br>“He got angry and is using his freeze breath on everything he sees!” says @Breadstrings, “Please, you have to subdue him before all of us are covered in ice!” Looks like you need this penguin to… <em>cool down</em>.",
|
||||
"questPenguinCompletion": "Upon the penguin’s defeat, the ice melts away. The giant penguin settles down in the sunshine, slurping up an extra bucket of fish you found. He skates off across the lake, blowing gently downwards to create smooth, sparkling ice. What an odd bird! “It appears he left behind a few eggs, as well,” says @Painter de Cluster. <br><br>@Rattify laughs, “Maybe these penguins will be a little more… chill?”",
|
||||
"questPenguinBoss": "Frost Penguin",
|
||||
"questPenguinDropPenguinEgg": "Penguin (Egg)",
|
||||
"questPenguinUnlockText": "Unlocks Penguin Eggs for purchase in the Market",
|
||||
"questStressbeastText": "The Abominable Stressbeast of the Stoïkalm Steppes",
|
||||
"questStressbeastNotes": "Complete Dailies and To Do's to damage the World Boss! Incomplete Dailies fill the Stress Strike Bar. When the Stress Strike bar is full, the World Boss will attack an NPC. A World Boss will never damage individual players or accounts in any way. Only active accounts who are not resting in the inn will have their incomplete Dailies tallied.<br><br>~*~<br><br>The first thing we hear are the footsteps, slower and more thundering than the stampede. One by one, Habiticans look outside their doors, and words fail us.<br><br>We've all seen Stressbeasts before, of course - tiny vicious creatures that attack during difficult times. But this? This towers taller than the buildings, with paws that could crush a dragon with ease. Frost swings from its stinking fur, and as it roars, the icy blast rips the roofs off our houses. A monster of this magnitude has never been mentioned outside of distant legend.<br><br>\"Beware, Habiticans!\" SabreCat cries. \"Barricade yourselves indoors - this is the Abominable Stressbeast itself!\"<br><br>\"That thing must be made of centuries of stress!\" Kiwibot says, locking the Tavern door tightly and shuttering the windows.<br><br>\"The Stoïkalm Steppes,\" Lemoness says, face grim. \"All this time, we thought they were placid and untroubled, but they must have been secretly hiding their stress somewhere. Over generations, it grew into this, and now it's broken free and attacked them - and us!\"<br><br>There's only one way to drive away a Stressbeast, Abominable or otherwise, and that's to attack it with completed Dailies and To Do's! Let's all band together and fight off this fearsome foe - but be sure not to slack on your tasks, or our undone Dailies may enrage it so much that it lashes out...",
|
||||
"questStressbeastNotes": "Complete Dailies and To Do’s to damage the World Boss! Incomplete Dailies fill the Stress Strike Bar. When the Stress Strike bar is full, the World Boss will attack an NPC. A World Boss will never damage individual players or accounts in any way. Only active accounts who are not resting in the inn will have their incomplete Dailies tallied.<br><br>~*~<br><br>The first thing we hear are the footsteps, slower and more thundering than the stampede. One by one, Habiticans look outside their doors, and words fail us.<br><br>We’ve all seen Stressbeasts before, of course—tiny vicious creatures that attack during difficult times. But this? This towers taller than the buildings, with paws that could crush a dragon with ease. Frost swings from its stinking fur and, as it roars, the icy blast rips the roofs off our houses. A monster of this magnitude has never been mentioned outside of distant legend.<br><br>“Beware, Habiticans!” SabreCat cries, “Barricade yourselves indoors—this is the Abominable Stressbeast itself!”<br><br>“That thing must be made of centuries of stress!” Kiwibot says, locking the Tavern door tightly and shuttering the windows.<br><br>“The Stoïkalm Steppes,” Lemoness says, face grim, “All this time, we thought they were placid and untroubled, but they must have been secretly hiding their stress somewhere. Over generations, it grew into this, and now it’s broken free and attacked them—and us!”<br><br>There’s only one way to drive away a Stressbeast, Abominable or otherwise, and that’s to attack it with completed Dailies and To Do’s! Let’s all band together and fight off this fearsome foe—but be sure not to slack on your tasks, or our undone Dailies may enrage it so much that it lashes out…",
|
||||
"questStressbeastBoss": "The Abominable Stressbeast",
|
||||
"questStressbeastBossRageTitle": "Stress Strike",
|
||||
"questStressbeastBossRageDescription": "When this gauge fills, the Abominable Stressbeast will unleash its Stress Strike on Habitica!",
|
||||
"questStressbeastDropMammothPet": "Mammoth (Pet)",
|
||||
"questStressbeastDropMammothMount": "Mammoth (Mount)",
|
||||
"questStressbeastBossRageStables": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and their dark-red colour has infuriated the Abominable Stressbeast and caused it to regain some of its health! The horrible creature lunges for the stables, but Matt the Beast Master heroically leaps into the fray to protect the pets and mounts. The Stressbeast has seized Matt in its vicious grip, but at least it's distracted for the moment. Hurry! Let's keep our Dailies in check and defeat this monster before it attacks again!",
|
||||
"questStressbeastBossRageBailey": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nAhh!!! Our incomplete Dailies caused the Abominable Stressbeast to become madder than ever and regain some of its health! Bailey the Town Crier was shouting for citizens to get to safety, and now it has seized her in its other hand! Look at her, valiantly reporting on the news as the Stressbeast swings her around viciously... Let's be worthy of her bravery by being as productive as we can to save our NPCs!",
|
||||
"questStressbeastBossRageGuide": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nLook out! Justin the Guide is trying to distract the Stressbeast by running around its ankles, yelling productivity tips! The Abominable Stressbeast is stomping madly, but it seems like we're really wearing this beast down. I doubt it has enough energy for another strike. Don't give up... we're so close to finishing it off!",
|
||||
"questStressbeastDesperation": "`Abominable Stressbeast reaches 500K health! Abominable Stressbeast uses Desperate Defence!`\n\nWe're almost there, Habiticans! With diligence and Dailies, we've whittled the Stressbeast's health down to only 500K! The creature roars and flails in desperation, rage building faster than ever. Bailey and Matt yell in terror as it begins to swing them around at a terrifying pace, raising a blinding snowstorm that makes it harder to hit.\n\nWe'll have to redouble our efforts, but take heart - this is a sign that the Stressbeast knows it is about to be defeated. Don't give up now!",
|
||||
"questStressbeastCompletion": "<strong>The Abominable Stressbeast is DEFEATED!</strong><br><br>We've done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!<br><br><strong>Stoïkalm is Saved!</strong><br><br>SabreCat speaks gently to a small sabertooth. \"Please find the citizens of the Stoïkalm Steppes and bring them to us,\" he says. Several hours later, the sabertooth returns, with a herd of mammoth riders following slowly behind. You recognise the head rider as Lady Glaciate, the leader of Stoïkalm.<br><br>\"Mighty Habiticans,\" she says, \"My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.\" Her sad gaze follows the falling snow. \"We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.\"<br><br>She turns to where @Baconsaur is snuggling with some of the baby mammoths. \"We have brought your animals an offering of food to apologise for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.\"",
|
||||
"questStressbeastCompletionChat": "`The Abominable Stressbeast is DEFEATED!`\n\nWe've done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!\n\n`Stoïkalm is Saved!`\n\nSabreCat speaks gently to a small sabertooth. \"Please find the citizens of the Stoïkalm Steppes and bring them to us,\" he says. Several hours later, the sabertooth returns, with a herd of mammoth riders following slowly behind. You recognise the head rider as Lady Glaciate, the leader of Stoïkalm.\n\n\"Mighty Habiticans,\" she says, \"My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.\" Her sad gaze follows the falling snow. \"We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.\"\n\nShe turns to where @Baconsaur is snuggling with some of the baby mammoths. \"We have brought your animals an offering of food to apologise for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.\"",
|
||||
"questStressbeastBossRageStables": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nOh no! Despite our best efforts, we’ve let some Dailies get away from us, and their dark-red colour has infuriated the Abominable Stressbeast and caused it to regain some of its health! The horrible creature lunges for the stables, but Matt the Beast Master heroically leaps into the fray to protect the pets and mounts. The Stressbeast has seized Matt in its vicious grip, but at least it’s distracted for the moment. Hurry! Let’s keep our Dailies in check and defeat this monster before it attacks again!",
|
||||
"questStressbeastBossRageBailey": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nAhh!!! Our incomplete Dailies caused the Abominable Stressbeast to become madder than ever and regain some of its health! Bailey the Town Crier was shouting for citizens to get to safety, and now it has seized her in its other hand! Look at her, valiantly reporting on the news as the Stressbeast swings her around viciously… Let’s be worthy of her bravery by being as productive as we can to save our NPCs!",
|
||||
"questStressbeastBossRageGuide": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nLook out! Justin the Guide is trying to distract the Stressbeast by running around its ankles, yelling productivity tips! The Abominable Stressbeast is stomping madly, but it seems like we’re really wearing this beast down. I doubt it has enough energy for another strike. Don’t give up… we’re so close to finishing it off!",
|
||||
"questStressbeastDesperation": "`Abominable Stressbeast reaches 500K health! Abominable Stressbeast uses Desperate Defence!`\n\nWe’re almost there, Habiticans! With diligence and Dailies, we’ve whittled the Stressbeast’s health down to only 500K! The creature roars and flails in desperation, rage building faster than ever. Bailey and Matt yell in terror as it begins to swing them around at a terrifying pace, raising a blinding snowstorm that makes it harder to hit.\n\nWe’ll have to redouble our efforts, but take heart—this is a sign that the Stressbeast knows it is about to be defeated. Don’t give up now!",
|
||||
"questStressbeastCompletion": "<strong>The Abominable Stressbeast is DEFEATED!</strong><br><br>We’ve done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!<br><br><strong>Stoïkalm is Saved!</strong><br><br>SabreCat speaks gently to a small sabretooth. “Please find the citizens of the Stoïkalm Steppes and bring them to us,” he says. Several hours later, the sabretooth returns, with a herd of mammoth riders following slowly behind. You recognise the head rider as Lady Glaciate, the leader of Stoïkalm.<br><br>“Mighty Habiticans,” she says, “My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.” Her sad gaze follows the falling snow. “We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.”<br><br>She turns to where @Baconsaur is snuggling with some of the baby mammoths. “We have brought your animals an offering of food to apologise for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.”",
|
||||
"questStressbeastCompletionChat": "`The Abominable Stressbeast is DEFEATED!`\n\nWe’ve done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!\n\n`Stoïkalm is Saved!`\n\nSabreCat speaks gently to a small sabretooth. “Please find the citizens of the Stoïkalm Steppes and bring them to us,” he says. Several hours later, the sabretooth returns, with a herd of mammoth riders following slowly behind. You recognise the head rider as Lady Glaciate, the leader of Stoïkalm.\n\n“Mighty Habiticans,” she says, “My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.” Her sad gaze follows the falling snow. “We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.”\n\nShe turns to where @Baconsaur is snuggling with some of the baby mammoths. “We have brought your animals an offering of food to apologise for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.”",
|
||||
"questTRexText": "King of the Dinosaurs",
|
||||
"questTRexNotes": "Now that ancient creatures from the Stoïkalm Steppes are roaming throughout all of Habitica, @Urse has decided to adopt a full-grown Tyrannosaur. What could go wrong?<br><br>Everything.",
|
||||
"questTRexCompletion": "The wild dinosaur finally stops its rampage and settles down to make friends with the giant roosters. @Urse beams down at it. \"They're not such terrible pets, after all! They just need a little discipline. Here, take some Tyrannosaur eggs for yourself.\"",
|
||||
@@ -195,13 +195,13 @@
|
||||
"questRockText": "Escape the Cave Creature",
|
||||
"questRockNotes": "Crossing Habitica's Meandering Mountains with some friends, you make camp one night in a beautiful cave laced with shining minerals. But when you wake up the next morning, the entrance has disappeared and the floor of the cave is shifting underneath you.<br><br>\"The mountain's alive!\" shouts your companion @pfeffernusse. \"These aren't crystals—these are teeth!\"<br><br>@Painter de Cluster grabs your hand. \"We'll have to find another way out—stay with me and don't get distracted, or we could be trapped in here forever!\"",
|
||||
"questRockBoss": "Crystal Colossus",
|
||||
"questRockCompletion": "Your diligence has allowed you to find a safe path through the living mountain. Standing in the sunshine, your friend @intune notices something glinting on the ground by the cave's exit. You stoop to pick it up, and see that it's a small rock with a vein of gold running through it. Beside it are a number of other rocks with rather peculiar shapes. They almost look like... eggs?",
|
||||
"questRockCompletion": "Your diligence has allowed you to find a safe path through the living mountain. Standing in the sunshine, your friend @intune notices something glinting on the ground by the cave’s exit. You stoop to pick it up, and see that it’s a small rock with a vein of gold running through it. Beside it are a number of other rocks with rather peculiar shapes. They almost look like… eggs?",
|
||||
"questRockDropRockEgg": "Rock (Egg)",
|
||||
"questRockUnlockText": "Unlocks Rock Eggs for purchase in the Market",
|
||||
"questBunnyText": "The Killer Bunny",
|
||||
"questBunnyNotes": "After many difficult days, you reach the peak of Mount Procrastination and stand before the imposing doors of the Fortress of Neglect. You read the inscription in the stone. \"Inside resides the creature that embodies your greatest fears, the reason for your inaction. Knock and face your demon!\" You tremble, imagining the horror within and feel the urge to flee as you have done so many times before. @Draayder holds you back. \"Steady, my friend! The time has come at last. You must do this!\"<br><br>You knock and the doors swing inward. From within the gloom you hear a deafening roar, and you draw your weapon.",
|
||||
"questBunnyBoss": "Killer Bunny",
|
||||
"questBunnyCompletion": "With one final blow the killer rabbit sinks to the ground. A sparkly mist rises from her body as she shrinks down into a tiny bunny... nothing like the cruel beast you faced a moment before. Her nose twitches adorably and she hops away, leaving some eggs behind. @Gully laughs. \"Mount Procrastination has a way of making even the smallest challenges seem insurmountable. Let's gather these eggs and head for home.\"",
|
||||
"questBunnyCompletion": "With one final blow the killer rabbit sinks to the ground. A sparkly mist rises from her body as she shrinks down into a tiny bunny… nothing like the cruel beast you faced a moment before. Her nose twitches adorably and she hops away, leaving some eggs behind. @Gully laughs. “Mount Procrastination has a way of making even the smallest challenges seem insurmountable. Let’s gather these eggs and head for home.”",
|
||||
"questBunnyDropBunnyEgg": "Bunny (Egg)",
|
||||
"questBunnyUnlockText": "Unlocks Bunny Eggs for purchase in the Market",
|
||||
"questSlimeText": "The Jam Regent",
|
||||
@@ -211,13 +211,13 @@
|
||||
"questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)",
|
||||
"questSlimeUnlockText": "Unlocks Marshmallow Slime Eggs for purchase in the Market",
|
||||
"questSheepText": "The Thunder Ram",
|
||||
"questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a \"quick break\" from your obligations, you find a cosy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. \"I've got a ba-a-a-ad feeling about this weather,\" mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a... \"We don't have time for cloud-gazing!\" @starsystemic shouts. \"It's attacking!\" The Thunder Ram hurtles forward, slinging bolts of lightning right at you!",
|
||||
"questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a “quick break” from your obligations, you find a cosy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. “I've got a ba-a-a-ad feeling about this weather,” mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a… “We don’t have time for cloud-gazing!” @starsystemic shouts, “It’s attacking!” The Thunder Ram hurtles forward, slinging bolts of lightning right at you!",
|
||||
"questSheepBoss": "Thunder Ram",
|
||||
"questSheepCompletion": "Impressed by your diligence, the Thunder Ram is drained of its fury. It launches three huge hailstones in your direction, and then fades away with a low rumble. Upon closer inspection, you discover that the hailstones are actually three fluffy eggs. You gather them up, and then stroll home under a blue sky.",
|
||||
"questSheepDropSheepEgg": "Sheep (Egg)",
|
||||
"questSheepUnlockText": "Unlocks Sheep Eggs for purchase in the Market",
|
||||
"questKrakenText": "The Kraken of Inkomplete",
|
||||
"questKrakenNotes": "It's a warm, sunny day as you sail across the Inkomplete Bay, but your thoughts are clouded with worries about everything that you still need to do. It seems that as soon as you finish one task, another crops up, and then another...<br><br>Suddenly, the boat gives a horrible jolt, and slimy tentacles burst out of the water on all sides! \"We're being attacked by the Kraken of Inkomplete!\" Wolvenhalo cries.<br><br>\"Quickly!\" Lemoness calls to you. \"Strike down as many tentacles and tasks as you can, before new ones can rise up to take their place!\"",
|
||||
"questKrakenNotes": "It’s a warm, sunny day as you sail across the Inkomplete Bay, but your thoughts are clouded with worries about everything that you still need to do. It seems that as soon as you finish one task, another crops up, and then another…<br><br>Suddenly, the boat gives a horrible jolt, and slimy tentacles burst out of the water on all sides! “We’re being attacked by the Kraken of Inkomplete!” Wolvenhalo cries.<br><br>“Quickly!” Lemoness calls to you, “Strike down as many tentacles and tasks as you can, before new ones can rise up to take their place!”",
|
||||
"questKrakenBoss": "The Kraken of Inkomplete",
|
||||
"questKrakenCompletion": "As the Kraken flees, several eggs float to the surface of the water. Lemoness examines them, and her suspicion turns to delight. \"Cuttlefish eggs!\" she says. \"Here, take them as a reward for everything you've completed.\"",
|
||||
"questKrakenDropCuttlefishEgg": "Cuttlefish (Egg)",
|
||||
@@ -246,8 +246,8 @@
|
||||
"questDilatoryDistress2DropCottonCandyBluePotion": "Candyfloss Blue Hatching Potion",
|
||||
"questDilatoryDistress2DropHeadgear": "Fire Coral Circlet (Headgear)",
|
||||
"questDilatoryDistress3Text": "Dilatory Distress, Part 3: Not a Mere Maid",
|
||||
"questDilatoryDistress3Notes": "You follow the mantis shrimps deep into the Crevasse, and discover an underwater fortress. Princess Adva, escorted by more watery skulls, awaits you inside the main hall. \"My father has sent you, has he not? Tell him I refuse to return. I am content to stay here and practise my sorcery. Leave now, or you shall feel the wrath of the ocean's new queen!\" Adva seems very adamant, but as she speaks you notice a strange, ruby pendant on her neck glowing ominously... Perhaps her delusions would cease should you break it?",
|
||||
"questDilatoryDistress3Completion": "Finally, you manage to pull the bewitched pendant from Adva's neck and throw it away. Adva clutches her head. \"Where am I? What happened here?\" After hearing your story, she frowns. \"This necklace was given to me by a strange ambassador - a lady called 'Tzina'. I don't remember anything after that!\"<br><br>Back at Dilatory, Manta is overjoyed by your success. \"Allow me to reward you with this trident and shield! I ordered them from @aiseant and @starsystemic as a gift for Adva, but... I'd rather not put weapons in her hands any time soon.\"",
|
||||
"questDilatoryDistress3Notes": "You follow the mantis shrimps deep into the Crevasse, and discover an underwater fortress. Princess Adva, escorted by more watery skulls, awaits you inside the main hall. “My father has sent you, has he not? Tell him I refuse to return. I am content to stay here and practise my sorcery. Leave now, or you shall feel the wrath of the ocean’s new queen!” Adva seems very adamant, but as she speaks you notice a strange, ruby pendant on her neck glowing ominously… Perhaps her delusions would cease should you break it?",
|
||||
"questDilatoryDistress3Completion": "Finally, you manage to pull the bewitched pendant from Adva’s neck and throw it away. Adva clutches her head, “Where am I? What happened here?” After hearing your story, she frowns, “This necklace was given to me by a strange ambassador—a lady called ‘Tzina’. I don't remember anything after that!”<br><br>Back at Dilatory, Manta is overjoyed by your success. “Allow me to reward you with this trident and shield! I ordered them from @aiseant and @starsystemic as a gift for Adva, but… I’d rather not put weapons in her hands any time soon.”",
|
||||
"questDilatoryDistress3Boss": "Adva, the Usurping Mermaid",
|
||||
"questDilatoryDistress3DropFish": "Fish (Food)",
|
||||
"questDilatoryDistress3DropWeapon": "Trident of Crashing Tides (Weapon)",
|
||||
@@ -259,15 +259,15 @@
|
||||
"questCheetahDropCheetahEgg": "Cheetah (Egg)",
|
||||
"questCheetahUnlockText": "Unlocks Cheetah Eggs for purchase in the Market",
|
||||
"questHorseText": "Ride the Night-Mare",
|
||||
"questHorseNotes": "While relaxing in the Tavern with @beffymaroo and @JessicaChase, the talk turns to good-natured boasting about your adventuring accomplishments. Proud of your deeds, and perhaps getting a bit carried away, you brag that you can tame any task around. A nearby stranger turns toward you and smiles. One eye twinkles as he invites you to prove your claim by riding his horse.\nAs you all head for the stables, @UncommonCriminal whispers, \"You may have bitten off more than you can chew. That's no horse - that's a Night-Mare!\" Looking at its stamping hooves, you begin to regret your words...",
|
||||
"questHorseCompletion": "It takes all your skill, but finally the horse stamps a couple of hooves and nuzzles you in the shoulder before allowing you to mount. You ride briefly but proudly around the Tavern grounds while your friends cheer. The stranger breaks into a broad grin.\n\"I can see that was no idle boast! Your determination is truly impressive. Take these eggs to raise horses of your own, and perhaps we'll meet again one day.\" You take the eggs, the stranger tips his hat... and vanishes.",
|
||||
"questHorseNotes": "While relaxing in the Tavern with @beffymaroo and @JessicaChase, the talk turns to good-natured boasting about your adventuring accomplishments. Proud of your deeds, and perhaps getting a bit carried away, you brag that you can tame any task around. A nearby stranger turns toward you and smiles. One eye twinkles as he invites you to prove your claim by riding his horse.\nAs you all head for the stables, @UncommonCriminal whispers, “You may have bitten off more than you can chew. That’s no horse—that’s a Night-Mare!” Looking at its stamping hooves, you begin to regret your words…",
|
||||
"questHorseCompletion": "It takes all your skill, but finally the horse stamps a couple of hooves and nuzzles you in the shoulder before allowing you to mount. You ride briefly but proudly around the Tavern grounds while your friends cheer. The stranger breaks into a broad grin.\n“I can see that was no idle boast! Your determination is truly impressive. Take these eggs to raise horses of your own, and perhaps we’ll meet again one day.” You take the eggs, the stranger tips his hat… and vanishes.",
|
||||
"questHorseBoss": "Night-Mare",
|
||||
"questHorseDropHorseEgg": "Horse (Egg)",
|
||||
"questHorseUnlockText": "Unlocks Horse Eggs for purchase in the Market",
|
||||
"questBurnoutText": "Burnout and the Exhaust Spirits",
|
||||
"questBurnoutNotes": "It is well past midnight, still and stiflingly hot, when Redphoenix and scout captain Kiwibot abruptly burst through the city gates. \"We need to evacuate all the wooden buildings!\" Redphoenix shouts. \"Hurry!\"<br><br>Kiwibot grips the wall as she catches her breath. \"It's draining people and turning them into Exhaust Spirits! That's why everything was delayed. That's where the missing people have gone. It's been stealing their energy!\"<br><br>\"'It'?'\" asks Lemoness.<br><br>And then the heat takes form.<br><br>It rises from the earth in a billowing, twisting mass, and the air chokes with the scent of smoke and sulphur. Flames lick across the molten ground and contort into limbs, writhing to horrific heights. Smoldering eyes snap open, and the creature lets out a deep and crackling cackle.<br><br> Kiwibot whispers a single word.<br><br><em>\"Burnout.\"</em>",
|
||||
"questBurnoutCompletion": "<strong>Burnout is DEFEATED!</strong><br><br>With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.<br><br>Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!<br><br>\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!<br><br>One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"<br><br>Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"<br><br>She claps her hands. \"Now - let's celebrate!\"",
|
||||
"questBurnoutCompletionChat": "`Burnout is DEFEATED!`\n\nWith a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.\n\nIan, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!\n\n\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!\n\nOne of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"\n\nHer tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"\n\nShe claps her hands. \"Now - let's celebrate!\"\n\nAll Habiticans receive:\n\nPhoenix Pet\nPhoenix Mount\nAchievement: Savior of the Flourishing Fields\nBasic Candy\nVanilla Candy\nSand Candy\nCinnamon Candy\nChocolate Candy\nRotten Candy\nSour Pink Candy\nSour Blue Candy\nHoney Candy",
|
||||
"questBurnoutCompletion": "<strong>Burnout is DEFEATED!</strong><br><br>With a great, soft sigh, Burnout slowly releases the ardent energy that was fuelling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.<br><br>Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!<br><br>“Look!” whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!<br><br>One of the glowing birds alights on the Joyful Reaper’s skeletal arm, and she grins at it. “It has been a long time since I’ve had the exquisite privilege to behold a phoenix in the Flourishing Fields,” she says, “Although given recent occurrences, I must say, this is highly thematically appropriate!”<br><br>Her tone sobers, although (naturally) her grin remains. “We’re known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won’t make the same mistake twice!”<br><br>She claps her hands. “Now—let’s celebrate!”",
|
||||
"questBurnoutCompletionChat": "`Burnout is DEFEATED!`\n\nWith a great, soft sigh, Burnout slowly releases the ardent energy that was fuelling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.\n\nIan, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!\n\n“Look!” whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!\n\nOne of the glowing birds alights on the Joyful Reaper’s skeletal arm, and she grins at it. “It has been a long time since I’ve had the exquisite privilege to behold a phoenix in the Flourishing Fields,” she says, “Although given recent occurrences, I must say, this is highly thematically appropriate!”\n\nHer tone sobers, although (naturally) her grin remains. “We’re known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won’t make the same mistake twice!”\n\nShe claps her hands. “Now—let’s celebrate!”\n\nAll Habiticans receive:\n\nPhoenix Pet\nPhoenix Mount\nAchievement: Saviour of the Flourishing Fields\nBasic Sweet\nVanilla Sweet\nSand Sweet\nCinnamon Sweet\nChocolate Sweet\nRotten Sweet\nSour Pink Sweet\nSour Blue Sweet\nHoney Sweet",
|
||||
"questBurnoutBoss": "Burnout",
|
||||
"questBurnoutBossRageTitle": "Exhaust Strike",
|
||||
"questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!",
|
||||
@@ -275,7 +275,7 @@
|
||||
"questBurnoutDropPhoenixMount": "Phoenix (Mount)",
|
||||
"questBurnoutBossRageQuests": "`Burnout uses EXHAUST STRIKE!`\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and now Burnout is inflamed with energy! With a crackling snarl, it engulfs Ian the Quest Master in a surge of spectral fire. As fallen quest scrolls smoulder, the smoke clears, and you see that Ian has been drained of energy and turned into a drifting Exhaust Spirit!\n\nOnly defeating Burnout can break the spell and restore our beloved Quest Master. Let's keep our Dailies in check and defeat this monster before it attacks again!",
|
||||
"questBurnoutBossRageSeasonalShop": "`Burnout uses EXHAUST STRIKE!`\n\nAhh!!! Our incomplete Dailies have fed the flames of Burnout, and now it has enough energy to strike again! It lets loose a gout of spectral flame that sears the Seasonal Shop. You're horrified to see that the cheery Seasonal Sorceress has been transformed into a drooping Exhaust Spirit.\n\nWe have to rescue our NPCs! Hurry, Habiticans, complete your tasks and defeat Burnout before it strikes for a third time!",
|
||||
"questBurnoutBossRageTavern": "`Burnout uses EXHAUST STRIKE!`\n\nMany Habiticans have been hiding from Burnout in the Tavern, but no longer! With a screeching howl, Burnout rakes the Tavern with its white-hot hands. As the Tavern patrons flee, Daniel is caught in Burnout's grip, and transforms into an Exhaust Spirit right in front of you!\n\nThis hot-headed horror has gone on for too long. Don't give up... we're so close to vanquishing Burnout for once and for all!",
|
||||
"questBurnoutBossRageTavern": "`Burnout uses EXHAUST STRIKE!`\n\nMany Habiticans have been hiding from Burnout in the Tavern, but no longer! With a screeching howl, Burnout rakes the Tavern with its white-hot hands. As the Tavern patrons flee, Daniel is caught in Burnout’s grip, and transforms into an Exhaust Spirit right in front of you!\n\nThis hot-headed horror has gone on for too long. Don’t give up… we’re so close to vanquishing Burnout once and for all!",
|
||||
"questFrogText": "Swamp of the Clutter Frog",
|
||||
"questFrogNotes": "As you and your friends are slogging through the Swamps of Stagnation, @starsystemic points at a large sign. \"Stay on the path—if you can.\"<br><br>\"Surely that isn't hard!\" @RosemonkeyCT says. \"It's broad and clear.\"<br><br>But as you continue, you notice that path is gradually overtaken by the muck of the swamp, laced with bits of strange blue debris and clutter, until it's impossible to proceed.<br><br>As you look around, wondering how it got this messy, @Jon Arjinborn shouts, \"Look out!\" An angry frog leaps from the sludge, clad in dirty laundry and lit by blue fire. You will have to overcome this poisonous Clutter Frog to progress!",
|
||||
"questFrogCompletion": "The frog cowers back into the muck, defeated. As it slinks away, the blue slime fades, leaving the way ahead clear.<br><br>Sitting in the middle of the path are three pristine eggs. \"You can even see the tiny tadpoles through the clear casing!\" @Breadstrings says. \"Here, you should take them.\"",
|
||||
@@ -284,7 +284,7 @@
|
||||
"questFrogUnlockText": "Unlocks Frog Eggs for purchase in the Market",
|
||||
"questSnakeText": "The Serpent of Distraction",
|
||||
"questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveller astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?",
|
||||
"questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.",
|
||||
"questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can’t help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. “Thank you! It’s not much, but I hope this can express our gratitude properly.” He hands you some Gold and… some Snake eggs! You will see that majestic animal again after all.",
|
||||
"questSnakeBoss": "Serpent of Distraction",
|
||||
"questSnakeDropSnakeEgg": "Snake (Egg)",
|
||||
"questSnakeUnlockText": "Unlocks Snake Eggs for purchase in the Market",
|
||||
@@ -295,34 +295,34 @@
|
||||
"questUnicornDropUnicornEgg": "Unicorn (Egg)",
|
||||
"questUnicornUnlockText": "Unlocks Unicorn Eggs for purchase in the Market",
|
||||
"questSabretoothText": "The Sabre Cat",
|
||||
"questSabretoothNotes": "A roaring monster is terrorizing Habitica! The creature stalks through the wilds and woods, then bursts forth to attack before vanishing again. It's been hunting innocent pandas and frightening the flying pigs into fleeing their pens to roost in the trees. @InspectorCaracal and @icefelis explain that the Zombie Sabre Cat was set free while they were excavating in the ancient, untouched ice-fields of the Stoïkalm Steppes. \"It was perfectly friendly at first – I don't know what happened. Please, you have to help us recapture it! Only a champion of Habitica can subdue this prehistoric beast!\"",
|
||||
"questSabretoothCompletion": "After a long and tiring battle, you wrestle the Zombie Sabre Cat to the ground. As you are finally able to approach, you notice a nasty cavity in one of its sabre teeth. Realising the true cause of the cat's wrath, you're able to get the cavity filled by @Fandekasp, and advise everyone to avoid feeding their friend sweets in future. The Sabre Cat flourishes, and in gratitude, its tamers send you a generous reward – a clutch of sabretooth eggs!",
|
||||
"questSabretoothNotes": "A roaring monster is terrorising Habitica! The creature stalks through the wilds and woods, then bursts forth to attack before vanishing again. It’s been hunting innocent pandas and frightening the flying pigs into fleeing their pens to roost in the trees. @InspectorCaracal and @icefelis explain that the Zombie Sabre Cat was set free while they were excavating in the ancient, untouched ice-fields of the Stoïkalm Steppes. “It was perfectly friendly at first—I don’t know what happened. Please, you have to help us recapture it! Only a champion of Habitica can subdue this prehistoric beast!”",
|
||||
"questSabretoothCompletion": "After a long and tiring battle, you wrestle the Zombie Sabre Cat to the ground. As you are finally able to approach, you notice a nasty cavity in one of its sabre teeth. Realising the true cause of the cat’s wrath, you’re able to get the cavity filled by @Fandekasp, and advise everyone to avoid feeding their friend sweets in future. The Sabre Cat flourishes, and in gratitude, its tamers send you a generous reward—a clutch of sabretooth eggs!",
|
||||
"questSabretoothBoss": "Zombie Sabre Cat",
|
||||
"questSabretoothDropSabretoothEgg": "Sabretooth (Egg)",
|
||||
"questSabretoothUnlockText": "Unlocks Sabretooth Eggs for purchase in the Market",
|
||||
"questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys",
|
||||
"questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!<br><br>\"It will take a dedicated adventurer to resist them,\" says @yamato.<br><br>\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.",
|
||||
"questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behaviour. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!<br><br>\"It will take a dedicated adventurer to resist them,\" says @yamato.<br><br>\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.",
|
||||
"questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"<br><br>@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"",
|
||||
"questMonkeyBoss": "Monstrous Mandrill",
|
||||
"questMonkeyDropMonkeyEgg": "Monkey (Egg)",
|
||||
"questMonkeyUnlockText": "Unlocks Monkey Eggs for purchase in the Market",
|
||||
"questSnailText": "The Snail of Drudgery Sludge",
|
||||
"questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"<br><br>\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"<br><br>Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.",
|
||||
"questSnailNotes": "You’re excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, “They have too many unimportant tasks and dailies, and they’re getting stuck on things that don’t matter! Pull them out!”<br><br>“You need to find the source of the ooze,” @Pfeffernusse agrees, “Or the tasks that they cannot accomplish will drag them down forever!”<br><br>Pulling out your weapon, you wade through the gooey mud… and encounter the fearsome Snail of Drudgery Sludge.",
|
||||
"questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"",
|
||||
"questSnailBoss": "Snail of Drudgery Sludge",
|
||||
"questSnailDropSnailEgg": "Snail (Egg)",
|
||||
"questSnailUnlockText": "Unlocks Snail Eggs for purchase in the Market",
|
||||
"questBewilderText": "The Be-Wilder",
|
||||
"questBewilderNotes": "The party begins like any other.<br><br>The appetisers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centrepieces, happy to have a distraction from their least-favourite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.<br><br>As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.<br><br>“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.<br><br>“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”<br><br>Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust—”<br><br>But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as a monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.<br><br>“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”<br><br>Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.<br><br>“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”<br><br>A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.<br><br>PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”<br><br>Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying—and hopefully, ourselves.",
|
||||
"questBewilderCompletion": "<strong>The Be-Wilder is DEFEATED!</strong><br><br>We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.<br><br><strong>Mistiflying is saved!</strong><br><br>The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”<br><br>The crowd mutters. Sodden flowers wash up on pavements. Somewhere in the distance, a roof collapses with a spectacular splash.<br><br>“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”<br><br>Redphoenix coughs meaningfully.<br><br>“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”<br><br>Encouraged, the marching band starts up.<br><br>It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.<br><br>As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolises the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honour.”",
|
||||
"questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on pavements. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolises the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honour.”",
|
||||
"questBewilderNotes": "The party begins like any other.<br><br>The appetisers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centrepieces, happy to have a distraction from their least-favourite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.<br><br>As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.<br><br>“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.<br><br>“As you know,” the Fool continues, “My confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend… the Be-Wilder!”<br><br>Lemoness pales suddenly, dropping her hors d’oeuvres. “Wait! Don’t trust—”<br><br>But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as a monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.<br><br>“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”<br><br>Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.<br><br>“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”<br><br>A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.<br><br>PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”<br><br>Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying—and hopefully, ourselves.",
|
||||
"questBewilderCompletion": "<strong>The Be-Wilder is DEFEATED!</strong><br><br>We’ve done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex… and the April Fool himself.<br><br><strong>Mistiflying is saved!</strong><br><br>The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says, “Perhaps I got a little… carried away.”<br><br>The crowd mutters. Sodden flowers wash up on pavements. Somewhere in the distance, a roof collapses with a spectacular splash.<br><br>“Er, yes,” the April Fool says, “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh, “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”<br><br>Redphoenix coughs meaningfully.<br><br>“I mean, get a head start on this year’s spring cleaning!” the April Fool says, “Nothing to fear, I’ll have Habit City ship-shape soon. Luckily nobody is better than I at dual-wielding mops.”<br><br>Encouraged, the marching band starts up.<br><br>It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.<br><br>As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolises the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks, “Besides, they don’t have stingers! Fool’s honour.”",
|
||||
"questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe’ve done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex… and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little… carried away.”\n\nThe crowd mutters. Sodden flowers wash up on pavements. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says, “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh, “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says, “Nothing to fear, I’ll have Habit City ship-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolises the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honour.”",
|
||||
"questBewilderBossRageTitle": "Beguilement Strike",
|
||||
"questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!",
|
||||
"questBewilderDropBumblebeePet": "Magical Bee (Pet)",
|
||||
"questBewilderDropBumblebeeMount": "Magical Bee (Mount)",
|
||||
"questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favourable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.",
|
||||
"questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!",
|
||||
"questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!",
|
||||
"questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon’t give up… we’re so close to defeating this bothersome bird for once and for all!",
|
||||
"questFalconText": "The Birds of Preycrastination",
|
||||
"questFalconNotes": "Mt. Habitica is being overshadowed by a looming mountain of To Do's. It used to be a place to picnic and enjoy a sense of accomplishment, until the neglected tasks grew out of control. Now it's home to fearsome Birds of Preycrastination, foul creatures which stop Habiticans from completing their tasks!<br><br>\"It's too hard!\" they caw at @JonArinbjorn and @Onheiron. \"It'll take too long to do right now! It won't make any difference if you wait until tomorrow! Why don't you do something fun instead?\"<br><br>No more, you vow. You will climb your personal mountain of To Do's and defeat the Birds of Preycrastination!",
|
||||
"questFalconCompletion": "Having finally triumphed over the Birds of Preycrastination, you settle down to enjoy the view and your well-earned rest.<br><br>\"Wow!\" says @Trogdorina. \"You won!\"<br><br>@Squish adds, \"Here, take these eggs I found as a reward.\"",
|
||||
@@ -330,13 +330,13 @@
|
||||
"questFalconDropFalconEgg": "Falcon (Egg)",
|
||||
"questFalconUnlockText": "Unlocks Falcon Eggs for purchase in the Market",
|
||||
"questTreelingText": "The Tangle Tree",
|
||||
"questTreelingNotes": "It's the annual Garden Competition, and everyone is talking about the mysterious project which @aurakami has promised to unveil. You join the crowd on the day of the big announcement, and marvel at the introduction of a moving tree. @fuzzytrees explains that the tree will help with garden maintenance, showing how it can mow the lawn, trim the hedge and prune the roses all at the same time – until the tree suddenly goes wild, turning its secateurs on its creator! The crowd panics as everyone tries to flee, but you aren't afraid – you leap forward, ready to do battle.",
|
||||
"questTreelingCompletion": "You dust yourself off as the last few leaves drift to the floor. In spite of the upset, the Garden Competition is now safe – although the tree you just reduced to a heap of wood chips won't be winning any prizes! \"Still a few kinks to work out there,\" @PainterProphet says. \"Perhaps someone else would do a better job of training the saplings. Do you fancy a go?\"",
|
||||
"questTreelingNotes": "It’s the annual Garden Competition, and everyone is talking about the mysterious project which @aurakami has promised to unveil. You join the crowd on the day of the big announcement, and marvel at the introduction of a moving tree. @fuzzytrees explains that the tree will help with garden maintenance, showing how it can mow the lawn, trim the hedge and prune the roses all at the same time—until the tree suddenly goes wild, turning its secateurs on its creator! The crowd panics as everyone tries to flee, but you aren’t afraid—you leap forward, ready to do battle.",
|
||||
"questTreelingCompletion": "You dust yourself off as the last few leaves drift to the floor. In spite of the upset, the Garden Competition is now safe—although the tree you just reduced to a heap of wood chips won’t be winning any prizes! “Still a few kinks to work out there,” @PainterProphet says, “Perhaps someone else would do a better job of training the saplings. Do you fancy a go?”",
|
||||
"questTreelingBoss": "Tangle Tree",
|
||||
"questTreelingDropTreelingEgg": "Treeling (Egg)",
|
||||
"questTreelingUnlockText": "Unlocks Treeling Eggs for purchase in the Market",
|
||||
"questAxolotlText": "The Magical Axolotl",
|
||||
"questAxolotlNotes": "From the depths of Washed-Up Lake you see rising bubbles and... fire? A little axolotl rises from the murky water spewing streaks of colours. Suddenly it begins to open its mouth and @streak yells, \"Look out!\" as the Magical Axolotl starts to gulp up your willpower!<br><br>The Magical Axolotl swells with spells, taunting you. \"Have you heard of my powers of regeneration? You'll tire before I do!\"<br><br>\"We can defeat you with the good habits we've built!\" @PainterProphet defiantly shouts. You steel yourself to be productive to defeat the Magical Axolotl and regain your stolen willpower!",
|
||||
"questAxolotlNotes": "From the depths of Washed-Up Lake you see rising bubbles and… fire? A little axolotl rises from the murky water spewing streaks of colours. Suddenly it begins to open its mouth and @streak yells, “Look out!” as the Magical Axolotl starts to gulp up your willpower!<br><br>The Magical Axolotl swells with spells, taunting you, “Have you heard of my powers of regeneration? You’ll tire before I do!”<br><br>“We can defeat you with the good habits we’ve built!” @PainterProphet defiantly shouts. You steel yourself to be productive to defeat the Magical Axolotl and regain your stolen willpower!",
|
||||
"questAxolotlCompletion": "After defeating the Magical Axolotl, you realise that you regained your willpower all on your own.<br><br>\"The willpower? The regeneration? It was all just an illusion?\" @Kiwibot asks.<br><br>\"Most magic is,\" the Magical Axolotl replies. \"I'm sorry for tricking you. Please take these eggs as an apology. I trust you to raise them to use their magic for good habits and not evil!\"<br><br>You and @hazel40 clutch your new eggs in one hand and wave goodbye with the other as the Magical Axolotl returns to the lake.",
|
||||
"questAxolotlBoss": "Magical Axolotl",
|
||||
"questAxolotlDropAxolotlEgg": "Axolotl (Egg)",
|
||||
@@ -363,7 +363,7 @@
|
||||
"questCowDropCowEgg": "Cow (Egg)",
|
||||
"questCowUnlockText": "Unlocks Cow Eggs for purchase in the Market",
|
||||
"questBeetleText": "The CRITICAL BUG",
|
||||
"questBeetleNotes": "Something in the domain of Habitica has gone awry. The Blacksmiths' forges have extinguished, and strange errors are appearing everywhere. With an ominous tremor, an insidious foe worms from the earth... a CRITICAL BUG! You brace yourself as it infects the land, and glitches begin to overtake the Habiticans around you. @starsystemic yells, \"We need to help the Blacksmiths get this Bug under control!\" It looks like you'll have to make this programmer's pest your top priority.",
|
||||
"questBeetleNotes": "Something in the domain of Habitica has gone awry. The Blacksmiths’ forges have extinguished, and strange errors are appearing everywhere. With an ominous tremor, an insidious foe worms from the earth… a CRITICAL BUG! You brace yourself as it infects the land, and glitches begin to overtake the Habiticans around you. @starsystemic yells, “We need to help the Blacksmiths get this Bug under control!” It looks like you’ll have to make this programmer’s pest your top priority.",
|
||||
"questBeetleCompletion": "With a final attack, you crush the CRITICAL BUG. @starsystemic and the Blacksmiths rush up to you, overjoyed. \"I can't thank you enough for smashing that bug! Here, take these.\" You are presented with three shiny beetle eggs. Hopefully these little bugs will grow up to help Habitica, not hurt it.",
|
||||
"questBeetleBoss": "CRITICAL BUG",
|
||||
"questBeetleDropBeetleEgg": "Beetle (Egg)",
|
||||
@@ -388,19 +388,19 @@
|
||||
"questTaskwoodsTerror2DropArmor": "Pyromancer's Robes (Armour)",
|
||||
"questTaskwoodsTerror3Text": "Terror in the Taskwoods, Part 3: Jacko of the Lantern",
|
||||
"questTaskwoodsTerror3Notes": "Ready for battle, your group marches to the heart of the forest, where the renegade spirit is trying to destroy an ancient apple tree surrounded by fruitful berry bushes. His pumpkin-like head radiates a terrible light wherever it turns, and in his left hand he holds a long rod, with a lantern hanging from its tip. Instead of fire or flame, however, the lantern contains a dark crystal that chills you to the very bone.<br><br>The Joyful Reaper raises a bony hand to her mouth. \"That's—that's Jacko, the Lantern Spirit! But he's a helpful harvest ghost who guides our farmers. What could possibly drive the dear soul to act this way?\"<br><br>\"I don't know,\" says @bridgetteempress. \"But it looks like that 'dear soul' is about to attack us!\"",
|
||||
"questTaskwoodsTerror3Completion": "After a long battle, you manage to land a well-aimed blow at the lantern that Jacko carries, and the crystal within shatters. Jacko suddenly snaps back to his senses and bursts into glowing tears. \"Oh, my beautiful forest! What have I done?!\" he wails. His tears extinguish the remaining fires, and the apple tree and wild berries are saved.<br><br>After you help him relax, he explains, \"I met this charming lady named Tzina, and she gave me this glowing crystal as a gift. At her urging, I put it in my lantern... but that's the last thing I recall.\" He turns to you with a golden smile. \"Perhaps you should take it for safekeeping while I help the wild orchards to regrow.\"",
|
||||
"questTaskwoodsTerror3Completion": "After a long battle, you manage to land a well-aimed blow at the lantern that Jacko carries, and the crystal within shatters. Jacko suddenly snaps back to his senses and bursts into glowing tears. “Oh, my beautiful forest! What have I done?!” he wails. His tears extinguish the remaining fires, and the apple tree and wild berries are saved.<br><br>After you help him relax, he explains, “I met this charming lady named Tzina, and she gave me this glowing crystal as a gift. At her urging, I put it in my lantern… but that’s the last thing I recall.” He turns to you with a golden smile, “Perhaps you should take it for safekeeping while I help the wild orchards to regrow.”",
|
||||
"questTaskwoodsTerror3Boss": "Jacko of the Lantern",
|
||||
"questTaskwoodsTerror3DropStrawberry": "Strawberry (Food)",
|
||||
"questTaskwoodsTerror3DropWeapon": "Taskwoods Lantern (Two-Handed Weapon)",
|
||||
"questFerretText": "The Nefarious Ferret",
|
||||
"questFerretNotes": "Walking through Habit City, you see an unhappy crowd surrounding a red-robed Ferret.<br><br>\"That productivity potion you sold me is useless!\" @Beffymaroo complains. \"I watched three hours of TV last night instead of doing my chores!\"<br><br>\"Yeah!\" shouts @Pandah. \"And today I spent an hour rearranging my books instead of reading them!\"<br><br>The Nefarious Ferret spreads his hands innocently. \"That's more TV watching and book organizing than you'd normally get done, isn't it?\"<br><br>The crowd erupts in anger.<br><br>\"No refunds!\" crows the Nefarious Ferret. He fires a bolt of magic into the crowd, preparing to escape in the smoke.<br><br>\"Please, Habitican!\" @Faye says, grabbing your arm. \"Defeat the ferret and make him refund his dishonest earnings!\"",
|
||||
"questFerretNotes": "Walking through Habit City, you see an unhappy crowd surrounding a red-robed Ferret.<br><br>“That productivity potion you sold me is useless!” @Beffymaroo complains, “I watched three hours of TV last night instead of doing my chores!”<br><br>“Yeah!” shouts @Pandah, “And today I spent an hour rearranging my books instead of reading them!”<br><br>The Nefarious Ferret spreads his hands innocently. “That’s more TV watching and book organising than you’d normally get done, isn’t it?”<br><br>The crowd erupts in anger.<br><br>“No refunds!” crows the Nefarious Ferret. He shoots a bolt of magic into the crowd, preparing to escape in the smoke.<br><br>“Please, Habitican!” @Faye says, grabbing your arm, “Defeat the ferret and make him refund his dishonest earnings!”",
|
||||
"questFerretCompletion": "You defeat the soft-furred swindler and @UncommonCriminal gives the crowd their refunds. There's even a little gold left over for you. Plus, it looks like the Nefarious Ferret dropped some eggs in his hurry to get away!",
|
||||
"questFerretBoss": "Nefarious Ferret",
|
||||
"questFerretDropFerretEgg": "Ferret (Egg)",
|
||||
"questFerretUnlockText": "Unlocks Ferret Eggs for purchase in the Market",
|
||||
"questDustBunniesText": "The Feral Dust Bunnies",
|
||||
"questDustBunniesNotes": "It's been a while since you've done any dusting in here, but you're not too worried—a little dust never hurt anyone, right? It's not until you stick your hand into one of the dustiest corners and feel something bite that you remember @InspectorCaracal's warning: leaving harmless dust sit too long causes it to turn into vicious dust bunnies! You'd better defeat them before they cover all of Habitica in fine particles of dirt!",
|
||||
"questDustBunniesCompletion": "The dust bunnies vanish into a puff of... well, dust. As it clears, you look around. You'd forgotten how nice this place looks when it's clean. You spy a small pile of gold where the dust used to be. Huh, you'd been wondering where that was!",
|
||||
"questDustBunniesCompletion": "The dust bunnies vanish into a puff of… well, dust. As it clears, you look around. You’d forgotten how nice this place looks when it’s clean. You spy a small pile of gold where the dust used to be. Huh, you’d been wondering where that was!",
|
||||
"questDustBunniesBoss": "Feral Dust Bunnies",
|
||||
"questGroupMoon": "Lunar Battle",
|
||||
"questMoon1Text": "Lunar Battle, Part 1: Find the Mysterious Shards",
|
||||
@@ -409,7 +409,7 @@
|
||||
"questMoon1CollectShards": "Lunar Shards",
|
||||
"questMoon1DropHeadgear": "Lunar Warrior Helm (Headgear)",
|
||||
"questMoon2Text": "Lunar Battle, Part 2: Stop the Overshadowing Stress",
|
||||
"questMoon2Notes": "After studying the shards, @Starsystemic the Seer has some bad news. \"An ancient monster is approaching Habitica, and it is causing terrible stress to befall the citizens. I can draw the shadow out of people's hearts and into this tower, where it will take physical form, but you’ll need to defeat it before it breaks loose and spreads again.\" You nod, and she starts to chant. Dancing shadows fill the room, pressing tightly together. The cold wind swirls, the darkness deepens. The Overshadowing Stress rises from the floor, grins like a nightmare made real... and strikes!",
|
||||
"questMoon2Notes": "After studying the shards, @Starsystemic the Seer has some bad news: “An ancient monster is approaching Habitica, and it is causing terrible stress to befall the citizens. I can draw the shadow out of people’s hearts and into this tower, where it will take physical form, but you’ll need to defeat it before it breaks loose and spreads again.” You nod, and she starts to chant. Dancing shadows fill the room, pressing tightly together. The cold wind swirls, the darkness deepens. The Overshadowing Stress rises from the floor, grins like a nightmare made real… and strikes!",
|
||||
"questMoon2Completion": "The shadow explodes in a puff of dark air, leaving the room brighter and your hearts lighter. The stress blanketing Habitica is diminished, and you can all breathe a sigh of relief. Still, as you look up at the sky, you sense that this is not over: the monster knows someone destroyed its shadow. \"We'll keep careful watch in the coming weeks,\" says @Starsystemic, \"and I'll send you a quest scroll when it manifests.\"",
|
||||
"questMoon2Boss": "Overshadowing Stress",
|
||||
"questMoon2DropArmor": "Lunar Warrior Armour (Armour)",
|
||||
@@ -419,7 +419,7 @@
|
||||
"questMoon3Boss": "Monstrous Moon",
|
||||
"questMoon3DropWeapon": "Lunar Scythe (Two-Handed Weapon)",
|
||||
"questSlothText": "The Somnolent Sloth",
|
||||
"questSlothNotes": "As you and your party venture through the Somnolent Snowforest, you're relieved to see a glimmering of green among the white snowdrifts... until an enormous sloth emerges from the frosty trees! Green emeralds shimmer hypnotically on its back.<br><br>\"Hello, adventurers... why don't you take it slow? You've been walking for a while... so why not... stop? Just lie down, and rest...\"<br><br>You feel your eyelids grow heavy, and you realise: It's the Somnolent Sloth! According to @JaizakAripaik, it got its name from the emeralds on its back which are rumoured to... send people to... sleep...<br><br>You shake yourself awake, fighting drowsiness. In the nick of time, @awakebyjava and @PainterProphet begin to shout spells, forcing your party awake. \"Now's our chance!\" @Kiwibot yells.",
|
||||
"questSlothNotes": "As you and your party venture through the Somnolent Snowforest, you’re relieved to see a glimmering of green among the white snowdrifts… until an enormous sloth emerges from the frosty trees! Green emeralds shimmer hypnotically on its back.<br><br>“Hello, adventurers… why don’t you take it slowly? You've been walking for a while… so why not… stop? Just lie down, and rest…”<br><br>You feel your eyelids grow heavy, and you realise: it’s the Somnolent Sloth! According to @JaizakAripaik, it got its name from the emeralds on its back which are rumoured to… send people to… sleep…<br><br>You shake yourself awake, fighting drowsiness. In the nick of time, @awakebyjava and @PainterProphet begin to shout spells, forcing your party awake. “Now’s our chance!” @Kiwibot yells.",
|
||||
"questSlothCompletion": "You did it! As you defeat the Somnolent Sloth, its emeralds break off. \"Thank you for freeing me of my curse,\" says the sloth. \"I can finally sleep well, without those heavy emeralds on my back. Have these eggs as thanks, and you can have the emeralds too.\" The sloth gives you three sloth eggs and heads off for warmer climates.",
|
||||
"questSlothBoss": "Somnolent Sloth",
|
||||
"questSlothDropSlothEgg": "Sloth (Egg)",
|
||||
@@ -447,7 +447,7 @@
|
||||
"questStoikalmCalamity2CollectIcicleCoins": "Icicle Coins",
|
||||
"questStoikalmCalamity2DropHeadgear": "Mammoth Rider Helm (Headgear)",
|
||||
"questStoikalmCalamity3Text": "Stoïkalm Calamity, Part 3: Icicle Drake Quake",
|
||||
"questStoikalmCalamity3Notes": "The twining tunnels of the icicle drake caverns shimmer with frost... and with untold riches. You gape, but Lady Glaciate strides past without a glance. \"Excessively flashy,\" she says. \"Obtained admirably, though, from respectable mercenary work and prudent banking investments. Look further.\" Squinting, you spot a towering pile of stolen items hidden in the shadows.<br><br>A sibilant voice hisses as you approach. \"My delicious hoard! You shall not steal it back from me!\" A sinuous body slides from the heap: the Icicle Drake Queen herself! You have just enough time to note the strange bracelets glittering on her wrists and the wildness glinting in her eyes before she lets out a howl that shakes the earth around you.",
|
||||
"questStoikalmCalamity3Notes": "The twining tunnels of the icicle drake caverns shimmer with frost… and with untold riches. You gape, but Lady Glaciate strides past without a glance. “Excessively flashy,” she says, “Obtained admirably, though, from respectable mercenary work and prudent banking investments. Look further.” Squinting, you spot a towering pile of stolen items hidden in the shadows.<br><br>A sibilant voice hisses as you approach, “My delicious hoard! You shall not steal it back from me!” A sinuous body slides from the heap: the Icicle Drake Queen herself! You have just enough time to note the strange bracelets glittering on her wrists and the wildness glinting in her eyes before she lets out a howl that shakes the earth around you.",
|
||||
"questStoikalmCalamity3Completion": "You subdue the Icicle Drake Queen, giving Lady Glaciate time to shatter the glowing bracelets. The Queen stiffens in apparent mortification, then quickly covers it with a haughty pose. \"Feel free to remove these extraneous items,\" she says. \"I'm afraid they simply don't fit our decor.\"<br><br>\"Also, you stole them,\" @Beffymaroo says. \"By summoning monsters from the earth.\"<br><br>The Icicle Drake Queen looks miffed. \"Take it up with that wretched bracelet saleswoman,\" she says. \"It's Tzina you want. I was essentially unaffiliated.\"<br><br>Lady Glaciate claps you on the arm. \"You did well today,\" she says, handing you a spear and a horn from the pile. \"Be proud.\"",
|
||||
"questStoikalmCalamity3Boss": "Icicle Drake Queen",
|
||||
"questStoikalmCalamity3DropBlueCottonCandy": "Blue Candyfloss (Food)",
|
||||
@@ -460,7 +460,7 @@
|
||||
"questGuineaPigDropGuineaPigEgg": "Guinea Pig (Egg)",
|
||||
"questGuineaPigUnlockText": "Unlocks Guinea Pig Eggs for purchase in the Market",
|
||||
"questPeacockText": "The Push-and-Pull Peacock",
|
||||
"questPeacockNotes": "You trek through the Taskwoods, wondering which of the enticing new goals you should pick. As you go deeper into the forest, you realise that you're not alone in your indecision. \"I could learn a new language, or go to the gym...\" @Cecily Perez mutters. \"I could sleep more,\" muses @Lilith of Alfheim, \"or spend time with my friends...\" It looks like @PainterProphet, @Pfeffernusse, and @Draayder are equally paralysed by the overwhelming options.<br><br>You realise that these ever-more-demanding feelings aren't really your own... you've stumbled straight into the trap of the pernicious Push-and-Pull Peacock! Before you can run, it leaps from the bushes. With each head pulling you in conflicting directions, you start to feel burnout overcoming you. You can't defeat both foes at once, so you only have one option—concentrate on the nearest task to fight back!",
|
||||
"questPeacockNotes": "You trek through the Taskwoods, wondering which of the enticing new goals you should pick. As you go deeper into the forest, you realise that you’re not alone in your indecision. “I could learn a new language, or go to the gym…” @Cecily Perez mutters. “I could sleep more,” muses @Lilith of Alfheim, “Or spend time with my friends…” It looks like @PainterProphet, @Pfeffernusse, and @Draayder are equally paralysed by the overwhelming options.<br><br>You realise that these ever-more-demanding feelings aren’t really your own… you’ve stumbled straight into the trap of the pernicious Push-and-Pull Peacock! Before you can run, it leaps from the bushes. With each head pulling you in conflicting directions, you start to feel burnout overcoming you. You can’t defeat both foes at once, so you only have one option—concentrate on the nearest task to fight back!",
|
||||
"questPeacockCompletion": "The Push-and-Pull Peacock is caught off guard by your sudden conviction. Defeated by your single-minded drive, its heads merge back into one, revealing the most beautiful creature you've ever seen. \"Thank you,\" the peacock says. \"I’ve spent so long pulling myself in different directions that I lost sight of what I truly wanted. Please accept these eggs as a token of my gratitude.\"",
|
||||
"questPeacockBoss": "Push-and-Pull Peacock",
|
||||
"questPeacockDropPeacockEgg": "Peacock (Egg)",
|
||||
@@ -483,8 +483,8 @@
|
||||
"questMayhemMistiflying1DropWhitePotion": "White Hatching Potion",
|
||||
"questMayhemMistiflying1DropArmor": "Roguish Rainbow Messenger Robes (Armour)",
|
||||
"questMayhemMistiflying2Text": "Mayhem in Mistiflying, Part 2: In Which the Wind Worsens",
|
||||
"questMayhemMistiflying2Notes": "Mistiflying dips and rocks as the magical bees keeping it afloat are buffeted by the gale. After a desperate search for the April Fool, you find him inside a cottage, blithely playing cards with an angry, trussed-up skull.<br><br>@Katy133 raises their voice over the whistling wind. “What’s causing this? We defeated the skulls, but it’s getting worse!”<br><br>“That is a pickle,” the April Fool agrees. “Please be a dear and don’t mention it to Lady Glaciate. She’s always threatening to call off our courtship on the grounds that I am ‘catastrophically irresponsible,’ and I fear that she might misread this situation.” He shuffles the deck. “Perhaps you might follow the Mistiflies? They’re immaterial, so the wind can’t blow them away, and they tend to swarm around threats.” He nods out the window, where several of the city’s patron creatures are fluttering towards the east. “Now let me concentrate — my opponent has quite the poker face.”",
|
||||
"questMayhemMistiflying2Completion": "You follow the Mistiflies to the site of a tornado, too stormy for you to enter.<br><br>“This should help,” says a voice directly in your ear, and you nearly fall off of your mount. The April Fool is somehow sitting directly behind you in the saddle. “I hear these messenger hoods emit an aura that guards against inclement weather — very useful to avoid losing missives as you fly around. Perhaps give it a try?”",
|
||||
"questMayhemMistiflying2Notes": "Mistiflying dips and rocks as the magical bees keeping it afloat are buffeted by the gale. After a desperate search for the April Fool, you find him inside a cottage, blithely playing cards with an angry, trussed-up skull.<br><br>@Katy133 raises their voice over the whistling wind, “What’s causing this? We defeated the skulls, but it’s getting worse!”<br><br>“That is a pickle,” the April Fool agrees. “Please be a dear and don’t mention it to Lady Glaciate. She’s always threatening to call off our courtship on the grounds that I am ‘catastrophically irresponsible’, and I fear that she might misread this situation.” He shuffles the deck. “Perhaps you might follow the Mistiflies? They’re immaterial, so the wind can’t blow them away, and they tend to swarm around threats.” He nods out the window, where several of the city’s patron creatures are fluttering towards the east. “Now let me concentrate—my opponent has quite the poker face.”",
|
||||
"questMayhemMistiflying2Completion": "You follow the Mistiflies to the site of a tornado, too stormy for you to enter.<br><br>“This should help,” says a voice directly in your ear, and you nearly fall off your mount. The April Fool is somehow sitting directly behind you in the saddle. “I hear these messenger hoods emit an aura that guards against inclement weather—very useful to avoid losing missives as you fly around. Perhaps give it a try?”",
|
||||
"questMayhemMistiflying2CollectRedMistiflies": "Red Mistiflies",
|
||||
"questMayhemMistiflying2CollectBlueMistiflies": "Blue Mistiflies",
|
||||
"questMayhemMistiflying2CollectGreenMistiflies": "Green Mistiflies",
|
||||
@@ -500,7 +500,7 @@
|
||||
"featheredFriendsNotes": "Contains Quests to obtain Owl, Parrot, and Hawk Pet eggs: The Night-Owl, Help! Harpy!, and The Birds of Preycrastination.",
|
||||
"questNudibranchText": "Infestation of the NowDo Nudibranchs",
|
||||
"questNudibranchNotes": "You finally get around to checking your To Do's on a lazy day in Habitica. Bright against your deepest red tasks are a gaggle of vibrant blue sea slugs. You are entranced! Their sapphire colours make your most intimidating tasks look as easy as your best Habits. In a feverish stupor you get to work, tackling one task after the other in a ceaseless frenzy...<br><br>The next thing you know, @LilithofAlfheim is pouring cold water over you. “The NowDo Nudibranchs have been stinging you all over! You need to take a break!”<br><br>Shocked, you see that your skin is as bright red as your To Do list was. \"Being productive is one thing,\" @beffymaroo says, \"but you've also got to take care of yourself. Hurry, let's get rid of them!\"",
|
||||
"questNudibranchCompletion": "You see the last of the NowDo Nudibranchs sliding off of a pile of completed tasks as @amadshade washes them away. One leaves behind a cloth bag, and you open it to reveal some gold and a few little ellipsoids you guess are eggs.",
|
||||
"questNudibranchCompletion": "You see the last of the NowDo Nudibranchs sliding off a pile of completed tasks as @amadshade washes them away. One leaves behind a cloth bag, and you open it to reveal some gold and a few little ellipsoids you guess are eggs.",
|
||||
"questNudibranchBoss": "NowDo Nudibranch",
|
||||
"questNudibranchDropNudibranchEgg": "Nudibranch (Egg)",
|
||||
"questNudibranchUnlockText": "Unlocks Nudibranch Eggs for purchase in the Market",
|
||||
@@ -519,13 +519,13 @@
|
||||
"questGroupLostMasterclasser": "Mystery of the Masterclassers",
|
||||
"questUnlockLostMasterclasser": "To unlock this quest, complete the final quests of these quest chains: 'Dilatory Distress', 'Mayhem in Mistiflying', 'Stoïkalm Calamity', and 'Terror in the Taskwoods'.",
|
||||
"questLostMasterclasser1Text": "The Mystery of the Masterclassers, Part 1: Read Between the Lines",
|
||||
"questLostMasterclasser1Notes": "You’re unexpectedly summoned by @beffymaroo and @Lemoness to Habit Hall, where you’re astonished to find all four of Habitica’s Masterclassers awaiting you in the wan light of dawn. Even the Joyful Reaper looks somber.<br><br>“Oho, you’re here,” says the April Fool. “Now, we would not rouse you from your rest without a truly dire—”<br><br>“Help us investigate the recent bout of possessions,” interrupts Lady Glaciate. “All the victims blamed someone named Tzina.”<br><br>The April Fool is clearly affronted by the summary. “What about my speech?” he hisses to her. “With the fog and thunderstorm effects?”<br><br>“We’re in a hurry,” she mutters back. “And my mammoths are still soggy from your incessant practicing.”<br><br>“I’m afraid that the esteemed Master of Warriors is correct,” says King Manta. “Time is of the essence. Will you aid us?”<br><br>When you nod, he waves his hands to open a portal, revealing an underwater room. “Swim down with me to Dilatory, and we will scour my library for any references that might give us a clue.” At your look of confusion, he adds, “Don’t worry, the paper was enchanted long before Dilatory sank. None of the books are the slightest bit damp!” He winks.“Unlike Lady Glaciate’s mammoths.”<br><br>“I heard that, Manta.”<br><br>As you dive into the water after the Master of Mages, your legs magically fuse into fins. Though your body is buoyant, your heart sinks when you see the thousands of bookshelves. Better start reading…",
|
||||
"questLostMasterclasser1Notes": "You’re unexpectedly summoned by @beffymaroo and @Lemoness to Habit Hall, where you’re astonished to find all four of Habitica’s Masterclassers awaiting you in the wan light of dawn. Even the Joyful Reaper looks sombre.<br><br>“Oho, you’re here,” says the April Fool. “Now, we would not rouse you from your rest without a truly dire—”<br><br>“Help us investigate the recent bout of possessions,” interrupts Lady Glaciate. “All the victims blamed someone named Tzina.”<br><br>The April Fool is clearly affronted by the summary. “What about my speech?” he hisses to her. “With the fog and thunderstorm effects?”<br><br>“We’re in a hurry,” she mutters back. “And my mammoths are still soggy from your incessant practising.”<br><br>“I’m afraid that the esteemed Master of Warriors is correct,” says King Manta. “Time is of the essence. Will you aid us?”<br><br>When you nod, he waves his hands to open a portal, revealing an underwater room. “Swim down with me to Dilatory, and we will scour my library for any references that might give us a clue.” At your look of confusion, he adds, “Don’t worry, the paper was enchanted long before Dilatory sank. None of the books are the slightest bit damp!” He winks.“Unlike Lady Glaciate’s mammoths.”<br><br>“I heard that, Manta.”<br><br>As you dive into the water after the Master of Mages, your legs magically fuse into fins. Though your body is buoyant, your heart sinks when you see the thousands of bookshelves. Better start reading…",
|
||||
"questLostMasterclasser1Completion": "After hours of poring through volumes, you still haven’t found any useful information.<br><br>“It seems impossible that there isn’t even the tiniest reference to anything relevant,” says head librarian @Tuqjoi, and their assistant @stefalupagus nods in frustration.<br><br>King Manta’s eyes narrow. “Not impossible…” he says. “<em>Intentional</em>.” For a moment, the water glows around his hands, and several of the books shudder. “Something is obscuring information,” he says. “Not just a static spell, but something with a will of its own. Something… alive.” He swims up from the table. “The Joyful Reaper needs to hear about this. Let’s pack a meal for the road.”",
|
||||
"questLostMasterclasser1CollectAncientTomes": "Ancient Tomes",
|
||||
"questLostMasterclasser1CollectForbiddenTomes": "Forbidden Tomes",
|
||||
"questLostMasterclasser1CollectHiddenTomes": "Hidden Tomes",
|
||||
"questLostMasterclasser2Text": "The Mystery of the Masterclassers, Part 2: Assembling the a'Voidant",
|
||||
"questLostMasterclasser2Notes": "The Joyful Reaper drums her bony fingers on some of the books that you brought. “Oh, dear,” the Master of Healers says. “There is a malevolent life essence at work. I might have guessed, considering the attacks by reanimated skulls during each incident.” Her assistant @tricksy.fox brings in a chest, and you are startled to see the contents that @beffymaroo unloads: the very same objects once used by this mysterious Tzina to possess people.<br><br>“I’m going to use resonant healing magic to try to make this creature manifest,” the Joyful Reaper says, reminding you that the skeleton is a somewhat unconventional Healer. “You’ll need to read the revealed information quickly, in case it breaks loose.”<br><br>As she concentrates, a twisting mist begins to siphon from the books and twine around the objects. Quickly, you flip through the pages, trying to read the new lines of text that are writhing into view. You catch only a few snippets: “Sands of the Timewastes” — “the Great Disaster” —“split into four”— “permanently corrupted”— before a single name catches your eye: Zinnya.<br><br>Abruptly, the pages wrench free from your fingers and shred themselves as a howling creature explodes into being, coalescing around the possessed objects.<br><br>“It’s an a’Voidant!” the Joyful Reaper shouts, throwing up a protection spell. “They’re ancient creatures of confusion and obscurity. If this Tzina can control one, she must have a frightening command over life magic. Quickly, attack it before it escapes back into the books!”<br><br>",
|
||||
"questLostMasterclasser2Notes": "The Joyful Reaper drums her bony fingers on some of the books that you brought. “Oh, dear,” the Master of Healers says, “There is a malevolent life essence at work. I might have guessed, considering the attacks by reanimated skulls during each incident.” Her assistant @tricksy.fox brings in a chest, and you are startled to see the contents that @beffymaroo unloads: the very same objects once used by this mysterious Tzina to possess people.<br><br>“I’m going to use resonant healing magic to try to make this creature manifest,” the Joyful Reaper says, reminding you that the skeleton is a somewhat unconventional Healer, “You’ll need to read the revealed information quickly, in case it breaks loose.”<br><br>As she concentrates, a twisting mist begins to siphon from the books and twine around the objects. Quickly, you flip through the pages, trying to read the new lines of text that are writhing into view. You catch only a few snippets: “Sands of the Timewastes”—“the Great Disaster”—“split into four”—“permanently corrupted”—before a single name catches your eye: Zinnya.<br><br>Abruptly, the pages wrench free from your fingers and shred themselves as a howling creature explodes into being, coalescing around the possessed objects.<br><br>“It’s an a’Voidant!” the Joyful Reaper shouts, throwing up a protection spell. “They’re ancient creatures of confusion and obscurity. If this Tzina can control one, she must have a frightening command over life magic. Quickly, attack it before it escapes back into the books!”<br><br>",
|
||||
"questLostMasterclasser2Completion": "The a’Voidant succumbs at last, and you share the snippets that you read.<br><br>“None of those references sound familiar, even for someone as old as I,” the Joyful Reaper says. “Except… the Timewastes are a distant desert at the most hostile edge of Habitica. Portals often fail nearby, but swift mounts could get you there in no time. Lady Glaciate will be glad to assist.” Her voice grows amused. “Which means that the enamored Master of Rogues will undoubtedly tag along.” She hands you the glimmering mask. “Perhaps you should try to track the lingering magic in these items to its source. I’ll go harvest some sustenance for your journey.”",
|
||||
"questLostMasterclasser2Boss": "The a'Voidant",
|
||||
"questLostMasterclasser2DropEyewear": "Aether Mask (Eyewear)",
|
||||
@@ -539,11 +539,11 @@
|
||||
"questLostMasterclasser3DropBodyAccessory": "Aether Amulet (Body Accessory)",
|
||||
"questLostMasterclasser3DropBasePotion": "Base Hatching Potion",
|
||||
"questLostMasterclasser3DropGoldenPotion": "Golden Hatching Potion",
|
||||
"questLostMasterclasser3DropPinkPotion": "Cotton Candy Pink Hatching Potion",
|
||||
"questLostMasterclasser3DropPinkPotion": "Candyfloss Pink Hatching Potion",
|
||||
"questLostMasterclasser3DropShadePotion": "Shade Hatching Potion",
|
||||
"questLostMasterclasser3DropZombiePotion": "Zombie Hatching Potion",
|
||||
"questLostMasterclasser4Text": "The Mystery of the Masterclassers, Part 4: The Lost Masterclasser",
|
||||
"questLostMasterclasser4Notes": "You surface from the portal, but you’re still suspended in a strange, shifting netherworld. “That was bold,” says a cold voice. “I have to admit, I hadn’t planned for a direct confrontation yet.” A woman rises from the churning whirlpool of darkness. “Welcome to the Realm of Void.”<br><br>You try to fight back your rising nausea. “Are you Zinnya?” you ask.<br><br>“That old name for a young idealist,” she says, mouth twisting, and the world writhes beneath you. “No. If anything, you should call me the Anti’zinnya now, given all that I have done and undone.”<br><br>Suddenly, the portal reopens behind you, and as the four Masterclassers burst out, bolting towards you, Anti’zinnya’s eyes flash with hatred. “I see that my pathetic replacements have managed to follow you.”<br><br>You stare. “Replacements?”<br><br>“As the Master Aethermancer, I was the first Masterclasser — the only Masterclasser. These four are a mockery, each possessing only a fragment of what I once had! I commanded every spell and learned every skill. I shaped your very world to my whim — until the traitorous aether itself collapsed under the weight of my talents and my perfectly reasonable expectations. I have been trapped for millennia in this resulting void, recuperating. Imagine my disgust when I learned how my legacy had been corrupted.” She lets out a low, echoing laugh. “My plan was to destroy their domains before destroying them, but I suppose the order is irrelevant.” With a burst of uncanny strength, she charges forward, and the Realm of Void explodes into chaos.",
|
||||
"questLostMasterclasser4Notes": "You surface from the portal, but you’re still suspended in a strange, shifting netherworld. “That was bold,” says a cold voice, “I have to admit, I hadn’t planned for a direct confrontation yet.” A woman rises from the churning whirlpool of darkness. “Welcome to the Realm of Void.”<br><br>You try to fight back your rising nausea. “Are you Zinnya?” you ask.<br><br>“That old name for a young idealist,” she says, mouth twisting, and the world writhes beneath you, “No. If anything, you should call me the Anti’zinnya now, given all that I have done and undone.”<br><br>Suddenly, the portal reopens behind you, and as the four Masterclassers burst out, bolting towards you, Anti’zinnya’s eyes flash with hatred. “I see that my pathetic replacements have managed to follow you.”<br><br>You stare, “Replacements?”<br><br>“As the Master Aethermancer, I was the first Masterclasser—the only Masterclasser. These four are a mockery, each possessing only a fragment of what I once had! I commanded every spell and learned every skill. I shaped your very world to my whim—until the traitorous aether itself collapsed under the weight of my talents and my perfectly reasonable expectations. I have been trapped for millennia in this resulting void, recuperating. Imagine my disgust when I learned how my legacy had been corrupted.” She lets out a low, echoing laugh, “My plan was to destroy their domains before destroying them, but I suppose the order is irrelevant.” With a burst of uncanny strength, she charges forward, and the Realm of Void explodes into chaos.",
|
||||
"questLostMasterclasser4Completion": "Under the onslaught of your final attack, the Lost Masterclasser screams in frustration, her body flickering into translucence. The thrashing void stills around her as she slumps forward, and for a moment, she seems to change, becoming younger, calmer, with an expression of peace upon her face… but then everything melts away with scarcely a whisper, and you’re kneeling once more in the desert sand.<br><br>“It seems that we have much to learn about our own history,” King Manta says, staring at the broken ruins. “After the Master Aethermancer grew overwhelmed and lost control of her abilities, the outpouring of void must have leached the life from the entire land. Everything probably became deserts like this.”<br><br>“No wonder the ancients who founded Habitica stressed a balance of productivity and wellness,” the Joyful Reaper murmurs. “Rebuilding their world would have been a daunting task requiring considerable hard work, but they would have wanted to prevent such a catastrophe from happening again.”<br><br>“Oho, look at those formerly possessed items!” says the April Fool. Sure enough, all of them shimmer with a pale, glimmering translucence from the final burst of aether released when you laid Anti’zinnya’s spirit to rest. “What a dazzling effect. I must take notes.”<br><br>“The concentrated remnants of aether in this area probably caused these animals to go invisible, too,” says Lady Glaciate, scratching a patch of emptiness behind the ears. You feel an unseen fluffy head nudge your hand, and suspect that you’ll have to do some explaining at the stables back home. As you look at the ruins one last time, you spot all that remains of the first Masterclasser: her shimmering cloak. Lifting it onto your shoulders, you head back to Habit City, pondering everything that you have learned.<br><br>",
|
||||
"questLostMasterclasser4Boss": "Anti'zinnya",
|
||||
"questLostMasterclasser4RageTitle": "Siphoning Void",
|
||||
@@ -726,7 +726,7 @@
|
||||
"questStoneCollectCapricornRunes": "Capricorn Runes",
|
||||
"questStoneCompletion": "The work clearing overgrowth and moving loose stones taxes you to the limits of your strength. But you divide the work among the team, and place stones in the paths behind you to help you find your way back to the others. The runes you find bolster your strength and determination, too, and in the end the garden doesn't look so neglected at all!<br><br>You convene at the Library as @starsystemic suggested, and find a Magic Potion formula that uses the runes you collected. “This is an unexpected reward for attending to our neglected tasks,” says @jjgame83.<br><br>@QuartzFox agrees, “And that is on top of having a beautiful garden to enjoy with our pets.”<br><br>“Let's start making some a-mazing Mossy Stone Hatching Potions!” says @starsystemic, and everyone joins in happily.",
|
||||
"questStoneCollectMossyStones": "Mossy Stones",
|
||||
"questFungiNotes": "It’s been a rainy spring in Habitica and the ground around the stables is spongy and damp. You notice quite a few mushrooms have appeared along the wooden stable walls and fences. There’s a fog hanging about, not quite letting the sun peek through, and it’s a bit dispiriting.<br><br>Out of the mist you see the outline of the April Fool, not at all his usual bouncy self.<br><br>”I’d hoped to bring you all some delightful Fungi Magic Hatching Potions so that you can keep your mushroom friends from my special day forever,” he says, his expression alarmingly unsmiling. “But this cold fog is really getting to me, it’s making me feel too tired and dismal to work my usual magic.”<br><br>“Oh no, sorry to hear that,” you say, noticing your own increasingly somber mood. “This fog is really making the day gloomy. I wonder where it came from…”<br><br>A low rumble sounds across the fields, and you see an outline emerging from the mist. You’re alarmed to see a gigantic and unhappy looking mushroom creature, and the mist appears to be emanating from it.<br><br>“Aha,” says the Fool, “I think this fungal fellow may be the source of our blues. Let’s see if we can summon a little cheer for our friend here and ourselves.”",
|
||||
"questFungiNotes": "It’s been a rainy spring in Habitica and the ground around the stables is spongy and damp. You notice quite a few mushrooms have appeared along the wooden stable walls and fences. There’s a fog hanging about, not quite letting the sun peek through, and it’s a bit dispiriting.<br><br>Out of the mist you see the outline of the April Fool, not at all his usual bouncy self.<br><br>“I’d hoped to bring you all some delightful Fungi Magic Hatching Potions so that you can keep your mushroom friends from my special day forever,” he says, his expression alarmingly unsmiling. “But this cold fog is really getting to me, it’s making me feel too tired and dismal to work my usual magic.”<br><br>“Oh no, sorry to hear that,” you say, noticing your own increasingly sombre mood. “This fog is really making the day gloomy. I wonder where it came from…”<br><br>A low rumble sounds across the fields, and you see an outline emerging from the mist. You’re alarmed to see a gigantic and unhappy looking mushroom creature, and the mist appears to be emanating from it.<br><br>“Aha,” says the Fool, “I think this fungal fellow may be the source of our blues. Let’s see if we can summon a little cheer for our friend here and ourselves.”",
|
||||
"questPinkMarbleUnlockText": "Unlocks Pink Marble Hatching Potions for purchase in the Market.",
|
||||
"questFungiText": "The Moody Mushroom",
|
||||
"questFungiCompletion": "You and the April Fool look at each other with a sign of relief as the mushroom retreats to the forest.<br><br>“Ah,” the Fool exclaims, “that was quite a mycelial melancholy. I’m glad we could improve his mood, and ours too! I feel my energy coming back. Come with me and we’ll get those Fungi potions going together.”",
|
||||
@@ -764,8 +764,8 @@
|
||||
"questVirtualPetDropVirtualPetPotion": "Virtual Pet Hatching Potion",
|
||||
"questVirtualPetUnlockText": "Unlocks Virtual Pet Hatching Potion for purchase in the Market",
|
||||
"questVirtualPetRageDescription": "This bar fills when you don't complete your Dailies. When it is full, the Wotchimon will take away some of your party's pending damage!",
|
||||
"questPinkMarbleNotes": "After hearing rumours about a cave in the Meandering Mountains that has pink rocks and dust shooting out of it, your party starts to investigate. As you approach the cave, there is indeed a huge pink dust cloud – and strangely, you hear a tiny voice's battle cry, followed by the sound of shattering rock.<br><br>@Empress42 accidentally inhales some of the dust and suddenly feels dreamy and less productive. “Same here!” says @QuartzFox, “I'm suddenly fantasising about a person that I barely know!”<br><br>@a_diamond peeks into the cave and finds a little being zipping around and smashing pink marbled rock to dust. “Take cover! This Cupid has been corrupted and is using his magic to cause limerence and unrealistic infatuations! We have to subdue him!”",
|
||||
"questPinkMarbleCompletion": "You manage to pin the little guy down at last – he was much tougher and faster than expected. Before he stirs again, you take away his quiver of glowing arrows. He blinks and suddenly looks around in surprise. “To escape my own sorrow and heartbreak for a while I pricked myself with one of my arrows… I don't remember anything after that!”<br><br>He is just about to flee the cave, notices that @Loremi has taken a sample of the marble dust and grins. “Try using some of this pink marble dust in a potion! Nurture the pets that hatch from it and you will find that real relationships are born from communication, mutual trust and care. I wish you luck, and I wish you love!”",
|
||||
"questPinkMarbleNotes": "After hearing rumours about a cave in the Meandering Mountains that has pink rocks and dust shooting out of it, your party starts to investigate. As you approach the cave, there is indeed a huge pink dust cloud—and strangely, you hear a tiny voice’s battle cry, followed by the sound of shattering rock.<br><br>@Empress42 accidentally inhales some of the dust and suddenly feels dreamy and less productive. “Same here!” says @QuartzFox, “I’m suddenly fantasising about a person that I barely know!”<br><br>@a_diamond peeks into the cave and finds a little being zipping around and smashing pink marbled rock to dust. “Take cover! This Cupid has been corrupted and is using his magic to cause limerence and unrealistic infatuations! We have to subdue him!”",
|
||||
"questPinkMarbleCompletion": "You manage to pin the little guy down at last—he was much tougher and faster than expected. Before he stirs again, you take away his quiver of glowing arrows. He blinks and suddenly looks around in surprise. “To escape my own sorrow and heartbreak for a while I pricked myself with one of my arrows… I don’t remember anything after that!”<br><br>He is just about to flee the cave, notices that @Loremi has taken a sample of the marble dust and grins. “Try using some of this pink marble dust in a potion! Nurture the pets that hatch from it and you will find that real relationships are born from communication, mutual trust and care. I wish you luck, and I wish you love!”",
|
||||
"questPinkMarbleBoss": "Cupido",
|
||||
"questPinkMarbleRageTitle": "Pink Punch",
|
||||
"questPinkMarbleRageDescription": "This bar fills when you don't complete your Dailies. When it is full, Cupido will take away some of your party's pending damage!",
|
||||
@@ -811,11 +811,11 @@
|
||||
"questGiraffeNotes": "You’re strolling across the tall grass of the Sloenstedi Savannah, enjoying a nice walk in nature as a break from your tasks. As you pass through the rolling landscape, you notice a collection of items in the distance. It’s a pile of musical instruments, art supplies, electronic equipment, and more! You venture near for a better look.<br><br>“Hey, what do you think you’re doing?” yells a voice from behind an acacia. A tall and imposing giraffe emerges, wearing a fancy pair of shades, a guitar, and a fancy camera around its long neck. “This is all my gear. Be careful and don’t touch anything!”<br><br>You notice dust on many of the items. “Wow, you sure have a lot of hobbies!” you say. “Can you show me some art or play me a tune?”<br><br>The giraffe’s face falls as he looks at all his supplies. “I have so much of this stuff but don’t know where to begin! Why don't you give me some of your motivation so I can have the productive energy I need to finally get started!”",
|
||||
"questGiraffeUnlockText": "Unlocks Giraffe Eggs for purchase in the Market.",
|
||||
"questChameleonNotes": "It’s a beautiful day in a warm, rainy corner of the Taskwoods. You’re on the hunt for new additions to your leaf collection when a branch in front of you changes colour without warning! Then it moves!<br><br>Stumbling backwards, you realise this is not a branch at all, but a huge chameleon! Each part of his body keeps changing colours as his eyes dart in different directions.<br><br>“Are you all right?” you ask the chameleon.<br><br>“Ahhh, well,” he says, looking a little flustered. “I’ve been trying to blend in… but it’s so overwhelming… the colours keep coming and going! It’s hard to focus on just one....”<br><br>“Aha,” you say, “I think I can help. We’ll sharpen your focus with a little challenge! Get your colours ready!”<br><br>“You’re on!” replied the chameleon.",
|
||||
"questCrabNotes": "It’s a warm sunny morning, and you’re enjoying a visit to the beach to catch up on some of the books on your summer reading list. You’re startled when you nearly step on a shiny crystal near a shallow hole in the sand.<br><br>“Ey, watch where you’re goin’! I’m makin’ a burrow here!” says a voice. A surprisingly large crab with a decorative shell runs out in front of your toes, snapping her claws as she speaks.<br><br>“Hmm.. is this a burrow?” you ask, looking at the shallow depression. There are shells and crystals arranged around it, but it’s not much in the way of a hiding place.<br><br>The crab stammers. \"Ey, this is a judgment-free zone! I'm gettin' to it, I'm gettin' to it... I just got caught up on decorating. Sometimes a crab's gotta fiddle,\" she says, adjusting a shell.<br><br>\"Why don't you lend me a claw and help if you've got some big ideas on what a burrow should look like?\"",
|
||||
"questCrabNotes": "It’s a warm sunny morning, and you’re enjoying a visit to the beach to catch up on some of the books on your summer reading list. You’re startled when you nearly step on a shiny crystal near a shallow hole in the sand.<br><br>“Ey, watch where you’re goin’! I’m makin’ a burrow here!” says a voice. A surprisingly large crab with a decorative shell runs out in front of your toes, snapping her claws as she speaks.<br><br>“Hmm… is this a burrow?” you ask, looking at the shallow depression. There are shells and crystals arranged around it, but it’s not much in the way of a hiding place.<br><br>The crab stammers. “Ey, this is a judgement-free zone! I’m gettin’ to it, I’m gettin’ to it… I just got caught up on decorating. Sometimes a crab’s gotta fiddle,” she says, adjusting a shell.<br><br>“Why don’t you lend me a claw and help if you've got some big ideas on what a burrow should look like?”",
|
||||
"questRaccoonNotes": "It’s a warm autumn day in Habitica and you’re taking a slow stroll along Conquest Creek. You see some nifty semi-precious stones along the bank that would be perfect for a project you’ve been planning.<br><br>You start stashing your best finds in a pile beneath a tree. Strangely, each time you return the pile seems to be getting smaller, not larger...<br><br>That can't be right. You look all around but nothing odd stands out. Just as you turn around to head back to the creek, you catch a hand-like paw reaching out of a hollow in the trunk and snatch some of your stones!<br><br>\"Hey!\" you yell, \"I’ve been working hard collecting those. It’s not cool to take them without asking!\"<br><br>A masked face pops out of the hole and grins at you. \"Finders keepers!\" says the Raccoon. He slips back inside the tree, bags of stones in hand. You dive in after him! These stones are worth fighting for.",
|
||||
"questDogNotes": "You’ve been chosen for an expedition to map Habitica’s underground cave systems! Researchers in Habit City theorise that there may be new tools for managing tasks or even undiscovered creatures in these depths.<br><br>As you map rocky tunnels near the foothills of the Meandering Mountains, you notice a glow emanating from a craggy entrance ahead. As you near you see… toys? Stuffed animals and rubber balls are scattered around the cave floor. Is that barking you hear?<br><br>A huge, three-headed dog jumps out, darting for the toy you were right about to pick up! You freeze, almost losing a limb there! But... the dog’s mouths seem too occupied with toys to attack?<br><br>“Woof!” one of the dog's mouths barks, dropping a torn toy raccoon. “Are you here to help me clean?? I reeeally need to tidy up but every time I pick up a toy, I just end up playing with it… Here, think fast!!”<br><br>He launches a ball at you, and then another, and another. Those extra heads really make dodging a workout!",
|
||||
"questCatNotes": "On this fine day you find yourself in Habit City's Enchanted Efficiency Emporium workshop. You've been assigned a tough task: create a new magic motivation spell to help Habiticans everywhere complete their goals with ease.<br><br>Sitting on a table in front of you is a variety of magical objects. All the tomes said they were supposed to resonate together with productive energy… but so far there's not even a spark of motivation.<br><br>The creaking of a door alerts you to a new guest entering your workshop. Scampering feet and a blur of fluff dart onto the table. A... cat? Before you even have a chance to compliment how fluffy she is, she's lifting a paw to one of the crystals you set up and… knocking it off the table!<br><br>\"Hey!\" you shout, \"You're really cute but I'm trying to do some work over here...\"<br><br>She looks at you with her pretty blue eyes, tilts her head, and bats a bundle of herbs off the table. \"I'm helping!\" she purrs.<br><br>You see her paw reaching out toward the rest of the items you've collected and dive to the floor to catch the next one to go down!",
|
||||
"questOtterNotes": "To-do lists are great! You can spend hours meticulously documenting each step you need to take and feel productive without actually doing those things. Your three-page list gets stuffed into your pocket. Time for a refreshing walk!<br><br>You depart towards the Routine River to take a stroll along the banks. This is exactly what you needed to finally get started! Time to take out your to-do list and–ah! A gust of wind has your list flying out of your hand and headed right for the water!<br><br>Right before the paper hits the water, an otter head pops up to the surface intercepting the sheet’s sure demise. Phew! He grasps the list in his paws and a mischievous grin spreads across his face… uh-oh.<br><br>“Hmm...” he hums, flipping the paper around to read your list. “Looks like you need some help prioritising.” Riiiip.<br><br>The otter just ripped your carefully crafted list into pieces! “If you want to get these done, you’re going to have to decide what’s the most important first!” he says, tossing your list items into the breeze one at a time.",
|
||||
"questOtterNotes": "To-do lists are great! You can spend hours meticulously documenting each step you need to take and feel productive without actually doing those things. Your three-page list gets stuffed into your pocket. Time for a refreshing walk!<br><br>You depart towards the Routine River to take a stroll along the banks. This is exactly what you needed to finally get started! Time to take out your to-do list and—ah! A gust of wind has your list flying out of your hand and headed right for the water!<br><br>Right before the paper hits the water, an otter head pops up to the surface intercepting the sheet’s sure demise. Phew! He grasps the list in his paws and a mischievous grin spreads across his face… uh-oh.<br><br>“Hmm…” he hums, flipping the paper around to read your list, “Looks like you need some help prioritising.” Riiiip.<br><br>The otter just ripped your carefully crafted list into pieces! “If you want to get these done, you’re going to have to decide what’s the most important first!” he says, tossing your list items into the breeze one at a time.",
|
||||
"questJadeNotes": "You’re in your home staring at the stack of dirty dishes in the sink. The pile of dirty laundry in a random corner of the room. The empty cups and snack wrappers around your desk...<br><br>You sigh. “Why are there always more dishes… ? The mess is never-ending. It’s so demotivating.\" You find yourself dazing on the couch, mindlessly scrolling the latest trends. Who knows how long you’ve been there...<br><br>When you look up from your phone, everything is green. This isn’t your living room. Standing up, you find yourself on the side of a shiny verdant mountain.<br><br>Movement in the distance draws your attention. A stony green figure grunts, pushing a boulder up the rocky terrain. He makes some progress, but a small slip of his foot has the shiny boulder rolling back down, right towards you!<br><br>He spots you as he runs towards the chunk of jade hurdling your way! “So you think the dishes are bad?” the figure shouts, “Try this!”",
|
||||
"questCatCompletion": "You've thankfully caught everything that pushy cat knocked off the table. As you sit on the floor you notice a bright glow coming from the objects in front of you. Looking up, the ones on the table are reacting too! Putting them at different elevations seems to be a breakthrough in your research!<br><br>\"You know, in the end you did help me. I guess I just needed some fresh eyes on my task to get me unstuck. I wish you would have given me a bit of a heads-up before you started pushing things around, though,\" you say to the cat, patting her gently.<br><br>\"That's a purrfectly reasonable request, please take these as my apology!\" she purrs, nudging some funny-looking eggs in your direction. \"I'm glad I could help you see things from a different purrspective.\"",
|
||||
"questOtterCompletion": "As you caught the pieces of your list you started sorting them by which tasks were the most important and ended up with quite a manageable place to start!<br><br>“I see!” you tell the otter, “that goofy stunt really did help me think about what tasks I needed to prioritise.”<br><br>The otter splashes about, rubbing its cheeks with glee, “I’m glad my little plot got you thinking about your tasks in a different way.” He dives under the water, resurfacing nearby, “Remember to keep your lists achievable. Rewards help too, so take these!”",
|
||||
@@ -860,5 +860,14 @@
|
||||
"questOpalCollectMercuryRunes": "Mercury Rune",
|
||||
"questOpalCollectOpalGems": "Opal Gem",
|
||||
"questOpalDropOpalPotion": "Opal Hatching Potion",
|
||||
"questOpalUnlockText": "Unlocks Opal Hatching Potions for purchase in the Market"
|
||||
"questOpalUnlockText": "Unlocks Opal Hatching Potions for purchase in the Market",
|
||||
"questAlienCompletion": "You’ve managed to wrestle back the stolen motivation with your determination and the Fool’s magic power. As you feel your drive returning, the UFO descends, and a ramp slowly comes out along with a large, green, one-eyed creature. While strange-looking, it doesn’t seem threatening.<br><br>“Looks like we went a little far trying to harvest a little extra encouragement from your fine city,” it says. “Apologies for that, and fantastic work on getting it back. The extra aura of your efforts actually charged up the ship’s engine enough to get us home! Please, take these with our thanks.”<br><br>“Ooh potions,” says the Fool, “How delightful, and how convenient for me that you have them all ready to go!”",
|
||||
"questAlienText": "Invasion of the Motivation Snatchers",
|
||||
"questAlienNotes": "It’s been a strange few days in Habitica. The great flying saucer still hovers near the Flourishing Fields. It hums oddly. Why is it lingering? April Fool’s Day has passed, and the Master of Rogues’ time in the spotlight has ended.<br><br>You wander towards the light of the spaceship. You may as well check it out and get a few steps in while you’re at it.<br><br>As you get closer you see the April Fool, looking a bit grim. His face appears greenish in the light of the ship’s beam.<br><br>“'Twas my plan to get some potions for everyone, a little gift so all could enjoy their little extraterrestrial pals again! But I just can’t work up the enthusiasm… I do believe I know why,” the Fool says, nodding toward the beam.<br><br>Little symbols are being sucked up into the ship. It’s all your checked off tasks! No wonder your motivation’s been lackluster.<br><br>“Our motivation is being abducted!” you exclaim. “We have to rescue it before it ends up in deep space somewhere!”<br><br>The Fool smiles. “Concentrate your thoughts on the tasks you know you need to finish! I’ll do the rest with a bit of magic.”",
|
||||
"questAlienBoss": "Encouragement Thief, the Extraterrestrial",
|
||||
"questAlienRageTitle": "Intergalactic Impediment",
|
||||
"questAlienRageDescription": "This bar fills when you don't complete your Dailies. When it is full, the Extraterrestrial will discourage you by recovering some of its Health!",
|
||||
"questAlienRageEffect": "Encouragement Thief uses Intergalactic Impediment! You've backslid right through hyperspace. Your opponent recovers HP!",
|
||||
"questAlienDropAlienPotion": "Alien Hatching Potion",
|
||||
"questAlienUnlockText": "Unlocks Alien Hatching Potion for purchase in the Market"
|
||||
}
|
||||
|
||||
@@ -11,5 +11,12 @@
|
||||
"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 tasks belonging to active Challenges and Group Plans. Your Gold, Experience, Mana, and the effects of all Skills will be removed. All of this will take effect immediately.",
|
||||
"rebirthName": "Orb of Rebirth",
|
||||
"rebirthComplete": "You have been reborn!",
|
||||
"nextFreeRebirth": "<strong><%= days %> days</strong> until <strong>FREE</strong> Orb of Rebirth"
|
||||
"nextFreeRebirth": "<strong><%= days %> days</strong> until <strong>FREE</strong> Orb of Rebirth",
|
||||
"rebirthUnlockedNewItem": "Orb of Rebirth Unlocked",
|
||||
"rebirthUnlockedOrb": "A new adventure is available!",
|
||||
"rebirthUnlockedDesc": "Use the Orb of Rebirth to breathe new life into your Habitica adventure once you feel you've achieved it all! Begin again at level 1 while keeping your tasks, Achievements, and Pets with this special item found in the Market.",
|
||||
"rebirthNewAchievement": "New Achievement",
|
||||
"rebirthNewAdventure": "A new adventure begins now!",
|
||||
"rebirthAchievementPlural": "You've used the Orb of Rebirth <strong><%= number %></strong> times, and your highest level reached is <strong><%= level %></strong>.",
|
||||
"rebirthStackInfo": "This achievement will stack each time you use the Orb of Rebirth."
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"resetAccPop": "Start over, removing all levels, gold, gear, history, and tasks.",
|
||||
"deleteAccount": "Delete Account",
|
||||
"deleteAccPop": "Cancel and remove your Habitica account.",
|
||||
"feedback": "If you'd like to give us feedback, please enter it below - we'd love to hear your feedback! It will be anonymous unless you choose to enter your contact details. Don't speak English well? No problem! Use the language you prefer.",
|
||||
"feedback": "If you’d like to give us feedback, please enter it below—we’d love to hear your feedback! It will be anonymous unless you choose to enter your contact details. Don’t speak English well? No problem! Use the language you prefer.",
|
||||
"dataExport": "Data Export",
|
||||
"saveData": "Here are a few options for saving your data.",
|
||||
"habitHistory": "Habit History",
|
||||
@@ -38,8 +38,8 @@
|
||||
"showHeader": "Show Header",
|
||||
"changePass": "Change Password",
|
||||
"changeUsername": "Change Username",
|
||||
"changeEmail": "Change Email Address",
|
||||
"newEmail": "New Email Address",
|
||||
"changeEmail": "Change E-mail Address",
|
||||
"newEmail": "New E-mail Address",
|
||||
"oldPass": "Old Password",
|
||||
"newPass": "New Password",
|
||||
"confirmPass": "Confirm New Password",
|
||||
@@ -67,15 +67,15 @@
|
||||
"invalidPasswordResetCode": "The supplied password reset code is invalid or has expired.",
|
||||
"passwordChangeSuccess": "Your password was successfully changed to the one you just chose. You can now use it to access your account.",
|
||||
"displayNameSuccess": "Display name successfully changed",
|
||||
"emailSuccess": "Email successfully changed",
|
||||
"emailSuccess": "E-mail successfully changed",
|
||||
"detachSocial": "De-register <%= network %>",
|
||||
"detachedSocial": "Successfully removed <%= network %> authentication from your account",
|
||||
"addedLocalAuth": "Successfully added local authentication",
|
||||
"data": "Data",
|
||||
"email": "Email",
|
||||
"email": "E-mail",
|
||||
"registerWithSocial": "Register with <%= network %>",
|
||||
"registeredWithSocial": "Registered with <%= network %>",
|
||||
"emailNotifications": "Email Notifications",
|
||||
"emailNotifications": "E-mail Notifications",
|
||||
"wonChallenge": "You won a Challenge!",
|
||||
"newPM": "Received Private Message",
|
||||
"giftedGems": "Gifted Gems",
|
||||
@@ -95,12 +95,12 @@
|
||||
"kickedGroup": "Removed from group",
|
||||
"remindersToLogin": "Reminders to check in to Habitica",
|
||||
"unsubscribedSuccessfully": "Unsubscribed successfully!",
|
||||
"unsubscribedTextUsers": "You have successfully unsubscribed from all Habitica emails. You can enable only the emails you want to receive from <a href=\"/user/settings/notifications\">Settings > > Notifications</a> (requires login).",
|
||||
"unsubscribedTextUsers": "You have successfully unsubscribed from all Habitica e-mails. You can enable only the e-mails you want to receive from <a href=\"/user/settings/notifications\">Settings > > Notifications</a> (requires login).",
|
||||
"unsubscribedTextOthers": "You won't receive any other mail from Habitica.",
|
||||
"unsubscribeAllEmails": "Unsubscribe from Emails",
|
||||
"unsubscribeAllEmailsText": "Habitica will be unable to notify you via email about important changes to the site or your account.",
|
||||
"unsubscribeAllEmails": "Unsubscribe from E-mails",
|
||||
"unsubscribeAllEmailsText": "Habitica will be unable to notify you via e-mail about important changes to the site or your account.",
|
||||
"unsubscribeAllPush": "Unsubscribe from all Push Notifications",
|
||||
"correctlyUnsubscribedEmailType": "Correctly unsubscribed from \"<%= emailType %>\" emails.",
|
||||
"correctlyUnsubscribedEmailType": "Correctly unsubscribed from \"<%= emailType %>\" e-mails.",
|
||||
"subscriptionRateText": "Recurring <strong>$<%= price %> USD</strong> every <strong><%= months %> months</strong>",
|
||||
"benefits": "Benefits",
|
||||
"coupon": "Coupon",
|
||||
@@ -111,7 +111,7 @@
|
||||
"promoPlaceholder": "Enter Promotion Code",
|
||||
"saveCustomDayStart": "Save Custom Day Start",
|
||||
"registration": "Registration",
|
||||
"addLocalAuth": "Add Email and Password Login",
|
||||
"addLocalAuth": "Add E-mail and Password Login",
|
||||
"generateCodes": "Generate Codes",
|
||||
"generate": "Generate",
|
||||
"getCodes": "Get Codes",
|
||||
@@ -167,7 +167,7 @@
|
||||
"contentRelease": "Content releases + Events",
|
||||
"bannedWordUsedInProfile": "Your Display Name or About text contained inappropriate language.",
|
||||
"changeDisplayNameDisclaimer": "This is the name that will be displayed for your Avatar in Habitica.",
|
||||
"changePasswordDisclaimer": "Passwords must be 8 characters or more. Changing your password will log you out of any other devices and third party tools you may use.",
|
||||
"changePasswordDisclaimer": "Passwords must be 8 characters or more. Changing your password will log you out of any other devices and third-party tools you may use.",
|
||||
"dateFormatDisclaimer": "Adjust the date formatting across Habitica.",
|
||||
"enableAudio": "Enable Audio",
|
||||
"playDemoAudio": "Play Demo",
|
||||
@@ -256,7 +256,7 @@
|
||||
"APITokenTitle": "API Token",
|
||||
"userNameSuccess": "Username successfully changed",
|
||||
"addWebhook": "Add Webhook",
|
||||
"changeEmailDisclaimer": "This is the email address that you use to log in to Habitica, as well as receive notifications.",
|
||||
"changeEmailDisclaimer": "This is the e-mail address that you use to log in to Habitica, as well as receive notifications.",
|
||||
"transaction_subscription_bonus": "<b>Subscription</b> bonus",
|
||||
"privacySettingsOverview": "Habitica uses cookies to analyse performance, handle support requests, and provide you with the best possible gamified experience. To do that, we need to request the following permissions. You can change these at any time from your account settings.",
|
||||
"privacyOverview": "In today's world, it feels like every company is looking to profit from your data. This can make it difficult to find the right app to improve your habits. Habitica uses cookies that store data only to analyse performance, handle support requests, and provide you with the best possible gamified experience. You can change this at any time from your account settings.",
|
||||
|
||||
@@ -14,14 +14,14 @@
|
||||
"nowSubscribed": "You are now subscribed to Habitica!",
|
||||
"cancelSub": "Cancel Subscription",
|
||||
"cancelSubInfoGroupPlan": "Because you have a free subscription from a Group Plan, you cannot cancel it. It will end when you are no longer a member of the Group Plan. If you are the Group leader and want to cancel the Group Plan, you can do that from the Group Plan’s “Group Billing” tab.",
|
||||
"cancelingSubscription": "Canceling the subscription",
|
||||
"cancelingSubscription": "Cancelling the subscription",
|
||||
"contactUs": "Contact Us",
|
||||
"checkout": "Checkout",
|
||||
"subGemPop": "Because you subscribe to Habitica, you can purchase a number of Gems each month using Gold.",
|
||||
"subGemName": "Subscriber Gems",
|
||||
"maxBuyGems": "You have bought all the Gems you can this month. More become available within the first three days of each month. Thanks for subscribing!",
|
||||
"timeTravelers": "Time Travellers",
|
||||
"timeTravelersPopoverNoSubMobile": "Subscribers receive a rare Mystic Hourglass every month to use in the Time Travellers Shop!",
|
||||
"timeTravelers": "Time Travellers’",
|
||||
"timeTravelersPopoverNoSubMobile": "Subscribers receive a rare Mystic Hourglass every month to use in the Time Travellers’ Shop!",
|
||||
"timeTravelersPopover": "Your Mystic Hourglass has opened our time portal! Choose what you’d like us to fetch from the past or future.",
|
||||
"mysterySetNotFound": "Mystery set not found, or set already owned.",
|
||||
"mysteryItemIsEmpty": "Mystery items are empty",
|
||||
@@ -120,11 +120,11 @@
|
||||
"gemBenefit2": "Backgrounds to immerse your avatar in the world of Habitica!",
|
||||
"gemBenefit3": "Exciting Quest chains that drop pet eggs.",
|
||||
"gemBenefit4": "Reset your avatar's Stat Points and change its Class.",
|
||||
"subscriptionBenefit1": "Get up to 50 Gold-purchasable Gems in the Market to buy Quests, Customizations, Pets, and more!",
|
||||
"subscriptionBenefit1": "Get up to 50 Gold-purchasable Gems in the Market to buy Quests, Customisations, Pets, and more!",
|
||||
"subscriptionBenefit3": "Find double the Eggs, Hatching Potions, and Food each day to grow your Pet collection!",
|
||||
"subscriptionBenefit4": "Stay decked out in the latest exclusive gear. Subscribe now to get <%= month %>’s <%= currentMysterySetName %>!",
|
||||
"subscriptionBenefit5": "Get the exclusive Royal Purple Jackalope when you subscribe today!",
|
||||
"subscriptionBenefit6": "Never miss an item with 1 Mystic Hourglass a month to use in the Time Travellers Shop!",
|
||||
"subscriptionBenefit6": "Never miss an item with 1 Mystic Hourglass a month to use in the Time Travellers’ Shop!",
|
||||
"purchaseAll": "Purchase Set",
|
||||
"gemsRemaining": "remaining",
|
||||
"notEnoughGemsToBuy": "No more Gems available for purchase this month. More will become available within the first 3 days of each month.",
|
||||
@@ -154,7 +154,7 @@
|
||||
"subMonths": "Months Subscribed",
|
||||
"subscriptionStats": "Subscription Stats",
|
||||
"subscriptionInactiveDate": "Your subscription benefits will become inactive on <br><strong><%= date %></strong>",
|
||||
"subscriptionCanceled": "Your subscription is canceled",
|
||||
"subscriptionCanceled": "Your subscription is cancelled",
|
||||
"youAreSubscribed": "You are subscribed to Habitica",
|
||||
"doubleDropCap": "Double the Drops",
|
||||
"monthlyMysteryItems": "Limited Monthly Gear Sets",
|
||||
@@ -257,5 +257,25 @@
|
||||
"giftSubscriptionLeadText": "Choose the subscription you'd like to gift below! This purchase will not automatically renew.",
|
||||
"oneMonthGift": "For 1 month",
|
||||
"subscribe": "Subscribe",
|
||||
"resubscribeToPickUp": "Resubscribe to pick up where you left off!"
|
||||
"resubscribeToPickUp": "Resubscribe to pick up where you left off!",
|
||||
"mysterySet202508": "Brilliant Blade Set",
|
||||
"mysterySet202507": "Spirited Skater Set",
|
||||
"unlockNGemsGift": "They'll unlock <strong><%= count %> Gems</strong> per month in the Market",
|
||||
"maxGemCapGift": "They'll have the max <strong>Gem Cap</strong>",
|
||||
"subscriptionBillingFYIShort": "Subscriptions automatically renew unless you cancel at least 24 hours before the end of the current period. Your account will be charged within 24 hours of your renewal date, at the same price you initially paid.",
|
||||
"maxGemCap": "Instantly start at the max <strong>Gem Cap</strong>",
|
||||
"subscriptionChangeAnnouncement": "<strong>Subscription benefits and the way they are sent out will be changing on 19 November.</strong> <%= linkStart %>Click here</a> to read more about this change.",
|
||||
"recurringNMonthly": "Recurring every <%= length %> months",
|
||||
"unlockNGems": "Unlock <strong><%= count %> Gems</strong> per month in the Market",
|
||||
"earn2Gems": "Earn <strong>+2 Gems</strong> every month you're subscribed",
|
||||
"nMonthsGift": "For <%= months %> months",
|
||||
"earn2GemsGift": "They'll earn <strong>+2 Gems</strong> every month they're subscribed",
|
||||
"mysterySet202603": "Wisteria Wizard Set",
|
||||
"mysterySet202604": "Audacious Astronaut Set",
|
||||
"mysterySet202605": "Nightfall Nimbus Set",
|
||||
"mysterySet202512": "Biscuit Champion Set",
|
||||
"mysterySet202601": "Winter's Aegis Set",
|
||||
"mysterySet202602": "Sakura Fox Set",
|
||||
"immediate12Hourglasses": "Get <strong>12 Mystic Hourglasses</strong> immediately after your first 12-month subscription!",
|
||||
"subscriptionBillingFYI": "Subscriptions automatically renew unless you cancel at least 24 hours before the end of the current period. You can manage your subscription from the Subscription tab in the settings. Your account will be charged within 24 hours of your renewal date, at the same price you initially paid."
|
||||
}
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
"deleteTaskType": "Delete this <%= type %>",
|
||||
"pressEnterToAddTag": "Press Enter to add tag: '<%= tagName %>'",
|
||||
"enterTag": "Enter a tag",
|
||||
"addTags": "Add tags...",
|
||||
"addTags": "Add tags…",
|
||||
"tomorrow": "Tomorrow",
|
||||
"counter": "Counter",
|
||||
"taskSummary": "<%= type %> Summary",
|
||||
@@ -141,5 +141,7 @@
|
||||
"deleteType": "Delete <%= type %>",
|
||||
"deleteTask": "Delete Task",
|
||||
"deleteXTasks": "Delete <%= count %> Tasks",
|
||||
"sureDeleteType": "Are you sure you want to delete this task?"
|
||||
"sureDeleteType": "Are you sure you want to delete this task?",
|
||||
"brokenChallengeTaskCount": "This is one of <%= count %> tasks that are part of a Challenge that no longer exists.",
|
||||
"confirmDeleteTasks": "Would you like to delete the tasks?"
|
||||
}
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
"allocatePerPop": "Añadir un punto a Percepción",
|
||||
"allocateInt": "Puntos asignados a Inteligencia:",
|
||||
"allocateIntPop": "Añadir un punto a Inteligencia",
|
||||
"noMoreAllocate": "Ahora que has alcanzado el nivel 100, ya no ganarás más Puntos de Atributo. Puedes seguir subiendo de nivel, o empezar una nueva aventura desde el nivel 1 utilizando la <a href='/shops/market'>Esfera de Renacimiento</a>!",
|
||||
"noMoreAllocate": "Ahora que has alcanzado el nivel 100, ya no ganarás más Puntos de Atributo. Puedes seguir subiendo de nivel, o empezar una nueva aventura desde el nivel 1 utilizando el <a href='/shops/market'>Orbe del Renacimiento</a>.",
|
||||
"stats": "Atributos",
|
||||
"strength": "Fuerza",
|
||||
"strText": "La Fuerza aumenta la probabilidad de conseguir \"golpes críticos\" aleatorios y el Oro, la Experiencia y la probabilidad de conseguir botín al asestarlos. También ayuda a hacer daño a los monstruos jefe.",
|
||||
@@ -115,11 +115,11 @@
|
||||
"autoAllocation": "Asignación Automática",
|
||||
"autoAllocationPop": "Asigna Puntos a los Atributos de acuerdo a tus preferencias cuando subes de nivel.",
|
||||
"evenAllocation": "Distribuir los Puntos de Atributo equitativamente",
|
||||
"evenAllocationPop": "Asigna el mismo número de Puntos a cada Atributo.",
|
||||
"evenAllocationPop": "Asigna el mismo número de Puntos a cada Atributo",
|
||||
"classAllocation": "Distribuir Puntos de acuerdo a tu Clase",
|
||||
"classAllocationPop": "Asignar más Puntos a los Atributos importantes para tu Clase.",
|
||||
"taskAllocation": "Distribuir Puntos según la actividad de tus tareas",
|
||||
"taskAllocationPop": "Asigna Puntos basándose en las categorías de Fuerza, Inteligencia, Constitución y Percepción asociadas a las tareas que completas.",
|
||||
"classAllocationPop": "Asigna más Puntos a los Atributos importantes para tu Clase",
|
||||
"taskAllocation": "Distribuye los Puntos según la actividad de tus tareas",
|
||||
"taskAllocationPop": "Asigna Puntos basándose en las categorías de Fuerza, Inteligencia, Constitución y Percepción asociadas a las tareas que completas",
|
||||
"distributePoints": "Distribuir Puntos no Asignados",
|
||||
"distributePointsPop": "Asigna todos los Puntos no Asignados 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!",
|
||||
@@ -178,7 +178,7 @@
|
||||
"mainHand": "Mano Principal",
|
||||
"offHand": "Mano Secundaria",
|
||||
"statPoints": "Puntos de estadisticas",
|
||||
"pts": "puntos",
|
||||
"pts": "PTOS",
|
||||
"purchaseForGold": "¿Comprar por <%= cost %> monedas de oro?",
|
||||
"chatCastSpellUser": "<%= username %> lanza <%= spell %> sobre <%= target %>.",
|
||||
"chatCastSpellParty": "<%= username %> lanza <%= spell %> para el grupo.",
|
||||
@@ -191,5 +191,14 @@
|
||||
"titleHairbase": "Estilos de Pelo",
|
||||
"customizations": "Personalizaciónes",
|
||||
"nextReward": "Próxima Recompensa de Log in",
|
||||
"skins": "Pieles"
|
||||
"skins": "Pieles",
|
||||
"perTaskText": "Aumenta las probabilidades de obtener botín, el límite de botín diario, los bonus por racha de tareas completadas, y Oro obtenido cuando completas tareas.",
|
||||
"autoAllocate": "Auto Asignar",
|
||||
"pointsAvailable": "Puntos Disponibles",
|
||||
"allocationMethod": "Método de Asignación",
|
||||
"statAllocationInfo": "Cada nivel te proporciona un Punto de Atributo para asignar a la Estadística de tu elección. Puedes asignarlo manualmente, o dejar que el juego decida por ti mediante la opción de Asignación Automática.",
|
||||
"assignedStat": "Estadística Asignada",
|
||||
"strTaskText": "Aumenta las probabilidades de golpe y daño crítico cuando completas tareas. También aumenta el daño aplicado a Jefes de Misión.",
|
||||
"conTaskText": "Reduce el daño recibido por Tareas Diarias no completadas y Hábitos negativos. No reduce el daño recibido de Jefes de Misión.",
|
||||
"intTaskText": "Aumenta la Experiencia obtenida por completar tareas. También aumenta tu límite de Maná y la velocidad con la que lo recuperas."
|
||||
}
|
||||
|
||||
@@ -10,77 +10,84 @@
|
||||
"commGuidePara016": "Al navegar por los componentes sociales en Habitica, hay algunas reglas generales para mantener a todos seguros y felices.",
|
||||
"commGuideList02A": "<strong>Respétense unos a otros</strong>. Sean cortéses, amables, amigables y serviciales. Recuerda: los Habiticanos vienen de todo tipo de contextos y han tenido experiencias muy diferentes.",
|
||||
"commGuideList02C": "<strong>No publiques imágenes o textos que sean violentos, amenazantes, sexualmente explícitos o sugestivos, o que promuevan la discriminación, intolerancia, racismo, sexismo, odio, acoso o daño hacia cualquier individuo o grupo</strong>. Ni siquiera como una broma o meme. Esto incluye tanto insultos como declaraciones. No todos tienen el mismo sentido del humor, por lo que algo que tú consideres como broma podría ser hiriente para otros.",
|
||||
"commGuideList02D": "<strong>Mantén las discusiones apropiadas para todas las edades.</strong> Esto significa evitar temas de adultos en espacios públicos. Tenemos muchos Habiticanos jóvenes que usan el sitio, y gente que viene de muchos contextos diferentes. Queremos que nuestra comunidad sea tan cómoda e incluyente como sea posible.",
|
||||
"commGuideList02E": "<strong>Evita las obscenidades. Esto incluye groserías leves, basadas en la religión, que pueden ser aceptables en otros lugares y groserías abreviadas o camufladas.</strong> Tenemos gente de todos los contextos religiosos y culturales, y queremos asegurarnos de que todos ellos se sientan cómodos en los espacios públicos. <strong>Si un moderador o miembro del personal te dice que un término no está permitido en Habitica, incluso si no te diste cuenta de que el término era problemático, esa decisión es definitiva.</strong> Además, los insultos serán tratados de manera muy severa, ya que también son una violación a los Términos de Servicio.",
|
||||
"commGuideList02G": "<strong>Acata inmediatamente cualquier solicitud de un moderador</strong>. Esto podría incluir, pero no está limitado a pedirte que limites tus publicaciones en un espacio en particular, que edites tu perfil para remover contenido inapropiado, que muevas tu discusión a un espacio más apropiado, etc. No discutas con los moderadores. Si tienes alguna inquietud o comentario sobre la moderación , envía un correo a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com8</a> para contactar a nuestro administrador de la comunidad.",
|
||||
"commGuideList02J": "<strong>No envíes correo no deseado</strong>. Esto puede incluir, entre otros: publicar el mismo comentario o consulta en varios lugares, <strong>publicar enlaces sin explicación ni contexto</strong>, publicar mensajes sin sentido, publicar múltiples mensajes promocionales sobre un Gremio, Equipo o Desafío, o publicar muchos mensajes seguidos. Si cuando alguien hace clic en un link resulta en algún beneficio para ti, debes explicarlo en el texto del mensaje o también se considerará correo no deseado. Los moderadores pueden decidir qué constituye correo no deseado a su discreción.",
|
||||
"commGuideList02K": "<strong>Evita publicar un encabezado con una fuente grande en los espacios públicos de conversación, en particular la Taberna</strong>. Tal y como cuando se escribe TODO EN MAYÚSCULAS, se lee como si estuvieras gritando, e interfiere con la atmósfera agradable.",
|
||||
"commGuideList02L": "<strong>Desaconsejamos enfáticamente el intercambio de información personal -- en particular información que puede ser usada para identificarte -- en espacios públicos de conversación</strong>. Información que serviría para identificarte incluye, entre otra: tu dirección de domicilio, tu dirección de correo electrónico, y tu clave API/contraseña. ¡Esto es por tu seguridad! El personal o los moderadores pueden remover tales publicaciones a discreción. Si alguien te pide tu información personal en un Gremio privado, Equipo, o Mensaje Privado (MP), te recomendamos enfáticamente que la niegues educadamente, y alertes al personal y moderadores: 1) reportando el mensaje, o 2) enviando un correo a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> e incluyendo capturas de pantalla.",
|
||||
"commGuidePara037": "<strong>Está prohibida la creación de Gremios, Públicos o Privados, que tengan el propósito de atacar a un grupo o individuo</strong>. La creación de tal Gremio es base para un ban inmediato. Pelea contra los malos Hábitos, no tus compañeros de aventuras!",
|
||||
"commGuideList02D": "<strong>Ten en mente que hay Habiticanos de todas las edades y contextos</strong>. Los Desafíos y perfiles de jugador deben evitar la mención de temas adultos, el uso de palabras altisonantes, o el fomento de odio o conflicto.",
|
||||
"commGuideList02E": "<strong>Si un Moderador te dice que un término está prohíbido en Habitica, incluso si es un término que no sabías o no consideras que sea problemático, esa decisión es definitiva.</strong> Además, los insultos serán tratados de manera muy severa, ya que también son una violación a los Términos de Servicio.",
|
||||
"commGuideList02G": "<strong>Acata inmediatamente cualquier solicitud de un Moderador</strong>. Esto podría incluir, pero no está limitado, a pedirte que limites tus publicaciones en un espacio en particular, que edites tu perfil para remover contenido inapropiado, etc. No discutas con los Moderadores. Si tienes alguna inquietud o comentario sobre la moderación, envía un correo a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> para contactar a nuestro administrador de la comunidad.",
|
||||
"commGuideList02J": "<strong>No hagas spam</strong>. Esto puede incluir, entre otras cosas: enviar múltiples mensajes no solicitados por privado, mensajes sin sentido, múltiples mensajes promocionando Equipos o Desafíos, o crear Desafíos que sean muy similares o génericos en poco tiempo. Los Moderadores se reservan el derecho a determinar qué mensajes son considerados spam.",
|
||||
"commGuideList02K": "<strong>No envíes enlaces sin explicación o contexto</strong>. Si al hacer clic en un enlace los jugadores obtienen algún beneficio, debes indicarlo. Esto aplica tanto a los mensajes como a los Desafíos.",
|
||||
"commGuideList02L": "<strong>Desaconsejamos altamente el intercambio de información personal -- en especial, información que pueda ser utilizada para identificarte</strong>. Información que serviría para identificarte incluye, entre otras cosas: domicilio, dirección de correo electrónico, contraseña o clave API. Si alguien te pregunta por esta información en el chat de Equipo o por mensaje privado, te recomendamos encarecidamente no responder e informar a los Moderadores reportando el mensaje o enviando un correo a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> que incluya capturas de pantalla de los mensajes en caso de requerir más contexto.",
|
||||
"commGuidePara037": "<strong>Está prohibida la creación de Equipos y Grupos que tengan el propósito de atacar a un grupo o individuo</strong>. ¡Pelea contra los malos hábitos, no contra tus compañeros de aventuras!",
|
||||
"commGuideHeadingInfractionsEtc": "Infracciones, Consecuencias y Restauración",
|
||||
"commGuideHeadingInfractions": "Infracciones",
|
||||
"commGuidePara050": "Abrumadoramente, los Habiticanos se ayudan los unos a los otros, son respetuosos y trabajan para que toda la comunidad sea divertida y amigable. Sin embargo, una vez cada muerte de obispo, algo que un Habiticano hace puede violar una de las pautas mencionadas. Cuando esto ocurra, los Mods actuarán de la manera que crean necesaria para mantener a Habitica segura y agradable para todos.",
|
||||
"commGuidePara051": "<strong>Hay varios tipos de infracciones, y se tratan dependiendo de su gravedad</strong>. Estas no son listas exhaustivas, y los Mods pueden tomar decisiones en temas que no están cubiertos aquí a su discreción. Los Mods tendrán en cuenta el contexto al evaluar las infracciones.",
|
||||
"commGuidePara050": "En sobremanera, los Habiticanos se ayudan unos a otros, son respetuosos y trabajan para construir un ambiente divertido y amistoso. Sin embargo, de vez en cuando, algo que un Habiticano hace puede violar una de las Reglas antes mencionadas. Cuando esto pase, los Moderadores actuarán de la manera que crean necesaria para mantener a Habitica segura y agradable para todos.",
|
||||
"commGuidePara051": "<strong>Hay varios tipos de infracciones, y se tratan dependiendo de su gravedad</strong>. Estas no son listas exhaustivas, y los Moderadores pueden tomar decisiones en temas que no están cubiertos aquí a su discreción. Los Moderadores tendrán en cuenta el contexto al evaluar las infracciones.",
|
||||
"commGuideHeadingSevereInfractions": "Infracciones graves",
|
||||
"commGuidePara052": "Las Infracciones Severas afectan de forma considerable la seguridad de la comunidad y a los usuarios de Habitica, y por lo tanto tienen consecuencias severas.",
|
||||
"commGuidePara053": "Los siguientes son ejemplos de algunas infracciones severas. Esta no es una lista completa.",
|
||||
"commGuideList05A": "Violación de los Términos y condiciones",
|
||||
"commGuideList05A": "Otras violaciones a Términos y Condiciones no especificados aquí",
|
||||
"commGuideList05B": "Comentarios de Odio/imágenes de Odio, Acoso, Ciber-bullying, Mensajes ofensivos, y Provocaciones",
|
||||
"commGuideList05C": "Violación de Libertad Condicional",
|
||||
"commGuideList05D": "Hacerse pasar por miembros del Personal o Moderadores",
|
||||
"commGuideList05D": "Hacerse pasar por Moderadores - esto incluye afirmar que espacios creados por jugadores que no están afiliados a Habitica son oficiales o moderados por Habitica o sus Moderadores",
|
||||
"commGuideList05E": "Infracciones moderadas repetidas",
|
||||
"commGuideList05F": "Creación de una cuenta duplicada para evitar consecuencias (por ejemplo, crear una nueva cuenta para charlar después de que tus privilegios de chat hubieran sido revocados)",
|
||||
"commGuideList05G": "Engañar intencionalmente al Personal o Moderadores para evitar consecuencias o poner a otro usuario en problemas",
|
||||
"commGuideList05F": "Creación de multicuentas para evadir consecuencias",
|
||||
"commGuideList05G": "Engañar intencionalmente a los Moderadores para evitar consecuencias o poner a otro usuario en problemas",
|
||||
"commGuideHeadingModerateInfractions": "Infracciones moderadas",
|
||||
"commGuidePara054": "Las infracciones moderadas no vuelven a nuestra comunidad insegura, pero sí la vuelven desagradable. Estas infracciones tendrán consecuencias moderadas. Cuando se cometen en conjunto con múltiples infracciones, las consecuencias podrían tornarse más severas.",
|
||||
"commGuidePara054": "Estas infracciones tendrán consecuencias moderadas. En caso de reincidencia, las consecuencias podrían agravarse.",
|
||||
"commGuidePara055": "Los siguientes son algunos ejemplos de infracciones moderadas. Ésta no es una lista completa.",
|
||||
"commGuideList06A": "Ignorar, faltar al respeto o discutir con un Moderador. Esto incluye quejarse públicamente de los moderadores u otros usuarios, glorificar o defender públicamente a usuarios bloqueados, o debatir si las medidas tomadas por un moderador son apropiadas. Si alguna norma o el comportamiento de los Mods te preocupa, por favor, contacta el personal por correo (<a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>).",
|
||||
"commGuideList06C": "Marcar intencionalmente publicaciones inocentes.",
|
||||
"commGuideList06A": "Ignorar, faltar al respeto o discutir con los Moderadores. Si te preocupa alguna de las normas o el comportamiento de los Moderadores, envía un correo a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>.",
|
||||
"commGuideList06C": "Marcar intencionalmente como inapropiados Desafíos, perfiles o mensajes inocentes.",
|
||||
"commGuideList06E": "Cometer Infracciones Menores Repetidamente",
|
||||
"commGuideHeadingMinorInfractions": "Infracciones menores",
|
||||
"commGuidePara056": "Las infracciones menores, aunque no son bien recibidas, tienen consecuencias menores. Si continúan ocurriendo, pueden llevar a consecuencias más severas con el tiempo.",
|
||||
"commGuidePara056": "Las infracciones menores, aunque no son bien recibidas, tienen consecuencias menores. Si continúan ocurriendo, pueden llevar a consecuencias más severas con el tiempo. Las infracciones menores suelen ser violaciones a las Reglas por primera vez, pero pueden incluir otras circunstancias.",
|
||||
"commGuidePara057": "Los siguientes son ejemplos de infracciones menores. Ésta no es una lista completa.",
|
||||
"commGuideList07A": "Primera violación de las Normas del Espacio Público",
|
||||
"commGuideList07B": "Cualquier declaración o acción que provoque un \"Por favor, no...\" de un Mod. Cuando se te pide no hacer algo en público, esto en si mismo puede ser una consecuencia. Si los Mods tienen que pedir muchas de estas correcciones al mismo usuario, puede contar como una infracción mayor",
|
||||
"commGuideList07B": "Cualquier declaración o acción que provoque un \"Por favor, no\" por parte de un Moderador. Cuando se te pideeno hacer algo en público, esto en si mismo puede ser una consecuencia. Si los Moderadores tienen que pedir muchas de estas correcciones al mismo usuario, puede contar como una infracción mayor",
|
||||
"commGuidePara057A": "Algunas publicaciones pueden estar ocultas porque contienen información sensible o pueden dar a las personas una idea equivocada. Por lo general, esto no cuenta como una infracción, ¡sobre todo si es la primera vez que ocurre!",
|
||||
"commGuideHeadingConsequences": "Consecuencias",
|
||||
"commGuidePara059": "<strong>De manera similar, todas las infracciones tienen consecuencias directas.</strong> Algunas ejemplificaciones de consecuencias se describen a continuación.",
|
||||
"commGuidePara059": "<strong>Las infracciones a la Comunidad tienen consecuencias directas.</strong> Algunas ejemplificaciones de consecuencias se describen a continuación.",
|
||||
"commGuideHeadingSevereConsequences": "Ejemplos de consecuencias severas",
|
||||
"commGuideList09A": "Inhabilitación de cuentas (ver arriba)",
|
||||
"commGuideList09C": "Deshabilitar (\"congelar\") permanentemente la progresión de los Niveles de Colaborador",
|
||||
"commGuideList09A": "Inhabilitación de cuentas",
|
||||
"commGuideList09C": "Deshabilitar permanentemente la progresión a través de los Niveles de Colaborador",
|
||||
"commGuideHeadingModerateConsequences": "Ejemplos de consecuencias moderadas",
|
||||
"commGuideList10D": "Deshabilitar (\"congelar\") temporalmente la progresión de los Niveles de Colaborador",
|
||||
"commGuideList10D": "Deshabilitar temporalmente la progresión a través los Niveles de Colaborador",
|
||||
"commGuideHeadingMinorConsequences": "Ejemplos de consecuencias menores",
|
||||
"commGuideList11A": "Recordatorios de las Normas del espacio público",
|
||||
"commGuideList11A": "Recordatorios de las Normas",
|
||||
"commGuideList11B": "Advertencias",
|
||||
"commGuideList11C": "Solicitudes",
|
||||
"commGuideList11D": "Supresiones (los Mods/el Staff pueden borrar contenido problemático)",
|
||||
"commGuideList11E": "Ediciones (los Mods/el Staff pueden editar contenido problemático)",
|
||||
"commGuideList11D": "Eliminación de contenido problemático por los Moderadores",
|
||||
"commGuideList11E": "Edición de contenido problemático por los Moderadores",
|
||||
"commGuideHeadingRestoration": "Restauración",
|
||||
"commGuidePara061": "Habitica es una tierra dedicada a la superación personal, y creemos en segundas oportunidades. <strong>Si cometes una infracción y sufres una consecuencia, mírala como una oportunidad para evaluar tus acciones y esfuérzate por ser un mejor miembro de la comunidad</strong>.",
|
||||
"commGuidePara062": "El anuncio, mensaje y / o correo electrónico que recibe explicando las consecuencias de sus acciones es una buena fuente de información. Coopere con cualquier restricción que se haya impuesto y trate de cumplir con los requisitos para que se eliminen las sanciones.",
|
||||
"commGuidePara063": "Si no comprende sus consequencias, o la naturaleza de su infracción, solicite ayuda a los Mods/Personal para poder evitar cometer infracciones en el futuro. Si le parece que una decisión particular ha sido injusta, puede contactar al Personal para discutirla mediante un correo electrónico a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>.",
|
||||
"commGuideHeadingMeet": "¡Conoce al Personal y a los Mods!",
|
||||
"commGuidePara007": "Los del personal tienen etiquetas moradas marcadas con coronas. Su título es \"Heroico\".",
|
||||
"commGuidePara061": "Habitica está dedicada a la superación personal, y creemos en segundas oportunidades. <strong>Si cometes una infracción y sufres una consecuencia, mírala como una oportunidad para evaluar tus acciones y esfuérzate por ser un mejor miembro de la comunidad</strong>.",
|
||||
"commGuidePara062": "<strong>Si deseas hacer preguntas sobre tu infracción o consecuencias, disculparte o solicitar la readmisión, comunícate con nosotros a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> con tu ID de usuario o tu @usuario</strong>. Es <strong>tu</strong> responsabilidad comunicarte con nosotros.",
|
||||
"commGuidePara063": "Si no comprendes las consequencias o la naturaleza de tu infracción, o si tienes otras preguntas relacionadas, puedes contactar a los Moderadores para discutirlo enviando un correo a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>. Colabora con las restricciones que se te hayan impuesto y procura cumplir con los requisitos para que se levanten las sanciones.",
|
||||
"commGuideHeadingMeet": "Conoce a los Moderadores",
|
||||
"commGuidePara007": "Los Moderadores de Habitica mantienen la app y los sitios activos y pueden fungir como moderadores del chat. Tienen etiquetas moradas marcadas con coronas. Su título es \"Heroico\".",
|
||||
"commGuidePara009": "Actualmente los Miembros del personal son (de izquierda a derecha):",
|
||||
"commGuideAKA": "<%= habitName %> también conocido como <%= realName %>",
|
||||
"commGuideOnGitHub": "<%= gitHubName %> en GitHub",
|
||||
"commGuidePara011b": "en GitHub/Wikia",
|
||||
"commGuidePara011c": "en Wikia",
|
||||
"commGuidePara011b": "en GitHub/Fandom",
|
||||
"commGuidePara011c": "en la Wiki",
|
||||
"commGuidePara011d": "en Github",
|
||||
"commGuidePara013": "En una comunidad tan grande como Habitica, los usuarios vienen y van, y a veces un miembro del personal o un moderador necesita soltar su noble manto y relajarse. Estos son el Personal y los Moderadores Eméritos. Ya no actúan con el poder de un miembro del Personal o de un Moderador, ¡pero aún así nos gustaría honrar su trabajo!",
|
||||
"commGuidePara013": "En una comunidad tan grande como Habitica, los usuarios vienen y van, y a veces un miembro del Personal o un Moderador necesita soltar su noble manto y relajarse. Estos son el Personal y los Moderadores Eméritos. Ya no actúan con el poder de un miembro del Personal o de un Moderador, ¡pero aún así nos gustaría honrar su trabajo!",
|
||||
"commGuidePara014": "Personal y Moderadores Eméritos:",
|
||||
"commGuideHeadingFinal": "La sección final",
|
||||
"commGuidePara067": "Pues aquí lo tienes, valiente Habiticano: ¡Las Normas de la Comunidad! Límpiate ese sudor de tu frente y date algunos PE por leerlo todo. Si tienes preguntas o preocupaciones acerca de estas Normas de la Comunidad, por favor, contáctanos a través del <a href='https://contact.habitica.com/' target='_blank'>Formulario de Contacto con Moderadores</a> y estaremos encantados de ayudarte a clarificar las dudas.",
|
||||
"commGuidePara067": "Pues aquí lo tienes, valiente Habiticano: ¡Las Normas de la Comunidad! Límpiate ese sudor de la frente y date algunos puntos de EXP por leerlo todo. Si tienes preguntas o preocupaciones acerca de estas Normas de la Comunidad, por favor, contáctanos enviando un correo a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> y estaremos encantados de ayudarte a clarificar las dudas.",
|
||||
"commGuidePara068": "Ahora ¡pónte en marcha, valiente aventurero, y vence algunas Diarias!",
|
||||
"commGuideHeadingLinks": "Links útiles",
|
||||
"commGuideLink02": "<a href='https://habitica.fandom.com/es/wiki/Habitica_Wiki' target='_blank'>La Wiki</a>: la colección más grande de información sobre Habitica.",
|
||||
"commGuideLink03": "<a href='https://github.com/HabitRPG/habitica' target='_blank'>GibHub</a>: ¡para reportar errores o ayudar con el código!",
|
||||
"commGuideLink02": "<a href='https://habitica.fandom.com/wiki/Habitica_Wiki' target='_blank'>La Wiki</a>: la colección más grande de información sobre Habitica. Ten en cuenta que este espacio no es oficial, pero se mantiene activo por el Fandom y es mantenido por los jugadores.",
|
||||
"commGuideLink03": "<a href='https://github.com/HabitRPG/habitica' target='_blank'>GibHub</a>: ¡para ayudar con el código!",
|
||||
"commGuideLink04": "<a href='https://docs.google.com/forms/d/e/1FAIpQLScPhrwq_7P1C6PTrI3lbvTsvqGyTNnGzp1ugi1Ml0PFee_p5g/viewform?usp=sf_link' target='_blank'>El formulario de retroalimentación</a>: para solicitudes de funciones del sitio y la aplicación.",
|
||||
"commGuidePara069": "Los siguientes artistas talentosos contribuyeron a estas ilustraciones:",
|
||||
"commGuideList01A": "Nuestros Términos y Condiciones se aplican en Desafíos, Equipos, perfiles de jugador y mensajes privados.",
|
||||
"commGuideList02M": "No pidas gemas, suscripciones o membresía en Planes de Grupo. Esto no está permitido en la Taberna, espacios de chat públicos o privados, ni en mensajes privados. Si recibes mensajes solicitando artículos de pago, por favor márcalos para reportarlos. Pedir gemas o suscripciones repetida o intensamente, especialmente después de una advertencia, puede resultar en la suspensión de tu cuenta.",
|
||||
"commGuideList02M": "<strong>No pidas o mendigues por Gemas, subscripciones o membresías en Planes de Grupo</strong>. Si sabes de alguien que haya recibido mensajes no deseados solicitando artículos de paga, o tú mismo has recibido este tipo de mensajes, por favor repórtalo. El pedir Gemas o subscripciones de manera repetida, especialmente después de una advertencia, podría resultar en eliminación de la cuenta.",
|
||||
"commGuideList05H": "Intentos severos o repetidos de defraudar o presionar a otros jugadores por artículos de dinero real",
|
||||
"commGuideList02N": "<strong>Denuncia cualquier cosa que veas que rompa estas Reglas o nuestros Términos de Servicio.</strong> Puedes reportar los mensajes directamente o notificar a los moderadores a través de <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> por violaciones en perfiles o Desafíos. Lo manejaremos lo más rápido posible. Puedes contactarnos en tu idioma nativo si te es más fácil: quizá tengamos que usar el Traductor de Google, pero queremos que te sientas cómodo al contactarnos si tienes un problema.",
|
||||
"commGuideList02H": "<strong>Todos los Nombres Públicos y @nombresdeusuario deben cumplir con los Términos de Servicio</strong>. Para cambiar tu Nombre Público y/o tu @nombredeusuario: en móvil ve a Menu > Ajustes > Cuenta. En el sitio web, ve a Ajustes desde el ícono de usuario en la barra de navegación en la parte superior."
|
||||
"commGuideList02H": "<strong>Todos los Nombres Públicos y @nombresdeusuario deben cumplir con los Términos de Servicio</strong>. Para cambiar tu Nombre Público y/o tu @nombredeusuario: en móvil ve a Menu > Ajustes > Cuenta. En el sitio web, ve a Ajustes desde el ícono de usuario en la barra de navegación en la parte superior.",
|
||||
"commGuideList02I": "<strong>Los nombres de Desafío deberán ser adecuados para todo tipo de espacios, ya que aparecerán en el perfil público del ganador</strong>. Ten esto en mente al crear Desafíos, ya que podríamos vernos en la necesidad de editar los registros en el perfil en caso de reporte.",
|
||||
"commGuideList02O": "<strong>Los Equipos podrán crear sus propias reglas del chat para gusto y comodidad de los miembros</strong>. Sin embargo, los administradores no podrán imponer reglas de chat en estos espacios privados a menos que haya una violación de los Términos de Servicio, incluyendo acoso. Si alguien en el Equipo está dando problemas, como Líder de Equipo te recomendamos removerlo.",
|
||||
"commGuideList02P": "<strong>Desalentamos el envío de mensajes privados no solicitados</strong>. Si recibes algún mensaje no solicitado que te incomode o rompa las Reglas o Términos de Servicio, por favor bloquea al remitente y repórtalo con los Moderadores.",
|
||||
"commGuideList02Q": "<strong>No intentes librarte de un bloqueo</strong>. Si alguien te ha bloqueado para evitar que le mandes mensajes privados, no le contactes por ningún otro medio para pedirle que te desbloqueen.",
|
||||
"commGuideList09E": "Eliminación permanente de la opción de mandar mensajes privados o aparecer en la búsqueda de miembros de Equipo",
|
||||
"commGuideList10G": "Deshabilitar temporalmente la opción de enviar mensajes privados o aparecen en la búsqueda de miembros de Equipo",
|
||||
"commGuideList09D": "Eliminación o degradación de los Niveles de Colaborador"
|
||||
}
|
||||
|
||||
@@ -1,15 +1,22 @@
|
||||
{
|
||||
"rebirthNew": "Renacimiento: ¡Nueva Aventura Disponible!",
|
||||
"rebirthUnlock": "¡Has desbloqueado el Renacimiento! Este objeto especial del Mercado te permite empezar un nuevo juego desde el nivel 1 manteniendo tus tareas, logros, mascotas, y más. ¡Úsalo para darle nueva vida a Habitica si sientes que ya lo lograste todo, o para tener la experiencia de nuevas funciones con la perspectiva de un personaje nuevo!",
|
||||
"rebirthAchievement": "¡Has comenzado una nueva aventura! Éste es tu Renacimiento número <%= number %>, y el Nivel más alto que has alcanzado es <%= level %>. Para acumular este Logro, ¡empieza tu aventura siguiente después de haber conseguido un nivel aún más alto!",
|
||||
"rebirthAchievement100": "¡Has comenzado una nueva aventura! Éste es tu Renacimiento número <%= number %>, y el Nivel más alto que has alcanzado es 100 o más. Para acumular este Logro, ¡empieza tu aventura siguiente cuando hayas alcanzado como mínimo el nivel 100!",
|
||||
"rebirthAchievement": "Has utilizado el Orbe del Renacimiento <strong><%= number %></strong> vez, y el nivel más alto que has alcanzado es <strong><%= level %></strong>.",
|
||||
"rebirthAchievement100": "Has utilizado el Orbe del Renacimiento <strong><%= number %></strong> veces, y el nivel más alto que has alcanzado es <strong>100</strong> o más.",
|
||||
"rebirthBegan": "Comenzó una Nueva Aventura",
|
||||
"rebirthText": "Comenzó <%= rebirths %> Nuevas Aventuras",
|
||||
"rebirthOrb": "Usó una Esfera de Renacimiento para empezar de nuevo después de llegar a Nivel <%= level %>.",
|
||||
"rebirthOrb100": "Usó una Esfera de Renacimiento para volver a empezar después de alcanzar Nivel 100 o superior.",
|
||||
"rebirthOrbNoLevel": "Usó una Esfera de Renacimiento para comenzar de nuevo.",
|
||||
"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án amarillas. Tus rachas serán removidas exceptuando aquellas que pertenezcan a Desafíos activos y Planes Grupales. Tu Oro, Experiencia, Maná, y los efectos de todas las Habilidades serán removidas. Todo esto tomará efecto inmediatamente. Para mas información, ve la página <a href='https://habitica.fandom.com/wiki/Orb_of_Rebirth' target='_blank'>Orb of Rebirth</a> en la Wiki.",
|
||||
"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án amarillas de nuevo. Tus rachas serán removidas exceptuando aquellas que pertenezcan a tareas de Desafíos activos y Planes Grupales. Tu Oro, Experiencia, Maná, y los efectos de todas las Habilidades serán removidas. Todo esto tomará efecto inmediatamente.",
|
||||
"rebirthName": "Esfera de Renacimiento",
|
||||
"rebirthComplete": "¡Volviste a Nacer!",
|
||||
"nextFreeRebirth": "<strong><%= days %> días</strong> hasta un Orbe de Renacimiento <strong>GRATIS</strong>"
|
||||
"nextFreeRebirth": "<strong><%= days %> días</strong> hasta un Orbe de Renacimiento <strong>GRATIS</strong>",
|
||||
"rebirthUnlockedNewItem": "Orbe del Renacimiento Desbloqueado",
|
||||
"rebirthUnlockedOrb": "¡Una nueva aventura está disponible!",
|
||||
"rebirthUnlockedDesc": "¡Usa el Orbe del Renacimiento para darle un toque de aire fresco a tu aventura en Habitica cuando sientas que ya lo has logrado todo! Empieza de nuevo en el nivel 1 manteniendo tus tareas, Logros y Mascotas con este artículo especial encontrado en el Mercado.",
|
||||
"rebirthNewAchievement": "Nuevo Logro",
|
||||
"rebirthNewAdventure": "¡Una nueva aventura comienza ahora!",
|
||||
"rebirthAchievementPlural": "Has utilizado el Orbe del Renacimiento <strong><%= number %></strong> veces, y el nivel más alto que has alcanzado es <strong><%= level %></strong>.",
|
||||
"rebirthStackInfo": "Este logro se acumulará cada vez que utilices el Orbe del Renacimiento."
|
||||
}
|
||||
|
||||
@@ -2588,7 +2588,7 @@
|
||||
"weaponArmoireHuntingHornText": "Corne de chasse",
|
||||
"weaponArmoireHuntingHornNotes": "Taïaut ! Taïaut ! Rassemblez votre équipe pour une aventure ou une quête en soufflant dans cette corne. Augmente la force de <%= str %> et l'intelligence de <%= int %>. Armoire enchantée : ensemble d'instruments de musique 1 (objet 1 de 3)",
|
||||
"shieldArmoireSpanishGuitarText": "Guitare espagnole",
|
||||
"shieldArmoireSpanishGuitarNotes": "Dzing ! Dzing ! Rassemblez votre équipe pour un concert ou un fête en jouant de cette guitare. Augmente la perception de <%= per %> et l'intelligence de <%= int %>. Armoire enchantée : ensemble d'instruments de musique 1 ((objet 2 de 3)",
|
||||
"shieldArmoireSpanishGuitarNotes": "Dzing ! Dzing ! Rassemblez votre équipe pour un concert ou un fête en jouant de cette guitare. Augmente la perception de <%= per %> et l'intelligence de <%= int %>. Armoire enchantée : ensemble d'instruments de musique 1 (objet 2 de 3)",
|
||||
"shieldArmoireSnareDrumText": "Caisse-claire",
|
||||
"shieldArmoireSnareDrumNotes": "Rat-a-tat-tat ! Rassemblez votre équipe pour une parade ou un défilé en jouant de ce tambour. Augmente la constitution de <%= con %> et l'intelligence de <%= int %>. Armoire enchantée : ensemble d'instruments de musique 1 (objet 3 de 3)",
|
||||
"backMystery202206Text": "Ailes de lutine maritime",
|
||||
|
||||
@@ -243,5 +243,7 @@
|
||||
"newMessage": "Nouveau Message",
|
||||
"targetUserNotExist": "L'Utilisat·eur·rice '<%= userName %>' n'existe pas.",
|
||||
"gem": "Gemme",
|
||||
"confirmPurchase": "Confirmer l'Achat"
|
||||
"confirmPurchase": "Confirmer l'Achat",
|
||||
"avoidSPI": "Éviter SPI",
|
||||
"avoidSPIDetails": "Dans le cadre de votre confidentialité, évitez de diffuser vos <%= firstLink %>informations personnelle<%= linkClose %> (SPI) durant votre activité sur Habitica. Vos données de compte, y compris vos tâches, sont stockées sur nos serveurs pour que vous puissiez y accéder depuis n'importe quelle plateforme.<br><br>Pour en savoir plus, consulter notre <%= secondLink %>Politique de Confidentialité<%= linkClose %>."
|
||||
}
|
||||
|
||||
@@ -131,5 +131,10 @@
|
||||
"deleteTaskType": "מחיקת ה<%= type %>",
|
||||
"enterTag": "נא לציין תגית",
|
||||
"pressEnterToAddTag": "נא לציין תגית להוספה: \"<%= type %>\"",
|
||||
"resetCounter": "איפוס המונה"
|
||||
"resetCounter": "איפוס המונה",
|
||||
"taskSummary": "<%= type %> סיכום",
|
||||
"sureDeleteType": "אתה בטוח שאתה רוצה למחוק את המשימה?",
|
||||
"taskAlias": "כינוי למשימה",
|
||||
"taskAliasPopover": "כינוי משימה זה יכול להיות בשימוש בעת שילוב עם אינטגרציות של צד שלישי. רק מקפים, קווים תחתונים ותווים אלפאנומריים נתמכים. כינוי המשימה חייב להיות ייחודי בין כל המשימות שלך.",
|
||||
"taskAliasPlaceholder": "כינוי-המשימה-שלך-כאן"
|
||||
}
|
||||
|
||||
@@ -914,7 +914,7 @@
|
||||
"backgroundSunnyStreetWithShopsText": "Strada Soleggiata con Negozi",
|
||||
"backgroundSunnyStreetWithShopsNotes": "Lasciati incantare dall’atmosfera di una strada soleggiata con negozi.",
|
||||
"backgroundAutumnSwampText": "Palude Autunnale",
|
||||
"backgroundAutumnSwampNotes": "Immergiti nelle inquietanti atmosfere di una palude d’autunno.",
|
||||
"backgroundAutumnSwampNotes": "Immergiti nelle inquietanti atmosfere di una palude d’Autunno.",
|
||||
"backgrounds102025": "SET 137: Rilasciato Ottobre 2025",
|
||||
"backgroundInsideForestWitchsCottageNotes": "Tessi incantesimi nella casetta della Strega della Foresta.",
|
||||
"backgrounds112025": "SET 138: Rilasciato Novembre 2025",
|
||||
@@ -930,5 +930,16 @@
|
||||
"backgroundWinterDesertWithSaguarosNotes": "Respira l'aria frizzante di un Deserto Invernale con Cactus Giganti.",
|
||||
"backgrounds022026": "SET 141: Rilasciato Febbraio 2026",
|
||||
"backgroundElegantPalaceText": "Palazzo Elegante",
|
||||
"backgroundElegantPalaceNotes": "Ammira le sale piene di colori di un Elegante Palazzo."
|
||||
"backgroundElegantPalaceNotes": "Ammira le sale piene di colori di un Elegante Palazzo.",
|
||||
"backgrounds032026": "SET 142: Rilasciato Marzo 2026",
|
||||
"backgroundWaterfallWithRainbowText": "Cascata con Arcobaleno",
|
||||
"backgroundWaterfallWithRainbowNotes": "Ammira la bellezza mozzafiato di una Cascata con Arcobaleno.",
|
||||
"backgrounds042026": "SET 143: Rilasciato Aprile 2026",
|
||||
"backgroundRidingACometNotes": "Viaggia nello spazio Sfrecciando su una Cometa!",
|
||||
"backgroundRidingACometText": "Sfrecciando su una Cometa",
|
||||
"backgrounds052026": "SET 144: Rilasciato Maggio 2026",
|
||||
"backgroundElvenCitadelText": "Cittadella Elfica",
|
||||
"backgroundElvenCitadelNotes": "Fai il giro panoramico in una Cittadella Elfica.",
|
||||
"backgroundOnAStrangePlanetText": "Su uno Strano Pianeta",
|
||||
"backgroundOnAStrangePlanetNotes": "Avventurati dove nessun Habitante è mai giunto prima: Su uno Strano Pianeta."
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"challenge": "Sfida",
|
||||
"challengeDetails": "Le sfide sono eventi della comunità nei quali i giocatori competono per aggiudicarsi dei premi, completando un gruppo di attività correlate.",
|
||||
"challengeDetails": "Le sfide sono eventi della Community nei quali i giocatori competono per aggiudicarsi dei premi, completando un gruppo di attività correlate.",
|
||||
"brokenChaLink": "Collegamento ad una sfida mancante",
|
||||
"keepIt": "Tienila",
|
||||
"removeIt": "Rimuovila",
|
||||
"brokenChallenge": "Collegamento ad una sfida mancante: questa attività era parte di una sfida, ma la sfida (o il gruppo) è stata cancellata. Cosa fare con le attività rimaste?",
|
||||
"challengeCompleted": "Questa sfida è stata completata, il vincitore è <span class=\"badge\"><%= user %></span>! Cosa fare con le attività rimaste?",
|
||||
"unsubChallenge": "Collegamento ad una sfida mancante: questa attività era parte di una sfida, ma ti sei ritirato. Cosa fare con le attività rimaste?",
|
||||
"brokenChallenge": "Collegamento ad una sfida mancante",
|
||||
"challengeCompleted": "Sfida Completata!",
|
||||
"unsubChallenge": "Collegamento ad una sfida mancante: questa attività era parte di una sfida, ma ti sei ritirato. Cosa vorresti fare con le attività rimaste?",
|
||||
"challenges": "Sfide",
|
||||
"endDate": "Fini",
|
||||
"selectWinner": "Scegli un vincitore e chiudi la sfida:",
|
||||
@@ -107,5 +107,10 @@
|
||||
"cannotClone": "Questa Sfida non può essere clonata perché uno o più giocatori l'hanno segnalata come inappropriata. Un membro dello staff ti contatterà a breve con le istruzioni. Se sono trascorse più di 48 ore e non hai ricevuto loro notizie, invia un'email a admin@habitica.com per assistenza.",
|
||||
"cannotMakeChallenge": "Non puoi creare Sfide pubbliche perché il tuo account attualmente non dispone dei privilegi di inviare messaggi in chat. Contatta admin@habitica.com per maggiori informazioni.",
|
||||
"abuseFlagModalBodyChallenge": "Dovresti segnalare una Sfida solo se viola le <%= firstLinkStart %>Linee Guida della Community<%= linkEnd %> e/o i <%= secondLinkStart %>Termini di Servizio di Habitica<%= linkEnd %>. L'invio di una segnalazione falsa costituisce una violazione delle Linee Guida della Community di Habitica.",
|
||||
"cannotClose": "Questa Sfida non può essere chiusa perché uno o più giocatori l'hanno segnalata come inappropriata. Un membro dello staff ti contatterà a breve con le istruzioni. Se sono trascorse più di 48 ore e non hai ricevuto loro notizie, invia un'email a admin@habitica.com per assistenza."
|
||||
"cannotClose": "Questa Sfida non può essere chiusa perché uno o più giocatori l'hanno segnalata come inappropriata. Un membro dello staff ti contatterà a breve con le istruzioni. Se sono trascorse più di 48 ore e non hai ricevuto loro notizie, invia un'email a admin@habitica.com per assistenza.",
|
||||
"brokenChallengeDescription": "Questa attività faceva parte di una sfida, ma la sfida (o il gruppo) è stata rimossa. Cosa vorresti fare con le attività rimaste?",
|
||||
"brokenTaskDescription": "Questa attività faceva parte di una sfida, ma è stata rimossa. Cosa desideri fare?",
|
||||
"challengeCompletedDescription": "Il vincitore è <%= user %>! Cosa vorresti fare con le attività rimanenti?",
|
||||
"deleteChallengeRefundDescription": "Se eliminerai questa Sfida, ti verrà rimborsato il premio in Gemme e le attività della Sfida rimarranno nelle bacheche dei partecipanti.",
|
||||
"brokenTask": "Link alla Sfida non funzionante"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"communityGuidelinesWarning": "Ricorda che il tuo nome pubblico, la tua foto profilo e la tua descrizione personale devono rispettare le <a href='https://habitica.com/static/community-guidelines' target='_blank'>linee guida della community</a> (ad esempio sono vietate parolacce, argomenti per adulti, insulti, ecc.). Se vuoi sapere se ciò che hai scritto è appropriato, non esitare a inviare un'e-mail a <%= hrefBlankCommunityManagerEmail %>!",
|
||||
"communityGuidelinesWarning": "Ricorda che il tuo Nome Pubblico, la tua foto profilo e la tua descrizione personale devono rispettare le <a href='https://habitica.com/static/community-guidelines' target='_blank'>Linee Guida della Community</a> (ad esempio sono vietate parolacce, argomenti per adulti, insulti, ecc.). Se vuoi sapere se ciò che hai scritto è appropriato, non esitare a inviare un'email a <%= hrefBlankCommunityManagerEmail %>!",
|
||||
"profile": "Profilo",
|
||||
"avatar": "Personalizza Avatar",
|
||||
"editAvatar": "Personalizza l'Avatar",
|
||||
@@ -71,8 +71,8 @@
|
||||
"leveledUp": "Raggiungendo i tuoi obiettivi nella vita reale, ora sei al <strong>livello <%= level %>!</strong>",
|
||||
"huzzah": "Urrà!",
|
||||
"mana": "Mana",
|
||||
"hp": "HP",
|
||||
"mp": "MP",
|
||||
"hp": "PS",
|
||||
"mp": "PM",
|
||||
"xp": "XP",
|
||||
"health": "Salute",
|
||||
"allocateStr": "Punti assegnati a Forza:",
|
||||
@@ -83,7 +83,7 @@
|
||||
"allocatePerPop": "Aggiungi un punto a Percezione",
|
||||
"allocateInt": "Punti assegnati a Intelligenza:",
|
||||
"allocateIntPop": "Aggiungi un punto a Intelligenza",
|
||||
"noMoreAllocate": "Ora che hai raggiunto il livello 100, non potrai guadagnare ulteriori Punti Statistica. Puoi continuare a salire di livello, o iniziare una nuova avventura dal livello 1 usando la <a href='/shops/market'>Sfera della Rinascita</a>!",
|
||||
"noMoreAllocate": "Ora che hai raggiunto il livello 100, non potrai guadagnare ulteriori Punti Statistica. Puoi continuare a salire di livello, o iniziare una nuova avventura dal livello 1 usando la <a href='/shops/market'>Sfera della Rinascita</a>.",
|
||||
"stats": "Statistiche",
|
||||
"strength": "Forza",
|
||||
"strText": "La tua Forza aumenta la probabilità di sferrare \"colpi critici\" e l'Oro, l'Esperienza e la probabilità di bottino che potrai guadagnare grazie ad essi. In più, permette di infliggere danni maggiori ai Boss delle missioni.",
|
||||
@@ -114,12 +114,12 @@
|
||||
"unallocated": "Punti Statistica non allocati",
|
||||
"autoAllocation": "Allocazione automatica",
|
||||
"autoAllocationPop": "Assegna i punti alle Statistiche in base alle tue preferenze, quando sali di livello.",
|
||||
"evenAllocation": "Distribuisci i punti uniformemente",
|
||||
"evenAllocationPop": "Assegna lo stesso numero di punti ad ogni Statistica.",
|
||||
"classAllocation": "Distribuisci i punti in base alla Classe",
|
||||
"classAllocationPop": "Assegna più punti alle Statistiche più importanti per la tua Classe.",
|
||||
"taskAllocation": "Distribuisci i punti in base alle tue attività",
|
||||
"taskAllocationPop": "Assegna punti basati sulle categorie Forza, Intelligenza, Costituzione e Percezione associate alle attività che completi.",
|
||||
"evenAllocation": "Distribuisci uniformemente",
|
||||
"evenAllocationPop": "Assegna lo stesso numero di punti ad ogni Statistica",
|
||||
"classAllocation": "Distribuisci i punti in base alla classe",
|
||||
"classAllocationPop": "Assegna più punti agli attributi più importanti per la tua classe",
|
||||
"taskAllocation": "Distribuisci in base alle tue attività",
|
||||
"taskAllocationPop": "Assegna punti basati sulle categorie Forza, Intelligenza, Costituzione e Percezione associate alle attività che completi",
|
||||
"distributePoints": "Distribuisci punti non allocati",
|
||||
"distributePointsPop": "Assegna tutti i Punti Statistica non allocati in base al metodo di allocazione selezionato.",
|
||||
"warriorText": "I Guerrieri possono eseguire un gran numero di \"colpi critici\" molto potenti, che forniscono un bonus di Oro ed Esperienza (e a volte degli oggetti) casualmente al completamento di una attività. Inoltre, infliggono ingenti danni ai mostri boss. Diventa un Guerriero se trovi accattivanti le imprevedibili ricompense in stile jackpot, o se vuoi dimenticarti del dolore durante le missioni boss!",
|
||||
@@ -177,8 +177,8 @@
|
||||
"bodyAccess": "Access. busto.",
|
||||
"mainHand": "Mano principale",
|
||||
"offHand": "Mano secondaria",
|
||||
"statPoints": "Punti Statistiche",
|
||||
"pts": "punti",
|
||||
"statPoints": "Punti Attributo",
|
||||
"pts": "Punti",
|
||||
"purchasePetItemConfirm": "Questo acquisto supererebbe il numero degli oggetti necessari per far schiudere tutti i possibili animali domestici. Sei sicuro?",
|
||||
"purchaseForGold": "Acquistare per <%= cost %> oro?",
|
||||
"chatCastSpellUser": "<%= username %> lancia <%= spell %> su <%= target %>.",
|
||||
@@ -187,9 +187,18 @@
|
||||
"chatCastSpellUserTimes": "<%= username %> lancia <%= spell %> per <%= target %> <%= times %> volte.",
|
||||
"chatCastSpellPartyTimes": "<%= username %> lancia <%= spell %> per la squadra <%= times %> volte.",
|
||||
"nextReward": "Prossima ricompensa per l'accesso",
|
||||
"titleHaircolor": "Colore dei capelli",
|
||||
"titleHaircolor": "Colore dei Capelli",
|
||||
"titleHairbase": "Capigliatura",
|
||||
"customizations": "Personalizzazioni",
|
||||
"skins": "Pelli",
|
||||
"titleFacialHair": "Peli del Volto"
|
||||
"titleFacialHair": "Barba",
|
||||
"strTaskText": "Aumenta la probabilità di infliggere colpi critici e il danno quando si completano le attività. Aumenta inoltre il danno inflitto ai boss delle Missioni.",
|
||||
"perTaskText": "Aumenta la probabilità di ottenere oggetti, il limite giornaliero di oggetti ottenibili, i bonus per le serie di attività completate e l'Oro guadagnato completando le attività.",
|
||||
"autoAllocate": "Assegnazione Automatica",
|
||||
"pointsAvailable": "Punti Disponibili",
|
||||
"allocationMethod": "Metodo di Ripartizione",
|
||||
"statAllocationInfo": "Ogni livello ti fa guadagnare un punto da assegnare a una caratteristica a tua scelta. Puoi farlo manualmente, oppure puoi lasciare che sia il gioco a decidere per te utilizzando una delle opzioni di Assegnazione Automatica.",
|
||||
"assignedStat": "Attributo Assegnato",
|
||||
"conTaskText": "Riduce i danni subiti a causa delle Attività Quotidiane non completate e delle Abitudini negative. Non riduce i danni inflitti dai boss delle Missioni.",
|
||||
"intTaskText": "Aumenta l'Esperienza ottenuta completando le Attività. Aumenta inoltre il limite massimo di Mana e la sua velocità di rigenerazione."
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"tavernCommunityGuidelinesPlaceholder": "Nota amichevole: questa è una chat per utenti di ogni età, quindi per favore assicurati che il tuo linguaggio e i contenuti che pubblichi siano appropriati. Consulta le Linee guida della community nella sezione \"Link utili\" qui a lato se hai qualche domanda.",
|
||||
"tavernCommunityGuidelinesPlaceholder": "Nota amichevole: questa è una chat per utenti di ogni età, quindi per favore assicurati che il tuo linguaggio e i contenuti che pubblichi siano appropriati. Consulta le Linee Guida della Community nella sezione \"Link utili\" qui a lato se hai qualche domanda.",
|
||||
"lastUpdated": "Ultimo aggiornamento:",
|
||||
"commGuideHeadingWelcome": "Benvenuto ad Habitica!",
|
||||
"commGuidePara001": "Salve avventuriero! Benvenuto ad Habitica, la terra della produttività, della vita sana, e occasionalmente di grifoni infuriati.",
|
||||
@@ -47,9 +47,9 @@
|
||||
"commGuidePara059": "<strong>Infrazioni della Comunità hanno conseguenze dirette. </strong> Alcuni esempi di conseguenze sono elencati di seguito.",
|
||||
"commGuideHeadingSevereConsequences": "Esempi di sanzioni gravi",
|
||||
"commGuideList09A": "Ban dell'account",
|
||||
"commGuideList09C": "Blocco permanente della progressione attraverso i Livelli Sostenitore",
|
||||
"commGuideList09C": "Blocco permanente della progressione attraverso i Gradi Contributore",
|
||||
"commGuideHeadingModerateConsequences": "Esempio di sanzioni medie",
|
||||
"commGuideList10D": "Blocco temporaneo della progressione attraverso i Livelli Sostenitore",
|
||||
"commGuideList10D": "Blocco temporaneo della progressione attraverso i Gradi Contributore",
|
||||
"commGuideHeadingMinorConsequences": "Esempi di sanzioni lievi",
|
||||
"commGuideList11A": "Promemoria delle Linee Guida",
|
||||
"commGuideList11B": "Avvertimenti",
|
||||
@@ -57,7 +57,7 @@
|
||||
"commGuideList11D": "Eliminazione dei contenuti problematici da parte dello Staff",
|
||||
"commGuideList11E": "Modifiche di contenuti problematici da parte dello Staff",
|
||||
"commGuideHeadingRestoration": "Riabilitazione",
|
||||
"commGuidePara061": "Habitica è dedicata al miglioramento personale, e crediamo nelle seconde possibilità. <strong>Se tu hai commesso una infrazione e hai ricevuto una conseguenza, vedila come una possibilità di rivalutare le tue azioni e cercare di diventare un membro migliore della comunità</strong>.",
|
||||
"commGuidePara061": "Habitica è dedicata al miglioramento personale, e crediamo nelle seconde possibilità. <strong>Se tu hai commesso una infrazione e hai ricevuto una conseguenza, vedila come una possibilità di rivalutare le tue azioni e cercare di diventare un membro migliore della Community</strong>.",
|
||||
"commGuidePara062": "<strong>Se vuoi fare una domanda riguardo alla tua infrazione o alle sue conseguenze, scusarti, o chiedere il reinserimento, puoi contattarci tramite <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> con il tuo User ID o @username</strong>. La responsabilità di contattarci è <strong>tua</strong>.",
|
||||
"commGuidePara063": "Se non capisci la tua sanzione, o la natura della tua infrazione, o se hai altre domande correlate, puoi contattare lo staff per discuterne a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>. Coopera con le restrizioni imposte e sforzati di soddisfare i requisiti per ottenere la rimozione delle penalità.",
|
||||
"commGuideHeadingMeet": "Incontra lo Staff",
|
||||
@@ -68,10 +68,10 @@
|
||||
"commGuidePara011b": "su GitHub/Fandom",
|
||||
"commGuidePara011c": "sulla Wiki",
|
||||
"commGuidePara011d": "su GitHub",
|
||||
"commGuidePara013": "In una comunità grande come Habitica, utenti vanno e vengono, e a volte membri dello Staff e moderatori hanno bisogno di posare il loro nobile mantello e rilassarsi. Questi sono Membri dello Staff e Moderatori Emeriti. Non agiscono più con il potere di un membro dello Staff o Moderatore, ma vorremmo ancora onorare il loro lavoro!",
|
||||
"commGuidePara013": "In una Community grande come Habitica, utenti vanno e vengono, e a volte membri dello Staff e moderatori hanno bisogno di posare il loro nobile mantello e rilassarsi. Questi sono Membri dello Staff e Moderatori Emeriti. Non agiscono più con il potere di un membro dello Staff o Moderatore, ma vorremmo ancora onorare il loro lavoro!",
|
||||
"commGuidePara014": "Staff e Moderatori emeriti:",
|
||||
"commGuideHeadingFinal": "La sezione finale",
|
||||
"commGuidePara067": "Questo è quello che devi sapere, coraggioso Habitante - le Linee Guida della comunità! Asciugati il sudore dalla fronte e prendi un po' di punti esperienza per averla letta tutta. Se hai dubbi o domande riguardo queste Linee Guida della Comunità, per favore contattaci tramite <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> e saremo felici di chiarire ogni cosa.",
|
||||
"commGuidePara067": "Questo è quello che devi sapere, coraggioso Habitante - le Linee Guida della Community! Asciugati il sudore dalla fronte e prendi un po' di punti esperienza per averla letta tutta. Se hai dubbi o domande riguardo queste Linee Guida della Comunità, per favore contattaci tramite <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> e saremo felici di chiarire ogni cosa.",
|
||||
"commGuidePara068": "Ora va', prode avventuriero, e sconfiggi qualche Attività Giornaliera!",
|
||||
"commGuideHeadingLinks": "Risorse utili (in inglese)",
|
||||
"commGuideLink02": "<a href='https://habitica.fandom.com/wiki/Habitica_Wiki' target='_blank'>La Wiki</a> (in inglese): la più grande fonte di informazioni su Habitica. Questo spazio non è ufficiale, è gestito da Fandom e mantenuto dai giocatori.",
|
||||
@@ -80,7 +80,7 @@
|
||||
"commGuidePara069": "I seguenti talentuosi artisti hanno contribuito a queste illustrazioni:",
|
||||
"commGuideList01A": "Le nostre Linee Guida e le Condizioni di Servizio sono valide in tutti gli spazi, inclusi gilde private, chat delle squadre, e messaggi.",
|
||||
"commGuideList02M": "<strong>Non chiedere o mendicare Gemme, abbonamenti o iscrizione a Piani di Gruppo</strong>. Se vedi o ricevi messaggi indesiderati che richiedono articoli a pagamento, segnalali. Le ripetute richieste di Gemme o abbonamenti, in particolare dopo un avviso, possono comportare il ban dell'account.",
|
||||
"commGuideList09D": "Rimozione o retrocessione di Gradi Giocatore",
|
||||
"commGuideList09D": "Rimozione o retrocessione dei Gradi Contributore",
|
||||
"commGuideList05H": "Severi o ripetuti tentativi di truffare o pressare altri giocatori per oggetti che richiedono soldi reali",
|
||||
"commGuideList02N": "<strong>Riporta tutto ciò che vedi che violi queste Linee Guida o i nostri Termini di Servizio.</strong> Puoi riportare un messaggio direttamente o notificare lo staff via email a: <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> per violazioni all'interno di profili o Sfide. Ce ne occuperemo il più velocemente possibile. Puoi anche contattarci nella tua lingua madre se ti è più facile: potremmo dover usare Google Translate, ma vogliamo che tu ti senta a tuo agio a contattarci se hai un problema.",
|
||||
"commGuideList02H": "<strong>Tutti i nomi visualizzati e gli @username devono essere conformi ai Termini di Servizio</strong>. Per modificare il tuo Nome Visualizzato e/o lo @username: su dispositivi mobili vai in Menu > Impostazioni > Account. Su Web, vai in Impostazioni dall'icona utente nel menu in alto.",
|
||||
|
||||
@@ -409,6 +409,7 @@
|
||||
"hatchingPotionOpal": "Opale",
|
||||
"hatchingPotionPinkMarble": "Marmo Rosa",
|
||||
"hatchingPotionTeaShop": "Negozio di Tè",
|
||||
"wackyPotionNotes": "Versalo su un uovo, e si schiuderà uno Strano <%= potText %> Animale Domestico.",
|
||||
"wackyPotionAddlNotes": "Non può essere trasformato in Cavalcature né usato su uova di animali domestici ottenuti attraverso una Missione."
|
||||
"wackyPotionNotes": "Versalo su un uovo, e si schiuderà uno Stravagante <%= potText %> Animale Domestico.",
|
||||
"wackyPotionAddlNotes": "Non può essere trasformato in Cavalcature né usato su uova di animali domestici ottenuti attraverso una Missione.",
|
||||
"hatchingPotionAlien": "Alieno"
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"lostAllHealth": "Hai finito i punti salute!",
|
||||
"dontDespair": "Non disperarti!",
|
||||
"deathPenaltyDetails": "Hai perso un livello, il tuo oro e un oggetto del tuo equipaggiamento, ma potrai recuperare tutto lavorando sodo! Buona fortuna, ce la farai.",
|
||||
"deathPenaltyDetails": "Hai perso un Livello, il tuo Oro e un oggetto del tuo Equipaggiamento, ma potrai recuperare tutto con un po' d'impegno! Buona fortuna, ce la farai.",
|
||||
"refillHealthTryAgain": "Ripristina salute e riprovaci",
|
||||
"dyingOftenTips": "Succede spesso? <a href='https://habitica.fandom.com/wiki/Death_Mechanics#Strategies_for_Staying_Alive' target='_blank'>Qui trovi qualche consiglio! (in inglese)</a>",
|
||||
"dyingOftenTips": "Succede spesso? <a href='/static/faq#prevent-damage' target='_blank'>Qui trovi qualche consiglio! (in inglese)</a>",
|
||||
"losingHealthWarning": "Attenzione - stai perdendo Salute!",
|
||||
"losingHealthWarning2": "Non lasciare che la tua Salute scenda a zero! Se lo farai, perderai un livello, il tuo Oro e un pezzo di equipaggiamento.",
|
||||
"toRegainHealth": "Per ripristinare la Salute:",
|
||||
|
||||
@@ -52,5 +52,5 @@
|
||||
"schoolTodoText": "Termina il compito per la lezione",
|
||||
"schoolDailyNotes": "Tocca per scegliere il tuo programma di lavoro!",
|
||||
"healthTodoText": "Programma il check-up >> Brainstorming di un cambiamento salutare",
|
||||
"workHabitMail": "Controlla le e-mail"
|
||||
"workHabitMail": "Controlla le email"
|
||||
}
|
||||
|
||||
@@ -3,25 +3,25 @@
|
||||
"iosFaqStillNeedHelp": "Se hai una domanda che non è presente in questa lista o nella [sezione FAQ della wiki](https://habitica.fandom.com/wiki/FAQ), usa \"Fammi una domanda\" [LINK NEEDED] ! Saremo felici di aiutarti.",
|
||||
"androidFaqStillNeedHelp": "Se hai una domanda che non è presente in questa lista o nella [sezione FAQ della wiki](https://habitica.fandom.com/wiki/FAQ), usa \"Fammi una domanda\" [LINK NEEDED] ! Saremo felici di aiutarti.",
|
||||
"webFaqStillNeedHelp": "Se hai una domanda che non è presente in questa lista o nella [sezione FAQ della wiki](https://habitica.fandom.com/wiki/FAQ), usa \"Fammi una domanda\" [LINK NEEDED] ! Saremo felici di aiutarti.",
|
||||
"commonQuestions": "Domande comuni",
|
||||
"faqQuestion25": "Quali sono i diversi tipi di attività?",
|
||||
"faqQuestion26": "Quali sono gli esempi di attività?",
|
||||
"commonQuestions": "Domande Comuni",
|
||||
"faqQuestion25": "Quali sono i tipi di attività?",
|
||||
"faqQuestion26": "Quali sono gli esempi delle attività?",
|
||||
"faqQuestion27": "Perché le attività cambiano colore?",
|
||||
"webFaqAnswer25": "Habitica utilizza tre diversi tipi di attività per soddisfare le tue esigenze: Abitudini, Quotidiane e Cose da fare.\n\nLe abitudini possono essere positive o negative e rappresentano qualcosa che potresti voler monitorare più volte al giorno o secondo un programma non definito. Le abitudini positive ti forniranno ricompense, come oro ed esperienza (Exp), mentre le abitudini negative ti faranno perdere punti salute (HP).\n\nLe quotidiane sono attività ripetute che desideri completare secondo un programma più strutturato. Per esempio. Una volta al giorno, tre volte alla settimana o quattro volte al mese. Le Dailies mancanti ti fanno perdere HP, ma più sono difficili, migliori saranno le ricompense!\n\nLe cose da fare sono attività una tantum che forniscono ricompense dopo averle completate. Le cose da fare possono avere una data di scadenza, ma non perderai HP se la perdi.\n\nScegli il tipo di attività che meglio si adatta a ciò che desideri ottenere!",
|
||||
"webFaqAnswer26": "Abitudini positive (Comportamenti che vuoi incoraggiare, dovrebbero avere un bottone \"più\")\n\n * Prendere vitamine\n * Usare il filo interdentale\n * Un'ora di studio\n\nAbitudini negative (Comportamenti che vuoi limitare o evitare; dovrebbero avere un bottone \"meno\")\n\n * Fumare\n * Passare troppo tempo online, concentrandosi su notizie negative\n * Mangiarsi le unghie\n\nAbitudini duali (Abitudini che hanno opzioni sia potivie che negativ; dovrebbero avere sia il bottone \"più\" che quello \"meno\")\n\n * Bere acqua oppure bere bevande zuccherate\n * Studiare oppure procastinare\n\nEsempi di Attività quotidiane (Attività che vuoi ripetere secondo una programmazione regolare)\n * Lavare i piatti\n * Innaffiare le piante\n * 30 minuti di attività fisica\n\nEsempi di Cose da fare (Attività che devi fare una volta sola)\n\n *Programmare un appuntamento\n * Riordinare lo sgabuzzino\n * Finire un saggio",
|
||||
"webFaqAnswer27": "Il colore di una attività è una rappresentazione visiva del suo valore: tutte le attività iniziano con il giallo, che rappresenta lo status neutrale, il blu rappresenta il miglioramento, e il rosso il peggioramento. Ecco come il tipo di attività determina il suo valore:\n\nLe Abitudini diventano più blu o rosse a seconda che tu prema il bottone \"più\" o \"meno\". Le Abitudini, positive o negative che siano, degradano verso il giallo con il passare del tempo se non le porti a termine. Le Abitudini che hanno sia natura positiva che negativa cambiano colore solo secondo i tuoi input.\n\nLe Attività giornaliere cambiano colore a seconda di quanto spesso vengono completate, diventando più blu se vengono completate e più rosse se le tralasci.\n\nLe Cose da fare diventano gradualmente più rosse, tanto più quanto più a lungo restano senza essere completate.\n\nPiù rossa è l'attività, più Oro ed Esperienza otterrai se le completi, perciò assicurati di intraprendere anche le tue attività più difficili!",
|
||||
"faqQuestion28": "Posso mettere in pausa le mie Attività giornaliere se ho bisogno di una pausa?",
|
||||
"faqQuestion29": "Come recupero HP?",
|
||||
"webFaqAnswer29": "Puoi recuperare 15 HP comprando una \"Pozione di cura\" dalla sezione delle tue \"Ricompense\" per 25 monete d'oro. In più, recupererai sempre tutti i tuoi HP salendo di livello!",
|
||||
"faqQuestion30": "Cosa succede se non mi rimangono più HP?",
|
||||
"webFaqAnswer30": "Se i tuoi HP raggiungono lo 0, scenderai di 1 livello, perderai tutto il tuo Oro e un oggetto del tuo Equipaggiamento (che però potrai riacquistare).",
|
||||
"faqQuestion31": "Perché ho perso HP, pur non avendo interagito con Abitudini Negative?",
|
||||
"webFaqAnswer31": "Se hai completato un'attività e hai perso HP quando non avesti dovuto, il server sincronizzando i progressi fatti su altre piattaforme ha avuto un ritardo. Per esempio, se hai usato Oro, Mana, o hai perso HP sull'applicazione per dispositivi mobili e poi hai completato un'attività sul sito, il server ha semplicemente bisogno di confermare che tutto sia sincronizzato.",
|
||||
"webFaqAnswer25": "Habitica utilizza tre diversi tipi di attività per soddisfare le tue esigenze: Abitudini, Attività Quotidiane e Cose da Fare.\n\nLe Abitudini possono essere positive o negative e rappresentano qualcosa che potresti voler monitorare più volte al giorno o secondo un programma non definito. Le abitudini positive ti forniranno ricompense, come Oro ed Esperienza (Exp), mentre le abitudini negative ti faranno perdere punti salute (PS).\n\nLe Attività Quotidiane sono attività ripetute che desideri completare secondo un programma più strutturato. Per esempio. Una volta al giorno, tre volte alla settimana o quattro volte al mese. Le Attività Quotidiane mancanti ti fanno perdere Salute, ma più sono difficili, migliori saranno le ricompense!\n\nLe Cose da Fare sono attività una tantum che forniscono ricompense dopo averle completate. Le cose da fare possono avere una data di scadenza, ma non perderai Salute se la perdi.\n\nScegli il tipo di attività che meglio si adatta a quello che desideri ottenere!",
|
||||
"webFaqAnswer26": "Abitudini positive (Comportamenti che vuoi incoraggiare, dovrebbero avere un bottone \"più\")\n\n * Prendere vitamine\n * Usare il filo interdentale\n * Un'ora di studio\n\nAbitudini negative (Comportamenti che vuoi limitare o evitare; dovrebbero avere un bottone \"meno\")\n\n * Fumare\n * Passare troppo tempo online, concentrandosi su notizie negative\n * Mangiarsi le unghie\n\nAbitudini duali (Abitudini che hanno opzioni sia potivie che negativ; dovrebbero avere sia il bottone \"più\" che quello \"meno\")\n\n * Bere acqua oppure bere bevande zuccherate\n * Studiare oppure procastinare\n\nEsempi di Attività Giornaliere (Attività che vuoi ripetere secondo una programmazione regolare)\n * Lavare i piatti\n * Innaffiare le piante\n * 30 minuti di attività fisica\n\nEsempi di Cose da Fare (Attività che devi fare una volta sola)\n\n * Programmare un appuntamento\n * Riordinare lo sgabuzzino\n * Finire un saggio",
|
||||
"webFaqAnswer27": "Il colore di una attività è una rappresentazione visiva del suo valore: tutte le attività iniziano con il giallo, che rappresenta lo status neutrale, il blu rappresenta il miglioramento, e il rosso il peggioramento. Ecco come il tipo di attività determina il suo valore:\n\nLe Abitudini diventano più blu o rosse a seconda che tu prema il bottone \"più\" o \"meno\". Le Abitudini, positive o negative che siano, degradano verso il giallo con il passare del tempo se non le porti a termine. Le Abitudini che hanno sia natura positiva che negativa cambiano colore solo secondo i tuoi input.\n\nLe Attività Giornaliere cambiano colore a seconda di quanto spesso vengono completate, diventando più blu se vengono completate e più rosse se le tralasci.\n\nLe Cose da Fare diventano gradualmente più rosse, tanto più quanto più a lungo restano senza essere completate.\n\nPiù rossa è l'attività, più Oro ed Esperienza otterrai se le completi, perciò assicurati di intraprendere anche le tue attività più difficili!",
|
||||
"faqQuestion28": "Posso mettere in pausa le mie Attività Giornaliere se avessi bisogno di una pausa?",
|
||||
"faqQuestion29": "Come recupero Salute?",
|
||||
"webFaqAnswer29": "Puoi recuperare 15 di Salute comprando una \"Pozione di cura\" dalla sezione delle tue \"Ricompense\" per 25 di Oro. In più, recupererai sempre tutta la tua Salute salendo di livello!",
|
||||
"faqQuestion30": "Cosa succede se la mia Salute si azzera?",
|
||||
"webFaqAnswer30": "Se la tua Salute scende a zero perderai un livello, il punto attributo di quel livello, tutto il tuo Oro e un pezzo del tuo equipaggiamento (che però potrai riacquistare). Potrai ricostruirlo completando le attività e salendo di nuovo di livello.",
|
||||
"faqQuestion31": "Perché ho perso PS, pur non avendo interagito con Abitudini Negative?",
|
||||
"webFaqAnswer31": "Se hai completato un'attività e hai perso PS quando non avesti dovuto, il server sincronizzando i progressi fatti su altre piattaforme ha avuto un ritardo. Per esempio, se hai usato Oro, Mana, o hai perso PS sull'applicazione per dispositivi mobili e poi hai completato un'attività sul sito, il server ha semplicemente bisogno di confermare che tutto sia sincronizzato.",
|
||||
"faqQuestion32": "Come si sceglie una Classe?",
|
||||
"webFaqAnswer32": "Tutti i giocatori iniziano con la classe Guerriero fino al raggiungimento del livello 10. Una volta raggiunto il livello 10, ti verrà data la possibilità di scegliere tra selezionare una nuova classe o continuare come Guerriero.\n\nOgni classe ha Equipaggiamento e Abilità diverse. Se non vuoi scegliere una classe, puoi selezionare \"Non scegliere\". Se decidi di non sceglierne una, puoi sempre abilitare il Sistema di Classe dalle Impostazioni in seguito.\n\nSe desideri cambiare classe dopo il livello 10, puoi farlo usando la Sfera della Rinascita. La Sfera della Rinascita diventa disponibile nel Mercato per 6 Gemme al livello 50 o gratuitamente al livello 100.\n\nIn alternativa, puoi cambiare classe in qualsiasi momento dalle Impostazioni per 3 Gemme. Questo non azzererà il tuo livello come la Sfera della Rinascita, ma ti consentirà di riassegnare i punti abilità che hai accumulato mentre salivi di livello per adattarli alla tua nuova classe.",
|
||||
"faqQuestion33": "Cos'è la barra blu che appare dopo il livello 10?",
|
||||
"webFaqAnswer28": "Si! Il bottone \"Pausa Danno\" si può trovare nelle Impostazioni. Premerlo impedirà che tu perda HP per le Attività giornaliere mancate. Ciò è utile quando sei in vacanza, hai bisogno di riposo, o per qualsiasi altra ragione tu abbia bisogno di una pausa. Se stai partecipando ad una Missione, i tuoi progressi in attesa saranno messi in pausa, ma subirai ancora i danni derivanti dalle Attività giornaliere mancate della tua Squadra.\n\nPer mettere in pausa delle Attività giornaliere specifiche, puoi modificare la pianificazione e fissarla ogni 0 giorni fino a quando non ti sentirai pronto/a a ricominciarla.",
|
||||
"webFaqAnswer33": "Dopo aver sbloccato il sistema delle Classi, sblocchi anche Abilità che richiedono Mana per essere utilizzate. Il Mana dipende dalla statistica INT e può essere modificata attraverso Abilità e Equipaggiamento",
|
||||
"webFaqAnswer28": "Si! Il bottone \"Sospendi Danno\" si può trovare nelle Impostazioni. Premerlo impedirà che tu perda PS per le Attività Giornaliere mancate. Ciò è utile quando sei in vacanza, hai bisogno di riposo, o per qualsiasi altra ragione tu abbia bisogno di una pausa. Se stai partecipando ad una Missione, i tuoi progressi in attesa saranno messi in pausa, ma subirai ancora i danni derivanti dalle Attività Giornaliere mancate della tua Squadra.\n\nPer mettere in pausa delle Attività Giornaliere specifiche, puoi modificare la pianificazione e fissarla ogni 0 giorni fino a quando non ti sentirai pronto/a a ricominciarla.",
|
||||
"webFaqAnswer33": "Dopo aver sbloccato il sistema delle Classi, sblocchi anche Abilità che richiedono Mana per essere utilizzate. Il Mana dipende dalla statistica INT e può essere modificata attraverso Abilità ed Equipaggiamento.",
|
||||
"faqQuestion34": "Che tipo di cibo piace al mio animale domestico?",
|
||||
"webFaqAnswer34": "Agli animali domestici piace il cibo che corrisponde al proprio colore. Gli animali base fanno eccezione, ma tutti a tutti gli animali basi piace lo stesso oggetto. Qui sotto puoi trovare la lista dei cibi specifici che piacciono a ciascun animale:\n\n* Agli animali base piace la carne\n* Agli animali bianchi piace il latte\n* Agli animal del deserto piacciono le patate\n* Agli animali rossi piacciono le fragole\n* Agli animali ombra piace la cioccolata\n* Agli animali scheletro piacciono i pesci\n* Agli animali zombie piace la carne marcia\n* Agli animali dello zucchero filato rosa piace lo zucchero filato rosa\n* Agli animali dello zucchero filato blu piace lo zucchero filato blu\n* Agli animali dorati piace il miele",
|
||||
"faqQuestion35": "Ho dato da mangiare al mio animale domestico ed è scomparso! Cos'è successo?",
|
||||
@@ -31,7 +31,7 @@
|
||||
"faqQuestion38": "Perché non posso comprare nessun oggetto?",
|
||||
"webFaqAnswer38": "Nuovi giocatori di Habitica possono solo acquistare l'equipaggiamento base per la classe Guerriero. Giocatori devono comprare equipaggiamento il ordine sequenziale per sbloccare il prossimo articolo.\n\nMolti pezzi di equipaggiamento sono specifici per una classe in particolare, e di conseguenza i giocatori possono solo comprare equipaggiamento corrispondente alla loro classe attuale.",
|
||||
"faqQuestion39": "Dovo posso ottenere altro Equipaggiamento?",
|
||||
"webFaqAnswer39": "Se stai cercando altro Equipaggiamento, puoi diventare un Abbonato ad Habitica, tentare la sorte con lo Scrigno Incantato, o dare sfoggio durante uno dei Grand Gala di Habitica.\n\nGli Abbonati ad Habitica ricevono set di attrezzatura esclusivi ogni mese e le Clessidre Mistiche per comprare set di Equipaggiamento passati dal Negozio del Viaggiatore nel Tempo.\n\nLo Scrigno Incantato tra le tue Ricompense ha oltre 350 pezzi di Equipaggiamento! Per 100 monete d'oro avrai la possibilità di ricevere dell'Equipaggiamento speciale, Cibo per far diventare i tuoi animali domestici delle cavalcature, o Esperienza per salire di livello!\n\nDurante i quattro Grand Gala stagionali, Equipaggiamento di classe nuovo di zecca diventa disponibile per l'acquisto con monete d'oro mentre set di Gala precedenti possono essere acquistati con Gemme.",
|
||||
"webFaqAnswer39": "Se stai cercando altro Equipaggiamento, puoi diventare un Abbonato ad Habitica, tentare la sorte con lo Scrigno Incantato, o dare sfoggio durante uno dei Gran Galà di Habitica.\n\nGli Abbonati ad Habitica ricevono set di attrezzatura esclusivi ogni mese e le Clessidre Mistiche per comprare set di Equipaggiamento passati dal Negozio del Viaggiatore nel Tempo.\n\nLo Scrigno Incantato tra le tue Ricompense ha oltre 350 pezzi di Equipaggiamento! Per 100 monete d'oro avrai la possibilità di ricevere dell'Equipaggiamento speciale, Cibo per far diventare i tuoi animali domestici delle cavalcature, o Esperienza per salire di livello!\n\nDurante i quattro Grand Galà stagionali, Equipaggiamento di classe nuovo di zecca diventa disponibile per l'acquisto con monete d'oro mentre set di Galà precedenti possono essere acquistati con Gemme.",
|
||||
"webFaqAnswer36": "Ci sono infiniti modi per personalizzare l'aspetto del tuo Avatar in Habitica! Puoi scegliere la forma del corpo del tuo Avatar, lo stile ed il colore dei capelli, il colore della pelle, o aggiungere occhiali o supporti per la mobilità selezionando \"Personalizza Avatar\" dal menù.\n\nPer personalizzare il tuo Avatar da app mobile:\n* Dal menù, seleziona \"Personalizza Avatar\"\n\nPer personalizzare il tuo Avatar dal sito web:\n* Dal menù utente nella navigazione, seleziona \"Personalizza Avatar\"",
|
||||
"webFaqAnswer37": "Controlla se l'opzione Costume è attivata. Se il tuo Avatar indossa un Costume, quel set di Equipaggiamento verrà mostrato al posto dell'attrezzatura da combattimento.\n\nPer attivare il Costume su app mobile:\n* Dal menù, seleziona \"Equipaggiamento\" per trovare il pulsante Costume\n\nPer attivare il costume da sito web:\n* Dal tuo Inventario, seleziona \"Equipaggiamento\" e trova il pulsante \"Costume\" nella sezione Costume della barra dell'equipaggiamento",
|
||||
"faqQuestion40": "Cosa sono le Gemme e come posso ottenerle?",
|
||||
@@ -68,10 +68,188 @@
|
||||
"parties": "Squadre",
|
||||
"webFaqAnswer55": "Sì! Se hai già il nome utente o l'indirizzo email di un giocatore di Habitica, puoi invitarlo a unirsi al tuo Gruppo. Ecco come inviare un invito sulle diverse piattaforme:\n\nPer invitare qualcuno dalle app mobili:\n1. Dal menu, seleziona \"Gruppo\" e scorri verso il basso fino alla sezione Membri\n2. Tocca \"Trova membri\", poi passa alla scheda \"Tramite invito\"\n3. Inserisci i nomi utente o gli indirizzi email dei giocatori che vuoi invitare e clicca su \"Invia invito\"\n\nPer invitare qualcuno dal sito web:\n1. Vai al tuo Gruppo e clicca su \"Invita al gruppo\"\n2. Inserisci i nomi utente o gli indirizzi email dei giocatori che vuoi invitare e clicca su \"Invia inviti\"",
|
||||
"faqQuestion56": "Come posso annullare un invito in sospeso al mio Gruppo?",
|
||||
"webFaqAnswer56": "Per annullare un invito in sospeso nelle app mobili:\n 1. Quando visualizzi la tua Squadra, scorri fino in fondo all'elenco dei Membri.\n 2. Trova il giocatore di cui vuoi annullare l'invito e tocca il pulsante \"Annulla invito\".\n\nPer annullare un invito in sospeso sul sito web:\n 1. Vai all'elenco dei membri della tua Squadra e passa alla scheda \"Inviti\".\n 2. Passa il mouse sopra il nome del giocatore di cui vuoi annullare l'invito\n 3. Clicca sui tre puntini e seleziona \"Annulla invito\".",
|
||||
"webFaqAnswer56": "Per annullare un invito in sospeso nelle app mobili:\n1. Quando visualizzi la tia Squadra, scorri fino in fondo all'elenco dei Membri\n2. Trova il giocatore di cui vuoi annullare l'invito e tocca il pulsante \"Annulla invito\"\n\nPer annullare un invito in sospeso sul sito web:\n1. Vai all'elenco dei membri della tua Squadra e passa alla scheda \"Inviti\"\n2. Passa il mouse sopra il nome del giocatore di cui vuoi annullare l'invito\n3. Clicca sui tre puntini e seleziona \"Annulla invito\"",
|
||||
"faqQuestion57": "Come posso bloccare inviti indesiderati?",
|
||||
"webFaqAnswer57": "Una volta entrato in una squadra, non riceverai più inviti.\nSe vuoi impedire inviti e comunicazioni future da parte di un giocatore specifico, visita il suo profilo e clicca sul pulsante Blocca.\nNei profili su dispositivi mobili, tocca i tre puntini nell’angolo in alto e seleziona Blocca.\nSe ritieni che un altro giocatore abbia violato le nostre Linee guida della community nel nome, nel profilo o in un messaggio inviato, segnala i messaggi oppure contattaci all’indirizzo admin@habitica.com",
|
||||
"webFaqAnswer57": "Una volta che ti unisci ad una Squadra, non riceverai più altri inviti. Se vuoi impedire inviti e comunicazioni future da parte di un determinato giocatore, visualizza il suo profilo e clicca sul pulsante \"Blocca\". Sui profili nell’app mobile, tocca i tre puntini nell’angolo in alto, poi seleziona \"Blocca\".\n\nSe ti trovi in una situazione in cui credi che un altro giocatore abbia violato le nostre Linee Guida della Community nel suo nome, profilo o in un messaggio inviato, ti invitiamo a segnalare il messaggio o a contattarci all’indirizzo admin@habitica.com.",
|
||||
"faqQuestion58": "Come posso filtrare l’elenco dei membri che cercano una squadra?",
|
||||
"webFaqAnswer58": "Al momento non è possibile filtrare l’elenco dei membri in cerca di una Squadra. Tuttavia, abbiamo in programma di introdurre filtri in futuro, come classe, livello e lingua.",
|
||||
"webFaqAnswer59": "I Piani di Gruppo di Habitica offrono un’esperienza condivisa, consentendo ai membri di aggiungere, assegnare e completare facilmente attività da una bacheca comune.\nGrazie a funzionalità come i ruoli dei membri, la vista dello stato e l’assegnazione delle attività, i Piani di Gruppo sono adatti a famiglie o team di colleghi che condividono obiettivi comuni.\nSono anche un buon modo per mantenersi reciprocamente motivati nel percorso di sconfitta dei mostri e di miglioramento personale."
|
||||
"webFaqAnswer59": "I Piani di Gruppo di Habitica offrono un’esperienza condivisa permettendo ai membri di aggiungere, assegnare e completare facilmente le attività da una bacheca condivisa. Con funzionalità come i ruoli dei membri, la visualizzazione dello stato e l’assegnazione delle attività, i Piani di Gruppo sono perfetti per famiglie o team di colleghi che hanno obiettivi comuni. Sono anche un ottimo modo per motivarsi a vicenda nel percorso di combattimento dei mostri e miglioramento della propria vita.",
|
||||
"webFaqAnswer65": "Anche se le app mobili non supportano ancora tutte le funzionalità dei Piani di Gruppo, puoi comunque completare le attività condivise dalle app su iOS e Android!\n\nSu Android, puoi toccare il tuo Nome Pubblico in cima allo schermo mentre visualizzi le tue attività per passare alla bacheca delle attività condivise. Da lì puoi vedere i membri, accedere alla chat e creare, completare o assegnare attività.\n\nPuoi anche attivare un’opzione per copiare le attività condivise nella tua bacheca personale, così da poter completare tutte le tue attività da un unico posto.\n\nPer farlo nelle app mobili:\n* Apri Impostazioni e attiva “Copia attività condivise”\n\nPer farlo sul sito web di Habitica:\n* Vai al tuo Piano di Gruppo e attiva l’interruttore “Copia attività” sulla bacheca delle attività condivise",
|
||||
"webFaqAnswer67": "Le classi sono ruoli che il tuo personaggio può assumere. Man mano che sali di livello, ogni classe offrirà una serie di vantaggi e di abilità uniche. Queste abilità possono stravolgere il modo in cui affronti le attività o aiutarti a contribuire al completamento delle Missioni all’interno della tua Squadra.\n\nLa tua classe determina anche l’Equipaggiamento che potrai acquistare nelle Ricompense, nel Mercato e nel Negozio Stagionale.\n\nEcco una panoramica di ciascuna classe per aiutarti a scegliere quella più adatta al tuo stile di gioco:\n#### **Guerriero**\n* I guerrieri infliggono danni elevati ai boss e hanno un'alta probabilità di colpi critici durante il completamento delle attività, ricompensandoti con Esperienza e Oro extra.\n* La Forza è la loro statistica primaria, che aumenta il danno che infliggono.\n* La Costituzione è la loro statistica secondaria, che riduce il danno che subiscono.\n* Le abilità dei guerrieri potenziano la Costituzione e la Forza dei compagni della Squadra.\n* Considera di giocare come Guerriero se ami combattere i boss, ma allo stesso tempo desideri anche un po' di protezione nel caso in cui occasionalmente fallissi le missioni.\n#### **Guaritore**\n* I guaritori hanno un'elevata difesa e possono curare sia se stessi che i compagni della Squadra.\n* La Costituzione è la loro statistica primaria, che aumenta le loro cure e riduce il danno che subiscono.\n* L'Intelligenza è la loro statistica secondaria, che aumenta il loro Mana e l'Esperienza.\n* Le abilità dei guaritori rendono i loro compiti meno difficili e potenziano la Costituzione dei compagni della Squadra.\n* Considera di giocare come Guaritore se fallisci spesso le attività e hai bisogno di curare te stesso o i membri della tua Squadra. I guaritori salgono di livello rapidamente.\n#### **Mago**\n* I maghi salgono di livello rapidamente, guadagnano molto Mana e infliggono danni ai boss nelle Missioni.\n* L'Intelligenza è la loro statistica primaria, che aumenta il loro Mana e l'Esperienza.\n* La Percezione è la loro statistica secondaria, che aumenta il loro Oro e gli oggetti ottenuti.\n* Le abilità dei Maghi congelano le loro serie di Missioni, ripristinano il Mana dei compagni di gruppo e potenziano la loro Intelligenza.\n* Considera di giocare come Mago se ti motiva progredire rapidamente di livello e contribuire al danno nelle Missioni contro i boss.\n#### **Ladro**\n* I ladri ottengono il maggior numero di oggetti e Oro completando le missioni e hanno un'alta probabilità di fare colpi critici, ottenendo ancora più Esperienza e Oro.\n* La Percezione è la loro statistica primaria, che aumenta il loro Oro e gli oggetti ottenuti.\n* La Forza è la loro statistica secondaria, che aumenta il danno che infliggono.\n* Le abilità dei ladri li aiutano a schivare le Attività Giornaliere che non hai fatto, a rubare Oro e a potenziare la Percezione dei compagni della Squadra.\n* Considera di giocare come Ladro se sei fortemente motivato dall'ottenimento di ricompense.",
|
||||
"webFaqAnswer68": "Se ti capita spesso di perdere Salute, prova a seguire alcuni di questi consigli:\n\n- Metti in pausa le tue Attività Giornaliere. Il pulsante “Sospendi danni” nelle Impostazioni ti impedirà di perdere Salute per le Attività Giornaliere non fatte.\n- Modifica la scadenza delle tue Attività Giornaliere. Impostandole in modo che non abbiano una scadenza, potrai comunque completarle per ottenere le ricompense senza rischiare di perdere Salute.\n- Prova a usare le abilità di classe:\n- I ladri possono lanciare Furtività per evitare i danni causati dalle Attività Giornaliere non fatte\n- I guerrieri possono lanciare Attacco Brutale per ridurre l'intensità delle Attività Giornaliere, diminuendo i danni subiti se non finite\n- I guaritori possono lanciare Luce Ustionante per ridurre l'intensità delle Attività Giornaliere, diminuendo i danni subiti se non finite",
|
||||
"faqQuestion67": "Cosa sono le classi su Habitica?",
|
||||
"faqQuestion68": "Come faccio ad evitare di perdere Salute?",
|
||||
"groupPlan": "Piani di Gruppo",
|
||||
"faqQuestion59": "Cos’è un Piano di Gruppo?",
|
||||
"faqQuestion60": "Come posso iniziare ad usare il mio Piano di Gruppo?",
|
||||
"webFaqAnswer60": "Ecco alcuni consigli per iniziare a utilizzare il tuo nuovo Piano di Gruppo su Habitica:\n\n * Promuovi un membro come manager per consentirgli di creare e modificare le attività\n * Lascia le attività come \"non assegnate\" se chiunque può completarle e deve svolgerle una sola volta\n * Assegna un'attività a una sola persona per assicurarti che nessun altro possa completarla\n * Assegna un'attività a più persone se tutte devono completarla\n * Attiva l'opzione per visualizzare le attività condivise sulla tua bacheca personale per non perderti nulla\n * Ricevi ricompense per le attività che completi, anche quelle assegnate a più persone\n * Le ricompense per il completamento delle attività non vengono divise tra i membri\n * Usa i colori delle attività sulla bacheca della squadra per valutare il tasso medio di completamento delle attività\n * Controlla regolarmente le attività sulla bacheca delle attività condivise per assicurarti che siano ancora rilevanti\n * Saltare un'Attività Giornaliera non danneggerà né te né la tua squadra, ma il colore dell'attività diventerà più scuro",
|
||||
"faqQuestion61": "Gli altri membri del Piano di Gruppo possono creare attività?",
|
||||
"webFaqAnswer61": "Solo il leader del Piano di Gruppo e i manager possono creare attività condivise. Se vuoi che un membro possa creare attività, devi promuoverlo a manager.\n\nPer promuovere un membro del Piano di Gruppo a manager sul sito web:\n1. Vai al tuo Piano di Gruppo e poi passa alla scheda \"Informazioni sul gruppo\"\n2. Visualizza l’elenco dei membri e clicca sull’icona a puntini accanto al membro che vuoi promuovere\n3. Seleziona \"Assegna Manager\"",
|
||||
"faqQuestion62": "Come funzionano le attività assegnate?",
|
||||
"webFaqAnswer62": "I Piani di Gruppo offrono la possibilità di assegnare attività condivise ad altri membri del tuo Piano di Gruppo. Quando un'attività condivisa viene assegnata a un membro, agli altri membri viene impedito di completarla.\n\nPuoi anche assegnare un'attività a più membri. Ad esempio, se tutti devono lavarsi i denti, crea un'attività e assegnala a ciascun membro. Ogni membro potrà completare l'attività e ottenere i propri premi individuali. L'attività principale risulterà completata una volta che tutti l'avranno portata a termine.",
|
||||
"faqQuestion63": "Come funzionano le attività non assegnate?",
|
||||
"webFaqAnswer63": "Le attività non assegnate possono essere completate da qualsiasi membro. Per esempio, portare fuori la spazzatura. Chiunque porti fuori la spazzatura può completare l’attività non assegnata, che risulterà completata per tutti.",
|
||||
"faqQuestion64": "Come funziona il reset sincronizzato del giorno?",
|
||||
"webFaqAnswer64": "Le attività condivise si azzerano contemporaneamente per tutti, in modo da mantenere sincronizzata la bacheca delle attività condivise. Questo orario è visibile sulla bacheca condivisa ed è determinato dall’orario di inizio giornata impostato dal leader del Piano di Gruppo. Poiché le attività condivise si azzerano automaticamente, non avrai la possibilità di completare le Attività Giornaliere condivise non completate del giorno precedente quando effettuerai il check-in la mattina successiva.\n\nLe Attività Giornaliere condivise non causano danni se vengono saltate, ma perderanno colore per aiutare a visualizzare il progresso.",
|
||||
"faqQuestion65": "I Piani di Gruppo sono supportati dalle app mobili?",
|
||||
"faqQuestion66": "Qual è la differenza tra le attività condivise di un Piano di Gruppo e le attività di una Sfida?",
|
||||
"webFaqAnswer66": "Le bacheche delle attività condivise dei Piani di Gruppo sono più dinamiche rispetto alle Sfide, in quanto possono essere costantemente aggiornate e modificate. Le Sfide sono ottime se hai un insieme fisso di attività da assegnare a molte persone.\n\nI Piani di Gruppo sono una funzionalità a pagamento, mentre le Sfide sono disponibili gratuitamente per tutti.\n\nNelle Sfide non puoi assegnare attività specifiche, e non esiste un reset sincronizzato del giorno. In generale, le Sfide offrono meno controllo e interazione diretta.",
|
||||
"contentFaqTitle": "FAQ sulle Modifiche alla Pubblicazione dei Contenuti di Habitica",
|
||||
"contentReleaseChanges": "Modifiche alla Pubblicazione dei Contenuti",
|
||||
"contentQuestion0": "Cosa sta cambiando?",
|
||||
"faqQuestion69": "Cosa sono gli attributi del personaggio?",
|
||||
"webFaqAnswer69": "Ogni giocatore ha quattro attributi del personaggio che offrono diversi vantaggi:\n\n* Forza - Aumenta la probabilità di fare colpo critico e il danno inflitto durante il completamento delle attività. Aumenta inoltre il danno inflitto ai boss delle Missioni.\n* Intelligenza - Aumenta l'Esperienza guadagnata dalle missioni. Aumenta inoltre il limite massimo di Mana e la sua velocità di rigenerazione.\n* Costituzione - Riduce il danno subito a causa delle Attività Giornaliere mancate e delle Abitudini negative. Non riduce il danno inflitto dai boss delle Missioni.\n* Percezione - Aumenta la probabilità di ottenere oggetti, il limite giornaliero di oggetti ottenibili, i bonus per le serie di attività completate e l'Oro guadagnato completando le attività.\n\nLe statistiche possono essere aumentate tramite l'assegnazione di punti attributo, l'Equipaggiamento, le abilità della classe e salendo di livello. Inoltre, ogni due livelli si ottiene un punto bonus per tutte le statistiche, fino al livello 100.",
|
||||
"faqQuestion70": "Cosa sono i punti statistica?",
|
||||
"faqQuestion71": "Come funziona l'Allocazione Automatica?",
|
||||
"webFaqAnswer70": "I Punti Attributo consentono di aumentare le statistiche principali del tuo personaggio. Ogni volta che sali di livello (fino al livello 100) ne guadagni un punto, che puoi assegnare manualmente o automaticamente utilizzando la funzione dell'Allocazione Automatica. L'assegnazione degli attributi si sblocca con il Sistema delle Classi al livello 10.",
|
||||
"webFaqAnswer71": "La funzione “Allocazione Automatica” distribuisce automaticamente i punti statistica secondo uno dei seguenti metodi:\n\n* Distribuzione uniforme: assegna lo stesso numero di punti a ciascun attributo\n* Distribuzione in base alla classe: assegna più punti agli attributi importanti per la tua classe\n* Distribuzione in base alle attività svolte: assegna i punti in base alle categorie Forza, Intelligenza, Costituzione e Percezione associate alle attività che completi\n\nSe scegli di non utilizzare l'Allocazione Automatica, puoi assegnare manualmente i tuoi punti statistica dalla sezione Statistiche.",
|
||||
"contentFaqPara0": "Habitica offre tantissimi contenuti divertenti e coinvolgenti, e vogliamo che tutti possano goderseli appieno! Stanno arrivando delle novità per aiutare i nuovi giocatori a iniziare la loro collezione e per consentire a quelli più esperti di completarla!",
|
||||
"contentAnswer00": "Le Pozioni di Schiusa Magiche, gli Sfondi riproposti, i Set per abbonati precedenti e le Missioni per gli Animali verranno sostituiti secondo un calendario mensile prestabilito.",
|
||||
"contentFaqPara1": "Vorresti saperne di più? Continua a leggere qui sotto!",
|
||||
"contentAnswer01": "<strong>I Gran Galà sono stati prolungati</strong> e rimarranno attivi per tutta la stagione, insieme a tutti gli accessori della classe, le Personalizzazioni dell'Avatar e altri omaggi.",
|
||||
"sunsetFaqHeader1": "Quali servizi stanno per cessare?",
|
||||
"sunsetFaqList1": "L'obiettivo principale di Habitica è quello di fornire motivazione attraverso un'esperienza di gestione delle attività in una chiave ludica. Le Gilde e la Taverna sono utilizzate da una percentuale sproporzionatamente bassa della nostra utenza. La maggior parte dei giocatori ricorre a servizi esterni pensati principalmente per l'interazione sociale e progettati e gestiti appositamente per tali scopi.",
|
||||
"sunsetFaqList2": "Le nuove leggi sulla sicurezza online richiedono un livello di controllo attivo dei contenuti negli spazi pubblici che Habitica non ha potuto adeguatamente garantire in passato. Investire nelle funzionalità richieste da queste nuove normative comporterebbe il reindirizzamento delle nostre limitate risorse verso aspetti di Habitica che la stragrande maggioranza dei giocatori non utilizza mai.",
|
||||
"sunsetFaqList3": "Per noi è importante continuare a garantire l'accesso ad Habitica alla nostra utenza internazionale che è in continua crescita. L'eliminazione di questi servizi ci consente di perseguire tale obiettivo senza dover prendere in considerazione la possibilità di limitare l'accesso in quelle regioni in cui è richiesto un controllo dei contenuti più rigoroso di quello che siamo in grado di garantire.",
|
||||
"sunsetFaqPara7": "Le Squadre e i Piani di Gruppo rimarranno attivi e manterranno le loro chat. Potrai inoltre continuare a inviare messaggi privati.",
|
||||
"sunsetFaqHeader4": "Dove devo andare per mettere in pausa le mie Attività Giornaliere?",
|
||||
"sunsetFaqPara8": "Questa funzione è stata spostata nella sezione Impostazioni. “Sospendi Danni” non subirà alcuna modifica con la cessazione dei servizi della Taverna e della Gilda.",
|
||||
"sunsetFaqHeader5": "Come posso accedere al mio Piano di Gruppo se si tratta di una Gilda potenziata?",
|
||||
"sunsetFaqHeader7": "Come si possono cercare nuovi membri per la propria Squadra?",
|
||||
"sunsetFaqPara11": "La nostra nuova funzione Cerca una Squadra è ora disponibile. La maggior parte dei giocatori che cercano una squadra riceve un invito nel giro di pochi minuti! Il team sta lavorando per aggiungere il supporto a ulteriori piattaforme e apportare ulteriori miglioramenti a questa funzione in futuro. Per ulteriori informazioni su come cercare Squadre e membri per una Squadra, consulta le nostre FAQ.",
|
||||
"sunsetFaqHeader8": "In che modo ciò influisce sui collaboratori di Habitica?",
|
||||
"sunsetFaqPara12": "In quanto progetto open-source, accogliamo con favore e incoraggiamo ogni tipo di contributo. Per dimostrare la nostra gratitudine, invieremo il Set di Equipaggiamento Eroico a tutti coloro che, al <strong>1° agosto 2023</strong>, avranno raggiunto un livello di contributore. Quando i servizi della Taverna e della Gilda termineranno, ci saranno alcune modifiche anche alle modalità di contribuzione. Di seguito potete trovare maggiori dettagli sul piano previsto per ciascuna tipologia.",
|
||||
"sunsetFaqPara13": "<strong>Fabbri</strong><br />Continuiamo ad accogliere con favore il contributo della Community open-source tramite GitHub e continueremo ad assegnare livelli di riconoscimento per i contributi idonei. La collaborazione e il dibattito sui Fabbri si sono svolti e si svolgeranno soprattutto su GitHub.",
|
||||
"sunsetFaqPara14": "<strong>Linguisti</strong><br />Continuiamo ad accogliere con favore l'aiuto nella traduzione delle app e del sito web e continueremo ad assegnare gradi di contributore per i contributi idonei. Tuttavia, il metodo con cui accettiamo le traduzioni cambierà. Vorremmo concentrare le nostre risorse sul supporto di una selezione mirata di lingue su tutte le piattaforme. Per farlo, ridurremo il numero di lingue disponibili per la traduzione. Le lingue precedentemente incomplete saranno archiviate su GitHub. Speriamo che questo cambiamento renda l'esperienza multipiattaforma di Habitica più coerente. Potete leggere le nostre linee guida aggiornate sulla procedura di traduzione sul nostro <a href='https://translate.habitica.com/projects/habitica/#information'>sito web dedicato alle traduzioni</a>.",
|
||||
"sunsetFaqPara15": "<strong>Sfidanti</strong><br />Il team vi incoraggia a continuare a creare Sfide di alta qualità. Vorremmo esplorare nuovi modi per promuovere la visibilità delle Sfide sia all'interno che all'esterno dell'app.",
|
||||
"sunsetFaqList8": "La nostra sezione <a href='https://habitica.com/static/faq'>FAQ</a> è un'ottima risorsa ed è accessibile dal menu Aiuto o dalla sezione Assistenza sui dispositivi mobili. Stiamo lavorando alla creazione di una sezione FAQ più completa e migliorata per aiutare i giocatori in futuro.",
|
||||
"sunsetFaqList9": "Questo <a href='https://habitica.wordpress.com/beginning-adventurers-guide/'>post sul blog</a> offre inoltre una guida utile per i nuovi giocatori.",
|
||||
"sunsetFaqList10": "I giocatori sono inoltre invitati a inviare un'email a <a href='mailto:admin@habitica.com'>admin@habitica.com</a> per qualsiasi domanda a cui non riescano a trovare risposta nei link sopra indicati.",
|
||||
"sunsetFaqHeader11": "In che modo ciò influisce sulle Linee Guida della Community e sui Termini di Servizio di Habitica?",
|
||||
"sunsetFaqPara20": "Le Linee Guida della Community di Habitica saranno aggiornate al momento della cessazione dei servizi della Taverna e delle Gilde. Tali linee guida rifletteranno il fatto che le regole di condotta della Community riguardano ora i profili dei giocatori, le Sfide e i messaggi negli spazi privati. I nostri Termini di Servizio si sono sempre applicati sia agli spazi pubblici che a quelli privati e non richiedono un aggiornamento immediato in relazione a questa modifica.",
|
||||
"contactAdmin": "Contatta <a href='mailto:admin@habitica.com'>admin@habitica.com</a>",
|
||||
"sunsetFaqTitle": "FAQ sulla Cessazione del Servizio Taverna e Gilda di Habitica",
|
||||
"sunsetFaqPara1": "A causa di una serie di fattori, tra cui i cambiamenti nel modo in cui la nostra Community interagisce con Habitica e all'introduzione delle nuove norme sui contenuti, abbiamo deciso a malincuore di sospendere i servizi della Taverna e delle Gilde a partire dall'<strong>8 agosto 2023</strong>.",
|
||||
"sunsetFaqPara3": "Abbiamo preso questa decisione per poter concentrare meglio le nostre risorse sugli aspetti di Habitica su cui i giocatori fanno maggiormente affidamento, senza compromettere l'accesso a nessuno.",
|
||||
"sunsetFaqPara4": "Per celebrare i momenti che abbiamo condiviso, regaleremo a tutti un Animale Domestico Veterano, man mano che ci avviciniamo a questa nuova era. Ai nostri fantastici collaboratori invieremo inoltre un set speciale di equipaggiamento per commemorare tutto il loro duro lavoro nelle Community di Habitica.",
|
||||
"sunsetFaqPara5": "Se desideri saperne di più sulle novità in arrivo, puoi leggere i dettagli qui di seguito.",
|
||||
"sunsetFaqPara9": "<p><strong>Browser</strong>: clicca sulla voce “Gruppo” nella barra superiore.</p><p><strong>Android:</strong> Tocca il tuo nome nella parte superiore dello schermo mentre visualizzi un elenco di attività per passare alle attività condivise. Per accedere alla chat, tocca l'icona della chat nell'intestazione di quella schermata.</p><p><strong>iOS</strong>: tocca il nome del tuo Piano di gruppo nel menu.</p>",
|
||||
"sunsetFaqHeader6": "I giocatori potranno recuperare la chat della loro Gilda una volta terminato il servizio?",
|
||||
"sunsetFaqPara10": "Una volta terminati i servizi, i giocatori non potranno più recuperare i dati delle chat della Taverna e delle Gilde.",
|
||||
"sunsetFaqPara16": "<strong>Figure Mondane</strong><br />Questo tipo di contributo cesserà con la chiusura della Taverna e della Gilda. Siamo estremamente grati per il lavoro svolto dai nostri giocatori, sempre cordiali e disponibili, nel rispondere alle domande nelle nostre chat.",
|
||||
"sunsetFaqHeader9": "Quali saranno le conseguenze per le Sfide?",
|
||||
"anotherQuestion": "Hai altre domande?",
|
||||
"sunsetFaqPara2": "L'obiettivo principale di Habitica è, ed è sempre stato, quello di offrire un'esperienza di gestione delle attività in una chiave ludica. La Taverna e le Gilde hanno contribuito a motivare i giocatori, aiutandoli a trovare altre persone che avessero obiettivi in comune. Sono stati creati così dei spazi meravigliosi e abbiamo avuto la possibilità di vedere la nostra Community prosperare grazie a discussioni costruttive. Con il passare degli anni, tuttavia, abbiamo notato dei cambiamenti nel modo in cui i giocatori utilizzassero e facessero affidamento ad Habitica. Le Squadre hanno riscosso sì un grande successo, mentre le Gilde e gli spazi pubblici sono stati utilizzati da una parte sempre più ridotta della nostra utenza. In un panorama Internet in continua evoluzione, le risorse necessarie per mantenere questi spazi sono diventate troppo sproporzionate rispetto al numero di persone che vi partecipavano effettivamente.",
|
||||
"sunsetFaqPara6": "Il servizio relativo alla Taverna e alle Gilde pubbliche e private sta per terminare e questi spazi saranno rimossi da Habitica l'<strong>8 agosto 2023</strong>.",
|
||||
"sunsetFaqHeader2": "Perché i servizi della Taverna e della Gilda stanno per chiudere?",
|
||||
"sunsetFaqHeader3": "Potrò continuare a conversare con i membri della mia Squadra o del mio Piano di Gruppo?",
|
||||
"sunsetFaqHeader10": "Dove possono andare i giocatori se hanno domande su come usare Habitica?",
|
||||
"sunsetFaqPara17": "<strong>Compagni</strong><br />Gli script e i componenti aggiuntivi sono utili solo a una parte sempre più ristretta della nostra utenza, poiché le app mobili stanno diventando sempre più l'unico modo in cui la maggior parte degli utenti accede a Habitica. I contributori che desiderano creare strumenti di terze parti per personalizzare la propria esperienza su Habitica possono continuare a farlo, ma non assegneremo più livelli di tipo Comrade, poiché ci concentreremo sui contributi che migliorano Habitica in modo accessibile a tutta la nostra utenza.",
|
||||
"sunsetFaqPara18": "<strong>Artigiani</strong><br />Stiamo interrompendo i contributi degli artigiani. La maggior parte della produzione artistica è già stata internalizzata per stare al passo con le nostre pubblicazioni. Siamo profondamente grati per le fantastiche opere d'arte realizzate nel corso degli anni dalla nostra Community di collaboratori.",
|
||||
"sunsetFaqPara19": "<strong>Maghi delle Wiki</strong><br />La Wiki di Habitica è uno strumento straordinario creato dai giocatori per i giocatori che ha aiutato moltissime persone. Continuiamo a sostenere questa iniziativa, ma non monitoreremo più né offriremo livelli per la modifica della Wiki, poiché stiamo concentrando i nostri sforzi sui contributi dei Linguisti, dei Fabbri e dei Sfidanti all'interno di Habitica.",
|
||||
"sunsetFaqList4": "Le Sfide pubbliche continueranno a essere disponibili su Habitica e saranno accessibili dalla sezione “Sfide”.",
|
||||
"sunsetFaqList5": "Le Sfide associate alle Squadre e ai Piani di Gruppo rimarranno attive e non subiranno alcuna modifica con la cessazione dei servizi della Taverna e delle Gilde.",
|
||||
"sunsetFaqList6": "Le Sfide che sono associate alle Gilde rimarranno accessibili agli attuali partecipanti dall'elenco delle loro Sfide, ma non saranno visibili nell'elenco pubblico per motivi di privacy. Non sarà possibile creare nuove Sfide basate sulle Gilde.",
|
||||
"sunsetFaqList7": "Attualmente molte sfide prevedono attività che richiedono la pubblicazione di messaggi nelle chat pubbliche di Habitica. Gli autori di tali Sfide possono modificare le attività o spostare il requisito della chat su un servizio esterno.",
|
||||
"sunsetFaqHeader12": "Cosa succederà alle Gemme della Banca della Gilda?",
|
||||
"sunsetFaqPara21": "Le Gemme presenti nella Banca della Gilda saranno rimborsate al leader della Gilda l'8 agosto, al termine dei servizi della Gilda.",
|
||||
"contentQuestion1": "Perché Habitica sta apportando questi cambiamenti?",
|
||||
"contentAnswer12": "I giocatori potranno completare più facilmente le loro collezioni grazie ad un programma di rilascio degli oggetti che sia più prevedibile.",
|
||||
"contentAnswer410": "Restate sintonizzati per scoprirlo! Molte novità sono state altamente richieste e verranno lanciate nel corso dell'anno.",
|
||||
"contentQuestion5": "Cos'è il Negozio delle Personalizzazioni?",
|
||||
"contentAnswer50": "Il Negozio delle Personalizzazioni è il nuovo spazio dedicato a tutti gli oggetti acquistabili per la Personalizzazione dell'Avatar, tra cui:",
|
||||
"contentAnswer501": "Pelli",
|
||||
"contentAnswer53": "Il Negozio delle Personalizzazioni si trova insieme agli altri negozi nel Menu.",
|
||||
"contentQuestion6": "Cosa succederà agli altri eventi stagionali come l'Habitoween, il Giorno del Pesce d'Aprile e il Compleanno?",
|
||||
"contentAnswer70": "Gli Sfondi, le Missioni, gli Animali Domestici e le Cavalcature saranno disponibili nel Negozio dei Viaggiatori del Tempo per tutto l'anno.",
|
||||
"contentAnswer22": "Le Pozioni di Schiusa Magiche non saranno più legate ai Galà, ma seguiranno invece un proprio calendario di rilascio mensile ispirato ai festeggiamenti in corso.",
|
||||
"contentQuestion3": "In che modo cambierà il calendario di pubblicazione dei contenuti?",
|
||||
"contentAnswer300": "<strong>Il primo giorno di ogni mese:</strong> Viene pubblicato il nuovo set per gli abbonati. I set per gli abbonati disponibili nel negozio Viaggiatori del Tempo vengono aggiornati periodicamente.",
|
||||
"contentAnswer301": "<strong>Il 7 di ogni mese:</strong> Vengono pubblicati nuovi oggetti per lo Scrigno Incantato e un nuovo Sfondo. Gli Sfondi disponibili nel Negozio delle Personalizzazioni cambiano periodicamente.",
|
||||
"contentAnswer303": "<strong>Il 21 di ogni mese:</strong> Le Pozioni di Schiusa Magiche disponibili nel Mercato cambiano periodicamente.",
|
||||
"contentQuestion4": "Quali saranno i nuovi contenuti in arrivo?",
|
||||
"contentAnswer400": "Missioni Animali",
|
||||
"contentAnswer403": "Colori Estivi dei Capelli",
|
||||
"contentAnswer41": "Quali saranno le novità?",
|
||||
"contentAnswer03": "Sfondi, Colori e Stili dei Capelli, Pelli, Orecchie Animali, Code Animali e Magliette saranno ora acquistabili nel nuovissimo negozio <strong>Personalizzazioni!</strong>",
|
||||
"contentAnswer10": "Habitica esiste dal 2013 (wow!) e nel corso degli anni abbiamo rilasciato migliaia di oggetti che i giocatori possono collezionare. Tutto questo può sembrare un po' opprimente, soprattutto per i nuovi giocatori. Vogliamo essere sicuri di mettere in evidenza tutto ciò che abbiamo da offrire e che gli eccellenti oggetti rilasciati nelle prime fasi della nostra storia non vengano trascurati.",
|
||||
"contentAnswer11": "Quando i nuovi giocatori si uniscono a noi fra un Gran Galà all'altro, spesso non sono a conoscenza di questi eventi, perdendo una parte del divertimento. Vogliamo essere certi che tutti i nuovi giocatori possano partecipare ai nostri festeggiamenti stagionali, indipendentemente dal momento in cui decidono di iniziare la loro avventura.",
|
||||
"contentAnswer30": "Ogni mese i negozi rinnoveranno la selezione dei propri articoli. Ciò contribuirà a mantenere la quantità dei contenuti nei negozi gestibile e di facile consultazione. Il nuovo programma offrirà ogni mese nuovi articoli da scoprire per i giocatori alle prime armi, garantendo al contempo una pianificazione prevedibile per i collezionisti più esperti.",
|
||||
"contentAnswer40": "Per arricchire questo nuovo programma, ci siamo dati da fare per creare nuovi articoli in diverse categorie, tra cui:",
|
||||
"contentAnswer502": "Colori e Stili dei Capelli",
|
||||
"contentAnswer51": "Le personalizzazioni che possiedi (sia quelle standard che quelle acquistate) saranno accessibili dall'interfaccia di Personalizzazione dell'Avatar.",
|
||||
"contentAnswer52": "Ci auguriamo che questa modifica aiuti i giocatori a orientarsi tra le personalizzazioni di cui dispongono quando modificano l'aspetto del proprio avatar, mantenendo al contempo l'esperienza di acquisto a cui sono abituati per gli altri oggetti acquistabili.",
|
||||
"contentAnswer60": "Tutti gli altri eventi in corso proseguiranno come di consueto! Tutti continueranno a ricevere i premi speciali e le pietanze a tema come avviene ora.",
|
||||
"contentQuestion7": "E gli altri articoli disponibili nel negozio Viaggiatori del Tempo, oltre ai Set per Abbonati delle edizioni precedenti?",
|
||||
"contentAnswer02": "Nuove <strong>Missioni per gli Animali Domestici, Missioni per le Pozioni di Schiusa Magiche e Pozioni di Schiusa Magiche</strong> saranno disponibili per completare questo nuovo programma!",
|
||||
"contentQuestion2": "Come stanno cambiando i Gran Galà?",
|
||||
"contentAnswer200": "<strong>Summer Splash</strong>: dal 21 giugno al 20 settembre",
|
||||
"contentAnswer302": "<strong>Il 14 di ogni mese:</strong> Le Missioni per gli Animali Domestici, le Missioni per le Pozioni e i Pacchetti di Missioni disponibili nel Negozio delle Missioni cambiano periodicamente.",
|
||||
"contentAnswer401": "Missioni per la Pozione di Schiusa Magica",
|
||||
"contentAnswer402": "Pozioni di Schiusa Magiche",
|
||||
"contentAnswer202": "<strong>Paese delle Meraviglie Invernale</strong>: dal 21 dicembre al 20 marzo",
|
||||
"contentAnswer21": "Tutti i premi del Galà (Equipaggiamento di Classe, Pelli e Colori dei Capelli, Oggetti di Trasformazione, Missioni Stagionali) saranno resi disponibili all'inizio del Galà e rimarranno accessibili per tutta la durata dell'evento.",
|
||||
"contentAnswer20": "Una volta che saranno entrati in vigore i cambiamenti, ci sarà sempre un Gran Galà in programma ogni giorno dell'anno.",
|
||||
"contentAnswer201": "<strong>Festival d'Autunno</strong>: dal 21 settembre al 20 dicembre",
|
||||
"contentAnswer203": "<strong>Festa di Primavera</strong>: dal 21 marzo al 20 giugno",
|
||||
"contentAnswer62": "Le Pozioni di Schiusa Magiche di San Valentino sono state inserite nel programma mensile.",
|
||||
"contentAnswer63": "Gli Animali Stravaganti rimarranno disponibili per gran parte del mese di Aprile.",
|
||||
"contentAnswer61": "I biglietti di San Valentino e di Capodanno saranno disponibili in date prestabilite.",
|
||||
"contentAnswer71": "Restate sintonizzati per ricevere ulteriori aggiornamenti sui miglioramenti previsti per il Negozio dei Viaggiatori del Tempo.",
|
||||
"subscriptionBenefitsAdjustments": "Modifiche ai Vantaggi Riservati agli Abbonati",
|
||||
"contentFaqPara3": "Se hai domande a cui le risposte sopra riportate non danno una risposta, puoi sempre contattare il nostro team all'indirizzo <%= mailto %>! Siamo entusiasti di questo nuovo calendario di rilascio dei contenuti e non vediamo l'ora di realizzare altri progetti in futuro per rendere Habitica un posto migliore adatto a tutti i giocatori.",
|
||||
"subscriptionBenefitsFaqTitle": "FAQ sulle Modifiche ai Vantaggi Riservati agli Abbonati",
|
||||
"subscriptionHeading0": "Modifiche alle Clessidre Mistiche",
|
||||
"subscriptionDetail002": "Gli abbonati non dovranno più attendere il mese successivo al pagamento ricorrente per ricevere le Clessidre Mistiche.",
|
||||
"subscriptionDetail010": "Questo si aggiungerà alla Clessidra Mistica mensile che tutti i nuovi abbonati riceveranno dopo l'acquisto iniziale.",
|
||||
"subscriptionDetail20": "Con il sistema attuale potrebbe risultare difficile capire quante Clessidre Mistiche si riceveranno e in quale momento.",
|
||||
"subscriptionPara1": "Per facilitare il passaggio al nuovo programma, gli abbonati attuali riceveranno alcuni omaggi speciali durante il giorno di lancio. Desideriamo ringraziarvi di cuore per il vostro costante sostegno durante questo cambiamento!",
|
||||
"subscriptionDetail32": "I giocatori con un abbonamento ricorrente di 12 mesi riceveranno il bonus di 12 Clessidre Mistiche sopra indicato e 20 Gemme.",
|
||||
"subscriptionDetail480": "Queste modifiche riguardano esclusivamente le Clessidre Mistiche e le Gemme degli abbonati. Tutti gli altri vantaggi rimarranno gli stessi.",
|
||||
"subscriptionPara2": "Se hai domande a cui le risposte sopra riportate non danno una risposta, puoi sempre contattare il nostro team all'indirizzo <%= mailto %>.",
|
||||
"subscriptionDetail011": "I giocatori che hanno un abbonamento ricorrente attivo di 12 mesi riceveranno questo bonus il giorno in cui tali modifiche entreranno in vigore.",
|
||||
"subscriptionDetail012": "Questo bonus non si applica agli abbonamenti ricevuti in regalo.",
|
||||
"subscriptionDetail21": "Era noto che i quattro livelli di abbonamento causassero complicazioni in caso di passaggio a un livello superiore o inferiore.",
|
||||
"subscriptionDetail23": "Con una Clessidra Mistica al mese, gli abbonati possono accedere agli articoli a rotazione del Negozio dei Viaggiatori del Tempo.",
|
||||
"subscriptionDetail33": "Per ricevere questi premi, il tuo account deve avere un abbonamento ricorrente attivo prima del 19 di Novembre.",
|
||||
"subscriptionDetail001": "Tutti gli abbonati riceveranno le Clessidre Mistiche secondo lo stesso calendario, in linea con il calendario di rilascio dei Set di Equipaggiamento Misteriosi mensili.",
|
||||
"subscriptionDetail430": "La cancellazione di un abbonamento ricorrente determinerà una data di scadenza dei tuoi vantaggi, ma potrai comunque usufruire di tutti i benefici dell'abbonamento fino a quella data. Ciò significa che continuerai a ricevere le Clessidre Mistiche mensili e gli aumenti del limite delle Gemme all'inizio di ogni mese in cui avrai accesso a tali vantaggi.",
|
||||
"subscriptionDetail451": "Ogni abbonamento regalato andrà ad aggiungersi al numero di mesi in cui il giocatore potrà usufruire dei vantaggi dell'abbonamento, consentendogli di continuare a ricevere ulteriori Clessidre Mistiche e aumenti del limite massimo di Gemme ogni mese che passa.",
|
||||
"subscriptionDetail003": "Tutti i nuovi abbonati riceveranno 1 Clessidra Mistica subito dopo l'acquisto. Quest'ultima conterà come Clessidra Mistica del mese in corso.",
|
||||
"subscriptionDetail01": "I nuovi abbonamenti ricorrenti di 12 mesi avranno diritto, al momento dell'acquisto, a un bonus iniziale di una tantum di 12 Clessidre Mistiche in più.",
|
||||
"subscriptionHeading1": "Modifiche alle Gemme degli Abbonati",
|
||||
"subscriptionDetail10": "La quantità di Gemme che gli abbonati possono acquistare con l'Oro nel Mercato aumenterà di 2 ogni mese in cui godranno dei vantaggi, fino a raggiungere un massimo di 50.",
|
||||
"subscriptionDetail102": "I nuovi abbonamenti di 12 mesi inizieranno immediatamente con il numero massimo di Gemme al mese, ovvero 50 Gemme invece delle precedenti 45.",
|
||||
"subscriptionDetail100": "I nuovi abbonamenti da 1, 3 e 6 mesi partiranno ora da 24 Gemme al mese e tale valore aumenterà ogni mese in cui saranno attivi i vantaggi.",
|
||||
"subscriptionDetail101": "Per tutti gli abbonati che attualmente dispongono di un numero dispari di Gemme al mese, il limite massimo di Gemme verrà arrotondato per eccesso al numero pari più vicino.",
|
||||
"subscriptionDetail11": "La quantità di Gemme che puoi acquistare ogni mese con l'Oro non verrà più azzerata in caso di scadenza dell'abbonamento.",
|
||||
"subscriptionDetail110": "Se aumenti il numero di Gemme che puoi acquistare ogni mese e poi annulli l'abbonamento, potrai riprendere con lo stesso numero in qualsiasi momento in futuro, anche se acquisti un piano di abbonamento inferiore.",
|
||||
"subscriptionHeading2": "Perché stiamo apportando queste modifiche?",
|
||||
"subscriptionDetail22": "Gli abbonamenti in regalo e quelli ricorrenti presentavano delle condizioni e delle regole in contrasto tra loro, che volevamo quindi semplificare.",
|
||||
"subscriptionDetail24": "Volevamo che gli abbonati avessero più di quattro occasioni all'anno per collezionare articoli dal Negozio dei Viaggiatori del Tempo.",
|
||||
"subscriptionDetail25": "Siamo consapevoli che la situazione finanziaria di ognuno possa cambiare e non volevamo penalizzare gli abbonati una volta che sono scaduti, privandoli dei vantaggi che si erano guadagnati nel tempo.",
|
||||
"subscriptionHeading3": "Premi per il giorno di lancio",
|
||||
"subscriptionDetail30": "I giocatori con abbonamenti mensili ricorrenti o abbonamenti al Piano di Gruppo riceveranno 2 Clessidre Mistiche e 20 Gemme.",
|
||||
"subscriptionDetail31": "I giocatori con abbonamenti ricorrenti da 3 o 6 mesi riceveranno 4 Clessidre Mistiche e 20 Gemme.",
|
||||
"subscriptionDetail40": "Sono un abbonato: quando riceverò il mio primo aumento periodico del limite di Clessidre Mistiche e di Gemme in base al nuovo calendario?",
|
||||
"subscriptionDetail400": "Gli abbonati attuali riceveranno la loro prima Clessidra Mistica e +2 Gemme, che andranno ad aggiungersi al limite mensile, al primo accesso del mese successivo dopo l'uscita. Ciò significa che, se avete già effettuato l'accesso a Novembre, il vostro primo aumento periodico avverrà a Dicembre.",
|
||||
"subscriptionDetail41": "I prezzi degli abbonamenti subiranno dei cambiamenti quando l'aggiornamento verrà rilasciato?",
|
||||
"subscriptionDetail410": "Queste modifiche non incideranno sul prezzo attuale degli abbonamenti.",
|
||||
"subscriptionDetail42": "Se non accedo al sito per un mese pur avendo un abbonamento, perderò quei vantaggi?",
|
||||
"subscriptionDetail43": "Se sottoscrivo un abbonamento ricorrente e poi lo annullo, potrò comunque usufruire dei suoi vantaggi?",
|
||||
"subscriptionDetail420": "Proprio come per i Set di Equipaggiamento Misteriosi, non perderai alcuna Clessidra Mistica e nessun aumento del limite delle Gemme se non accedi al gioco mentre sei abbonato. Al tuo prossimo accesso, riceverai tutti i benefici maturati per ogni mese di abbonamento.",
|
||||
"subscriptionDetail44": "Sono un abbonato attivo: quante Gemme avrò a disposizione nel Negozio ogni mese a seguito della modifica?",
|
||||
"subscriptionDetail4400": "Se al momento hai sbloccato <%= initialNumber %> Gemme al mese, il tuo limite verrà impostato a <%= roundedNumber %>.",
|
||||
"subscriptionDetail440": "A partire dal giorno in cui queste modifiche entreranno in vigore, agli abbonati attuali con un numero dispari di Gemme al mese verranno applicati i seguenti adeguamenti al loro limite massimo di Gemme:",
|
||||
"subscriptionDetail45": "Acquistando altri abbonamenti in regalo otterrò più Clessidre Mistiche o raggiungerò più velocemente il limite massimo di Gemme?",
|
||||
"subscriptionDetail450": "Poiché le Clessidre mistiche e l'aumento del limite delle Gemme sono ora un vantaggio mensile, l'acquisto di più abbonamenti in regalo non comporterà ulteriori vantaggi immediati.",
|
||||
"subscriptionDetail46": "Se in passato avevo un abbonamento, posso sbloccare il mio vecchio limite di Gemme se mi abbono di nuovo adesso?",
|
||||
"subscriptionDetail460": "Dato che in passato azzeravamo il numero di Gemme acquistabili ogni mese una volta esauriti i vantaggi dell'abbonamento, con questo nuovo sistema i giocatori i cui vantaggi sono scaduti dovranno ricominciare da zero.",
|
||||
"subscriptionDetail47": "Ho un abbonamento al Piano di Gruppo: in che modo questo mi riguarda?",
|
||||
"subscriptionDetail48": "Ci saranno modifiche ad altri vantaggi dell'abbonamento, come i Set di Equipaggiamento Misteriosi?",
|
||||
"subscriptionDetail470": "I vantaggi riservati agli abbonati al Piano di Gruppo saranno gli stessi di quelli previsti per un abbonamento ricorrente di 1 mese. All'inizio di ogni mese riceverai una Clessidra Mistica e il numero di Gemme che potrai acquistare ogni mese nel Mercato aumenterà di 2 fino a raggiungere quota 50.",
|
||||
"subscriptionPara3": "Ci auguriamo che questo nuovo calendario sia più prevedibile, che vi consenta di accedere più facilmente alla straordinaria selezione di articoli del Negozio dei Viaggiatori del Tempo e vi dia ancora più motivazione per portare avanti le vostre attività ogni mese!",
|
||||
"subscriptionDetail00": "Tutti gli abbonati, compresi quelli con abbonamenti avuti in omaggio, riceveranno 1 Clessidra Mistica all'inizio di ogni mese in cui godono dei vantaggi dell'abbonamento.",
|
||||
"subscriptionDetail000": "Con un abbonamento di 12 mesi riceverai 12 Clessidre Mistiche invece delle precedenti 4.",
|
||||
"subscriptionPara0": "Stiamo migliorando gli abbonamenti ad Habitica come mai prima d'ora, con un compenso ancora più grande di Clessidre Mistiche e Gemme! Con queste modifiche capirai molto più facilmente i vantaggi del tuo abbonamento."
|
||||
}
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
"companyContribute": "Contribuire ad Habitica",
|
||||
"companyDonate": "Fai una donazione ad Habitica",
|
||||
"forgotPassword": "Password dimenticata?",
|
||||
"emailNewPass": "Ricevi per e-mail il link per reimpostare la password",
|
||||
"forgotPasswordSteps": "Inserisci il tuo nome utente o l'indirizzo e-mail che hai usato per registrare il tuo account Habitica.",
|
||||
"emailNewPass": "Ricevi per email il link per reimpostare la password",
|
||||
"forgotPasswordSteps": "Inserisci il tuo nome utente o l'indirizzo email che hai usato per registrare il tuo account Habitica.",
|
||||
"sendLink": "Invia link",
|
||||
"featuredIn": "Apparso su",
|
||||
"footerDevs": "Sviluppatori",
|
||||
@@ -26,26 +26,26 @@
|
||||
"logout": "Esci",
|
||||
"marketing1Header": "Migliora le tue abitudini un livello alla volta!",
|
||||
"marketing1Lead1Title": "Rendi la tua vita un gioco",
|
||||
"marketing1Lead1": "Habitica è un videogioco il cui obiettivo è aiutarti a migliorare le tue abitudini nella vita reale. Rende le tue giornate più stimolanti trasformando tutti i tuoi impegni (Abitudini, Attività Giornaliere, Cose da Fare) in piccoli mostri che devi sconfiggere. Più diventi bravo in questo, maggiori saranno i tuoi progressi nel gioco. Se trascuri qualcosa nella vita reale, il tuo personaggio ne risente nel gioco.",
|
||||
"marketing1Lead2Title": "Ottieni oggetti straordinari",
|
||||
"marketing1Lead1": "Habitica è l'applicazione perfetta per chiunque abbia difficoltà a rispettare una lista di cose da fare. Utilizziamo meccaniche di gioco familiari, offrendoti ricompense di Oro, Esperienza e oggetti, per aiutarti a sentirti produttivo e aumentare il tuo senso di soddisfazione quando porti a termine le tue attività. Più sei bravo a svolgerle, più avanzi nel gioco.",
|
||||
"marketing1Lead2Title": "Preparati con stile",
|
||||
"marketing1Lead2": "Ottieni spade, armature, e molto altro con le Monete d'oro che ottieni completando Attività. Con centinaia di oggetti da trovare e tra cui scegliere, non sarai mai a corto di combinazioni da provare. Migliora i tuoi attributi, il tuo stile, o entrambi! ",
|
||||
"marketing1Lead3Title": "Ricevi ricompense per il tuo impegno",
|
||||
"marketing1Lead3": "Certe persone sono motivate dall'azzardo: un sistema chiamato \"ricompense stocastiche\". Con Habitica è possibile ogni tipo di rafforzamento e di punizione: positivi, negativi, prevedibili ed aleatori.",
|
||||
"marketing2Header": "Competi con gli amici",
|
||||
"marketing1Lead3": "Avere qualcosa che attendi con ansia può fare la differenza per portare a termine un'attività o trascinartela per intere settimane. Quando la vita non ti ricompensa, allora ci pensa Habitica! Sarai ricompensato per ogni attività completata, ma le sorprese ti aspettano dietro ogni angolo: quindi continua a fare progressi! ",
|
||||
"marketing2Header": "Collabora con gli amici",
|
||||
"marketing2Lead1Title": "Produttività Sociale",
|
||||
"marketing2Lead1": "Puoi giocare ad Habitica da solo, ma il bello viene quando inizi a collaborare, competere e condividere le tue responsabilità. La parte più importante di un programma di automiglioramento è la responsabilità sociale, e quale ambiente migliore per la responsabilità e la competizione se non un videogioco?",
|
||||
"marketing2Lead1": "Trova una nuova fonte di motivazione collaborando, gareggiando e interagendo con gli altri! Habitica è stata pensata per sfruttare l'aspetto più efficace di qualsiasi programma di crescita personale: la responsabilità sociale.",
|
||||
"marketing2Lead2Title": "Combatti i mostri nelle Missioni",
|
||||
"marketing2Lead2": "Cosa sarebbe un gioco di ruolo senza delle battaglie? Combatti i mostri insieme alla tua squadra. I mostri sono la \"modalità super responsabilità\" - il giorno che salti palestra è il giorno che il mostro danneggia *tutti!*",
|
||||
"marketing2Lead2": "Affronta una delle nostre centinaia di Missioni con una Squadra di amici per lanciarti nella mischia. I mostri delle Missioni metteranno alla prova la tua responsabilità fino al limite. Se ti dimentichi di usare il filo interdentale, tutti ne pagheranno le conseguenze!",
|
||||
"marketing2Lead3Title": "Sfida gli altri",
|
||||
"marketing2Lead3": "Le sfide ti permettono di competere con i tuoi amici e utenti di tutto il mondo. Al termine della sfida, chi ha dato il meglio di sé riceve dei premi speciali.",
|
||||
"marketing2Lead3": "Partecipa alle Sfide realizzate dalla nostra Community per ricevere elenchi di attività selezionati su misura per i tuoi interessi e i tuoi obiettivi. Dai il meglio di te per aggiudicarti il premio di Gemme riservato al vincitore!",
|
||||
"marketing3Header": "Altri modi per usare Habitca",
|
||||
"marketing3Lead1": "Le app per **iPhone e Android** ti permettono di gestire le tue attività in qualsiasi momento. Sappiamo che accedere al sito web solamente per premere dei bottoni può essere noioso.",
|
||||
"marketing3Lead1": "Puoi scaricare Habitica sul tuo dispositivo Android o iOS per spuntare le attività ovunque ti trovi. Scopri le nostre app pluripremiate per un approccio innovativo al modo di portare a termine le cose.",
|
||||
"marketing3Lead2Title": "Comunità Open-Source",
|
||||
"marketing3Lead2": "Altri **Strumenti di Terze Parti** legano Habitica a vari aspetti della tua vita. Le nostre API provvedono integrazione per cose come l'[Estensione per Chrome](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=it), con la quale perdi punti navigando siti web che ti distraggono e guadagni punti navigando su siti produttivi. [Più informazioni qui (in inglese)](https://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
|
||||
"marketing4Header": "Utilizzo Organizzativo",
|
||||
"marketing4Lead1": "L'educazione è uno dei settori in cui le meccaniche dei giochi sono più efficaci. Sappiamo tutti come al giorno d'oggi gli studenti siano attaccati a videogiochi e cellulari, sfruttiamo questo potere! Mettete alla prova i vostri studenti organizzando competizioni amichevoli. Ricompensate i comportamenti positivi con premi importanti. La loro disciplina e i loro voti miglioreranno visibilmente.",
|
||||
"marketing3Lead2": "Siamo orgogliosi di essere un progetto open source che accoglie con favore i contributi della nostra appassionata community. Personalizza Habitica in base alle tue esigenze o contribuisci a migliorare l'esperienza di tutti i giocatori in tutto il mondo. Visita il nostro sito su [GitHub](https://github.com/HabitRPG/habitica/wiki/Contributing-to-Habitica) per saperne di più!",
|
||||
"marketing4Header": "Oltre le faccende domestiche",
|
||||
"marketing4Lead1": "L'istruzione può essere più accattivante quando diventa un videogioco! Mettete alla prova i vostri studenti organizzando competizioni amichevoli. Ricompensate i comportamenti positivi con premi importanti. La loro disciplina e i loro voti miglioreranno senza ombra di dubbio.",
|
||||
"marketing4Lead1Title": "Rendere l'educazione un gioco",
|
||||
"marketing4Lead2": "I costi del settore sanitario sono in continua crescita. Centinaia di programmi vengono sviluppati per ridurre i costi e aumentare il benessere. Noi crediamo fermamente che Habitica possa aprire un percorso verso uno stile di vita sano.",
|
||||
"marketing4Lead2": "Adottare uno stile di vita più sano può rivelarsi un'impresa difficile da intraprendere. Habitica ti aiuta a monitorare tutti gli aspetti dei tuoi obiettivi di fitness grazie a programmi e livelli di intensità flessibili, pensati per adattarsi alle tue esigenze. Quindi divertiti mentre ti alleni per migliorare la tua salute!",
|
||||
"marketing4Lead2Title": "L'introduzione dei videogiochi nel settore sanitario e del benessere",
|
||||
"marketing4Lead3-1": "Sei pronto a divertirti mentre porti a termine i tuoi impegni?",
|
||||
"marketing4Lead3-2": "Sei interessato a gestire un gruppo nel settore dell'educazione, del benessere e in altri settori?",
|
||||
@@ -63,7 +63,7 @@
|
||||
"pkQuestion2": "Perché Habitica funziona?",
|
||||
"pkAnswer2": "Formare una nuova abitudine è difficile, perché una persona ha bisogno di una ricompensa ovvia ed istantanea. Ad esempio, è dura cominciare a usare il filo dentale, perché anche se il dentista ti dice che è benefico sul lungo termine, sul momento immediato ti fa soltanto male alle gengive. <br />La ludicizzazione di Habitica aggiunge un senso di gratificazione istantanea agli obbiettivi quotidiani, ricompensando una attività difficile con esperienza, oro... e magari anche una ricompensa a sorpresa, come un uovo di drago! Questa meccanica aiuta la gente a restare motivata anche quando l'attività in se non possiede nessuna forma di ricompensa intrinseca, e abbiamo visto gente a cui è cambiata la vita grazie a questo.",
|
||||
"pkQuestion3": "Perché avete aggiunto delle funzioni social?",
|
||||
"pkAnswer3": "La pressione sociale è un fattore di motivazione enorme per molta gente, quindi sapevamo già dall'inizio che volevamo una comunità unita di cui gli individui si terrebbero responsabili a vicenda. Fortunatamente, una delle cose che i giochi video multigiocatori fanno meglio è creare un senso di comunita tra i loro giocatori! La struttura comunitaria di Habitica si ispira a questo tipo di gioco. Mentre certi utenti preferiscono giocare da soli, la maggior parte decide di formare una rete di supporto in una piccola Squadra di amici stretti che incoraggia la responsabilità sociale attraverso funzionalità come le Missioni, per le quali i membri della squadra uniscono la loro produttività per combattere mostri insieme.",
|
||||
"pkAnswer3": "La pressione sociale è un fattore di motivazione enorme per molta gente, quindi sapevamo già dall'inizio che volevamo una Community unita di cui gli individui si terrebbero responsabili a vicenda. Fortunatamente, una delle cose che i giochi video multigiocatori fanno meglio è creare un senso di comunita tra i loro giocatori! La struttura comunitaria di Habitica si ispira a questo tipo di gioco. Mentre certi utenti preferiscono giocare da soli, la maggior parte decide di formare una rete di supporto in una piccola Squadra di amici stretti che incoraggia la responsabilità sociale attraverso funzionalità come le Missioni, per le quali i membri della squadra uniscono la loro produttività per combattere mostri insieme.",
|
||||
"pkQuestion4": "Perché non completare le tue attività riduce la salute del tuo avatar?",
|
||||
"pkAnswer4": "Se non completi uno dei tuoi obbiettivi giornalieri, il tuo avatar perderà salute il giorno seguente. Questo serve come importante fattore motivazionale per incoraggiare le persone a completare i loro obbiettivi perché odiano davvero tanto danneggiare il loro piccolo avatar. In più, la responsabilità sociale è critica per molte persone: se combattendo un mostro con i tuoi amici non completi le tue attività danneggerai anche i loro avatar.",
|
||||
"pkQuestion5": "Cos'ha di diverso Habitica rispetto ad altri programmi di \"gamification\"?",
|
||||
@@ -86,14 +86,14 @@
|
||||
"sync": "Sincronizza",
|
||||
"tasks": "Attività",
|
||||
"teams": "Squadre",
|
||||
"terms": "Termini e condizioni",
|
||||
"terms": "Termini di Servizio",
|
||||
"tumblr": "Tumblr",
|
||||
"localStorageTryFirst": "Se stai avendo problemi con Habitica, premi il pulsante qui sotto per cancellare i dati locali e la maggior parte dei cookies di questo sito (gli altri siti non verranno affetti). Dopo averlo fatto dovrai accedere nuovamente, quindi assicurati di conoscere i tuoi dati di Log-In, che possono essere trovati in Impostazioni -> <%= linkStart %>Sito<%= linkEnd %>.",
|
||||
"localStorageTryNext": "Se il problema persiste, per favore <%= linkStart %>segnalate un bug<%= linkEnd %> se non lo avete già fatto.",
|
||||
"localStorageClear": "Cancella i dati",
|
||||
"localStorageClearExplanation": "Questo pulsante pulirà la memoria locale e la maggior parte dei cookie, poi ti disconnetterà.",
|
||||
"username": "Nome Utente",
|
||||
"emailOrUsername": "email o nome utente (tiene conto di maiuscole e minuscole)",
|
||||
"emailOrUsername": "Nome Utente o email (tiene conto di maiuscole e minuscole)",
|
||||
"work": "Lavoro",
|
||||
"reportAccountProblems": "Segnala un problema con l'account",
|
||||
"reportCommunityIssues": "Segnala un problema con la community",
|
||||
@@ -109,22 +109,22 @@
|
||||
"missingUsername": "Nome utente mancante.",
|
||||
"missingPassword": "Password mancante.",
|
||||
"missingNewPassword": "Manca la nuova password.",
|
||||
"invalidEmailDomain": "Non puoi registrarti usando e-mail con i seguenti domini: <%= domains %>",
|
||||
"wrongPassword": "La password non è corretta. Se hai dimenticato la password, clicca su \"Password dimenticata\".",
|
||||
"invalidEmailDomain": "Non puoi registrarti usando email con i seguenti domini: <%= domains %>",
|
||||
"wrongPassword": "La password non è corretta. Se hai dimenticato la password, clicca su \"Password dimenticata.\"",
|
||||
"incorrectDeletePhrase": "Scrivi <%= magicWord %> tutto in maiuscolo per eliminare il tuo account.",
|
||||
"notAnEmail": "Indirizzo e-mail non valido.",
|
||||
"notAnEmail": "Indirizzo email non valido.",
|
||||
"emailTaken": "L'indirizzo email è già stato utilizzato per un altro account.",
|
||||
"newEmailRequired": "Manca il nuovo indirizzo e-mail.",
|
||||
"newEmailRequired": "Manca il nuovo indirizzo email.",
|
||||
"usernameTime": "È ora di impostare il tuo nome utente!",
|
||||
"usernameInfo": "I nomi di login da questo momento diventano nomi utente unici che saranno visibili vicino al tuo nome pubblico e sono utilizzati per inviti, @menzioni in chat e messaggi. <br><br>Se vuoi imparare di più di questo cambiamento, <a href='https://habitica.fandom.com/wiki/Player_Names' target='_blank'>visita la nostra wiki</a>.",
|
||||
"usernameTOSRequirements": "I nomi utenti devono essere conformi ai nostri <a href='/static/terms' target='_blank'>Termini di Servizio</a> e <a href='/static/community-guidelines' target='_blank'>Linee Guida della Community</a>. Se non avevi in precedenza un nome di login, il tuo nome utente è stato generato automaticamente.",
|
||||
"usernameTaken": "Nome utente già in uso.",
|
||||
"passwordConfirmationMatch": "La password non corrisponde alla conferma.",
|
||||
"passwordResetPage": "Reimposta password",
|
||||
"passwordReset": "Se il tuo indirizzo e-mail o il tuo nome utete hanno trovato riscontro nel nostro database, riceverai a breve le istruzioni via email per generare una nuova password.",
|
||||
"invalidLoginCredentialsLong": "Oh-oh - il tuo indirizzo email / nome utente o la password sono sbagliati.\n - Assicurati di aver digitato correttamente. Il tuo nome utente e la tua password tengono conto di maiuscole e minuscole.\n - Potresti aver creato un profilo usando Facebook o Google, non la tua email, controlla provando questi metodi.\n - Se hai dimenticato la tua password, usa \"Password Dimenticata\".",
|
||||
"passwordReset": "Se il tuo indirizzo email o il tuo nome utete hanno trovato riscontro nel nostro database, riceverai a breve le istruzioni via email per generare una nuova password.",
|
||||
"invalidLoginCredentialsLong": "La tua email, il nome utente o la password non sono corretti. Riprova oppure usa la funzione “Password dimenticata.”",
|
||||
"invalidCredentials": "Non c'è nessun account che usa quelle credenziali.",
|
||||
"accountSuspended": "Questo account, ID utente \"<%= userId %>\", è stato bloccato per infrazioni delle Linee Guida della Comunità(https://habitica.com/static/community-guidelines) o i Termini di Servizio (https://habitica.com/static/terms). Per dettagli o chiedere lo sblocco, per favore scrivi al direttore della comunità a <%= communityManagerEmail %> o chiedi a un genitore o tutore di scrivere la email. Per favore includi il tuo @Nome_utente nella email.",
|
||||
"accountSuspended": "Il tuo account @<%= username %> è stato bloccato. Per ulteriori informazioni o per presentare ricorso, invia un'email all'indirizzo admin@habitica.com indicando il tuo Nome Utente o l'ID Utente di Habitica.",
|
||||
"accountSuspendedTitle": "L'account è stato sospeso",
|
||||
"unsupportedNetwork": "Questa rete non è ancora supportata.",
|
||||
"cantDetachSocial": "All'account manca un altro metodo di autenticazione; impossibile rimuovere questo metodo di autenticazione.",
|
||||
@@ -132,12 +132,12 @@
|
||||
"invalidReqParams": "Parametri di richiesta non validi.",
|
||||
"memberIdRequired": "\"member\" deve essere un UUID valido.",
|
||||
"heroIdRequired": "\"herold\" deve essere un UUID valido.",
|
||||
"cannotFulfillReq": "La tua richiesta non può essere soddisfatta. Scrivi una e-mail ad admin@habitica.com se l'errore persiste.",
|
||||
"cannotFulfillReq": "Questo indirizzo email è già in uso. Puoi provare ad accedere o utilizzare un altro indirizzo email per registrarti. Se hai bisogno di aiuto, contatta admin@habitica.com.",
|
||||
"modelNotFound": "Questo modello non esiste.",
|
||||
"signUpWithSocial": "Registrati con <%= social %>",
|
||||
"signUpWithSocial": "Continua con <%= social %>",
|
||||
"loginWithSocial": "Accedi con <%= social %>",
|
||||
"confirmPassword": "Conferma password",
|
||||
"usernameLimitations": "I nomi utenti devono avere tra 1 e 20 caratteri, contenere solo lettere da a a z, numeri da 0 a 9, trattini, o trattini bassi, e non possono includere parole inappropriate.",
|
||||
"usernameLimitations": "I nomi utenti devono avere tra 1 e 20 caratteri, contenere solo lettere dalla a alla z, numeri da 0 a 9, trattini o trattini bassi.",
|
||||
"usernamePlaceholder": "es. HabitRabbit",
|
||||
"emailPlaceholder": "es. grifone@example.com",
|
||||
"passwordPlaceholder": "es. ******************",
|
||||
@@ -181,5 +181,13 @@
|
||||
"incorrectResetPhrase": "Per reimpostare il tuo account, digita <%= magicWord %> in lettere maiuscole.",
|
||||
"translateHabitica": "Traduci Habitica",
|
||||
"marketing3Lead1Title": "Applicazioni Android e iOS",
|
||||
"marketing4Lead3Button": "Inizia Oggi"
|
||||
"marketing4Lead3Button": "Inizia Oggi",
|
||||
"emailAddress": "Indirizzo email",
|
||||
"emailBlockedRegistration": "L'indirizzo email indicato non è autorizzato alla registrazione. Se ritieni che si tratti di un errore, ti preghiamo di contattarci all'indirizzo admin@habitica.com.",
|
||||
"minPasswordLengthLogin": "La tua password deve avere almeno 8 caratteri.",
|
||||
"enterValidEmail": "Inserisci un indirizzo email valido.",
|
||||
"whatToCallYou": "Come possiamo chiamarti?",
|
||||
"acceptPrivacyTOS": "L'utente dichiara di avere almeno 18 anni e di aver letto e accettato i nostri <a href='/static/terms' target='_blank'>Termini di Servizio</a> e la <a href='/static/privacy' target='_blank'>Privacy Policy</a>",
|
||||
"emailRequiredForSupport": "Abbiamo bisogno di un indirizzo email per fornire assistenza. Inserisci un indirizzo email per continuare con la creazione del tuo account.",
|
||||
"missingClientHeader": "Mancano le intestazioni dell'x-client."
|
||||
}
|
||||
|
||||
+1708
-1102
File diff suppressed because it is too large
Load Diff
@@ -7,17 +7,17 @@
|
||||
"gotIt": "Capito!",
|
||||
"titleTimeTravelers": "Viaggiatori del Tempo",
|
||||
"titleSeasonalShop": "Negozio Stagionale",
|
||||
"saveEdits": "Salva modifiche",
|
||||
"showMore": "Mostra più",
|
||||
"showLess": "Mostra meno",
|
||||
"saveEdits": "Salva Modifiche",
|
||||
"showMore": "Mostra di più",
|
||||
"showLess": "Mostra di meno",
|
||||
"markdownHelpLink": "Guida per la formattazione",
|
||||
"bold": "**Grassetto**",
|
||||
"markdownImageEx": "",
|
||||
"code": "`codice`",
|
||||
"achievements": "Medaglie",
|
||||
"basicAchievs": "Medaglie base",
|
||||
"seasonalAchievs": "Medaglie stagionali",
|
||||
"specialAchievs": "Medaglie speciali",
|
||||
"basicAchievs": "Medaglie Base",
|
||||
"seasonalAchievs": "Medaglie Stagionali",
|
||||
"specialAchievs": "Medaglie Speciali",
|
||||
"modalAchievement": "Medaglia!",
|
||||
"special": "Speciale",
|
||||
"site": "Sito",
|
||||
@@ -26,18 +26,18 @@
|
||||
"market": "Mercato",
|
||||
"newSubscriberItem": "Hai dei nuovi <span class=\"notification-bold-blue\">Oggetti Misteriosi</span>",
|
||||
"subscriberItemText": "All'inizio di ogni mese gli abbonati ricevono un nuovo set di equipaggiamento misterioso!",
|
||||
"all": "Tutto",
|
||||
"all": "Tutte",
|
||||
"none": "Nessuno",
|
||||
"more": "altri <%= count %>",
|
||||
"and": "e",
|
||||
"submit": "Invia",
|
||||
"close": "Chiudi",
|
||||
"saveAndClose": "Salva e chiudi",
|
||||
"saveAndConfirm": "Salva & Conferma",
|
||||
"saveAndClose": "Salva e Chiudi",
|
||||
"saveAndConfirm": "Salva e Conferma",
|
||||
"cancel": "Annulla",
|
||||
"ok": "OK",
|
||||
"add": "Aggiungi",
|
||||
"undo": "Annulla ultima azione",
|
||||
"undo": "Annulla",
|
||||
"continue": "Continua",
|
||||
"accept": "Accetta",
|
||||
"reject": "Rifiuta",
|
||||
@@ -63,7 +63,7 @@
|
||||
"costumeContest": "Costume da Concorrente",
|
||||
"costumeContestText": "Ha partecipato alla gara in costume di Habitoween. Puoi guardare cos'hanno fatto i partecipanti su blog.habitrpg.com!",
|
||||
"costumeContestTextPlural": "Ha partecipato a <%= count %> gare in costume di Habitoween. Puoi guardare cos'hanno fatto i partecipanti su blog.habitrpg.com!",
|
||||
"newPassSent": "Se abbiamo il tuo indirizzo e-mail in archivio, abbiamo inviato a quell'indirizzo le istruzioni per creare una nuova password.",
|
||||
"newPassSent": "Se abbiamo il tuo indirizzo email in archivio, abbiamo inviato a quell'indirizzo le istruzioni per creare una nuova password.",
|
||||
"error": "Errore",
|
||||
"menu": "Menù",
|
||||
"notifications": "Notifiche",
|
||||
@@ -95,7 +95,7 @@
|
||||
"achievementBurnout": "Eroe dei Campi Fiorenti",
|
||||
"achievementBurnoutText": "Ha contribuito alla sconfitta degli Spiriti dell'Esaurimento durante l'evento Festival d'Autunno 2015!",
|
||||
"achievementBewilder": "Salvatore di Fantalata",
|
||||
"achievementBewilderText": "Ha contribuito alla sconfitta del Be-Wilder durante l'evento Spring Fling 2016!",
|
||||
"achievementBewilderText": "Ha contribuito alla sconfitta del Be-Wilder durante la Festa di Primavera 2016!",
|
||||
"achievementDysheartener": "Eroe degli Spezzati",
|
||||
"achievementDysheartenerText": "Ha aiutato a sconfiggere il Dysheartener durante l'evento di San Valentino 2018!",
|
||||
"cards": "Cartoline",
|
||||
@@ -158,7 +158,7 @@
|
||||
"twentyOneDays": "Hai completato la tua Attività Giornaliera per 21 giorni di fila!",
|
||||
"dontBreakStreak": "Ottimo lavoro. Non interrompere la serie!",
|
||||
"dontStop": "Non fermarti ora!",
|
||||
"wonChallengeShare": "Ho vinto una sfida in Habitica!",
|
||||
"wonChallengeShare": "Ho vinto una sfida su Habitica!",
|
||||
"orderBy": "Ordina per <%= item %>",
|
||||
"you": "(tu)",
|
||||
"loading": "Caricamento...",
|
||||
@@ -172,21 +172,21 @@
|
||||
"creativity": "Creatività",
|
||||
"health_wellness": "Salute e benessere",
|
||||
"self_care": "Cura di sè",
|
||||
"habitica_official": "Ufficiale Habitica",
|
||||
"habitica_official": "Habitica Ufficiale",
|
||||
"academics": "Accademico",
|
||||
"advocacy_causes": "Patrocinio + Cause",
|
||||
"advocacy_causes": "Difesa + Cause",
|
||||
"entertainment": "Intrattenimento",
|
||||
"finance": "Finanza",
|
||||
"health_fitness": "Salute + Fitness",
|
||||
"hobbies_occupations": "Abitudini + Occupazioni",
|
||||
"location_based": "Basate su luoghi",
|
||||
"mental_health": "Salute mentale + Cura di sè",
|
||||
"hobbies_occupations": "Passatempi + Occupazioni",
|
||||
"location_based": "Basati sui luoghi",
|
||||
"mental_health": "Salute Mentale + Cura di sé",
|
||||
"getting_organized": "Organizzarsi",
|
||||
"self_improvement": "Crescita personale",
|
||||
"self_improvement": "Crescita Personale",
|
||||
"spirituality": "Spiritualità",
|
||||
"time_management": "Gestione del tempo + Responsabilità",
|
||||
"recovery_support_groups": "Riabilitazione + Gruppi di supporto",
|
||||
"dismissAll": "Nascondi tutto",
|
||||
"recovery_support_groups": "Riabilitazione + Gruppi di Supporto",
|
||||
"dismissAll": "Nascondi Tutto",
|
||||
"messages": "Messaggi",
|
||||
"emptyMessagesLine1": "Non hai alcun messaggio",
|
||||
"emptyMessagesLine2": "Invia un messaggio per iniziare una conversazione con i membri della tua Squadra o con un altro giocatore di Habitica",
|
||||
@@ -213,7 +213,7 @@
|
||||
"reportDescriptionPlaceholder": "Descrivi il bug in dettaglio qui sotto",
|
||||
"reportSentDescription": "Ti contatteremo non appena il nostro team avrà indagato sul problema.",
|
||||
"emptyReportBugMessage": "Messaggio mancante",
|
||||
"allNotifications": "Tutte le notifiche",
|
||||
"allNotifications": "Tutte le Notifiche",
|
||||
"refreshList": "Ricarica lista",
|
||||
"general": "Generale",
|
||||
"reportPlayer": "Segnala Giocatore",
|
||||
@@ -222,13 +222,13 @@
|
||||
"adminTools": "Strumenti di amministrazione",
|
||||
"viewAdminPanel": "Visualizza pannello amministratore",
|
||||
"mutePlayer": "Silenzia",
|
||||
"banPlayer": "Banna giocatore",
|
||||
"banPlayer": "Banna Giocatore",
|
||||
"unbanPlayer": "Sbanna giocatore",
|
||||
"bannedPlayer": "Questo giocatore è bannato.",
|
||||
"titleCustomizations": "Personalizzazioni",
|
||||
"leaveHabitica": "Stai per uscire da Habitica.com",
|
||||
"newMessage": "Nuovo messaggio",
|
||||
"rememberToBeKind": "Ricordatevi di essere gentili, rispettosi e di seguire le <a href='/static/community-guidelines' target='_blank'>Linee guida della community</a>.",
|
||||
"rememberToBeKind": "Ricordatevi di essere gentili, rispettosi e di seguire le <a href='/static/community-guidelines' target='_blank'>Linee Guida della Community</a>.",
|
||||
"targetUserNotExist": "L'utente: '<%= userName %>' non esiste.",
|
||||
"questionEmailText": "Verranno utilizzati solo per contattarti in merito alla tua domanda.",
|
||||
"question": "Domanda",
|
||||
@@ -238,5 +238,12 @@
|
||||
"submitQuestion": "Invia domanda",
|
||||
"whyReportingPlayer": "Perché stai segnalando questo giocatore?",
|
||||
"whyReportingPlayerPlaceholder": "Motivo della segnalazione",
|
||||
"playerReportModalBody": "Dovresti segnalare solo un giocatore che viola le <%= firstLinkStart %>Linee guida della community<%= linkEnd %> e/o i <%= secondLinkStart %>Termini di servizio<%= linkEnd %>. Inviare una segnalazione falsa è una violazione delle Linee guida della community di Habitica."
|
||||
"playerReportModalBody": "Dovresti segnalare solo un giocatore che viola le <%= firstLinkStart %>Linee Guida della Community<%= linkEnd %> e/o i <%= secondLinkStart %>Termini di servizio<%= linkEnd %>. Inviare una segnalazione falsa è una violazione delle Linee Guida della Community di Habitica.",
|
||||
"gem": "Gemma",
|
||||
"confirmPurchase": "Conferma l'acquisto",
|
||||
"avoidSPI": "Evita SPI",
|
||||
"leaveHabiticaText": "Habitica non è responsabile dei contenuti dei siti web collegati che non sono di proprietà o gestiti da HabitRPG.<br>Si prega di notare che le pratiche di questi siti web potrebbero differire dalle Linee Guida della Community di Habitica.",
|
||||
"avoidSPIDetails": "Per tutelare la tua privacy, ti invitiamo a non inserire <%= firstLink %>informazioni personali sensibili<%= linkClose %> (SPI) quando usi Habitica. I dati del tuo account, comprese le attività, vengono archiviati sui nostri server in modo che tu possa accedervi da qualsiasi dispositivo.<br><br>Per ulteriori informazioni, consulta la nostra <%= secondLink %>Privacy Policy<%= linkClose %>.",
|
||||
"askQuestionHeaderDescribe": "Sei nuovo su Habitica e non sai da dove cominciare? Sei un utente esperto ma non riesci a capire come utilizzare una delle funzionalità? Compila questo modulo e il nostro team ti ricontatterà.",
|
||||
"skipExternalLinkModal": "Tieni premuto il tasto CTRL (Windows) o Command (Mac) mentre clicchi su un collegamento per ignorare questa finestra."
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
"glossary": "<a target='_blank' href='https://habitica.fandom.com/wiki/Glossary'>Glossario</a>",
|
||||
"wiki": "Wiki",
|
||||
"resources": "Risorse",
|
||||
"communityGuidelines": "Linee guida della community",
|
||||
"communityGuidelines": "Linee Guida della Community",
|
||||
"bannedWordUsed": "Ops! Sembra che questo messaggio contenga una parolaccia o un riferimento ad una sostanza che crea dipendenza o ad un argomento per adulti (<%= swearWordsUsed %>). Habitica mantiene le nostre chat molto pulite. Sentiti libero/a di modificare il tuo messaggio in modo da poterlo pubblicare! Devi rimuovere la parola, non solo censurarla.",
|
||||
"bannedSlurUsed": "Il tuo messaggio conteneva un linguaggio inappropriato e i tuoi privilegi legati alle chat sono stati revocati.",
|
||||
"party": "Squadra",
|
||||
@@ -39,7 +39,7 @@
|
||||
"groupLeader": "Leader del gruppo",
|
||||
"groupID": "ID del gruppo",
|
||||
"members": "Membri",
|
||||
"memberList": "Lista membri",
|
||||
"memberList": "Lista Membri",
|
||||
"invited": "Invitati",
|
||||
"name": "Nome",
|
||||
"description": "Descrizione",
|
||||
@@ -50,13 +50,13 @@
|
||||
"createGuild": "Crea Gilda",
|
||||
"guild": "Gilda",
|
||||
"guilds": "Gilde",
|
||||
"sureKick": "Vuoi davvero rimuovere questo membro dalla Squadra/Gilda?",
|
||||
"sureKick": "Vuoi davvero rimuovere questo membro dalla Squadra o dal Gruppo?",
|
||||
"optionalMessage": "Messaggio opzionale",
|
||||
"yesRemove": "Sì, rimuovili",
|
||||
"sortBackground": "Ordina per Sfondo",
|
||||
"sortClass": "Ordina per Classe",
|
||||
"sortDateJoined": "Ordina per data di iscrizione",
|
||||
"sortLogin": "Ordina per data di accesso",
|
||||
"sortDateJoined": "Ordina per Data d'Iscrizione",
|
||||
"sortLogin": "Ordina per Data di Accesso",
|
||||
"sortLevel": "Ordina per Livello",
|
||||
"sortName": "Ordina per Nome",
|
||||
"sortTier": "Ordina per Grado",
|
||||
@@ -76,9 +76,9 @@
|
||||
"PMDisabledOptPopoverText": "I Messaggi Privati sono disabilitati. Abilitati per permettere ad altri utenti di contattarti dal tuo profilo.",
|
||||
"PMDisabledCaptionTitle": "I Messaggi Privati sono disabilitati",
|
||||
"PMDisabledCaptionText": "Puoi comunque inviare messaggi ma nessuno può inviarli a te.",
|
||||
"block": "Blocca",
|
||||
"unblock": "Sblocca",
|
||||
"blockWarning": "Blocca utente - Questo non avrà effetto se l'utente è un moderatore o lo diventerà in futuro.",
|
||||
"block": "Blocca Giocatore",
|
||||
"unblock": "Sblocca Giocatore",
|
||||
"blockWarning": "Ciò non avrà alcun effetto se il giocatore è un amministratore.",
|
||||
"inbox": "Messaggi",
|
||||
"messageRequired": "Un messaggio è richiesto.",
|
||||
"toUserIDRequired": "È necessario un ID Utente",
|
||||
@@ -89,23 +89,23 @@
|
||||
"badAmountOfGemsToSend": "L'importo deve essere fra 1 e il numero corrente di gemme.",
|
||||
"report": "Segnala",
|
||||
"abuseFlagModalHeading": "Segnala una Violazione",
|
||||
"abuseFlagModalBody": "Vuoi davvero segnalare questo post? Dovresti segnalare un post <strong>solo se</strong> viola le <%= firstLinkStart %>Linee Guida della Comunità<%= linkEnd %> e/o i <%= secondLinkStart %>Termini di Servizio<%= linkEnd %>. Segnalare un post in maniera inappropriata è una violazione delle Linee Guida della Comunità e potrebbe darti una infrazione.",
|
||||
"abuseFlagModalBody": "Si prega di segnalare solo i post che violano le <%= firstLinkStart %>Linee Guida della Community<%= linkEnd %> e/o i <%= secondLinkStart %>Termini di Servizio<%= linkEnd %>. Inviare una segnalazione infondata costituisce una violazione delle Linee Guida della Community di Habitica.",
|
||||
"abuseReported": "Grazie di aver segnalato questa violazione. I moderatori sono stati avvertiti.",
|
||||
"whyReportingPost": "Perché stai segnalando questo post?",
|
||||
"whyReportingPostPlaceholder": "Per favore aiuta i nostri moderatori facendoci sapere perché stai segnalando questo post per una infrazione, es. spam, imprecazioni, bestemmie, bigottismo, argomenti per adulti, violenza.",
|
||||
"whyReportingPostPlaceholder": "Motivo della segnalazione",
|
||||
"optional": "Opzionale",
|
||||
"needsTextPlaceholder": "Scrivi il tuo messaggio qui.",
|
||||
"leaderOnlyChallenges": "Solo il leader del gruppo può creare le sfide",
|
||||
"sendGift": "Invia un regalo",
|
||||
"sendGift": "Invia Regalo",
|
||||
"inviteFriends": "Invita amici",
|
||||
"inviteByEmail": "Invita via e-mail",
|
||||
"inviteByEmail": "Invita via email",
|
||||
"inviteMembersHowTo": "Invita persone usando un indirizzo email valido o un ID utente a 36 cifre. Se una email non è ancora registrata, manderemo un messaggio per invitare a registrarsi ad Habitica.",
|
||||
"sendInvitations": "Manda Inviti",
|
||||
"invitationsSent": "Inviti spediti!",
|
||||
"invitationSent": "Invito spedito!",
|
||||
"invitedFriend": "Invitato un amico",
|
||||
"invitedFriendText": "Questo utente ha invitato degli amici, ed almeno uno di questi si è unito a lui in questa avventura!",
|
||||
"inviteLimitReached": "Hai già inviato il numero massimo di inviti via e-mail. Abbiamo un limite per prevenire lo spamming, ma se vorresti inviarne altre, contattaci all'indirizzo <%= techAssistanceEmail %> e saremo felici di discuterne!",
|
||||
"inviteLimitReached": "Hai già inviato il numero massimo di inviti via email. Abbiamo un limite per prevenire lo spamming, ma se vorresti inviarne altre, contattaci all'indirizzo <%= techAssistanceEmail %> e saremo felici di discuterne!",
|
||||
"sendGiftHeading": "Invia regalo a <%= name %>",
|
||||
"sendGiftGemsBalance": "Da <%= number %> Gemme",
|
||||
"sendGiftCost": "Totale: <%= cost %>$ USD",
|
||||
@@ -113,8 +113,8 @@
|
||||
"sendGiftPurchase": "Acquisto",
|
||||
"sendGiftMessagePlaceholder": "Aggiungi un messaggio al tuo regalo",
|
||||
"sendGiftSubscription": "<%= months %> Mese/i: <%= price %>$ USD",
|
||||
"gemGiftsAreOptional": "Per favore, ricorda che Habitica non ti chiederà mai di donare gemme ad altri giocatori. Chiedere ad altri giocatori donazioni di gemme è una <strong>violazione delle Linee guida della community</strong>, e tutti gli episodi di questo tipo devono essere segnalati a <%= hrefTechAssistanceEmail %>.",
|
||||
"battleWithFriends": "Combatti i mostri con gli amici",
|
||||
"gemGiftsAreOptional": "Per favore, ricorda che Habitica non ti chiederà mai di donare gemme ad altri giocatori. Chiedere ad altri giocatori donazioni di gemme è una <strong>violazione delle Linee Guida della Community</strong>, e tutti gli episodi di questo tipo devono essere segnalati a <%= hrefTechAssistanceEmail %>.",
|
||||
"battleWithFriends": "Gioca su Habitica con gli altri",
|
||||
"startAParty": "Crea una Squadra",
|
||||
"partyUpName": "Party Up",
|
||||
"partyOnName": "Party On",
|
||||
@@ -130,7 +130,7 @@
|
||||
"groupMemberNotFound": "Utente non trovato tra i membri del gruppo",
|
||||
"mustBeGroupMember": "Deve essere membro del gruppo.",
|
||||
"canOnlyInviteEmailUuid": "È possibile mandare inviti solo inserendo ID Utente, email o nome utente.",
|
||||
"inviteMissingEmail": "Indirizzo e-mail mancante nell'invito.",
|
||||
"inviteMissingEmail": "Indirizzo email mancante nell'invito.",
|
||||
"inviteMustNotBeEmpty": "L'invito non può essere vuoto.",
|
||||
"partyMustbePrivate": "Le squadre devono essere private",
|
||||
"userAlreadyInGroup": "ID Utente: <%= userId %>, Utente \"<%= username %>\" è già in questo gruppo.",
|
||||
@@ -141,7 +141,7 @@
|
||||
"userAlreadyInAParty": "UserID: <%= userId %>, User \"<%= username %>\" è già in una squadra.",
|
||||
"userWithIDNotFound": "Utente con id \"<%= userId %>\" non trovato.",
|
||||
"userWithUsernameNotFound": "Non è stato trovato nessun con il nome utente uguale a \"<%= username %>\".",
|
||||
"userHasNoLocalRegistration": "L'utente non ha una registrazione locale (nome utente, e-mail, password).",
|
||||
"userHasNoLocalRegistration": "L'utente non ha una registrazione locale (nome utente, email, password).",
|
||||
"uuidsMustBeAnArray": "ID Utente deve essere un vettore.",
|
||||
"emailsMustBeAnArray": "L' invito dell' Indirizzo email deve essere un vettore.",
|
||||
"usernamesMustBeAnArray": "Gli inviti al Nome Utente devono essere un array.",
|
||||
@@ -161,7 +161,7 @@
|
||||
"userRequestsApproval": "<strong><%= userName %></strong> richiede approvazone",
|
||||
"userCountRequestsApproval": "<strong><%= userCount %> membri</strong> hanno richiesto approvazione",
|
||||
"youAreRequestingApproval": "Stai richiedendo approvazione",
|
||||
"chatPrivilegesRevoked": "Non puoi farlo poiché i tuoi privilegi di chat sono stati rimossi. Per informazioni o per richiedere la restituzione dei tuoi privilegi, invia un'email al nostro Direttore della Comunità all'indirizzo admin@habitica.com o chiedi ad un tuo genitore o tutore di inviarli via email. Includi il tuo @Nome_utente nell'email. Se un moderatore ti ha già detto che la tua sospensione è temporanea non è necessario inviare una e-mail.",
|
||||
"chatPrivilegesRevoked": "Non puoi farlo poiché i tuoi privilegi di chat sono stati rimossi. Per informazioni o per richiedere la restituzione dei tuoi privilegi, invia un'email al nostro Direttore della Comunità all'indirizzo admin@habitica.com o chiedi ad un tuo genitore o tutore di inviarli via email. Includi il tuo @Nome_utente nell'email. Se un moderatore ti ha già detto che la tua sospensione è temporanea non è necessario inviare una email.",
|
||||
"to": "A:",
|
||||
"from": "Da:",
|
||||
"assignTask": "Assegna un'attività",
|
||||
@@ -206,43 +206,43 @@
|
||||
"badAmountOfGemsToPurchase": "Quantità deve essere almeno 1.",
|
||||
"groupPolicyCannotGetGems": "La politica di uno dei gruppi a cui appartieni impedisce ai propri membri di ottenere gemme.",
|
||||
"viewParty": "Visualizza Squadra",
|
||||
"newGuildPlaceholder": "Inserisci il nome della tua gilda.",
|
||||
"guildBank": "Banca Gilda",
|
||||
"chatPlaceholder": "Scrivi qui il tuo messaggio ai membri della Gilda",
|
||||
"newGuildPlaceholder": "Inserisci il nome del tuo Gruppo.",
|
||||
"guildBank": "Banca",
|
||||
"chatPlaceholder": "Scrivi qui il tuo messaggio ai membri del Gruppo",
|
||||
"partyChatPlaceholder": "Scrivi qui il tuo messaggio ai membri della Squadra",
|
||||
"fetchRecentMessages": "Mostra messaggi recenti",
|
||||
"like": "Mi piace",
|
||||
"liked": "Ti piace",
|
||||
"inviteToGuild": "Invita alla Gilda",
|
||||
"inviteToGuild": "Invita nel Gruppo",
|
||||
"inviteToParty": "Invita alla Squadra",
|
||||
"inviteEmailUsername": "Invita via email o tramite nome utente",
|
||||
"inviteEmailUsernameInfo": "Invita utenti con una email valida o tramite nome utente. Se l'email non è registrata, li inviteremo a unirsi ad Habitica.",
|
||||
"emailOrUsernameInvite": "Indirizzo email o nome utente",
|
||||
"messageGuildLeader": "Scrivi al Leader della Gilda",
|
||||
"messageGuildLeader": "Scrivi al Leader del Gruppo",
|
||||
"donateGems": "Dona Gemme",
|
||||
"updateGuild": "Aggiorna GIlda",
|
||||
"updateGuild": "Aggiorna il Gruppo",
|
||||
"viewMembers": "Visualizza membri",
|
||||
"memberCount": "Numero membri",
|
||||
"recentActivity": "Attività recenti",
|
||||
"myGuilds": "Le mie Gilde",
|
||||
"guildsDiscovery": "Esplora Gilde",
|
||||
"role": "Ruolo",
|
||||
"guildLeader": "Leader della Gilda",
|
||||
"guildLeader": "Leader del Gruppo",
|
||||
"member": "Membro",
|
||||
"guildSize": "Dimensione della Gilda",
|
||||
"guildSize": "Dimensione del Gruppo",
|
||||
"goldTier": "Rango oro",
|
||||
"silverTier": "Rango argento",
|
||||
"bronzeTier": "Rango bronzo",
|
||||
"privacySettings": "Impostazioni privacy",
|
||||
"onlyLeaderCreatesChallenges": "Solo il Leader può creare delle Sfide",
|
||||
"onlyLeaderCreatesChallengesDetail": "Con questa opzione selezionata, membri ordinari non possono creare Sfide in questo gruppo.",
|
||||
"privateGuild": "Gilda privata",
|
||||
"onlyLeaderCreatesChallengesDetail": "Con questa opzione, i membri ordinari non potranno creare Sfide in questo Gruppo.",
|
||||
"privateGuild": "Gruppo Privato",
|
||||
"charactersRemaining": "<%= characters %> caratteri rimasti",
|
||||
"guildSummary": "Riassunto",
|
||||
"guildSummaryPlaceholder": "Scrivi una breve traduzione per pubblicizzare la tua Gilda con gli altri Habitanti. Qual è l'obbiettivo principale della tua Gilda e perché le persone dovrebbero aggiungersi? Prova a inserire parole chiavi utili nella descrizione facendo in modo che gli Habitanti possano trovarla facilmente quando fanno una ricerca!",
|
||||
"guildSummaryPlaceholder": "Scrivi una breve descrizione del tuo gruppo. Qual è lo scopo principale del gruppo e di cosa si occuperanno i suoi membri?",
|
||||
"groupDescription": "Descrizione",
|
||||
"guildDescriptionPlaceholder": "Usa questa sezione per andare più in dettaglio su tutte quelle cose che i membri della Gilda dovrebbero sapere sulla tua Gilda. Consigli e link utili, e frasi di incoraggiamento vanno tutti qui!",
|
||||
"markdownFormattingHelp": "[Guida per la formattazione (in inglese)](https://habitica.fandom.com/wiki/Markdown_Cheat_Sheet)",
|
||||
"guildDescriptionPlaceholder": "Usa questa sezione per andare più in dettaglio su tutte quelle cose che i membri dovrebbero sapere riguardo il tuo Gruppo. Consigli, link utili e frasi di incoraggiamento vanno tutti qui!",
|
||||
"markdownFormattingHelp": "[Guida per la formattazione (in inglese)](https://github.com/HabitRPG/habitica/wiki/Markdown-in-Habitica)",
|
||||
"partyDescriptionPlaceholder": "Questa è la descrizione della nostra Squadra. Descrive cosa facciamo in questa Squadra. Se vuoi imparare di più di cosa facciamo in questa Squadra, leggi la descrizione. All'avventura.",
|
||||
"guildGemCostInfo": "Un costo in Gemme promuove Gilde di alta qualità, ed è trasferito nella banca della tua Gilda.",
|
||||
"noGuildsTitle": "Non appartieni ad alcuna Gilda.",
|
||||
@@ -250,16 +250,16 @@
|
||||
"noGuildsParagraph2": "Vai a \"Esplora Gilde\" per vedere Gilde basate sui tuoi interessi, navigare tra le Gilde pubbliche di Habitica, o creare la tua Gilda.",
|
||||
"noGuildsMatchFilters": "Non è stato possibile trovare una Gilda corrispondente.",
|
||||
"privateDescription": "Una Gilda Privata non sarà visibile in \"Esplora Gilde\". Nuovi membri potranno essere aggiungi solo tramite invito.",
|
||||
"removeInvite": "Rimuovi invito",
|
||||
"removeInvite": "Cancella Invito",
|
||||
"removeMember": "Rimuovi membro",
|
||||
"sendMessage": "Invia messaggio",
|
||||
"promoteToLeader": "Trasferisci proprietà del gruppo",
|
||||
"inviteFriendsParty": "Invitare amici nella tua Squadra ti garantirà una esclusiva <br/> Pergamena per Missioni per combattare il Basi-Lista assieme!",
|
||||
"inviteFriendsParty": "Invita un altro giocatore nella tua Squadra <br/> e ricevi l'esclusiva Pergamena della Missione Basi-Lista.",
|
||||
"createParty": "Crea una Squadra",
|
||||
"inviteMembersNow": "Vuoi invitare dei membri ora?",
|
||||
"playInPartyTitle": "Gioca ad Habitica in una Squadra!",
|
||||
"playInPartyDescription": "Affronta fantastiche missioni con i tuoi amici o per conto tuo. Combatti mostri, crea Sfide. e responsabilizzati attraverso le Squadre.",
|
||||
"wantToJoinPartyTitle": "Vuoi unirti ad una squadra?",
|
||||
"playInPartyDescription": "Affronta incredbili Missioni con i tuoi amici o per conto tuo. Combatti mostri, crea Sfide. e responsabilizzati attraverso le Squadre.",
|
||||
"wantToJoinPartyTitle": "Stai cercando una Squadra?",
|
||||
"wantToJoinPartyDescription": "Dai il tuo nome utente ad un amico che ha già una Squadra, o vai alla gilda <a href='/groups/guild/f2db2a7f-13c5-454d-b3ee-ea1f5089e601'>Party Wanted Guild</a> per incontrare potenziali alleati (anglofoni)!",
|
||||
"copy": "Copia",
|
||||
"questOwnerRewards": "Ricompense per Capomissione",
|
||||
@@ -271,7 +271,7 @@
|
||||
"details": "Dettagli",
|
||||
"participantDesc": "Una volta che tutti i membri hanno accettato o rifiutato, la Missione inizia. Solo coloro che hanno premuto \"accetta\" saranno in grado di partecipare nella Missione e ricevere la ricompensa.",
|
||||
"groupGems": "Gemme gruppo",
|
||||
"groupGemsDesc": "Le Gemme della Gilda possono essere spese per creare Sfide! In futuro, sarà possibile aggiungere altre Gemme.",
|
||||
"groupGemsDesc": "Le Gemme del Gruppo possono essere spese per creare Sfide! In futuro, sarà possibile aggiungere altre Gemme.",
|
||||
"groupTaskBoard": "Bacheca delle Attività",
|
||||
"groupInformation": "Informazioni gruppo",
|
||||
"groupBilling": "Pagamento del Gruppo",
|
||||
@@ -287,15 +287,15 @@
|
||||
"worldBossBullet3": "Puoi continuare con le normali Missioni con Boss, i danni saranno applicati a entrambi",
|
||||
"worldBossBullet4": "Controlla regolarmente la Taverna per vedere i progressi con il Boss Mondiale e gli attacchi Furia",
|
||||
"worldBoss": "Boss Mondiale",
|
||||
"groupPlanTitle": "Hai bisogno di più per il tuo gruppo?",
|
||||
"groupPlanDesc": "Gestisci una piccola squadra o organizzi faccende domestiche? Il nostro piano per gruppi ti garantisce l'accesso esclusivo ad una bacheca per le vostre attività e ad un'area per chattare dedicata a te ed ai membri del tuo gruppo!",
|
||||
"groupPlanTitle": "Hai bisogno di più per il tuo Gruppo?",
|
||||
"groupPlanDesc": "Devi organizzare le faccende domestiche o gestire un piccolo progetto di classe? I piani di gruppo di Habitica offrono un'esperienza collaborativa per la gestione dei compiti e uno spazio di chat dedicato per aiutare te e il tuo gruppo a rimanere motivati.",
|
||||
"billedMonthly": "*fatturato come abbonamento mensile",
|
||||
"teamBasedTasksList": "Bacheca per Attività per il Gruppo",
|
||||
"teamBasedTasksListDesc": "Crea una lista di attività per il gruppo facile da vedere. Assegna attività ai membri del gruppo o lasciali rivendicare le proprie attività, per aver sempre chiaro chi sta lavorando su cosa!",
|
||||
"groupManagementControls": "Opzioni per Gestire il Gruppo",
|
||||
"groupManagementControlsDesc": "Usa l'approvazione delle attività per verificare che una attività sia stata effettivamente portata a termine, aggiungi dei Manager per dividere le responsabilità, e goditi la chat privata per tutti i membri.",
|
||||
"inGameBenefits": "Vantaggi nel gioco",
|
||||
"inGameBenefitsDesc": "I membri del gruppo ricevono un'esclusiva Cavalcatura Lepronte ed anche tutti i vantaggi di un abbonamento, incluso l'equipaggiamento speciale rilasciato ogni mese e l'abilità di comprare gemme con l'oro.",
|
||||
"teamBasedTasksList": "Bacheca delle Attività Condivise",
|
||||
"teamBasedTasksListDesc": "I membri del gruppo possono lavorare tutti sulla stessa bacheca delle attività per garantire che il gruppo sia sempre al passo. Completa le attività dalla bacheca condivisa oppure copiale nelle tue attività personali per portarle a termine ovunque ti trovi.",
|
||||
"groupManagementControls": "Responsabilità Flessibile",
|
||||
"groupManagementControlsDesc": "Dai la responsabilità assegnando le attività a un numero qualsiasi di membri, oppure lascia aperte le attività come sfida per vedere chi riesce a finirle per primo. I membri del Gruppo possono tenersi aggiornati sui progressi reciproci controllando lo stato delle attività.",
|
||||
"inGameBenefits": "Tutti i Benefici!",
|
||||
"inGameBenefitsDesc": "I membri del gruppo ricevono un'esclusiva Cavalcatura Lepronte ed anche tutti i vantaggi di un abbonamento, incluso l'Equipaggiamento speciale rilasciato ogni mese e l'abilità di comprare Gemme con l'Oro.",
|
||||
"letsMakeAccount": "Iniziamo creando un profilo",
|
||||
"nameYourGroup": "Poi, dai un Nome al Tuo Gruppo",
|
||||
"exampleGroupName": "Esempio: Avengers Academy",
|
||||
@@ -321,7 +321,7 @@
|
||||
"allAssignedCompletion": "Tutti - L'Attività è completata quando tutti gli utenti a cui è assegnata la completano",
|
||||
"groupActivityNotificationTitle": "<%= user %> ha pubblicato in <%= group %>",
|
||||
"suggestedGroup": "Consigliato perché sei nuovo di Habitica.",
|
||||
"newPartyPlaceholder": "Inserisci il nome della tua squadra.",
|
||||
"newPartyPlaceholder": "Inserisci il nome della tua Squadra.",
|
||||
"youHaveBeenAssignedTask": "<%= managerName %> ti ha assegnato l'attività <span class=\"notification-bold\"><%= taskText %></span>.",
|
||||
"taskClaimed": "<%= userName %> ha rivendicato l'attività <span class=\"notification-bold\"><%= taskText %></span>.",
|
||||
"userWithUsernameOrUserIdNotFound": "Nome utente o ID Utente non trovati.",
|
||||
@@ -342,7 +342,7 @@
|
||||
"chooseTeamMember": "Cerca un membro della squadra",
|
||||
"unassigned": "Non assegnato",
|
||||
"onlyPrivateGuildsCanUpgrade": "Solo le gilde private possono essere aggiornate ad un piano di gruppo.",
|
||||
"bannedWordsAllowedDetail": "Selezionando questa opzione consentirai l'uso di parole vietate in questa gilda.",
|
||||
"bannedWordsAllowedDetail": "Selezionando questa opzione consentirai l'uso di parole vietate in questo Gruppo.",
|
||||
"bannedWordsAllowed": "Consenti parole vietate",
|
||||
"languageSettings": "Impostazioni della lingua",
|
||||
"cannotRemoveQuestOwner": "Non puoi rimuovere il proprietario della missione attiva. Interrompi prima la missione.",
|
||||
@@ -354,11 +354,11 @@
|
||||
"viewDetails": "Vedi dettagli",
|
||||
"upgradeToGroup": "Promuovi a gruppo",
|
||||
"messagePartyLeader": "Scrivi al caposquadra",
|
||||
"joinGuild": "Unisciti alla gilda",
|
||||
"joinGuild": "Unisciti al Gruppo",
|
||||
"joinParty": "Unisciti alla squadra",
|
||||
"editGuild": "Modifica gilda",
|
||||
"editGuild": "Modifica il Gruppo",
|
||||
"editParty": "Modifica squadra",
|
||||
"leaveGuild": "Lascia la gilda",
|
||||
"leaveGuild": "Abbandona il Gruppo",
|
||||
"chatTemporarilyUnavailable": "La chat è temporaneamente non disponibile. Per favore riprova più tardi.",
|
||||
"lastCompleted": "Completato l'ultima volta il",
|
||||
"youEmphasized": "<strong>Tu</strong>",
|
||||
@@ -374,7 +374,7 @@
|
||||
"newGroupsEnjoy": "Ci auguriamo che la nuova esperienza dei Piani di Gruppo ti piaccia!",
|
||||
"assignTo": "Assegna a",
|
||||
"newGroupsBullet01": "Interagisci con le attività direttamente dalla bacheca delle attività condivise",
|
||||
"newGroupsBullet04": "Le Attività giornaliere condivise non arrecheranno danno quando non completate o quando appaiono nel messaggio Registra l'Attività di Ieri",
|
||||
"newGroupsBullet04": "Le Attività Giornaliere condivise non arrecheranno danno quando non completate o quando appaiono nel messaggio Registra l'Attività di Ieri",
|
||||
"newGroupsBullet07": "Attiva/disattiva la visualizzazione della schermata delle attività condivise sulla tua bacheca delle attività personale",
|
||||
"dayStart": "<strong>Inizio giornata</strong>: <%= startTime %>",
|
||||
"newGroupsBullet05": "Le attività condivise cambieranno colore se lasciate incomplete per aiutare a monitorarne il progresso",
|
||||
@@ -393,6 +393,52 @@
|
||||
"sendGiftLabel": "Vuoi inviare un messaggio col tuo regalo?",
|
||||
"invitedToPartyBy": "<a href=\"/profile/<%= userId %>\" target=\"_blank\">@<%= userName %></a> ti ha invitato ad unirti alla Squadra <span class=\"notification-bold\"><%= party %></span>",
|
||||
"challengeBannedWords": "La tua Sfida contiene una o più parolacce o riferimenti a tematiche adulte. Modifica la tua Sfida in modo da poterla salvare. Devi rimuovere la parola, non solo censurarla.",
|
||||
"challengeBannedSlurs": "La tua Sfida contiene una parolaccia che viola le linee guida della community di Habitica e i tuoi privilegi di creazione delle chat e delle Sfide sono stati revocati. Contatta admin@habitica.com per maggiori informazioni.",
|
||||
"challengeBannedSlursPrivate": "La tua Sfida contiene un insulto che viola le linee guida della community di Habitica. Rimuovilo in modo da poter salvare la tua Sfida."
|
||||
"challengeBannedSlurs": "La tua Sfida contiene una parolaccia che viola le Linee Guida della Community di Habitica e i tuoi privilegi di creazione delle chat e delle Sfide sono stati revocati. Contatta admin@habitica.com per maggiori informazioni.",
|
||||
"challengeBannedSlursPrivate": "La tua Sfida contiene un insulto che viola le Linee Guida della Community di Habitica. Rimuovilo in modo da poter salvare la tua Sfida.",
|
||||
"readyToUpgrade": "Pronto per l'Aggiornamento?",
|
||||
"groupManager": "Da usare per lavoro",
|
||||
"upgradeYourCrew": "Sei pronto a migliorare il tuo Gruppo?",
|
||||
"createGroupToday": "Crea oggi il tuo Gruppo!",
|
||||
"createGroupTitle": "Crea Gruppo",
|
||||
"sendTotal": "Totale:",
|
||||
"startPartyDetail": "Crea la tua Squadra o unisciti a una già esistente <br/> per affrontare le Missioni e dare una spinta alla tua motivazione!",
|
||||
"currentlyLookingForParty": "Stai cercando una Squadra!",
|
||||
"messageCopiedToClipboard": "Il messaggio è stato copiato negli appunti.",
|
||||
"questWithOthers": "Affronta le Missioni con gli altri",
|
||||
"groupTeacher": "Da usare per l'istruzione",
|
||||
"classLabel": "Classe:",
|
||||
"groupFriends": "Da usare con gli amici",
|
||||
"languageLabel": "Lingua:",
|
||||
"tavernDiscontinuedDetail": "A causa di una serie di fattori, tra cui i cambiamenti nel modo in cui la nostra utenza interagisce con Habitica, le risorse necessarie per gestire questi spazi sono diventate sproporzionate rispetto al numero di persone che vi partecipano e insostenibili nel lungo periodo.",
|
||||
"tavernDiscontinuedLinks": "Leggi di più sulla <a href='/static/faq/tavern-and-guilds'>Cessazione del Servizio della Taverna e delle Gilde”</a>, oppure torna alla <a href='/'>pagina iniziale</a>.",
|
||||
"interestedLearningMore": "Curioso di saperne di più?",
|
||||
"chatSunsetWarning": "⚠️ <strong>Le chat delle Gilde e della Taverna di Habitica saranno disattivate l'8 Agosto 2023.</strong> <a href='/static/faq/tavern-and-guilds'>Clicca qui</a> per saperne di più.",
|
||||
"partyExceedsInvitesLimit": "Una Squadra può avere al massimo <%= maxInvites %> inviti in sospeso.",
|
||||
"lookForParty": "Cerca una Squadra",
|
||||
"groupParentChildren": "Da usare in famiglia",
|
||||
"lookingForPartyTitle": "Trova Membri",
|
||||
"findMorePartyMembers": "Trova Nuovi Membri",
|
||||
"invitedToYourParty": "<strong>Invitato nella tua Squadra!</strong> Clicca per annullare",
|
||||
"findPartyMembers": "Trova Membri per la Squadra",
|
||||
"noOneLooking": "Al momento non c'è nessuno che sta cercando una Squadra.<br>Prova a ricontrollare più tardi!",
|
||||
"tavernDiscontinued": "La Taverna e le Gilde sono state chiuse",
|
||||
"checkinsLabel": "Check-ins:",
|
||||
"blockedUser": "<strong>Hai bloccato questo giocatore.</strong> Non potrà più inviarti messaggi privati, ma potrai comunque vedere i suoi post.",
|
||||
"bannedUser": "<strong>Questo giocatore è stato bannato.</strong>",
|
||||
"partyFinderDescription": "Vuoi unirti ad una Squadra con altri giocatori ma non conosci nessuno? Fai sapere ai capi della Squadre che stai cercando un invito!",
|
||||
"chooseAnOption": "Scegli un'opzione",
|
||||
"upgradeExistingGroup": "Aggiorna un Gruppo Esistente",
|
||||
"createNewGroup": "Crea un Nuovo Gruppo",
|
||||
"yourParty": "La Tua Squadra",
|
||||
"previouslyUpgradedGroup": "Gruppo già aggiornato",
|
||||
"inviteOthersForAdditional": "Invita altri nel tuo Gruppo per un ulteriore",
|
||||
"perMember": "a membro",
|
||||
"oneMember": "1 membro",
|
||||
"membersCount": "<%= count %> membri",
|
||||
"pendingCount": "(<%= count %> in sospeso)",
|
||||
"upgradeCancelsPendingInvites": "L'aggiornamento della tua Squadra annullerà tutti gli inviti in sospeso",
|
||||
"groupPlanBillingFYIShort": "Gli abbonamenti al Piano di Gruppo si rinnovano automaticamente, a meno che non li disdici almeno 24 ore prima della scadenza del periodo in corso. L'addebito avverrà entro 24 ore prima del rinnovo dell'abbonamento, in base al numero di membri presenti nel tuo Piano di Gruppo in quel momento. Se aggiungi membri tra un periodo di fatturazione e l'altro, nel ciclo di fatturazione successivo ti verrà addebitato un importo aggiuntivo, calcolato proporzionalmente.",
|
||||
"additionalMembersProrated": "I membri aggiuntivi invitati nel corso del mese verranno conteggiati nel totale del ciclo di fatturazione successivo con un addebito proporzionale.",
|
||||
"checkGroupPlanFAQ": "Consulta le <a href='/static/faq#what-is-group-plan'>FAQ sui Piani di Gruppo</a> per scoprire come sfruttare al meglio la tua esperienza con le attività condivise.",
|
||||
"groupPlanBillingFYI": "Gli abbonamenti al Piano di Gruppo si rinnovano automaticamente, a meno che non li disdici almeno 24 ore prima della scadenza del periodo in corso. Puoi disdirli dalla scheda “Fatturazione di Gruppo” del tuo Piano di Gruppo. L'addebito avverrà entro 24 ore prima del rinnovo dell'abbonamento, in base al numero di membri presenti nel tuo Piano di Gruppo in quel momento. Se aggiungi membri tra un periodo di fatturazione e l'altro, nel ciclo di fatturazione successivo ti verrà addebitato un importo aggiuntivo, calcolato proporzionalmente."
|
||||
}
|
||||
|
||||
@@ -27,10 +27,10 @@
|
||||
"seasonalShopClosedTitle": "<%= linkStart %>Leslie<%= linkEnd %>",
|
||||
"seasonalShopTitle": "<%= linkStart %>Maga Stagionale<%= linkEnd %>",
|
||||
"seasonalShopClosedText": "Il Negozio Stagionale al momento è chiuso!! È aperto solo durante i quattro Gran Galà di Habitica.",
|
||||
"seasonalShopSummerText": "Buon Summer Splash!! Vuoi comprare degli oggetti rari? Assicurati di prenderli prima della fine del Gala!",
|
||||
"seasonalShopFallText": "Buon Fall Festival!! Vuoi comprare degli oggetti rari? Assicurati di prenderli prima della fine del Gala!",
|
||||
"seasonalShopWinterText": "Buon Winter Wonderland!! Vuoi comprare degli oggetti rari? Assicurati di prenderli prima della fine del Gala!",
|
||||
"seasonalShopSpringText": "Buona Festa di Primavera!! Vuoi comprare degli oggetti rari? Assicurati di prenderli prima della fine del Gala!",
|
||||
"seasonalShopSummerText": "Buon Summer Splash!! Vuoi comprare degli oggetti rari? Assicurati di prenderli prima della fine del Galà!",
|
||||
"seasonalShopFallText": "Buon Fall Festival!! Vuoi comprare degli oggetti rari? Assicurati di prenderli prima della fine del Galà!",
|
||||
"seasonalShopWinterText": "Buon Winter Wonderland!! Vuoi comprare degli oggetti rari? Assicurati di prenderli prima della fine del Galà!",
|
||||
"seasonalShopSpringText": "Buona Festa di Primavera!! Vuoi comprare degli oggetti rari? Assicurati di prenderli prima della fine del Galà!",
|
||||
"seasonalShopFallTextBroken": "Oh... Benvenuto nel Negozio Stagionale... Abbiamo in vendita oggetti dell'Edizione Stagionale autunnale, o qualcosa del genere... Tutto quello che vedi qui sarà disponibile per l'acquisto durante l'evento \"Fall Festival\" di ogni anno, ma siamo aperti sono fino al 31 ottobre... Penso che dovresti rifornirti ora altrimenti dovrai aspettare... e aspettare... e aspettare... <strong>*sigh*</strong>",
|
||||
"seasonalShopBrokenText": "Il mio padiglione!!!!!!! Le mie decorazioni!!!! Oh, il Dysheartener ha distrutto tutto :( Ti prego, aiutami a sconfiggerlo nella Taverna perché io possa ricostruire!",
|
||||
"seasonalShopRebirth": "Se hai comprato questo equipaggiamento in passato ma attualmente non lo possiedi, potrai riacquistarlo dalla colonna delle Ricompense. All'inizio potrai comprare solo gli oggetti per la tua classe attuale (Guerriero, se non l'hai ancora scelta/cambiata), ma niente paura, gli altri oggetti specifici per le varie classi diventeranno disponibili se ti converti a quella classe.",
|
||||
@@ -165,7 +165,7 @@
|
||||
"fall2020DeathsHeadMothHealerSet": "Sfinge Testa di Morto (Guaritore)",
|
||||
"fall2020WraithWarriorSet": "Spettro (Guerriero)",
|
||||
"royalPurpleJackolantern": "Zucca di Halloween Porpora",
|
||||
"g1g1Limitations": "Questo è un evento a tempo limitato che inizia il 15 dicembre alle 14:00 ora italiana (13:00 UTC) e terminerà il 9 gennaio alle 5:59 ora italiana (4:59 UTC). Questa promozione si applica solo quando fai un regalo a un altro Habitante. Se tu o il destinatario del regalo avete già un abbonamento, l'abbonamento in regalo aggiungerà mesi di credito che verranno utilizzati solo dopo l'annullamento o la scadenza dell'abbonamento corrente.",
|
||||
"g1g1Limitations": "Questo è un evento a tempo limitato che inizia il <%= promoStartMonth %> <%= promoStartOrdinal %> alle <%= promoStartTime %> e termina il <%= promoEndMonth %> <%= promoEndOrdinal %> alle <%= promoEndTime %>. Questa promozione si applica solo quando fai un regalo a un altro Habitante. Se tu o il destinatario del regalo avete già un abbonamento, l'abbonamento in regalo aggiungerà mesi di credito che verranno utilizzati solo dopo l'annullamento o la scadenza dell'abbonamento corrente.",
|
||||
"limitations": "Limitazioni",
|
||||
"g1g1HowItWorks": "Digita il nome utente dell'account a cui desideri regalare. Da lì, scegli la durata che desideri regalare. Il tuo account verrà automaticamente ricompensato con la stesso livello di abbonamento che hai appena regalato.",
|
||||
"howItWorks": "Come funziona",
|
||||
@@ -237,5 +237,58 @@
|
||||
"fall2023ScaryMovieWarriorSet": "Film dell'Orrore (Guerriero)",
|
||||
"fall2023ScarletWarlockMageSet": "Stregone Scarlatto (Mago)",
|
||||
"fall2023WitchsBrewRogueSet": "Infuso della Strega (Ladro)",
|
||||
"fall2023BogCreatureHealerSet": "Creatura della Palude (Guaritore)"
|
||||
"fall2023BogCreatureHealerSet": "Creatura della Palude (Guaritore)",
|
||||
"winter2025SnowRogueSet": "Set Neve (Ladro)",
|
||||
"winter2025MooseWarriorSet": "Set di Alci (Guerriero)",
|
||||
"winter2025AuroraMageSet": "Aurora Set (Mago)",
|
||||
"winter2025StringLightsHealerSet": "Set di Lucine a Strisce (Guaritore)",
|
||||
"spring2025SunshineWarriorSet": "Set Raggiante (Guerriero)",
|
||||
"spring2025CrystalPointRogueSet": "Set a Punta di Cristallo (Ladro)",
|
||||
"spring2025PlumeriaHealerSet": "Set Plumeria (Guaritore)",
|
||||
"spring2025MantisMageSet": "Set Mantide (Mago)",
|
||||
"winter2024FrozenHealerSet": "Congelato (Guaritore)",
|
||||
"fall2024FieryImpWarriorSet": "Set del Demone Ardente (Guerriero)",
|
||||
"fall2024UnderworldSorcerorMageSet": "Set del Mago dell'Oltretomba (Mago)",
|
||||
"fall2024SpaceInvaderHealerSet": "Set Invasore Spaziale (Guaritore)",
|
||||
"fall2024BlackCatRogueSet": "Set Gatto Nero (Ladro)",
|
||||
"summer2025ScallopWarriorSet": "Set Capesante (Guerriero)",
|
||||
"summer2025SquidRogueSet": "Set Calamaro (Ladro)",
|
||||
"summer2025SeaAngelHealerSet": "Set Angelo Marino (Guaritore)",
|
||||
"summer2025FairyWrasseMageSet": "Set Labride Fatato (Mago)",
|
||||
"fall2025SasquatchWarriorSet": "Set Bigfoot (Guerriero)",
|
||||
"fall2025SkeletonRogueSet": "Set Scheletro (Ladro)",
|
||||
"fall2025KoboldHealerSet": "Set Koboldo (Guaritore)",
|
||||
"fall2025MaskedGhostMageSet": "Set Fantasma Mascherato (Mago)",
|
||||
"limitedEdition": "Edizione Limitata",
|
||||
"gemSaleLimitationsText": "Questa promozione è valida solo durante l'evento a tempo limitato. L'evento inizia il <%= eventStartMonth %> <%= eventStartOrdinal %> alle <%= eventStartTime %> <%= timeZone %> e terminerà il <%= eventEndMonth %> <%= eventEndOrdinal %> alle <%= eventEndTime %> <%= timeZone %>. L'offerta promozionale è disponibile solo per l'acquisto di Gemme per uso personale.",
|
||||
"spring2026FrogWarriorSet": "Set Rana (Guerriero)",
|
||||
"spring2026BranchRogueSet": "Set di Ramo Primaverile (Ladro)",
|
||||
"spring2026SnowdropHealerSet": "Set Bucaneve (Guaritore)",
|
||||
"spring2026MaypoleMageSet": "Set del Palo di Maggio (Mago)",
|
||||
"anniversaryGryphatricePrice": "Ricevilo oggi per <strong>$9,99</strong> o <strong>60 gemme</strong>",
|
||||
"winter2026SkiRogueSet": "Set da Sci (Ladro)",
|
||||
"winter2026RimeReaperWarriorSet": "Set Mietitore Ghiacciato (Guerriero)",
|
||||
"winter2026PolarBearHealerSet": "Set Orso Polare (Guaritore)",
|
||||
"winter2026MidwinterCandleMageSet": "Set di Candele di Mezz'Inverno (Mago)",
|
||||
"buyNowMoneyButton": "Acquista ora per $9,99",
|
||||
"jubilantSuccess": "Hai acquistato con successo la <strong>Grifatrice Giubilante!</strong>",
|
||||
"jubilantGryphatricePromo": "Animale Animato Grifatrice Giubilante",
|
||||
"anniversaryGryphatriceText": "La rara Grifatrice Giubilante si unisce ai festeggiamenti per il compleanno! Non perdere l'occasione di ricevere questo esclusivo animale domestico animato.",
|
||||
"buyNowGemsButton": "Acquista ora per 60 Gemme",
|
||||
"wantToPayWithGemsText": "Vuoi pagare con le Gemme?",
|
||||
"wantToPayWithMoneyText": "Vuoi pagare con Stripe, Paypal o Amazon?",
|
||||
"ownJubilantGryphatrice": "<strong>Hai ricevuto la Grifatrice Giubilante!</strong> Vai su Animali e Cavalcature per equipaggiarla!",
|
||||
"twentyGems": "20 Gemme",
|
||||
"birthdaySet": "Set di Compleanno",
|
||||
"dayFive": "Giorno 5",
|
||||
"dayTen": "Giorno 10",
|
||||
"partyRobes": "Vesti da Festa",
|
||||
"stableVisit": "Vai su Animali e Cavalcature per equipaggiarla!",
|
||||
"takeMeToStable": "Portami su Animali e Cavalcature",
|
||||
"plentyOfPotions": "Insieme di Pozioni",
|
||||
"plentyOfPotionsText": "Stiamo riportando 10 delle Pozioni di Schiusa Magiche preferite per la Community. Vai nel Mercato per completare la tua collezione!",
|
||||
"visitTheMarketButton": "Vai nel Mercato",
|
||||
"fourForFree": "Quattro Gratis",
|
||||
"dayOne": "Giorno 1",
|
||||
"fourForFreeText": "Per far proseguire i festeggiamenti, regaleremo Vesti da Festa, 20 Gemme, uno Sfondo di compleanno in edizione limitata e un set di oggetti che include un Mantello, Spallacci e una Maschera per gli occhi."
|
||||
}
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
"messageGroupChatFlagAlreadyReported": "Hai già segnalato questo messaggio",
|
||||
"messageGroupChatNotFound": "Messaggio non trovato!",
|
||||
"messageGroupChatAdminClearFlagCount": "Solo un amministratore può azzerare il conteggio flag!",
|
||||
"messageCannotFlagSystemMessages": "Non puoi segnalare un messaggio di sistema. Se hai bisogno di segnalare una violazione delle Linee guida della community relativa a questo messaggio, per favore invia per e-mail uno screenshot e una spiegazione del problema al Responsabile della Comunità, all'indirizzo <%= communityManagerEmail %>.",
|
||||
"messageCannotFlagSystemMessages": "Non puoi segnalare un messaggio di sistema. Se hai bisogno di segnalare una violazione delle Linee Guida della Community relativa a questo messaggio, per favore invia per email uno screenshot e una spiegazione del problema al Responsabile della Comunità, all'indirizzo <%= communityManagerEmail %>.",
|
||||
"messageCannotLeaveWhileQuesting": "Non puoi accettare questo invito ad unirti ad una squadra mentre partecipi ad una missione. Se vuoi unirti a questa squadra devi prima annullare la missione, puoi farlo dalla schermata della squadra. Ti verrà restituita la Pergamena.",
|
||||
"messageUserOperationProtected": "Il percorso `<%= operation %>` non è stato salvato, perché è un percorso protetto.",
|
||||
"messageNotificationNotFound": "Notifica non trovata.",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"welcomeTo": "Benvenuto in",
|
||||
"welcomeBack": "Bentornato!",
|
||||
"justin": "Justin",
|
||||
"justinIntroMessage1": "Ciao! Devi essere nuovo qui. Mi chiamo <strong>Justin</strong>, la tua guida ad Habitica.",
|
||||
"justinIntroMessage1": "Ciao! Devi essere nuovo qui. Io mi chiamo <strong>Justin</strong>, e sarò la tua guida su Habitica. Dunque, come ti piacerebbe apparire? Potrai cambiare il tuo aspetto anche più tardi.",
|
||||
"justinIntroMessage3": "Bene! Ora, su cosa vorresti lavorare durante questo viaggio?",
|
||||
"introTour": "Eccoci qua! Ho creato alcune Attività basate sui tuoi interessi, così hai già qualcosa con cui partire. Clicca su un'Attività per modificarla oppure aggiungine di nuove!",
|
||||
"prev": "Prec",
|
||||
@@ -16,13 +16,13 @@
|
||||
"welcomeToTavern": "Benvenuto nella Taverna!",
|
||||
"sleepDescription": "Hai bisogno di una pausa? Sospendi i danni (dalle Impostazioni) per mettere in pausa alcune meccaniche di gioco di Habitica:",
|
||||
"sleepBullet1": "Le tue Attività Giornaliere non completate non ti danneggeranno (i boss potranno causarti danno comunque in base alle Attività Giornaliere non completate dei tuoi compagni di Squadra)",
|
||||
"sleepBullet2": "Il conteggio di serie delle tue attività giornaliere e delle tue abitudini non verranno resettate",
|
||||
"sleepBullet2": "Il conteggio di serie delle tue Attività Giornaliere e delle tue abitudini non verranno resettate",
|
||||
"sleepBullet3": "Il danno che provochi ai boss delle missioni o gli oggetti trovati nelle missioni di tipo collezione, rimarranno in sospeso finché non riattiverai i Danni",
|
||||
"pauseDailies": "Sospendi danni",
|
||||
"unpauseDailies": "Riattiva danni",
|
||||
"pauseDailies": "Sospendi Danni",
|
||||
"unpauseDailies": "Riattiva Danni",
|
||||
"staffAndModerators": "Staff e Moderatori",
|
||||
"communityGuidelinesIntro": "Habitica cerca di creare un ambiente accogliente per utenti di tutte le età e origini, specialmente in luoghi come i Gruppi e le Squadre. Se hai domande, sei pregato di consultare le nostre <a href='/static/community-guidelines' target='_blank'>Linee guida della community</a>.",
|
||||
"acceptCommunityGuidelines": "Accetto di seguire le linee guida della community",
|
||||
"communityGuidelinesIntro": "Habitica cerca di creare un ambiente accogliente per utenti di tutte le età e origini, specialmente in luoghi come i Gruppi e le Squadre. Se hai domande, sei pregato di consultare le nostre <a href='/static/community-guidelines' target='_blank'>Linee Guida della Community</a>.",
|
||||
"acceptCommunityGuidelines": "Accetto di seguire le Linee Guida della Community",
|
||||
"worldBossEvent": "Evento Boss Mondiale",
|
||||
"worldBossDescription": "Descrizione Boss Mondiale",
|
||||
"welcomeMarketMobile": "Benvenuto nel Mercato! Compra uova e pozioni rare! Vieni a vedere cosa abbiamo da offrire.",
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
"mountsReleased": "Cavalcature liberate",
|
||||
"welcomeStable": "Benvenuto in Animali e Cavalcature!",
|
||||
"welcomeStableText": "Benvenuto nella scuderia! Io sono Matt, il domatore di bestie. Ogni volta che completi un'attività hai una probabilità casuale di ricevere un Uovo o una Pozione di Schiusa! Quando fai schiudere un Animale, apparirà qui! Clicca sull'immagine dell'Animale per aggiungerlo al tuo Avatar. Nutrili con il Cibo che trovi e diventeranno Cavalcature possenti.",
|
||||
"petLikeToEat": "Cosa piace mangiare al mio animale?",
|
||||
"petLikeToEat": "Cosa piace mangiare al mio Animale?",
|
||||
"petLikeToEatText": "Gli animali cresceranno indipendentemente da cosa gli dai da mangiare, ma cresceranno più velocemente mangiando il loro cibo preferito. Sperimenta per trovare il modo migliore, oppure leggi la risposta qui: <br/> <a href=\"/static/faq#pet-foods\" target=\"_blank\">https://habitica.com/static/faq#pet-foods</a>",
|
||||
"filterByStandard": "Base",
|
||||
"filterByMagicPotion": "Pozione Magica",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"quests": "Missioni",
|
||||
"quest": "missione",
|
||||
"petQuests": "Missioni animali e cavalcature",
|
||||
"petQuests": "Missioni Animali e Cavalcature",
|
||||
"unlockableQuests": "Missioni sbloccabili",
|
||||
"goldQuests": "Serie di Missioni dei Masterclasser",
|
||||
"questDetails": "Dettagli missione",
|
||||
@@ -79,7 +79,7 @@
|
||||
"questAlreadyStarted": "La missione è già iniziata.",
|
||||
"bossDamage": "Hai danneggiato il boss!",
|
||||
"questInvitationNotificationInfo": "Sei stato invitato a partecipare a una missione",
|
||||
"hatchingPotionQuests": "Missioni della Pozione di Schiusa Magica",
|
||||
"hatchingPotionQuests": "Missioni per le Pozioni di Schiusa Magiche",
|
||||
"questOwner": "Proprietario della missione",
|
||||
"cancelQuest": "Annulla missione",
|
||||
"backToSelection": "Ritorna alla scelta della missione",
|
||||
|
||||
@@ -15,49 +15,49 @@
|
||||
"questGryphonCompletion": "Sconfitta, la possente bestia se la svigna, piena di vergogna, verso il suo padrone. \"Ho dato la mia parola! Ben fatto, avventurieri!\" esclama <strong>baconsaur</strong>, \"Vi prego, prendete pure alcune uova del grifone. Sono certo che saprete come crescere bene questi piccoletti!\"",
|
||||
"questGryphonBoss": "Grifone Fiammeggiante",
|
||||
"questGryphonDropGryphonEgg": "Grifone (uovo)",
|
||||
"questGryphonUnlockText": "Sblocca l'acquisto delle uova di Grifone nel Mercato",
|
||||
"questGryphonUnlockText": "Sblocca l'acquisto delle Uova di Grifone nel Mercato",
|
||||
"questHedgehogText": "La Bestia Spinosa",
|
||||
"questHedgehogNotes": "I ricci sono delle creature davvero simpatiche, oltre ad essere alcuni degli animali più affettuosi che un Habitante possa avere al proprio fianco. Ma corre voce che, se gli viene dato del latte dopo la mezzanotte, crescono diventando molto irritabili. E cinquanta volte più grandi del normale. E <strong>InspectorCaracal</strong> ha fatto proprio questo. Oops.",
|
||||
"questHedgehogCompletion": "Il tuo gruppo ha calmato con successo il riccio! Dopo essere tornato alle proprie dimensioni normali, zoppica verso le sue uova. Ritorna spingendo alcune di esse verso il tuo gruppo. Speriamo che questi ricci ora apprezzino di più il latte!",
|
||||
"questHedgehogBoss": "Bestia Spinosa",
|
||||
"questHedgehogDropHedgehogEgg": "Riccio (uovo)",
|
||||
"questHedgehogUnlockText": "Sblocca l'acquisto delle uova di Riccio nel Mercato",
|
||||
"questHedgehogUnlockText": "Sblocca l'acquisto delle Uova di Riccio nel Mercato",
|
||||
"questGhostStagText": "Lo Spirito della Primavera",
|
||||
"questGhostStagNotes": "Ahh, la primavera. Quel periodo dell'anno in cui il panorama ricomincia a riempirsi di colori. Il freddo e le cime innevate sono andate, come l'inverno. Dove prima regnava il gelo, ora torna a prevalere la briosa vita delle piante. Verdi foglie riempiono le chiome gli alberi, l'erba si tinge del suo colore migliore, un arcobaleno di fiori spunta in ogni luogo, e una bianca e mistica nebbia ricopre le pianure! ... Un momento. Nebbia mistica? \"Oh no\", esclama <strong>InspectorCaracal</strong> con apprensione, \"Pare che un qualche spirito sia la causa di questa nebbia. Oh, e sta correndo con rabbia verso di te.\"",
|
||||
"questGhostStagCompletion": "Lo spirito, apparentemente illeso, avvicina il proprio muso al terreno. Una voce pacifica avvolge la tua squadra. \"Chiedo perdono per il mio comportamento. Mi sono appena svegliato dal mio lungo sonno e pare che il mio buon senso non si sia completamente ripreso. Prendete queste come segno di scusa\". Delle uova si materializzano sull'erba accanto allo spirito. Senza dire una parola, lo spirito scappa nella foresta, risvegliando tutti i fiori al suo passaggio.",
|
||||
"questGhostStagBoss": "Cervo Fantasma",
|
||||
"questGhostStagDropDeerEgg": "Cervo (uovo)",
|
||||
"questGhostStagUnlockText": "Sblocca le Uova di Cervo, acquistabili nel Mercato",
|
||||
"questGhostStagUnlockText": "Sblocca l'acquisto delle Uova di Cervo nel Mercato",
|
||||
"questRatText": "Il Re dei Ratti",
|
||||
"questRatNotes": "Spazzatura! Enormi montagne di Attività Giornaliere non completate sono sparse per tutta Habitica! Il problema è diventato così serio che ora stanno comparendo orde di ratti ovunque. Noti @Pandah accarezzare una delle proprie bestie con affetto. Lei spiega che i ratti sono creature pacifiche che si nutrono di Attività Giornaliere non completate. Il vero problema è che queste Attività Giornaliere sono cadute nelle fognature, creando una pericolosa fossa che va ripulita. Stai scendendo nelle fognature, quando all'improvviso un gigantesco ratto, con occhi rosso sangue e denti gialli e marcescenti, ti attacca, difendendo la propria orda di roditori. Fuggirai in preda al panico o affronterai il leggendario Re dei Ratti?",
|
||||
"questRatCompletion": "Il gigantesco ratto viene sopraffatto dall'energia del tuo colpo finale, e i suoi occhi sbiadiscono fino a diventare grigi. La bestia comincia a dividersi in tanti piccoli ratti, che fuggono via impauriti. Noti @Pandah dietro di te, che osserva quello che rimane della leggendaria creatura. Spiega che i cittadini di Habitica, ispirati dal tuo coraggio, stanno velocemente completando le proprie Attività Giornaliere. Avverte però che bisogna essere prudenti, poiché se abbassiamo la guardia, il Re dei Ratti tornerà. Come ricompensa, @Pandah ti offre diverse uova di ratto. Notando la tua espressione turbata, sorride e dice \"faranno nascere dei bellissimi animali.\"",
|
||||
"questRatBoss": "Re Ratto",
|
||||
"questRatDropRatEgg": "Ratto (uovo)",
|
||||
"questRatUnlockText": "Sblocca l'acquisto delle uova di Ratto nel Mercato",
|
||||
"questRatUnlockText": "Sblocca l'acquisto delle Uova di Ratto nel Mercato",
|
||||
"questOctopusText": "Il Richiamo di Octothulu",
|
||||
"questOctopusNotes": "@Urse, un'avventurosa giovane scrittrice, ha chiesto il tuo aiuto per esplorare una misteriosa caverna in riva al mare. Tra le varie pozzanghere formate dalla marea, c'è un gigantesco cancello di stalattiti e stalagmiti. Appena ti avvicini al cancello, un'oscuro vortice compare alla sua base. Cominci ad avere un brutto presentimento, mentre un minaccioso drago-calamaro esce dal vortice. \"Il tentacolare discendente delle stelle si è risvegliato\", strilla follemente @Urse. \"Dopo decilioni di anni, il grande Octothulu è di nuovo libero!\"",
|
||||
"questOctopusCompletion": "Con un colpo finale, l'enorme creatura scappa via, tornando nel vortice dal quale era uscita. Non riesci a capire se @Urse è contenta della tua vittoria o dispiaciuta di aver visto la bestia andarsene. Senza dire una parola, i tuoi compagni di squadra ti fanno notare tre grandi e viscide uova, adagiate in una pozzanghera circondata da monete d'oro. \"Probabilmente sono solo uova di polpo\", dici con una punta di nervosismo. Mentre tornate a casa, @Urse scrive freneticamente sul suo diario e tu sospetti che questa non sarà l'ultima volta che sentirai parlare del grande Octothulu.",
|
||||
"questOctopusBoss": "Octothulu",
|
||||
"questOctopusDropOctopusEgg": "Polpo (uovo)",
|
||||
"questOctopusUnlockText": "Sblocca l'acquisto delle uova di Polpo nel Mercato",
|
||||
"questOctopusUnlockText": "Sblocca l'acquisto delle Uova di Polpo nel Mercato",
|
||||
"questHarpyText": "Aiuto! Un'arpia!",
|
||||
"questHarpyNotes": "Il coraggioso avventuriero @UncommonCriminal è scomparso nella foresta, mentre seguiva le tracce di un mostro alato avvistato diversi giorni prima. Stai per iniziare le ricerche, quando un pappagallo ferito atterra sul tuo braccio. Un'orribile cicatrice rovina il suo incantevole piumaggio. Legata a una zampa c'è una nota rovinata che spiega che, mentre difendeva il pappagallo, @UncommonCriminal è stato catturato da una malvagia Arpia, e ora ha disperatamente bisogno del tuo aiuto. Segurai il parrocchetto e, scoffiggendo l'Arpia, riuscirai a salvare @UncommonCriminal?",
|
||||
"questHarpyCompletion": "Un ultimo colpo abbatte finalmente l'Arpia, in un'esplosione di piume. Dopo una veloce scalata fino al suo nido trovi @UncommonCrininal, circondato da uova di pappagallo. Insieme ponete rapidamente le uova nei nidi vicini. Il pappagallo che ti aveva trovato comincia a strepitare rumorosamente, lasciando cadere delle uova tra le tue braccia. \"A causa dell'Arpia, alcune uova sono rimaste senza qualcuno che le protegga\", spiega @UncommonCriminal. \"Sembra che tu sia appena stato nominato pappagallo onorario!\"",
|
||||
"questHarpyBoss": "Arpia",
|
||||
"questHarpyDropParrotEgg": "Pappagallo (uovo)",
|
||||
"questHarpyUnlockText": "Sblocca l'acquisto delle uova di Pappagallo nel Mercato",
|
||||
"questHarpyUnlockText": "Sblocca l'acquisto delle Uova di Pappagallo nel Mercato",
|
||||
"questRoosterText": "Il Gallo Infuriato",
|
||||
"questRoosterNotes": "Per anni il fattore @extrajordanary ha usato i galli come sveglia. Ma ora è apparso un Gallo Gigante, ed il suo formidabile canto interrompe il sonno di tutto il popolo di Habitica! Gli abitanti, privati del sonno, faticano a tenere il passo con le proprie attività giornaliere. @Pandoro ha deciso che è giunto il momento di porre fine a tutto questo: \"Per favore, c'è qualcuno in grado di insegnare a quel Gallo a cantare come tutti gli altri?\" Ti offri volontario e, una mattina presto, ti avvicini di soppiatto al Gallo -- si gira però verso di te, sbattendo le sue gigantesche ali e mostrando i suoi artigli affilati. Il suo canto, questa volta, preannuncia una battaglia.",
|
||||
"questRoosterNotes": "Per anni il fattore @extrajordanary ha usato i galli come sveglia. Ma ora è apparso un Gallo Gigante, ed il suo formidabile canto interrompe il sonno di tutto il popolo di Habitica! Gli abitanti, privati del sonno, faticano a tenere il passo con le proprie Attività Giornaliere. @Pandoro ha deciso che è giunto il momento di porre fine a tutto questo: \"Per favore, c'è qualcuno in grado di insegnare a quel Gallo a cantare come tutti gli altri?\" Ti offri volontario e, una mattina presto, ti avvicini di soppiatto al Gallo -- si gira però verso di te, sbattendo le sue gigantesche ali e mostrando i suoi artigli affilati. Il suo canto, questa volta, preannuncia una battaglia.",
|
||||
"questRoosterCompletion": "Con grande forza e un pizzico di astuzia, hai domato la bestia selvaggia. Le sue orecchie, prima otturate da piume e attività mezze dimenticate, ora sono come nuove. Canta placidamente, strusciando il becco sulla tua spalla. Il giorno dopo, mentre ti prepari a partire, @EmeraldOx ti raggiunge con un cesto coperto da un panno. \"Aspetta! Quando sono entrato nel pollaio questa mattina, il Gallo Gigante ha spinto queste verso il giaciglio dove hai dormito. Penso voglia che le abbia tu.\" Togli il telo per scoprire tre fragili uova.",
|
||||
"questRoosterBoss": "Gallo Gigante",
|
||||
"questRoosterDropRoosterEgg": "Gallo (uovo)",
|
||||
"questRoosterUnlockText": "Sblocca l'acquisto delle uova di Gallo nel Mercato",
|
||||
"questRoosterUnlockText": "Sblocca l'acquisto delle Uova di Gallo nel Mercato",
|
||||
"questSpiderText": "L' Aracnide Ghiacciato",
|
||||
"questSpiderNotes": "Quando inizia a fare freddo, sui vetri delle finestre degli Habitanti iniziano ad apparire delicati ghirigori cristallini... tranne per @Arcosine, le cui finestre sono completamente congelate dal Ragno del Gelo che ha preso dimora in casa sua. Oh cielo...",
|
||||
"questSpiderCompletion": "Il Ragno del Gelo capitola, lasciandosi dietro un mucchietto di ghiaccio ed un po' delle sue uova incantate. @Arcosine te le offre più che volentieri come ricompensa. Riuscirai forse ad allevare dei ragni come animali da compagnia? Possibilmente che non minaccino la tua vita?",
|
||||
"questSpiderBoss": "Ragno del Gelo",
|
||||
"questSpiderDropSpiderEgg": "Ragno (uovo)",
|
||||
"questSpiderUnlockText": "Sblocca l'acquisto delle uova di Ragno nel Mercato",
|
||||
"questSpiderUnlockText": "Sblocca l'acquisto delle Uova di Ragno nel Mercato",
|
||||
"questGroupVice": "Vizio la Viverna Oscura",
|
||||
"questVice1Text": "Vizio, Parte 1: Liberati dall'Influsso del Drago",
|
||||
"questVice1Notes": "Dicono che una terribile minaccia si celi nelle caverne del monte Habitica. Un mostro la cui presenza stravolge la volontà dei forti eroi della terra, spingendoli verso le cattive abitudini e la pigrizia! La bestia è un enorme drago dall'immenso potere, ed è composto delle ombre stesse. Vizio, l'infida Viverna Oscura. Coraggiosi Habitanti, alzatevi e sconfiggete questa crudele creatura una volta per tutte, ma solo se vi ritenete all'altezza della sua incredibile potenza. <br><br>Come potete aspettarvi di combattere la bestia se essa ha già il controllo su di voi? Non cadete vittime della pigrizia e del vizio! Lavorate duramente per liberarvi dall'influsso dell'oscuro drago!",
|
||||
@@ -125,10 +125,10 @@
|
||||
"questDilatoryNotes": "Avremmo dovuto ascoltare gli avvertimenti.<br><br>Scintillanti occhi scuri. Scaglie antiche. Mascelle enormi e denti luccicanti. Abbiamo risvegliato qualcosa di orribile dal crepaccio: <strong>il Drago Terrore di Dilatoria!</strong>Gli Habitanti sono fuggiti in tutte le direzioni quando è sbucato fuori dal mare, con il suo collo spaventosamente lungo che si spingeva a centinaia di metri fuori dall'acqua, mentre mandava in frantumi le finestre con il suo feroce ruggito.<br><br>\"Dev'essere questo ciò che ha buttato giù Dilatoria!\" grida Lemoness. \"Non è stato il peso dei compiti trascurati - semplicemente le Attività Giornaliere rosso scuro hanno attirato la sua attenzione!\"<br><br>\"Emana energia magica da tutti i pori!\", grida @Baconsaur. \"Per essere vissuto così a lungo, dev'essere in grado di curarsi! Come possiamo sconfiggerlo?\"<br><br>Beh, nello stesso modo in cui sconfiggiamo tutte le bestie - con la produttività! Presto, Habitica, uniamoci e colpiamolo completando le nostre attività, combatteremo questo mostro tutti insieme. (Non c'è bisogno di abbandonare le missioni precedenti - noi crediamo nella vostra capacità di colpire due volte!) Non ci attaccherà individualmente, ma più Attività Giornaliere saltiamo, più ci avviciniamo a innescare il suo Colpo della Negligenza - e non mi piace il modo in cui sta fissando la Taverna....",
|
||||
"questDilatoryBoss": "Drago Terrore di Dilatoria",
|
||||
"questDilatoryBossRageTitle": "Colpo della Negligenza",
|
||||
"questDilatoryBossRageDescription": "Quando questa barra sarà completamente piena, il Drago Terrore di Dilatoria scatenerà il caos sul terreno di Habitica",
|
||||
"questDilatoryBossRageDescription": "Quando questa barra sarà completamente piena, il Drago Terrore di Dilatoria scatenerà il caos sulle terre di Habitica",
|
||||
"questDilatoryDropMantisShrimpPet": "Canocchia (animale)",
|
||||
"questDilatoryDropMantisShrimpMount": "Canocchia (cavalcatura)",
|
||||
"questDilatoryBossRageTavern": "Il Drago Terrore scaglia il COLPO DELLA NEGLIGENZA!\n\nOh no! Nonostante tutti i nostri sforzi, ci siamo lasciati scappare alcune Attività giornaliere, e il loro colore rosso scuro ha attirato la furia del Drago! Con il suo spaventoso Colpo della Negligenza, ha decimato la Taverna! Per fortuna, abbiamo aperto una Locanda in una città nei paraggi, e siete liberi di continuare a chiacchierare sulla riva... ma il povero Daniel il Barista ha appena visto il suo amato locale sbriciolarsi davanti ai suoi occhi!\n\nSpero che la bestia non attacchi di nuovo!",
|
||||
"questDilatoryBossRageTavern": "Il Drago Terrore scaglia il COLPO DELLA NEGLIGENZA!\n\nOh no! Nonostante tutti i nostri sforzi, ci siamo lasciati scappare alcune Attività Giornaliere, e il loro colore rosso scuro ha attirato la furia del Drago! Con il suo spaventoso Colpo della Negligenza, ha decimato la Taverna! Per fortuna, abbiamo aperto una Locanda in una città nei paraggi, e siete liberi di continuare a chiacchierare sulla riva... ma il povero Daniel il Barista ha appena visto il suo amato locale sbriciolarsi davanti ai suoi occhi!\n\nSpero che la bestia non attacchi di nuovo!",
|
||||
"questDilatoryBossRageStables": "Il Drago Terrore scaglia il COLPO DELLA NEGLIGENZA!\n\nDiamine| Ancora una volta abbiamo lasciato troppe Dailies da parte. Il Drago ha scagliato il suo Colpo della Negligenza contro Matt e le stalle! Gli animali sono scappati in tutte le direzioni. Fortunatamente, sembrerebbe che i tuoi sono salvi!\n\nPovera Habitica! Spero che tutto questo non accada di nuovo. Sbrigati a svolgere tutte le tue attività!",
|
||||
"questDilatoryBossRageMarket": "Il Drago Terrore scaglia il COLPO DELLA NEGLIGENZA!\n\nAhhh! Il negozio di Alex il mercante è stato ridotto in mille pezzi dal Colpo della Negligenza del Drago! Me sembra che stiamo davvero indebolendo questa bestia. Dubito che abbia abbastanza energia per scagliarne un altro.\n\nQuindi non esitare, Habitica! Scacciamo questa dannata bestia dai nostri lidi!",
|
||||
"questDilatoryCompletion": "`La Sconfitta del Drago Terrore dei Dilatori`\n\nCe l'abbiamo fatta! Con un ultimo ruggito, il potente drago collassa e nuota lontano, molto lontano. Una folla di esultanti Habitanti riempie la costa! Abbiamo aiutato Matt, Daniel, e Alex a ricostruire i propri edifici. Ma che succede?\n\n`I cittadini ritornano!`\n\nOra che il Drago Terrore di Dilatoria è scappato, migliaia di colori scintillanti stanno risalendo il mare come un arcobaleno. È un banco di Canocchie... E tra loro, centinaia di sirene!\n\n\"Siamo i cittadini perduti di Dilatoria!\" spiega la loro leader, Manta. \"Quando Dilatoria affondò, le Canocchie che abitavano queste acque ci trasformarono in sirene con un incantesimo, in modo che potessimo sopravvivere. Ma, nella sua furia, quel terrificante drago ci ha intrappolati tutti in quell'oscuro crepaccio. Siamo stati prigionieri lì per centinaia di anni - ma ora siamo finalmente liberi di poter ricostruire la nostra città!\"\n\n\"Come ringraziamento\", dice solennemente il suo amico @Ottl, \"ti prego di accettare queste Canocchie, oltre ad esperienza, oro e la nostra eterna gratitudine.\"\n\n`Ricompense`\n* Canocchia (animale)\n* Canocchia (cavalcatura)\n* Cioccolata, Zucchero Filato Blu, Zucchero Filato Rosa, Pesce, Miele, Carne, Latte, Patata, Carne Ammuffita, Fragola",
|
||||
@@ -137,7 +137,7 @@
|
||||
"questSeahorseCompletion": "Lo stallone marino, finalmente domato, nuota docile accanto a te. \"Oh, guarda!\" esclama Kiwibot, \"Vuole che ci occupiamo dei suoi cuccioli\". Ti porge tre uova, dicendo: \"Crescili bene! E sappi che sarai sempre il benvenuto al Derby Dilatorio!\"",
|
||||
"questSeahorseBoss": "Stallone Marino",
|
||||
"questSeahorseDropSeahorseEgg": "Cavalluccio Marino (uovo)",
|
||||
"questSeahorseUnlockText": "Sblocca l'acquisto delle uova di Cavalluccio Marino nel Mercato",
|
||||
"questSeahorseUnlockText": "Sblocca l'acquisto delle Uova di Cavalluccio Marino nel Mercato",
|
||||
"questGroupAtom": "Attacco del Mondano",
|
||||
"questAtom1Text": "Attacco del Mondano, Parte 1: Disastro di Stoviglie!",
|
||||
"questAtom1Notes": "Hai raggiunto le rive del Lago Lavapiatti per un po' di relax... Ma il lago è infestato da piatti da lavare! Come sarà successo? Beh, non puoi permettere che il lago rimanga in questo stato. C'è soltanto una cosa da fare: lavare i piatti e salvare il vostro luogo di villeggiatura! Sarà meglio trovare un po' di sapone per pulire questa porcheria. Molto sapone...",
|
||||
@@ -159,21 +159,21 @@
|
||||
"questOwlCompletion": "Ben prima dell'alba svanisce il Gufo<br>ma comunque ormai tu sei stufo.<br>Forse è tempo di riposare un po'?<br>Poi sul giaciglio vedi un nido, ohibò!<br>Il Gufo Notturno sa che può esser bello<br>nella notte aspettar che canti il gallo<br>ma cinguetterà gentile il tuo gufetto<br>per dirti che è ora di andare a letto.",
|
||||
"questOwlBoss": "Il Gufo Notturno",
|
||||
"questOwlDropOwlEgg": "Gufo (uovo)",
|
||||
"questOwlUnlockText": "Sblocca l'acquisto delle uova di Gufo nel Mercato",
|
||||
"questOwlUnlockText": "Sblocca l'acquisto delle Uova di Gufo nel Mercato",
|
||||
"questPenguinText": "Il Gelo Volatile",
|
||||
"questPenguinNotes": "Nonostante sia una calda giornata estiva nella punta più a sud di Habitica, un freddo innaturale è calato su Lago Luminoso. Soffiano forti, gelidi venti mentre la riva inizia a ghiacciarsi. Spuntoni di ghiaccio emergono dal suolo, lanciando via erba e terra. @Melynnrose e @Breadstrings corrono verso di te. <br><br>\"Aiuto!\" dice @Melynnrose. \"Abbiamo portato qui un pinguino gigante perché congelasse il lago così avremmo potuto pattinare sul ghiaccio, ma abbiamo finito tutto il pesce con cui nutrirlo!\"<br><br>\"Si è arrabbiato e sta usando il suo soffio congelante su ogni cosa che vede!\" dice @Breadstrings. \"Ti prego, devi farlo calmare prima che ci ricopra tutti di ghiaccio!\" Sembra che questo pinguino debba... <em>raffreddare i sui bollenti spiriti.</em>",
|
||||
"questPenguinCompletion": "Una volta sconfitto il pinguino, il ghiaccio si scioglie. Il pinguino gignte si adagia al sole, gustandosi un secchio extra di pesce che hai trovato. Si allontana attraverso il lago pattinando, soffiando lievemente verso il basso per create del liscio, luccicante ghiaccio. Che strano volatile! \"Sembra che abbia anche lasciato qui qualche uovo,\" dice @Painter de Cluster. <br><br>@Rattify ride. \"Magari questi pinguini saranno un po' più... pacifici?\"",
|
||||
"questPenguinBoss": "Pinguino dei Ghiacci",
|
||||
"questPenguinDropPenguinEgg": "Pinguino (uovo)",
|
||||
"questPenguinUnlockText": "Sblocca l'acquisto delle uova di Pinguino nel Mercato",
|
||||
"questPenguinUnlockText": "Sblocca l'acquisto delle Uova di Pinguino nel Mercato",
|
||||
"questStressbeastText": "L' Abominevole Bestia dello Stress delle Steppe di Stoïkalm",
|
||||
"questStressbeastNotes": "Completa le tue Attività Giornaliere e le tue Cose da Fare per infliggere danni al Boss Mondiale! Le Attività Giornaliere non completate riempiono la barra del Colpo Stressante. Quando la barra del Colpo Stressante sarà piena, il Boss Mondiale attaccherà un NPC. Un Boss Mondiale non danneggerà mai i giocatori singoli o gli account in alcun modo. Verranno prese in considerazione solo le Attività Giornaliere dei giocatori attivi che non stanno riposando nella Locanda.<br><br>~*~<br><br>Il primo suono percepito è quello dei passi, più lenti e tuonanti del solito fuggi fuggi. Uno alla volta gli Habitanti guardano fuori dalle proprie finestre e rimangono a bocca aperta.<br><br>Ovviamente non è la prima volta che vediamo delle Bestie dello Stress - piccole creaturine malefiche che attaccano in momenti difficili. Ma questo? Questo torreggia sugli edifici, con zampe che sarebbero capaci di schiacciare un drago senza difficoltà. Il suo manto maleodorante emana un freddo gelido e, quando ruggisce, la ventata glaciale sradica i tetti dalle nostre case. Un mostro di questa portata non si era mai visto al di fuori di leggende antiche.<br><br>\"State in guardia, Habitanti!\" urla SabreCat. \"Barricatevi in casa - questa è l'Abominevole Bestia dello Stress!\"<br><br>\"Dev'essere composto di secoli e secoli di stress!\" esclama Kiwibot, serrando la porta della Taverna e sigillando le finestre.<br><br>\"Le steppe di Stoïkalm\", dice Lemoness, scura in viso. \"Per tutto questo tempo abbiamo pensato che fossero placide e senza preoccupazioni, ma dovevano stare nascondendo in segreto il loro stress da qualche parte. Per generazioni, stava crescendo fino a creare questo, e ora è scappato e ha attaccato loro - e noi!\"<br><br>C'è un solo modo per liberarsi di una Bestia dello Stress, che sia abominevole o meno, ed è attaccarlo completando Attività Giornaliere e Cose da Fare! Uniamo le forze e combattiamo questo temibile nemico - ma assicuriamoci di non trascurare le nostre attività, o le nostre Attività Giornaliere non completate potrebbero far infuriare la bestia così tanto da provocare un violento attacco...",
|
||||
"questStressbeastBoss": "L' Abominevole Bestia dello Stress",
|
||||
"questStressbeastBossRageTitle": "Colpo Stressante",
|
||||
"questStressbeastBossRageDescription": "Quando questo indicatore si riempirà, il Colpo Stressante dell'Abominevole Bestia dello Stress si abbatterà su Habitica!",
|
||||
"questStressbeastDropMammothPet": "Mammut (animale)",
|
||||
"questStressbeastDropMammothPet": "Mammut (Animale)",
|
||||
"questStressbeastDropMammothMount": "Mammut (cavalcatura)",
|
||||
"questStressbeastBossRageStables": "\"Abominevole Bestia dello Stress usa Colpo Stressante!\"\n\nL'accumulo di stress cura Abominevole Bestia dello Stress!\n\nOh no! Nonostante i nostri sforzi alcune Attività Giornaliere sono fuggite, e il loro colorito nero-rosso ha fatto infuriare l'Abominevole Bestia dello Stress, che ha recuperato punti vita! L'orribile creatura corre verso la Scuderia, ma Matt il Domatore si mette coraggiosamente sul suo cammino, per proteggere Animali e Cavalcature. La Bestia dello Stress afferra Matt in una tremenda morsa, ma per lo meno si è distratto. Presto! Teniamo d'occhio le nostre Attività Giornaliere e sconfiggiamo questo mostro prima che attacchi ancora!",
|
||||
"questStressbeastBossRageStables": "\"Abominevole Bestia dello Stress usa COLPO STRESSANTE!\"\n\nL'accumulo di stress cura Abominevole Bestia dello Stress!\n\nOh no! Nonostante i nostri sforzi alcune Attività Giornaliere sono fuggite, e il loro colorito nero-rosso ha fatto infuriare l'Abominevole Bestia dello Stress, che ha recuperato punti vita! L'orribile creatura corre verso la scuderia, ma Matt il Domatore si mette coraggiosamente sul suo cammino, per proteggere Animali e Cavalcature. La Bestia dello Stress afferra Matt in una tremenda morsa, ma per lo meno si è distratto. Presto! Teniamo d'occhio le nostre Attività Giornaliere e sconfiggiamo questo mostro prima che attacchi ancora!",
|
||||
"questStressbeastBossRageBailey": "\"Abominevole Bestia dello Stress usa Colpo Stressante!\"\n\nL'accumulo di stress cura Abominevole Bestia dello Stress!\n\nAah! Le nostre Attività Giornaliere incomplete fanno infuriare ancora di più l'Abominevole Bestia dello Stress, che recupera punti vita! Bailey la Banditrice stava urlando ai cittadini di mettersi in salvo, e ora ha afferrato anche lei! Guardala, mentre coraggiosamente riporta le notizie mentre la Bestia dello Stress la lancia qua e là... Non rendiamo vano il suo gesto eroico, dobbiamo essere il più produttivi possibile per salvare i nostri NPC!",
|
||||
"questStressbeastBossRageGuide": "\"Abominevole Bestia dello Stress usa Colpo Stressante!\"\n\nL'accumulo di stress cura Abominevole Bestia dello Stress!\n\nGuardate! Justin la Guida sta provando a distrarre la Bestia dello Stress, correndogli intorno e gridandogli consigli utili! L'Abominevole Bestia dello Stress pesta i piedi, si agita, ruggisce, ma ormai sembra stremato. Dubito abbia ancora la forza per un altro colpo. Non arrendiamoci, siamo vicini alla vittoria!",
|
||||
"questStressbeastDesperation": "L'Abominevole Bestia dello Stress arriva a 500.000 di vita! L'Abominevole Bestia dello Stress usa Difesa Disperata!\n\nCi siamo quasi, Habitanti! Con diligenza e con le Attività Giornaliere, abbiamo ridotto la vita dell'Abominevole Bestia dello Stress a solo 500.000! La creatura ruggisce e si dimena disperata, mentre la sua rabbia cresce più velocemente che mai. Bailey e Matt urlano terrorizzati quando inizia a scuoterli da una parte e all'altra ad una velocità spaventosa, sollevando una densa tempesta di neve che rende più difficile colpirlo.\n\nDovremo impegnarci il doppio, ma non scoraggiamoci - questo è un segno che la Bestia dello Stress è consapevole di essere sul punto della sconfitta. Non arrendiamoci ora!",
|
||||
@@ -188,46 +188,46 @@
|
||||
"questTRexUndeadCompletion": "La malvagia luce negli occhi del Tirannosauro comincia a scomparire, mentre l'enorme scheletro torna sul solito piedistallo. Tutti quanti tirano un sospiro di sollievo. \"Guarda!\", ti dice @Baconsaur, \"Alcune delle uova fossilizzate sono nuove e luccicanti! Magari si schiuderanno per te.\"",
|
||||
"questTRexUndeadBoss": "Tirannosauro Scheletrico",
|
||||
"questTRexUndeadRageTitle": "Cura Scheletrica",
|
||||
"questTRexUndeadRageDescription": "Questa barra si riempie gradualmente quando non completi le tue Attività Giornaliere. Quando è piena, il Tirannosauro Scheletrico recupererà il 30% dei suoi punti vita rimanenti!",
|
||||
"questTRexUndeadRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, il Tirannosauro Scheletrico recupererà il 30% dei suoi punti vita rimanenti!",
|
||||
"questTRexUndeadRageEffect": "`Tirannosauro Scheletrico usa CURA SCHELETRICA!`\n\nIl mostro emette un ruggito sovrannaturale, e alcune delle sue ossa danneggiate si ricongiungono tra loro!",
|
||||
"questTRexDropTRexEgg": "Tirannosauro (uovo)",
|
||||
"questTRexUnlockText": "Sblocca l'acquisto delle uova di Tirannosauro nel Mercato",
|
||||
"questTRexUnlockText": "Sblocca l'acquisto delle Uova di Tirannosauro nel Mercato",
|
||||
"questRockText": "Fuggi dalla Creatura della Caverna",
|
||||
"questRockNotes": "Attraversando le Cime Contorte di Habitica con alcuni amici, una notte vi accampate in una stupenda caverna decorata da minerali luccicanti. Ma al vostro risveglio la mattina seguente l'entrata è sparita, e il pavimento comincia a muoversi sotto i vostri piedi.<br><br>\"Le montagne sono vive!\" urla il tuo compagno @pfeffernusse. \"Questi non sono cristalli - sono denti!\"<br><br>@Painter de Cluster afferra la tua mano. \"Dovremo trovare un'altra via d'uscita - resta con me e non ti distrarre, o rimarremo intrappolati qui per sempre!\"",
|
||||
"questRockBoss": "Il Colosso di Cristallo",
|
||||
"questRockCompletion": "La tua diligenza ti ha permesso di trovare un sentiero sicuro tra le montagne viventi. In piedi al sole, il tuo amico @intune nota qualcosa di scintillante al suolo vicino all'uscita della caverna. Ti abbassi per raccoglierlo, e vedi che è una piccola roccia attraversata da una vena dorata. Al suo fianco ci sono svariate rocce dalla forma peculiare. Sembrano quasi... uova?",
|
||||
"questRockDropRockEgg": "Roccia (uovo)",
|
||||
"questRockUnlockText": "Sblocca l'acquisto delle uova di Roccia nel Mercato",
|
||||
"questRockUnlockText": "Sblocca l'acquisto delle Uova di Roccia nel Mercato",
|
||||
"questBunnyText": "La Coniglietta Ladra",
|
||||
"questBunnyNotes": "Dopo molti giorni difficili, raggiungi la cima del Monte Procrastinazione e ti trovi di fronte alle imponenti porte della Fortezza della Negligenza. Leggi l'inscrizione nella pietra. \"All'interno risiede la creatura che incarna le tue più grandi paure, la ragione dietro la tua mancanza di azione. Bussa e confronta il tuo demone!\" Tremi, immaginando l'orrore all'interno e senti l'istinto di scappare come hai fatto così tante volte in precedenza. @Draayder ti trattiene. \"Sta calmo, amico mio! È giunta l'ora. Devi affrontarlo!\"<br><br>Bussi e le porte si aprono verso l'interno. Dall'oscurità senti un ruggito assordante e sfoderi la tua arma.",
|
||||
"questBunnyBoss": "Coniglietta Ladra",
|
||||
"questBunnyCompletion": "Con un'ultimo colpo atterri la coniglietta assassina. Una nebbia luccicante si alaza dal suo corpo mentre si rimpicciolisce in una piccolissima coniglietta... Niente a che vedere con la crudele bestia che hai affrontato un attimo fa. Il suo naso si muove in modo adorabile e lei saltella via, lasciandosi alle spalle alcune uova. @Gully ride. \"Il Monte Procrastinazione ha i suoi modi per far sembrare insormontabili anche le più piccole sfide. Raccogliamo queste uova e torniamo a casa.\"",
|
||||
"questBunnyDropBunnyEgg": "Coniglietto (uovo)",
|
||||
"questBunnyUnlockText": "Sblocca l'acquisto delle uova di Coniglietto nel Mercato",
|
||||
"questBunnyUnlockText": "Sblocca l'acquisto delle Uova di Coniglietto nel Mercato",
|
||||
"questSlimeText": "Il Reggente Gelatina",
|
||||
"questSlimeNotes": "Mentre lavori alle tue attività, noti che i tuoi movimenti si fanno sempre più lenti. \"È come camminare attraverso della melassa,\" borbotta @Leephon. \"No, è come camminare attraverso della gelatina!\" dice @starsystemic. \"Quel viscido Reggente Gelatina ha spalmato la sua roba su tutta Habitica. Sta impantanando tutto. Tutti stanno rallentando.\" Ti guardi intorno. Le strade si stanno lentamente riempendo di una melma chiara e colorata, e gli Habitanti devono sforzarsi per riuscire a fare qualsiasi cosa. Mentre gli altri scappano, tu impugni uno mocio e ti prepari al combattimento!",
|
||||
"questSlimeBoss": "Reggente Gelatina",
|
||||
"questSlimeCompletion": "Con un colpo finale, intrappoli il Reggente Gelatina in una ciambella gigante, portata in fretta da @Overomega, @LordDarkly, e @Shaner, i leader dal pensiero veloce del club di pasticceria. Mentre tutti di danno pacche sulle spalle, senti che qualcuno fa scivolare qualcosa nella tua tasca. È la ricompensa per la tua dolce vittoria: tre uova di Gelatina di Marshmallow.",
|
||||
"questSlimeDropSlimeEgg": "Gelatina di Marshmallow (uovo)",
|
||||
"questSlimeUnlockText": "Sblocca l'acquisto delle uova di Limo nel Mercato",
|
||||
"questSlimeUnlockText": "Sblocca l'acquisto delle Uova di Limo nel Mercato",
|
||||
"questSheepText": "L'Ariete Tuonante",
|
||||
"questSheepNotes": "Mentre vai in giro per le campagne di Taskan con degli amici, prendendoti una \"pausa veloce\" dai tuoi doveri, trovi un accogliente negozio di filati. Sei così assorbito dalla tua procrastinazione che ti accorgi a malapena delle nuvole minacciose che si alzano dall'orizzonte. \"Non ho per niente un be-e-e-el presentimento riguardo questo tempo,\" mormora @Misceo, e tu alzi gli occhi. Le nuvole di tempesta si intrecciano tra loro, e assomigliano molto a... \"Non c'è tempo per stare a guardare le nuvole!\" urla @starsystemic. \"Sta attaccando!\" L'Ariete Tuonante carica verso di voi, scagliandovi addosso fulmini e saette!",
|
||||
"questSheepBoss": "Ariete Tuonante",
|
||||
"questSheepCompletion": "Colpita dalla tua diligenza, l'Ariete Tuonante è prosciugata della sua furia. Lancia tre enormi chicchi di grandine nella tua direzione, e poi scompare con un cupo rombo. Guardandoli meglio, scopri che i chicchi di grandine sono in realtà tre uova morbide e pelose. Le raccogli, e ti incammini verso casa sotto un cielo azzurro.",
|
||||
"questSheepDropSheepEgg": "Pecorella (uovo)",
|
||||
"questSheepUnlockText": "Sblocca l'acquisto delle uova di Pecora nel Mercato",
|
||||
"questSheepUnlockText": "Sblocca l'acquisto delle Uova di Pecora nel Mercato",
|
||||
"questKrakenText": "Il Kraken dell'Inkompletezza",
|
||||
"questKrakenNotes": "É un tiepido giorno di sole mentre tu veleggi attraverso la Baia Inkompleta, ma i tuoi pensieri sono offuscati dalla preoccupazione di tutto ciò che devi ancora fare. Sembra che appena finisci un'attività, un'altra salti fuori, e poi un'altra... <br><br>Improvvisamente, la barca ha un sussulto terribile, e tentacoli melmosi emergono dall'acqua da ogni lato! \"Il Kraken dell'Inkompletezza ci sta attaccando!\" urla Wolvenhalo.<br><br>\"Presto!\" ti urla Lemoness. \"Colpisci quanti tentacoli e attività puoi, prima che ne possano emergere di nuovi a prendere il loro posto!\"",
|
||||
"questKrakenBoss": "Il Kraken dell'Inkompletezza",
|
||||
"questKrakenCompletion": "Mentre il Kraken fugge, alcune uova galleggiano sulla superficie dell'acqua. Lemoness le esamina, e la sua diffidenza si trasforma in gioia. \"Uova di seppia!\" dice. \"Ecco, prendile come ricompensa per tutto quello che hai fatto.\"",
|
||||
"questKrakenDropCuttlefishEgg": "Seppia (uovo)",
|
||||
"questKrakenUnlockText": "Sblocca l'acquisto delle uova di Seppia nel Mercato",
|
||||
"questKrakenUnlockText": "Sblocca l'acquisto delle Uova di Seppia nel Mercato",
|
||||
"questWhaleText": "Il Lamento della Balena",
|
||||
"questWhaleNotes": "Arrivi al Molo Diligente, sperando di prendere un sottomarino per vedere il Derby Dilatorio. Improvvisamente un muggito assordante ti costringe a fermarti e a coprirti le orecchie. \"Ecco chi soffia!\" grida il capitano @krazjega, indicando un’enorme, gemente balena. \"Non è sicuro far partire i sottomarini mentre la balena si sta dimenando!\"<br><br>\"Presto\", esclama @UncommonCriminal, \"aiutami a calmare quella povera creatura per capire perché sta facendo tutto questo baccano!\"",
|
||||
"questWhaleBoss": "Balena Lamentosa",
|
||||
"questWhaleCompletion": "Dopo molto duro lavoro, la balena finalmente cessa il suo lamento portentoso. \"Sembra che stesse affogando nelle onde delle abitudini negative\", spiega @zoebeagle. \"Grazie al tuo impegno costate, siamo riusciti a cambiare la situazione!\" Mentre entri nel sottomarino, diverse uova di balena fluttuano verso di te, e tu le raccogli.",
|
||||
"questWhaleDropWhaleEgg": "Balena (uovo)",
|
||||
"questWhaleUnlockText": "Sblocca l'acquisto delle uova di Balena nel Mercato",
|
||||
"questWhaleUnlockText": "Sblocca l'acquisto delle Uova di Balena nel Mercato",
|
||||
"questGroupDilatoryDistress": "Dilatoria sotto Attacco",
|
||||
"questDilatoryDistress1Text": "Dilatoria sotto Attacco, Parte 1: Messaggio in Bottiglia",
|
||||
"questDilatoryDistress1Notes": "Un messaggio in una bottiglia é arrivato dalla nuovamente ricostruita città di Dilatoria! C'é scritto: \"Cari Habitanti, abbiamo bisogno del vostro aiuto un'altra volta. La nostra principessa é sparita e la città é tenuta sotto assedio da misteriosi demoni dell'acqua! Le Canocchie stanno trattenendo gli attaccanti. Per favore aiutateci!\" Per intraprendere il lungo viaggio verso la città sommersa, é necessario essere in grado di respirare sott'acqua. Fortunatamente gli alchimisti @Benga e @hazel possono renderlo possibile! Devi solo trovare gli ingredienti adatti.",
|
||||
@@ -240,8 +240,8 @@
|
||||
"questDilatoryDistress2Completion": "Sconfiggi l'infernale orda di teschi, ma non ti senti affatto più vicino a trovare Adva. Parli a @Kiwibot, l'investigatore reale, per sapere se lei ha qualche idea. \"Le canocchie che difendono la città devono aver visto Adva scappare,\" dice @Kiwibot. \"Prova a seguirle dentro al Crepaccio Oscuro.\"",
|
||||
"questDilatoryDistress2Boss": "Sciame di Teschi d'Acqua",
|
||||
"questDilatoryDistress2RageTitle": "Rinascita dello Sciame",
|
||||
"questDilatoryDistress2RageDescription": "Rinascita dello Sciame: Questa barra si riempie quando non completi le tue Attività giornaliere. Quando é piena, lo Sciame di Teschi d'Acqua curerà il 30% della sua salute restante!",
|
||||
"questDilatoryDistress2RageEffect": "`Lo Sciame di Teschi d'Acqua usa RINASCITA DELLO SCIAME`\n\nIncoraggiati dalle loro vittorie, altri teschi fuoriescono dal crepaccio, rafforzando lo sciame!",
|
||||
"questDilatoryDistress2RageDescription": "Rinascita dello Sciame: Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando é piena, lo Sciame di Teschi d'Acqua curerà il 30% della sua salute restante!",
|
||||
"questDilatoryDistress2RageEffect": "`Lo Sciame di Teschi d'Acqua usa RINASCITA DELLO SCIAME!`\n\nIncoraggiati dalle loro vittorie, altri teschi fuoriescono dal crepaccio, rafforzando lo sciame!",
|
||||
"questDilatoryDistress2DropSkeletonPotion": "Pozione Scheletro",
|
||||
"questDilatoryDistress2DropCottonCandyBluePotion": "Pozione Zucchero Filato Blu",
|
||||
"questDilatoryDistress2DropHeadgear": "Tiara di Corallo di Fuoco (copricapo)",
|
||||
@@ -253,17 +253,17 @@
|
||||
"questDilatoryDistress3DropWeapon": "Tridente delle Maree Fragorose (Arma)",
|
||||
"questDilatoryDistress3DropShield": "Scudo di Perle Lunari (oggetto per mano sinistra)",
|
||||
"questCheetahText": "Un tal Ghepardo",
|
||||
"questCheetahNotes": "Mentre attraversi la Savana di Sloensteadi con i tuoi amici @PainterProphet, @tivaquinn,@Unruly Hyena, e @Crawford, sei sorpreso di vedere un ghepardo ringhiante oltrepassarti con un nuovo Habitante serrato tra le fauci. Sotto le acuminate zampe del ghepardo, I compiti bruciano come se fossero completati - prima che qualcuno abbia la possibilità di finirli in realtà! L'Habitante vi vede e urla: \"Vi prego, aiutatemi! Questo ghepardo mi sta facendo salire di livello troppo in fretta, ma io non riesco a finire niente. Voglio rallentare e godermi il gioco. Fatelo smettere!\" Ti ricordi con tenerezza i tuoi giorni alle prime armi, e sai che si deve aiutare il newbie bloccando il ghepardo!",
|
||||
"questCheetahNotes": "Mentre attraversi la Savana di Sloensteadi con i tuoi amici @PainterProphet, @tivaquinn, @Unruly Hyena, e @Crawford, sei sorpreso di vedere un ghepardo ringhiante oltrepassarti con un nuovo Habitante serrato tra le fauci. Sotto le acuminate zampe del ghepardo, I compiti bruciano come se fossero completati - prima che qualcuno abbia la possibilità di finirli in realtà! L'Habitante vi vede e urla: \"Vi prego, aiutatemi! Questo ghepardo mi sta facendo salire di livello troppo in fretta, ma io non riesco a finire niente. Voglio rallentare e godermi il gioco. Fatelo smettere!\" Ti ricordi con tenerezza i tuoi giorni alle prime armi, e sai che si deve aiutare il newbie bloccando il ghepardo!",
|
||||
"questCheetahCompletion": "Il nuovo Habitante ha il fiatone dopo la cavalcata selvaggia, ma ringrazia te e i tuoi amici per il vostro aiuto. \"Sono felice che il Ghepardo non potrà prendersi nessun altro. Ha lasciato dietro di sé un po' di uova di Ghepardo per noi, quindi magari possiamo allevare per farne degli animali domestici!\"",
|
||||
"questCheetahBoss": "Ghepardo",
|
||||
"questCheetahDropCheetahEgg": "Ghepardo (uovo)",
|
||||
"questCheetahUnlockText": "Sblocca l'acquisto delle uova di Ghepardo nel Mercato",
|
||||
"questCheetahUnlockText": "Sblocca l'acquisto delle Uova di Ghepardo nel Mercato",
|
||||
"questHorseText": "Cavalca il Destriero dell'Incubo",
|
||||
"questHorseNotes": "Mentre ti rilassi in Taverna con @beffymaroo e @JessicaChase, il discorso si volge a vantarsi bonariamente del vostro operato di avventurieri. Orgogliosi delle vostre azioni, e forse lasciandovi un po’ trasportare, vi vantate di poter domare qualsiasi compito in giro. Uno sconosciuto lì accanto si volta verso di voi e sorride. I suoi occhi brillano mentre egli vi invita a provare la vostra pretesa cavalcando il suo cavallo.\nMentre vi dirigete in massa alle scuderie, @UncommonCriminal mormora, \"Forse avete fatto il passo più lungo della gamba. Questo non è per niente un cavallo – Questa è una Puledra Incubo ! \" Guardando gli zoccoli scalpitanti, cominciate a rimpiangere le vostre parole ...",
|
||||
"questHorseCompletion": "Serve tutta la tua abilità, ma finalmente il cavallo pesta un paio di zoccoli e strofina il muso sulla tua spalla prima di permetterti di cavalcarlo. Cavalchi brevemente ma con orgoglio intorno alla Taverna mentre i tuoi amici applaudono. Lo sconosciuto irrompe in un sorriso.\n\"Vedo che non era un vantarsi infondato! La tua determinazione è davvero impressionante. Prendi queste uova per allevare dei cavalli da solo, e forse un giorno ci incontreremo di nuovo.\" Prendi le uova, lo sconosciuto fa tanto di cappello... e sparisce.",
|
||||
"questHorseBoss": "Destriero dell'Incubo",
|
||||
"questHorseDropHorseEgg": "Cavallo (uovo)",
|
||||
"questHorseUnlockText": "Sblocca l'acquisto delle uova di Cavallo nel Mercato",
|
||||
"questHorseUnlockText": "Sblocca l'acquisto delle Uova di Cavallo nel Mercato",
|
||||
"questBurnoutText": "Burnout e gli Spiriti Esausti",
|
||||
"questBurnoutNotes": "È ben dopo mezzanotte, quieta e afosa, quando Redphoenix e la guida capitano Kiwibot irrompono attraverso le porte della città. \"Presto!\"<br><br>Kiwibot si aggrappa al muro mentre trattiene il respiro. Drena le energie delle persone e le trasforma in spiriti esausti! Ecco perché tutto è stato posticipato. Là è dove le persone scomparse sono andate. Sta rubando la loro energia!<br><br>\"'Esso?'\" chiede Lemoness.<br><br>E poi il calore prende forma.<br><br>Sorge dalla terra in una fluttuante massa ritorta e l'aria è satura dell'odore di fumo e zolfo. Le fiamme strisciano attraverso il terreno fuso e si attorcigliano dentro gli arti contorcendosi fino ad orrifiche altezze. Occhi fumanti si spalancano, e la creatura emette un profondo e scoppiettante squittio.<br><br> Kiwibot mormora una sola parola.<br><br><em>\"Burnout.\"</em>",
|
||||
"questBurnoutCompletion": "<strong>Burnout è stato SCONFITTO!</strong><br><br>Con un profondo, sommesso singhiozzo Burnout lentamente emette l'ardente energia che alimentava il suo fuoco. Mentre il mostro si accartoccia silenziosamente in cenere, la sua energia rubata brilla nell'aria rigenerando gli Spiriti Esausti e riportandoli alle loro forme originali.<br><br>Ian, Daniel, e la Maga di Stagione festeggiano, mentre gli Habitanti si affollano per salutarli, e tutti i cittadini scomparsi dei Campi Rigogliosi riabbracciano i loro amici e famigliari. L'ultimo Spirito Esausto si trasforma nella Mietitrice Gioiosa!<br><br>\"Guarda!\" sussurra @Baconsaur, mentre le ceneri cominciano a brillare. Lentamente esse si sciolgono in centinaia di scintillanti fenici!<br><br>Uno dei luminosi uccelli si posa sullo scheletrico braccio della Mietitrice Gioiosa e lei gli sorride. \"È da molto, molto tempo che non avevo lo squisito privilegio di osservare una Fenice nei Campi Rigogliosi,\" dice \"Sebbene, dati i recenti fatti, devo dire, lo trovo molto appropriato!\"<br><br>Il suo tono si acquieta, sebbene (naturalmente) il suo sorriso rimanga. Qui siamo noti per lavorare sodo, ma siamo noti anche per le nostre feste e ricorrenze. Abbastanza ironico, immagino, che mentre ci davamo da fare per organizzare feste spettacolari, ci rifiutavamo di permetterci un po' di tempo per il divertimento. Di sicuro non faremo lo stesso errore due volte!\"<br><br>Batte le mani. \"E ora festeggiamo!\"",
|
||||
@@ -277,41 +277,41 @@
|
||||
"questBurnoutBossRageSeasonalShop": "`Burnout usa COLPO ESAUSTO!`\n\nAhhh! Le nostre Attività Giornaliere incomplete hanno nutrito le fiamme di Burnout ed ora ha abbastanza energia per colpire ancora! Emette un globo di fiamma spettrale che abbrustolisce la Bottega Stagionale. Siete terrificati nel vedere che l'allegra Fattucchiera Stagionale è stata trasformata in un cadente Spirito Esausto.\n\nDobbiamo salvare i nostri NPC! Svelti, Habitanti, completate i vostri impegni e battete Bournout prima che colpisca una seconda volta!",
|
||||
"questBurnoutBossRageTavern": "Burnout usa COLPO ESAUSTO!`\n\nMolti Habitanti si sono nascosti da Burnout nella Taverna, ma è tutto inutile! Con un urlo stridulo, Burnout rastrella la Taverna con le sue mani al calor bianco. Mentre i clienti della Taverna fuggono, Daniel è preso nella stretta di Burnout, e si trasforma in uno Spirito Esausto proprio davanti a voi.\n\nQuesto orrore dalla testa fiammante è andato avanti troppo a lungo. Non vi arrendete... Siamo a un passo dal debellare Burnout una volta per tutte!",
|
||||
"questFrogText": "Palude della Rana del Disordine",
|
||||
"questFrogNotes": "Mentre tu e i tuoi amici state avanzando faticosamente attraverso le Paludi del Ristagno, @starsystemic indica un grande cartello. \"Rimanete nel sentiero -- se riuscite.\"<br><br>\"Non può essere così difficile!\" dice @RosemonkeyCT. \"É largo e ben visibile.\"<br><br>Ma mentre continuate, vi accorgete che il sentiero viene gradualmente sommerso dalla mucillagine della palude, mista a strani pezzi di detriti blu e macerie, finché é impossibile procedere.<br><br>Mentre vi guardate intorno, chiedendovi come abbia fatto a diventare così sporca, @Jon Arjinbon grida, \"Attenti!\" Una rana infuriata salta fuori dalla melma, vestita di biancheria sporca e accesa di fuoco blu. Dovrete superare questa velenosa Rana del Disordine per andare oltre!",
|
||||
"questFrogNotes": "Mentre tu e i tuoi amici state avanzando faticosamente attraverso le Paludi del Ristagno, @starsystemic indica un grande cartello. \"Rimanete nel sentiero — se riuscite.\"<br><br>\"Non può essere così difficile!\" dice @RosemonkeyCT. \"É largo e ben visibile.\"<br><br>Ma mentre continuate, vi accorgete che il sentiero viene gradualmente sommerso dalla mucillagine della palude, mista a strani pezzi di detriti blu e macerie, finché é impossibile procedere.<br><br>Mentre vi guardate intorno, chiedendovi come abbia fatto a diventare così sporca, @Jon Arjinbon grida, \"Attenti!\" Una rana infuriata salta fuori dalla melma, vestita di biancheria sporca e accesa di fuoco blu. Dovrete superare questa velenosa Rana del Disordine per andare oltre!",
|
||||
"questFrogCompletion": "La rana si rannicchia di nuovo nel fango, sconfitta. Mentre striscia via, la melma blu svanisce, lasciando la strada da percorrere sgombra. <br><br>. Al centro del percorso ci sono tre uova incontaminate. \"Si possono persino vedere i piccoli girini attraverso l'involucro trasparente!\" Dice @Breadstrings . \"Ecco, dovreste prenderle.\"",
|
||||
"questFrogBoss": "Rana del Disordine",
|
||||
"questFrogDropFrogEgg": "Rana (uovo)",
|
||||
"questFrogUnlockText": "Sblocca l'acquisto delle uova di rana nel Mercato",
|
||||
"questFrogUnlockText": "Sblocca l'acquisto delle Uova di Rana nel Mercato",
|
||||
"questSnakeText": "La Serpe della Distrazione",
|
||||
"questSnakeNotes": "Ci vuole un'animo forte per vivere tra le Dune di Sabbia della Distrazione. L'arido deserto non è certo un luogo produttivo, e le scintillanti dune hanno portato molti viaggiatori fuori strada. Tuttavia, qualcosa ha spaventato anche la gente del posto. Le sabbie stanno spostando e capovolgendo interi villaggi. I residenti sostengono che un mostro con un enorme corpo di serpente giace in attesa sotto la sabbia, e hanno tutti messo insieme una ricompensa per chiunque li aiuti a trovarlo e a fermarlo. I celebri incantatori di serpenti @EmeraldOx e @PainterProphet hanno acconsentito ad aiutarti ad evocare la bestia. Riuscirai a fermare la Serpe della Distrazione?",
|
||||
"questSnakeCompletion": "Con l'aiuto degli incantatori, riesci a scacciare la Serpe della Distrazione. Anche se sei felice di aver aiutato gli abitanti delle Dune, non puoi fare a meno di essere un po' triste per il tuo nemico caduto. Mentre contempli il panorama, @LordDarkly viene verso di te. \"Grazie! Non è molto, ma spero che questo possa esprimere adeguatamente la nostra gratitudine\". Ti porge un po' d'Oro e... alcune uova di serpente! Vedrai ancora quel maestoso animale, dopo tutto.",
|
||||
"questSnakeBoss": "Serpe della Distrazione",
|
||||
"questSnakeDropSnakeEgg": "Serpente (uovo)",
|
||||
"questSnakeUnlockText": "Sblocca l'acquisto delle uova di Serpente nel Mercato",
|
||||
"questSnakeUnlockText": "Sblocca l'acquisto delle Uova di Serpente nel Mercato",
|
||||
"questUnicornText": "Convincere la Regina Unicorno",
|
||||
"questUnicornNotes": "Il Torrente della Conquista è diventato melmoso, distruggendo le riserve d'acqua di Habit City! Fortunatamente @Lucreja conosce un'antica leggenda secondo la quale il corno di un unicorno è in grado di purificare anche le acque più disgustose. Insieme alla tua intrepida guida @UncommonCriminal, ti avventuri tra i picchi ghiacciati delle Cime Contorte. Infine, sulla cima ghiacciata dello stesso Monte Habitica, trovi la Regina Unicorno fra la neve scintillante. \"Le tue richieste sono convincenti\", ti dice. \"Ma prima devi dimostrare di essere degno del mio aiuto!\"",
|
||||
"questUnicornCompletion": "Impressionata dalla tua diligenza e dalla tua forza, la Regina degli Unicorni è finalmente d'accordo sul fatto che la tua sia una causa meritevole. Ti permette di cavalcarla, mentre risale verso la fonte del Torrente della Conquista. Mentre china il suo corno dorato verso le acque intorbidate, una luce blu brillante sorge dalla superfice dell'acqua. è così accecante che sei costretto a chiudere gli occhi. Quando quando li riapri un momento dopo, l'unicorno se ne è andato. Tuttavia, @rosiesully emette un grido di delizia: l'acqua ora è chiara, e tre uova scintillanti sono posate sulla riva del torrente.",
|
||||
"questUnicornBoss": "La Regina Unicorno",
|
||||
"questUnicornDropUnicornEgg": "Unicorno (uovo)",
|
||||
"questUnicornUnlockText": "Sblocca l'acquisto delle uova di Unicorno nel Mercato",
|
||||
"questUnicornUnlockText": "Sblocca l'acquisto delle Uova di Unicorno nel Mercato",
|
||||
"questSabretoothText": "Il Gatto Sciabola",
|
||||
"questSabretoothNotes": "Un ruggente mostro sta terrorizzando Habitica! La creatura vaga per i boschi, quindi compare all'improvviso per attaccare prima di scomparire ancora. Sta cacciando innocenti panda e spaventando maiali volanti a tal punto da farli scappare dai loro recinti per posarsi sugli alberi. @InspectorCaracal e @icefelis spiegano che il Gatto sciabola Zombi fu messo in libertà mentre stavano scavando negli antichi e inviolati campi di ghiaccio delle Steppe di Stoïkalm. \"All'inizio era perfettamente amichevole - Non so cosa sia successo. Per favore, devi aiutarci a catturarlo nuovamente! Solo un campione di Habitica può domare questa bestia preistorica!\"",
|
||||
"questSabretoothCompletion": "Dopo una battaglia lunga e faticosa, bloccate il Gatto Sciabola Zombie a terra. Appena riuscite finalmente ad avvicinarvi, notate una brutta cavità in uno dei suoi denti a sciabola. Comprendendo la vera causa del furore del gatto, riuscite a far otturare la cavità da @Fandekasp, e consigliate a tutti di evitare di alimentare il loro amico con dolci in futuro. Il Gatto Sciabola rifiorisce, e in segno di gratitudine, i suoi domatori ti inviano una generosa ricompensa - una manciata di uova di Dente a Sciabola!",
|
||||
"questSabretoothBoss": "Gatto Sciabola Zombie",
|
||||
"questSabretoothDropSabretoothEgg": "Dente a sciabola (Uovo)",
|
||||
"questSabretoothUnlockText": "Sblocca uova di Dente a Sciabola, acquistabili nel Mercato",
|
||||
"questSabretoothDropSabretoothEgg": "Dente a Sciabola (Uovo)",
|
||||
"questSabretoothUnlockText": "Sblocca l'acquisto delle Uova di Dente a Sciabola nel Mercato",
|
||||
"questMonkeyText": "Il Mandrillo Mostruoso e le Scimmie Seccanti",
|
||||
"questMonkeyNotes": "L'Oscura Savana è lacerata dal Mandrillo Mostruoso e dalle sue Scimmie Seccanti! Essi strillano abbastanza forte da attutire il suono delle scadenze che si avvicinano, incoraggiando tutti ad evitare i loro doveri e a divagare qua e là. Purtroppo, un sacco di persone scimmiottano questo cattivo comportamento. Se nessuno fermerà questi primati, ben presto i compiti di ognuno saranno rossi come la faccia del Mandrillo Mostruoso!<br><br> \"Ci vorrà un volenteroso avventuriero per resistere loro\", dice @yamato.<br><br>\"Svelti, togliamo questa scimmia dalle spalle di tutti! \" urla @Oneironaut, e vi lanciate nella battaglia.",
|
||||
"questMonkeyCompletion": "Ce l'avete fatta! Niente banane per quei demoni oggi. Sopraffatte dalla vostra diligenza, le scimmie fuggono in preda al panico. \"Guarda \", dice @Misceo . \" Hanno lasciato indietro un paio di uova.<br><br>@Leephon sogghigna. \"Forse una scimmietta ben addestrata vi può aiutare tanto quanto quelle selvatiche vi ostacolano !\"",
|
||||
"questMonkeyBoss": "Mandrillo Mostruoso",
|
||||
"questMonkeyDropMonkeyEgg": "Scimmia (uovo)",
|
||||
"questMonkeyUnlockText": "Sblocca l'acquisto delle uova di Scimmia nel Mercato",
|
||||
"questMonkeyUnlockText": "Sblocca l'acquisto delle Uova di Scimmia nel Mercato",
|
||||
"questSnailText": "La Chiocciola della Fogna Sgobbosa",
|
||||
"questSnailNotes": "Sei entusiasta di iniziare ad esplorare l'abbandonato Sotterraneo della Solita Solfa, ma appena entrato senti il terreno sotto i tuoi piedi che comincia a risucchiare i tuoi stivali. Scruti il percorso davanti a te e vedi alcuni Habitanti impantanati nella melma. @Overomega urla, \"Hanno troppe attività irrilevanti, e rimangono bloccati su cose poco importanti! Tirali fuori!\"<br><br>\"Devi trovare la fonte della melma,\" concorda @Pfeffernusse, \"o le attività che non possono completare li trascineranno a fondo per sempre! \"<br><br>Tirando fuori la tua arma, ti fai strada attraverso il fango appiccicoso... e ti imbatti nella temibile Chiocciola della Fogna Sgobbosa.",
|
||||
"questSnailCompletion": "Affondi la tua arma nel gran guscio della Chiocciola, spaccandolo in due e liberando un flusso d'acqua. La melma è lavata via, e gli Habitanti intorno a te gioiscono. \"Guardate!\" dice @Misceo. \"C'è un piccolo gruppo di uova di chiocciola nei resti della sporcizia.\"",
|
||||
"questSnailBoss": "Chiocciola della Fogna Sgobbosa",
|
||||
"questSnailDropSnailEgg": "Chiocciola (uovo)",
|
||||
"questSnailUnlockText": "Sblocca l'acquisto delle uova di chiocciola nel Mercato",
|
||||
"questSnailUnlockText": "Sblocca l'acquisto delle Uova di chiocciola nel Mercato",
|
||||
"questBewilderText": "Il Be-Wilder",
|
||||
"questBewilderNotes": "La festa inizia come qualsiasi altra. <br><br> Gli antipasti sono eccellenti, la musica è allegra, e anche gli elefanti danzanti sono diventati di routine. Gli Habitanti ridono e giocano in mezzo ai centrotavola traboccanti di fiori, felici di avere una distrazione dai loro compiti meno amati, e il Giullare d'Aprile volteggia tra di loro, distribuendo con entusiasmo un trucco divertente qui e un tocco spiritoso lì.<br><br>Appena l'orologio della torre di Fantalata batte la mezzanotte, il Giullare d'Aprile balza sul palco per pronunciare un discorso. <br><br> \"Amici! Nemici! conoscenti tolleranti! Prestatemi le orecchie. \"La folla ridacchia mentre orecchie da animali spuntano sulle loro teste, ed essi si mettono in posa con i loro nuovi accessori<br><br>\"Come sapete,\" il Giullare continua, \"le mie frastornanti illusioni di solito durano solo un giorno. Ma sono lieto di annunciare che ho scoperto una scorciatoia che ci garantirà il divertimento non-stop, senza avere a che fare con il peso fastidioso delle nostre responsabilità. Fascinosi Habitanti, vi presento il mio nuovo amico magico ... Be-Wilder! \"<br><br>Lemoness impallidisce all'improvviso, lasciando cadere le tartine. \"Hey! Non fidat-- \"<br><br>Ma improvvisamente una nebbia spessa e baluginante si riversa nella stanza, e turbina intorno al Giullare d'Aprile, condensandosi in piume nuvolose e in un collo allungato. La folla è senza parole, mentre un uccello mostruoso spiega davanti a loro, le ali luccicanti di illusioni. Si lascia sfuggire un'orribile risata stridente . <br><br> \"Oh, sono passati secoli da quando un Habitante è stato così sciocco da evocarmi! Che meraviglia, avere una forma tangibile, finalmente. \"<br><br>Ronzando di terrore, le api magiche di Fantalata fuggono dalla città galleggiante, che incurva dal cielo. Uno per uno, i brillanti fiori primaverili appassiscono e WISP via. <br><br> \"Miei carissimi amici, perché siete così allarmati?\" gracchia Be-Wilder, battendo le ali. \"Non c'è più bisogno di faticare per i premi. Vi darò io tutte le cose che desiderate! \"<br><br> Una pioggia di monete si riversa dal cielo, martellando la terra con forza brutale, e la folla urla e fugge cercando riparo. \"È uno scherzo?\" grida Baconsaur, mentre l'oro rompe attraverso le finestre e frantuma le tegole del tetto. <br><br> PainterProphet si accuccia, mentre i fulmini gli crepitano in testa, e la nebbia oscura il sole. \"No! Questa volta, non credo accadrà! \"| <br><br> Presto, Habitanti, non lasciate che questo Boss mondiale ci distragga dai nostri obiettivi! Rimanete concentrati sui compiti che è necessario completare in modo che possiamo salvare Fantalata - e, si spera, noi stessi.",
|
||||
"questBewilderCompletion": "<strong>Il Be-Wilder è SCONFITTO! </strong> <br><br>Ce l'abbiamo fatta! Il Be-Wilder lancia un grido ululante mentre si contorce in aria, Lasciando cadere una pioggia di piume. Lentamente, a poco a poco, si raccoglie in una nuvola di nebbia baluginante. Mentre il sole appena rivelato penetra la nebbia, esso brucia via, rivelando, le forme miserevolmente umane e tossicchianti di Bailey, Matt, Alex .... e dello stesso Giullare d'Aprile. <br><br> <strong> Fantalata è salva! </strong> <br><br> Il Giullare d'Aprile ha abbastanza vergogna da apparire un po 'imbarazzato. \"Oh, hm,\" dice. \"Forse mi sono lasciato un po'... trasportare. \"<br><br> La folla borbotta. Fiori fradici scorrono via dai marciapiedi. Da qualche parte, in lontananza, un tetto crolla in una spettacolare nuvola di polvere. <br><br> \"Ehm, sì\", dice il Giullare d'Aprile. \"Proprio così. Quello che intendevo dire era, che mi dispiace terribilmente. \"Emette un sospiro. \"Suppongo che non possa essere tutto divertimento e giochi, dopo tutto. Potrebbe non esser male concentrarsi di tanto in tanto. Forse avrò una nuova grande partenza sullo Scherzo del prossimo anno.\"<br><br>Redphoenix tossisce con intenzione. <br><br> \"Voglio dire, una nuova partenza sulla pulizia di primavera di quest'anno!\", Dice il Giullare d'Aprile. \"Non temete, avrò Habit City in grande spolvero al più presto. Fortunatamente nessuno è meglio di me a maneggiare il doppio mop. \" <br><br> Incoraggiata, la banda musicale si avvia. <br><br> Non passa molto tempo prima che tutto sia tornato alla normalità in Habit City. In più, ora che il Be-Wilder è evaporato, le api magiche di Fantalata tornano a tutta forza al lavoro, e presto i fiori sono in fiore e la città fluttua di nuovo. <br><br> mentre gli Habitanti coccolano le magiche api lanuginose, gli occhi del Giullare d'Aprile si illuminano. \"Oho, ho avuto un pensiero! Perché tutti voi non tenete alcune di queste Api lanuginose come animali e Cavalcature? E 'un dono che simboleggia perfettamente l'equilibrio tra il duro lavoro e dolci ricompense, per dirvela in modo noioso ed allegorico.\" Ammicca. \"Inoltre, non hanno pungiglione! Parola di Giullare.\"",
|
||||
@@ -328,46 +328,46 @@
|
||||
"questFalconCompletion": "Dopo aver finalmente trionfato sugli Uccelli della Procrastinazione, ti sistemi per goderti la vista e il tuo meritato riposo.<br><br>\"Wow\" esclama @Trogdorina. \"Hai vinto\"<br><br>@Squish aggunge, \"Ecco, prendi come ricompensa queste uova che ho trovato.\"",
|
||||
"questFalconBoss": "Uccelli della Procrastinazione",
|
||||
"questFalconDropFalconEgg": "Falco (uovo)",
|
||||
"questFalconUnlockText": "Sblocca l'acquisto delle uova di Falco nel Mercato",
|
||||
"questFalconUnlockText": "Sblocca l'acquisto delle Uova di Falco nel Mercato",
|
||||
"questTreelingText": "L'Albero Aggrovigliato",
|
||||
"questTreelingNotes": "È il concorso annuale dei giardini, e tutti parlano del progetto misterioso che @aurakami ha promesso di svelare. Vi unite alla folla il giorno del grande annuncio, e ammirate la presentazione di un albero che si muove. @fuzzytrees spiega che l'albero aiuterà con la manutenzione del giardino, mostrando come può tagliare il prato, regolare la siepe e potare le rose tutto allo stesso tempo - finché l'albero all'improvviso diventa selvaggio, rivolgendo le cesoie verso il suo creatore! La folla viene presa dal panico, mentre ognuno cerca di fuggire, ma voi non avete paura: balzate in avanti, pronti a dare battaglia.",
|
||||
"questTreelingCompletion": "Vi date una spolverata, mentre le ultime foglie vanno alla deriva sul pavimento. Nonostante il trambusto, il Concorso dei Giardini è ora al sicuro - anche se l'albero che avete appena ridotto a un mucchio di trucioli non vincerà alcun premio! \"Ancora qualche dettaglio su cui lavorare\", dice @PainterProphet. \"Forse qualcun altro avrebbe educato meglio l'alberello. Volete provare voi?\"",
|
||||
"questTreelingBoss": "Albero Aggrovigliato",
|
||||
"questTreelingDropTreelingEgg": "Alberello (uovo)",
|
||||
"questTreelingUnlockText": "Sblocca l'acquisto delle uova di Arbusto nel Mercato",
|
||||
"questTreelingUnlockText": "Sblocca l'acquisto delle Uova di Arbusto nel Mercato",
|
||||
"questAxolotlText": "Il Magico Axolotl",
|
||||
"questAxolotlNotes": "Dalle profondità del Lago Lavato vedete risalire bolle e ... fuoco? Un piccolo 'Axolotl sale dalle torbide acque vomitando strisce di colore. Improvvisamente comincia ad aprire la bocca e @streak urla: \"Attenti!\" mentre il magico Axolotl inizia a ingoiare la vostra forza di volontà! <br><br> The Magical Axolotl si gonfia con magie, schernendovi. \"Avete sentito dei miei poteri di rigenerazione? Vi affaticherete prima di me!\" <br><br> \"Possiamo sconfiggerti con le buone abitudini che abbiamo costruito!\" @PainterProphet grida con aria di sfida. Corazzate la vostra produttività per sconfiggere il magico Axolotl e ritrovare la vostra forza di volontà rubata!",
|
||||
"questAxolotlCompletion": "Dopo aver sconfitto il magico Axolotl, vi rendete conto di aver riacquistato la vostra forza di volontà senza aiuti. <br><br> \"La forza di volontà? La rigenerazione? E 'stato tutto solo un'illusione?\" @Kiwibot chiede. <br><br> \"La maggior parte della magia lo è\", il magico Axolotl risponde. \"Mi dispiace avervi ingannati. Vi prego di prendere queste uova in segno di scusa.Confido che le alleverete per usare la loro magia per sviluppare le buone abitudini e non le cattive!\" <br><br> Voi e @hazel40 afferrate le vostre nuove uova con una mano e con l'altre salutate il magico Axolotl mentre ritorna al lago.",
|
||||
"questAxolotlBoss": "Axolotl Magico",
|
||||
"questAxolotlDropAxolotlEgg": "Axolotl (uovo)",
|
||||
"questAxolotlUnlockText": "Sblocca l'acquisto delle uova di Axolotl nel Mercato",
|
||||
"questAxolotlUnlockText": "Sblocca l'acquisto delle Uova di Axolotl nel Mercato",
|
||||
"questAxolotlRageTitle": "Rigenerazione Axolotl",
|
||||
"questAxolotlRageDescription": "Questa barra si riempie quando non completate le vostre Dailiy. Quando è piena, il magico Axolotl guarirà il 30% della sua salute rimanente!",
|
||||
"questAxolotlRageEffect": "`ll Magico Axolotl utilizza RIGENERAZIONE AXOLOTL!`\n\n`Una cortina di bolle colorate nasconde il mostro per un attimo, e quando svanisce, alcune delle sue ferite sono scomparse!`",
|
||||
"questAxolotlRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, il magico Axolotl guarirà il 30% della sua salute rimanente!",
|
||||
"questAxolotlRageEffect": "ll Magico Axolotl utilizza RIGENERAZIONE AXOLOTL!\n\nUna cortina di bolle colorate nasconde il mostro per un attimo, e quando svanisce, alcune delle sue ferite sono scomparse!",
|
||||
"questTurtleText": "Guida la tartaruga",
|
||||
"questTurtleNotes": "Aiuto! Questa gigantesca tartaruga marina non riesce a trovare la sua strada per la sua spiaggia di nidificazione. Vi torna ogni anno per deporre le uova, ma quest'anno la Baia Inkompleta è piena di relitti di Attività tossiche fatte di attività giornaliere rosse e cose da fare incontrollate. \"si dibatte in preda al panico!\" Dice @JessicaChase . <br><br> E @UncommonCriminal concorda. \"È perché i suoi sensi guida sono appannati e confusi.\" <br><br> @Scarabsi viv afferra il braccio. \"Potete aiutarla ad eliminare l'Attività relitto che blocca il suo cammino? Può essere pericoloso, ma dobbiamo aiutarla!\"",
|
||||
"questTurtleNotes": "Aiuto! Questa gigantesca tartaruga marina non riesce a trovare la sua strada per la sua spiaggia di nidificazione. Vi torna ogni anno per deporre le uova, ma quest'anno la Baia Inkompleta è piena di relitti di Attività tossiche fatte di Attività Giornaliere rosse e cose da fare incontrollate. \"si dibatte in preda al panico!\" Dice @JessicaChase . <br><br> E @UncommonCriminal concorda. \"È perché i suoi sensi guida sono appannati e confusi.\" <br><br> @Scarabsi viv afferra il braccio. \"Potete aiutarla ad eliminare l'Attività relitto che blocca il suo cammino? Può essere pericoloso, ma dobbiamo aiutarla!\"",
|
||||
"questTurtleCompletion": "Il vostro valente lavoro ha sgombrato le acque per aiutare la nostra tartaruga di mare a trovare la sua spiaggia. Voi, @Bambin, e @JaizakAripaik la guardate mentre seppellisce la sua covata di uova profondamente nella sabbia in modo che possano crescere e si schiudano in centinaia di piccole tartarughe marine. La signora, vi dà tre uova ciascuna, chiedendovi di alimentarli e curarli così che un giorno diventino esse stesse grandi tartarughe marine.",
|
||||
"questTurtleBoss": "Melma compitosa",
|
||||
"questTurtleDropTurtleEgg": "Tartaruga (uovo)",
|
||||
"questTurtleUnlockText": "Sblocca l'acquisto delle uova di tartaruga nel Mercato",
|
||||
"questTurtleUnlockText": "Sblocca l'acquisto delle Uova di Tartaruga nel Mercato",
|
||||
"questArmadilloText": "L' Armadillo Indulgente",
|
||||
"questArmadilloNotes": "È l'ora di uscire e cominciare la tua giornata. Spalanchi la porta ma ti trovi davanti quello che sembra un muro di roccia. \"Ti voglio solo regalare un giorno di pausa\" dice una voce ovattata dall'altra parte della porta bloccata \"Non essere un guastafeste, oggi rilassati e basta!\"<br><br> All'improvviso @Beffymaroo e @PainterProphet bussano alla tua finestra. \"Sembra proprio che l'Armadillo Indulgente ti abbia preso in simpatia! Andiamo, ti aiuteremo a sbarazzartene!\"",
|
||||
"questArmadilloCompletion": "Infine, dopo una lunga mattinata passata a convincere l'Armadillo Indulgente che vuoi, in effetti, lavorare, lei cede. \"Mi dispiace!\" si scusa. \"Volevo solo aiutarti, pensavo che tutti amassero i giorni pigri!\" <br><br> Tu sorridi e le fai sapere che la prossima volta che guadagnerai un giorno libero la inviterai. Lei torna a sorridere. @Tipsy e @krajzega, che passano in quel momento, si congratulano per il buon lavoro mentre lei si allontana, lasciando alcune uova come segno di scusa.",
|
||||
"questArmadilloBoss": "Armadillo Indulgente",
|
||||
"questArmadilloDropArmadilloEgg": "Armadillo (uovo)",
|
||||
"questArmadilloUnlockText": "Sblocca uova di Armadillo, aquistabili nel Mercato",
|
||||
"questArmadilloUnlockText": "Sblocca l'acquisto delle Uova di Armadillo nel Mercato",
|
||||
"questCowText": "La Mucca Muutante",
|
||||
"questCowNotes": "È stata una lunga, calda giornata, alle Fattorie Combattenti, e non c'è nulla che tu vorresti fare più di bere un lungo sorso di acqua e dormire. Sei là sognando a occhi aperti quando @Soloana improvvisamente grida, \"Correte! La mucca premio è muutata!\"<br><br>@eevachu deglutisce. \"Devono essere state le nostre cattive abitudini ad averla infettata.<br><br>\"Forza!\" @Feralem Tau dice. \"Facciamo qualcosa prima che muutino anche le altre mucche!\"<br><br>Hai sentito abbastanza. Basta sognare ad occhi aperti, è tempo di governare quelle cattive abitudini!",
|
||||
"questCowCompletion": "Mungi le tue buone abitudini fino all'ultima goccia, fino a quando la mucca torna alla sua forma originale. La mucca ti guarda attentamente con i suoi graziosi occhi marroni e spinge verso di te tre uova.<br><br>@fuzzytrees ride e ti da le uova, \"Forse è ancora muutata se in queste uova ci sono delle piccole mucche. Ma sono fiducioso che ti atterrai alle tue buone abitudini mentre le farai crescere!\"",
|
||||
"questCowBoss": "Mucca Muutante",
|
||||
"questCowDropCowEgg": "Mucca (uovo)",
|
||||
"questCowUnlockText": "Sblocca l'acquisto delle uova di mucca nel Mercato",
|
||||
"questCowUnlockText": "Sblocca l'acquisto delle Uova di Mucca nel Mercato",
|
||||
"questBeetleText": "Il BUG CRITICO",
|
||||
"questBeetleNotes": "Qualcosa nel dominio di Habitica è andato storto. La fucine dei Fabbri si sono spente, e strani errori stanno apparendo ovunque. Con un inquietante tremito, un nemico insidioso striscia fuori dal terreno... un BUG CRITICO! Ti fai forza mentre infetta la terra, e i glitch cominciano a sopraffare gli Habitanti attorno a te. @starsystemic urla, \"Dobbiamo aiutare i Fabbri a tenere questo Bug sotto controllo!\" Sembra che questo flagello del programmatore dovrà essere la tua priorità numero uno.",
|
||||
"questBeetleCompletion": "Con un colpo finale, schiacci il BUG CRITICO. @starsystemic e i Fabbri corrono verso di te, entusiasti. \"Non posso ringraziarti abbastanza per aver annientato quel bug! Ecco, prendi queste.\" Ti porge tre scintillanti uova di scarabeo. Se tutto va bene, questi piccoli bug, una volta cresciuti, saranno di aiuto ad Habitica, e non le faranno del male.",
|
||||
"questBeetleBoss": "BUG CRITICO",
|
||||
"questBeetleDropBeetleEgg": "Scarabeo (uovo)",
|
||||
"questBeetleUnlockText": "Sblocca l'acquisto delle uova di scarafaggio nel Mercato",
|
||||
"questBeetleUnlockText": "Sblocca l'acquisto delle Uova di Scarafaggio nel Mercato",
|
||||
"questGroupTaskwoodsTerror": "Terrore a Boscompito",
|
||||
"questTaskwoodsTerror1Text": "Terrore a Boscompito, Parte 1: Le fiamme a Boscompito",
|
||||
"questTaskwoodsTerror1Notes": "Non hai mai visto la Mietitrice Gioiosa così agitata. La sovrana dei Campi Rigogliosi atterra con il suo grifone scheletro al centro della Piazza della Produttività e, senza scendere, urla: \"Adorati Habitanti, abbiamo bisogno del vostro aiuto! Qualcuno sta appiccando incendi a Boscompito, e siamo ancora provati dalla battaglia contro Burnout. Se non sarà fermato, le fiamme potrebbero inghiottire tutti i nostri frutteti e i cespugli di bacche!\"<br><br>Ti offri subito come volontario e ti dirigi prontamente verso Boscompito. Mentre ti inoltri di soppiatto nella foresta di alberi da frutto più grande di Habitica, all'improvviso senti in lontananza delle voci metalliche e scricchiolanti, e percepisci il lieve odore del fumo. Poco dopo, un'orda di creature volanti dal teschio infuocato ti sfrecciano accanto emettendo grida stridule, divorando i rami e dando fuoco alle cime degli alberi!",
|
||||
@@ -375,12 +375,12 @@
|
||||
"questTaskwoodsTerror1Boss": "Sciame di Teschi di Fuoco",
|
||||
"questTaskwoodsTerror1RageTitle": "Rinascita dello Sciame",
|
||||
"questTaskwoodsTerror1RageDescription": "Rinascita dello Sciame: Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando é piena, lo Sciame di Teschi di Fuoco curerà il 30% della sua salute restante!",
|
||||
"questTaskwoodsTerror1RageEffect": "`Lo Sciame di Teschi di Fuoco usa RINASCITA DELLO SCIAME`\n\nIncoraggiati dalle loro vittorie, altri teschi ti turbinano attorno in una tempesta di fuoco!",
|
||||
"questTaskwoodsTerror1RageEffect": "`Lo Sciame di Teschi di Fuoco usa RINASCITA DELLO SCIAME!`\n\nIncoraggiati dalle loro vittorie, altri teschi ti turbinano attorno in una tempesta di fuoco!",
|
||||
"questTaskwoodsTerror1DropSkeletonPotion": "Pozione Scheletro",
|
||||
"questTaskwoodsTerror1DropRedPotion": "Pozione Rossa",
|
||||
"questTaskwoodsTerror1DropHeadgear": "Turbante del Piromante (copricapo)",
|
||||
"questTaskwoodsTerror2Text": "Terrore a Boscompito, Parte 2: Alla ricerca delle Fate Fiorenti",
|
||||
"questTaskwoodsTerror2Notes": "Dopo aver combattuto lo sciame di teschi infuocati, raggiungi un numeroso gruppo di contadini che ha trovato rifugio al limite della foresta. \"Il loro villaggio è stato bruciato da uno spirito d'autunno ribelle,\" dice una voce familiare. È @Kiwibot, il leggendario investigatore! \"Sono riuscito a radunare i sopravvissuti, ma non c'è alcun segno delle Fate Fiorenti che aiutano a far crescere i frutti selvatici di Boscompito. Per favore, devi aiutarmi a soccorrerle!\"",
|
||||
"questTaskwoodsTerror2Notes": "Dopo aver combattuto lo sciame di teschi infuocati, raggiungi un numeroso gruppo di contadini che ha trovato rifugio al limite della foresta. \"Il loro villaggio è stato bruciato da uno spirito d'Autunno ribelle,\" dice una voce familiare. È @Kiwibot, il leggendario investigatore! \"Sono riuscito a radunare i sopravvissuti, ma non c'è alcun segno delle Fate Fiorenti che aiutano a far crescere i frutti selvatici di Boscompito. Per favore, devi aiutarmi a soccorrerle!\"",
|
||||
"questTaskwoodsTerror2Completion": "Riesci a trovare l'ultima driade e ad allontanarla dai mostri. Quando ritorni dai contadini, sei accolto dalle fate riconoscenti, che ti danno una veste tessuta con magia splendente e seta. Improvvisamente, un rombo cupo echeggia fra gli alberi, scuotendo il terreno. \"Questo deve essere lo spirito ribelle,\" dice la Mietitrice Gioiosa. \"Sbrighiamoci!\"",
|
||||
"questTaskwoodsTerror2CollectPixies": "Fate",
|
||||
"questTaskwoodsTerror2CollectBrownies": "Folletti",
|
||||
@@ -397,7 +397,7 @@
|
||||
"questFerretCompletion": "Sconfiggi il truffatore dal pelo morbido e @UncommonCriminal dà alla folla i loro rimborsi. Avanza persino un po' di oro per te. Inoltre sembra che, nella fretta di scappare, il Furetto Nefando abbia lasciato cadere qualche uovo!",
|
||||
"questFerretBoss": "Furetto Nefando",
|
||||
"questFerretDropFerretEgg": "Furetto (uovo)",
|
||||
"questFerretUnlockText": "Sblocca l'acquisto delle uova di Furetto nel Mercato",
|
||||
"questFerretUnlockText": "Sblocca l'acquisto delle Uova di Furetto nel Mercato",
|
||||
"questDustBunniesText": "I Ferali Conigli della Polvere",
|
||||
"questDustBunniesNotes": "È passato molto tempo dall'ultima volta che hai spolverato qui, ma la cosa non ti preoccupa troppo - un po' di polvere non ha mai fatto male a nessuno, no? Non appena appoggi la tua mano vicino a uno degli angoli più impolverati e senti qualcosa mordere ricordi l'avvertimento di @InspectorCaracal: lasciare in giro cumuli di innocua polvere per troppo tempo li fa trasformare in feroci conigli polverosi! È meglio che tu li sconfigga prima che ricoprano tutta Habitica di piccole sporche particelle!",
|
||||
"questDustBunniesCompletion": "I conigli della polvere scompaiono in una nuvola di... beh, polvere. Man mano che si dirada, ti guardi intorno. Avevi dimenticato quanto è bello questo posto quando è pulito. Noti un piccolo cumulo d'oro dove prima c'era la polvere. Ti starai chiedendo come è arrivato lì!",
|
||||
@@ -423,13 +423,13 @@
|
||||
"questSlothCompletion": "Ci sei riuscito! Come sconfiggi il Bradipo Buonanotte, i suoi smeraldi si staccano. \"Grazie per avermi liberato dalla maledizione,\" dice il bradipo. \"Posso finalmente dormire bene, senza questi pesanti smeraldi sulla mia schiena. Prendi queste uova come ringraziamento, e puoi anche tenerti gli smeraldi.\" Il bradipo ti da tre uova di bradipo e si dirige verso luoghi più caldi.",
|
||||
"questSlothBoss": "Bradipo Buonanotte",
|
||||
"questSlothDropSlothEgg": "Bradipo (uovo)",
|
||||
"questSlothUnlockText": "Sblocca l'acquisto delle uova di bradipo nel Mercato",
|
||||
"questSlothUnlockText": "Sblocca l'acquisto delle Uova di Bradipo nel Mercato",
|
||||
"questTriceratopsText": "Il Triceratopo Travolgente",
|
||||
"questTriceratopsNotes": "I vulcani innevati di Stoïkalm sono sempre pieni di escursionisti e visitatori. Una turista, @plumilla, raduna una folla. \"Guardate! Ho fatto un incantesimo al terreno per farlo brillare. In questo modo potremo giocarci sopra e completare le nostre Attività Giornaliere sulle attività all'aperto!\" Effettivamente il terreno è illuminato da un turbinio di scintille rosse danzanti. Persino alcuni degli animali preistorici della zona vengono a giocare.<br><br>Improvissamente, c'è un forte schiocco -- un Triceratopo curioso ha calpestato la bacchetta di @plumilla! Viene avvolto in una fiammata di energia magica, e il terreno comincia a tremare e a scaldarsi. Gli occhi del Triceratopo brillano di rosso e, ruggendo, comincia a correre!<br><br>\"Quello non sembra promettere nulla di buono\", dice @McCoyly, indicando qualcosa in lontananza. A causa della magia, ogni passo del Triceratopo fa eruttare i vulcani, e il terreno brillante si sta trasformando in lava sotto i piedi del dinosauro! Veloce, devi tenere a distanza il Triceratopo Travolgente fino a quando qualcuno riuscirà ad invertire l'incantesimo!",
|
||||
"questTriceratopsCompletion": "Dopo averci pensato per un instante, raduni le creature nelle calmanti Steppe di Stoïkalm in modo che @*~Seraphina~* e @PainterProphet possano invertire l'incantesimo della lava senza distrazioni. L'aria tranquillante delle Steppe fa effetto, e il Triceratopo si raggomitola mentre i vulcani tornano ad essere nuovamente inattivi. @PainterProphet ti porge delle uova che sono state salvate dalla lava. \"Senza di te, non saremmo stati in grado di concentrarci per fermare le eruzioni. Prenditi cura di questi animali.\"",
|
||||
"questTriceratopsBoss": "Triceratopo Travolgente",
|
||||
"questTriceratopsDropTriceratopsEgg": "Triceratopo (uovo)",
|
||||
"questTriceratopsUnlockText": "Sblocca l'acquisto delle uova di triceratopo nel Mercato",
|
||||
"questTriceratopsUnlockText": "Sblocca l'acquisto delle Uova di Triceratopo nel Mercato",
|
||||
"questGroupStoikalmCalamity": "La calamità di Stoikalm",
|
||||
"questStoikalmCalamity1Text": "La calamità di Stoikalm, parte 1: Nemici di Terracotta",
|
||||
"questStoikalmCalamity1Notes": "Un messaggio conciso arriva da @Kiwibot, e la pergamena incrostata di ghiaccio ti congela tanto il cuore quanto le punta delle dita. \"Visitando le Steppe di Stoikalm--mostri che emergono dalla terra--inviare aiuti!\". Raccogli la tua squadra e ti dirigi a nord, ma appena ti avventuri giù dalle montagne, la neve sotto i vostri piedi esplode e teschi dal ghigno raccapricciante ti circondano!<br><br> All'improvviso, una lancia vi passa vicino, andando ad infilarsi in un teschio che si stava facendo largo attraverso la neve, in un tentativo di cogliervi impreparati. Una donna alta, in una armatura fatta a mano in maniera molto fine, galoppa in mezzo alla mischia sulla groppa di un mastodonte, con la sua lunga treccia che ondeggia mentre ritira la lancia in maniera poco cerimoniosa dalla bestia schiacciata. È tempo di sconfiggere questi nemici con l'aiuto della Signora dei Ghiacci, il capo dei Cavalcatori di Mammut!",
|
||||
@@ -437,12 +437,12 @@
|
||||
"questStoikalmCalamity1Boss": "Sciame di Teschi di Terra",
|
||||
"questStoikalmCalamity1RageTitle": "Rinascita dello Sciame",
|
||||
"questStoikalmCalamity1RageDescription": "Rinascita dello Sciame: Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando é piena, lo Sciame di Teschi di Terra curerà il 30% della sua salute restante!",
|
||||
"questStoikalmCalamity1RageEffect": "`Lo Sciame di Teschi di Terra usa RINASCITA DELLO SCIAME`\n\nAltri teschi emergono dal terreno, battendo i denti per il freddo!",
|
||||
"questStoikalmCalamity1RageEffect": "`Lo Sciame di Teschi di Terra usa RINASCITA DELLO SCIAME!`\n\nAltri teschi emergono dal terreno, battendo i denti per il freddo!",
|
||||
"questStoikalmCalamity1DropSkeletonPotion": "Pozione Scheletro",
|
||||
"questStoikalmCalamity1DropDesertPotion": "Pozione Deserto",
|
||||
"questStoikalmCalamity1DropArmor": "Armatura del cavaliere di mammut",
|
||||
"questStoikalmCalamity1DropArmor": "Armatura del Cavaliere di Mammut",
|
||||
"questStoikalmCalamity2Text": "La Calamità di Stoikalm, parte 2: La Ricerca delle Caverne dei Ghiaccioli",
|
||||
"questStoikalmCalamity2Notes": "Il grandioso salone dei Cavalcatori di Mammut è un austero capolavoro di architettura, ma è anche interamente vuoto. Non c'è più l'arredamento, le armi sono mancanti, e persino le colonne erano state ripulite dei loro intarsi.<br><br>\"Quei teschi hanno rovistato il posto\" la Signora dei Ghiacci dice, e c'è una tempesta che si prepara nel suo tono. \"Umiliante. Non un'anima lo menzionerà al Giullare d'Aprile, altrimenti non ascolterò la fine del discorso.\"<br><br>\"Com'è misterioso!\" dice @Beffymaroo. \"Ma dove sono--\"<br><br>\"Le caverne del Drago Fatato dei Ghiacci.\" La Signora dei Ghiacci fa un gesto verso le scintillanti monete sparse nella neve all'esterno. \"Negligente.\" <br><br> \"Ma i Draghi Fatati dei Ghiacci non sono creature onorevoli con le proprie scorte di tesori?\" @Beffymaroo domanda. \"Perché mai dovrebbero--\"<br><br>\"Controllo mentale\", dice la Signora dei Ghiacci, totalmente imperturbata. \"O qualcosa di ugualmente melodrammatico e inconveniente.\" Lei comincia a camminare a grandi passi allontanandosi dal salone. \"Perché state semplicemente li?\"<br><br> Veloci, andate a inseguire le tracce delle Monete dei Ghiaccioli!",
|
||||
"questStoikalmCalamity2Notes": "Il grandioso salone dei Cavalcatori di Mammut è un austero capolavoro di architettura, ma è anche interamente vuoto. Non c'è più l'arredamento, le armi sono mancanti, e persino le colonne erano state ripulite dei loro intarsi.<br><br>\"Quei teschi hanno rovistato il posto\" la Signora dei Ghiacci dice, e c'è una tempesta che si prepara nel suo tono. \"Umiliante. Non un'anima lo menzionerà al Giullare d'Aprile, altrimenti non ascolterò la fine del discorso.\"<br><br>\"Com'è misterioso!\" dice @Beffymaroo. \"Ma dove sono—\"<br><br>\"Le caverne del Drago Fatato dei Ghiacci.\" La Signora dei Ghiacci fa un gesto verso le scintillanti monete sparse nella neve all'esterno. \"Negligente.\" <br><br> \"Ma i Draghi Fatati dei Ghiacci non sono creature onorevoli con le proprie scorte di tesori?\" @Beffymaroo domanda. \"Perché mai dovrebbero--\"<br><br>\"Controllo mentale\", dice la Signora dei Ghiacci, totalmente imperturbata. \"O qualcosa di ugualmente melodrammatico e inconveniente.\" Lei comincia a camminare a grandi passi allontanandosi dal salone. \"Perché state semplicemente li?\"<br><br> Veloci, andate a inseguire le tracce delle Monete dei Ghiaccioli!",
|
||||
"questStoikalmCalamity2Completion": "Le Monete dei Ghiacci vi guidano direttamente all'entrata nascosta di una caverna sapientemente celata. Sebbene il tempo fuori sia calmo e piacevole, con il sole che splende sulla distesa di neve, all'interno c'è un ululato come di un forte vento invernale. La Signora dei Ghiacci fa una smorfia e ti passa un elmo da Cavalcatore di Mammut. \"Mettiti questo,\" dice. \"Ne avrai bisogno.\"",
|
||||
"questStoikalmCalamity2CollectIcicleCoins": "Monete di ghiaccio",
|
||||
"questStoikalmCalamity2DropHeadgear": "Elmo del cavaliere di mammut (copricapo)",
|
||||
@@ -454,31 +454,31 @@
|
||||
"questStoikalmCalamity3DropShield": "Corno del cavaliere di mammut (oggetto per mano sinistra)",
|
||||
"questStoikalmCalamity3DropWeapon": "Lancia del cavaliere di mammut (arma)",
|
||||
"questGuineaPigText": "La Gang dei Porcellini d'India",
|
||||
"questGuineaPigNotes": "Stai tranquillamente andando a passeggio per il famoso Mercato di Habit City quando @Panda ti fa un gesto per attirare la tua attenzione. \"Hey, dai una occhiata a queste!\" Loro stanno sostenendo un uovo marrone e beige che tu non riconosci. <br><br>Alexander il Mercante lo guarda in maniera interdetta. \" Non ricordavo di averlo messo fuori. Mi domando come sia arrivato--\" Una piccola zampa lo interrompe.<br><br>\"Dammi tutto il tuo oro, mercante!\" squittisce una minuscola voce colma di malvagità. <br><br>\"Oh no, l'uovo era una distrazione!\" @mewrose esclama. \"È la grintosa, avida Banda dei Porcellini d'India! Loro non fanno mai le loro Dailies, e quindi devono costantemente rubare oro per comprarsi Pozioni Salute\".<br><br> \"Rapinare il Mercato?\" dice @emmavig. \"Non mentre noi siamo di guardia!\" Senza ulteriore indugio, corri ad aiutare Alexander.",
|
||||
"questGuineaPigCompletion": "\"Ci arrendiamo!\" Il Boss della Gang dei Porcellini d'India fa cenno con le sue zampe a te, la soffice testa che guarda verso il basso con vergogna. Da sotto il suo capello cade una lista, e snazzyorange velocemente la afferra per raccogliere prove. \"Aspetta un attimo,\" tu dici. \"Non è un caso che tu ti stia facendo male! Tu hai troppe Dailies. Non hai bisogno di pozioni salute -- hai solamente bisogno di un aiuto per organizzarti.\" <br><br> \"Davvero?\" squittisce il Boss della Gang dei Porcellini d'India. \"Abbiamo rubato così tante persone per colpa di questo! Per favore prendi le nostre uova come una scusa per i nostri modi truffattori.\"",
|
||||
"questGuineaPigNotes": "Stai tranquillamente andando a passeggio per il famoso Mercato di Habit City quando @Panda ti fa un gesto per attirare la tua attenzione. \"Hey, dai una occhiata a queste!\" Loro stanno sostenendo un uovo marrone e beige che tu non riconosci. <br><br>Alexander il Mercante lo guarda in maniera interdetta. \" Non ricordavo di averlo messo fuori. Mi domando come sia arrivato—\" Una piccola zampa lo interrompe.<br><br>\"Dammi tutto il tuo oro, mercante!\" squittisce una minuscola voce colma di malvagità. <br><br>\"Oh no, l'uovo era una distrazione!\" @mewrose esclama. \"È la grintosa, avida Banda dei Porcellini d'India! Loro non fanno mai le loro Dailies, e quindi devono costantemente rubare oro per comprarsi Pozioni Salute\".<br><br> \"Rapinare il Mercato?\" dice @emmavig. \"Non mentre noi siamo di guardia!\" Senza ulteriore indugio, corri ad aiutare Alexander.",
|
||||
"questGuineaPigCompletion": "\"Ci arrendiamo!\" Il Boss della Gang dei Porcellini d'India fa cenno con le sue zampe a te, la soffice testa che guarda verso il basso con vergogna. Da sotto il suo capello cade una lista, e @snazzyorange velocemente la afferra per raccogliere prove. \"Aspetta un attimo,\" tu dici. \"Non è un caso che tu ti stia facendo male! Tu hai troppe Attività Giornaliere. Non hai bisogno di pozioni salute — hai solamente bisogno di un aiuto per organizzarti.\" <br><br> \"Davvero?\" squittisce il Boss della Gang dei Porcellini d'India. \"Abbiamo rubato così tante persone per colpa di questo! Per favore prendi le nostre uova come una scusa per i nostri modi truffatori.\"",
|
||||
"questGuineaPigBoss": "Gang dei Porcellini d'India",
|
||||
"questGuineaPigDropGuineaPigEgg": "Porcellino d'India (uovo)",
|
||||
"questGuineaPigUnlockText": "Sblocca l'acquisto delle uova di Porcellino d'India nel Mercato",
|
||||
"questGuineaPigUnlockText": "Sblocca l'acquisto delle Uova di Porcellino d'India nel Mercato",
|
||||
"questPeacockText": "Il Pavone Tira-e-Molla",
|
||||
"questPeacockNotes": "Ti aggiri per Boscompito, chiedendoti quale tra i nuovi allettanti obiettivi tu debba scegliere. Mentre ti addentri nella foresta, ti rendi conto di non essere solo nella tua indecisione. \"Potrei imparare una nuova lingua, o andare in palestra...\" borbotta @Cecily Perez. \"Potrei dormire di più,\" dice @Lilith of Alfheim fra sé e sé, \"o passare più tempo con i miei amici...\" Sembra che anche @PainterProphet, @Pfeffernusse, e @Draayder siano paralizzati dall'enorme quantità di possibili scelte.<br><br>Ti rendi conto che questi sensazioni sempre più intense in realtà non sono le tue... sei caduto dritto nella trappola del funesto Pavone Tira-e-Molla! Prima che tu possa correre, balza fuori dai cespugli. Con le due teste che ti spingono in direzioni opposte, cominci a sentirti sopraffare dal logoramento. Non puoi sconfiggere entrambi i nemici contemporaneamente, quindi hai una sola scelta -- concentrarti sull'attività più vicina per contrattaccare!",
|
||||
"questPeacockNotes": "Ti aggiri per Boscompito, chiedendoti quale tra i nuovi allettanti obiettivi tu debba scegliere. Mentre ti addentri nella foresta, ti rendi conto di non essere solo nella tua indecisione. \"Potrei imparare una nuova lingua, o andare in palestra...\" borbotta @Cecily Perez. \"Potrei dormire di più,\" dice @Lilith of Alfheim fra sé e sé, \"o passare più tempo con i miei amici...\" Sembra che anche @PainterProphet, @Pfeffernusse, e @Draayder siano paralizzati dall'enorme quantità di possibili scelte.<br><br>Ti rendi conto che questi sensazioni sempre più intense in realtà non sono le tue... sei caduto dritto nella trappola del funesto Pavone Tira-e-Molla! Prima che tu possa correre, balza fuori dai cespugli. Con le due teste che ti spingono in direzioni opposte, cominci a sentirti sopraffare dal logoramento. Non puoi sconfiggere entrambi i nemici contemporaneamente, quindi hai una sola scelta — concentrarti sull'attività più vicina per contrattaccare!",
|
||||
"questPeacockCompletion": "Il Pavone Tira-e-Molla è preso alla sprovvista dalla tua improvvisa sicurezza. Sconfitto dalla tua tenacia, le sue due teste si uniscono in una sola per rivelare la creatura più meravigliosa che tu abbia mai visto. \"Grazie,\" dice il pavone. \"Ho passato così tanto tempo a spingermi in direzioni diverse che ho perso di vista quello che volevo veramente. Ti prego, accetta queste uovo come segno della mia gratitudine.\"",
|
||||
"questPeacockBoss": "Pavone Tira-e-Molla",
|
||||
"questPeacockDropPeacockEgg": "Pavone (uovo)",
|
||||
"questPeacockUnlockText": "Sblocca l'acquisto delle uova di pavone nel Mercato",
|
||||
"questPeacockUnlockText": "Sblocca l'acquisto delle Uova di Pavone nel Mercato",
|
||||
"questButterflyText": "Ciao, ciao, Fiamfalla",
|
||||
"questButterflyNotes": "Il tuo amico giardiniere @Megan ti manda un invito: \"Questi giorni tiepidi sono il momento perfetto per visitare il giardino delle farfalle di Habitica nella campagna di Taskan. Vieni a vedere le farfalle migrare!\" Quando arrivi però, il giardino è un disastro - poco più che erba arsa dal sole e erbacce secche. È stato così caldo che gli Habitanti non sono usciti per dare acqua ai fiori, e le Dailies rosso scuro sono diventate un pericolo d'incendio secco e bruciato dal sole. C'è solamente una farfalla li, e c'è qualcosa di strano relativamente a questa...<br><br> \"Oh no! Questo è il perfetto habitat per la Fiamfalla Fiammeggiante,\" esclama @Leephon. <br><br>\"Se non la prendiamo, distruggerà qualsiasi cosa!\" sussulta @Eevachu.<br><br> È tempo di dire ciao, ciao alla Fiamfalla!",
|
||||
"questButterflyNotes": "Il tuo amico giardiniere @Megan ti manda un invito: \"Questi giorni tiepidi sono il momento perfetto per visitare il giardino delle farfalle di Habitica nella campagna di Taskan. Vieni a vedere le farfalle migrare!\" Quando arrivi però, il giardino è un disastro — poco più che erba arsa dal sole e erbacce secche. È stato così caldo che gli Habitanti non sono usciti per dare acqua ai fiori, e le Attività Giornaliere rosso scuro sono diventate un pericolo d'incendio secco e bruciato dal sole. C'è solamente una farfalla li, e c'è qualcosa di strano relativamente a questa...<br><br> \"Oh no! Questo è il perfetto habitat per la Fiamfalla Fiammeggiante,\" esclama @Leephon. <br><br>\"Se non la prendiamo, distruggerà qualsiasi cosa!\" sussulta @Eevachu.<br><br> È tempo di dire ciao, ciao alla Fiamfalla!",
|
||||
"questButterflyCompletion": "Dopo un ardente battaglia, la Fiamfalla Fiammeggiante è stata catturata. \"Ottimo lavoro, avrebbe portato nient'altro che incendi,\" dice @Megan con un sospiro di sollievo. \"Tuttavia, è difficile diffamare anche la più vile fra le farfalle. Faremmo meglio a liberare questa Fiamfalla in un luogo sicuro... come il deserto.\" <br><br>Uno degli altri giardinieri, @Beffymaroo, viene da te, bruciacchiato ma sorridente. \"Aiutereste a far crescere queste crisalidi abbandonate che abbiamo trovato? Magari il prossimo anno avremo un giardino più verde per loro.\"",
|
||||
"questButterflyBoss": "Fiamfalla Fiammeggiante",
|
||||
"questButterflyDropButterflyEgg": "Bruco (uovo)",
|
||||
"questButterflyUnlockText": "Sblocca l'acquisto delle uova di bruco nel Mercato",
|
||||
"questButterflyUnlockText": "Sblocca l'acquisto delle Uova di Bruco nel Mercato",
|
||||
"questGroupMayhemMistiflying": "Caos a Fantalata",
|
||||
"questMayhemMistiflying1Text": "Caos a Fantalata, Parte 1: Fantalata fa esperienza di un tremendo fastidio",
|
||||
"questMayhemMistiflying1Notes": "Sebbene indovini locali abbiano predetto un tempo piacevole, il pomeriggio è estremamente ventilato, e quindi segui con gratitudine il tuo amico @Kiwibot nella sua casa per sfuggire alla giornata burrascosa. <br><br>Nessuno di voi due si aspetta di trovare il Giullare d'Aprile che poltrisce al tavolo della cucina. <br><br>\"Oh, ciao\", dice. \" Bello vedervi qui. Per favore, lasciatemi offrirvi un po' di questo delizioso tè.\"<br><br>\"Ma quello...\"@Kiwibot esordisce. \"Quello è il MIO-\"<br><br>\"Si, si, certo,\" dice il Giullare d'Aprile, prendendosi un po' di biscotti. \"Ho solo pensato di entrare dentro per avere un attimo di tregua da tutti quei teschi che richiamano il tornado.\" dice sorseggiando con tranquillità dalla sua tazza di tè. \"E comunque, la città di Fantalata è sotto attacco.\" <br><br> Sconvolti, tu e i tuoi amici correte alle Stalle e sellate le vostre cavalcature alate più veloci. Mentre vi levate in volo verso la città fluttuante, vedete uno storno di cinguettanti e volanti teschi che stanno assediando la città...e numerosi di questi volgono la loro attenzione verso di voi!",
|
||||
"questMayhemMistiflying1Notes": "Sebbene indovini locali abbiano predetto un tempo piacevole, il pomeriggio è estremamente ventilato, e quindi segui con gratitudine il tuo amico @Kiwibot nella sua casa per sfuggire alla giornata burrascosa. <br><br>Nessuno di voi due si aspetta di trovare il Giullare d'Aprile che poltrisce al tavolo della cucina. <br><br>\"Oh, ciao\", dice. \" Bello vedervi qui. Per favore, lasciatemi offrirvi un po' di questo delizioso tè.\"<br><br>\"Ma quello...\"@Kiwibot esordisce. \"Quello è il MIO-\"<br><br>\"Si, si, certo,\" dice il Giullare d'Aprile, prendendosi un po' di biscotti. \"Ho solo pensato di entrare dentro per avere un attimo di tregua da tutti quei teschi che richiamano il tornado.\" dice sorseggiando con tranquillità dalla sua tazza di tè. \"E comunque, la città di Fantalata è sotto attacco.\" <br><br> Sconvolti, tu e i tuoi amici correte alle Stalle e sellate le vostre cavalcature alate più veloci. Mentre vi levate in volo verso la città fluttuante, vedete uno storno di cinguettanti e volanti teschi che stanno assediando la città... e numerosi di questi volgono la loro attenzione verso di voi!",
|
||||
"questMayhemMistiflying1Completion": "L'ultimo teschio cade dal cielo, con un luccicante completo di vesti arcobaleno incastrato tra i suoi denti, ma il forte vento non si è quietato. C'è qualcos'altro che non va. E dove è quel Giullare d'Aprile indolente? Tiri su le vesti, e quindi ti dirigi in picchiata dentro la città.",
|
||||
"questMayhemMistiflying1Boss": "Sciame di Teschi di Aria",
|
||||
"questMayhemMistiflying1RageTitle": "Rinascita dello Sciame",
|
||||
"questMayhemMistiflying1RageDescription": "Rinascita dello Sciame: Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando é piena, lo Sciame di Teschi di Aria curerà il 30% della sua salute restante!",
|
||||
"questMayhemMistiflying1RageEffect": "`Lo Sciame di Teschi di Aria usa RINASCITA DELLO SCIAME`\n\nIncoraggiati dalle loro vittorie, altri teschi volano giù dalle nuvole!",
|
||||
"questMayhemMistiflying1RageEffect": "`Lo Sciame di Teschi di Aria usa RINASCITA DELLO SCIAME!`\n\nIncoraggiati dalle loro vittorie, altri teschi volano giù dalle nuvole!",
|
||||
"questMayhemMistiflying1DropSkeletonPotion": "Pozione Scheletro",
|
||||
"questMayhemMistiflying1DropWhitePotion": "Pozione di Schiusa Bianca",
|
||||
"questMayhemMistiflying1DropArmor": "Vesti Arcobaleno del Messaggero Malandrino (Armatura)",
|
||||
@@ -503,7 +503,7 @@
|
||||
"questNudibranchCompletion": "Vedi l'ultimo Nudibranchio FaiOra scivolare lungo una pila di attività completate mentre @amadshade le lava via. Uno lascia dietro di sè una borsa di tessuto, e tu lo apri trovandoci dentro dell'oro, e alcuni piccoli oggetti rotondi che immagini essere uova.",
|
||||
"questNudibranchBoss": "Nudibranchio FaiOra",
|
||||
"questNudibranchDropNudibranchEgg": "Nudibranchio (uovo)",
|
||||
"questNudibranchUnlockText": "Sblocca l'acquisto delle uova di nudibranchio nel Mercato",
|
||||
"questNudibranchUnlockText": "Sblocca l'acquisto delle Uova di Nudibranchio nel Mercato",
|
||||
"splashyPalsText": "Pacchetto missioni Amici Sguazzanti",
|
||||
"splashyPalsNotes": "Contiene le missioni per ottenere uova di Tartaruga, Balena e Cavalluccio Marino: Guida la Tartaruga, Il Lamento della Balena e Il Derby Dilatorio.",
|
||||
"questHippoText": "Ma che Ippo-Crita",
|
||||
@@ -511,7 +511,7 @@
|
||||
"questHippoCompletion": "L'ippopotamo si inginocchia arreso. \"Vi ho sottovalutati. Sembra che non eravate pigri. Scusatemi. A dire il vero, stavo esagerando un po. Forse dovrei lavorare un po da solo. Ecco qui, prendete queste uova come segno della mia gratitudine.\" Afferrandole, ti siedi vicino all'acqua pronto finalmente a rilassarti.",
|
||||
"questHippoBoss": "L'Ippo-Crita",
|
||||
"questHippoDropHippoEgg": "Ippopotamo (Uovo)",
|
||||
"questHippoUnlockText": "Sblocca le uova di Ippopotamo acquistabili nel Mercato",
|
||||
"questHippoUnlockText": "Sblocca l'acquisto delle Uova di Ippopotamo nel Mercato",
|
||||
"farmFriendsText": "Pacchetto missioni Amici della Fattoria",
|
||||
"farmFriendsNotes": "Contiene le missioni per ottenere uova di Cavallo, Pecora e Mucca: Cavalca il Destriero dell'Incubo, L'Ariete Tuonante e La Mucca Muutante.",
|
||||
"witchyFamiliarsText": "Pacchetto di Missioni dei Famigli Stregati",
|
||||
@@ -544,11 +544,11 @@
|
||||
"questLostMasterclasser3DropZombiePotion": "Pozione di Schiusa Zombificante",
|
||||
"questLostMasterclasser4Text": "Il Mistero dei Masterclasser, Parte 4: la Masterclasser Perduta",
|
||||
"questLostMasterclasser4Notes": "Esci dal portale, ma sei sempre sospeso in uno strano, mutevole nulla. \"Ardito da parte tua,\" dice una voce fredda. \"Ammetto, non avevo ancora pianificato per un confronto diretto.\" Una donna emerge dal vortice ribollente di oscurità. \"Benvenuto nel Reame del Vuoto.\"<br><br>Provi a combattere la nausea che ti sta assalendo. \"Sei tu Zinnya?\" chiedi.<br><br>\"Quel vecchio nome per una giovane idealista,\" dice, con le labbra che si torcono in una smorfia, e la realtà trema sotto di te. \"No. Se vuoi darmi un nome, dovresti chiamarmi Anti'zinnya ora, visto tutto quello che ho fatto e disfatto.\"<br><br>Improvvisamente, il portale si riapre dietro di te, e come i quattro Masterclasser ne escono, lanciandosi verso di te, lo sguardo di Anti'zinnya si tinge di odio. \"Vedo che i miei patetici rimpiazzi sono riusciti a seguirti.\"<br><br>Tu la guardi. \"Rimpiazzi?\"<br><br>\"Come Master Eteromante, ero la prima Masterclasse. L'unica Masterclasser. Questi quattro sono una beffa, ognuno possiede solo un frammento di quello che io avevo! Comandavo ogni incantesimo e imparavo ogni abilità. Ho dato forma al vostro mondo secondo la mia volontà, fino a che l'etere traditore non è collassato sotto il peso dei miei talenti e delle mie perfettamente ragionevoli aspettative. Sono rimasta intrappolata per millenni nel vuoto nato da quel collasso, recuperando. Immaginate il mio disgusto quando ho scoperto che la mia eredità è stata corrotta.\" Forma una risata, bassa ed echeggiante. \"Il mio piano era di distruggere i loro domini prima di distruggere loro, ma immagino che l'ordine sia irrilevante.\" Con uno scoppio di forza sconcertante, carica in avanti, e il Reame del Vuoto esplode nel caos.",
|
||||
"questLostMasterclasser4Completion": "Sotto l'assalto del tuo attacco finale, la Masterclasser perduta urla in frustrazione, il suo corpo tremolando nella traslucenza. Il vuoto agitato si ferma attorno a lei, mentre lei cade in avanti, e per un momento sembra cambiare, diventando più giovane e calma e con una espressione pacifica sul volto... ma poi tutto si dissolve con appena un sussurro, e sei ancora una volta inginocchiato nel deserto di sabbia.<br><br>\"Sembra che abbiamo molto da imparare sulla nostra storia,\" dice Re Manta guardando le rovine. \"Dopo che la Maestra Eteromante è stata sopraffatta e perse il controllo delle sue abilità, lo sversamento del vuoto deve aver assorbito la vita dalla terra. Probabilmente è diventato tutto desertico come qua.\"<br><br>\"Non c'è da meravigliarsi se gli antichi che hanno fondato Habitica predicavamo l'importanza di avere un equilibrio tra produttività e benessere,\" mormora la Gioiosa Mietitrice. \"Ricostruire il loro mondo deve essere stata un compito arduo che ha richiesto molto duro lavoro, ma volevano prevenire una tale catastrofe dall'avvenire di nuovo.\"<br><br>\"Oho, guardate a questi oggetti che erano posseduti!\" dice il Giullare d'Aprile. Infatti, tutti luccicano con una pallida translucenza per l'esplosione di etere rilasciato quando avete messo a riposo lo spirito di Anti'zinnya. \"Che effetto incantevole. Devo prendere appunti.\"<br><br>\"L'etere concentrato rimasto in questa area probabilmente è anche ciò che ha causato questi animali ad essere invisibili,\" dice Lady Glaciale, grattando dietro le orecchie un pezzo di vuoto. Percepisci una testa pelosa toccare la tua mano, e sospetti che dovrai dare qualche spiegazione alle Scuderie a casa. Guardi alle rovine un'ultima volta, e vedi tutto ciò che rimane della prima Masterclasser: il suo luccicante mantello. Mettendotelo sulle spalle, ti incammini verso Habit City, pensando a tutto quello che hai scoperto.<br><br>",
|
||||
"questLostMasterclasser4Completion": "Sotto l'assalto del tuo attacco finale, la Masterclasser perduta urla in frustrazione, il suo corpo tremolando nella traslucenza. Il vuoto agitato si ferma attorno a lei, mentre lei cade in avanti, e per un momento sembra cambiare, diventando più giovane e calma e con una espressione pacifica sul volto... ma poi tutto si dissolve con appena un sussurro, e sei ancora una volta inginocchiato nel deserto di sabbia.<br><br>\"Sembra che abbiamo molto da imparare sulla nostra storia,\" dice Re Manta guardando le rovine. \"Dopo che la Maestra Eteromante è stata sopraffatta e perse il controllo delle sue abilità, lo sversamento del vuoto deve aver assorbito la vita dalla terra. Probabilmente è diventato tutto desertico come qua.\"<br><br>\"Non c'è da meravigliarsi se gli antichi che hanno fondato Habitica predicavamo l'importanza di avere un equilibrio tra produttività e benessere,\" mormora la Gioiosa Mietitrice. \"Ricostruire il loro mondo deve essere stata un compito arduo che ha richiesto molto duro lavoro, ma volevano prevenire una tale catastrofe dall'avvenire di nuovo.\"<br><br>\"Oho, guardate a questi oggetti che erano posseduti!\" dice il Giullare d'Aprile. Infatti, tutti luccicano con una pallida translucenza per l'esplosione di etere rilasciato quando avete messo a riposo lo spirito di Anti'zinnya. \"Che effetto incantevole. Devo prendere appunti.\"<br><br>\"L'etere concentrato rimasto in questa area probabilmente è anche ciò che ha causato questi animali ad essere invisibili,\" dice Lady Glaciale, grattando dietro le orecchie un pezzo di vuoto. Percepisci una testa pelosa toccare la tua mano, e sospetti che dovrai dare qualche spiegazione alle scuderie a casa. Guardi alle rovine un'ultima volta, e vedi tutto ciò che rimane della prima Masterclasser: il suo luccicante mantello. Mettendotelo sulle spalle, ti incammini verso Habit City, pensando a tutto quello che hai scoperto.<br><br>",
|
||||
"questLostMasterclasser4Boss": "Anti'zinnya",
|
||||
"questLostMasterclasser4RageTitle": "Vuoto Aspirante",
|
||||
"questLostMasterclasser4RageDescription": "Vuoto Sifonante: questa barra si riempe quando non completi le tue attività giornaliere. Quando è piena, Anti'zinnya assorbirà il mana della squadra!",
|
||||
"questLostMasterclasser4RageEffect": "`Anti'zinnya usa VUOTO SIFONANTE!` In una versione perversa dell'incantesimo Ondata Eterea, senti la tua magia venire drenata nell'oscurità!",
|
||||
"questLostMasterclasser4RageDescription": "Vuoto Sifonante: questa barra si riempe quando non completi le tue Attività Giornaliere. Quando è piena, Anti'zinnya assorbirà il Mana della squadra!",
|
||||
"questLostMasterclasser4RageEffect": "`Anti'zinnya usa VUOTO SIFONANTE!` In un'inversione contorta dell'incantesimo Ondata Eterea, senti la tua magia venire drenata nell'oscurità!",
|
||||
"questLostMasterclasser4DropBackAccessory": "Mantello Etereo (access. schiena)",
|
||||
"questLostMasterclasser4DropWeapon": "Cristalli Eterei (arma a due mani)",
|
||||
"questLostMasterclasser4DropMount": "Cavalcatura Eterea Invisibile",
|
||||
@@ -565,13 +565,13 @@
|
||||
"questPterodactylCompletion": "Con un ultimo stridio lo Pterrore-Dattilo precipita sul fianco della scogliera. Corri per vederlo volare via oltre le distanti steppe. \"Uff, sono felice che sia finita,\" dici. \"Anche io,\" risponde @GeraldThePixel. \"Guarda! Ha lasciato qualche uovo per noi.\" @Edge ti passa tre uova e prometti di crescerle con tranquillità circondate da Abitudini positive e Attività Giornaliere blu.",
|
||||
"questPterodactylBoss": "Pterrore-dattilo",
|
||||
"questPterodactylDropPterodactylEgg": "Pterodattilo (uovo)",
|
||||
"questPterodactylUnlockText": "Sblocca uova di Pterodattilo da acquistare nel Mercato",
|
||||
"questPterodactylUnlockText": "Sblocca l'acquisto delle Uova di Pterodattilo nel Mercato",
|
||||
"questBadgerText": "Smettila di tormentarmi!",
|
||||
"questBadgerNotes": "Ah, l'inverno di Boscompito. La soffice neve cadente, i rami gelati luccicano, le Fate Fiorenti... ancora non dormono?<br><br>\"Perché sono ancora sveglie?\" urla @LilithofAlfheim. \"Se non si ibernano al più presto non avranno mai l'energia per fissare la stagione.\"<br><br>Mentre tu e @Willow the Witty vi affrettate ad investigare, una testa pelosa appare dal terreno. Prima che tu possa urlare, \"È il Fastidio Tormentoso!\" torna nella sua tana—ma non prima di afferrare le Cose da Fare delle Fate \"Ibernate\" lasciando un enorme lista di fastidiose attività al loro posto!<br><br>\"Non c'è da stupirsi che le fate non stiano riposando, sono costantemente tormentate!\" Dice @plumilla. Puoi scacciare questa bestia e salvare il raccolto di Boscompito di quest'anno?",
|
||||
"questBadgerCompletion": "Finalmente scacci via il Fastidio Tormentoso e ti precipiti nella tana. Alla fine del tunnel trovi il suo tesoro delle Cose da Fare delle fate \"Ibernate\". Il covo è vuoto abbandonato eccetto per tre uova che sembrano pronte per essere schiuse.",
|
||||
"questBadgerBoss": "Il Fastidio Tormentoso",
|
||||
"questBadgerDropBadgerEgg": "Tasso (Uovo)",
|
||||
"questBadgerUnlockText": "Sblocca la possibilità di acquistare uova di Tasso nel Mercato",
|
||||
"questBadgerUnlockText": "Sblocca l'acquisto delle Uova di Tasso nel Mercato",
|
||||
"questDysheartenerText": "Il Discoraggiante",
|
||||
"questDysheartenerNotes": "Il sole sta sorgendo il giorno di San Valentino quando uno spaventoso schianto fende l'aria. Un fascio di una malsana luce rosa colpisce gli edifici, e i mattoni si sgretolano mentre una profonda crepa si forma attraverso la strada principale di Habit City. Uno strillo ultraterreno si alza nell'aria, frantumando le finestre, mentre una forma massiccia striscia fuori dalla voragine.<br><br>Mandibole che schioccano e un carapace che scintilla; zampe dopo zampe si spiegano nell'aria. La folla inizia a urlare quando l'insettoide si alza, rivelando di essere niente di meno che la creatula più crudele: lo spaventoso Discorante. Ulula in anticipazione e si fionda in avanti, impaziente di masticare le speranze degli Habitanti produttivi. Con ogni movimento dei suoi arti spinosi senti la morsa della disperazione più forte nel tuo petto.<br><br>\"Abbiate coraggio!\" urla Lemoness. \"Forse pensa che siamo bersagli facili perché molti di noi hanno buoni propositi per l'anno nuovo che sono difficili, ma sta per scoprire che gli Habitanti non abbandonano i loro obbiettivi!<br><br>AnnDeLune alza il suo bastone. \"Attacchiamo le nostre attività e abbattiamo questo mostro!\"",
|
||||
"questDysheartenerCompletion": "<strong>Il Discorante è SCONFITTO!</strong><br><br>Tutti assieme gli Habitanti lanciano un attacco finale contro le loro attività, e il Discorante si alza sulle zampe anteriori indietreggiando, strillando di sgomento. \"Cosa c'è che non va, Discorante?\" AnnDeLune urla, con gli occhi luccicanti. \"Ti senti discoraggiato?\"<br><br>Crepe che emettono una luce rosa si formano su tutto il carapace del Discorante, e si frantuma in una nuvola di fumo rosa. Un rinnovato senso di vigore e determinazione attraversa la città, e dal cielo iniziano a piovere dolci sui combattenti.<br><br>La folla esulta, abbracciandosi mentre gli animali masticando felicemente sui dolci. Improvvisamente, un coro gioioso discende dal cielo.<br><br>Il nostro ritrovato ottimisto ha attirato una mandria di Ippogrifi della Speranza! Le creature aggraziate atterrano, arruffando le loro piuem con interesse e trottando in giro. \"Sembra che abbiamo fatto dei nuovi amici per aiutarci a tenere alti i nostri spiriti, anche quando le nostre attività ci fanno paura,\" dice Lemoness.<br><br>Beffymaroo ha già le braccia colme di bestioline piumate e fluffose. \"Magari ci aiuterete a ricostruire le aree danneggiate di Habitica!\"<br><br>Gli Ippogrifi cantando mostrano la via mentre tutti gli Habitanti si mettono al lavoro per riprare le nostre amata casa.",
|
||||
@@ -600,23 +600,23 @@
|
||||
"questSquirrelCompletion": "Con un approccio gentile, offerte di baratto, e alcuni incantesimi calmanti, siete in grado di attirare lo scoiattolo lontano dal suo bottino e verso le stalle, che @Shtut ha appena finito di liberare dalle ghiande. Hanno messo alcune delle ghiande da parte su un tavolo da lavoro. \"Queste sono uova di scoiattolo! Magari ne puoi crescere alcuni che non giocano con il loro cibo così tanto.\"",
|
||||
"questSquirrelBoss": "Scoiattolo Furtivo",
|
||||
"questSquirrelDropSquirrelEgg": "Scoiattolo (Uovo)",
|
||||
"questSquirrelUnlockText": "Sblocca l'acquisto delle uova di Scoiattolo nel Mercato",
|
||||
"questSquirrelUnlockText": "Sblocca l'acquisto delle Uova di Scoiattolo nel Mercato",
|
||||
"cuddleBuddiesText": "Pacchetto di Missioni degli Amici Coccolosi",
|
||||
"cuddleBuddiesNotes": "Contiene le missioni per ottenere uova di Coniglio, Furetto e Porcellino d'India: La Coniglietta Ladra, Il Furetto Nefando e La Gang dei Porcellini d'India.",
|
||||
"aquaticAmigosText": "Pacchetto di Missioni degli Amici Acquatici",
|
||||
"aquaticAmigosNotes": "Contiene le missioni per ottenere uova di Seppia, Polpo e Axolotl: Il Kraken dell'Inkompletezza, Il Richiamo di Octothulu e Il Magico Axolotl.",
|
||||
"questSeaSerpentText": "Pericolo nelle Profondità: Il Serpente Marino Colpisce!",
|
||||
"questSeaSerpentNotes": "Le tue serie sulle attività giornaliere ti fanno sentire fortunato. È il momento perfetto per una gita al circuito per le corse dei cavallucci marini. Ti imbarchi su un sottomarino ai Moli Diligenti e ti sistemi per la gita a Dilatoria, ma il sottomarino è appena sceso sotto il pelo dell'acqua quando un impatto sballotta il sottomarino, mandando gli occupanti a gambe all'aria. \"Cosa succede?\" grida @AriesFaries.<br><br>Guardi attraverò un oblò vicino e sei sorpreso dal muro di scaglie luccicanti che vedi. \"Serpente marino!\" dice il Capitano @WItticaster attraverso l'interfono. \"Preparatevi, sta tornando verso di noi!\" Come afferri i braccioli del tuo sedile, le tue attività incomplete ti passano davanti agli occhi. 'Magari se lavoriamo assieme e le completiamo,', pensi, 'possiamo scacciare questo mostro!'",
|
||||
"questSeaSerpentNotes": "Le tue serie sulle Attività Giornaliere ti fanno sentire fortunato. È il momento perfetto per una gita al circuito per le corse dei cavallucci marini. Ti imbarchi su un sottomarino ai Moli Diligenti e ti sistemi per la gita a Dilatoria, ma il sottomarino è appena sceso sotto il pelo dell'acqua quando un impatto sballotta il sottomarino, mandando gli occupanti a gambe all'aria. \"Cosa succede?\" grida @AriesFaries.<br><br>Guardi attraverò un oblò vicino e sei sorpreso dal muro di scaglie luccicanti che vedi. \"Serpente marino!\" dice il Capitano @WItticaster attraverso l'interfono. \"Preparatevi, sta tornando verso di noi!\" Come afferri i braccioli del tuo sedile, le tue attività incomplete ti passano davanti agli occhi. 'Magari se lavoriamo assieme e le completiamo,', pensi, 'possiamo scacciare questo mostro!'",
|
||||
"questSeaSerpentCompletion": "Malconcio per il tuo impegno, il serpente marino scappa, scomparendo nelle profondità. Quando arrivi a Dilatoria, sospiri di sollievo prima di notare @*~Seraphina~ che si avvicina a te con tre uova traslucide tra le braccia. \"Tieni, dovresti avere queste,\" dice. \"Sai come gestire un serpente marino!\" Come accetti le uova, giuri di rimanere costante nel completare le tue attività così che la situazione non si ripeta.",
|
||||
"questSeaSerpentBoss": "Il Possente Serpente Marino",
|
||||
"questSeaSerpentDropSeaSerpentEgg": "Serpente Marino (Uovo)",
|
||||
"questSeaSerpentUnlockText": "Sblocca l'acquisto delle uovo del Serpente Marino nel Mercato",
|
||||
"questSeaSerpentUnlockText": "Sblocca l'acquisto delle Uova di Serpente Marino nel Mercato",
|
||||
"questKangarooText": "Catastrofe Canguro",
|
||||
"questKangarooNotes": "Forse avresti dovuto finire quell'ultima attività... lo sai, quella che continui ad evitare, anche se continua a tornare. Ma @Mewrose e @LilithofAlfheim invitano te e @stefalupagus a vedere un una rara truppa canguro saltellare nella Savana Sloensteadi; come puoi dire di no?! Mentre la truppa appare alla vista, qualcosa ti colpisce dietro alla la testa con un grosso <em>whack!</em><br><br>Scuotendo le stelle che ti girano in testa, prendi l'oggetto responsabile-- un boomerang rosso scuro, con la stessa attività che continuamente respingi incisa sulla sua superficie. Una rapida occhiata attorno conferma che il resto della squadra ha avuto la stessa esperienza. Un più grosso canguro ti guarda con un sorrisetto compiaciuto, come se ti stesse sfidando ad affrontarlo assieme alla temuta attività una volta per tutte!",
|
||||
"questKangarooCompletion": "\"ORA!\" segnali alla tua squadra di tirare il boomerang indietro al canguro. La bestia salta più lontano con ogni colpo fino a che non fugge, lasciando nulla ma una nuvola di polvere rossa, alcune uova, e una manciata di monete.<br><br>@Mewrose cammina verso dove era il canguro. \"Ehi, dove sono andati i boomerang?\"<br><br>\"Sono probabilmente diventati polvere formando quella nuvola di polvere rossa, quando abbiamo finito le nostre attività,\" @stefalupagus ipotizza.<br><br>@LilithofAlfheim socchiude gli occhi verso l'orizzonte. \"Quella è un'altra squadra di canguri che viene nella nostra direzione?\"<br><br>Vi mettete tutti a correre verso Habit City. Meglio affrontare le vostre attività più difficili che un'altra botta in testa!",
|
||||
"questKangarooBoss": "Canguro Catastrofico",
|
||||
"questKangarooDropKangarooEgg": "Canguro (Uovo)",
|
||||
"questKangarooUnlockText": "Sblocca l'acquisto delle uova di Canguro nel Mercato",
|
||||
"questKangarooUnlockText": "Sblocca l'acquisto delle Uova di Canguro nel Mercato",
|
||||
"forestFriendsText": "Pacchetto missioni Amici della Foresta",
|
||||
"forestFriendsNotes": "Contiene le missioni per ottenere uova di Alberello, Cervo e Riccio: L'Albero Aggrovigliato, Lo Spirito della Primavera e La Bestia Spinosa.",
|
||||
"questAlligatorText": "L'Insta-Gatore",
|
||||
@@ -624,7 +624,7 @@
|
||||
"questAlligatorCompletion": "Con la tua attenzione su ciò che è importante e non sulle distrazioni dell'Insta-Gatore, l'Insta-Gatore fugge. Vittoria! \"Sono uova quelle? Sembrano uova di alligatore,\" chiede @mfonda. \"Se ce ne prendiamo cura come si deve saranno fedeli animali o leali cavalcature,\" risponde @UncommonCriminal, dandotenete tre. Speriamo, oppure l'Insta-Gatore potrebbe tornare…",
|
||||
"questAlligatorBoss": "Insta-Gatore",
|
||||
"questAlligatorDropAlligatorEgg": "Alligatore (Uovo)",
|
||||
"questAlligatorUnlockText": "Sblocca l'acquisto delle uova di Alligatore nel Mercato",
|
||||
"questAlligatorUnlockText": "Sblocca l'acquisto delle Uova di Alligatore nel Mercato",
|
||||
"oddballsText": "Pacchetto di Missioni delle Palline Strane",
|
||||
"oddballsNotes": "Contiene le missioni per ottenere uova di Melma, Gomitolo e Roccia: Il Reggente Gelatina, La Lana Ingarbugliata e Fuggi dalla Creatura della Caverna.",
|
||||
"birdBuddiesText": "Pacchetto di Missioni degli Amici Volatili",
|
||||
@@ -637,25 +637,25 @@
|
||||
"questVelociraptorUnlockText": "Sblocca la possibilità di acquistare uova di Velociraptor nel Negozio",
|
||||
"evilSantaAddlNotes": "Nota che \"Babbo Bracconiere\" e \"Trova il cucciolo\" possono essere completati più di una volta ma ti daranno solamente una cavalcatura rara.",
|
||||
"questDolphinText": "Il Delfino del Dubbio",
|
||||
"questBronzeUnlockText": "Sblocca la Pozione di Schiusa di Bronzo, acquistabile nel Mercato",
|
||||
"questBronzeUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa di Bronzo nel Mercato",
|
||||
"questBronzeDropBronzePotion": "Pozione di Schiusa di Bronzo",
|
||||
"questBronzeNotes": "In una rinfrescante pausa tra compiti, tu e i tuoi amici fate una passeggiate tra i sentieri della foresta del Taskwoods. Ti ritrovi davanti un grande tronco cavo e una scintilla da dentro attira la tua attenzione. <br><br>È un rifugio di Pozioni da Cova Magiche! Il bronzo liquido splendente turbina gentilmente nelle bottiglie, e @Hackiseiko riesce a prenderne una per esaminarla. <br><br>\"Alt!\" sussurra una voce dietro di voi. È un giganteso scarafaggio con un carapace di bronzo luccicante, alzate le sue zampe artigliate in una posizione di battaglia. \"Quelle sono le mie pozioni, e se volete guadagnarvele, dovrete farvi avanti in un duello tra gentiluomini!\"",
|
||||
"questBronzeBoss": "Scarafaggio Impertinente",
|
||||
"questBronzeCompletion": "\"Ben fatto, guerriero!\" dice lo scarafaggio appena si accascia sul terreno. Sta ridendo? È difficile dirlo dalle sue mandibole. \"Voi vi siete veramente guadagnati queste pozioni!\"<br><br>\"Oh, wow, non abbiamo mai ricevuto una ricompensa come questa dopo aver vinto una battaglia fino ad ora!\" dice @UncommonCriminal, tenendo in mano una luccicante bottiglia. \"Andiamo a far schiudere i nostri nuovi animali!\"",
|
||||
"questBronzeText": "Battaglia dello Scarabeo Impertinente",
|
||||
"mythicalMarvelsNotes": "Contiene 'Convincendo la Regina Unicorno', 'Il Fiero Grifone' e 'Pericoli nelle Profondità: Attacco del Serpente Marino!' Disponibili fino al 28 Febbraio.",
|
||||
"mythicalMarvelsNotes": "Contiene Missioni per ottenere uova dell'Unicorno, del Grifone e del Serpente Marino: Convincendo la Regina Unicorno, Il Fiero Grifone e Pericoli nelle Profondità: Attacco del Serpente Marino!",
|
||||
"mythicalMarvelsText": "Pacchetto Missioni Meraviglie Mitiche",
|
||||
"questFluoriteUnlockText": "Sblocca Pozione di Schiusa di Fluorite, acquistabile nel Mercato",
|
||||
"questFluoriteUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa di Fluorite nel Mercato",
|
||||
"questRobotText": "Misteriose Meraviglie Meccaniche!",
|
||||
"questSilverUnlockText": "Sblocca Pozione di Schiusa d'Argento, acquistabile nel Mercato",
|
||||
"questSilverUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa d'Argento nel Mercato",
|
||||
"questSilverDropSilverPotion": "Pozione di Schiusa d'Argento",
|
||||
"questSilverCollectSilverIngots": "Lingotti d'Argento",
|
||||
"questSilverCollectMoonRunes": "Rune Lunari",
|
||||
"questSilverCollectCancerRunes": "Rune dello Zodiaco del Cancro",
|
||||
"questSilverCompletion": "Hai scavato. Hai dragato. Hai rovistato. Alla fine esci dai Sotterrani, carico di rune e barre di argento, ricoperto di fango ma euforico con successo. Torni alla città di Habit e prepare il lavoro nel laboratorio di alchimia. Tu e @starsystemic seguite le formule che @QuartzFox aveva trovato, sotto l'attenta supervisione di @Edge. Finalmente, un grande soffio di luccichii e fumo, il tuo miscuglio prende il familiare aspetto di una Pozione da Cova!<br><br>@Edge mestola la mistura in fiale e flaconi. \"Proviamolo, no? Qualcuno ha con sè un Uovo?\"<br><br>Corri alla Scuderia, pensando a quali brillanti segreti non sono ancora stati scoperti...",
|
||||
"questSilverCompletion": "Hai scavato. Hai dragato. Hai rovistato. Alla fine esci dai Sotterrani, carico di rune e barre di argento, ricoperto di fango ma euforico con successo. Torni alla città di Habit e prepare il lavoro nel laboratorio di alchimia. Tu e @starsystemic seguite le formule che @QuartzFox aveva trovato, sotto l'attenta supervisione di @Edge. Finalmente, un grande soffio di luccichii e fumo, il tuo miscuglio prende il familiare aspetto di una Pozione da Cova!<br><br>@Edge mestola la mistura in fiale e flaconi. \"Proviamolo, no? Qualcuno ha con sè un Uovo?\"<br><br>Corri alla scuderia, pensando a quali brillanti segreti non sono ancora stati scoperti...",
|
||||
"questSilverNotes": "La recente scoperta delle Pozioni di Schiusa di bronzo è sulla bocca di tutta Habitica. Possono esistere pozioni di metalli ancora più splendenti? Raggiungi la Biblioteca Pubblica della città di Habit, accompagnato da @QuartsFox e @starsystemic, e prendi una montagna di libri di alchimia da studiare.<br><br>Dopo ore di lavoro sforzante gli occhi, @QuartzFox rilascia un urlo di trionfo non-proprio-da-biblioteca. \"Aha! Trovato!\" Ti affretti a vedere. \"Una Pozione di Schiusa d'Argento può essere fatta di rune del segno zodiacale del Cancro, dissolte in argento puro fuso da una fiamma infusa con il potere delle rune Lunari.\"<br><br>\"Ci serviranno molti di questi ingredienti\", riflette @starsystemic. \"nel caso un tentativo finisca male\"<br><br>\"C'è solo un luogo dove possiamo trovare così tanti materiali strani\", dice @Edge, rimanendo sotto l'ombra delle pile di libri con le braccia conserte. È stato qui tutto il tempo? \"Il Sotterraneo della Solita Solfa. Andiamoci.\"",
|
||||
"questSilverText": "La soluzione d'argento",
|
||||
"questDolphinUnlockText": "Sblocca le Uova di Delfino, acquistabili nel Mercato",
|
||||
"questDolphinUnlockText": "Sblocca l'acquisto delle Uova di Delfino nel Mercato",
|
||||
"questDolphinDropDolphinEgg": "Delfino (Uovo)",
|
||||
"questDolphinCompletion": "La tua battaglia di volontà contro il delfino ti ha stancato ma reso vittorioso. Con la tua determinazione e coraggio, @mewrose, @khdarkwolf e @confusedcicada si riprendono e stravolgono l'insidiosa telepatia del delfino. Voi quattro vi ricoprite di un senso di realizzazione nelle vostre costanti Attività Giornaliere, robuste Abitudini e Cose da Fare completate finché il delfino chiude i suoi occhi brillanti, riconoscendo il vostro successo. Così, esso si tuffa dentro la baia. Mentre voi vi battete il cinque e congratulate, tu noti tre uova sulla terraferma.<br><br>\"Hm, immagino cosa potremo fare con esse,\" riflette @khdarkwolf.",
|
||||
"questDolphinBoss": "Delfino del Dubbio",
|
||||
@@ -666,7 +666,7 @@
|
||||
"questAmberDropAmberPotion": "Pozione di Schiusa Ambrata",
|
||||
"questAmberBoss": "Trerezin",
|
||||
"questAmberNotes": "Sei seduto nella Taverna con @beffymaroo e @-Tyr- quando @Vikte irrompe dalla porta e ti racconta eccitato delle voci di un altro tipo di Pozione di Schiusa magica nascosta nella Foresta delle Attività. Dopo aver completato le tue Attività Giornaliere, tutti e tre accettate immediatamente di aiutare @Vikte nella sua ricerca. Dopotutto, quali sono i svantaggi in una piccola avventura?<br><br>Dopo aver camminato per ore nella Foresta delle Attività, inizi a pentirti di aver partecipato a una ricerca così vana. Stai per tornare a casa, quando senti un guaito sorpreso e girandoti vedi un'enorme lucertola con squame di ambra lucente arrotolata attorno a un albero, che stringe @Vikte nei suoi artigli. @beffymaroo impugna la sua spada.<br><br> “Aspetta!” grida @-Tyr-. \"È la Trerezin! Non è pericolosa, solo pericolosamente appiccicosa! \"",
|
||||
"questAmberCompletion": "“Trerezin?” dice con calma -@Tyr-. “Potresti lasciare andare @Vikte? Non credo che si stiano divertendo a restare appesi così in alto.\"<br><br>La pelle ambrata arrossisce e i Trerezin abbassa delicatamente @Vikte a terra. \"Le mie più profonde scuse! È passato così tanto tempo da quando ho avuto degli ospiti che ho dimenticato le buone maniere!\" Si trascina in avanti per salutarti adeguatamente prima di scomparire nella sua casa sull'albero e tornare con una manciata di Pozioni di Schiusa d'Ambra come doni di ringraziamento! <br><br> \"Pozioni magiche!\" @Vikte sussulta. <br><br> \"Oh, queste cose vecchie?\" La lingua di Trerezin lampeggia mentre pensa. \"Cosa ne pensi di quest'idea? Te ne darò un'intero mucchio se prometti di venirmi a trovare ogni tanto...\"<br><br> E così lasci la Foresta delle Attività, eccitato di poter raccontare a tutti delle nuove pozioni - e della tua nuova amica!",
|
||||
"questAmberCompletion": "“Trerezin?” dice con calma -@Tyr-. “Potresti lasciare andare @Vikte? Non credo che si stiano divertendo a restare appesi così in alto.\"<br><br>La pelle ambrata arrossisce e i Trerezin abbassa delicatamente @Vikte a terra. \"Le mie più profonde scuse! È passato così tanto tempo da quando ho avuto degli ospiti che ho dimenticato le buone maniere!\" Si trascina in avanti per salutarti adeguatamente prima di scomparire nella sua casa sull'albero e tornare con una manciata di Pozioni di Schiusa d'Ambra come doni di ringraziamento! <br><br> \"Pozioni magiche!\" @Vikte sussulta. <br><br> \"Oh, queste cose vecchie?\" La lingua di Trerezin lampeggia mentre pensa. \"Cosa ne pensi di quest'idea? Te ne darò un'intero mucchio se prometti di venirmi a trovare ogni tanto...\"<br><br> E così lasci la Foresta delle Attività, eccitato di poter raccontare a tutti delle nuove pozioni — e della tua nuova amica!",
|
||||
"questAmberText": "L'Alleanza d'Ambra",
|
||||
"delightfulDinosText": "Set Missione Dinosauri Incantevoli",
|
||||
"rockingReptilesText": "Set Missione Rettili Rollanti",
|
||||
@@ -679,11 +679,11 @@
|
||||
"questRobotNotes": "Nei laboratori di Max Capacity, @Rev sta dando gli ultimi ritocchi alla sua nuova invenzione, un robotico Compagno di Responsabilità, quando uno strano veicolo metallico appare all'improvviso in una nuvola di fumo, a pochi centimetri dal Rivelatore di Fluttuazione del robot! I suoi conducenti, due strane figure vestite d'argento, escono e si tolgono i caschi spaziali, rivelandosi come @FolleMente e @McCoyly. <br><br> “Ipotizzo che ci sia stata un'anomalia nella nostra implementazione della produttività,” dice timidamente @FolleMente. <br><br> @McCoyly incrocia le braccia. “Ciò significa che hanno trascurato di completare i loro Attività Giornaliere, quindi suppongo che abbiano portato alla disintegrazione del nostro Stabilizzatore di Produttività. È un componente essenziale per viaggiare nel tempo ed ha bisogno di coerenza per funzionare correttamente. I nostri successi alimentano il nostro movimento attraverso il tempo e lo spazio! Non ho tempo di spiegare meglio le cose, @Rev. Lo scoprirai tra 37 anni, o forse potranno aiutarti i tuoi alleati, i Misteriosi Viaggiatori del Tempo. Nel frattempo, puoi aiutarci a sistemare la nostra macchina del tempo?”",
|
||||
"jungleBuddiesNotes": "Contiene le missioni per ottenere uova di Scimmia, Alberello e Bradipo: Il Mandrillo Mostruoso e le Scimmie Seccanti, L'Albero Aggrovigliato e Il Bradipo Buonanotte.",
|
||||
"jungleBuddiesText": "Pacchetto Missione Amici della Giungla",
|
||||
"questWaffleUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa Dolcetto nel mercato",
|
||||
"questWaffleUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa Dolcetto nel Mercato",
|
||||
"questWaffleDropDessertPotion": "Pozione di Schiusa Dolcetto",
|
||||
"questWaffleRageEffect": "`Il Terribile Waffle usa ACERO APPICCICATICCIO` Lo sciroppo appiccicoso rallenta gli attacchi e gli incantesimi! Danni accumulati ridotti.",
|
||||
"questWaffleRageEffect": "`Il Terribile Waffle usa ACERO APPICCICATICCIO!` Lo sciroppo appiccicoso rallenta gli attacchi e gli incantesimi! Danni accumulati ridotti.",
|
||||
"questWaffleRageTitle": "Acero Appiccicaticcio",
|
||||
"questWaffleRageDescription": "Acero Appiccicaticcio: Questa barra si riempirà quando non completerai le tue Attività Giornaliere. Quando sarà piena, il Terribile Waffle sottrarrà del danno in sospeso da quello che i membri della squadra hanno accumulato!",
|
||||
"questWaffleRageDescription": "Acero Appiccicaticcio: Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando sarà piena, il Terribile Waffle sottrarrà del danno in sospeso da quello che i membri della squadra hanno accumulato!",
|
||||
"questWaffleBoss": "Terribile Waffle",
|
||||
"questWaffleCompletion": "Malconcio ed imburrato ma trionfante, assapori la dolce vittoria mentre il Terribile Waffle collassa in una pozzanghera appiccicosa.<br><br>“Wow, hai davvero cremato quel mostro”, dice Lady Glaciate, impressionata.<br><br>“Come rubare una caramella ad un bambino!” sorride a trentadue denti Giullare d'Aprile.<br><br> “Peccato però” dice @beffymaroo. “Sembrava abbastanza buono da mangiare.\" <br><br>Il Matto fa comparire una serie di pozioni dal suo mantello, le riempie con i resti sciropposi del Waffle e li mescola con un pizzico di polvere scintillante. Il liquido crea un vortice di colore: nuove Pozioni di Schiusa! Le lancia tra le tue braccia. “Tutta questa avventura mi ha creato un po' di appetito. Chi vuole unirsi a me per colazione?”",
|
||||
"questWaffleText": "Waffle con il Pesce: Colazione Disastrosa!",
|
||||
@@ -693,7 +693,7 @@
|
||||
"questRubyCollectRubyGems": "Gemme Rubino",
|
||||
"questRubyCollectVenusRunes": "Rune di Venere",
|
||||
"questRubyCollectAquariusRunes": "Rune Zodiacali dell'Acquario",
|
||||
"questAmberUnlockText": "Sblocca le Pozioni di Schiusa Ambrate nel Mercato",
|
||||
"questAmberUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa Ambrate nel Mercato",
|
||||
"delightfulDinosNotes": "Contiene le missioni per ottenere uova di Triceratopo, T-Rex e Pterodattilo: I Travolgenti Triceratopi, Il Dinosauro Dissotterrato e Lo Ptero-dactilo.",
|
||||
"rockingReptilesNotes": "Contiene le missioni per ottenere uova di Alligatore, Velociraptor e Serpente: L'Isti-Gator, Veloci-Rapper e Il Serpente della Distrazione.",
|
||||
"questFluoriteText": "Una Fluorite Fifosa e Brillante",
|
||||
@@ -710,20 +710,20 @@
|
||||
"questTurquoiseText": "Faticaccia al Tesoro Turchese",
|
||||
"questTurquoiseCompletion": "Accaldata e sudata, la tua squadra finalmente si ferma a riposare accanto allo terra rivoltata e guarda il mucchio di rune e gemme che ha trovato.<br><br>\"Incredibile\", mormora @QuartzFox. \"Questo riscriverà i libri di storia\".<br><br>\"Consentitemi di riportare questi materiali all'Università di Habitica per l'analisi\", dice @gawrone. “Dovrebbe essercene abbastanza sia per analizzarlo sia per fare delle pozioni turchesi per tutti noi! Chissà cos'altro potremmo trovare sepolto qui? \"<br><br>@starsystemic interviene:\"È incredibile quanto si può ottenere con un po' di duro lavoro! \"",
|
||||
"questTurquoiseNotes": "@gawrone irrompe nella tua stanza con il suo Diploma di Habitante in una mano ed un tomo rilegato in pelle straordinariamente grande e polveroso nell'altra. <br><br>\"Non indovinerai mai cosa ho scoperto!\" dice. “La ragione per cui i Campi Rigogliosi sono così fertili è che un tempo erano ricoperti da un vasto oceano. Si dice che un tempo un antico popolo abitava quel fondale oceanico in città incantate. Ho utilizzato mappe dimenticate per trovare la posizione più probabile! Prendi la tua pala!\"<br><br>La sera dopo assieme a @QuartzFox e @starsystemic iniziate a scavare. Nel profondo del terreno trovi una runa, con una gemma turchese nelle vicinanze!<br><br>\"Continua a scavare!\" sollecita @gawrone. \"Se ne troviamo abbastanza, possiamo creare una delle loro antiche pozioni e scoprire la loro storia allo stesso tempo!\"",
|
||||
"questTurquoiseUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa turchesi nel Mercato",
|
||||
"questTurquoiseUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa Turchesi nel Mercato",
|
||||
"questTurquoiseDropTurquoisePotion": "Pozione di schiusa Turchese",
|
||||
"questTurquoiseCollectTurquoiseGems": "Gemme Turchesi",
|
||||
"questTurquoiseCollectNeptuneRunes": "Rune di Nettuno",
|
||||
"questTurquoiseCollectSagittariusRunes": "Rune del Sagittario",
|
||||
"sandySidekicksNotes": "Contiene le missioni per ottenere uova di Ragno, Armadillo e Serpente: L' Aracnide Ghiacciato, L' Armadillo Indulgente e La Serpe della Distrazione.",
|
||||
"sandySidekicksText": "Pacchetto missione Compagni sabbiosi",
|
||||
"questBlackPearlUnlockText": "Sblocca le Pozioni di Schiusa Perla Nera nel Mercato",
|
||||
"questBlackPearlUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa Perla Nera nel Mercato",
|
||||
"questBlackPearlDropBlackPearlPotion": "Pozione di Schiusa Perla Nera",
|
||||
"questBlackPearlBoss": "Asteroidea",
|
||||
"questBlackPearlCompletion": "Mentre colpisci e fai esplodere la bestia delle perle nere si spargono sulla sabbia. La loro superficie luccicante attira la tua attenzione mentre schivi un altro tentacolo devastante.<br><br>Potresti essere in pericolo di vita, ma non puoi fare a meno di pensare a quanto meravigliosamente brillino. E non puoi nemmeno fare a meno di pensare quanto sia un momento inopportuno per pensare ad una nuova pozione.<br><br>All'improvviso il mostro si blocca. @jjgame83 e @PixelStormArt si scambiano sguardi perplessi e abbassano le armi.<br><br>“IL TUO DESIDERIO È STATO ESAUDITO, MORTALE. IL MIO LAVORO È TERMINATO.”<br><br>Asteroidea svanisce mentre il cielo e le acque si schiariscono. @QuartzFox ti fissa. “Questa me la devi spiegare!”<br><br>Ci provi, e nel frattempo riempi il cestino da picnic di perle nere. Un pomeriggio di alchimia dopo, devi proprio ammettere che è stata veramente una buona idea.",
|
||||
"questBlackPearlNotes": "Ultimamente ti sei sentito poco ispirato, quindi quando @jjgame83 ti propone un viaggio a Lago Luminoso cogli al volo l'occasione per cambiare aria. Mentre @QuartzFox organizza un picnic sulla riva trovi qualcosa che luccica nelle acque poco profonde. Una strana perla nera.<br><br>“Vorrei avere una nuova idea”, sospiri. <br><br> Un gelo lambisce la riva. Il lago si trasforma in inchiostro nero. Le stelle si alzano e mezzogiorno diventa mezzanotte in un batter d'occhio. <br><br> “Non è un buon presagio”, dice @PixelStormArt.<br><br>Una massa imponente di braccia fuoriesce dal lago in uno spruzzo di schiuma e dal becco strilla: “ECCO ASTEROIDEA, L'IDEA DA OLTRE LE STELLE!”<br><br>Un tentacolo si schianta sul cestino da picnic. Che sia una buona idea oppure no, entri in azione.",
|
||||
"questBlackPearlText": "Un'Idea Sorprendentemente Stellare",
|
||||
"questStoneUnlockText": "Sblocca l'acquisto delle Pozione di Schiusa pietra ricoperta di muschio nel mercato",
|
||||
"questStoneUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa di Pietra Muschiosa nel Mercato",
|
||||
"questStoneDropMossyStonePotion": "Pozione di Schiusa pietra ricoperta di muschio",
|
||||
"questStoneCollectMossyStones": "Pietra ricoperta di muschio",
|
||||
"questStoneCollectCapricornRunes": "Rune del Capricorno",
|
||||
@@ -731,7 +731,7 @@
|
||||
"questStoneCompletion": "Il lavoro di ripulire la vegetazione eccessiva e di spostare le pietre ti fiacca fino al limite delle tue forze. Ma suddividi il lavoro tra la squadra e lasci delle pietre sul tuo tragitto per aiutarti a ritrovare la strada per tornare dagli altri. Le rune che trovi rafforzano anche la tua forza e determinazione, e alla fine il giardino non sembra affatto trascurato!<br><br>Ti riunisci alla Biblioteca come suggerito da @starsystemic e trovi una formula di pozione magica grazie alle rune che hai raccolto. \"Questa è una ricompensa inaspettata per aver finto i nostri compiti trascurati\", dice @jjgame83.<br><br> @QuartzFox concorda: \"Ed inoltre ora abbiamo un bellissimo giardino da gustare con i nostri animali domestici\".<br>< br>\"Cominciamo a fare delle pozioni di schiusa di pietra ricoperta di muschio!\" dice @starsystemic e tutti vi prendono parte allegramente.",
|
||||
"questStoneNotes": "Apri i cancelli della Fortezza della Negligenza e ti sorprendi di tutto il muschio che ha ricoperto le statue, le rocce e le superfici del giardino. \"Oh no, il giardino è stato trascurato da troppo tempo!\" dice @jjgame83.<br><br>\"Beh, non è mai troppo tardi per iniziare a curare il giardino\", dice @PixelStormArt con entusiasmo, \"ma da dove dobbiamo iniziare per affrontare questo labirinto di muschio?\"<br><br>\"Possiamo ideare e seguire un mappa in modo da non perderci \", dice @QuartzFox.<br><br>Mentre ripulisce le rocce muschiose, @starsystemic trova delle rune nascoste raffiguranti Marte e Capricorno. “A cosa serviranno? Riportiamole alla Biblioteca di Habit City per studiarle quando avremo finito.”<br><br>Se mai riusciamo a ritrovare la via d'uscita, pensi senza dirlo ad alta voce.",
|
||||
"questStoneText": "Un labirinto di muschio",
|
||||
"questSolarSystemUnlockText": "Sblocca l'acquisto delle Pozioni di schiusa Sistema Solare nel Mercato",
|
||||
"questSolarSystemUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa del Sistema Solare nel Mercato",
|
||||
"questSolarSystemDropSolarSystemPotion": "Pozione di schiusa Sistema Solare",
|
||||
"questSolarSystemBoss": "Diversivonoidi",
|
||||
"questSolarSystemCompletion": "Con una attenta pratica, tu e il tuo equipaggio riuscite ad evitare di essere portati fuori bordo dai Diversivonoidi, riusciendo a notarli e ad accettare la loro presenza senza che vi sopraffacessero. Come superate in sicurezza la stella pulsante, @gawrone nota un gruppo di bottiglie fluttuanti e le porta a bordo. Ognuna sembra contenere un piccolo sistema solare!<br><br>“Oh, sembra che il nostro duro lavoro ci ha portato delle belle ricompense!” dice @beffymaroo. “Scopriamo quali meraviglie celesti possono apparire se schiudiamo le uova degli animali con queste nuove pozioni.”",
|
||||
@@ -748,10 +748,126 @@
|
||||
"questVirtualPetText": "Caos Virtuale con il pesce d'aprile: L'accensione",
|
||||
"questVirtualPetBoss": "Wotchimon",
|
||||
"questVirtualPetRageTitle": "L'accensione",
|
||||
"questVirtualPetRageDescription": "Questa barra si riempie quando non completi le tue Attività giornaliere. Quando è piena, il Wotchiman porterà via una parte del danno in sospeso della tua squadra!",
|
||||
"questVirtualPetRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, il Wotchiman porterà via una parte del danno in sospeso della tua squadra!",
|
||||
"questVirtualPetRageEffect": "`Wotchimon usa il Bip Fastidioso!` Wotchimon emette un bip fastidioso e la sua barra della felicità scompare improvvisamente! I danni in sospeso sono stati ridotti.",
|
||||
"questVirtualPetDropVirtualPetPotion": "Pozione di Schiusa Virtuale",
|
||||
"questVirtualPetUnlockText": "Sblocca le Pozioni di Schiusa virtuali nel Negozio",
|
||||
"questVirtualPetNotes": "È una tranquilla e piacevole mattina di primavera ad Habitica, una settimana dopo un memorabile pesce d'aprile. Tu e @Beffymaroo siete presso le stalle a occuparvi dei vostri animali che sono ancora un po' confusi dal loro trascorso virtuale!).<br><br>In lontananza sentite un rimbombo ed una serie di bip, inizialmente deboli ma poi sempre più forti, come se si stessero avvicinando. Un uovo appare all'orizzonte e mentre si avvicina, emettendo dei bip sempre più forti, vedete che è un gigantesco animale domestico virtuale!<br><br>\"Oh no\", esclama @Beffymaroo, \"Penso che il pesce d'aprile gli abbia lasciato ancora qualcosa in sospeso, sembra cercare la nostra attenzione!<br><br>L'animale virtuale emette un bip rabbioso, entra in una furia virtuale ed inizia ad avvicinarsi sempre di più.",
|
||||
"questVirtualPetCompletion": "L'aver premuto con cura i giusti tasti sembra aver soddisfatto i misteriosi bisogni dell'animaletto virtuale, il quale si è finalmente tranquillizzato ed appare contento.<br><br>Improvvisamente, con uno scoppio di coriandoli, appare il Giullare d'Aprile con una cesta colma di strane pozioni che emettono suoni tenui..<br><br>\"Che tempismo, Giullare d'Aprile, \" disse @Beffymaroo con un sorriso ironico. \"Ho il sospetto che questo grosso tizio a segnale intermittente sia una tua conoscienza.\"<br><br>\"Ecco, sì,\" disse il Giullare, con aria mortificata. \"Mi spiace molto di ciò che è accaduto e vi ringrazio entrambi per esservi presi cura di Wotchimon! Prendete queste pozioni come segno di ringraziamento; possono far tornare indietro i vostri animaletti Virtuali ogni qualvolta lo desideriate!\"<br><br>Non siete sicuri al 100% di aver capito bene con tutti questi 'bip bip', ma gli animaletti sono così carini che vale la pena provare!"
|
||||
"questVirtualPetCompletion": "L'aver premuto con cura i giusti tasti sembra aver soddisfatto i misteriosi bisogni dell'animaletto virtuale, il quale si è finalmente tranquillizzato ed appare contento.<br><br>Improvvisamente, con uno scoppio di coriandoli, appare il Giullare d'Aprile con una cesta colma di strane pozioni che emettono suoni tenui..<br><br>\"Che tempismo, Giullare d'Aprile, \" disse @Beffymaroo con un sorriso ironico. \"Ho il sospetto che questo grosso tizio a segnale intermittente sia una tua conoscienza.\"<br><br>\"Ecco, sì,\" disse il Giullare, con aria mortificata. \"Mi spiace molto di ciò che è accaduto e vi ringrazio entrambi per esservi presi cura di Wotchimon! Prendete queste pozioni come segno di ringraziamento; possono far tornare indietro i vostri animaletti Virtuali ogni qualvolta lo desideriate!\"<br><br>Non siete sicuri al 100% di aver capito bene con tutti questi 'bip bip', ma gli animaletti sono così carini che vale la pena provare!",
|
||||
"questGiraffeText": "L'AggegGi-raffa",
|
||||
"questGiraffeBoss": "AggegGi-raffa",
|
||||
"questGiraffeDropGiraffeEgg": "Giraffa (Uovo)",
|
||||
"questChameleonText": "Il Camaleonte Caotico",
|
||||
"questFungiUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa di Fungo nel Mercato",
|
||||
"questAlpacaDropAlpacaEgg": "Alpaca (Uovo)",
|
||||
"questGiraffeCompletion": "Dopo aver aiutato l'AggegGi-raffa a mettere un po’ di ordine alla sua collezione, vi sentite entrambi più carichi e di buon umore!<br><br>E così, la giraffa afferra la chitarra e un libro di esercizi per principianti e strimpella qualche nota. «È bello fare un passo nella direzione giusta, anche se piccolo. Grazie per avermi dato una mano! Prendi questi: ho sentito che hai una collezione di animaletti e questi potrebbero essere una bella aggiunta!»",
|
||||
"questGiraffeNotes": "Stai passeggiando tra l'erba alta della savana di Sloenstedi, godendoti una bella passeggiata nella natura per prenderti una pausa dalle tue attivitài. Mentre attraversi il paesaggio, noti una serie di oggetti in lontananza. È un mucchio di strumenti musicali, materiale artistico, apparecchiature elettroniche e molto altro! Ti avvicini per dare un'occhiata più da vicino.<br><br>“Ehi, cosa pensi di fare?” urla una voce da dietro un'acacia. Emerge una giraffa alta e imponente, che indossa un paio di occhiali da sole alla moda, una chitarra e una macchina fotografica di lusso attorno al suo lungo collo. “Questa è tutta la mia attrezzatura, quindi stai attento e non toccare nulla!”<br><br>Noti della polvere su molti degli oggetti. “Wow, hai davvero tanti hobby!” dici. “Puoi mostrarmi qualche opera d’arte o suonarmi qualcosa?”<br><br>Il volto della giraffa si rattrista mentre osserva tutto il suo materiale. “Ho così tanta roba ma non so da dove cominciare! Perché non mi dai un po’ della tua motivazione? Così posso avere l’energia produttiva di cui ho bisogno per iniziare!”",
|
||||
"questPinkMarbleUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa di Marmo Rosa nel Mercato",
|
||||
"questGiraffeUnlockText": "Sblocca l'acquisto delle Uova di Giraffa nel Mercato",
|
||||
"questOpalUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa Opale nel Mercato",
|
||||
"questOpalCollectOpalGems": "Gemma Opale",
|
||||
"questOpalDropOpalPotion": "Pozione di Schiusa Opale",
|
||||
"questAlienDropAlienPotion": "Pozione di Schiusa Aliena",
|
||||
"questPinkMarbleRageEffect": "Cupido usa Pugno Rosa! È stato tutt'altro che affettuoso! I tuoi compagni di Squadra sono sbalorditi. Danno imminente ridotto.",
|
||||
"questPinkMarbleDropPinkMarblePotion": "Pozione di Schiusa di Marmo Rosa",
|
||||
"questPinkMarbleText": "Placa il Cupido Corrotto",
|
||||
"questPinkMarbleNotes": "Dopo aver sentito delle voci su una grotta nelle Montagne Tortuose da cui fuoriescono rocce rosa e polvere, la vostra Squadra decide di indagare. Man mano che vi avvicinate alla grotta, vedete effettivamente un’enorme nuvola di polvere rosa e, stranamente, sentite il grido di battaglia di una vocina, seguito dal rumore di rocce che si frantumano.<br><br>@Empress42 inala accidentalmente un po’ di polvere e improvvisamente si sente stordita e poco produttiva. “Anche a me!” dice @QuartzFox, “All’improvviso sto fantasticando su una persona che conosco a malapena!”<br><br>@a_diamond sbircia nella caverna e trova un piccolo essere che sfreccia qua e là e riduce in polvere la roccia dal marmo rosa. “Mettetevi al riparo! Questo Cupido è stato corrotto e sta usando la sua magia per provocare infatuazioni irrealistiche! Dobbiamo neutralizzarlo!”",
|
||||
"questPinkMarbleCompletion": "Riesci finalmente a immobilizzare il piccoletto: era molto più resistente e veloce di quanto ti aspettassi. E prima che si riprenda, gli togli la faretra con le frecce luminose. Lui sbatte le palpebre e all’improvviso si guarda intorno sorpreso. «Per sfuggire dal mio dolore e dalla mia sofferenza per un po', mi sono autoinlitto con una delle mie frecce… Non ricordo nulla di ciò che è successo dopo!» <br><br>Sta per fuggire dalla caverna, ma nota che @Loremi ha prelevato un campione di polvere di marmo e sorride. «Prova a usare un po' di questa polvere di marmo rosa in una pozione! Prenditi cura degli animali che ne nasceranno e scoprirai che le relazioni autentiche nascono dalla comunicazione, dalla fiducia reciproca e dall'affetto. Ti auguro buona fortuna e tanto amore!»",
|
||||
"questPinkMarbleBoss": "Cupido",
|
||||
"questPinkMarbleRageTitle": "Pugno Rosa",
|
||||
"questPinkMarbleRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Nel caso in cui fosse piena, Cupido assorbirà parte del danno che il tuo gruppo stava per affliggergli!",
|
||||
"questChameleonBoss": "Camaleonte Caotico",
|
||||
"questChameleonDropChameleonEgg": "Camaleonte (Uovo)",
|
||||
"questChameleonNotes": "È una splendida giornata, in un angolo caldo e piovoso di Taskwoods. Stai cercando nuovi esemplari da aggiungere alla tua collezione di foglie, quando inaspettatamente un ramo davanti a te cambia colore! E si muove!<br><br>Barcollando all’indietro, ti rendi conto che non si tratta affatto di un ramo, ma di un enorme camaleonte! Ogni parte del suo corpo continua a cambiare colore mentre i suoi occhi sfrecciano in ogni dove.<br><br>“Tutto bene?” chiedi al camaleonte.<br><br>“Ahhh, beh,” dice, sembrando un po’ agitato. “Stavo cercando di mimetizzarmi… ma a volte mi confondo da solo… i miei colori si alternano in continuazione! È così difficile concentrarsi su uno solo...”<br><br>“Ah,” dici, “penso di poterti aiutare. Potrei darti una mano a concentrarti con una piccola sfida! Quindi, se accettassi, allora prepara i tuoi colori!”<br><br>“Va bene, ci sto!” rispose il camaleonte.",
|
||||
"questChameleonCompletion": "Passato un po' di tempo, il Camaleonte aveva già sfoggiato tutti i colori dell'arcobaleno, abbinandosi perfettamente a ogni colore che gli hai richiesto.<br><br>«Wow», dice, «lavorare insieme e farne un gioco mi ha davvero aiutato a concentrarmi! Prendili come ricompensa, te li sei guadagnati! Insegna a questi piccolini come cambiare tutti i colori dell'arcobaleno quando verranno al mondo.»",
|
||||
"questDogUnlockText": "Sblocca l'acquisto delle Uova di Cane nel Mercato.",
|
||||
"questRaccoonUnlockText": "Sblocca l'acquisto delle Uova di Procione nel Mercato",
|
||||
"questOtterUnlockText": "Sblocca l'acquisto delle Uova di Lontra nel Mercato",
|
||||
"questJadeUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa di Giada nel Mercato.",
|
||||
"questAlpacaUnlockText": "Sblocca l'acquisto delle Uova di Alpaca nel Mercato",
|
||||
"questCatUnlockText": "Sblocca l'acquisto delle Uova di Gatto nel Mercato.",
|
||||
"questChameleonUnlockText": "Sblocca l'acquisto delle Uova di Camaleonte nel Mercato",
|
||||
"questCrabText": "Il Granchio Violinista",
|
||||
"questCrabUnlockText": "Sblocca l'acquisto delle Uova di Granchio nel Mercato",
|
||||
"questPlatypusUnlockText": "Sblocca l'acquisto delle Uova di Ornitorinco nel Mercato",
|
||||
"questAlienUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa Aliene nel Mercato",
|
||||
"questRaccoonText": "Magnate dei Procioni",
|
||||
"questCrabNotes": "È una mattinata calda e soleggiante, e ti stai godendo una bella giornata in spiaggia mentre ti dedichi alla lettura di uno dei libri che ti eri prefissato di leggere durante il periodo estivo. All'improvviso, ti accorgi che stavi quasi per calpestare un cristallo luccicante vicino a una buca poco profonda nella sabbia.<br><br>«Ehi, guarda dove metti i piedi! Sto scavando una tana proprio qui!”, lamenta una voce. Un granchio sorprendentemente grande con un guscio accuratamente decorato ti corre davanti, schioccando la chela mentre ti parla.<br><br>“Mmh, e questa sarebbe una tana?”, chiedi al granchio, guardando la leggera scavatura. Ci sono conchiglie e cristalli disposti tutt’intorno, ma non dava proprio l'idea di un nascondiglio.<br><br>Il granchio balbetta. “Ehi, questo è un posticino di tutto rispetto! Ci sto ancora lavorando... Mi sono solo fatta prendere dalle decorazioni. Sai, anche un granchio ha le sue priorità”, dice, sistemando l'ennesima conchiglia.<br><br>“Perché non mi dai anche tu una chela e mi aiuti, costruttore esperto di tane?”",
|
||||
"questCrabCompletion": "Tu e il granchio trovate il modo di collaborare per sistemare tutto al posto giusto, creando così una tana di sabbia ancora più bella. Il granchio vi si accomoda felice.<br><br>«Grazie mille!», dice, mettendosi sdraiata. «Ecco, in effetti adesso sembra una tana fatta apposta per me. Finalmente posso godermi tutte le mie decorazioni sistemate alla perfezione. Tieni, prendi questi piccolini come segno della mia gratitudine. È un'offerta che non puoi rifiutare!\"",
|
||||
"questRaccoonRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, il Magnate dei Procioni recupererà parte della sua salute!",
|
||||
"questCrabBoss": "Granchio Violinista",
|
||||
"questCrabRageTitle": "Distrazione Violinista",
|
||||
"questCrabRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, il Granchio Violinista porterà via un po' di Mana della tua Squadra!",
|
||||
"questDogRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, Sciberio porterà via un po' di Mana dalla tua Squadra!",
|
||||
"questOtterText": "Il Tremendo Tessitore!",
|
||||
"questOtterBoss": "Il Tessitore",
|
||||
"questOtterRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, Il Tessitore recupererà parte della sua salute!",
|
||||
"questAlpacaText": "L'Alpaca Sovraccarica",
|
||||
"questAlpacaBoss": "L'Alpaca Sovraccarica",
|
||||
"questAlpacaRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, L'Alpaca Sovraccarica recupererà un po' della sua salute!",
|
||||
"questAlpacaRageEffect": "L'Alpaca Sovraccarica ti lancia i bagagli! Il boss recupera il 30% della sua salute!",
|
||||
"questCatRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, il Purrplexer porterà via un po' di Mana dalla tua Squadra!",
|
||||
"questPlatypusRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, l'Ornitorinco Perfezionista porterà via un po' di Mana dalla tua Squadra!",
|
||||
"questFungiRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, il Fungo Lunatico sottrarrà parte del danno in sospeso della tua squadra",
|
||||
"questCrabRageEffect": "Il Granchio Violinista ti distrae con le sue decorazioni, rallentando il tuo lavoro di scavo e prosciugando parte della tua magia. Il Mana della Squadra è stato ridotto!",
|
||||
"questCrabDropCrabEgg": "Granchio (Uovo)",
|
||||
"questAlienRageDescription": "Questa barra si riempie quando non completi le tue Attività Giornaliere. Quando è piena, l'Extraterrestre ti demoralizzerà recuperando parte della sua Salute!",
|
||||
"questDogText": "Tripla -Bau!- Sfida!",
|
||||
"questRaccoonCompletion": "\"Davvero, penso che ci siano un sacco di rocce interessanti per entrambi,\" dici mentre recuperi l'ultima delle tue cose. \"Ecco alcune che puoi avere tra quelle che ho raccolto, ne ho abbastanza da condividere!\"\"Oh, è molto gentile da parte tua,\" dice il procione. \"In realtà, ho pure io alcuni piccoli premi che potrebbero piacerti!\"",
|
||||
"questRaccoonBoss": "Procione Famelico",
|
||||
"questRaccoonRageTitle": "Gingillo Tsunami",
|
||||
"questRaccoonDropRaccoonEgg": "Procione (Uovo)",
|
||||
"questRaccoonRageEffect": "Il Procione Famelico prende alcuni oggetti che hai recuperato e li infila di nuovo nel tronco dell'albero. Il boss recupera il 30% della sua salute!",
|
||||
"questRaccoonNotes": "È una calda giornata autunnale ad Habitica e stai facendo una tranquilla passeggiata lungo il Ruscello Conquista. Vedi delle belle pietre semipreziose lungo la riva, perfette per un progetto che avevi in mente.<br><br>Inizi a nascondere i tuoi ritrovamenti migliori in un mucchio sotto un albero. Stranamente, ogni volta che ritornavi, il mucchio sembrava diminuire, senza mai aumentare...<br><br>Non era possibile. Ti guardi intorno, ma non noti nulla di strano. Proprio mentre ti giri per tornare al torrente, vedi una zampa che spunta da una cavità nel tronco che ti ruba alcune pietre!<br><br>\"Ehi!\" urli, \"Ho fatto tanta fatica per raccoglierle. Non è carino da parte tua!\"<br><br>Un volto mascherato spunta dal buco e ti sorride. \"Chi trova, tiene!\" dice il procione. Si infila di nuovo nell'albero, con i sacchi di pietre in mano. T'infili dentro per seguirlo! Perché vale la pena lottare per quelle pietre.",
|
||||
"questDogCompletion": "Dopo aver raccolto tutti i giocattoli che (per fortuna) sei riuscito a schivare, dai a Sciberio una leggera pacca sulla testa centrale.<br><br>“È bello essere eccitati di affrontare un compito impegnativo, ma potrebbe essere molto utile avere un piano. Magari la prossima volta potresti provare a iniziare dall'ingresso e poi a procedere a ritroso. Oppure a farlo per 30 minuti alla volta con delle brevi pause di gioco in mezzo.”<br><br>“Ottima idea,” interviene la testa sinistra del cucciolo. La testa destra posiziona alcuni oggetti vicino a te, tra cui delle uova… “Ho trovato alcune cose che potrebbero piacerti mentre giocavamo. Grazie per l'aiuto!”",
|
||||
"questDogBoss": "Sciberio",
|
||||
"questDogRageTitle": "Triplo Lancio di Giocattoli",
|
||||
"questDogRageEffect": "Sciberio ti lancia contro tanti giocattoli a raffica e blocca i tuoi incantesimi magici! Il Mana della Squadra si riduce!",
|
||||
"questDogDropDogEgg": "Cane (Uovo)",
|
||||
"questDogNotes": "Sei stato scelto per una spedizione con l'obiettivo di mappare le grotte sotterranee di Habitica! I ricercatori di Habit City ipotizzano che all'interno di queste profondità possano nascondersi nuovi strumenti per la gestione dei compiti o persino creature sconosciute.<br><br>Mentre mappi i tunnel rocciosi vicino alle pendici delle Montagne Tortuose, noti un bagliore emanato da un ingresso roccioso poco più avanti. Avvicinandoti, vedi... dei giocattoli? Animali di peluche e palline di gomma sono sparsi sul pavimento della grotta. E poi... hai sentito qualcuno abbaiare?<br><br>Un enorme cane a tre teste spunta fuori, lanciandosi verso il giocattolo che stavi per raccogliere! Ti immobilizzi, rischiando quasi di perdere un arto! Ma... le bocche del cane sembrano troppo occupate con i giocattoli per poterti mordere.<br><br>\"Bau!\" abbaia una delle bocche del cane, lasciando cadere un procione di peluche strappato. \"Sei qui per aiutarmi a pulire?? Devo proprio mettere in ordine, ma ogni volta che prendo in mano un giocattolo, finisco per volerci giocare... come adesso!!\"<br><br>Ti lancia una palla, poi un'altra, e un'altra ancora. Quelle teste che ha in più rendono lo schivare le palle di gomma un vero allenamento!",
|
||||
"questOtterDropOtterEgg": "Lontra (Uovo)",
|
||||
"questCatText": "Un Dilemma che fa le Fusa",
|
||||
"questCatDropCatEgg": "Gatto (Uovo)",
|
||||
"questPlatypusDropPlatypusEgg": "Ornitorinco (Uovo)",
|
||||
"questCatRageTitle": "Schiaffi Furiosi",
|
||||
"questCatBoss": "La Purr-plessa",
|
||||
"questCatRageEffect": "La Purr-plessa fa cadere gli oggetti magici che avevi sul tavolo! Il Mana della tua Squadra si redcue!",
|
||||
"questCatNotes": "Durante questa bella giornata ti trovi nell'officina dell'Emporio dell'Efficienza Incantata di Habit City. Ti è stato assegnato un compito difficile: creare un nuovo incantesimo di motivazione per aiutare gli Habitanti di Habit City a raggiungere i loro obiettivi con più facilità.<br><br>Su un tavolo di fronte a te c'è una moltitudine di oggetti magici. Tutti i libri dicevano che tali oggetti avrebbero dovuto risuonare insieme attraverso un'energia produttiva... ma finora non vi era mai stata alcuna scintilla di motivazione.<br><br>Lo scricchiolio di una porta ti avverte dell'arrivo di un nuovo ospite nella tua officina. Zampe che corrono veloci e una nuvola di pelo sfrecciano sul tavolo. Era un... gatto? Prima ancora che tu abbia la possibilità di fare apprezzamenti sul felino, quest'ultimo alza una zampa verso uno dei cristalli che avevi sistemato e... lo fa cadere giù dal tavolo!<br><br>\"Ehi!\" urli, \"Sei davvero carina, ma sto cercando di lavorare qui...\"<br><br>Ti guarda con i suoi graziosi occhi azzurri, inclina la testa e fa cadere un mazzetto di erbe dal tavolo. \"Ti aiuto!\" fa le fusa.<br><br>Vedi la sua zampa che si allunga verso il resto degli oggetti che hai raccolto e ti tuffi a terra per afferrare il prossimo che sta per cascare!",
|
||||
"questCatCompletion": "Hai fortunatamente raccolto tutto ciò che quel gatto insistente aveva fatto cadere dal tavolo. Mentre sei seduto sul pavimento, noti un bagliore provenire dagli oggetti di fronte a te. Alzando lo sguardo, noti che anche quelli sul tavolo stanno reagendo! Metterli a diverse altezze sembra essere stata una svolta nella tua ricerca!<br><br>\"Sai, alla fine mi hai aiutato. Suppongo che avessi solo bisogno di vedere il mio compito sotto una prospettiva differente per sbloccarmi. Vorrei che mi avessi avvertito un po' prima di iniziare a spostarmi le cose, però,\" dici al gatto, accarezzandolo dolcemente.\"<br><br>Lo so, ti capisco pienamente, e accetta questi come mie scuse!\" fa le fusa, spingendo delle uova dall'aspetto strano nella tua direzione. \"Sono felice di averti aiutato a vedere le cose sotto una diversa purr-spettiva.\"",
|
||||
"questOtterCompletion": "Mentre raccoglievi i pezzi della tua lista, hai iniziato a ordinarli in base all'importanza dei compiti e alla fine hai capito come poter iniziare al meglio!<br><br>\"Ora capisco!\" dici alla lontra, \"quella buffa trovata mi ha davvero aiutato a pensare a quali compiti dovevo mettere al primo posto.\"<br><br>La lontra sguazza nell'acqua, strofinandosi le guance con gioia, \"Sono contento che il mio piccolo contributo ti abbia fatto pensare ai tuoi compiti in modo diverso.\" Si immerge sott'acqua, riemergendo poi nelle vicinanze, \"Ricorda di mantenere le tue liste realizzabili. Anche le ricompense aiutano, quindi prendi queste!\"",
|
||||
"questOtterRageTitle": "Cose da Fare e da Strappare!",
|
||||
"questOtterRageEffect": "Il Cospiratore lancia in aria pezzi della tua lista di cose da fare! Il boss recupera il 30% della sua salute!",
|
||||
"questJadeText": "Una Disincantata Maledizione",
|
||||
"questJadeBoss": "Disincantata Maledizione",
|
||||
"questJadeDropJadePotion": "Pozione di Schiusa di Giada",
|
||||
"questAlpacaRageTitle": "Terremoto di Pacchi",
|
||||
"questOtterNotes": "Le liste delle Cose da Fare sono ottime! Puoi passare ore a documentare meticolosamente ogni passo che devi compiere e sentirti produttivo senza effettivamente fare quelle cose. La tua lista di tre pagine finisce così nella tua tasca. È arrivato il momento di fare una passeggiata rigenerante!<br><br>Ti dirigi verso il Fiume della Routine per fare una passeggiata lungo la riva. Era proprio quello che ti serviva per poter iniziare! È ora di tirare fuori la tua lista di Cose da Fare e... ah! Una folata di vento fa volare la tua lista dalle tue mani, dritta verso l'acqua!<br><br>Proprio un attimo prima che il foglio si possa bagnare, la testa di una lontra spunta in superficie, intercettando la traiettoria del foglio. Menomale! Afferra la lista con le zampe e un sorriso malizioso le si dipinge sul muso... uh-oh.<br><br>\"Mmh\", canticchia, girando il foglio per leggere la tua lista. \"Sembra che tu abbia bisogno di aiuto per stabilire le tue priorità.\" Riiiip.<br><br>La lontra ha appena fatto a pezzi la tua lista accuratamente preparata! \"Se vuoi portare a termine questi compiti, devi prima decidere qual è il più importante!\" dice, gettando in aria uno alla volta gli elementi della tua lista.",
|
||||
"questJadeNotes": "Ti trovi a casa tua e fissi la pila di piatti sporchi nel lavandino. Il mucchio di biancheria, anch'essa sporca, in un angolo a caso della stanza. I bicchieri vuoti e i le bustine degli snack sparsi sulla scrivania...<br><br>Sospiri. \"Perché ci sono sempre più piatti da lavare...? Questo disordine non ha fine.\" È così demotivante. Ti ritrovi a sprofondare sul divano, scorrendo senza meta le ultime tendenze. Chissà da quanto tempo sei lì...<br><br>Quando alzi lo sguardo dal telefono, tutto è verde. Questo non è il tuo salotto. Ti alzi e ti ritrovi sul fianco di una montagna verdeggiante e scintillante.<br><br>Un movimento in lontananza attira la tua attenzione. Una figura verde e pietrosa grugnisce, spingendo un masso su per il terreno roccioso. Fa qualche progresso, ma un piccolo scivolone del piede fa rotolare il masso lucido giù, proprio verso di te!<br><br>Ti vede mentre corre verso il pezzo di giada che ti salta addosso! \"Allora, pensi che i piatti siano un problema?\" la figura grida: \"Provate questo!\"",
|
||||
"questJadeCompletion": "Dopo innumerevoli intoppi, sei finalmente riuscito a far rotolare il masso di giada fino alla cima della montagna! La figura di pietra ti raggiunge e sorride. Dà una leggera spinta al masso e tu guardi con orrore mentre rotola fino in fondo.<br><br>“Perché l'hai fatto? Qualcuno dovrà rispingerlo qui tutto da capo adesso!” esclami.<br><br>“Solo perché devi fare qualcosa più di una volta non significa che i tuoi successi siano insignificanti”, dice la figura di pietra. “Per ora, concentrati su ciò che hai ottenuto e goditi la ricompensa!”<br><br>Ti svegli di soprassalto sul divano, con il telefono caduto a terra. Al suo posto ci sono tre bottiglie piene di giada fluida! Forse è ora di lavare i piatti di oggi e poi fare una pausa per vedere come queste pozioni funzionino su alcune uova di animali domestici...",
|
||||
"questAlpacaNotes": "Il sole splende trionfante mentre sali lungo i sentieri rocciosi delle Montagne Tortuose. Hai pianificato questa spedizione per il tuo gruppo di amici per mesi, studiando ogni aspetto del viaggio. Il peso delle provviste sulle tue spalle è così gravoso che ogni passo sembra più essere un fardello che un'avventura.<br><br>Senti un leggero scricchiolio di zoccoli sul sentiero dietro di te. Un alpaca soffice ti si avvicina con un'enorme pila di bagagli sulla groppa.<br><br>\"Sembra che tu stia facendo fatica, amico, e tutto quello che porti è solo uno zaino minuscolo!\" dice mentre ti passa accanto.<br><br>\"Lo fai sembrare così facile,\" sospiri. \"Ho pianificato questo viaggio per così tanto tempo, ma ora che siamo qui, non mi sto neppure divertendo...\"<br><br>\"Non scoraggiarti,\" sbuffa l'alpaca. \"Ti insegnerò una lezione che ho imparato molto tempo fa!\" Si impenna e all'improvviso un sacco a pelo arrotolato ti vola addosso! Come mai potrà aiutarti questo, di nuovo?!",
|
||||
"questAlpacaCompletion": "Per fortuna nessuna delle borse che l'alpaca ti ha lanciato era pesante, ma avevi comunque le mani decisamente occupate. \"E quello che cos'era?\" chiedi, infastidito.<br><br>\"Se hai in programma un viaggio con gli amici, non dovresti portare tutto il tuo fardello da solo! Sono sicura che i tuoi amici preferirebbero che tu ti liberassi di qualche peso per darli a loro, piuttosto che vederti crollare sotto quel peso da solo. Comunque, puoi restituirmi quelle borse. Sono un animale da soma esperto e volevo solo che capissi questa lezione\", dice facendo l'occhiolino. \"Ma puoi tenere quel fagotto blu come ricompensa per ciò che hai appena appreso. Ci vediamo in cima!\"",
|
||||
"questPlatypusNotes": "È una splendida giornata a Conquest Creek, resa solamente peggiore dal foglio di lavoro che hai in mano. Perché le avventure più belle vengono sempre rovinate dai compiti? Sei a cinque domande sugli ecosistemi fluviali quando ti ritrovi con una domanda a risposta aperta.<br><br>“Descrivi come un animale potrebbe adattarsi a vivere in un fiume? Uff, non lo so...”<br><br>Dopo aver passato 30 minuti bloccato senza sapere nemmeno da dove iniziare, senti un sacco di schizzi provenire dalla riva.<br><br>“Augh,” una voce bisbiglia da sotto la superficie. Un ornitorinco dall'aria sconvolta emerge. “Questa tana non mi viene proprio bene! Ogni volta che inizio sembra sbagliata.” Si immerge di nuovo e la sua coda larga e piatta ti lancia un potente schizzo in faccia.<br><br>“Aspetta, non disfare tutto—” urli, mentre un altro schizzo d'acqua del torrente ti colpisce. Potresti riuscire a dargli una mano e, allo stesso tempo, trovare un po' di ispirazione!",
|
||||
"questOpalNotes": "Gli studiosi di Habitica hanno a lungo cercato la leggendaria Pozione di Schiusa Magica d'Opale. Una pozione così potente da infondere agli Animali Domestici e alle loro Cavalcature un colore fiammeggiante e una brillantezza senza pari rispetto a qualsiasi altra gemma o metallo prezioso. Si dice persino che la magia degli opali migliori la pianificazione, l'intuito e la creatività. Sarebbe un bel vantaggio per fare le tue attività!<br><br>A seguito di lunghe ricerche, potresti finalmente aver scoperto la risposta. Le Pozioni d'Opale richiedono pietre di opale grezze da forgiare con le rune magiche della Bilancia e di Mercurio. Questi antichi oggetti si trovano in un solo luogo... le pericolose rovine della città perduta, ai margini del Deserto Perditempo.<br><br>Arrivi alle rovine dopo interi giorni sulla tua Cavalcatura più forte, attraverso il terreno aspro e remoto. Tra le pietre sbiancate dal sole e spezzate scorgi un bagliore luminoso. La ricerca ha inizio!",
|
||||
"questFungiText": "Il Fungo Lunatico",
|
||||
"questPlatypusText": "L'Ornitorinco Perfezionista",
|
||||
"questPlatypusCompletion": "Dopo un estenuante scambio di getti d'acqua e qualche parola d'incoraggiamento da parte tua, l'ornitorinco finalmente si ferma e riemerge con un sospiro.<br><br>“Forse hai ragione. Se pretendo la perfezione, alla fine non finirò mai! Posso sempre apportare modifiche strada facendo. Sembra che tu ne sappia qualcosa di perfezionismo.”<br><br>Guardi il tuo foglio fradicio “Già...”<br><br>“Scusa,” dice l'ornitorinco. “Ecco, come scusa per aver bagnato il tuo tema, prendi un po' di uova che ho trovato nel fango.”",
|
||||
"questPlatypusBoss": "L'Ornitorinco Perfezionista",
|
||||
"questPlatypusRageTitle": "Schizzo Scioccante",
|
||||
"questPlatypusRageEffect": "L'Ornitorinco Perfezionista si tuffa sott'acqua e ti schizza! Il Mana della tua Squadra si reduce!",
|
||||
"questOpalText": "La Leggenda degli Opali Oscuri",
|
||||
"questOpalCompletion": "Finalmente, stanco e sporco di polvere, trovi le ultime rune e la pietra d'opale necessarie per forgiare la Pozione della Schiusa Magica.<br><br>Inizi il processo di forgiatura non appena torni nella città principale di Habitica. Il potere delle rune e degli opali riempie il tuo laboratorio di luce arcobaleno! In men che non si dica hai tre pozioni e non vedi l'ora di far schiudere dei nuovi e variopinti amici.",
|
||||
"questOpalCollectLibraRunes": "Runa della Bilancia",
|
||||
"questOpalCollectMercuryRunes": "Runa di Mercurio",
|
||||
"questFungiRageEffect": "Una nebbia viene emanata dal Fungo Lunatico e avvolge la vostra Squadra, smorzandovi l'umore e sopprimendo la vostra magia. Il Mana della Squadra si riduce!",
|
||||
"questFungiDropFungiPotion": "Pozione di Schiusa Fungo",
|
||||
"questFungiCompletion": "Tu e il Pesce d'Aprile vi guardate con sollievo mentre il fungo si ritira nella foresta.<br><br>“Ah,” esclama il Pesce d'Aprile, “che malinconia miceliale! Sono contento che siamo riusciti a migliorare il suo umore, e anche il nostro! Sento che le mie energie stiano tornando. Vieni con me e prepareremo insieme quelle pozioni coi funghi.”",
|
||||
"questFungiBoss": "Fungo Lunatico",
|
||||
"questFungiRageTitle": "Nebbia del Fungo Lunatico",
|
||||
"questFungiNotes": "È stata una primavera piovosa ad Habitica e il terreno intorno alle stalle è divenuto piuttosto spugnoso e umido. Noti che sono spuntati parecchi funghi lungo i muri e le recinzioni in legno delle stalle. C'è una nebbia che aleggia nell'aria, impedendo al sole di filtrare, e ciò ti provoca una sensazione di scoraggiamento.<br><br>Dalla nebbia vedi la sagoma del Pesce d'Aprile, per niente allegro come al solito.<br><br>\"Speravo di portarvi delle deliziose Pozioni Magiche per la Schiusa dei Funghi, così che potevate conservare per sempre i vostri amici funghi del mio giorno speciale\", dice, con un'espressione terribilmente seria. \"Ma questa nebbia mi sta davvero mettendo a dura prova, mi fa sentire troppo stanco e triste per poter fare la mia solita magia.\"<br><br>\"Oh no, mi dispiace sentirlo\", dici, notando anche il tuo umore sempre più cupo. “Questa nebbia rende davvero la giornata cupa. Chissà da dove viene…”<br><br>Un sordo rombo risuona nei campi e vedi una sagoma emergere dalla nebbia. Ti spaventi nel vedere una gigantesca creatura fungina dall'aspetto infelice, e la nebbia che pare fuoriuscire da essa.<br><br>“Aha,” dice il Pesce d'Aprile, “credo che questo tipo fungino possa essere la causa della nostra tristezza. Vediamo se riusciamo a risollevare un po' il morale del nostro amico e così anche dei nostri.”",
|
||||
"questAlienText": "Invasione dei Ladri di Motivazione",
|
||||
"questAlienNotes": "Sono stati dei giorni alquanto strani ad Habitica. Il grande disco volante è ancora sospeso vicino ai Campi Fioriti ed emette uno strano ronzio. Perché indugia? Il giorno del Pesce d'Aprile è passato e il momento di gloria del Maestro dei Ladri è giunto al termine.<br><br>Ti dirigi verso la luce dell'astronave. Tanto valeva darle un'occhiata e fare qualche passo.<br><br>Avvicinandoti, vedi il Pesce d'Aprile, con un'espressione un po' cupa. Il suo viso appare verdastro alla luce del fascio di luce dell'astronave.<br><br>\"Il mio piano era quello di procurare delle pozioni per tutti, un piccolo regalo affinché tutti possano godersi di nuovo i loro piccoli amici extraterrestri! Ma non riesco proprio a farmi coraggio... e credo di sapere il motivo\", dice il Pesce d'Aprile, annuendo verso il fascio di luce.<br><br>Piccoli simboli vengono risucchiati nell'astronave: sono tutte le tue attività completate! Non c'è da stupirsi che la tua motivazione sia stata così scarsa.<br><br>\"La nostra motivazione è stata rapita!\" esclami. \"Dobbiamo salvarla prima che finisca da qualche parte nello spazio più profondo!\"<br><br>Il Pesce d'Aprile sorride. \"Prova a concentrare i tuoi pensieri su quelle attività che sai di dover portare a termine! Al resto ci penserò io con un po' di magia.\"",
|
||||
"questAlienCompletion": "Sei riuscito a riconquistare la motivazione che ti era stata derubata grazie alla tua determinazione e al potere magico del Pesce d'Aprile. Mentre senti riaffiorare il tuo slancio, all'improvviso l'UFO inizia a scendere dal cielo e una rampa emerge insieme a una grande creatura verde con un solo occhio. Sebbene abbia un aspetto strano, non pare essere minacciosa.<br><br>\"Sembra che ci siamo spinti un po' troppo oltre, cercando di trovare un po' di incoraggiamento dalla vostra splendida città\", dice. \"Ci scusiamo per questo e complimenti per l'ottimo lavoro che avete svolto per recuperarla. L'aura extra dei vostri sforzi ha effettivamente caricato il motore della nave abbastanza da poterci riportare a casa! Quindi per favore, prendete queste pozioni con i nostri più sentiti ringraziamenti.\"<br><br>\"Ooh, delle pozioni\", dice il Pesce d'Aprile, \"che delizia, e che comodità che le abbiate già belle che pronte!\"",
|
||||
"questAlienBoss": "Il Ladro di Incoraggiamento, l'Extraterrestre",
|
||||
"questAlienRageTitle": "Impedimento Intergalattico",
|
||||
"questAlienRageEffect": "Il Ladro di Incoraggiamento usa l'Impedimento Intergalattico! Sei stato lanciato oltre l'iperspazio. Il tuo avversario recupera salute!"
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"rebirthNew": "Rinascita: una nuova avventura è disponibile!",
|
||||
"rebirthUnlock": "Hai sbloccato Rinascita! Questo speciale oggetto del Mercato ti permette di iniziare una nuova partita al livello 1, mantenendo però le tue attività, gli obiettivi, gli animali ed altro. Usalo per dare nuova vita ad Habitica se senti di avere già ottenuto tutto, oppure per provare le nuove funzionalità con gli occhi di un personaggio principiante!",
|
||||
"rebirthAchievement": "Hai iniziato una nuova avventura! Questa è la rinascita numero <%= number %> per te, il livello più alto che hai raggiunto è <%= level %>. Per ottenere un'altra medaglia, inizia una nuova avventura quando avrai raggiunto un livello ancora più alto!",
|
||||
"rebirthAchievement100": "Hai iniziato una nuova avventura! Questa è la rinascita numero <%= number %> per te, il livello più alto che hai raggiunto è 100 o superiore. Per ottenere un'altra medaglia, inizia una nuova avventura quando avrai raggiunto almeno il livello 100!",
|
||||
"rebirthAchievement": "Hai usato la Sfera della Rinascita <strong><%= number %></strong> volte e il livello più alto che hai raggiunto è <strong><%= level %></strong>.",
|
||||
"rebirthAchievement100": "Hai usato la Sfera della Rinascita <strong><%= number %></strong> volte e il livello più alto che hai raggiunto è <strong>100</strong> o superiore.",
|
||||
"rebirthBegan": "Ha cominciato una nuova avventura",
|
||||
"rebirthText": "Ha cominciato <%= rebirths %> nuove avventure",
|
||||
"rebirthOrb": "Ha utilizzato una Sfera della Rinascita per ricominciare dopo aver raggiunto il livello <%= level %>.",
|
||||
@@ -11,5 +11,12 @@
|
||||
"rebirthPop": "Fai ripartire subito il tuo personaggio dal Livello 1 come Guerriero mantenendo medaglie, oggetti collezionabili ed equipaggiamento. Le tue attività e la loro cronologia rimarranno, ma torneranno al colore giallo. I contatori serie verranno resettati per tutte le attività, eccetto quelle appartenenti alle Sfide ed ai Piani di Gruppo. Il tuo oro, esperienza, mana ed effetti di tutte le abilità verranno rimossi. Tutto questo avrà effetto immediatamente.",
|
||||
"rebirthName": "Sfera della Rinascita",
|
||||
"rebirthComplete": "Rinascita completata!",
|
||||
"nextFreeRebirth": "<strong><%= days %> giorni </strong> alla Sfera di rinascita <strong>GRATUITA</strong>"
|
||||
"nextFreeRebirth": "<strong><%= days %> giorni </strong> alla Sfera di rinascita <strong>GRATUITA</strong>",
|
||||
"rebirthUnlockedNewItem": "Sfera della Rinascita Sbloccata",
|
||||
"rebirthUnlockedOrb": "È disponibile una nuova avventura!",
|
||||
"rebirthUnlockedDesc": "Usa la Sfera della Rinascita per dare nuova vita alla tua avventura su Habitica quando senti di aver raggiunto tutti i tuoi obiettivi! Ricomincia dal livello 1 conservando i tuoi compiti,le tue Medaglie e i tuoi Animali domestici grazie a questo oggetto speciale che trovi nel Mercato.",
|
||||
"rebirthNewAchievement": "Nuova Medaglia",
|
||||
"rebirthNewAdventure": "Una nuova avventura ha ora inizio!",
|
||||
"rebirthAchievementPlural": "Hai usato la Sfera della Rinascita <strong><%= number %></strong> volte e il livello più alto che hai raggiunto è <strong><%= level %></strong>.",
|
||||
"rebirthStackInfo": "Questa medaglia si accumulerà ogni volta che userai la Sfera della Rinascita."
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
"resetComplete": "Reset completato!",
|
||||
"fixValues": "Sistema valori",
|
||||
"fixValuesText1": "Se hai avuto a che fare con un bug o commesso un errore che ha ingiustamente \"cambiato\" il tuo personaggio (danni che non avresti dovuto ricevere, Oro che non hai guadagnato, ecc.), qui puoi sistemare manualmente quei valori. Sì, questo rende possibile barare: usa questa funzionalità con saggezza, o finirai per rovinare la tua stessa costruzione di abitudini!",
|
||||
"fixValuesText2": "Tieni presente che qui non puoi modificare le serie delle singole attività da qui Per fare quello, modifica una attività giornaliera e vai nelle sue opzioni avanzate, troverai un campo \"Ripristina serie\".",
|
||||
"fixValuesText2": "<b>Nota</b>: per ripristinare le serie delle singole attività, modifica l'attività e utilizza il campo “Ripristina serie”.",
|
||||
"fix21Streaks": "Serie di 21 giorni",
|
||||
"discardChanges": "Annulla modifiche",
|
||||
"deleteDo": "Sì, elimina il mio account!",
|
||||
@@ -87,7 +87,7 @@
|
||||
"invitedParty": "Sei stato invitato in una Squadra",
|
||||
"invitedGuild": "Sei stato invitato in un Gruppo",
|
||||
"importantAnnouncements": "Promemoria per l'accesso, per completare attività e ricevere premi",
|
||||
"weeklyRecaps": "Riassunto delle attività del tuo account nell'ultima settimana (Nota: questa funzionalità al momento è stata disattivata a causa di problemi di prestazioni, ma speriamo di riattivarla e fare in modo che invii nuovamente e-mail al più presto!)",
|
||||
"weeklyRecaps": "Riassunto delle attività del tuo account nell'ultima settimana (Nota: questa funzionalità al momento è stata disattivata a causa di problemi di prestazioni, ma speriamo di riattivarla e fare in modo che invii nuovamente email al più presto!)",
|
||||
"onboarding": "Guida per iniziare con il tuo account su Habitica",
|
||||
"majorUpdates": "Annunci importanti",
|
||||
"questStarted": "La tua missione è iniziata",
|
||||
@@ -95,7 +95,7 @@
|
||||
"kickedGroup": "Rimossa/o da un gruppo",
|
||||
"remindersToLogin": "Promemoria per accedere ad Habitica",
|
||||
"unsubscribedSuccessfully": "Disattivazione avvenuta con successo!",
|
||||
"unsubscribedTextUsers": "Hai disattivato con successo tutte le notifiche via e-mail di Habitica. Puoi abilitare solo le e-mail che vuoi ricevere in <a href=\"/user/settings/notifications\">Impostazioni > > Notifiche</a> (richiede il login).",
|
||||
"unsubscribedTextUsers": "Hai disattivato con successo tutte le notifiche via email di Habitica. Puoi abilitare solo le email che vuoi ricevere in <a href=\"/user/settings/notifications\">Impostazioni > > Notifiche</a> (richiede il login).",
|
||||
"unsubscribedTextOthers": "Non riceverai altre email da Habitica.",
|
||||
"unsubscribeAllEmails": "Disattiva tutte le notifiche email",
|
||||
"unsubscribeAllEmailsText": "Habitica non potrà informarti via email di modifiche importanti che interessano il sito o il tuo account.",
|
||||
@@ -111,7 +111,7 @@
|
||||
"promoPlaceholder": "Inserisci codice promozionale",
|
||||
"saveCustomDayStart": "Salva Inizio del Giorno Personalizzato",
|
||||
"registration": "Registrazione",
|
||||
"addLocalAuth": "Aggiungi login con Email e Password",
|
||||
"addLocalAuth": "Aggiungi login con email e Password",
|
||||
"generateCodes": "Genera codici",
|
||||
"generate": "Genera",
|
||||
"getCodes": "Ottieni codici",
|
||||
@@ -167,7 +167,7 @@
|
||||
"bannedWordUsedInProfile": "Il tuo nome visualizzato o il testo Informazioni conteneva un linguaggio inappropriato.",
|
||||
"bannedSlurUsedInProfile": "Il tuo nome pubblico o le tue informazioni contenevano un insulto e i tuoi privilegi di chat sono stati revocati.",
|
||||
"mentioning": "Citazioni",
|
||||
"transaction_gift_send": "<b>Donato<b> a",
|
||||
"transaction_gift_send": "<b>Donato</b> a",
|
||||
"transaction_gift_receive": "<b>Ricevuto</b> da",
|
||||
"transactions": "Transazioni",
|
||||
"hourglassTransactions": "Transazioni Clessidre",
|
||||
@@ -187,9 +187,9 @@
|
||||
"transaction_reroll": "Pozione di Fortificazione usata",
|
||||
"gemCap": "Limite Gemme",
|
||||
"nextHourglass": "Prossima consegna di Clessidre Mistiche",
|
||||
"nextHourglassDescription": "Gli abbonati ricevono le clessidre mistiche entro\ni primi tre giorni del mese.",
|
||||
"nextHourglassDescription": "Gli abbonati ricevono una Clessidra Mistica, un Set di Equipaggiamento Misterioso e un rifornimento di Gemme nel Mercato entro i primi due giorni del mese",
|
||||
"transaction_create_guild": "Gilda <b>creata</b>",
|
||||
"transaction_subscription_perks": "Benefici dell'<b>abbonamento</b>",
|
||||
"transaction_subscription_perks": "Bonus dell'<b>Abbonamento</b>",
|
||||
"adjustment": "Regolazione",
|
||||
"dayStartAdjustment": "Regolazione Inizio Giornata",
|
||||
"passwordSuccess": "Password cambiata con successo",
|
||||
@@ -205,9 +205,9 @@
|
||||
"remainingBalance": "Saldo Rimanente",
|
||||
"generalSettings": "Impostazioni Generali",
|
||||
"taskSettings": "Impostazioni delle Attività",
|
||||
"confirmCancelChanges": "Ne sei sicuro/a? I cambiamenti non salvati saranno perduti.",
|
||||
"confirmCancelChanges": "Confermi? I cambiamenti non salvati saranno perduti.",
|
||||
"account": "Profilo",
|
||||
"loginMethods": "Metodi di Accesso",
|
||||
"loginMethods": "Metodi per accedere",
|
||||
"character": "Personaggio",
|
||||
"siteLanguage": "Lingua del Sito",
|
||||
"contentRelease": "Rilasci di contenuti + Eventi",
|
||||
@@ -236,12 +236,12 @@
|
||||
"resetDetail3": "Tutti i tuoi compiti (ad eccezione di quelli delle sfide) verranno eliminati definitivamente e perderai tutti i relativi dati storici.",
|
||||
"resetDetail4": "Perderai tutto il tuo equipaggiamento, eccetto gli oggetti misteriosi degli abbonati e gli oggetti commemorativi gratuiti. Potrai riacquistare gli oggetti eliminati, inclusi tutti gli equipaggiamenti in edizione limitata (dovrai essere nella classe corretta per riacquistare l'equipaggiamento specifico della classe).",
|
||||
"APICopied": "Token API copiato negli appunti.",
|
||||
"APITokenTitle": "API Token",
|
||||
"APITokenTitle": "Token API",
|
||||
"connected": "Connesso",
|
||||
"userNameSuccess": "Nome utente cambiato correttamente",
|
||||
"changeEmailDisclaimer": "Questo è l'indirizzo email che utilizzi per accedere ad Habitica e per ricevere le notifiche.",
|
||||
"changeDisplayNameDisclaimer": "Questo è il nome che verrà visualizzato per il tuo avatar in Habitica.",
|
||||
"changePasswordDisclaimer": "La password deve contenere almeno 8 caratteri. Ti consigliamo una password complessa che non utilizzi altrove.",
|
||||
"changePasswordDisclaimer": "La password deve contenere almeno 8 caratteri. La modifica della password comporterà la disconnessione da qualsiasi altro dispositivo e strumento di terze parti che potresti utilizzare.",
|
||||
"dateFormatDisclaimer": "Regola la formattazione della data in Habitica.",
|
||||
"enableAudio": "Abilita l'audio",
|
||||
"playDemoAudio": "Ascolta audio demo",
|
||||
@@ -252,5 +252,26 @@
|
||||
"chooseClassSetting": "Scegli Classe",
|
||||
"changeClassDisclaimer": "Cambiare la tua classe ti rimborserà tutti i tuoi Attributi esistenti. Una volta selezionata la tua nuova classe, modifica i tuoi Attributi dalla sezione Stats del tuo profilo.",
|
||||
"connect": "Connetti",
|
||||
"remove": "Rimuovi"
|
||||
"remove": "Rimuovi",
|
||||
"acceptAllCookies": "Accetta Tutti i Cookie",
|
||||
"denyNonEssentialCookies": "Rifiuta i Cookie non essenziali",
|
||||
"managePrivacyPreferences": "Gestisci le tue preferenze sulla Privacy",
|
||||
"yourPrivacyPreferences": "Le tue preferenze sulla Privacy",
|
||||
"privacyOverview": "Al giorno d'oggi, sembra che ogni azienda voglia trarre profitto dai tuoi dati. Questo può rendere difficile trovare l'applicazione giusta per migliorare le tue abitudini. Habitica utilizza i cookie per memorizzare dati esclusivamente allo scopo di analizzare le prestazioni, gestire le richieste di assistenza e offrirti la migliore esperienza di gioco possibile. Puoi modificare queste impostazioni in qualsiasi momento dalle impostazioni del tuo account.",
|
||||
"privacySettingsOverview": "Habitica utilizza i cookie per analizzare le prestazioni, gestire le richieste di assistenza e offrirti la migliore esperienza di gioco possibile. A tal fine, abbiamo bisogno delle seguenti autorizzazioni. Puoi modificarle in qualsiasi momento dalle impostazioni del tuo account.",
|
||||
"thirdPartyTools": "Trova app di terze parti, estensioni e ogni tipo di altro strumento che puoi usare con il tuo account sulla <a href='https://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations' target='_blank'>wiki di Habitica</a>.",
|
||||
"APITokenDisclaimer": "<b>Il tuo Token API è come una password; Non condividerlo pubblicamente.</b> Potrebbe esserti occasionalmente richiesto il tuo ID Utente, ma non pubblicare mai il tuo Token API dove altri possano vederlo, incluso su Github.<br><br><b>Nota:</b> Se hai bisogno di un nuovo Token API (ad esempio, se lo hai condiviso accidentalmente), invia un'email a <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> con il tuo ID Utente e il Token attuale. Una volta reimpostato, dovrai ri-autorizzare tutto disconnettendoti dal sito web e dall'app mobile e fornendo il nuovo Token a qualsiasi altro strumento di Habitica che utilizzi.",
|
||||
"developerModeTooltip": "Habitica fornisce una modalità sviluppatore per abilitare funzionalità aggiuntive che interagiscono con l'API di Habitica.",
|
||||
"addWebhook": "Aggiungi Webhook",
|
||||
"showStreakModal": "Quando si Ottiene una Medaglia per la Serie",
|
||||
"learnMorePrivacy": "Per saperne di più, consulta la nostra <a href='/static/privacy' target='_blank'>Privacy Policy</a>.",
|
||||
"alwaysActive": "Sempre Attivo",
|
||||
"performanceAnalytics": "Prestazioni e Analisi",
|
||||
"savePreferences": "Salva Preferenze",
|
||||
"habiticaPrivacyPolicy": "Privacy Policy di Habitica",
|
||||
"strictlyNecessary": "Strettamente Necessario",
|
||||
"requiredToRun": "Sono necessari affinché il nostro sito web e le nostre applicazioni funzionino al meglio.",
|
||||
"usedForSupport": "Questi dati vengono usati per migliorare l'esperienza dell'utente, le prestazioni e i servizi del nostro sito web e delle nostre applicazioni. Il nostro team di assistenza li utilizza per gestire le richieste e le segnalazioni di bug.",
|
||||
"gpcWarning": "<a href=‘<%= url %>’ target=‘_blank’>GPC</a> è attivo. Se attivi il tracciamento qui sotto, questa impostazione verrà ignorata e i dati verranno inviati ai nostri partner di analisi.",
|
||||
"gpcPlusAnalytics": "<a href=‘<%= url %>’ target=‘_blank’>GPC</a> è attivo. Hai acconsentito al tracciamento e all'invio dei dati ai nostri partner di analisi."
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"spellWizardFireballText": "Fiammata",
|
||||
"spellWizardFireballNotes": "Evochi punti Esperienza e infliggi danni extra ai Boss! (Dipende da: INT)",
|
||||
"spellWizardMPHealText": "Ondata Eterea",
|
||||
"spellWizardMPHealNotes": "Sacrifichi del Mana per far guadagnare MP al resto della tua squadra, eccetto i Maghi. (Dipende da: INT)",
|
||||
"spellWizardMPHealNotes": "Sacrifichi del Mana per far guadagnare PM al resto della tua squadra, eccetto i Maghi. (Dipende da: INT)",
|
||||
"spellWizardEarthText": "Terremoto",
|
||||
"spellWizardEarthNotes": "I tuoi poteri psichici fanno tremare la terra e fanno guadagnare alla tua squadra un bonus di Intelligenza! (Dipende da: INT senza bonus)",
|
||||
"spellWizardFrostText": "Gelido Freddo",
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
"subGemName": "Gemme abbonato",
|
||||
"maxBuyGems": "Hai comprato tutte le Gemme a disposizione per questo mese. Altre saranno disponibili entro i primi tre giorni del mese prossimo. Grazie per esserti abbonato!",
|
||||
"timeTravelers": "Viaggiatori del Tempo",
|
||||
"timeTravelersPopoverNoSubMobile": "Gli abbonati ricevono una rara Clessidra Mistica ogni mese da utilizzare nel negozio dei Viaggiatori del Tempo.",
|
||||
"timeTravelersPopoverNoSubMobile": "Gli abbonati ricevono una rara Clessidra Mistica ogni mese da utilizzare nel negozio dei Viaggiatori del Tempo!",
|
||||
"timeTravelersPopover": "La tua Clessidra Mistica ha aperto il nostro portale temporale! Scegli cosa vorresti recuperare dal passato o dal futuro.",
|
||||
"mysterySetNotFound": "Completo Mistery non trovato o già posseduto.",
|
||||
"mysteryItemIsEmpty": "Gli oggetti Mistery sono finiti",
|
||||
@@ -91,7 +91,7 @@
|
||||
"mysterySet301703": "Set Pavone Steampunk",
|
||||
"mysterySet301704": "Set Fagiano Steampunk",
|
||||
"mysterySetwondercon": "Wondercon",
|
||||
"subUpdateCard": "Aggiorna Carta di Credito",
|
||||
"subUpdateCard": "Modifica Carta di Credito",
|
||||
"subUpdateTitle": "Aggiorna",
|
||||
"notEnoughHourglasses": "Non hai abbastanza Clessidre Mistiche.",
|
||||
"petsAlreadyOwned": "Possiedi già questo animale.",
|
||||
@@ -133,7 +133,7 @@
|
||||
"mysticHourglassNeededNoSub": "Questo articolo ha bisogno di una Clessidra Mistica. Ne otterrai sottoscrivendo un abbonamento ad Habitica.",
|
||||
"giftASubscription": "Regala un Abbonamento",
|
||||
"viewSubscriptions": "Guarda Abbonamenti",
|
||||
"subscribersReceiveBenefits": "Gli abbonati riceveranno questi utili vantaggi!",
|
||||
"subscribersReceiveBenefits": "Abbonati per rimanere motivato con ancora più premi",
|
||||
"mysterySet201907": "Set Spiaggia Speciale",
|
||||
"mysterySet201906": "Set Carpa Cortese",
|
||||
"mysterySet201905": "Set Arcidrago Accecante",
|
||||
@@ -151,16 +151,16 @@
|
||||
"mysterySet201909": "Set Ghianda Affabile",
|
||||
"mysterySet201908": "Set Fauno Spensierato",
|
||||
"mysterySet201902": "Set Cotta Criptica",
|
||||
"subMonths": "Mese di abbonamento",
|
||||
"cancelYourSubscription": "Cancellare il tuo abbonamento?",
|
||||
"subMonths": "Mesi di Abbonamento",
|
||||
"cancelYourSubscription": "Vuoi cancellare il tuo abbonamento?",
|
||||
"readyToResubscribe": "Sei pronto ad abbonarti di nuovo?",
|
||||
"needToUpdateCard": "Vuoi aggiornare la tua carta?",
|
||||
"subscriptionStats": "Stato abbonamento",
|
||||
"subscriptionInactiveDate": "I vantaggi del tuo abbonamento diverranno inattivi il <strong><%= date %></strong>",
|
||||
"subscriptionInactiveDate": "I vantaggi del tuo abbonamento diverranno inattivi il <br><strong><%= date %></strong>",
|
||||
"subscriptionCanceled": "Il tuo abbonamento è stato annullato",
|
||||
"youAreSubscribed": "Sei iscritto ad Habitica",
|
||||
"doubleDropCap": "Raddoppia il Bottino",
|
||||
"monthlyMysteryItems": "Oggetti misteriosi mensili",
|
||||
"monthlyMysteryItems": "Set di Equipaggiamento Mensili in Edizione Limitata",
|
||||
"subCanceledTitle": "Abbonamento annullato",
|
||||
"backgroundAlreadyOwned": "Possiedi già questo sfondo.",
|
||||
"mysterySet202007": "Set Orca Eccezionale",
|
||||
@@ -234,7 +234,7 @@
|
||||
"mysterySet202509": "Set del Viandante spazzato dal vento",
|
||||
"mysterySet202511": "Set del Guerriero del Gelo",
|
||||
"mysterySet202408": "Set dell'Egida Arcana",
|
||||
"mysterySet202504": "Set dello Yeti sfuggente",
|
||||
"mysterySet202504": "Set dello Yeti Sfuggente",
|
||||
"mysterySet202402": "Set del Paradiso Rosa",
|
||||
"mysterySet202412": "Set del Coniglietto del Bastoncino di Zucchero",
|
||||
"subscribeTo": "Abbonati a",
|
||||
@@ -246,6 +246,36 @@
|
||||
"mysterySet202406": "Set del Bucaniere Fantasma",
|
||||
"mysterySet202411": "Set del Combattente peloso",
|
||||
"mysterySet202506": "Set della Luce Solare",
|
||||
"mysterySet202505": "Set della Coda di rondine volante",
|
||||
"mysterySet202507": "Set dello Skater coraggioso"
|
||||
"mysterySet202505": "Set della Coda di Rondine Volante",
|
||||
"mysterySet202507": "Set dello Skater coraggioso",
|
||||
"mysterySet202410": "Set della Volpe delle Candy Corn",
|
||||
"mysterySet202510": "Set del Demone Planante",
|
||||
"monthlyMysticHourglass": "Clessidre Mistiche Mensili",
|
||||
"resubscribeToPickUp": "Iscriviti di nuovo per riprendere da dove avevi interrotto!",
|
||||
"popular": "Popolare",
|
||||
"subscribe": "Iscriviti",
|
||||
"monthlyGemsLabel": "Gemme Mensili",
|
||||
"nMonthsGift": "Per <%= mesi %> mesi",
|
||||
"oneMonthGift": "Per 1 mese",
|
||||
"unlockNGemsGift": "Sbloccheranno <strong><%= count %> Gemme</strong> al mese nel Mercato",
|
||||
"subscribeAgainContinueHourglasses": "Iscriviti ancora per continuare a ricevere Clessidre Mistiche",
|
||||
"subscriptionBillingFYIShort": "Gli abbonamenti si rinnovano automaticamente, a meno che non li disdici almeno 24 ore prima della scadenza del periodo in corso. L'addebito sul tuo conto avverrà entro 24 ore dalla data di rinnovo, allo stesso prezzo pagato inizialmente.",
|
||||
"recurringMonthly": "Ricorrente ogni mese",
|
||||
"earn2GemsGift": "Guadagneranno <strong>+2 Gemme</strong> ogni mese di abbonamento",
|
||||
"maxGemCapGift": "Avranno il massimo <strong>Limite di Gemme</strong>",
|
||||
"immediate12Hourglasses": "Ricevi subito <strong>12 Clessidre Mistiche</strong> dopo il tuo primo abbonamento di 12 mesi!",
|
||||
"selectPayment": "Seleziona il Metodo di Pagamento",
|
||||
"subscriptionChangeAnnouncement": "<strong>A partire dal 19 novembre cambieranno i vantaggi dell'abbonamento e le modalità di invio.</strong> <%= linkStart %>Clicca qui</a> per saperne di più.",
|
||||
"giftSubscriptionLeadText": "Scegli qui sotto l'abbonamento che desideri regalare! Questo acquisto non si rinnoverà automaticamente.",
|
||||
"maxGemCap": "Inizia subito con il massimo <strong>Limite di Gemme</strong>",
|
||||
"earn2Gems": "Guadagna <strong>+2 Gemme</strong> ogni mese di abbonamento",
|
||||
"recurringNMonthly": "Ricorrente ogni <%= length %> mesi",
|
||||
"unlockNGems": "Sblocca <strong><%= count %> Gemme</strong> al mese nel Mercato",
|
||||
"mysterySet202603": "Set del Mago Glicine",
|
||||
"mysterySet202604": "Set dell'Astronauta Audace",
|
||||
"mysterySet202605": "Set della Nube Crepuscolare",
|
||||
"mysterySet202512": "Set del Campione dei Biscotti",
|
||||
"mysterySet202601": "Set dello Scudo Invernale",
|
||||
"mysterySet202602": "Set della Volpe Sakura",
|
||||
"subscriptionBillingFYI": "Gli abbonamenti si rinnovano automaticamente, a meno che non li disdici almeno 24 ore prima della scadenza del periodo in corso. Puoi gestire il tuo abbonamento dalla scheda “Abbonamento” nelle impostazioni. L'addebito sul tuo conto avverrà entro 24 ore dalla data di rinnovo, allo stesso prezzo pagato inizialmente."
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"clearCompleted": "Elimina attività completate",
|
||||
"clearCompleted": "Elimina le attività completate",
|
||||
"clearCompletedDescription": "Le Cose da Fare completate vengono eliminate dopo 30 giorni per i non abbonati e dopo 90 giorni per gli abbonati.",
|
||||
"clearCompletedConfirm": "Vuoi davvero eliminare le Cose da Fare completate?",
|
||||
"addMultipleTip": "<strong>Consiglio:</strong> per aggiungere varie <%= taskType %>, scrivi ognuna su una riga diversa andando a capo (Shift + Invio) e poi premi \"Invio.\"",
|
||||
@@ -10,7 +10,7 @@
|
||||
"theseAreYourTasks": "Queste sono le tue <%= taskType %>",
|
||||
"habit": "Abitudine",
|
||||
"habits": "Abitudini",
|
||||
"habitsDesc": "Abitudini non hanno una programmazione rigida. Puoi completarle più volte al giorno.",
|
||||
"habitsDesc": "Le Abitudini non hanno una programmazione rigida. Puoi completarle più volte al giorno.",
|
||||
"positive": "Positiva",
|
||||
"negative": "Negativa",
|
||||
"yellowred": "Deboli",
|
||||
@@ -35,7 +35,7 @@
|
||||
"progress": "Progressi",
|
||||
"daily": "Attività Giornaliera",
|
||||
"dailies": "Attività Giornaliere",
|
||||
"dailysDesc": "Le attività giornaliere si ripetono regolarmente. Scegli di farle ripetere ogni quanto preferisci!",
|
||||
"dailysDesc": "Le Attività Giornaliere si ripetono regolarmente. Scegli di farle ripetere ogni quanto preferisci!",
|
||||
"streakCounter": "Contatore Serie",
|
||||
"repeat": "Ripeti",
|
||||
"repeats": "Ripetizione",
|
||||
@@ -51,7 +51,7 @@
|
||||
"dueDate": "Completa entro il giorno",
|
||||
"remaining": "Attive",
|
||||
"complete": "Fatto",
|
||||
"complete2": "Completato",
|
||||
"complete2": "Completate",
|
||||
"today": "Oggi",
|
||||
"dueIn": "Scade <%= dueIn %>",
|
||||
"due": "Incomplete",
|
||||
@@ -131,11 +131,17 @@
|
||||
"resetCounter": "Resetta il Contatore",
|
||||
"adjustCounter": "Aggiusta il Contatore",
|
||||
"counter": "Contatore",
|
||||
"editTagsText": "Modifica etichette",
|
||||
"editTagsText": "Modifica Etichette",
|
||||
"taskSummary": "<%= type %> Riepilogo",
|
||||
"scoreUp": "Punteggio su",
|
||||
"scoreDown": "Punteggio giù",
|
||||
"taskAlias": "Alias Attività",
|
||||
"taskAliasPopover": "Questo Alias di Attività può essere utilizzato quando si integra con terze parti. Sono supportati solo trattini, underscore e caratteri alfanumerici. L'Alias di Attività deve essere univoco tra tutte le attività.",
|
||||
"taskAliasPlaceholder": "il-tuo-alias-qui"
|
||||
"taskAliasPlaceholder": "il-tuo-alias-qui",
|
||||
"deleteType": "Cancella <%= type %>",
|
||||
"deleteTask": "Cancella Attività",
|
||||
"deleteXTasks": "Cancella <%= count %> Attività",
|
||||
"brokenChallengeTaskCount": "Questo è una delle <%= count %> attività che facevano parte di una Sfida che non esiste più.",
|
||||
"confirmDeleteTasks": "Vuoi eliminare le attività?",
|
||||
"sureDeleteType": "Vuoi davvero eliminare questa attività?"
|
||||
}
|
||||
|
||||
@@ -3470,5 +3470,8 @@
|
||||
"shieldSpecialWinter2026WarriorText": "霧氷の盾",
|
||||
"shieldArmoireFancyFloralFanText": "おしゃれな花の扇子",
|
||||
"shieldArmoireFlyFishingRodText": "フライフィッシングの釣竿",
|
||||
"headSpecialWinter2026WarriorText": "霜の死神のかぶと"
|
||||
"headSpecialWinter2026WarriorText": "霜の死神のかぶと",
|
||||
"backMystery202605Notes": "最も暗い夜でも照らす、月と星の光で輝く光輪。効果なし。2026年5月の有料会員アイテム。",
|
||||
"backMystery202506Text": "陽光の光輪",
|
||||
"weaponArmoirePrettyPinkParasolNotes": "見た目もよくて実用的、それがいちばんの組み合わせです。さらに印象的に見せるなら、このパラソルをくるっと回してみてください!すべての能力値がそれぞれ<%= attrs %>上がります。ラッキー宝箱:ピンクのおしゃれセット(アイテム1/2)"
|
||||
}
|
||||
|
||||
@@ -243,5 +243,7 @@
|
||||
"targetUserNotExist": "「<%= userName %>」というユーザーはいません。",
|
||||
"rememberToBeKind": "他人には優しくして、<a href='/static/community-guidelines' target='_blank'>コミュニティガイドラン</a>を守ってください。",
|
||||
"gem": "ジェム",
|
||||
"confirmPurchase": "購入を確認する"
|
||||
"confirmPurchase": "購入を確認する",
|
||||
"avoidSPI": "機微情報は避けてください",
|
||||
"avoidSPIDetails": "プライバシーを守るため、Habitica をご利用の際は<%= firstLink %>機微(センシティブ)情報<%= linkClose %>を入力しないでください。タスクなどのアカウントデータは Habitica のサーバーに保存されるため、どの端末からでもアクセスできます。<br><br>詳しくは<%= secondLink %>プライバシーポリシー<%= linkClose %>をご覧ください。"
|
||||
}
|
||||
|
||||
@@ -430,5 +430,8 @@
|
||||
"createNewGroup": "新しいグループを作成",
|
||||
"yourParty": "あなたのパーティー",
|
||||
"oneMember": "メンバー1人",
|
||||
"membersCount": "メンバー<%= count %>人"
|
||||
"membersCount": "メンバー<%= count %>人",
|
||||
"chooseAnOption": "オプションを選択",
|
||||
"inviteOthersForAdditional": "他の人をグループに誘う追加料金",
|
||||
"perMember": "(一人あたり)"
|
||||
}
|
||||
|
||||
@@ -850,7 +850,7 @@
|
||||
"questRaccoonNotes": "ある秋の日、あなたはコンクエスト入り江の川沿いをゆっくり散歩しています。川岸に転がっている飾り石がいくつか見えます。最近担当したプロジェクトにぴったりです。<br><br>あなたはきれいな石をいくつか木の下に集め始めます。しかし、不思議なことに、毎回木に戻ってくると、石の山は小さくなっています。<br><br>何かおかしいです。あなたは周りを一度見渡しますが、特に変わったことはありません。入り江に戻ろうと振り返ったそのとき、木の穴から動物の手が出てきて、石を何個かつかみます!<br><br>「やめて!」あなたは叫びます。「せっかく頑張って集めたのに、聞かずに取らないで!」<br><br>アイマスク模様の顔が現れ、コソコソ笑います。「拾ったもん勝ちだ!」と、アライグマは言い、石の入った袋を持ったまま、木の中に隠れてしまいます。あなたも木の中へ飛び込みます。負けるもんか!",
|
||||
"questCatCompletion": "ありがたいことに、猫がテーブルから落とした物は全部キャッチできました。床に座ると、目の前のアイテムが明るく輝いているのに気づきます。見上げると、テーブルの上のアイテムも光っています!高さを変えて置くことが、研究につながる大発見かもしれません!<br><br>「結局は手伝ってくれたのね。別の目でタスクを見てもらわなかったら、進めなかったかも。でも、あんなにたくさん物を落とす前に、知らせてほしかったよ。」あなたは猫の頭を優しく撫でながら言います。<br><br>「そっか。じゃあ、謝罪にこのたまごをあげる!」猫はゴロゴロと喉を鳴らして、ちょっと変わった見た目のたまごを差し出します。「新しい視点を出せてよかった。」",
|
||||
"questAlpacaNotes": "日差しは明るく、ヨモヤマ山脈の岩だらけの道をハイキングしています。あなたは友達のためにこの冒険を計画し、何か月もコースを詳しく調べています。しかし、背負っている荷物は重すぎて、一歩一歩が負担です。<br><br>あなたは後ろからダクダクと近づいてくる足音が聞こえてきます。背中にデッカイ荷物の山を積んだ、ふわふわのアルパカが現れます。<br><br>「多量の荷物を背負っているのに、小さなリュックで頑張ってるね!」彼女は通り過ぎながら言います。<br><br>「簡単そうにやるね。」あなたはため息をつきます。「何か月もこの旅を計画したんだけど、ついてから、全然楽しい気分になれない...」<br><br>「諦めないで。」アルパカは鼻を鳴らします。「何年前も覚えたこと、教えてあげる!」彼女は足をけり、突然包み物があなたに向かって飛んできます!どうやって手伝っているの?!",
|
||||
"questAlpacaCompletion": "ありがたいことに、アルパカが投げた荷物はどれも重たくなかったですが、あなたの手はいっぱいです。「なんで投げてきたの?」あなたはいらいらして聞きます。<br><br>「友達と一緒に旅するなら、一人で荷物を全部背負うわけにはいかない!友達だってきっと、あなたが苦しむより負担を分配した方がうれしいよ。とにかく、その荷物を返してちょうだい。この経験豊富の駄獣の言葉、伝わったね。」彼女はウィンクして言います。「でも、その青いかばんは頑張った賞品にもらっていいよ。また頂上で!」",
|
||||
"questAlpacaCompletion": "ありがたいことに、アルパカが投げた荷物はどれも重たくなかったですが、手はいっぱいです。「なんで投げてきたの?」あなたはいらいらしながら聞きます。<br><br>「友達と一緒に旅するなら、一人で荷物を全部背負うわけにはいかない!友達だってきっと、あなたが苦しむより負担を分配した方がうれしいよ。とにかく、その荷物を返してちょうだい。この経験豊富の駄獣の言葉、伝わったね。」彼女はウィンクして言います。「でも、その青いかばんは頑張った賞品にもらっていいよ。また頂上で!」",
|
||||
"questJadeNotes": "あなたは台所にできた食器の山を見つめています。部屋の隅っこの汚い服の山。机の周りに散らかっているコップやゴミ...<br><br>あなたはため息をつきます。「どれぐらい皿を洗っても、終わらない...」だんだんやる気がなくなってしまいます。やがてソファーに座り込んで、スマホでスクロールし始めてしまいます。気づかずに、何時間も過ぎてしまいます...<br><br>スマホから目を上げると、周りが全部緑です。ここはもう、リビングではありません。立ち上がると、ピカピカ光る緑の山の麓にいることがわかります。<br><br>すると、遠くで緑色の石からできたような体の人物が岩を押し上げていることに気づきます。結構進んでいましたが、足が少し滑っただけで、岩はコロコロ、あなたに向かって落ちてきます!<br><br>彼は翡翠の岩を追いかけて、あなたに叫びながら走ってきます。「皿洗いが無理だって?なら、どうぞ!」",
|
||||
"questCrabCompletion": "あなたとカニは協力して、ちょうどいいところに飾りをつけ、やがて立派な砂の巣穴が出来上がりました。カニは嬉しそうに潜り込みます。<br><br>「ありがとっ!」彼女はくつろぎながら言います。「私にぴったりな巣穴ができたよ。頑張って飾ったデコレーションがやっと楽しめる。どうぞ、この子たちをお礼に受け取って。断れないプレゼントだよ!」",
|
||||
"questRaccoonCompletion": "「本当に、きれいな石は二人で分け合えるぐらいたくさんあると思うよ。」あなたは最後のアイテムを取り出しながら言います。「どうぞ、集めた中から少し取って。十分あるから!」<br><br>「わぁ、優しいね。」アライグマは言います。「実は、君にもプレゼントがいくつかあるんだ!」",
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"rebirthNew": "転生:新しい冒険が始められます!",
|
||||
"rebirthUnlock": "「転生」の機能を解除しました! この特別なアイテムを市場で買うと、登録したタスク・実績・ペットなどは維持したままでレベル1から新しいゲームを始めることができます。もし全てを達成したと感じているなら、もしくは始めたばかりのキャラクターの新鮮な目で新機能を体験したいなら、この機能を使ってHabiticaでの新しい命に息を吹きこんでください!",
|
||||
"rebirthAchievement": "あなたは新しい冒険をはじめました! これはあなたの<%= number %>度目の「転生」で、あなたが達成した最高レベルは<%= level %>です。この実績を上積みするために、より高いレベルに達したときに、次の新しい冒険をはじめましょう!",
|
||||
"rebirthAchievement100": "あなたは新しい冒険をはじめました! これはあなたの<%= number %>度目の「転生」で、あなたが達成した最高レベルは100以上です。この実績を上積みするためには、100レベル以上に達したときに、次の新しい冒険をはじめましょう!",
|
||||
"rebirthBegan": "新しい冒険が始まりました",
|
||||
"rebirthAchievement": "あなたは転生のオーブを<strong><%= number %></strong>回使い、今まで達成した最高レベルは<strong><%= level %></strong>です。",
|
||||
"rebirthAchievement100": "あなたは転生のオーブを<strong><%= number %></strong>回使い、今まで達成した最高レベルは<strong>100</strong>以上です。",
|
||||
"rebirthBegan": "新しい冒険を始めました",
|
||||
"rebirthText": "<%= rebirths %>回、新しい冒険を始めました",
|
||||
"rebirthOrb": "レベル<%= level %>に到達した後で、「転生のオーブ」を使って再スタートしました。",
|
||||
"rebirthOrb100": "レベル100以上に到達したので「転生のオーブ」を使って再スタートしました。",
|
||||
@@ -11,5 +11,10 @@
|
||||
"rebirthPop": "実績、収集したアイテムやペット、装備などは保持したまま、あなたのキャラクターを今すぐにレベル1の戦士から再スタートさせます。タスクとその履歴は残りますが、黄色にリセットされます。開催中のチャレンジとグループプランに関するタスク以外は、連続実行回数がなくなります。ゴールド、経験値、マナ、スキルの効果はなくなります。これらすべてがすぐに実施されます。",
|
||||
"rebirthName": "転生のオーブ",
|
||||
"rebirthComplete": "復活しました!",
|
||||
"nextFreeRebirth": "転生のオーブが<strong>無料</strong>になるまで残り<strong><%= days %> 日</strong>"
|
||||
"nextFreeRebirth": "転生のオーブが<strong>無料</strong>になるまで残り<strong><%= days %> 日</strong>",
|
||||
"rebirthUnlockedOrb": "新しい冒険が始められます!",
|
||||
"rebirthUnlockedNewItem": "転生のオーブがアンロックされました",
|
||||
"rebirthNewAchievement": "新しい実績",
|
||||
"rebirthNewAdventure": "今から新しい冒険が始まります!",
|
||||
"rebirthAchievementPlural": "あなたは転生のオーブを<strong><%= number %></strong>回使い、今まで達成した最高レベルは<strong><%= level %></strong>です。"
|
||||
}
|
||||
|
||||
@@ -753,7 +753,7 @@
|
||||
"backgroundWinterLakeWithSwansText": "백조가 있는 겨울 호수",
|
||||
"backgroundWinterLakeWithSwansNotes": "백조가 있는 겨울 호수에서 자연을 즐기세요.",
|
||||
"backgrounds112022": "SET 102: 2022년 11월에 출시",
|
||||
"backgroundAmongGiantMushroomsNotes": "거대 버섯의 경이로움.",
|
||||
"backgroundAmongGiantMushroomsNotes": "거대한 버섯의 위용에 감탄합니다.",
|
||||
"backgroundAmongGiantMushroomsText": "거대 버섯들 사이로",
|
||||
"backgroundMistyAutumnForestText": "안개 낀 가을 숲",
|
||||
"backgroundMistyAutumnForestNotes": "안개 낀 가을 숲 속을 떠돌아보세요.",
|
||||
@@ -934,5 +934,12 @@
|
||||
"backgrounds032026": "세트",
|
||||
"backgroundWaterfallWithRainbowText": "폭포와 무지개",
|
||||
"backgroundWaterfallWithRainbowNotes": "아름다운 폭포와 무지개를 감상하세요.",
|
||||
"backgrounds042026": "세트"
|
||||
"backgrounds042026": "세트",
|
||||
"backgroundRidingACometText": "혜성에 탑승",
|
||||
"backgroundRidingACometNotes": "혜성을 타고 떠나는 우주 대모험!",
|
||||
"backgrounds052026": "세트 144: 2026년 5월 출시",
|
||||
"backgroundElvenCitadelText": "요정의 요새",
|
||||
"backgroundElvenCitadelNotes": "요정의 요새로 이어지는 아름다운 길을 따라 여행을 시작하세요.",
|
||||
"backgroundOnAStrangePlanetText": "낯선 행성에서",
|
||||
"backgroundOnAStrangePlanetNotes": "미지의 낯선 행성, 해비티카 최초의 탐험가가 되어보세요."
|
||||
}
|
||||
|
||||
@@ -102,6 +102,15 @@
|
||||
"whyReportingChallengePlaceholder": "보고의 이유",
|
||||
"messageChallengeFlagOfficial": "공식 도전 과제는 신고가 불가능합니다.",
|
||||
"messageChallengeFlagAlreadyReported": "이 도전을 이미 신고하셨습니다.",
|
||||
"flaggedAndHidden": "도전 플래그 세우고 숨기기",
|
||||
"brokenTask": "챌린지"
|
||||
"flaggedAndHidden": "신고된 챌린지이며 현재 숨김 처리되었습니다",
|
||||
"brokenTask": "챌린지",
|
||||
"flaggedNotHidden": "챌린지가 한 번 신고되었으나, 숨겨지지 않았습니다",
|
||||
"brokenTaskDescription": "이 작업은 챌린지의 일부였으나 현재는 삭제되었습니다. 어떻게 하시겠습니까?",
|
||||
"brokenChallengeDescription": "본 작업은 특정 챌린지의 일부였으나 현재 그 챌린지(또는 그룹)가 존재하지 않습니다. 남은 작업들은 어떻게 할까요?",
|
||||
"challengeCompletedDescription": "<%= user %>님이 우승하셨습니다! 남은 작업은 어떻게 할까요?",
|
||||
"cannotClose": "본 챌린지는 부적절한 콘텐츠 신고가 접수되어 종료가 불가능합니다. 운영진이 검토 후 곧 연락을 드릴 것입니다. 만약 48시간 내에 답변을 받지 못하셨다면 admin@habitica.com으로 메일 부탁드립니다.",
|
||||
"cannotClone": "하나 이상의 신고가 접수되어 이 챌린지를 복제할 수 없습니다. 운영진이 곧 연락을 드릴 예정입니다. 48시간이 경과해도 안내를 받지 못하신 경우, admin@habitica.com으로 지원을 요청해 주세요.",
|
||||
"abuseFlagModalBodyChallenge": "<%= firstLinkStart %>커뮤니티 가이드라인<%= linkEnd %> 및/또는 <%= secondLinkStart %>서비스 이용 약관<%= linkEnd %>을 위반하는 챌린지만 신고해야 합니다. 허위 신고를 제출하는 것은 Habitica의 커뮤니티 가이드라인을 위반하는 행위입니다.",
|
||||
"resetFlags": "플래그 재설정",
|
||||
"cannotMakeChallenge": "현재 계정에 채팅 권한이 없어 공개 챌린지를 생성할 수 없습니다. 자세한 내용은 admin@habitica.com으로 문의해 주세요."
|
||||
}
|
||||
|
||||
@@ -93,5 +93,19 @@
|
||||
"faqQuestion65": "모바일 앱에서 그룹 플랜이 지원되나요?",
|
||||
"webFaqAnswer65": "모바일 앱에서는 아직 모든 그룹 플랜 기능을 지원하지는 않지만 iOS 및 Android 앱에서 공유 작업을 완료할 수 있습니다!\n\nAndroid에서 작업을 볼 때 화면 상단의 표시 이름을 탭하여 공유 작업판으로 전환할 수 있습니다. 여기서 회원을 보고, 채팅에 액세스하고, 작업을 생성, 완료 또는 할당할 수 있습니다.\n\n환경설정을 켜서 공유 작업을 개인 작업판에 복사하여 한 곳에서 모든 작업을 완료할 수도 있습니다.\n\n모바일 앱에서 이 작업을 수행하려면:\n * 설정을 열고 \"공유 작업 복사\"를 켭니다\n\nHabitica 웹사이트에서 이 작업을 수행하려면:\n * 그룹 계획으로 이동하여 공유 작업판의 \"작업 복사\" 토글을 켜세요",
|
||||
"faqQuestion66": "그룹 플랜의 공유 작업과 챌린지 작업의 차이점은 무엇인가요?",
|
||||
"webFaqAnswer66": "그룹 플랜 공유 작업 보드는 챌린지보다 더 역동적이며 지속적으로 업데이트되고 상호 작용할 수 있습니다. 많은 사람에게 보내야 할 작업이 하나 있다면 챌린지는 큰 도움이 됩니다.\n\n그룹 플랜도 유료 기능이며, 챌린지는 누구나 무료로 이용할 수 있습니다.\n\n챌린지에서는 특정 작업을 할당할 수 없으며 챌린지에는 공유 하루 재설정이 없습니다. 일반적으로 챌린지는 제어력과 직접적인 상호 작용이 적습니다."
|
||||
"webFaqAnswer66": "그룹 플랜 공유 작업 보드는 챌린지보다 더 역동적이며 지속적으로 업데이트되고 상호 작용할 수 있습니다. 많은 사람에게 보내야 할 작업이 하나 있다면 챌린지는 큰 도움이 됩니다.\n\n그룹 플랜도 유료 기능이며, 챌린지는 누구나 무료로 이용할 수 있습니다.\n\n챌린지에서는 특정 작업을 할당할 수 없으며 챌린지에는 공유 하루 재설정이 없습니다. 일반적으로 챌린지는 제어력과 직접적인 상호 작용이 적습니다.",
|
||||
"faqQuestion69": "캐릭터 능력치가 무엇입니까?",
|
||||
"faqQuestion70": "스탯 포인트가 무엇인가요?",
|
||||
"webFaqAnswer70": "스탯 포인트를 사용하여 캐릭터의 핵심 능력치를 올릴 수 있습니다. 레벨업을 할 때마다(최대 100레벨까지) 스탯 포인트 1개를 획득하며, 이를 직접 배분하거나 '자동 배분' 기능을 통해 자동으로 설정할 수 있습니다. 스탯 배분 기능은 10레벨에 전직 시스템과 함께 활성화됩니다.",
|
||||
"faqQuestion71": "자동 할당 기능은 어떻게 운영되나요?",
|
||||
"webFaqAnswer71": "자동 할당 기능은 다음 분배 방식 중 하나에 따라 스탯 포인트를 자동으로 할당합니다:\n\n* 균등 할당 - 각 능력치에 동일한 포인트를 할당합니다.\n* 클래스별 할당 - 해당 클래스에 중요한 능력치에 더 많은 포인트를 할당합니다.\n* 작업 활동 기반 할당 - 완료한 작업과 관련된 힘, 지능, 체력, 통찰 카테고리에 따라 포인트를 할당합니다.\n\n자동 할당을 사용하지 않기로 선택한 경우, 스탯 섹션에서 직접 스탯 포인트를 할당할 수 있습니다.",
|
||||
"webFaqAnswer69": "모든 플레이어는 각기 다른 혜택을 제공하는 네 가지 캐릭터 스탯을 보유합니다:\n\n* 힘 - 과제 달성 시 치명타 확률과 데미지를 높여줍니다. 또한 퀘스트 보스에게 입히는 데미지도 증가시킵니다.\n* 지능 - 과제를 통해 얻는 경험치를 높여줍니다. 또한 마나 최대치와 마나 재생 속도를 증가시킵니다.\n* 지능 - 놓친 일일 과제나 부정적인 습관으로 인해 입는 데미지를 줄여줍니다. 퀘스트 보스로부터 받는 데미지는 줄여주지 않습니다.\n* 통찰 - 아이템 드롭 확률, 일일 아이템 드롭 제한, 과제 연속 달성 보너스, 그리고 과제 완료 시 획득하는 골드를 높여줍니다.\n\n스탯은 스탯 포인트 배분, 장비, 직업 기술, 그리고 레벨업을 통해 올릴 수 있습니다. 또한 100레벨까지 매 2레벨마다 모든 스탯에 보너스 포인트 1점을 획득합니다.",
|
||||
"sunsetFaqTitle": "Habitica 여관 및 길드 서비스 종료에 관한 자주 묻는 질문",
|
||||
"sunsetFaqPara3": "저희는 이용자분들의 접근성을 저해하지 않으면서, Habitica 플레이어들이 가장 많이 의존하는 부분에 자원을 더 집중하기 위해 이러한 결정을 내리게 되었습니다.",
|
||||
"sunsetFaqPara4": "우리가 함께한 시간들을 기념하며, 새로운 시대로 나아가는 의미로 모든 분들께 베테랑 펫을 선물해 드릴 예정입니다. 또한, Habitica 커뮤니티를 위해 애써주신 멋진 기여자분들께는 그간의 노고를 기리는 특별한 장비 세트도 함께 보내드릴 것입니다.",
|
||||
"sunsetFaqHeader1": "어떤 서비스들이 종료되나요?",
|
||||
"sunsetFaqPara1": "플레이어들이 Habitica와 상호작용하는 방식의 변화와 새로운 콘텐츠 규정 등 여러 요인으로 인해, 저희는 <strong>2023년 8월 8일</strong>부로 여관 및 길드 서비스를 중단한다는 어려운 결정을 내리게 되었습니다.",
|
||||
"sunsetFaqPara2": "해비티카(Habitica)의 주된 목적은 예나 지금이나 게임화된 할 일 관리 경험을 제공하는 것입니다. 여관과 길드는 사용자들이 비슷한 목표를 가진 사람들을 찾을 수 있게 함으로써 동기를 부여하는 데 도움을 주었습니다. 그 과정에서 정말 멋진 공간들이 만들어졌고, 유익한 토론과 함께 커뮤니티가 번창하는 모습을 볼 수 있었습니다. 하지만 시간이 흐르면서 사용자들이 해비티카를 이용하고 의지하는 방식에 변화가 생겼음을 알게 되었습니다. 파티 기능은 활성화된 반면, 길드와 공용 공간을 이용하는 사용자 비중은 점점 줄어들었습니다. 끊임없이 변화하는 인터넷 환경 속에서, 이러한 공간들을 유지하는 데 필요한 자원이 실제 참여 인원수에 비해 너무 과도해졌습니다.",
|
||||
"sunsetFaqPara5": "변경 사항에 대해 더 자세히 알고 싶으시면 아래에서 상세 내용을 확인하실 수 있습니다.",
|
||||
"sunsetFaqPara6": "여관(Tavern)과 공개 및 비공개 길드 서비스가 종료됨에 따라, 해당 공간들은 <strong>2023년 8월 8일</strong>에 Habitica에서 삭제될 예정입니다."
|
||||
}
|
||||
|
||||
@@ -172,7 +172,7 @@
|
||||
"weaponSpecialFall2015RogueText": "박쥐 도끼",
|
||||
"weaponSpecialFall2015RogueNotes": "아무리 두려운 할일이라도 이 도끼의 날갯짓 앞에서는 움츠러들 것이다. 힘을 <%= str %>만큼 증가시킨다. 2015년 가을 한정판 장비.",
|
||||
"weaponSpecialFall2015WarriorText": "나무판자",
|
||||
"weaponSpecialFall2015WarriorNotes": "Great for elevating things in cornfields and/or smacking tasks. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.",
|
||||
"weaponSpecialFall2015WarriorNotes": "옥수수밭에서 물건을 들어 올리거나 작업을 세게 처리하는 데 아주 유용합니다. 힘(Strength)을 <%= str %>만큼 증가시킵니다. 2015년 가을 한정판 장비.",
|
||||
"weaponSpecialFall2015MageText": "마법에 걸린 실",
|
||||
"weaponSpecialFall2015MageNotes": "A powerful Stitch Witch can control this enchanted thread without even touching it! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015 Autumn Gear.",
|
||||
"weaponSpecialFall2015HealerText": "Swamp-Slime Potion",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"rebirthNew": "환생: 새로운 모험을 시작할 수 있습니다!",
|
||||
"rebirthUnlock": "환생 기능이 추가되었습니다! 마켓에서 살 수 있는 특별한 아이템으로 과제와 업적, 펫, 그밖에 여러가지를 그대로 유지하면서 레벨 1부터 다시 시작할 수 있습니다. Habitica에서 얻을 수 있는 모든 걸 달성했다고 생각한다면 환생을 통해 새로운 출발을 해보세요! 새로 업데이트된 기능을 처음부터 경험하고 싶은 경우에도 사용할 수 있습니다!",
|
||||
"rebirthAchievement": "당신의 새로운 모험이 시작됩니다! 이건 당신을 위한 <%= number %>번째 환생이고, 당신의 가장 높았던 레벨은 <%= level %>입니다. 이 업적을 쌓기 위해 이보다 더 높은 레벨에 도달했을 때, 당신의 새로운 그 다음 모험을 시작하십시오.",
|
||||
"rebirthAchievement": "환생의 구슬을 <strong><%= number %></strong>번 사용하셨으며, 달성한 최고 레벨은 <strong><%= level %></strong>입니다.",
|
||||
"rebirthAchievement100": "당신의 새로운 모험이 시작됩니다! 이건 당신을 위한 <%= number %>번째 환생이고, 당신의 가장 높았던 레벨은 100 또는 그 이상입니다. 이 업적을 쌓기 위해 최소 레벨 100에 도달하면 당신의 새로운 그 다음 모험을 시작하십시오!",
|
||||
"rebirthBegan": "새로운 모험을 시작하였습니다.",
|
||||
"rebirthText": "<%= rebirths %> 번의 새로운 모험을 시작하였습니다.",
|
||||
@@ -12,5 +12,11 @@
|
||||
"rebirthName": "환생의 구슬",
|
||||
"rebirthComplete": "다시 태어났습니다!",
|
||||
"nextFreeRebirth": "<strong>무료로</strong> 환생의 구슬을 사용할 수 있을 때까지 <strong><%= days %> 일</strong>이 남았습니다.",
|
||||
"rebirthUnlockedOrb": "새로운 모험을 할수있습니다!"
|
||||
"rebirthUnlockedOrb": "새로운 모험을 할수있습니다!",
|
||||
"rebirthUnlockedNewItem": "환생의 구슬 잠금 해제",
|
||||
"rebirthUnlockedDesc": "해비티카의 모든 목표를 달성했다고 생각하시나요? 환생의 구슬로 당신의 모험에 새로운 생명력을 불어넣어 보세요! 상점에서 구매 가능한 이 특별한 아이템은 과제와 업적, 펫을 유지하면서 레벨 1부터 새롭게 시작하게 해줍니다.",
|
||||
"rebirthNewAchievement": "새로운 업적",
|
||||
"rebirthNewAdventure": "새 모험이 지금 시작되었습니다!",
|
||||
"rebirthAchievementPlural": "환생의 구슬을 총 <strong><%= number %></strong>번 사용하셨으며, 최고 도달 레벨은 <strong><%= level %></strong>입니다.",
|
||||
"rebirthStackInfo": "환생의 구슬을 사용할 때마다 이 업적 수치가 누적됩니다."
|
||||
}
|
||||
|
||||
@@ -930,5 +930,16 @@
|
||||
"backgroundWinterDesertWithSaguarosNotes": "Wdychaj rześkie powietrze Zimowej Pustyni z Kaktusami.",
|
||||
"backgrounds122025": "ZESTAW 139: Opublikowany w grudniu 2025",
|
||||
"backgrounds012026": "ZESTAW 140: Opublikowany w styczniu 2025",
|
||||
"backgrounds022026": "ZESTAW 141: Opublikowany w lutym 2025"
|
||||
"backgrounds022026": "ZESTAW 141: Opublikowany w lutym 2025",
|
||||
"backgrounds032026": "SET 142: Opublikowany w marcu 2026",
|
||||
"backgroundWaterfallWithRainbowText": "Wodospad z Tęczą",
|
||||
"backgroundWaterfallWithRainbowNotes": "Podziwiaj zniewalającą piękność Wodospadu z Tęczą.",
|
||||
"backgrounds042026": "SET 143: Opublikowany w kwietniu 2026",
|
||||
"backgrounds052026": "SET 144: Opublikowany w maju 2026",
|
||||
"backgroundElvenCitadelText": "Elficka Cytadela",
|
||||
"backgroundElvenCitadelNotes": "Wyrusz w naukową podróż do Elfickiej Cytadeli.",
|
||||
"backgroundRidingACometText": "Przejażdżka na Komecie",
|
||||
"backgroundRidingACometNotes": "Podróżuj przez kosmos podczas Przejażdżki na Komecie!",
|
||||
"backgroundOnAStrangePlanetText": "Na Obcej Planecie",
|
||||
"backgroundOnAStrangePlanetNotes": "Wyprawa gdzie żaden Habiticanin nigdy nie był: Na Obcą Planetę."
|
||||
}
|
||||
|
||||
@@ -11,5 +11,8 @@
|
||||
"rebirthPop": "Natychmiastowo odtworzy twoją postać jako Wojownika na 1 poziomie, z równoczesnym zachowaniem osiągnięć, przedmiotów kolekcjonerskich i ekwipunku. Twoje zadania i ich historia będą zachowane, ale zostaną zresetowane do żółtego poziomu. Twoje serie zostaną usunięte z wyjątkiem zadań pochodzących z aktywnych wyzwań oraz planów grupowych. Twoje Złoto, Punkty Doświadczenia, Mana i Umiejętności zostaną usunięte. Wszystkie te efekty zajdą natychmiastowo.",
|
||||
"rebirthName": "Kula Odrodzenia",
|
||||
"rebirthComplete": "Odrodziłeś się!",
|
||||
"nextFreeRebirth": "<strong><%= days %> dni</strong> do <strong>DARMOWEJ</strong> Kuli Odrodzenia"
|
||||
"nextFreeRebirth": "<strong><%= days %> dni</strong> do <strong>DARMOWEJ</strong> Kuli Odrodzenia",
|
||||
"rebirthUnlockedOrb": "Nowa podróż jest dostępna!",
|
||||
"rebirthNewAchievement": "Nowe Osiągnięcie",
|
||||
"rebirthNewAdventure": "Nowa przygoda zaczyna się teraz!"
|
||||
}
|
||||
|
||||
@@ -492,13 +492,13 @@
|
||||
"armorSpecialSummerHealerText": "Cauda de Curandeiro dos Mares",
|
||||
"armorSpecialSummerHealerNotes": "Esta peça de vestuário de escamas brilhantes transforma seu portador num verdadeiro Curandeiro dos Mares! Aumenta Constituição em <%= con %>. Equipamento Edição Limitada de Verão 2014.",
|
||||
"armorSpecialFallRogueText": "Túnica Vermelho-Sangue",
|
||||
"armorSpecialFallRogueNotes": "Vigorosa. Aveludada. Vampírica. Aumenta Percepção em <%= per %>. Equipamento Edição Limitada de Outono 2014.",
|
||||
"armorSpecialFallRogueNotes": "Vigorosa. Aveludada. Vampírica. Aumenta a Percepção em <%= per %>. Equipamento de Edição Limitada do Outono de 2014.",
|
||||
"armorSpecialFallWarriorText": "Jaleco de Laboratório Científico",
|
||||
"armorSpecialFallWarriorNotes": "Protege você de respingos de poções misteriosas. Aumenta Constituição em <%= con %>. Equipamento Edição Limitada de Outono 2014.",
|
||||
"armorSpecialFallWarriorNotes": "Protege de salpicos inexplicavéis de poções. Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2014.",
|
||||
"armorSpecialFallMageText": "Túnica de Bruxo",
|
||||
"armorSpecialFallMageNotes": "Esta túnica possui diversos bolsos para carregar olhos de tritão e línguas de sapo extras. Aumenta Inteligência em <%= int %>. Equipamento Edição Limitada de Outono 2014.",
|
||||
"armorSpecialFallMageNotes": "Esta túnica possuí diversos bolsos para carregar vários olhos de tritão e línguas de sapo extras. Aumenta a Inteligência em <%= int %>. Equipamento de Edição Limitada do Outono de 2014.",
|
||||
"armorSpecialFallHealerText": "Vestimenta de Gaze",
|
||||
"armorSpecialFallHealerNotes": "Entre na batalha já pré-enfaixado! Aumenta Constituição em <%= con %>. Equipamento Edição Limitada de Outono 2014.",
|
||||
"armorSpecialFallHealerNotes": "Entre na batalha já pré-enfaixado! Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2014.",
|
||||
"armorSpecialWinter2015RogueText": "Armadura do Dragão de Gelo",
|
||||
"armorSpecialWinter2015RogueNotes": "Essa armadura é congelante, mas vai valer a pena quanto você descobrir as incalculáveis riquezas no centro do ninho dos dragões de gelo. Não que você esteja procurando tais riquezas, porque você é realmente, definitivamente, absolutamente um genuíno dragão de gelo, ok?! Pare de fazer perguntas! Aumenta Percepção em <%= per %>. Equipamento Edição Limitada de Inverno 2014-2015.",
|
||||
"armorSpecialWinter2015WarriorText": "Armadura de Gengibre",
|
||||
@@ -524,13 +524,13 @@
|
||||
"armorSpecialSummer2015HealerText": "Armadura de Marinheiro",
|
||||
"armorSpecialSummer2015HealerNotes": "Esta armadura deixa todo mundo sabendo que você é um honesto comerciante marinheiro que nunca sonharia em se comportar como um malandro. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Verão de 2015.",
|
||||
"armorSpecialFall2015RogueText": "Armadura de Morcego",
|
||||
"armorSpecialFall2015RogueNotes": "Voe para a batalha! Aumenta Percepção em <%= per %>. Equipamento de Outono Edição Limitada 2015.",
|
||||
"armorSpecialFall2015RogueNotes": "Voe para a batalha! Aumenta a Percepção em <%= per %>. Equipamento de Edição Limitada do Outono de 2015.",
|
||||
"armorSpecialFall2015WarriorText": "Armadura de Espantalho",
|
||||
"armorSpecialFall2015WarriorNotes": "Apesar ter sido enchida com palha, esta armadura é extremamente forte! Aumenta Constituição em <%= con %>. Equipamento de Outono Edição Limitada 2015.",
|
||||
"armorSpecialFall2015WarriorNotes": "Apesar ter sido enchida com palha, esta armadura é extremamente forte! Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2015",
|
||||
"armorSpecialFall2015MageText": "Túnica Costurada",
|
||||
"armorSpecialFall2015MageNotes": "Cada ponto de costura nesta armadura brilha com encanto. Aumenta Inteligência em <%= int %>. Equipamento de Outono Edição Limitada 2015.",
|
||||
"armorSpecialFall2015MageNotes": "Cada ponto de costura nesta armadura brilha com encanto. Aumenta a Inteligência em <%= int %>. Equipamento de Edição Limitada do Outono de 2015.",
|
||||
"armorSpecialFall2015HealerText": "Túnica de Criador de Poções",
|
||||
"armorSpecialFall2015HealerNotes": "O quê? Claro que essa era uma poção de constituição. Não, você definitivamente não está se transformando em um sapo! Não fique coaxando por aí. Aumenta Constituição em <%= con %>. Equipamento de Outono Edição Limitada 2015.",
|
||||
"armorSpecialFall2015HealerNotes": "O quê? Claro que era uma poção de constituição. Não, definitivamente não está se transformando num sapo! Não fique a coaxar por aí. Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2015.",
|
||||
"armorSpecialWinter2016RogueText": "Armadura de Cacau",
|
||||
"armorSpecialWinter2016RogueNotes": "Esta armadura de couro mantém você bonito e quentinho. Na verdade é feito de cacau? Você nunca vai saber. Aumenta a Percepção em <%= per %>. Equipamento de Inverno da Edição Limitada 2015-2016.",
|
||||
"armorSpecialWinter2016WarriorText": "Traje de Boneco de Neve",
|
||||
@@ -556,13 +556,13 @@
|
||||
"armorSpecialSummer2016HealerText": "Cauda de Cavalo-Marinho",
|
||||
"armorSpecialSummer2016HealerNotes": "Essa vestimenta espinhosa transforma seu usuário em um verdadeiro Curandeiro Cavalo-Marinho! Aumenta Constituição em <%= con %>. Edição Limitada Equipamento de Verão 2016.",
|
||||
"armorSpecialFall2016RogueText": "Armadura da Viúva Negra",
|
||||
"armorSpecialFall2016RogueNotes": "Os olhos dessa armadura estão constantemente piscando. Aumenta a Percepção de <%= per %>. Edição Limitada 2016 Equipamento de Outono.",
|
||||
"armorSpecialFall2016RogueNotes": "Os olhos dessa armadura estão constantemente piscando. Aumenta a Percepção de <%= per %>. Equipamento de Edição Limitada do Outono de 2016.",
|
||||
"armorSpecialFall2016WarriorText": "Armadura Lodosa",
|
||||
"armorSpecialFall2016WarriorNotes": "Misteriosamente húmida e coberta de musgo! Aumenta a Constituição de <%= con %>. Edição Limitada 2016 Equipamento de Outono.",
|
||||
"armorSpecialFall2016WarriorNotes": "Misteriosamente húmida e coberta de musgo! Aumenta a Constituição de <%= con %>. Equipamento de Edição Limitada do Outono de 2016.",
|
||||
"armorSpecialFall2016MageText": "Capa de Maldade",
|
||||
"armorSpecialFall2016MageNotes": "Quando a sua capa agita-se, você ouve o som de um riso cacarejador. Aumenta a Inteligência de <%= int %>. Edição Limitada 2016 Equipamento de Outono.",
|
||||
"armorSpecialFall2016MageNotes": "Quando a sua capa agita-se, ouve-se um som de um riso cacarejador. Aumenta a Inteligência de <%= int %>. Equipamento de Edição Limitada do Outono de 2016.",
|
||||
"armorSpecialFall2016HealerText": "Túnica de Górgona",
|
||||
"armorSpecialFall2016HealerNotes": "Essa túnica está realmente feita de pedra. Como podem ser confortável? Aumenta a Constituiçẫo de <%= con %>. Edição Limitada 2016 Equipamento de Outono.",
|
||||
"armorSpecialFall2016HealerNotes": "Esta túnica é realmente feita de pedra. Como é que pode ser confortável? Aumenta a Constituiçẫo de <%= con %>. Equipamento de Edição Limitada do Outono de 2016.",
|
||||
"armorSpecialWinter2017RogueText": "Armadura Gelada",
|
||||
"armorSpecialWinter2017RogueNotes": "Este fato furtivo reflete luz de forma a encandear tarefas inocentes conforme toma as suas recompensas de elas! Aumenta Perceção em <%= per %>. Equipamento de Edição Limitada de Inverno 2016-2017.",
|
||||
"armorSpecialWinter2017WarriorText": "Armadura de Hóquei no Gelo",
|
||||
@@ -588,13 +588,13 @@
|
||||
"armorSpecialSummer2017HealerText": "Cauda do Mar de Prata",
|
||||
"armorSpecialSummer2017HealerNotes": "Esta vestimenta feita de escamas prateadas transforma a pessoa que a utiliza num Curandeiro do Mar real! Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Verão de 2017.",
|
||||
"armorSpecialFall2017RogueText": "Túnicas de Canteiro de Abóboras",
|
||||
"armorSpecialFall2017RogueNotes": "Precisa se esconder? Agache-se entre as Lanternas de Halloween e estas túnicas irão lhe ocultar! Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada do Outono de 2017.",
|
||||
"armorSpecialFall2017RogueNotes": "Precisa de se esconder? Agache-se entre as Lanternas de Halloween e estas túnicas o irão ocultar! Aumenta a Percepção em <%= per %>. Equipamento de Edição Limitada do Outono de 2017.",
|
||||
"armorSpecialFall2017WarriorText": "Armadura Forte e Doce",
|
||||
"armorSpecialFall2017WarriorNotes": "Esta armadura irá protegê-lo como uma casca de doce delicioso. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2017.",
|
||||
"armorSpecialFall2017WarriorNotes": "Esta armadura irá protegê-lo como uma cobertura de doce deliciosa. Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2017.",
|
||||
"armorSpecialFall2017MageText": "Túnicas de Mascarada",
|
||||
"armorSpecialFall2017MageNotes": "Que conjunto de mascarada estaria completo sem túnicas arrebatadoras e dramáticas? Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada do Outono de 2017.",
|
||||
"armorSpecialFall2017MageNotes": "Que disfarce estaria completo sem túnicas arrebatadoras e dramáticas? Aumenta a 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.",
|
||||
"armorSpecialFall2017HealerNotes": "O seu coração é uma porta aberta. E os seus ombros são as telhas de telhado! Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2017.",
|
||||
"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",
|
||||
@@ -620,13 +620,13 @@
|
||||
"armorSpecialSummer2018HealerText": "Mantos do Monarca de Tritões",
|
||||
"armorSpecialSummer2018HealerNotes": "Estas vestimentas de azul cerúleo revelam que tem pés para andar em terra...bom. Nem de um monarca se pode esperar que seja perfeito. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Verão de 2018.",
|
||||
"armorSpecialFall2018RogueText": "Casaco de Traje de Alter Ego",
|
||||
"armorSpecialFall2018RogueNotes": "Estilo para o dia. Conforto e proteção para a noite. Aumenta Perceção em <%= per %>. Equipamento de Edição Limitada do Outono de 2018.",
|
||||
"armorSpecialFall2018RogueNotes": "Estilo para o dia. Conforto e proteção para a noite. Aumenta a Perceção em <%= per %>. Equipamento de Edição Limitada do Outono de 2018.",
|
||||
"armorSpecialFall2018WarriorText": "Couraça de Minotauro",
|
||||
"armorSpecialFall2018WarriorNotes": "Completo com cascos para se ter o som de uma cadência tranquilizante enquanto caminha no seu labirinto meditativo. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2018.",
|
||||
"armorSpecialFall2018WarriorNotes": "Completo com cascos para se ouvir um ritmo tranquilizante enquanto caminha no seu labirinto meditativo. Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2018.",
|
||||
"armorSpecialFall2018MageText": "Manto de Feiticeiro de Doces",
|
||||
"armorSpecialFall2018MageNotes": "O tecido deste manto tem doces mágicos cozidos nele! Contudo, não é recomendado que tente comê-los. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada do Outono de 2018.",
|
||||
"armorSpecialFall2018MageNotes": "O tecido destes mantos tem doces mágicos cozidos nele! Contudo, não é recomendado que tente comê-los. Aumenta a Inteligência em <%= int %>. Equipamento de Edição Limitada do Outono de 2018.",
|
||||
"armorSpecialFall2018HealerText": "Manto de Carnivoras",
|
||||
"armorSpecialFall2018HealerNotes": "É constituido de plantas mas isso não quer dizer que seja vegetariano. Maus hábitos mantéms a milhas deste manto por medo. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2018.",
|
||||
"armorSpecialFall2018HealerNotes": "É constituido de plantas, mas isso não quer dizer que seja vegetariano. Os maus hábitos mantém-se a milhas por medo a esta túnica. Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2018.",
|
||||
"armorSpecialWinter2019RogueText": "Armadura de Poinsétia",
|
||||
"armorSpecialWinter2019RogueNotes": "Com a verdura da época por toda a parte, ninguém irá notar mais um arbusto! Poderá mover-se por entre grupos e encontros da época com facilidade e furtividade. Aumenta Perceção em <%= per %>. Equipamento de Edição Limitada do Inverno de 2018-2019.",
|
||||
"armorSpecialWinter2019WarriorText": "Armadura Glacial",
|
||||
@@ -2231,5 +2231,13 @@
|
||||
"weaponArmoireCorsairsBladeNotes": "Quer a use para causar caos ou para proteger, pode ter certeza que esta lâmina afiada te segue para o mar. Apenas certifique-se de guardá-la em segurança quando não estiver em uso. Aumenta a Força em <%= str %>. Baú Encantado: Conjunto Corsário (Item 3 de 3).",
|
||||
"weaponArmoireBeekeepersSmokerNotes": "Use isso para acalmar as suas abelhas e assim poderá coletar um pouco de mel. As abelhas não se importarão. Com franqueza, todos nós poderíamos usar alguns minutos extras de sossego de vez em quando. Aumenta a Inteligência em <%= int %>. Baú Encantado: Conjunto de Apicultor (Item 3 de 4).",
|
||||
"weaponArmoireBlacksmithsHammerNotes": "Este martelo é para trabalhar o metal, mas também é perfeitamente adequado para brasas incandescentes e tarefas diárias árduas. Aumenta a Força em <%= str %>. Baú Encantado: Conjunto de Ferreiro (Item 3 de 3).",
|
||||
"weaponArmoirePrettyPinkParasolNotes": "Bonito e prático é a combinação perfeita. E para uma apresentação particularmente impressionante, experimente este guarda-sol! Aumenta todos os atributos em <%= attrs %> cada. Baú Encantado: Conjunto Rosa Delicado (Item 1 de 2)"
|
||||
"weaponArmoirePrettyPinkParasolNotes": "Bonito e prático é a combinação perfeita. E para uma apresentação particularmente impressionante, experimente este guarda-sol! Aumenta todos os atributos em <%= attrs %> cada. Baú Encantado: Conjunto Rosa Delicado (Item 1 de 2)",
|
||||
"armorSpecialSummer2019WarriorNotes": "Os Guerreiros são conhecidos pelas suas defesas robustas. As tartarugas são conhecidas pelas suas carapaças resistentes. É uma combinação perfeita! Simplesmente... Tente nunca cair para trás. Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Verão de 2019.",
|
||||
"armorSpecialFall2020WarriorNotes": "Estas vestes outrora protegeram de qualquer mal um poderoso guerreiro. Dizem que o espírito desse guerreiro permanece no tecido para proteger um sucessor digno. Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada do Outono de 2020.",
|
||||
"armorSpecialFall2019MageNotes": "O seu homónimo teve um destino terrível. Mas você não será tão facilmente enganado! Vista-se com este manto lendário e ninguém o superará. Aumenta a Inteligência em <%= int %>. Edição Limitada do Outono de 2019.",
|
||||
"armorSpecialSpring2020MageNotes": "Se não resiste à tentação de andar na lama após uma tempestade, esta armadura é para si! Transforme um impulso infantil numa demonstração de criatividade mística. Aumenta a Inteligência em <%= int %>. Equipamento de Edição Limitada da Primavera de 2020.",
|
||||
"armorSpecialSummer2020RogueNotes": "Um crocodilo é o Ladino perfeito, esperando o momento ideal para atacar. Aproveite as suas habilidades — e sua velocidade explosiva. Aumenta a Percepção em <%= por %>. Equipamento de Edição Limitada de Verão de 2020.",
|
||||
"armorSpecialFall2020MageNotes": "Estas vestes de mangas largas dão a impressão de pairar ou voar, simbolizando a perspectiva abrangente concedida pelo vasto conhecimento. Aumenta a Inteligência em <%= int %>. Equipamento de Edição Limitada do Outono de 2020.",
|
||||
"armorSpecialWinter2020RogueNotes": "Embora possa enfrentar tempestades certamente com a força interior, a sua determinação e dedicação, vestir-se adequadamente para o clima nunca é demais. Aumenta a Percepção em <%= por %>. Equipamento de Edição Limitada do Inverno de 2019-2020",
|
||||
"armorSpecialFall2019RogueNotes": "Este traje inclui luvas brancas e é ideal para momentos de introspecção no seu camarote acima do palco ou para entradas triunfais por escadarias imponentes. Aumenta a Percepção em <%= por %>. Edição Limitada do Outono de 2019."
|
||||
}
|
||||
|
||||
@@ -939,5 +939,7 @@
|
||||
"backgroundRidingACometNotes": "Viaje pelo espaço Montando um Cometa!",
|
||||
"backgrounds052026": "Conjunto 144: Lançado em Maio de 2026",
|
||||
"backgroundElvenCitadelText": "Cidadela Élfica",
|
||||
"backgroundElvenCitadelNotes": "Faça uma jornada cênica até uma Cidadela Élfica."
|
||||
"backgroundElvenCitadelNotes": "Faça uma jornada cênica até uma Cidadela Élfica.",
|
||||
"backgroundOnAStrangePlanetText": "Em um Planeta Estranho",
|
||||
"backgroundOnAStrangePlanetNotes": "Aventure-se onde nenhum Habiticano jamais esteve: em um Planeta Estranho."
|
||||
}
|
||||
|
||||
@@ -410,5 +410,6 @@
|
||||
"questEggAlpacaMountText": "Alpaca",
|
||||
"questEggAlpacaAdjective": "Um superlotado",
|
||||
"wackyPotionNotes": "Despeje isso em um ovo e ele chocará como um animal de estimação Maluco <%= potText %>.",
|
||||
"wackyPotionAddlNotes": "Não pode ser convertido a Montaria ou usado em Ovos de Mascotes de missão."
|
||||
"wackyPotionAddlNotes": "Não pode ser convertido a Montaria ou usado em Ovos de Mascotes de missão.",
|
||||
"hatchingPotionAlien": "Alienígena"
|
||||
}
|
||||
|
||||
@@ -187,5 +187,7 @@
|
||||
"acceptPrivacyTOS": "Você confirma que tem pelo menos 18 anos de idade e que leu e concorda com nossos <a href='/static/terms' target='_blank'>Termos de Serviço</a> e <a href='/static/privacy' target='_blank'>Política de Privacidade</a>",
|
||||
"marketing3Lead1Title": "Aplicativos Android e iOS",
|
||||
"marketing4Lead3Button": "Comece Hoje Mesmo",
|
||||
"missingClientHeader": "Cabeçalhos x-client ausentes."
|
||||
"missingClientHeader": "Cabeçalhos x-client ausentes.",
|
||||
"emailAddress": "Endereço de email",
|
||||
"emailRequiredForSupport": "Precisamos de um endereço de e-mail para suporte ao usuário. Por favor, insira um endereço de e-mail para continuar criando sua conta."
|
||||
}
|
||||
|
||||
@@ -3043,7 +3043,7 @@
|
||||
"weaponSpecialSpring2024MageText": "Cajado de Hibisco",
|
||||
"weaponSpecialSpring2024WarriorNotes": "Este cristal colorido ajudará a concentrar toda a sua energia em um ataque. Aumenta Força em <%= str %>. Equipamento de Edição Limitada da Primavera de 2024.",
|
||||
"weaponSpecialSpring2024HealerText": "Varinha de Pena do Pássaro Azul",
|
||||
"weaponSpecialSpring2024HealerNotes": "Um lampejo de felicidade emerge quando desejado para melhorar qualquer humor. Aumenta Inteligência em <%=int%>. Equipamento de edição limitada da primavera de 2024.",
|
||||
"weaponSpecialSpring2024HealerNotes": "Um lampejo de felicidade emerge quando desejado para melhorar qualquer humor. Aumenta Inteligência em <%= int %>. Equipamento de edição limitada da primavera de 2024.",
|
||||
"weaponSpecialSummer2024RogueText": "Tridente Nudibrânquio",
|
||||
"weaponSpecialSummer2024RogueNotes": "Vire as ferroadas dos outros contra eles! Aumenta a Força em <%= str %>. Equipamento de edição limitada para o verão de 2024.",
|
||||
"weaponSpecialSummer2024WarriorText": "Cortador de Dentes de Tubarão-Baleia",
|
||||
@@ -3427,7 +3427,7 @@
|
||||
"headMystery202412Text": "Capuz de Coelho Bengala Doce",
|
||||
"headMystery202512Notes": "Biscoitos de gengibre forjados com magia ancestral irão protegê-lo, contanto que você consiga resistir à tentação de dar uma mordida! Não confere nenhum benefício. Item exclusivo para assinantes, dezembro de 2025.",
|
||||
"headMystery202602Text": "Orelhas de Raposa Sakura",
|
||||
"headMystery202602Notes": " Sua audição será aguçada por essas orelhas, de modo que você poderá ouvir os botões de flores crescendo nos galhos das árvores à medida que a primavera se aproxima. Não confere nenhum benefício. Item para assinantes de fevereiro de 2026.",
|
||||
"headMystery202602Notes": "Sua audição será aguçada por essas orelhas, de modo que você poderá ouvir os botões de flores crescendo nos galhos das árvores à medida que a primavera se aproxima. Não confere nenhum benefício. Item para assinantes de fevereiro de 2026.",
|
||||
"headArmoireCorsairsBandanaNotes": "Seja para proteger a cabeça de uma gaivota que sobrevoe ou para garantir que seus inimigos nunca vejam você suar, esta bandana é essencial. Basta adicionar uma conta decorativa para cada aventura concluída. Aumenta a Inteligência em <%= int %>. Armário Encantado: Conjunto Corsário (Item 2 de 3)",
|
||||
"headArmoireBeekeepersHatNotes": "Proteja seu rosto enquanto cuida de seus amiguinhos zumbidores. Aumenta a Percepção em <%= per %>. Armário Encantado: Conjunto de Apicultor (Item 1 de 4)",
|
||||
"headArmoireRedNewsieHatNotes": "Extra! Extra! Saiba tudo sobre ele: este boné é confortável, estiloso e prático. Aumenta a Percepção e a Inteligência em <%= attrs %> cada. Armário Encantado: Conjunto de Colete Vermelho (Item 1 de 2)",
|
||||
@@ -3495,5 +3495,8 @@
|
||||
"backMystery202601Notes": "Esta marca concede ao usuário controle sobre os elementos da estação fria e da geada. Não confere nenhum benefício. Item para assinantes de janeiro de 2026.",
|
||||
"backMystery202602Text": "Cinco Caudas de Sakura",
|
||||
"eyewearArmoireRoseColoredGlassesNotes": "Estes óculos ajudarão você a enxergar melhor em qualquer situação, e estas armações estilosas também ajudarão você a ter a melhor aparência. Aumenta a Percepção em <%= per %>. Armário Encantado: Conjunto Otimista (Item 2 de 4).",
|
||||
"backArmoireHarpsichordNotes": "Pting! Ptiiing! Reúna seu grupo para um jantar ou piquenique e ouça uma melodia desafinada neste cravo. Aumenta a Percepção e a Inteligência em <%= attrs %> cada. Armário Encantado: Conjunto de Instrumentos Musicais 2 (Item 1 de 3)"
|
||||
"backArmoireHarpsichordNotes": "Pting! Ptiiing! Reúna seu grupo para um jantar ou piquenique e ouça uma melodia desafinada neste cravo. Aumenta a Percepção e a Inteligência em <%= attrs %> cada. Armário Encantado: Conjunto de Instrumentos Musicais 2 (Item 1 de 3)",
|
||||
"weaponSpecialSpring2026WarriorNotes": "Uma oportunidade de duelar pode surgir a qualquer momento e, com este formidável florete, você estará pronto! Aumenta a Força em <%= str %>. Equipamento de edição limitada da primavera de 2026.",
|
||||
"weaponSpecialSpring2026HealerText": "Cajado do floco de neve",
|
||||
"weaponSpecialSpring2026RogueNotes": "Uma oportunidade de crescer está quase chegando e, com esses ramos em flor, você estará pronto! Aumenta a Força em <%= str %>. Equipamento de edição limitada da primavera de 2026."
|
||||
}
|
||||
|
||||
@@ -243,5 +243,6 @@
|
||||
"rememberToBeKind": "Por favor, lembre-se de ser gentil, respeitoso e seguir as <a href='/static/community-guidelines' target='_blank'>Diretrizes da comunidade</a>.",
|
||||
"targetUserNotExist": "Usúario '<%= userName %>' não existe.",
|
||||
"gem": "Gema",
|
||||
"confirmPurchase": "Confirmar Compra"
|
||||
"confirmPurchase": "Confirmar Compra",
|
||||
"avoidSPI": "Evite informações pessoais sensíveis"
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"rebirthNew": "Renascimento: Nova Aventura Disponível!",
|
||||
"rebirthUnlock": "Você liberou o Renascimento! Esse item especial do Mercado te permite começar um novo jogo no nível 1 mantendo suas tarefas, conquistas, mascotes e mais. Use-o para dar nova vida ao Habitica se sentir que já conquistou tudo ou para experimentar novas funcionalidades com os olhos frescos de um personagem iniciante!",
|
||||
"rebirthAchievement": "Você iniciou uma nova aventura! Esse é o seu Renascimento número <%= number %>. O nível mais alto que você atingiu foi <%= level %>. Para acumular essa Conquista, comece sua próxima nova aventura quando atingir um Nível ainda maior!",
|
||||
"rebirthAchievement100": "Você iniciou uma nova aventura! Esse é seu <%= number %>º Renascimento e o nível mais alto que você atingiu foi 100 ou maior. Para acumular essa Conquista, comece sua próxima aventura quando atingir pelo menos nível 100!",
|
||||
"rebirthAchievement": "Você usou o Orbe do Renascimento <strong><%= number %></strong> vezes e o seu nível mais alto alcançado é <strong><%= level %></strong>.",
|
||||
"rebirthAchievement100": "Você usou o Orbe do Renascimento <strong><%= number %></strong> vezes e o seu nível mais alto alcançado é <strong>100</strong> ou superior.",
|
||||
"rebirthBegan": "Iniciou uma Nova Aventura",
|
||||
"rebirthText": "Iniciou <%= rebirths %> Novas Aventuras",
|
||||
"rebirthOrb": "Usou um Orbe do Renascimento para recomeçar depois de alcançar o Nível <%= level %>.",
|
||||
|
||||
@@ -274,5 +274,7 @@
|
||||
"subscriptionBillingFYI": "As assinaturas são renovadas automaticamente, a menos que você as cancele pelo menos 24 horas antes do término do período atual. Você pode gerenciar sua assinatura na aba \"Assinaturas\" nas configurações. Sua conta será cobrada em até 24 horas após a data de renovação, pelo mesmo preço pago inicialmente.",
|
||||
"subscriptionBillingFYIShort": "As assinaturas são renovadas automaticamente, a menos que você as cancele pelo menos 24 horas antes do término do período atual. Sua conta será cobrada em até 24 horas após a data de renovação, pelo mesmo preço pago inicialmente.",
|
||||
"mysterySet202601": "Conjunto Égide de Inverno",
|
||||
"mysterySet202602": "Conjunto Raposa de Sakura"
|
||||
"mysterySet202602": "Conjunto Raposa de Sakura",
|
||||
"mysterySet202604": "Conjunto Astronauta Audacioso",
|
||||
"mysterySet202605": "Conjunto Nimbos do Anoitecer"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"backgrounds": "Фоны",
|
||||
"backgrounds": "Окружения",
|
||||
"background": "Фоновая",
|
||||
"backgroundShop": "Магазин окружений",
|
||||
"noBackground": "Фон не выбран",
|
||||
@@ -912,7 +912,7 @@
|
||||
"backgroundSirensLairNotes": "Дерзните нырнуть в Логово сирены.",
|
||||
"backgrounds082025": "Набор 135: Выпущен в августе 2025",
|
||||
"backgroundSunnyStreetWithShopsText": "Солнечная улица с магазинами",
|
||||
"backgroundSunnyStreetWithShopsNotes": "Наслаждайтесь видами и шумом Солнечной улицы с магазинами",
|
||||
"backgroundSunnyStreetWithShopsNotes": "Наслаждайтесь видами и звуками Солнечной улицы с магазинами.",
|
||||
"backgroundAutumnSwampText": "Осеннее болото",
|
||||
"backgrounds092025": "Набор 136: Выпущен в сентябре 2025 года",
|
||||
"backgroundCastleKeepWithBannersNotes": "Пойте баллады о подвигах в замковом зале со знаменами.",
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
"allocatePerPop": "Добавить очко к восприятию",
|
||||
"allocateInt": "Очки, распределенные на интеллект:",
|
||||
"allocateIntPop": "Добавить очко к интеллекту",
|
||||
"noMoreAllocate": "Теперь, после достижения 100-го уровня, вы больше не будете получать очки характеристик. Вы можете продолжить повышать свой уровень или же начать новое приключение с первого уровня, воспользовавшись <a href='/shops/market'>Шаром возрождения</a>!",
|
||||
"noMoreAllocate": "Теперь, после достижения 100-го уровня, вы больше не будете получать очки характеристик. Вы можете продолжить повышать свой уровень или же начать новое приключение с первого уровня, воспользовавшись <a href='/shops/market'>Шаром возрождения</a>.",
|
||||
"stats": "Характеристики",
|
||||
"strength": "Сила",
|
||||
"strText": "Сила увеличивает шанс случайных «критических ударов» и количество получаемого золота, опыта и вещей за выполненные задачи. Она также помогает наносить больший урон монстрам-боссам.",
|
||||
@@ -115,11 +115,11 @@
|
||||
"autoAllocation": "Автоматическое распределение",
|
||||
"autoAllocationPop": "При получении нового уровня очки характеристик раcпределяются в соответствии с выбранными предпочтениями.",
|
||||
"evenAllocation": "Распределять очки характеристик равномерно",
|
||||
"evenAllocationPop": "Распределить очки поровну между всеми характеристиками.",
|
||||
"evenAllocationPop": "Распределить очки поровну между всеми характеристиками",
|
||||
"classAllocation": "Распределять очки на основе класса",
|
||||
"classAllocationPop": "Направлять больше очков на улучшение характеристик, важных для вашего класса.",
|
||||
"classAllocationPop": "Направлять больше очков на улучшение характеристик, важных для вашего класса",
|
||||
"taskAllocation": "Распределять очки на основе вида заданий",
|
||||
"taskAllocationPop": "Распределить очки на Силу, Интеллект, Телосложение и Восприятие в соответствии с выполняемыми задачами.",
|
||||
"taskAllocationPop": "Распределить очки на Силу, Интеллект, Телосложение и Восприятие в соответствии с выполняемыми задачами",
|
||||
"distributePoints": "Распределить свободные очки",
|
||||
"distributePointsPop": "Направляет все нераспределенные очки на улучшение характеристик в соответствии с выбранной схемой распределения.",
|
||||
"warriorText": "Воины чаще и лучше наносят «критические удары», которые случайным образом увеличивают награду за выполнение заданий: золото, опыт и шанс выпадения предметов. Кроме того, воины наносят значительный урон монстрам-боссам. Играйте за воина, если для вас существенным стимулом станет возможность сорвать джекпот, неожиданно получив больше наград, или осыпать сильнейшими ударами босса в квестах!",
|
||||
@@ -191,5 +191,14 @@
|
||||
"titleFacialHair": "Борода и усы",
|
||||
"titleHaircolor": "Цвет волос",
|
||||
"titleHairbase": "Прическа",
|
||||
"customizations": "Стили"
|
||||
"customizations": "Стили",
|
||||
"strTaskText": "Увеличивает шанс критического удара и урон при выполнении заданий. Также увеличивает урон, наносимый Квестовым боссам.",
|
||||
"conTaskText": "Снижает урон, получаемый от пропущенных Ежедневных дел и вредных Привычек. Не снижает урон от Квестовых боссов.",
|
||||
"perTaskText": "Увеличивает вероятность выпадения предметов, максимальный дневной лимит выпадения предметов, бонусы за выполнение заданий и количество золота, заработанного за выполнение заданий.",
|
||||
"autoAllocate": "Автоматическое распределение",
|
||||
"pointsAvailable": "Доступные очки",
|
||||
"allocationMethod": "Метод распределения",
|
||||
"statAllocationInfo": "На каждом уровне вы получаете одно очко, которое можете распределить на выбранную вами Характеристику. Вы можете сделать это вручную или позволить игре выбрать один из вариантов автоматического распределения.",
|
||||
"assignedStat": "Назначенная Характеристика",
|
||||
"intTaskText": "Увеличивает опыт, получаемый за выполнение заданий. Также увеличивает максимальный запас маны и скорость её восстановления."
|
||||
}
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
"faqQuestion29": "Как мне восстановить HP?",
|
||||
"webFaqAnswer29": "Вы можете восстановить 15 HP, купив элексир здоровья в колонке Наград за 25 Золота. К тому же, вы всегда восстановите полный запас HP при повышении уровня!",
|
||||
"faqQuestion30": "Что произойдет, если у меня закончится HP?",
|
||||
"webFaqAnswer30": "Если ваше здоровье упадёт до нуля, вы потеряете один уровень, очко характеристик за него, всё золото и один предмет снаряжения, который можно будет выкупить. Но вы сможете всё вернуть, продолжая выполнять задачи и вновь повышая уровень!",
|
||||
"webFaqAnswer30": "Если ваше здоровье упадёт до нуля, вы потеряете один уровень, очко характеристик за него, всё золото и один предмет снаряжения, который можно будет выкупить. Но вы сможете всё вернуть, продолжая выполнять задачи и вновь повысив уровень.",
|
||||
"faqQuestion31": "Почему я потерял HP при взаимодействии с неотрицательным Заданием?",
|
||||
"faqQuestion34": "Какую Еду любит мой Питомец?",
|
||||
"webFaqAnswer46": "Если вы считаете, что столкнулись с ошибкой, сообщите нам об этом!\n\nЧтобы сообщить об ошибке в мобильных приложениях:\n * В меню выберите «Поддержка», затем нажмите «Получить помощь» и прокрутите вниз до «Сообщить об ошибке»\n\nЧтобы сообщить об ошибке на сайте:\n * В меню «Справка» выберите «Сообщить об ошибке»",
|
||||
@@ -187,5 +187,7 @@
|
||||
"subscriptionDetail100": "Новые подписки на 1, 3 и 6 месяцев теперь будут начинаться с 24 Самоцветов в месяц, и это количество будет увеличиваться каждый месяц, пока активны преимущества подписки.",
|
||||
"subscriptionPara1": "Чтобы облегчить переход на новое расписание, существующие подписчики могут рассчитывать на дополнительные подарки в день выхода обновления. Мы искренне благодарим вас за постоянную поддержку в период этих изменений!",
|
||||
"faqQuestion68": "Как мне не терять здоровье?",
|
||||
"faqQuestion69": "Что такое характеристики персонажа?"
|
||||
"faqQuestion69": "Что такое характеристики персонажа?",
|
||||
"webFaqAnswer68": "Если вы часто теряете очки Здоровья, попробуйте следующие советы:\n\n- Приостановите Ежедневные дела. Кнопка \"Отдохнуть\" в Настройках предотвратит потерю очков Здоровья за пропущенные Ежедневные дела.\n- Настройте расписание Ежедневных дел. Сделав так, чтобы они выполнялись каждые 0 дней, вы сможете так же выполнять их за награды, не рискуя потерять Здоровье.\n- Попробуйте использовать классовые навыки:\n\t- Разбойники могут использовать навык «Уйти в тень», чтобы предотвратить урон от пропущенных Ежедневных дел\n\t- Воины могут использовать навык «Мощный удар», чтобы снизить покраснение Ежедневного дела, уменшив, тем самым, получаемый урон в случае его пропуска\n\t- Целители могут использовать навык «Ослепляющая вспышка», чтобы снизить покраснение Ежедневного дела, уменьшив, тем самым, получаемый урон в случае его пропуска",
|
||||
"faqQuestion70": "Что такое Очки Характеристик?"
|
||||
}
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
"passwordReset": "Если у нас есть ваш адрес электронной почты или имя пользователя, то новый пароль был отправлен на вашу почту.",
|
||||
"invalidLoginCredentialsLong": "Ваша электронная почта, имя пользователя или пароль неверны. Пожалуйста, попробуйте ещё раз или нажмите кнопку \"Забыли пароль\".",
|
||||
"invalidCredentials": "Аккаунта с такими учетными данными не существует.",
|
||||
"accountSuspended": "Ваш аккаунт @<%= username %> был заблокирован. Для получения дополнительной информации или обжалования решения отправьте письмо на адрес электронной почты admin@habitica.com с указанием имени пользователя или ID пользователя.",
|
||||
"accountSuspended": "Ваш аккаунт @<%= username %> был заблокирован. Для получения дополнительной информации или обжалования решения отправьте письмо на адрес электронной почты admin@habitica.com с указанием имени пользователя или ID пользователя.",
|
||||
"accountSuspendedTitle": "Аккаунт был заблокирован",
|
||||
"unsupportedNetwork": "Эта сеть на текущий момент не поддерживается.",
|
||||
"cantDetachSocial": "У аккаунта нет другого метода аутентификации; этот метод сейчас удалить невозможно.",
|
||||
|
||||
@@ -3044,5 +3044,17 @@
|
||||
"weaponSpecialWinter2026HealerText": "Полярный Посох",
|
||||
"weaponSpecialWinter2026HealerNotes": "Посох помогает в опоре, устойчивости и направлении — всё это помогает по-настоящему покорить список задач. Повышает интеллект на <%= int %>. Эксклюзивное снаряжение зимы 2025–2026.",
|
||||
"weaponSpecialWinter2026MageText": "Посох-канделябр",
|
||||
"weaponSpecialWinter2026MageNotes": "Канделябр помогает, удерживая сразу несколько свечей — последуйте его примеру, когда вам понадобится выполнять несколько дел одновременно. Повышает интеллект на <%= int %> и восприятие на <%= per %>. Эксклюзивное снаряжение зимы 2025–2026."
|
||||
"weaponSpecialWinter2026MageNotes": "Канделябр помогает, удерживая сразу несколько свечей — последуйте его примеру, когда вам понадобится выполнять несколько дел одновременно. Повышает интеллект на <%= int %> и восприятие на <%= per %>. Эксклюзивное снаряжение зимы 2025–2026.",
|
||||
"weaponSpecialSpring2026MageNotes": "Прекрасная возможность отметить приближающиеся праздники, а с этой красивой ручкой от зонта вы будете к этому готовы! Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Снаряжение Ограниченного выпуска [Весна 2026].",
|
||||
"weaponMystery202408Text": "Тайная Эгида",
|
||||
"weaponMystery202408Notes": "Волшебный пузырьковый щит, что защищает от вражеских заклинаний или позволяет дрейфовать по воздуху или воде. Бонусов не дает. Подарок подписчикам, август 2024.",
|
||||
"weaponMystery202508Text": "Блестящий Багровый Клинок",
|
||||
"weaponMystery202511Text": "Морозный Меч",
|
||||
"weaponMystery202508Notes": "Этот вращающийся клинок вселит ужас в любого монстра или красное Ежедневное дело, которые встанут у вас на пути! Бонусов не дает. Подарок подписчикам, август 2025.",
|
||||
"weaponMystery202511Notes": "Ледяное сияние этого меча быстро справится даже с темно-красными задачами. Бонусов не дает. Подарок подписчикам, ноябрь 2025.",
|
||||
"armorMystery202512Text": "Броня Чемпиона Печенек",
|
||||
"shieldSpecialWinter2024WarriorNotes": "Ты черствая печенька, что никогда не раскрошится! Увеличивает телосложение на <%= con %>. Ограниченный выпуск зимы 2023-2024.",
|
||||
"weaponMystery202512Text": "Клинок Чемпиона Печенек",
|
||||
"weaponMystery202512Notes": "Сверкающий меч, отлитый из сахара, мяты и тайных заклинаний. Бонусов не дает. Подарок подписчикам декабря 2025.",
|
||||
"headMystery202512Text": "Шлем Чемпиона Печенек"
|
||||
}
|
||||
|
||||
@@ -122,9 +122,9 @@
|
||||
"gemBenefit4": "Сбросьте распределение очков аватара и поменяйте класс.",
|
||||
"subscriptionBenefit1": "За золото на рынке можно купить до 50 самоцветов, чтобы приобрести квесты, элементы персонализации, питомцев и многое другое!",
|
||||
"subscriptionBenefit3": "Находите вдвое больше яиц, инкубационных эликсиров и корма каждый день, чтобы ваша коллекция питомцев росла!",
|
||||
"subscriptionBenefit4": "Получайте новейшее эксклюзивное снаряжение! Подпишитесь сейчас, чтобы получить <%= currentMysterySetName %> за <%= month %>.",
|
||||
"subscriptionBenefit4": "Получайте новейшее эксклюзивное снаряжение. Подпишитесь сейчас, чтобы получить <%= currentMysterySetName %> за <%= month %>!",
|
||||
"subscriptionBenefit5": "Получите эксклюзивного королевского пурпурного Джекалопа при оформлении подписки!",
|
||||
"subscriptionBenefit6": "Не упускайте предметы в магазине путешественников во времени! Получайте одни мистические песочные часы в месяц, чтобы всегда успеть забрать нужное.",
|
||||
"subscriptionBenefit6": "Не упускайте предметы в магазине путешественников во времени! Получайте одни мистические песочные часы в месяц, чтобы всегда успеть забрать нужное!",
|
||||
"purchaseAll": "Приобрести набор",
|
||||
"gemsRemaining": "Самоцветов осталось",
|
||||
"notEnoughGemsToBuy": "Достигнут лимит приобретенных самоцветов в этом месяце. Ограничение обновляется в течение первых 3 дней каждого месяца.",
|
||||
@@ -173,7 +173,7 @@
|
||||
"youAreSubscribed": "Вы являетесь подписчиком Habitica",
|
||||
"doubleDropCap": "Удвойте предел выпадения трофеев",
|
||||
"monthlyMysteryItems": "Ежемесячные наборы снаряжения",
|
||||
"subscribersReceiveBenefits": "Сохраняйте мотивацию, получая еще больше наград при оформлении подписки.",
|
||||
"subscribersReceiveBenefits": "Сохраняйте мотивацию, получая еще больше наград при оформлении подписки",
|
||||
"mysterySet202010": "Безумно-привлекательный набор Летучей мыши",
|
||||
"mysterySet202009": "Набор Дивного шелкопряда",
|
||||
"mysterySet202008": "Набор Совиного прорицателя",
|
||||
@@ -274,5 +274,8 @@
|
||||
"mysterySet202512": "Набор чемпиона по печенью",
|
||||
"mysterySet202601": "Набор зимней эгиды",
|
||||
"mysterySet202602": "Набор лисы-сакуры",
|
||||
"subscriptionBillingFYI": "Подписка автоматически продлевается, если вы не отмените её как минимум за 24 часа до окончания текущего периода. Вы можете управлять своей подпиской на вкладке «Подписка» в настройках. Списание средств с вашего счета произойдет в течение 24 часов после даты продления подписки по той же цене, которую вы заплатили изначально."
|
||||
"subscriptionBillingFYI": "Подписка автоматически продлевается, если вы не отмените её как минимум за 24 часа до окончания текущего периода. Вы можете управлять своей подпиской на вкладке «Подписка» в настройках. Списание средств с вашего счета произойдет в течение 24 часов после даты продления подписки по той же цене, которую вы заплатили изначально.",
|
||||
"mysterySet202604": "Набор Отважного Астронавта",
|
||||
"mysterySet202605": "Набор Сумрачной Тучи",
|
||||
"mysterySet202603": "Набор Глицинового Волшебника"
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"achievementPrimedForPaintingModalText": "Du har samlat alla Vita Husdjur!",
|
||||
"achievementPrimedForPaintingText": "Har samlat alla Vita Husdjur.",
|
||||
"achievementPrimedForPainting": "Målarduken är förberedd",
|
||||
"gettingStartedDesc": "Börja med att slutföra dessa uppgifter och få <strong>5 Prestationer</strong> och <strong class=\"gold-amount\">100 Guld</strong> när du är klar!",
|
||||
"gettingStartedDesc": "Börja med att slutföra dessa uppgifter och få <strong>5 Prestationer</strong> och <strong class=\"gold-amount\">100 Guld</strong> när du är klar!",
|
||||
"achievementPurchasedEquipmentModalText": "Utrustning är ett sätt att anpassa din avatar och förbättra dina Egenskaper",
|
||||
"achievementPurchasedEquipmentText": "Köpte sin första utrustningsdel.",
|
||||
"achievementPurchasedEquipment": "Köp en utrustningsdel",
|
||||
|
||||
@@ -939,5 +939,7 @@
|
||||
"backgroundRidingACometNotes": "Bir kuyruklu yıldızla uzay boyu gez!",
|
||||
"backgrounds052026": "SET 144: Mayıs 2026'da yayınlandı",
|
||||
"backgroundElvenCitadelText": "Elf Kalesi",
|
||||
"backgroundElvenCitadelNotes": "Elflerin kalesine doğru manzaralı bir yolculuğa çık."
|
||||
"backgroundElvenCitadelNotes": "Elflerin kalesine doğru manzaralı bir yolculuğa çık.",
|
||||
"backgroundOnAStrangePlanetText": "Garip Bir Gezegende",
|
||||
"backgroundOnAStrangePlanetNotes": "Daha önce hiçbir Habiticalının gitmediği bir yere doğru maceraya atıl: Garip Bir Gezegende."
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"dropEggTigerCubMountText": "Kaplan",
|
||||
"dropEggTigerCubAdjective": "vahşi bir",
|
||||
"dropEggPandaCubText": "Yavru Panda",
|
||||
"dropEggPandaCubMountText": "Panda",
|
||||
"dropEggPandaCubMountText": "Pandа",
|
||||
"dropEggPandaCubAdjective": "nazik bir",
|
||||
"dropEggLionCubText": "Yavru Aslan",
|
||||
"dropEggLionCubMountText": "Aslan",
|
||||
@@ -125,8 +125,8 @@
|
||||
"questEggTurtleText": "Deniz Kaplumbağası",
|
||||
"questEggTurtleMountText": "Dev Deniz Kaplumbağası",
|
||||
"questEggTurtleAdjective": "huzurlu bir",
|
||||
"questEggArmadilloText": "Armadillo",
|
||||
"questEggArmadilloMountText": "Armadillo",
|
||||
"questEggArmadilloText": "Armаdillo",
|
||||
"questEggArmadilloMountText": "Armаdillo",
|
||||
"questEggArmadilloAdjective": "zırhlı bir",
|
||||
"questEggCowText": "İnek",
|
||||
"questEggCowMountText": "İnek",
|
||||
@@ -410,5 +410,6 @@
|
||||
"questEggPlatypusText": "Ornitorenk",
|
||||
"questEggPlatypusMountText": "Ornitorenk",
|
||||
"questEggPlatypusAdjective": "bir mükemmeliyetçi",
|
||||
"hatchingPotionOpal": "Opal"
|
||||
"hatchingPotionOpal": "Opаl",
|
||||
"hatchingPotionAlien": "Uzaylı"
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
"webFaqAnswer29": "Ви можете відновити 15 ОЗ, придбавши Зілля Здоров'я у колонці \"Нагороди\" за 25 Золота. Крім того, ви завжди будете повністю відновлювати здоров'я, коли підвищуватимете рівень!",
|
||||
"webFaqAnswer28": "Так! Кнопку \"Призупинити пошкодження\" можна знайти в Налаштуваннях. Вона запобігатиме втраті ОЗ за пропущені Щоденки. Це корисно, якщо ви у відпустці, потребуєте відпочинку або з будь-якої іншої причини вам може знадобитися перерва. Якщо ви берете участь у квесті, ваш власний прогрес буде призупинено, але ви все одно отримуватимете шкоду від пропущених Щоденок ваших членів команди.\n\nЩоб поставити на паузу певну Щоденку, ви можете відредагувати розклад так, щоб він виконувався кожні 0 днів, доки ви не будете готові його перезапустити.",
|
||||
"faqQuestion30": "Що станеться, коли у мене закінчаться ОЗ?",
|
||||
"webFaqAnswer30": "Якщо ваш рівень здоров'я досягне нуля, ви втратите один рівень, все золото і одиницю спорядження, яку можна буде викупити.",
|
||||
"webFaqAnswer30": "Якщо ваші Очки Здоров’я (HP) впадуть до нуля, ви втратите один рівень, очко характеристик за цей рівень, усе золото та один предмет спорядження (який можна буде купити знову). Ви зможете відновитися, виконуючи завдання та знову підвищуючи свій рівень.",
|
||||
"faqQuestion31": "Чому я втрати(в/ла) ОЗ при взаємодії з позитивною задачею?",
|
||||
"faqQuestion32": "Як я можу вибрати клас?",
|
||||
"faqQuestion33": "Що за синя смуга, яка з’являється після рівня 10?",
|
||||
@@ -72,11 +72,11 @@
|
||||
"groupPlan": "Групові плани",
|
||||
"webFaqAnswer26": "Позитивні Звички (поведінка, яку ви хочете заохочувати; повинна мати кнопку \"плюс\")\n\n * Прийняти вітаміни\n * Почистити зуби зубною ниткою\n * Навчатися протягом однієї години\n\nНегативні Звички (поведінка, яку ви хочете обмежити або уникнути; має бути позначена кнопкою \"мінус\")\n\n * Куріння\n * Читання негативних новин (думскролінг)\n * Гризіння нігтів\n\nПодвійні Звички (звички, які включають в себе позитивний і негативний варіант; повинні мати кнопки \"плюс\" і \"мінус\")\n\n * Пити чисту воду чи пити солодкі газовані напої\n * Навчання / прокрастинація\n\nЗразки Щоденок (задачі, які ви хочете повторювати за регулярним графіком)\n * Миття посуду\n * Полив рослин\n * 30 хвилин фізичної активності\n\nЗразки Завдань (задач, які потрібно виконати лише один раз)\n\n * Запланувати зустріч\n * Організувати речі в шафі\n * Закінчити есе",
|
||||
"webFaqAnswer27": "Колір задачі - це візуальне представлення її цінності. Усі задачі починаються з жовтого - нейтрального, синій - кращий, червоний - гірший. Ось як кожен тип задачі визначає його цінність:\n\nЗвички стають більш синіми або червоними залежно від того, натиснули ви кнопку \"плюс\" чи \"мінус\". Позитивні та негативні Звички з часом стають жовтими, якщо ви їх не виконуєте. Подвійні Звички змінюють колір лише на основі ваших дій.\n\nЩоденки змінюють колір залежно від того, як часто ви їх виконуєте, стаючи синішими, якщо ви не забуваєте про них, або червонішими, якщо ви їх пропускаєте.\n\nЗавдання поступово стають червонішими, чим довше вони залишаються незавершеними.\n\nЩо червоніший колір задачі, то більше золота та досвіду ви отримаєте за її виконання, тож не бійтесь братись за найскладніші завдання!",
|
||||
"webFaqAnswer34": "Тварини люблять їжу, яка відповідає їхньому кольору. Виняток становлять Базові Улюбленці, але всі Базові Улюбленці полюбляють один і той самий продукт. Нижче ви можете побачити конкретні види Їжі, які полюбляє кожен вихованець:\n\n * Базові Улюбленці люблять М'ясо\n * Білі Улюбленці люблять Молоко\n * Пустельні Улюбленці люблять Картоплю\n * Червоні Улюбленці люблять Полуницю\n * Тіньові Улюбленці люблять Шоколад\n * Кістяні Улюбленці люблять Рибу\n * Зомбі-Улюбленці люблять Зіпсоване м'ясо\n * Рожеві Улюбленці люблять Рожеву цукрову вату\n * Блакитні Улюбленці люблять Блакитну цукрову вату\n * Золоті Улюбленці люблять Мед",
|
||||
"webFaqAnswer34": "Вихованці люблять їжу, що збігається з ними за кольором. Звичайні вихованці є винятком, проте всі вони люблять один і той самий смаколик. Нижче ви можете побачити, яку саме їжу полюбляє кожен вид:\n\n * Звичайні вихованці полюбляють М'ясо\n * Білі вихованці полюбляють Молоко\n * Пустельні вихованці полюбляють Картоплю\n * Червоні вихованці полюбляють Полуницю\n * Тіньові вихованці полюбляють Шоколад\n * Скелети полюбляють Рибу\n * Зомбі полюбляють Протухле м'ясо\n * Рожеві зефірні улюбленці полюбляють Рожеву цукрову вату\n * Блакитні зефірні улюбленці полюбляють Блакитну цукрову вату\n * Золоті вихованці полюбляють Мед",
|
||||
"webFaqAnswer31": "Якщо ви виконали задачу і втратили HP, коли не повинні були, це означає, що виникла затримка, поки сервер синхронізує зміни, зроблені на інших платформах. Наприклад, якщо ви використовуєте Золото, Ману або втрачаєте ОЗ у мобільному додатку, а потім виконуєте завдання на веб-сайті, сервер просто підтверджує, що все синхронізовано.",
|
||||
"webFaqAnswer32": "Кожен новий гравець має клас Воїн на початку гри. Коли ви досягнете 10-го рівня, вам буде надано вибір між вибором нового класу або продовженням гри як Воїн.\n\nКожен клас має різне Спорядження та Навички. Якщо ви не хочете обирати клас, ви можете вибрати «Відмовитися». Якщо ви вирішите відмовитися, ви завжди зможете увімкнути систему класів у Налаштуваннях пізніше.\n\nДля того, щоб змінити обраний клас, якщо ваш рівень вищий за 10, ви можете використати Кулю Переродження. На 50 рівні Куля Переродження стає доступна на ринку за 6 Самоцвітів, а на 100 рівні — безкоштовно.\n\nКрім того, на будь-якому рівні ви можете змінити клас у Налаштуваннях за 3 Самоцвіти. Така зміна класу не обнулить ваш рівень, на відміну від Кулі Переродження. Ви зможете перерозподілити всі накопичені бали навичок.",
|
||||
"webFaqAnswer35": "Після того, як ви нагодуєте свого Улюбленця достатньо, щоб він став Скакуном, вам потрібно буде знову вилупити Улюбленця цього типу, щоб він з'явився у вашому Хліву.\n\nЩоб переглянути Скакунів у мобільних додатках:\n\n * У меню виберіть \"Улюбленці та Скакуни\" і перейдіть на вкладку \"Скакуни\"\n\nЩоб переглянути Скакунів на веб-сайті:\n\n * У меню \"Інвентар\" виберіть \"Хлів\" і прокрутіть вниз до розділу \"Скакуни\"",
|
||||
"webFaqAnswer36": "Існує безліч способів налаштувати вигляд вашого аватара в Habitica! Ви можете змінити форму тіла, зачіску, колір волосся, колір шкіри, додати окуляри або засоби пересування, вибравши в меню \"Змінити аватар\".\n\nЩоб налаштувати свій Аватар у мобільних додатках:\n * У меню виберіть \"Персоналізація\"\n\nЩоб налаштувати свій аватар на веб-сайті:\n * У меню користувача в навігаційній панелі виберіть \"Змінити аватар\"",
|
||||
"webFaqAnswer35": "Щойно ви нагодуєте свого Вихованця достатньо для того, щоб він виріс у Скакуна, вам потрібно буде знову виростити Вихованця цього типу, щоб він з'явився у вашому Хліву.\n\nЩоб переглянути Скакунів у мобільних додатках:\n\n * У меню виберіть \"Улюбленці та Скакуни\" і перейдіть на вкладку \"Скакуни\"\n\nЩоб переглянути Скакунів на веб-сайті:\n\n * У меню \"Інвентар\" виберіть \"Хлів\" і прокрутіть вниз до розділу \"Улюбленці та Скакуни\"",
|
||||
"webFaqAnswer36": "Існує безліч способів налаштувати вигляд вашого аватара в Habitica! Ви можете змінити форму тіла, зачіску, колір волосся, колір шкіри, додати окуляри або засоби пересування, вибравши в меню \"Налаштувати аватар\".\n\nЩоб налаштувати свій Аватар у мобільних додатках:\n * У меню виберіть \"Персоналізація\"\n\nЩоб налаштувати свій аватар на веб-сайті:\n * У меню користувача в навігаційній панелі виберіть \"Налаштувати аватар\"",
|
||||
"webFaqAnswer37": "Перевірте, чи увімкнена опція \"Костюм\". Якщо ваш Аватар одягнений у Костюм, замість ваших Обладунків буде показано Спорядження Костюма.\n\nЩоб увімкнути Костюм у мобільних додатках:\n * У меню виберіть \"Спорядження\" і знайдіть перемикач \"Одягнути наряд\".\n\nЩоб увімкнути Костюм на веб-сайті:\n * У своєму Інвентарі виберіть \"Спорядження\" і знайдіть перемикач \"Одягнути костюм\" на вкладці \"Костюм\" висувного віконця",
|
||||
"faqQuestion38": "Чому я не можу придбати певні товари?",
|
||||
"webFaqAnswer38": "Нові гравці Habitica можуть придбати лише базове Cпорядження класу Воїн. Гравці повинні купувати Cпорядження в послідовному порядку, щоб розблокувати Спорядження наступного рівня.\n\nБагато Спорядження є специфічними для певного класу, що означає, що гравець може купувати лише Спорядження, що належить до його поточного класу.",
|
||||
@@ -87,7 +87,7 @@
|
||||
"faqQuestion41": "Що таке Містичні Пісочні Годинники і як їх отримати?",
|
||||
"faqQuestion42": "Що я можу зробити, щоб підвищити відповідальність?",
|
||||
"faqQuestion43": "Як взяти участь у Квесті?",
|
||||
"webFaqAnswer41": "Містичний Пісочний Годинник - це ексклюзивна валюта підписників Habitica, яка використовується в Крамниці \"Машина часу\"! Пісочний Годинник доставляються за встановленим графіком відповідно до вашого плану підписки.\n\nГрафік доставки Пісочного Годинника:\n * Підписники на 1 місяць отримують 1 Годинник на початку місяця після 3-го платежу поспіль.\n * Підписники на 3 місяці отримують 1 Годинник одразу після оформлення підписки, а потім ще 1 Годинник на початку місяця після кожного поновлення підписки.\n * 6-місячні підписники отримують 2 Годинники одразу після підписки, а потім ще 2 на початку місяця після кожного поновлення підписки.\n * Підписники на 12 місяців отримують 4 Годинники одразу після підписки, а потім ще 4 на початку кожного наступного місяця після поновлення підписки.",
|
||||
"webFaqAnswer41": "Містичні пісочні годинники — це ексклюзивна валюта для підписників Habitica, яку можна витратити у «Крамниці мандрівників у часі». Підписники отримують один Містичний пісочний годинник на початку кожного місяця дії підписки, разом із низкою інших переваг. Обов’язково ознайомтеся з нашими варіантами підписки, якщо вас цікавлять особливі фони, улюбленці, квести та спорядження, що представлені у «Крамниці мандрівників у часі»!",
|
||||
"webFaqAnswer42": "Один із найкращих способів мотивувати себе та нести відповідальність за виконання поставлених завдань – вступити в Команду! Команда з іншими гравцями Habitica — це чудовий спосіб проходити Квести, щоб отримати Улюбленців та Спорядження, отримати посилення від Вмінь інших членів Команди та підвищити свою мотивацію.\n\nЩе один спосіб підвищити відповідальність – приєднатися до Випробування. Вони автоматично додають у ваші списки задачі, пов’язані з конкретною метою! Вони також додають елемент змагання з іншими гравцями Habitica, що може підвищити мотивацію, коли ви прагнете отримати Самоцвіти як нагороду за участь. Існують офіційні Випробування, створені командою Habitica, а також Випробування, створені іншими гравцями.",
|
||||
"faqQuestion44": "Як я можу видалити завдання Випробування?",
|
||||
"faqQuestion45": "Мій Аватар перетворився на сніговика, морську зірку, квітку чи привида. Як я можу перетворитися назад?",
|
||||
@@ -141,9 +141,29 @@
|
||||
"contentReleaseChanges": "Зміни випуску контенту",
|
||||
"contentFaqPara0": "Habitica пропонує стільки цікавого та чарівного контенту, й ми хочемо, щоб усі могли ним насолоджуватися! Зміни наближаються , щоб новим гравцям було простіше розпочати роботу зі своєю колекцією, а ветеранам – завершити свою!",
|
||||
"contentFaqTitle": "Habitica Зміни Випуску Контенту ЧаПи",
|
||||
"webFaqAnswer67": "Клас — особлива роль вашого персонажа. Кожен клас має набір бонусів та навичок, які стають доступні за збільшенням рівня. Навички можуть допомогти вам у роботі із вашими задачами, а також вашій команді під час проходження квестів.\n\nКлас також впливає на те, яке спорядження буде доступним до покупки на ринку та ярмарку чи з'являтиметься у винагородах.\n\nОберіть клас, що найкраще підійде вашому стилю гри:\n#### **Воїн**\n* Воїн завдає більше шкоди босам та має вищий шанс критичних ударів у роботі над завданнями, що принесе вам додаткові Досвід та Золото.\n* Основна харакатеристика — Сила. Чим більша сила, тим більше шкоди завдає воїн.\n* Друга за значенням характеристика — Витривалість, яка зменшує отримання шкоди персонажем.\n* Навички воїна підсилюють Витривалість та Силу членів команди.\n* Оберіть Воїна, якщо вам подобається битися із босами або також хочеться підвищити захист персонажа на випадок, якщо раптом не виконали задачу.\n#### **Цілитель**\n* Цілитель має високий захист та може зцілити як себе, так і членів своєї команди.\n* Основна харакатеристика — Витривалість, підвищує зцілення та зменшує отримання шкоди.\n* Друга за значенням характеристика — Інтелект, яка збільшує отримання Мани та Досвіду.\n* Навички цілителя зменшують почервоніння задач персонажа та підсилюють Витривалість членів команди.\n* Оберіть Цілителя, якщо ви часто пропускаєте задачі і бажаєте мати змогу зцілити себе чи команду. Також цілителі швидко підвищують рівень.\n#### **Маг**\n* Маг швидко підвищує рівень, отримує багато Мани і завдає високого рівня шкоди босам у Квестах.\n* Основна харакатеристика — Інтелект, яка збільшує отримання Мани та Досвіду.\n* Друга за значенням характеристика — Сприйняття. Чим більше сприйняття, тим більше Золота отримує персонаж і тим вищий шанс знайти предмет.\n* Навички мага заморожують серійність задач персонажа, а також відновлюють Ману і підсилюють Інтелект членів команди.\n* Оберіть Мага, якщо вас мотивує підвищення рівня і вам подобається завдавати багато шкоди босам у Квестах.\n#### **Розбійник**\n* Розбійник найчастіше знаходить предмети та отримує більше золота, коли завершує задачі, а також має вищий шанс критичних ударів, що принесе ще більше Досвіду та Золота.\n* Основна харакатеристика — Сприйняття. им більше сприйняття, тим більше Золота отримує персонаж і тим вищий шанс знайти предмет.\n* Друга за значенням характеристика — Сила. Чим більша сила, тим більше шкоди завдає розбійник.\n* Навички розбійника допомагають ухилитися від пропущених Щоденок, поцупити Золото та підсилити Сприйняття членів команди.\n* Оберіть Розбійника, якщо найбільше вас мотивують винагороди.",
|
||||
"webFaqAnswer67": "Класи — це різні ролі, які може обрати ваш персонаж. Кожен клас надає власний набір унікальних переваг та навичок, що відкриваються з підвищенням рівня. Ці навички допоможуть вам ефективніше працювати із завданнями або робити вагомий внесок у виконання Квестів вашою командою.\n\nВаш клас також визначає Спорядження, яке буде доступне для купівлі у Нагородах, на Ринку та в Сезонній крамниці.\n\nОсь стислий огляд кожного класу, що допоможе вам обрати той, який найкраще відповідає вашому стилю гри:\n#### **Воїн**\n* Воїни завдають великої шкоди босам і мають високий шанс критичного удару під час виконання завдань, що приносить додатковий Досвід та Золото.\n* Сила — їхня основна характеристика, що збільшує завдану шкоду.\n* Витривалість — їхня додаткова характеристика, що зменшує отриману шкоду.\n* Навички Воїнів посилюють Витривалість та Силу членів команди.\n* Обирайте роль Воїна, якщо ви любите битися з босами, але також хочете мати певний захист на випадок пропущених завдань.\n#### **Цілитель**\n* Цілителі мають високий рівень захисту та можуть лікувати як себе, так і своїх товаришів по Гурту.\n* Витривалість — їхня основна характеристика, що посилює лікування та зменшує отриману шкоду.\n* Інтелект — їхня додаткова характеристика, що збільшує запас Мани та отриманий Досвід.\n* Навички Цілителів роблять завдання «менш червоними» та посилюють Витривалість членів команди.\n* Обирайте роль Цілителя, якщо ви часто пропускаєте завдання і потребуєте можливості лікувати себе чи команду. Також Цілителі швидко підвищують свій рівень.\n#### **Маг**\n* Маги швидко отримують нові рівні, накопичують багато Мани та завдають шкоди босам у Квестах.\n* Інтелект — їхня основна характеристика, що збільшує запас Мани та отриманий Досвід.\n* Сприйняття — їхня додаткова характеристика, що збільшує кількість Золота та випадіння предметів.\n* Навички Магів дозволяють «заморожувати» серії завдань, відновлювати Ману членам Гурту та посилювати їхній Інтелект.\n* Обирайте роль Мага, якщо ваша головна мотивація — швидкий прогрес за рівнями та активна участь у битвах з босами.\n#### **Розбійник**\n* Розбійники отримують найбільше предметів та Золота за виконання завдань; вони також мають високий шанс критичного удару, що приносить ще більше Досвіду та Золотаа.\n* Сприйняття — їхня основна характеристика, що збільшує кількість Золота та шанси знайти предмети.\n* Сила — їхня додаткова характеристика, що підвищує завдану шкоду.\n* Навички Розбійників допомагають їм уникати шкоди за пропущені Щоденні завдання, «викрадати» Золото та посилювати Сприйняття членів Гурту.\n* Обирайте роль Розбійника, якщо вас найбільше мотивують ігрові нагороди.",
|
||||
"faqQuestion67": "Які класи доступні у грі Habitica?",
|
||||
"contentAnswer202": "<strong>Зимова Країна Див</strong>: з 21 грудня по 20 березня",
|
||||
"contentAnswer12": "Гравцям буде легше колекціонувати предмети, якщо існує більш передбачуваний розклад їх випуску.",
|
||||
"faqQuestion68": "Як запобігти втраті здоровʼя?"
|
||||
"faqQuestion68": "Як запобігти втраті здоровʼя?",
|
||||
"webFaqAnswer68": "Якщо ви помітили, що часто втрачаєте здоров’я (HP), спробуйте скористатися цими порадами:\n\n- Призупиніть свої Щоденні завдання. Кнопка «Призупинити шкоду» у Налаштуваннях захистить вас від втрати HP за пропущені Щоденні завдання.\n- Налаштуйте розклад своїх Щоденних завдань. Якщо встановити їх як такі, що «ніколи не активні», ви зможете виконувати їх і отримувати нагороди без ризику втратити здоров’я.\n- Спробуйте використовувати навички класів::\n\t- Розбійники можуть застосовувати «Стелс», щоб уникнути шкоди від пропущених Щоденних завдань\n\t- Воїни можуть застосовувати «Нищівний удар», щоб зменшити «почервоніння» завдання, тим самим знижуючи шкоду у разі його пропуску\n\t- Цілителі можуть застосовувати «Сліпуче сяйво», щоб зменшити «почервоніння» завдань, знижуючи шкоду у разі їхнього пропуску",
|
||||
"webFaqAnswer69": "Усі гравці мають чотири характеристики персонажа, кожна з яких надає певні переваги:\n\n* Сила — збільшує шанс критичного удару та шкоду під час виконання завдань. Також збільшує шкоду, яку ви завдаєте босам Квестів.\n* Інтелект — збільшує кількість Досвіду, отриманого за завдання. Також підвищує ваш ліміт Мани та швидкість її відновлення.\n* Витривалість — зменшує шкоду від пропущених Щоденних завдань та негативних Звичок. Не зменшує шкоду, яку завдають боси Квестів.\n* Сприйняття — підвищує шанс випадіння предметів, щоденний ліміт знахідок, бонуси за серію завдань та кількість Золота, отриманого за виконання справ.\n\nХарактеристики можна підвищити шляхом розподілу очок характеристик, за допомогою спорядження, навичок класу та підвищення рівня. Ви також отримуєте по одному бонусному очку до всіх характеристик кожні два рівні (до 100-го рівня включно).",
|
||||
"faqQuestion69": "Що таке характеристики персонажа?",
|
||||
"faqQuestion70": "Що таке очки характеристик?",
|
||||
"webFaqAnswer70": "Очки характеристик дозволяють вам підвищувати основні характеристики вашого персонажа. Ви отримуєте одне очко характеристик щоразу, коли підвищуєте свій рівень (до 100-го рівня включно). Ви можете розподіляти їх вручну або автоматично за допомогою функції «Автоматичний розподіл». Розподіл характеристик відкривається разом із системою Класів на 10-му рівні.",
|
||||
"contentAnswer03": "Фони, кольори волосся, зачіски, типи шкіри, звірині вушка, звірині хвости та сорочки тепер можна буде придбати в абсолютно новій <strong>Крамниці Персоналізації!</strong>",
|
||||
"webFaqAnswer71": "Функція автоматичного розподілу автоматично призначає очки характеристик відповідно до одного з таких методів:\n\n* Розподіляти рівномірно — призначає однакову кількість очок кожному атрибуту.\n* Розподіляти за класом — призначає більше очок тим атрибутам, які є важливими саме для вашого класу.\n* Розподіляти за активністю завдань — призначає очки на основі категорій (Сила, Інтелект, Витривалість та Сприйняття), які закріплені за завданнями, що ви виконуєте.\n\nЯкщо ви вирішите не використовувати автоматичний розподіл, ви зможете вручну призначати очки характеристик у розділі «Характеристики».",
|
||||
"contentAnswer11": "Коли нові гравці приєднуються до гри в періоди між Великими Святами, вони часто навіть не знають про ці події та втрачають нагоду розважитися. Ми хочемо бути впевнені, що всі нові гравці зможуть долучитися до наших сезонних святкувань, незалежно від того, коли саме вони вирішать розпочати свою подорож.",
|
||||
"faqQuestion71": "Як працює Автоматичний розподіл?",
|
||||
"contentQuestion2": "Як змінюються Великі Свята?",
|
||||
"contentAnswer00": "Магічні Інкубаційні еліксири, передодані Фони, минулі набори для підписників та квести для отримання Улюбленців змінюватимуться за чітким щомісячним розкладом.",
|
||||
"contentAnswer203": "<strong>Весняні розваги</strong>: з 21 березня по 20 червня",
|
||||
"contentAnswer21": "Усі товари Урочистості (класове спорядження, типи шкіри та кольори волосся, предмети перетворення, сезонні квести) випускатимуться на початку свята і будуть доступні протягом усього часу його дії.",
|
||||
"contentAnswer01": "<strong>Велике Свято продовжено</strong> щоб діяти протягом усього сезону разом із усім Спорядженням Класу, Налаштуваннями Аватарів та іншими перевагами.",
|
||||
"contentAnswer02": "Абсолютно нові <strong>Квести на Улюбленців, Квести на Магічні Інкубаційні еліксири та самі Магічні Інкубаційні еліксири</strong> будуть випускатися, щоб наповнити цей новий розклад!",
|
||||
"contentQuestion1": "Чому Habitica вносить ці зміни?",
|
||||
"contentAnswer201": "<strong>Осінній Фестиваль</strong>: з 21 вересня до 20 грудня",
|
||||
"contentAnswer20": "Щойно зміни в розкладі набудуть чинності, у грі щодня, протягом усього року, буде активно принаймні одне Велике Свято.",
|
||||
"contentAnswer200": "<strong>Літній сплеск</strong>: з 21 червня по 20 вересня",
|
||||
"contentAnswer10": "Habitica існує з 2013го (нічого собі!) і за цей час ми випустили тисячі речей, які гравці можуть колекціонувати. Але у них дуже легко заплутатись, особливо новим гравцям. Ми хочемо впевнитись, що показуємо усі доступні опції, і що неймовірні предмети випущені в минулому не будуть затьмарені новими."
|
||||
}
|
||||
|
||||
@@ -169,7 +169,7 @@
|
||||
"joinMany": "Приєднайтеся до понад <%= userCountInMillions %> мільйонів людей, які розважаються, досягаючи своїх цілей!",
|
||||
"joinToday": "Приєднайтеся до Habitica сьогодні",
|
||||
"signup": "Зареєструватися",
|
||||
"getStarted": "Розпочати!",
|
||||
"getStarted": "Розпочати",
|
||||
"mobileApps": "Мобільні додатки",
|
||||
"learnMore": "Дізнатись більше",
|
||||
"minPasswordLength": "Пароль повинен містити не менше 8 символів.",
|
||||
|
||||
@@ -172,7 +172,7 @@
|
||||
"weaponSpecialFall2015RogueText": "Кажаняча сокира",
|
||||
"weaponSpecialFall2015RogueNotes": "Боягузливі Завдання тремтять від одного вигляду цієї сокири! Збільшує силу на <%= str %>. Обмежене видання осені 2015 року.",
|
||||
"weaponSpecialFall2015WarriorText": "Дерев'яна дошка",
|
||||
"weaponSpecialFall2015WarriorNotes": "Чудово підходить для підйому речей на кукурудзяних полях та/або для виконання завдань, пов’язаних із шмаганням. Збільшує силу на <%= str %>. Обмежене видання осені 2015 року.",
|
||||
"weaponSpecialFall2015WarriorNotes": "Чудово підходить для підйому речей на кукурудзяних полях та/або для шмагання чого-небудь. Збільшує силу на <%= str %>. Обмежене видання осені 2015 року.",
|
||||
"weaponSpecialFall2015MageText": "Зачарована нитка",
|
||||
"weaponSpecialFall2015MageNotes": "Потужна чарівниця Стіч може керувати цією чарівною ниткою, навіть не торкаючись її! Збільшує інтелект на <%= int %> та спритність на <%= per %>. Обмежене видання осені 2015 року.",
|
||||
"weaponSpecialFall2015HealerText": "Болотно-слизове зілля",
|
||||
|
||||
@@ -243,5 +243,7 @@
|
||||
"targetUserNotExist": "Вибраний користувач: '<%= userName %>' не існує.",
|
||||
"rememberToBeKind": "Не забувайте бути добрими, шанобливими та дотримуватися <a href='/static/community-guidelines' target='_blank'>Правил спільноти</a>.",
|
||||
"gem": "Самоцвіт",
|
||||
"confirmPurchase": "Підтвердити покупку"
|
||||
"confirmPurchase": "Підтвердити покупку",
|
||||
"avoidSPI": "Уникайте передачі конфіденційної інформації",
|
||||
"avoidSPIDetails": "Задля вашої приватності уникайте використання <%= firstLink %>конфіденційної особистої інформації<%= linkClose %> (SPI) в Habitica. Дані вашого акаунта, зокрема завдання, зберігаються на наших серверах, щоб ви могли мати до них доступ із будь-якого пристрою.<br><br>Щоб дізнатися більше, ознайомтеся з нашою <%= secondLink %>Політикою конфіденційності<%= linkClose %>."
|
||||
}
|
||||
|
||||
@@ -425,7 +425,7 @@
|
||||
"groupPlanBillingFYI": "Підписка на груповий план автоматично поновлюється, якщо ви не скасуєте її принаймні за 24 години до закінчення поточного періоду. Скасувати підписку можна на вкладці «Рахунки спільноти» вашого Групового Плану. Оплата буде знята за 24 години до поновлення підписки, виходячи з кількості учасників вашого Групового Плану на той момент. Якщо ви додасте учасників між періодами оплати, у наступному білінговому циклі ви побачите додаткову пропорційну оплату за них.",
|
||||
"groupManager": "Використання для роботи",
|
||||
"groupParentChildren": "Використання в моєму домогосподарстві",
|
||||
"checkGroupPlanFAQ": "Ознайомтеся з <a href='/static/faq#what-is-group-plan'>ЧаПи про групові плани</a>, щоб дізнатися, як отримати максимальну користь від спільного виконання завдань.",
|
||||
"checkGroupPlanFAQ": "Ознайомтеся з <a href='/static/faq#what-is-group-plan'>ЧаПи про групові плани</a>, щоб дізнатися, як отримати максимальну користь від спільного виконання завдань.",
|
||||
"groupFriends": "Використання з друзями",
|
||||
"groupTeacher": "Використання в освіті",
|
||||
"groupPlanBillingFYIShort": "Підписка на Груповий План автоматично поновлюється, якщо ви не скасуєте її принаймні за 24 години до закінчення поточного періоду. Оплата буде знята за 24 години до поновлення підписки, виходячи з кількості учасників вашого Групового Плану на той момент. Якщо ви додасте учасників між періодами оплати, у наступному розрахунковому циклі ви побачите додаткову пропорційну оплату за них.",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user