Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d466e9bc5e | |||
| eb2660f606 | |||
| ab38ed4d2a | |||
| d8c1bfc80a | |||
| 106ea68e31 | |||
| e6eda1bdaa | |||
| bca081d7be | |||
| dcbb491bd2 | |||
| 9bc9ce917f | |||
| 7b7dc255df | |||
| 393b6f9e12 | |||
| 8870c2b1ec | |||
| 2948969a4a | |||
| 9d70105c1a | |||
| c375f825ee | |||
| fb2eaa3950 | |||
| b57fb94579 | |||
| 42805a2792 | |||
| d7e7668255 | |||
| a4fda59a69 | |||
| 3b9ffae625 | |||
| dd413518f5 | |||
| c581b88213 |
@@ -8,7 +8,6 @@ website/client/
|
||||
website/common/transpiled-babel/
|
||||
dist/
|
||||
dist-client/
|
||||
apidoc/html/
|
||||
content_cache/
|
||||
i18n_cache/
|
||||
node_modules/
|
||||
|
||||
@@ -36,29 +36,7 @@ jobs:
|
||||
CI: true
|
||||
NODE_ENV: test
|
||||
- run: npm run lint-no-fix
|
||||
apidoc:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [21.x]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: sudo apt update
|
||||
- run: sudo apt -y install libkrb5-dev
|
||||
- run: cp config.json.example config.json
|
||||
- name: npm install
|
||||
run: |
|
||||
npm i
|
||||
env:
|
||||
CI: true
|
||||
NODE_ENV: test
|
||||
- run: npm run apidoc
|
||||
|
||||
sanity:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
@@ -106,6 +84,7 @@ jobs:
|
||||
CI: true
|
||||
NODE_ENV: test
|
||||
- run: npm run test:common
|
||||
|
||||
content:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
## ⚠️ **No AI-Generated Code Policy**
|
||||
This repository prohibits the submission of code generated by large language models (LLMs), AI coding assistants, or automated generation tools. All code must be authored entirely by humans. AI-assisted commits will be rejected during pull request reviews.
|
||||
|
||||
Habitica 
|
||||
===============
|
||||
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"name": "Habitica V3 API Documentation",
|
||||
"title": "Habitica",
|
||||
"url": "https://habitica.com",
|
||||
"version": "3.0.0",
|
||||
"sampleUrl": null,
|
||||
"header": {
|
||||
"title": "Introduction",
|
||||
"filename": "apidoc/header.md"
|
||||
},
|
||||
"template": {
|
||||
"withCompare": false
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
# Introduction
|
||||
|
||||
This webpage includes the documentation for version 3 of the [Habitica](https://habitica.com) API.
|
||||
|
||||
If you're developing a 3rd party tool that uses the Habitica API, read the [API Usage Guidelines](https://github.com/HabitRPG/habitica/wiki/API-Usage-Guidelines), which describe how to be a responsible user of our server resources!
|
||||
@@ -1,26 +0,0 @@
|
||||
import gulp from 'gulp';
|
||||
import clean from 'rimraf';
|
||||
import apidoc from 'apidoc';
|
||||
|
||||
const APIDOC_DEST_PATH = './apidoc/html';
|
||||
const APIDOC_SRC_PATH = './website/server';
|
||||
const APIDOC_CONFIG_PATH = './apidoc/apidoc.json';
|
||||
gulp.task('apidoc:clean', done => {
|
||||
clean(APIDOC_DEST_PATH, done);
|
||||
});
|
||||
|
||||
gulp.task('apidoc', gulp.series('apidoc:clean', done => {
|
||||
const result = apidoc.createDoc({
|
||||
src: APIDOC_SRC_PATH,
|
||||
dest: APIDOC_DEST_PATH,
|
||||
config: APIDOC_CONFIG_PATH,
|
||||
});
|
||||
|
||||
if (result === false) {
|
||||
done(new Error('There was a problem generating apiDoc documentation.'));
|
||||
} else {
|
||||
done();
|
||||
}
|
||||
}));
|
||||
|
||||
gulp.task('apidoc:watch', gulp.series('apidoc', done => gulp.watch(`${APIDOC_SRC_PATH}/**/*.js`, gulp.series('apidoc', done))));
|
||||
@@ -26,7 +26,6 @@ gulp.task('build:cache', gulp.parallel(
|
||||
|
||||
gulp.task('build:prod', gulp.series(
|
||||
'build:babel',
|
||||
'apidoc',
|
||||
'build:cache',
|
||||
done => done(),
|
||||
));
|
||||
|
||||
@@ -12,11 +12,9 @@ require('@babel/register');
|
||||
const gulp = require('gulp');
|
||||
|
||||
if (process.env.NODE_ENV === 'production') { // eslint-disable-line no-process-env
|
||||
require('./gulp/gulp-apidoc'); // eslint-disable-line global-require
|
||||
require('./gulp/gulp-cache'); // eslint-disable-line global-require
|
||||
require('./gulp/gulp-build'); // eslint-disable-line global-require
|
||||
} else {
|
||||
require('./gulp/gulp-apidoc'); // eslint-disable-line global-require
|
||||
require('./gulp/gulp-cache'); // eslint-disable-line global-require
|
||||
require('./gulp/gulp-build'); // eslint-disable-line global-require
|
||||
require('./gulp/gulp-console'); // eslint-disable-line global-require
|
||||
|
||||
Generated
+369
-1596
File diff suppressed because it is too large
Load Diff
+5
-5
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "habitica",
|
||||
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
|
||||
"version": "5.47.9",
|
||||
"version": "5.48.3",
|
||||
"main": "./website/server/index.js",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.22.10",
|
||||
@@ -13,12 +13,12 @@
|
||||
"accepts": "^1.3.8",
|
||||
"amazon-payments": "^0.2.9",
|
||||
"amplitude": "^6.0.0",
|
||||
"apidoc": "^0.54.0",
|
||||
"apple-auth": "^1.0.9",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
"bcrypt": "^5.1.1",
|
||||
"body-parser": "^1.20.3",
|
||||
"bootstrap": "^4.6.2",
|
||||
"bullmq": "^5.71.1",
|
||||
"compression": "^1.8.1",
|
||||
"cookie-session": "^2.1.1",
|
||||
"coupon-code": "^0.4.5",
|
||||
@@ -30,6 +30,7 @@
|
||||
"eslint-plugin-mocha": "^5.0.0",
|
||||
"express": "^4.21.1",
|
||||
"express-basic-auth": "^1.2.1",
|
||||
"express-sitemap-xml": "^3.1.0",
|
||||
"express-validator": "^5.2.0",
|
||||
"firebase-admin": "^12.1.1",
|
||||
"glob": "^8.1.0",
|
||||
@@ -43,6 +44,7 @@
|
||||
"heapdump": "^0.3.15",
|
||||
"helmet": "^4.6.0",
|
||||
"in-app-purchase": "^1.11.3",
|
||||
"ioredis": "^5.10.1",
|
||||
"js2xmlparser": "^5.0.0",
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
"jwks-rsa": "^2.1.5",
|
||||
@@ -66,7 +68,6 @@
|
||||
"pp-ipn": "^1.1.0",
|
||||
"ps-tree": "^1.0.0",
|
||||
"rate-limiter-flexible": "^2.4.2",
|
||||
"redis": "^3.1.2",
|
||||
"remove-markdown": "^0.5.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"short-uuid": "^4.2.2",
|
||||
@@ -88,7 +89,7 @@
|
||||
"scripts": {
|
||||
"lint": "eslint --ext .js --fix . && cd website/client && npm run lint",
|
||||
"lint-no-fix": "eslint --ext .js . && cd website/client && npm run lint-no-fix",
|
||||
"test": "npm run lint && gulp test && gulp apidoc",
|
||||
"test": "npm run lint && gulp test",
|
||||
"test:build": "gulp test:prepare:build",
|
||||
"test:api-v3": "gulp test:api-v3",
|
||||
"test:api:unit": "gulp test:api:unit",
|
||||
@@ -113,7 +114,6 @@
|
||||
"docker:mongo:test": "docker compose -f docker-compose.mongo-test-local.yml up",
|
||||
"mongo:test": "node scripts/start-local-mongo.mjs --test-db",
|
||||
"postinstall": "git config --global url.\"https://\".insteadOf git:// && gulp build && cd website/client && npm install",
|
||||
"apidoc": "gulp apidoc",
|
||||
"heroku-postbuild": ".heroku/report_deploy.sh"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/* eslint-disable global-require */
|
||||
import got from 'got';
|
||||
import nconf from 'nconf';
|
||||
import requireAgain from 'require-again';
|
||||
import { TAVERN_ID } from '../../../../website/server/models/group';
|
||||
import { defer } from '../../../helpers/api-unit.helper';
|
||||
import worker from '../../../../website/server/libs/worker';
|
||||
|
||||
function getUser () {
|
||||
return {
|
||||
@@ -127,7 +127,7 @@ describe('emails', () => {
|
||||
let sendTxn = null;
|
||||
|
||||
beforeEach(() => {
|
||||
sandbox.stub(got, 'post').returns(defer().promise);
|
||||
sandbox.stub(worker, 'sendJob').returns(defer().promise);
|
||||
|
||||
const nconfGetStub = sandbox.stub(nconf, 'get');
|
||||
nconfGetStub.withArgs('IS_PROD').returns(true);
|
||||
@@ -149,13 +149,12 @@ describe('emails', () => {
|
||||
};
|
||||
|
||||
sendTxn(mailingInfo, emailType);
|
||||
expect(got.post).to.be.called;
|
||||
expect(got.post).to.be.calledWith('http://example.com/job', sinon.match({
|
||||
json: {
|
||||
data: {
|
||||
emailType: sinon.match.same(emailType),
|
||||
to: sinon.match(value => Array.isArray(value) && value[0].name === mailingInfo.name, 'matches mailing info array'),
|
||||
},
|
||||
expect(worker.sendJob).to.be.called;
|
||||
expect(worker.sendJob).to.be.calledWith('email', sinon.match({
|
||||
identifier: emailType,
|
||||
data: {
|
||||
emailType: sinon.match.same(emailType),
|
||||
to: sinon.match(value => Array.isArray(value) && value[0].name === mailingInfo.name, 'matches mailing info array'),
|
||||
},
|
||||
}));
|
||||
});
|
||||
@@ -168,7 +167,7 @@ describe('emails', () => {
|
||||
};
|
||||
|
||||
sendTxn(mailingInfo, emailType);
|
||||
expect(got.post).not.to.be.called;
|
||||
expect(worker.sendJob).not.to.be.called;
|
||||
});
|
||||
|
||||
it('throws error when mail target is only a string', async () => {
|
||||
@@ -233,13 +232,12 @@ describe('emails', () => {
|
||||
const mailingInfo = getUser();
|
||||
|
||||
sendTxn(mailingInfo, emailType);
|
||||
expect(got.post).to.be.called;
|
||||
expect(got.post).to.be.calledWith('http://example.com/job', sinon.match({
|
||||
json: {
|
||||
data: {
|
||||
emailType: sinon.match.same(emailType),
|
||||
to: sinon.match(val => val[0]._id === mailingInfo._id),
|
||||
},
|
||||
expect(worker.sendJob).to.be.called;
|
||||
expect(worker.sendJob).to.be.calledWith('email', sinon.match({
|
||||
identifier: emailType,
|
||||
data: {
|
||||
emailType: sinon.match.same(emailType),
|
||||
to: sinon.match(val => val[0]._id === mailingInfo._id),
|
||||
},
|
||||
}));
|
||||
});
|
||||
@@ -253,15 +251,14 @@ describe('emails', () => {
|
||||
const variables = [];
|
||||
|
||||
sendTxn(mailingInfo, emailType, variables);
|
||||
expect(got.post).to.be.called;
|
||||
expect(got.post).to.be.calledWith('http://example.com/job', sinon.match({
|
||||
json: {
|
||||
data: {
|
||||
variables: sinon.match(value => value[0].name === 'BASE_URL', 'matches variables'),
|
||||
personalVariables: sinon.match(value => value[0].rcpt === mailingInfo.email
|
||||
&& value[0].vars[0].name === 'RECIPIENT_NAME'
|
||||
expect(worker.sendJob).to.be.called;
|
||||
expect(worker.sendJob).to.be.calledWith('email', sinon.match({
|
||||
identifier: emailType,
|
||||
data: {
|
||||
variables: sinon.match(value => value[0].name === 'BASE_URL', 'matches variables'),
|
||||
personalVariables: sinon.match(value => value[0].rcpt === mailingInfo.email
|
||||
&& value[0].vars[0].name === 'RECIPIENT_NAME'
|
||||
&& value[0].vars[1].name === 'RECIPIENT_UNSUB_URL', 'matches personal variables'),
|
||||
},
|
||||
},
|
||||
}));
|
||||
});
|
||||
|
||||
@@ -23,6 +23,7 @@ describe('cors middleware', () => {
|
||||
'Access-Control-Allow-Methods': 'OPTIONS,GET,POST,PUT,HEAD,DELETE',
|
||||
'Access-Control-Allow-Headers': 'Authorization,Content-Type,Accept,Content-Encoding,X-Requested-With,x-api-user,x-api-key,x-client',
|
||||
'Access-Control-Expose-Headers': 'X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset,Retry-After',
|
||||
'Content-Security-Policy': "default-src 'self' habitica.com *.habitica.com *.amazon.com *.amazonaws.com *.amplitude.com *.loggly.com *.payments-amazon.com *.stripe.com *.stripe.network; base-uri 'self'; font-src 'self' https: data:; form-action 'self'; frame-ancestors 'self'; img-src * data:; object-src 'none'; script-src-attr 'none'; style-src 'self' https: 'unsafe-inline'",
|
||||
});
|
||||
expect(res.sendStatus).to.not.have.been.called;
|
||||
expect(next).to.have.been.calledOnce;
|
||||
@@ -36,6 +37,7 @@ describe('cors middleware', () => {
|
||||
'Access-Control-Allow-Methods': 'OPTIONS,GET,POST,PUT,HEAD,DELETE',
|
||||
'Access-Control-Allow-Headers': 'Authorization,Content-Type,Accept,Content-Encoding,X-Requested-With,x-api-user,x-api-key,x-client',
|
||||
'Access-Control-Expose-Headers': 'X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset,Retry-After',
|
||||
'Content-Security-Policy': "default-src 'self' habitica.com *.habitica.com *.amazon.com *.amazonaws.com *.amplitude.com *.loggly.com *.payments-amazon.com *.stripe.com *.stripe.network; base-uri 'self'; font-src 'self' https: data:; form-action 'self'; frame-ancestors 'self'; img-src * data:; object-src 'none'; script-src-attr 'none'; style-src 'self' https: 'unsafe-inline'",
|
||||
});
|
||||
expect(res.sendStatus).to.have.been.calledWith(200);
|
||||
expect(next).to.not.have.been.called;
|
||||
|
||||
@@ -193,23 +193,6 @@ describe('POST /groups/:groupId/quests/force-start', () => {
|
||||
expect(questingGroup.quest.members[notInPartyUser._id]).to.not.exist;
|
||||
});
|
||||
|
||||
it('removes users who have been deleted from quest.members', async () => {
|
||||
await leader.post(`/groups/${questingGroup._id}/quests/invite/${PET_QUEST}`);
|
||||
await partyMembers[0].post(`/groups/${questingGroup._id}/quests/accept`);
|
||||
|
||||
await partyMembers[0].del('/user', {
|
||||
password: 'password',
|
||||
});
|
||||
|
||||
await leader.post(`/groups/${questingGroup._id}/quests/force-start`);
|
||||
|
||||
await sleep(0.5);
|
||||
|
||||
await questingGroup.sync();
|
||||
|
||||
expect(questingGroup.quest.members[partyMembers[0]._id]).to.not.exist;
|
||||
});
|
||||
|
||||
it('removes users who don\'t have true value in quest.members from quest.members', async () => {
|
||||
const partyMemberThatRejects = partyMembers[1];
|
||||
const partyMemberThatIgnores = partyMembers[2];
|
||||
|
||||
@@ -1,13 +1,7 @@
|
||||
import {
|
||||
each,
|
||||
map,
|
||||
} from 'lodash';
|
||||
import {
|
||||
checkExistence,
|
||||
createAndPopulateGroup,
|
||||
generateGroup,
|
||||
generateUser,
|
||||
generateChallenge,
|
||||
translate as t,
|
||||
} from '../../../../helpers/api-integration/v3';
|
||||
import {
|
||||
@@ -15,6 +9,7 @@ import {
|
||||
sha1Encrypt as sha1EncryptPassword,
|
||||
} from '../../../../../website/server/libs/password';
|
||||
import * as email from '../../../../../website/server/libs/email';
|
||||
import sendJob from '../../../../../website/server/libs/worker';
|
||||
|
||||
const DELETE_CONFIRMATION = 'DELETE';
|
||||
|
||||
@@ -47,12 +42,13 @@ describe('DELETE /user', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('deletes the user', async () => {
|
||||
await expect(checkExistence('users', user._id)).to.eventually.eql(true);
|
||||
it('sends deletion job to worker', async () => {
|
||||
const workerStub = sandbox.stub(sendJob, 'sendJob');
|
||||
await user.del('/user', {
|
||||
password,
|
||||
});
|
||||
await expect(checkExistence('users', user._id)).to.eventually.eql(false);
|
||||
expect(workerStub).to.be.calledOnce;
|
||||
workerStub.restore();
|
||||
});
|
||||
|
||||
it('returns an error if excessive feedback is supplied', async () => {
|
||||
@@ -84,53 +80,6 @@ describe('DELETE /user', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('deletes the user\'s tasks', async () => {
|
||||
await user.post('/tasks/user', {
|
||||
text: 'test habit',
|
||||
type: 'habit',
|
||||
});
|
||||
await user.sync();
|
||||
|
||||
// gets the user's tasks ids
|
||||
const ids = [];
|
||||
each(user.tasksOrder, idsForOrder => {
|
||||
ids.push(...idsForOrder);
|
||||
});
|
||||
|
||||
expect(ids.length).to.be.above(0); // make sure the user has some task to delete
|
||||
|
||||
await user.del('/user', {
|
||||
password,
|
||||
});
|
||||
|
||||
await Promise.all(map(ids, id => expect(checkExistence('tasks', id)).to.eventually.eql(false)));
|
||||
});
|
||||
|
||||
it('reduces memberCount in challenges user is linked to', async () => {
|
||||
const populatedGroup = await createAndPopulateGroup({
|
||||
members: 2,
|
||||
});
|
||||
|
||||
const { group } = populatedGroup;
|
||||
const authorizedUser = populatedGroup.members[1];
|
||||
|
||||
const challenge = await generateChallenge(populatedGroup.groupLeader, group);
|
||||
await populatedGroup.groupLeader.post(`/challenges/${challenge._id}/join`);
|
||||
await authorizedUser.post(`/challenges/${challenge._id}/join`);
|
||||
|
||||
await challenge.sync();
|
||||
|
||||
expect(challenge.memberCount).to.eql(2);
|
||||
|
||||
await authorizedUser.del('/user', {
|
||||
password,
|
||||
});
|
||||
|
||||
await challenge.sync();
|
||||
|
||||
expect(challenge.memberCount).to.eql(1);
|
||||
});
|
||||
|
||||
it('sends feedback to the admin email', async () => {
|
||||
sandbox.spy(email, 'sendTxn');
|
||||
|
||||
@@ -158,10 +107,10 @@ describe('DELETE /user', () => {
|
||||
});
|
||||
|
||||
it('deletes the user with a legacy sha1 password', async () => {
|
||||
await expect(checkExistence('users', user._id)).to.eventually.eql(true);
|
||||
const textPassword = 'mySecretPassword';
|
||||
const salt = sha1MakeSalt();
|
||||
const sha1HashedPassword = sha1EncryptPassword(textPassword, salt);
|
||||
const workerStub = sandbox.stub(sendJob, 'sendJob');
|
||||
|
||||
await user.updateOne({
|
||||
'auth.local.hashed_password': sha1HashedPassword,
|
||||
@@ -179,7 +128,8 @@ describe('DELETE /user', () => {
|
||||
await user.del('/user', {
|
||||
password: textPassword,
|
||||
});
|
||||
await expect(checkExistence('users', user._id)).to.eventually.eql(false);
|
||||
expect(workerStub).to.be.calledOnce;
|
||||
workerStub.restore();
|
||||
});
|
||||
|
||||
context('last member of a party', () => {
|
||||
@@ -213,11 +163,12 @@ describe('DELETE /user', () => {
|
||||
});
|
||||
|
||||
it('deletes a Google user', async () => {
|
||||
await expect(checkExistence('users', user._id)).to.eventually.eql(true);
|
||||
const workerStub = sandbox.stub(sendJob, 'sendJob');
|
||||
await user.del('/user', {
|
||||
password: DELETE_CONFIRMATION,
|
||||
});
|
||||
await expect(checkExistence('users', user._id)).to.eventually.eql(false);
|
||||
expect(workerStub).to.be.calledOnce;
|
||||
workerStub.restore();
|
||||
});
|
||||
});
|
||||
|
||||
@@ -232,12 +183,13 @@ describe('DELETE /user', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('deletes a Apple user', async () => {
|
||||
await expect(checkExistence('users', user._id)).to.eventually.eql(true);
|
||||
it('deletes an Apple user', async () => {
|
||||
const workerStub = sandbox.stub(sendJob, 'sendJob');
|
||||
await user.del('/user', {
|
||||
password: DELETE_CONFIRMATION,
|
||||
});
|
||||
await expect(checkExistence('users', user._id)).to.eventually.eql(false);
|
||||
expect(workerStub).to.be.calledOnce;
|
||||
workerStub.restore();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -695,6 +695,11 @@
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_beach_with_volcano {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_beach_with_volcano.png');
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_beehive {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_beehive.png');
|
||||
width: 141px;
|
||||
@@ -2346,6 +2351,11 @@
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_tropical_coral_garden {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_tropical_coral_garden.png');
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_tulip_garden {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_tulip_garden.png');
|
||||
width: 141px;
|
||||
@@ -2401,6 +2411,11 @@
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_vegetable_garden {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_vegetable_garden.png');
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_viking_ship {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_viking_ship.png');
|
||||
width: 141px;
|
||||
@@ -29880,6 +29895,11 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.broad_armor_armoire_kendoBogu {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_armoire_kendoBogu.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.broad_armor_armoire_lamplightersGreatcoat {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_armoire_lamplightersGreatcoat.png');
|
||||
width: 114px;
|
||||
@@ -30535,6 +30555,11 @@
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_armoire_kendoMen {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_armoire_kendoMen.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_armoire_lamplightersTopHat {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_armoire_lamplightersTopHat.png');
|
||||
width: 114px;
|
||||
@@ -30920,6 +30945,11 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.shield_armoire_gardenHose {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_armoire_gardenHose.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.shield_armoire_gardenersSpade {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_armoire_gardenersSpade.png');
|
||||
width: 114px;
|
||||
@@ -31550,6 +31580,11 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.slim_armor_armoire_kendoBogu {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_armoire_kendoBogu.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.slim_armor_armoire_lamplightersGreatcoat {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_armoire_lamplightersGreatcoat.png');
|
||||
width: 114px;
|
||||
@@ -31930,6 +31965,11 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_armoire_brightRainbowKite {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_armoire_brightRainbowKite.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_armoire_buoyantBubbles {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_armoire_buoyantBubbles.png');
|
||||
width: 114px;
|
||||
@@ -32030,6 +32070,11 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_armoire_gardenRake {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_armoire_gardenRake.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_armoire_gardenersWateringCan {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_armoire_gardenersWateringCan.png');
|
||||
width: 114px;
|
||||
@@ -32125,6 +32170,11 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_armoire_kendoShinai {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_armoire_kendoShinai.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_armoire_lamplighter {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_armoire_lamplighter.png');
|
||||
width: 114px;
|
||||
@@ -32210,6 +32260,11 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_armoire_pastelRainbowKite {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_armoire_pastelRainbowKite.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_armoire_pinkKite {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_armoire_pinkKite.png');
|
||||
width: 114px;
|
||||
@@ -34200,6 +34255,11 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.eyewear_mystery_202606 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/eyewear_mystery_202606.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.head_mystery_202512 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_mystery_202512.png');
|
||||
width: 114px;
|
||||
@@ -34220,11 +34280,31 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_mystery_202606 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_mystery_202606.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.shield_mystery_202605 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_mystery_202605.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.shield_mystery_202606 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_mystery_202606.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.shield_mystery_202607 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_mystery_202607.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.shield_mystery_202608 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_mystery_202608.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.slim_armor_mystery_202512 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_mystery_202512.png');
|
||||
width: 114px;
|
||||
@@ -34250,6 +34330,16 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_mystery_202607 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_mystery_202607.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.weapon_mystery_202608 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_mystery_202608.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.back_mystery_201402 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/back_mystery_201402.png');
|
||||
width: 90px;
|
||||
@@ -37715,6 +37805,26 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.broad_armor_special_summer2026Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_summer2026Healer.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.broad_armor_special_summer2026Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_summer2026Mage.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.broad_armor_special_summer2026Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_summer2026Rogue.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.broad_armor_special_summer2026Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_summer2026Warrior.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.broad_armor_special_summerHealer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_summerHealer.png');
|
||||
width: 90px;
|
||||
@@ -37965,6 +38075,26 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_special_summer2026Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_summer2026Healer.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_special_summer2026Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_summer2026Mage.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.head_special_summer2026Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_summer2026Rogue.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.head_special_summer2026Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_summer2026Warrior.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_special_summerHealer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_summerHealer.png');
|
||||
width: 90px;
|
||||
@@ -38155,6 +38285,21 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.shield_special_summer2026Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_special_summer2026Healer.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.shield_special_summer2026Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_special_summer2026Rogue.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.shield_special_summer2026Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_special_summer2026Warrior.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.shield_special_summerHealer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_special_summerHealer.png');
|
||||
width: 90px;
|
||||
@@ -38395,6 +38540,26 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.slim_armor_special_summer2026Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_summer2026Healer.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.slim_armor_special_summer2026Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_summer2026Mage.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.slim_armor_special_summer2026Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_summer2026Rogue.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.slim_armor_special_summer2026Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_summer2026Warrior.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.slim_armor_special_summerHealer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_summerHealer.png');
|
||||
width: 90px;
|
||||
@@ -38635,6 +38800,26 @@
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_special_summer2026Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_summer2026Healer.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_special_summer2026Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_summer2026Mage.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.weapon_special_summer2026Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_summer2026Rogue.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.weapon_special_summer2026Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_summer2026Warrior.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_special_summerHealer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_summerHealer.png');
|
||||
width: 90px;
|
||||
|
||||
@@ -42,6 +42,7 @@ ul {
|
||||
font-weight: 400;
|
||||
line-height: 1.75;
|
||||
color: $purple-200;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
h4 {
|
||||
|
||||
@@ -141,7 +141,7 @@
|
||||
<ul>
|
||||
<li>
|
||||
<a
|
||||
href="/apidoc"
|
||||
href="https://apidoc.habitica.com"
|
||||
target="_blank"
|
||||
>{{ $t('APIv3') }}
|
||||
</a>
|
||||
|
||||
@@ -582,7 +582,7 @@ export default {
|
||||
const newPosition = where === 'top' ? 0 : list.length;
|
||||
list.splice(newPosition, 0, moved[0]);
|
||||
|
||||
if (!this.isUser) {
|
||||
if (task.group.id && !this.isUser) {
|
||||
await this.$store.dispatch('tasks:moveGroupTask', {
|
||||
taskId: taskIdToMove,
|
||||
position: newPosition,
|
||||
@@ -592,7 +592,7 @@ export default {
|
||||
taskId: taskIdToMove,
|
||||
position: newPosition,
|
||||
});
|
||||
this.user.tasksOrder[`${this.type}s`] = newOrder;
|
||||
if (!this.taskListOverride) this.user.tasksOrder[`${this.type}s`] = newOrder;
|
||||
}
|
||||
},
|
||||
async rewardSorted (data) {
|
||||
|
||||
@@ -412,6 +412,25 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p
|
||||
v-if="task.type === 'daily' && schedulingSummary"
|
||||
class="scheduling-summary mt-2 mb-0"
|
||||
>
|
||||
{{ schedulingSummary }}
|
||||
</p>
|
||||
<div
|
||||
v-if="task.type === 'daily' && schedulingWarning"
|
||||
class="scheduling-warning mt-2"
|
||||
>
|
||||
<span
|
||||
class="scheduling-warning-icon svg-icon color gray-50"
|
||||
v-html="icons.alert"
|
||||
></span>
|
||||
<span
|
||||
class="scheduling-warning-text"
|
||||
v-html="schedulingWarning"
|
||||
></span>
|
||||
</div>
|
||||
<div
|
||||
v-if="!groupId"
|
||||
class="tags-select option mt-3"
|
||||
@@ -1109,6 +1128,42 @@
|
||||
height: 1rem;
|
||||
}
|
||||
|
||||
.scheduling-summary {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
color: $gray-50;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.scheduling-warning {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
color: $gray-50;
|
||||
}
|
||||
|
||||
.scheduling-warning-icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
flex-shrink: 0;
|
||||
margin-right: 6px;
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
.scheduling-warning-text {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
@@ -1377,6 +1432,87 @@ export default {
|
||||
}
|
||||
return null;
|
||||
},
|
||||
schedulingSummary () {
|
||||
if (!this.task || this.task.type !== 'daily') return '';
|
||||
const { task } = this;
|
||||
const everyXValue = +task.everyX;
|
||||
|
||||
let interval;
|
||||
if (task.frequency === 'daily') {
|
||||
interval = everyXValue === 1 ? this.$t('everyDay') : this.$t('everyXDays', { count: everyXValue });
|
||||
} else if (task.frequency === 'weekly') {
|
||||
interval = everyXValue === 1 ? this.$t('everyWeek') : this.$t('everyXWeeks', { count: everyXValue });
|
||||
} else if (task.frequency === 'monthly') {
|
||||
interval = everyXValue === 1 ? this.$t('everyMonth') : this.$t('everyXMonths', { count: everyXValue });
|
||||
} else if (task.frequency === 'yearly') {
|
||||
interval = everyXValue === 1 ? this.$t('everyYear') : this.$t('everyXYears', { count: everyXValue });
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
|
||||
let details = '';
|
||||
if (task.frequency === 'weekly') {
|
||||
const dayNames = {
|
||||
su: 'Sunday',
|
||||
m: 'Monday',
|
||||
t: 'Tuesday',
|
||||
w: 'Wednesday',
|
||||
th: 'Thursday',
|
||||
f: 'Friday',
|
||||
s: 'Saturday',
|
||||
};
|
||||
const activeDays = Object.keys(task.repeat || {}).filter(d => task.repeat[d]);
|
||||
if (activeDays.length > 0) {
|
||||
details = ` on ${activeDays.map(d => dayNames[d]).join(', ')}`;
|
||||
}
|
||||
} else if (task.frequency === 'monthly' && task.startDate) {
|
||||
const dayOfMonth = moment(task.startDate).date();
|
||||
if (task.weeksOfMonth && task.weeksOfMonth.length > 0) {
|
||||
const weekNum = task.weeksOfMonth[0] + 1;
|
||||
const weekStr = String(weekNum);
|
||||
const lastDigit = weekStr.slice(-1);
|
||||
let suffix = 'th';
|
||||
if (lastDigit === '1' && weekStr !== '11') suffix = 'st';
|
||||
if (lastDigit === '2' && weekStr !== '12') suffix = 'nd';
|
||||
if (lastDigit === '3' && weekStr !== '13') suffix = 'rd';
|
||||
const dayName = moment(task.startDate).format('dddd');
|
||||
details = ` on the ${weekNum}${suffix} ${dayName} of the month`;
|
||||
} else if (task.daysOfMonth && task.daysOfMonth.length > 0) {
|
||||
const dom = task.daysOfMonth[0];
|
||||
const domStr = String(dom);
|
||||
const lastDigit = domStr.slice(-1);
|
||||
let suffix = 'th';
|
||||
if (lastDigit === '1' && domStr !== '11') suffix = 'st';
|
||||
if (lastDigit === '2' && domStr !== '12') suffix = 'nd';
|
||||
if (lastDigit === '3' && domStr !== '13') suffix = 'rd';
|
||||
details = ` on the ${dom}${suffix}`;
|
||||
} else {
|
||||
const domStr = String(dayOfMonth);
|
||||
const lastDigit = domStr.slice(-1);
|
||||
let suffix = 'th';
|
||||
if (lastDigit === '1' && domStr !== '11') suffix = 'st';
|
||||
if (lastDigit === '2' && domStr !== '12') suffix = 'nd';
|
||||
if (lastDigit === '3' && domStr !== '13') suffix = 'rd';
|
||||
details = ` on the ${dayOfMonth}${suffix}`;
|
||||
}
|
||||
} else if (task.frequency === 'yearly' && task.startDate) {
|
||||
details = ` on ${moment(task.startDate).format('MMMM Do')}`;
|
||||
}
|
||||
|
||||
return `${this.$t('repeats')} ${interval}${details}`;
|
||||
},
|
||||
schedulingWarning () {
|
||||
if (!this.task || this.task.type !== 'daily') return '';
|
||||
const { task } = this;
|
||||
if (task.frequency === 'monthly'
|
||||
&& task.weeksOfMonth && task.weeksOfMonth.length > 0
|
||||
&& task.weeksOfMonth[0] === 4
|
||||
&& task.startDate) {
|
||||
const dayName = moment(task.startDate).format('dddd');
|
||||
return this.$t('fifthWeekWarning', { day: dayName });
|
||||
}
|
||||
return '';
|
||||
},
|
||||
repeatsOn: {
|
||||
get () {
|
||||
let repeatsOn = 'dayOfMonth';
|
||||
|
||||
@@ -222,14 +222,22 @@ export default {
|
||||
return usernames;
|
||||
},
|
||||
summarySentence () {
|
||||
let fifthWeekWarning = '';
|
||||
if (this.task.type === 'daily' && this.task.frequency === 'monthly'
|
||||
&& this.task.weeksOfMonth && this.task.weeksOfMonth.length > 0
|
||||
&& this.task.weeksOfMonth[0] === 4) {
|
||||
const activeDays = keys(pickBy(this.task.repeat, value => value === true));
|
||||
const dayName = this.expandDayString[activeDays[0]];
|
||||
fifthWeekWarning = ` ${this.$t('fifthWeekWarning', { day: dayName })}`;
|
||||
}
|
||||
if (this.task.type === 'daily' && moment().isBefore(this.task.startDate)) {
|
||||
return `This is ${this.formattedDifficulty(this.task.priority)} task that will repeat
|
||||
${this.formattedRepeatInterval(this.task.frequency, this.task.everyX)}${this.formattedDays(this.task.frequency, this.task.repeat, this.task.daysOfMonth, this.task.weeksOfMonth, this.task.startDate)}
|
||||
starting on <strong>${moment(this.task.startDate).format('MM/DD/YYYY')}</strong>.`;
|
||||
starting on <strong>${moment(this.task.startDate).format('MM/DD/YYYY')}</strong>.${fifthWeekWarning}`;
|
||||
}
|
||||
if (this.task.type === 'daily') {
|
||||
return `This is ${this.formattedDifficulty(this.task.priority)} task that repeats
|
||||
${this.formattedRepeatInterval(this.task.frequency, this.task.everyX)}${this.formattedDays(this.task.frequency, this.task.repeat, this.task.daysOfMonth, this.task.weeksOfMonth, this.task.startDate)}.`;
|
||||
${this.formattedRepeatInterval(this.task.frequency, this.task.everyX)}${this.formattedDays(this.task.frequency, this.task.repeat, this.task.daysOfMonth, this.task.weeksOfMonth, this.task.startDate)}.${fifthWeekWarning}`;
|
||||
}
|
||||
if (this.task.date) {
|
||||
return `This is ${this.formattedDifficulty(this.task.priority)} task that is due <strong>${moment(this.task.date).format('MM/DD/YYYY')}.`;
|
||||
@@ -287,25 +295,14 @@ export default {
|
||||
});
|
||||
dayStringArray.push('</strong>');
|
||||
} else if (weeksOfMonth.length > 0) {
|
||||
switch (weeksOfMonth[0]) {
|
||||
case 0:
|
||||
dayStringArray.push('first');
|
||||
break;
|
||||
case 1:
|
||||
dayStringArray.push('second');
|
||||
break;
|
||||
case 2:
|
||||
dayStringArray.push('third');
|
||||
break;
|
||||
case 3:
|
||||
dayStringArray.push('fourth');
|
||||
break;
|
||||
case 4:
|
||||
dayStringArray.push('fifth');
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
const weekNum = weeksOfMonth[0] + 1;
|
||||
const weekNumStr = String(weekNum);
|
||||
const lastDigit = weekNumStr.slice(-1);
|
||||
let ordinalSuffix = 'th';
|
||||
if (lastDigit === '1' && weekNumStr !== '11') ordinalSuffix = 'st';
|
||||
if (lastDigit === '2' && weekNumStr !== '12') ordinalSuffix = 'nd';
|
||||
if (lastDigit === '3' && weekNumStr !== '13') ordinalSuffix = 'rd';
|
||||
dayStringArray.push(`${weekNum}${ordinalSuffix}`);
|
||||
activeDays = keys(pickBy(repeat, value => value === true));
|
||||
dayStringArray.push(` ${this.expandDayString[activeDays[0]]} of the month</strong>`);
|
||||
}
|
||||
@@ -343,9 +340,8 @@ export default {
|
||||
if (numericX === 2) return '<strong>every other week</strong>';
|
||||
return `<strong>every ${numericX} weeks</strong>`;
|
||||
case 'monthly':
|
||||
if (numericX === 1) return '<strong>every month</strong>';
|
||||
if (numericX === 2) return '<strong>every other month</strong>';
|
||||
return `<strong>every ${numericX} months</strong>`;
|
||||
if (numericX === 1) return `<strong>${this.$t('everyMonth')}</strong>`;
|
||||
return `<strong>${this.$t('everyXMonths', { count: numericX })}</strong>`;
|
||||
case 'yearly':
|
||||
if (numericX === 1) return '<strong>every year</strong>';
|
||||
return `<strong>every ${everyX} years</strong>`;
|
||||
|
||||
@@ -68,8 +68,12 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
upDate (after) {
|
||||
this.value = after;
|
||||
this.$emit('update:date', after);
|
||||
// zero out the time so the server doesn't shift the day across a DST boundary on save
|
||||
const normalized = after
|
||||
? new Date(after.getFullYear(), after.getMonth(), after.getDate())
|
||||
: null;
|
||||
this.value = normalized;
|
||||
this.$emit('update:date', normalized);
|
||||
},
|
||||
setToday () {
|
||||
this.upDate(moment().toDate());
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
|
||||
<div
|
||||
v-once
|
||||
class="feedback"
|
||||
class="feedback mt-3"
|
||||
v-html="$t('feedback')"
|
||||
>
|
||||
</div>
|
||||
|
||||
@@ -7,6 +7,7 @@ import { PAGES } from '@/libs/consts';
|
||||
import { STATIC_ROUTES } from './static-routes';
|
||||
import { USER_ROUTES } from './user-routes';
|
||||
import { DEPRECATED_ROUTES } from '@/router/deprecated-routes';
|
||||
import { NotFoundPage } from './shared-route-imports';
|
||||
|
||||
// NOTE: when adding a page make sure to implement the `common:setTitle` action
|
||||
|
||||
@@ -259,6 +260,13 @@ const router = new VueRouter({
|
||||
// Only used to handle some redirects
|
||||
// See router.beforeEach
|
||||
{ path: '/static/tavern-and-guilds', redirect: '/static/faq/tavern-and-guilds' },
|
||||
{
|
||||
path: '/apidoc',
|
||||
component: NotFoundPage,
|
||||
beforeEnter () {
|
||||
window.location.href = 'https://apidoc.habitica.com';
|
||||
},
|
||||
},
|
||||
{ path: '/redirect/:redirect', name: 'redirect' },
|
||||
{ path: '*', redirect: { name: 'notFound' } },
|
||||
],
|
||||
|
||||
@@ -237,5 +237,84 @@ describe('Task Column', () => {
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
// each board type should hit the right move route
|
||||
describe('moveTo (task ordering route)', () => {
|
||||
function makeStore (userData = {}, extraGetters = {}) {
|
||||
return new Store({
|
||||
getters: {
|
||||
'tasks:getFilteredTaskList': () => () => [],
|
||||
'tasks:getUnfilteredTaskList': () => () => [],
|
||||
...extraGetters,
|
||||
},
|
||||
state: {
|
||||
user: {
|
||||
data: {
|
||||
preferences: { tasks: { activeFilter: {} } },
|
||||
tasksOrder: { habits: [] },
|
||||
...userData,
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
function stubDispatch (vm) {
|
||||
const calls = [];
|
||||
vm.$store.dispatch = (action, payload) => {
|
||||
calls.push({ action, payload });
|
||||
return Promise.resolve(['b', 'a']);
|
||||
};
|
||||
return calls;
|
||||
}
|
||||
|
||||
test('challenge tasks (no group.id) use tasks:move and keep the user order untouched', async () => {
|
||||
wrapper = makeWrapper({ store: makeStore() });
|
||||
wrapper.setProps({
|
||||
isUser: false,
|
||||
challenge: { _id: 'c1' },
|
||||
taskListOverride: [{ _id: 'a', group: {} }, { _id: 'b', group: {} }],
|
||||
});
|
||||
const calls = stubDispatch(wrapper.vm);
|
||||
|
||||
await wrapper.vm.moveTo({ _id: 'a', group: {} }, 'bottom');
|
||||
|
||||
expect(calls).to.have.lengthOf(1);
|
||||
expect(calls[0].action).to.eq('tasks:move');
|
||||
// an overridden list must never overwrite the user's personal order
|
||||
expect(wrapper.vm.user.tasksOrder.habits.join(',')).to.eq('');
|
||||
});
|
||||
|
||||
test('group-plan tasks (with group.id) use tasks:moveGroupTask', async () => {
|
||||
wrapper = makeWrapper({ store: makeStore() });
|
||||
wrapper.setProps({
|
||||
isUser: false,
|
||||
group: { _id: 'g1' },
|
||||
taskListOverride: [{ _id: 'a', group: { id: 'g1' } }, { _id: 'b', group: { id: 'g1' } }],
|
||||
});
|
||||
const calls = stubDispatch(wrapper.vm);
|
||||
|
||||
await wrapper.vm.moveTo({ _id: 'a', group: { id: 'g1' } }, 'bottom');
|
||||
|
||||
expect(calls).to.have.lengthOf(1);
|
||||
expect(calls[0].action).to.eq('tasks:moveGroupTask');
|
||||
});
|
||||
|
||||
test('user tasks use tasks:move and update the user order', async () => {
|
||||
const store = makeStore(
|
||||
{ tasksOrder: { habits: ['a', 'b'] } },
|
||||
{ 'tasks:getUnfilteredTaskList': () => () => [{ _id: 'a', group: {} }, { _id: 'b', group: {} }] },
|
||||
);
|
||||
wrapper = makeWrapper({ store });
|
||||
wrapper.setProps({ isUser: true });
|
||||
const calls = stubDispatch(wrapper.vm);
|
||||
|
||||
await wrapper.vm.moveTo({ _id: 'a', group: {} }, 'bottom');
|
||||
|
||||
expect(calls).to.have.lengthOf(1);
|
||||
expect(calls[0].action).to.eq('tasks:move');
|
||||
expect(wrapper.vm.user.tasksOrder.habits.join(',')).to.eq('b,a');
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"androidFaqStillNeedHelp": "Ако имате въпрос, който не намирате в този списък или в [ЧЗВ в уикито](http://habitica.fandom.com/wiki/FAQ), задайте го в кръчмата чрез Меню > Кръчма! Ще се радваме да помогнем.",
|
||||
"webFaqStillNeedHelp": "Ако имате въпрос, който не намирате в този списък или в [ЧЗВ в уикито](http://habitica.fandom.com/wiki/FAQ), задайте го в [Помощната гилдия на Хабитика](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Ще се радваме да помогнем.",
|
||||
"webFaqAnswer28": "Да! Бутона \"Пауза на щетите\" може да се намери в Настройки. Той ще ви предпази от загуба на точки живот (HP) за пропуснати ежедневни задачи. Това е полезно, ако сте на ваканция, нуждаете се от почивка или по какъвто и да било друг повод, за който имате нужда от почивка. Ако участвате в мисия, вашето собствено неприключило напредване ще бъде спряно, но все още ще получавате щети от пропуснатите ежедневни задачи на членовете на вашата група.\n\nЗа да поставите на пауза конкретни ежедневни задачи, можете да редактирате графика им, за да се изпълняват на всеки 0 дни, докато не сте готови да ги стартирате отново.",
|
||||
"webFaqAnswer32": "В Habitica има четири класа: Войн, Магьосник, Крадец и Лечител. Всички играчи започват като клас \"Войн\", докато достигнат ниво 10. След като достигнете ниво 10, ще получите възможността да изберете нов клас или да продължите като Войн.\n\nВсеки клас разполага с различни Екипировка и Умения. Ако не искате да изберете клас, можете да изберете \"Отказ\". Ако изберете да се откажете, винаги можете да активирате Класовата система от Настройки по-късно.",
|
||||
"webFaqAnswer32": "Всички играчи започват като клас \"Войн\", докато достигнат ниво 10. След като достигнете ниво 10, ще получите възможността да изберете нов клас или да продължите като Войн.\n\nВсеки клас разполага с различни Екипировка и Умения. Ако не искате да изберете клас, можете да изберете \"Отказ\". Ако изберете да се откажете, винаги можете да активирате Класовата система от Настройки по-късно.\n\nАко искате да промените класа си след ниво 10, можете да го направите, като използвате Орбът на прераждането. Орбът на прераждането е достъпен в Пазара за 6 диаманта на ниво 50 или безплатен на ниво 100.\n\nСъщо така, можете да промените своя клас по всяко време от Настройки за 3 диаманта. Това няма да нулира нивото ви като Орбът на прераждането, но ще ви позволи да преразпределите точките на уменията, които сте събрали, като сте вдигнали нивото си, за да са релевантни с новия ви клас.",
|
||||
"commonQuestions": "Чести въпроси",
|
||||
"faqQuestion25": "Какви са различните видове задачи?",
|
||||
"webFaqAnswer25": "Habitica използва три различни типа задачи, за да отговори на вашите нужди: Навици, Ежедневни и Задачи.\n\nНавиците могат да бъдат положителни или отрицателни и представляват нещо, което искате да проследявате няколко пъти на ден или според незададен график. Положителните навици ще ви наградят със злато и опит (Exp), докато отрицателните навици ще ви наказват със загуба на точки живот (HP).\n\nЕжедневните задачи са повтарящи се задачи, които искате да изпълнявате по-структурирано. Например веднъж на ден, три пъти на седмица или четири пъти на месец. Пропускането на ежедневни задачи води до загуба на HP, но колкото по-трудни са, толкова по-добри са наградите!\n\nЗадачите са еднократни задачи, за които получавате награди след като ги изпълните. Задачите могат да имат срок, но няма загуба на HP, ако го пропуснете.\n\nИзберете типа задача, който най-добре отговаря на това, което искате да постигнете!",
|
||||
@@ -16,7 +16,7 @@
|
||||
"faqQuestion29": "Как да възстановя загубени точки живот (HP)?",
|
||||
"webFaqAnswer29": "Можете да възвърнете 15 HP, като закупите отвара от колоната си за Награди, за 25 злато. Освен това винаги ще възвърнете пълното си HP, когато качите ниво!",
|
||||
"faqQuestion30": "Какво става, когато изчерпам HP?",
|
||||
"webFaqAnswer30": "Ако вашите HP стигнат до нула, ще загубите едно ниво, цялото си злато и един случаен предмет, който може да бъде закупен отново.",
|
||||
"webFaqAnswer30": "Ако вашето HP стигне до нула, ще загубите едно ниво, цялото си злато и един случаен предмет, който може да бъде закупен отново.",
|
||||
"faqQuestion31": "Защо загубих HP при неотрицателна задача ?",
|
||||
"webFaqAnswer31": "Ако завършите задача и загубите HP, когато не би трябвало, сте срещнали забавяне, докато сървърът синхронизира промените, направени на други платформи. Например, ако използвате злато, мана или загубите HP в мобилното приложение и след това завършите задача в уебсайта, сървърът просто потвърждава, че всичко е синхронизирано.",
|
||||
"faqQuestion32": "Кога мога да си избера клас?",
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"resetAccPop": "Започнете отначало, премахвайки всички нива, злато, екипировка, история и задачи.",
|
||||
"deleteAccount": "Изтриване на профила",
|
||||
"deleteAccPop": "Изтрива и премахва Вашия профил в Хабитика.",
|
||||
"feedback": "Ако искате да ни изпратите отзивите си, моля, въведете ги по-долу. Ще се радваме да научим какво Ви е харесало, или пък не, в Хабитика! Не говорите английски добре? Няма проблем! Пишете на който искате език.",
|
||||
"feedback": "Ако искате да ни изпратите отзивите си, моля, въведете ги по-долу. Ще се радваме да чуем обратната ви връзка! Ще бде анонимно, освен ако не изберете да въведете контактите си. Не говорите английски добре? Няма проблем! Пишете ни на езика, който предпочитате.",
|
||||
"dataExport": "Изнасяне на данни",
|
||||
"saveData": "Ето няколко възможности за запазване на данните Ви.",
|
||||
"habitHistory": "История на навиците",
|
||||
@@ -157,5 +157,24 @@
|
||||
"changeUsernameDisclaimer": "Потребителското ви име се ползва за покани, @споменавания в чата и съобщения, трябва да е от 1 до 20 символа, да съдържа само буквите от a до z, цифрите от 0 до 9, тирета или долни черти и не може да съдържа неприлични думи.",
|
||||
"verifyUsernameVeteranPet": "Един от тези любимци-ветерани ще Ви чака след като приключите с потвърждението!",
|
||||
"subscriptionReminders": "Абонаментни Напомняния",
|
||||
"newPMNotificationTitle": "Ново съобщение от <%= name %>"
|
||||
"newPMNotificationTitle": "Ново съобщение от <%= name %>",
|
||||
"resetAccount": "Нулирай акаунт",
|
||||
"generalSettings": "Общи настройки",
|
||||
"taskSettings": "Настройки на Задачите",
|
||||
"confirmCancelChanges": "Сигурни ли сте? Ще загубите незапазените промени.",
|
||||
"account": "Акаунт",
|
||||
"loginMethods": "Методи за Влизане",
|
||||
"character": "Герой",
|
||||
"siteLanguage": "Език на сайта",
|
||||
"showLevelUpModal": "Когато вдигате ниво",
|
||||
"showHatchPetModal": "Когато излюпвате Любимец",
|
||||
"showRaisePetModal": "Когато отгледате Любимец до Оседлан Любимец",
|
||||
"baileyAnnouncement": "Най-новите вести на Бейли",
|
||||
"view": "Виж",
|
||||
"feedbackPlaceholder": "Добавете обратна връзка",
|
||||
"downloadCSV": "Изтеглете CSV",
|
||||
"yourUserData": "Вашите Потребителски Данни",
|
||||
"taskHistory": "История на Задачите",
|
||||
"yourUserDataDisclaimer": "Тук можете да изтеглите копие на историята на задачите си или пълните си потребителски данни.",
|
||||
"useridCopied": "Потребителският ID е копиран."
|
||||
}
|
||||
|
||||
@@ -184,5 +184,6 @@
|
||||
"chatCastSpellUser": "<%= username %> použil/a <%= spell %> na <%= target %>.",
|
||||
"purchasePetItemConfirm": "Tento nákup by překročil počet položek, které potřebujete k vylíhnutí všech možných <%= itemText %> domácích zvířátek. Jsi si jistá?",
|
||||
"notEnoughGold": "Nedostatek zlaťáků.",
|
||||
"chatCastSpellPartyTimes": "<%= username %> použil/a <%= spell %> pro skupinu <%= times %> times."
|
||||
"chatCastSpellPartyTimes": "<%= username %> použil/a <%= spell %> pro skupinu <%= times %> times.",
|
||||
"pointsAvailable": "Dostupné body"
|
||||
}
|
||||
|
||||
@@ -938,5 +938,8 @@
|
||||
"backgrounds052026": "SET 144: Veröffentlicht im Mai 2026",
|
||||
"backgroundRidingACometText": "Ein Kometenritt",
|
||||
"backgroundRidingACometNotes": "Reise durch das All bei einem Kometenritt!",
|
||||
"backgroundElvenCitadelText": "Elven Citadel"
|
||||
"backgroundElvenCitadelText": "Elven Citadel",
|
||||
"backgroundElvenCitadelNotes": "Unternehmen Sie die malerische Reise zu einer Elfenzitadelle.",
|
||||
"backgroundOnAStrangePlanetNotes": "Wage dich dorthin, wo noch kein Habitican gewesen ist: Auf einem fremden Planeten.",
|
||||
"backgroundOnAStrangePlanetText": "un eine strange planete"
|
||||
}
|
||||
|
||||
@@ -410,5 +410,6 @@
|
||||
"questEggPlatypusText": "Schnabeltier",
|
||||
"questEggPlatypusMountText": "Schnabeltier",
|
||||
"questEggPlatypusAdjective": "ein Perfektionist",
|
||||
"hatchingPotionOpal": "Opal"
|
||||
"hatchingPotionOpal": "Opal",
|
||||
"hatchingPotionAlien": "Außerirdischer"
|
||||
}
|
||||
|
||||
@@ -187,5 +187,7 @@
|
||||
"minPasswordLengthLogin": "Dein Passwort ist mindestens 8 Zeichen lang.",
|
||||
"enterValidEmail": "Bitte gib eine gültige E-Mail-Adresse ein.",
|
||||
"whatToCallYou": "Wie sollen wir dich nennen?",
|
||||
"acceptPrivacyTOS": "Du bestätigst, dass du mindestens 18 Jahre alt bist und dass du unsere <a href='/static/terms' target='_blank'>Nutzungsbedingungen</a> und <a href='/static/privacy' target='_blank'>Datenschutz-Bestimmungen</a> gelesen hast und akzeptierst"
|
||||
"acceptPrivacyTOS": "Du bestätigst, dass du mindestens 18 Jahre alt bist und dass du unsere <a href='/static/terms' target='_blank'>Nutzungsbedingungen</a> und <a href='/static/privacy' target='_blank'>Datenschutz-Bestimmungen</a> gelesen hast und akzeptierst",
|
||||
"emailAddress": "E-Mail_adresse",
|
||||
"emailRequiredForSupport": "Wir benötigen eine E-Mail-Adresse für den Benutzersupport. Bitte geben Sie eine E-Mail-Adresse ein, um mit der Erstellung Ihres Kontos fortzufahren."
|
||||
}
|
||||
|
||||
@@ -3501,5 +3501,7 @@
|
||||
"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."
|
||||
"armorSpecialSpring2026RogueNotes": "Trotze dem unvermeidlichen Frühlingsregen ebenso wie leichten Brisen. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe Frühlingsausrüstung 2026.",
|
||||
"weaponMystery202608Notes": "Hell, wunderschön und gefährlich für deine unerledigte Tagesaufgaben. Gewährt keinen Attributbonus. August 2026 Abonnentengegenstand.",
|
||||
"weaponMystery202608Text": "Leuchtende Magenta-Klinge"
|
||||
}
|
||||
|
||||
@@ -243,5 +243,7 @@
|
||||
"newMessage": "Neue Nachricht",
|
||||
"rememberToBeKind": "Bitte sei freundlich, respektvoll, und folge den <a href='/static/community-guidelines' target='_blank'>Community-Richtlinien</a>.",
|
||||
"gem": "Edelstein",
|
||||
"confirmPurchase": "Kauf bestätigen"
|
||||
"confirmPurchase": "Kauf bestätigen",
|
||||
"avoidSPI": "vermeiden SPI",
|
||||
"avoidSPIDetails": "Zu Ihrer Privatsphäre vermeiden Sie es, <%= firstLink %>sensible persönliche Informationen<%= linkClose %> (SPI) beim Verwenden von Habitica anzugeben. Ihre Kontodaten, einschließlich Aufgaben, werden auf unseren Servern gespeichert, sodass Sie von jedem Gerät aus darauf zugreifen können.<br><br>Um mehr zu erfahren, lesen Sie unsere <%= secondLink %>Datenschutzerklärung<%= linkClose %>."
|
||||
}
|
||||
|
||||
@@ -270,14 +270,14 @@
|
||||
"winter2025StringLightsHealerSet": "Lichterketten Heiler Set",
|
||||
"winter2025SnowRogueSet": "Schneeschurken Set",
|
||||
"winter2025MooseWarriorSet": "Elchkrieger Set",
|
||||
"winter2025AuroraMageSet": "Aurora Magier Set",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria Heiler Set",
|
||||
"spring2025MantisMageSet": "Fangschrecken Magier Set",
|
||||
"winter2025AuroraMageSet": "Aurora Set (Mage)",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria Set (Healer)",
|
||||
"spring2025MantisMageSet": "Fangschrecken-Set (Magier)",
|
||||
"spring2025SunshineWarriorSet": "Sonnenschein Krieger Set",
|
||||
"spring2025CrystalPointRogueSet": "Kristallspitzen Schurken Set",
|
||||
"summer2025ScallopWarriorSet": "Jakobsmuschel Krieger Set",
|
||||
"summer2025SquidRogueSet": "Tintenfisch Schurken Set",
|
||||
"summer2025SeaAngelHealerSet": "Ruderschnecken Heiler Set",
|
||||
"summer2025ScallopWarriorSet": "Jakobsmuschel-Set (Krieger)",
|
||||
"summer2025SquidRogueSet": "Tintenfisch-Set (Schurken)",
|
||||
"summer2025SeaAngelHealerSet": "Ruderschnecken-Set (Heiler)",
|
||||
"summer2025FairyWrasseMageSet": "Feenlippfisch Magier Set",
|
||||
"fall2025SasquatchWarriorSet": "Sasquatch Krieger Set",
|
||||
"fall2025SkeletonRogueSet": "Skelett Schurken Set",
|
||||
@@ -289,5 +289,6 @@
|
||||
"winter2026MidwinterCandleMageSet": "Mittwinterkerzen Magier Set",
|
||||
"spring2026FrogWarriorSet": "Frosch Set (Krieger)",
|
||||
"spring2026SnowdropHealerSet": "Schneeglöckchen Set (Heiler)",
|
||||
"spring2026MaypoleMageSet": "Maibaum Set (Magier)"
|
||||
"spring2026MaypoleMageSet": "Maibaum Set (Magier)",
|
||||
"spring2026BranchRogueSet": "Fruling Ast Set (Schurke)"
|
||||
}
|
||||
|
||||
@@ -189,7 +189,7 @@
|
||||
"questTRexUndeadBoss": "Skelettierter Tyrannosaurus",
|
||||
"questTRexUndeadRageTitle": "Knöcherne Heilung",
|
||||
"questTRexUndeadRageDescription": "Diese Leiste füllt sich, wenn Du Deine Tagesaufgaben nicht erfüllst. Wenn sie voll ist, heilt sich der skelettierte Tyrannosaurus um 30% seiner übrigen Lebenspunkte!",
|
||||
"questTRexUndeadRageEffect": "'Der Skelettierte Tyrannosaurus benutzt KNÖCHERNE HEILUNG!'\n\nDas Monster lässt ein furchtbares Brüllen ertönen und einige seiner gesplitterten Knochen setzen sich wieder zusammen!",
|
||||
"questTRexUndeadRageEffect": "Skeletal Tyrannosaur uses SKELETON HEALING!\n\nThe monster lets forth an unearthly roar, and some of its damaged bones knit back together!\n\nDas Monster lässt ein furchtbares Brüllen ertönen und einige seiner gesplitterten Knochen setzen sich wieder zusammen!",
|
||||
"questTRexDropTRexEgg": "Tyrannosaurus (Ei)",
|
||||
"questTRexUnlockText": "Schaltet den Kauf von Tyrannosauruseiern auf dem Marktplatz frei",
|
||||
"questRockText": "Entkomme dem Höhlenungetüm",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"rebirthNew": "Wiedergeburt: Ein neues Abenteuer erwartet Dich!",
|
||||
"rebirthUnlock": "Du hast die Wiedergeburt freigeschaltet! Dieser besondere Gegenstand gestattet es Dir ein neues Spiel mit Level 1 zu beginnen, jedoch behältst Du Deine Aufgaben, Erfolge, Haustiere und mehr. Verwende den Gegenstand um Habitica neues Leben einzuhauchen wenn Du glaubst alles erreicht zu haben, oder um neue Features aus dem Blickwinkel eines Anfängers zu erleben!",
|
||||
"rebirthAchievement": "Du hast ein neues Abenteuer begonnen! Das ist Deine <%= number %>. Wiedergeburt. Dein höchstes jemals erreichtes Level ist <%= level %>. Um diesen Erfolg zu stapeln, beginne Dein nächstes Abenteuer wenn Du ein noch höheres Level erreicht hast!",
|
||||
"rebirthAchievement": "Du hast ube die Orb of Rebirth <strong><%+numer%<>/Strong> ohr und höchste Ebene ist <strong><%=",
|
||||
"rebirthAchievement100": "Du hast ein neues Abenteuer begonnen! Das ist Deine <%= number %>. Wiedergeburt. Dein höchstes jemals erreichtes Level ist 100 oder mehr. Um diesen Erfolg zu stapeln, beginne Dein nächstes Abenteuer wenn Du mindestens Level 100 erreicht hast!",
|
||||
"rebirthBegan": "Hat ein neues Abenteuer begonnen",
|
||||
"rebirthText": "Hat <%= rebirths %> neue Abenteuer begonnen",
|
||||
@@ -13,9 +13,10 @@
|
||||
"rebirthComplete": "Du wurdest wiedergeboren!",
|
||||
"nextFreeRebirth": "<strong><%= days %> Tage</strong> bis zur <strong>KOSTENLOSEN</strong> Sphäre der Wiedergeburt",
|
||||
"rebirthUnlockedNewItem": "Ort der Wiedergeburt Freigeschaltet",
|
||||
"rebirthUnlockedOrb": "Ein neues Abendteuer ist bverfügbar!",
|
||||
"rebirthUnlockedOrb": "Ein neues Abenteuer ist verfügbar!",
|
||||
"rebirthUnlockedDesc": "Nutze den Ort der Wiedergeburt um ein neues Leben in dein Habitica Abendteuer zu bekommen wenn du das Gefühl hast, alles erreicht zu haben. Du beginnst wieder bei Level 1 und es beginnt wieder von vorne.",
|
||||
"rebirthNewAchievement": "Neue Auszeichnung",
|
||||
"rebirthNewAdventure": "Ein neues Abendteuer beginnt nun!",
|
||||
"rebirthStackInfo": "Diese Auszeichnung kann sich stapeln, jedes Mal, wenn du den Ort der Wiedergeburt nutzt."
|
||||
"rebirthNewAdventure": "Ein neues Abenteuer beginnt nun!",
|
||||
"rebirthStackInfo": "Diese Auszeichnung kann sich stapeln, jedes Mal, wenn du den Ort der Wiedergeburt nutzt.",
|
||||
"rebirthAchievementPlural": "Du hast ube die Orb of Rebirth <strong><%+numer%<>/Strong> ohr und höchste Ebene ist <strong><%="
|
||||
}
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
"generate": "Erstelle",
|
||||
"getCodes": "Codes erhalten",
|
||||
"webhooks": "WebHooks",
|
||||
"webhooksInfo": "WebHooks bieten Entwicklern die Möglichkeit, Benachrichtigungen zu erhalten, wenn eine bestimmte Aktion durchgeführt wird, z. B. das Bewerten oder Aktualisieren einer Aufgabe oder das Senden einer Nachricht in einer Gruppe. Indem du einen WebHook erstellst, kannst du Änderungen in Habitica wahrnehmen und Anwendungen entwickeln, die auf diese Änderungen reagieren. <br><br> Weitere Informationen und Beispiele findest Du bei den <a target=\"_blank\" href=\"https://habitica.com/apidoc/#api-Webhook-AddWebhook\">API Docs</a>.",
|
||||
"webhooksInfo": "WebHooks bieten Entwicklern die Möglichkeit, Benachrichtigungen zu erhalten, wenn eine bestimmte Aktion durchgeführt wird, z. B. das Bewerten oder Aktualisieren einer Aufgabe oder das Senden einer Nachricht in einer Gruppe. Indem du einen WebHook erstellst, kannst du Änderungen in Habitica wahrnehmen und Anwendungen entwickeln, die auf diese Änderungen reagieren. <br><br> Weitere Informationen und Beispiele findest Du bei den <a target=\"_blank\" href=\"https://apidoc.habitica.com/#api-Webhook-AddWebhook\">API Docs</a>.",
|
||||
"enabled": "Aktiviert",
|
||||
"webhookURL": "WebHook-URL",
|
||||
"invalidUrl": "Ungültige URL",
|
||||
|
||||
@@ -274,5 +274,8 @@
|
||||
"mysterySet202601": "Winter-Ägide set",
|
||||
"subscriptionBillingFYI": "Abos verlängern sich automatisch, sofern du sie nicht mindestens 24 Stunden vor Ablauf des aktuellen Zeitraums kündigst. Du kannst dein Abo in den Einstellungen unter „Abonnement“ verwalten. Die Abbuchung von deinem Konto erfolgt innerhalb von 24 Stunden nach dem Verlängerungsdatum zum gleichen Preis wie bei der ersten Abbuchung.",
|
||||
"subscriptionBillingFYIShort": "Abos verlängern sich automatisch, sofern du sie nicht mindestens 24 Stunden vor Ablauf des aktuellen Zeitraums kündigst. Die Abbuchung von deinem Konto erfolgt innerhalb von 24 Stunden nach dem Verlängerungsdatum zum gleichen Preis wie bei der ersten Abbuchung.",
|
||||
"mysterySet202602": "Sakura Fuchs Set"
|
||||
"mysterySet202602": "Sakura Fuchs Set",
|
||||
"mysterySet202603": "Glyzinie Hexa Satze",
|
||||
"mysterySet202604": "Kuhn Weltraumerkunder Set",
|
||||
"mysterySet202605": "Nachtfall Nimbus Set"
|
||||
}
|
||||
|
||||
@@ -143,5 +143,13 @@
|
||||
"deleteXTasks": "<%= count %> Aufgaben löschen",
|
||||
"confirmDeleteTasks": "Möchtest du diese Aufgaben löschen?",
|
||||
"deleteType": "Lösche <%= type %>",
|
||||
"brokenChallengeTaskCount": "Das ist eine von <%= count %> Aufgaben, die Teil einer Herausforderung sind, die nicht mehr existiert."
|
||||
"brokenChallengeTaskCount": "Das ist eine von <%= count %> Aufgaben, die Teil einer Herausforderung sind, die nicht mehr existiert.",
|
||||
"everyDay": "jeden Tag",
|
||||
"everyXDays": "alle <%= count %> Tage",
|
||||
"everyWeek": "jede Woche",
|
||||
"everyXWeeks": "alle <%= count %> Wochen",
|
||||
"everyMonth": "jeden Monat",
|
||||
"everyYear": "jedes Jahr",
|
||||
"everyXYears": "alle <%= count %> Jahre",
|
||||
"everyXMonths": "alle <%= count %> Monate"
|
||||
}
|
||||
|
||||
@@ -1075,6 +1075,18 @@
|
||||
"backgroundElvenCitadelText": "Elven Citadel",
|
||||
"backgroundElvenCitadelNotes": "Take the scenic journey to an Elven Citadel.",
|
||||
|
||||
"backgrounds062026": "SET 145: Released June 2026",
|
||||
"backgroundBeachWithVolcanoText": "Beach with Volcano",
|
||||
"backgroundBeachWithVolcanoNotes": "Watch nature's wonder on a Beach with a Volcano.",
|
||||
|
||||
"backgrounds072026": "SET 146: Released July 2026",
|
||||
"backgroundTropicalCoralGardenText": "Tropical Coral Garden",
|
||||
"backgroundTropicalCoralGardenNotes": "Dive into a Tropical Coral Garden.",
|
||||
|
||||
"backgrounds082026": "SET 147: Released August 2026",
|
||||
"backgroundVegetableGardenText": "Vegetable Garden",
|
||||
"backgroundVegetableGardenNotes": "Plant tasty greens in a Vegetable Garden.",
|
||||
|
||||
"timeTravelBackgrounds": "Steampunk Backgrounds",
|
||||
"backgroundAirshipText": "Airship",
|
||||
"backgroundAirshipNotes": "Become a sky sailor on board your very own Airship.",
|
||||
|
||||
@@ -587,6 +587,15 @@
|
||||
"weaponSpecialSpring2026MageText": "Maypole Parasol",
|
||||
"weaponSpecialSpring2026MageNotes": "An opportunity to celebrate approaches, and with this pretty parasol pole, you will be ready! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition Spring 2026 Gear.",
|
||||
|
||||
"weaponSpecialSummer2026WarriorText": "Gator Machete",
|
||||
"weaponSpecialSummer2026WarriorNotes": "This flashy, fancy weapon fits right into your swampcore aesthetic. Increases Strength by <%= str %>. Limited Edition Summer 2026 Gear.",
|
||||
"weaponSpecialSummer2026RogueText": "Tsunami Blade",
|
||||
"weaponSpecialSummer2026RogueNotes": "This clever, curvy weapon fits right into your seacore aesthetic. Increases Strength by <%= str %>. Limited Edition Summer 2026 Gear.",
|
||||
"weaponSpecialSummer2026HealerText": "Puffin Lance",
|
||||
"weaponSpecialSummer2026HealerNotes": "This fine, feather-adorned weapon fits right into your islandcore aesthetic. Increases Intelligence by <%= int %>. Limited Edition Summer 2026 Gear.",
|
||||
"weaponSpecialSummer2026MageText": "Tiger Shark Spear",
|
||||
"weaponSpecialSummer2026MageNotes": "This dangerous, double-ended weapon fits right into your oceancore aesthetic. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition Summer 2026 Gear.",
|
||||
|
||||
"weaponMystery201411Text": "Pitchfork of Feasting",
|
||||
"weaponMystery201411Notes": "Stab your enemies or dig in to your favorite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.",
|
||||
"weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth",
|
||||
@@ -637,6 +646,10 @@
|
||||
"weaponMystery202601Notes": "An icy bubble shield that grants magical protection from opposing elements. Confers no benefit. January 2026 Subscriber Item.",
|
||||
"weaponMystery202603Text": "Wisteria Wizard Staff",
|
||||
"weaponMystery202603Notes": "Cast spells to warm the spring air and encourage the blossoms to bud! Confers no benefit. March 2026 Subscriber Item.",
|
||||
"weaponMystery202607Text": "Oceanmancer's Fishy Familiars",
|
||||
"weaponMystery202607Notes": "These colorful companions will channel your aqueous abilities. Confers no benefit. July 2026 Subscriber Item.",
|
||||
"weaponMystery202608Text": "Beaming Magenta Blade",
|
||||
"weaponMystery202608Notes": "Bright, beautiful, dangerous to your undone Dailies. Confers no benefit. August 2026 Subscriber Item.",
|
||||
|
||||
"weaponMystery301404Text": "Steampunk Cane",
|
||||
"weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.",
|
||||
@@ -865,6 +878,14 @@
|
||||
"weaponArmoireBambooFluteNotes": "Hwhoooo! Hu-whooooo! Gather your party for a meditation session or self-care nap while relaxing to tunes played on this bamboo flute. Increases Constitution and Intelligence by <%= attrs %> each. Enchanted Armoire: Musical Instrument Set 2 (Item 2 of 3)",
|
||||
"weaponArmoirePrettyPinkParasolText": "Pretty Pink Parasol",
|
||||
"weaponArmoirePrettyPinkParasolNotes": "Pretty and practical is the preeminent permutation. And for a particularly impressive presentation, give this parasol a spin! Increases all stats by <%= attrs %> each. Enchanted Armoire: Pretty in Pink Set (Item 1 of 2)",
|
||||
"weaponArmoireBrightRainbowKiteText": "Rainbow Kite",
|
||||
"weaponArmoireBrightRainbowKiteNotes": "This kite’s colors are bright and loud. Watching it soar high will make you proud! Increases all stats by <%= attrs %> each. Enchanted Armoire: Rainbow Kite Set (Item 1 of 2).",
|
||||
"weaponArmoirePastelRainbowKiteText": "Pastel Rainbow Kite",
|
||||
"weaponArmoirePastelRainbowKiteNotes": "This kite’s colors are muted and soft. It dances and spins as it soars aloft! Increases all stats by <%= attrs %> each. Enchanted Armoire: Rainbow Kite Set (Item 2 of 2).",
|
||||
"weaponArmoireKendoShinaiText": "Kendo Shinai",
|
||||
"weaponArmoireKendoShinaiNotes": "Light and soft, you can use this bamboo practice sword as you strive to improve yourself. Increases Strength by <%= str %>. Enchanted Armoire: Kendo Set (Item 3 of 3).",
|
||||
"weaponArmoireGardenRakeText": "Garden Rake",
|
||||
"weaponArmoireGardenRakeNotes": "Step 1: Rake all the fallen leaves into a giant pile. Step 2: Celebrate a job well done by jumping into the pile. Step 3: Repeat. Increases Constitution by <%= con %>. Enchanted Armoire: Gardener Set 2 (Item 1 of 2).",
|
||||
|
||||
"armor": "armor",
|
||||
"armorCapitalized": "Armor",
|
||||
@@ -1432,6 +1453,15 @@
|
||||
"armorSpecialSpring2026MageText": "Maypole Dancer Outfit",
|
||||
"armorSpecialSpring2026MageNotes": "Arrive ready to dance, picnic, and enjoy the warm weather spring brings. Increases Intelligence by <%= int %>. Limited Edition Spring 2026 Gear.",
|
||||
|
||||
"armorSpecialSummer2026WarriorText": "Gator Suit",
|
||||
"armorSpecialSummer2026WarriorNotes": "Conceal yourself in this suit, but don’t hide from your problems. Gather your gator grit and meet your tasks like the alligator you are. Increases Constitution by <%= con %>. Limited Edition Summer 2026 Gear.",
|
||||
"armorSpecialSummer2026RogueText": "Tsunami Suit",
|
||||
"armorSpecialSummer2026RogueNotes": "Cloak yourself in this tsunami suit, but don’t hide from your problems. Summon a strong storm to have your back and meet your tasks like the adventurer you are. Increases Perception by <%= per %>. Limited Edition Summer 2026 Gear.",
|
||||
"armorSpecialSummer2026HealerText": "Puffin Suit",
|
||||
"armorSpecialSummer2026HealerNotes": "Fit yourself in this suit, but don’t hide from your problems. Produce your puffin power and tackle your tasks like the puffin you are. Increases Constitution by <%= con %>. Limited Edition Summer 2026 Gear.",
|
||||
"armorSpecialSummer2026MageText": "Tiger Shark Suit",
|
||||
"armorSpecialSummer2026MageNotes": "Slide into this suit, but don’t hide from your problems. Show your shark shine and swim right up to face those tasks like the shark you are. Increases Intelligence by <%= int %>. Limited Edition Summer 2026 Gear.",
|
||||
|
||||
"armorMystery201402Text": "Messenger Robes",
|
||||
"armorMystery201402Notes": "Shimmering and strong, these robes have many pockets to carry letters. Confers no benefit. February 2014 Subscriber Item.",
|
||||
"armorMystery201403Text": "Forest Walker Armor",
|
||||
@@ -1826,6 +1856,8 @@
|
||||
"armorArmoireSoftYellowSuitNotes": "Yellow is an energetic color. Wear this to bed, and you will wake up with the sun the next morning ready to tackle a day full of tasks. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Yellow Loungewear Set (Item 2 of 3).",
|
||||
"armorArmoireHandstandOutfitText": "Handstand",
|
||||
"armorArmoireHandstandOutfitNotes": "Things sure do look different when you’re upside-down, don’t they? If you’re feeling stuck, it’s time for a fresh perspective! Increases Perception by <%= per %>. Enchanted Armoire: Handstand Set (Item 1 of 1).",
|
||||
"armorArmoireKendoBoguText": "Kendo Bōgu",
|
||||
"armorArmoireKendoBoguNotes": "This might be training armor, but it offers more than enough protection for your path ahead. Increases Constitution by <%= con %>. Enchanted Armoire: Kendo Set (Item 2 of 3).",
|
||||
|
||||
"headgear": "helm",
|
||||
"headgearCapitalized": "Headgear",
|
||||
@@ -2387,6 +2419,15 @@
|
||||
"headSpecialSpring2026MageText": "Mayflower Crown",
|
||||
"headSpecialSpring2026MageNotes": "Make a joyous statement with bright blooms encircling your head. Increases Perception by <%= per %>. Limited Edition Spring 2026 Gear.",
|
||||
|
||||
"headSpecialSummer2026WarriorText": "Gator Helm",
|
||||
"headSpecialSummer2026WarriorNotes": "Go forth and be productive! If you get any pushback, just snap back and show your sharp teeth. Increases Strength by <%= str %>. Limited Edition Summer 2026 Gear.",
|
||||
"headSpecialSummer2026RogueText": "Tsunami Helm",
|
||||
"headSpecialSummer2026RogueNotes": "Go forth and be productive! If you lose your way, just follow the flow. Increases Perception by <%= per %>. Limited Edition Summer 2026 Gear.",
|
||||
"headSpecialSummer2026HealerText": "Puffin Helm",
|
||||
"headSpecialSummer2026HealerNotes": "Go forth and be productive! If you encounter complications, just gather them up in your colorful beak and take them somewhere else. Increases Intelligence by <%= int %>. Limited Edition Summer 2026 Gear.",
|
||||
"headSpecialSummer2026MageText": "Tiger Shark Helm",
|
||||
"headSpecialSummer2026MageNotes": "Go forth and be productive! If an obstacle dares to get in your way, just crush it with your mighty jaws. Increases Perception by <%= per %>. Limited Edition Summer 2026 Gear.",
|
||||
|
||||
"headSpecialGaymerxText": "Rainbow Warrior Helm",
|
||||
"headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.",
|
||||
|
||||
@@ -2578,6 +2619,8 @@
|
||||
"headMystery202603Notes": "This jaunty hat not only enhances your magical ability, it also has a lovely spring scent! Confers no benefit. March 2026 Subscriber Item.",
|
||||
"headMystery202604Text": "Audacious Astronaut Helmet",
|
||||
"headMystery202604Notes": "In space, no one can hear you check off your To Do’s. But the real reward is your sense of personal accomplishment! Confers no benefit. April 2026 Subscriber Item.",
|
||||
"headMystery202606Text": "Holiday Hat",
|
||||
"headMystery202606Notes": "Holidays are made for enjoying the sunshine - but don’t get burned! Confers no benefit. June 2026 Subscriber Item.",
|
||||
|
||||
"headMystery301404Text": "Fancy Top Hat",
|
||||
"headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
|
||||
@@ -2812,6 +2855,8 @@
|
||||
"headArmoireFloppyYellowHatNotes": "Many spells have been sewn into this simple hat, giving it a youthful yellow color. Increases all stats by <%= attrs %> each. Enchanted Armoire: Yellow Loungewear Set (Item 1 of 3).",
|
||||
"headArmoireVerdantArmingCapText": "Verdant Page Arming Cap",
|
||||
"headArmoireVerdantArmingCapNotes": "This comfy, cushioned coif makes you battle-ready and helps you withstand anything heavy that could come your way. Increases Perception and Constitution by <%= attrs %> each. Enchanted Armoire: Verdant Page Set (Item 1 of 2).",
|
||||
"headArmoireKendoMenText": "Kendo Men",
|
||||
"headArmoireKendoMenNotes": "You might be surprised by how well you can see through the grille as you follow the way of the sword. Increases Perception by <%= per %>. Enchanted Armoire: Kendo Set (Item 1 of 3).",
|
||||
|
||||
"offhand": "off-hand item",
|
||||
"offHandCapitalized": "Off-Hand Item",
|
||||
@@ -3136,6 +3181,11 @@
|
||||
"shieldSpecialSpring2026HealerText": "Snowdrop Leaf",
|
||||
"shieldSpecialSpring2026HealerNotes": "Create a light breeze with this fan as the days grow warmer. It doubles as a writing utensil in a pinch. Increases Constitution by <%= con %>. Limited Edition Spring 2026 Gear.",
|
||||
|
||||
"shieldSpecialSummer2026WarriorText": "Gator Shield",
|
||||
"shieldSpecialSummer2026WarriorNotes": "Deflect oncoming challenges with this stylish, shiny shield. And when you’ve successfully cleared your list, crank up the music and have a party! Increases Constitution by <%= con %>. Limited Edition Summer 2026 Gear.",
|
||||
"shieldSpecialSummer2026HealerText": "Puffin Potion",
|
||||
"shieldSpecialSummer2026HealerNotes": "Keep your colony of fellow puffins healthy with this potion. It tastes great with fish! Increases Constitution by <%= con %>. Limited Edition Summer 2026 Gear.",
|
||||
|
||||
"shieldMystery201601Text": "Resolution Slayer",
|
||||
"shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.",
|
||||
"shieldMystery201701Text": "Time-Freezer Shield",
|
||||
@@ -3168,6 +3218,12 @@
|
||||
"shieldMystery202511Notes": "This rugged shield of icy rock protects you from bad Habits but won't freeze your hands. Confers no benefit. November 2025 Subscriber Item.",
|
||||
"shieldMystery202605Text": "Nightfall Shield",
|
||||
"shieldMystery202605Notes": "Let the moon’s shining light protect you from dangers in the dark. Confers no benefit. May 2026 Subscriber Item.",
|
||||
"shieldMystery202606Text": "Holiday Hammock",
|
||||
"shieldMystery202606Notes": "Between tasks, hop in this hammock, relax, and enjoy the scenery! Confers no benefit. June 2026 Subscriber Item.",
|
||||
"shieldMystery202607Text": "Oceanmancer's Briny Bubble",
|
||||
"shieldMystery202607Notes": "Tumultuous waters bend to your mighty magical will. Confers no benefit. July 2026 Subscriber Item.",
|
||||
"shieldMystery202608Text": "Brilliant Emerald Blade",
|
||||
"shieldMystery202608Notes": "Slice and dice all your tasks into manageable pieces! Confers no benefit. August 2026 Subscriber Item.",
|
||||
|
||||
"shieldMystery301405Text": "Clock Shield",
|
||||
"shieldMystery301405Notes": "Time is on your side with this towering clock shield! Confers no benefit. June 3015 Subscriber Item.",
|
||||
@@ -3354,6 +3410,8 @@
|
||||
"shieldArmoireSoftYellowPillowNotes": "The experienced warrior packs a pillow for any expedition. Grow and shine as you consolidate all you’ve learned during past adventures… even while you nap. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Yellow Loungewear Set (Item 3 of 3).",
|
||||
"shieldArmoireVerdantBannerText": "Verdant Page Banner",
|
||||
"shieldArmoireVerdantBannerNotes": "Wave your banner high to signal friends it’s time to rally together! Increases Intelligence by <%= int %>. Enchanted Armoire: Verdant Page Set (Item 2 of 2).",
|
||||
"shieldArmoireGardenHoseText": "Garden Hose",
|
||||
"shieldArmoireGardenHoseNotes": "This magical hose never kinks and can infinitely stretch to reach every inch of your space. All your flowers, trees, shrubs, and thirsty pets can enjoy a drink from it. Increases Perception by <%= per %>. Enchanted Armoire: Gardener Set 2 (Item 2 of 2).",
|
||||
|
||||
"back": "Back Accessory",
|
||||
"backBase0Text": "No Back Accessory",
|
||||
@@ -3805,6 +3863,8 @@
|
||||
"eyewearMystery202503Notes": "This piercing gaze will strike terror into any fighter who dares to challenge you! Confers no benefit. March 2025 Subscriber Item.",
|
||||
"eyewearMystery202510Text": "Gliding Ghoul Eyes",
|
||||
"eyewearMystery202510Notes": "These spooky eyes glow like the Harvest Moon. Confers no benefit. October 2025 Subscriber Item.",
|
||||
"eyewearMystery202606Text": "Holiday Shades",
|
||||
"eyewearMystery202606Notes": "Your eyes are shaded but your outlook is still sunny! Confers no benefit. June 2026 Subscriber Item.",
|
||||
|
||||
"eyewearMystery301404Text": "Eyewear Goggles",
|
||||
"eyewearMystery301404Notes": "No eyewear could be fancier than a pair of goggles - except, perhaps, for a monocle. Confers no benefit. April 3015 Subscriber Item.",
|
||||
|
||||
@@ -209,44 +209,48 @@
|
||||
"fall2023BogCreatureHealerSet": "Bog Creature (Healer)",
|
||||
"winter2024SnowyOwlRogueSet": "Snowy Owl (Rogue)",
|
||||
"winter2024FrozenHealerSet": "Frozen (Healer)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Peppermint Bark Set (Warrior)",
|
||||
"winter2024NarwhalWizardMageSet": "Narwhal Wizard Set (Mage)",
|
||||
"spring2024FluoriteWarriorSet": "Fluorite Set (Warrior)",
|
||||
"spring2024HibiscusMageSet": "Hibiscus Set (Mage)",
|
||||
"spring2024BluebirdHealerSet": "Bluebird Set (Healer)",
|
||||
"spring2024MeltingSnowRogueSet": "Melting Snow Set (Rogue)",
|
||||
"summer2024WhaleSharkWarriorSet": "Whale Shark Set (Warrior)",
|
||||
"summer2024SeaAnemoneMageSet": "Sea Anemone Set (Mage)",
|
||||
"summer2024SeaSnailHealerSet": "Sea Snail Set (Healer)",
|
||||
"summer2024NudibranchRogueSet": "Nudibranch Set (Rogue)",
|
||||
"fall2024FieryImpWarriorSet": "Fiery Imp Set (Warrior)",
|
||||
"fall2024UnderworldSorcerorMageSet": "Underworld Sorceror Set (Mage)",
|
||||
"fall2024SpaceInvaderHealerSet": "Space Invader Set (Healer)",
|
||||
"fall2024BlackCatRogueSet": "Black Cat Set (Rogue)",
|
||||
"winter2025MooseWarriorSet": "Moose Set (Warrior)",
|
||||
"winter2025AuroraMageSet": "Aurora Set (Mage)",
|
||||
"winter2025StringLightsHealerSet": "String Lights Set (Healer)",
|
||||
"winter2025SnowRogueSet": "Snow Set (Rogue)",
|
||||
"spring2025SunshineWarriorSet": "Sunshine Set (Warrior)",
|
||||
"spring2025CrystalPointRogueSet": "Crystal Point Set (Rogue)",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria Set (Healer)",
|
||||
"spring2025MantisMageSet": "Mantis Set (Mage)",
|
||||
"summer2025ScallopWarriorSet": "Scallop Set (Warrior)",
|
||||
"summer2025SquidRogueSet": "Squid Set (Rogue)",
|
||||
"summer2025SeaAngelHealerSet": "Sea Angel Set (Healer)",
|
||||
"summer2025FairyWrasseMageSet": "Fairy Wrasse Set (Mage)",
|
||||
"fall2025SasquatchWarriorSet": "Sasquatch Set (Warrior)",
|
||||
"fall2025SkeletonRogueSet": "Skeleton Set (Rogue)",
|
||||
"fall2025KoboldHealerSet": "Kobold Set (Healer)",
|
||||
"fall2025MaskedGhostMageSet": "Masked Ghost Set (Mage)",
|
||||
"winter2026RimeReaperWarriorSet": "Rime Reaper Set (Warrior)",
|
||||
"winter2026SkiRogueSet": "Ski Set (Rogue)",
|
||||
"winter2026PolarBearHealerSet": "Polar Bear Set (Healer)",
|
||||
"winter2026MidwinterCandleMageSet": "Midwinter Candle Set (Mage)",
|
||||
"spring2026FrogWarriorSet": "Frog Set (Warrior)",
|
||||
"spring2026BranchRogueSet": "Spring Branch Set (Rogue)",
|
||||
"spring2026SnowdropHealerSet": "Snowdrop Set (Healer)",
|
||||
"spring2026MaypoleMageSet": "Maypole Set (Mage)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Peppermint Bark (Warrior)",
|
||||
"winter2024NarwhalWizardMageSet": "Narwhal Wizard (Mage)",
|
||||
"spring2024FluoriteWarriorSet": "Fluorite (Warrior)",
|
||||
"spring2024HibiscusMageSet": "Hibiscus (Mage)",
|
||||
"spring2024BluebirdHealerSet": "Bluebird (Healer)",
|
||||
"spring2024MeltingSnowRogueSet": "Melting Snow (Rogue)",
|
||||
"summer2024WhaleSharkWarriorSet": "Whale Shark (Warrior)",
|
||||
"summer2024SeaAnemoneMageSet": "Sea Anemone (Mage)",
|
||||
"summer2024SeaSnailHealerSet": "Sea Snail (Healer)",
|
||||
"summer2024NudibranchRogueSet": "Nudibranch (Rogue)",
|
||||
"fall2024FieryImpWarriorSet": "Fiery Imp (Warrior)",
|
||||
"fall2024UnderworldSorcerorMageSet": "Underworld Sorceror (Mage)",
|
||||
"fall2024SpaceInvaderHealerSet": "Space Invader (Healer)",
|
||||
"fall2024BlackCatRogueSet": "Black Cat (Rogue)",
|
||||
"winter2025MooseWarriorSet": "Moose (Warrior)",
|
||||
"winter2025AuroraMageSet": "Aurora (Mage)",
|
||||
"winter2025StringLightsHealerSet": "String Lights (Healer)",
|
||||
"winter2025SnowRogueSet": "Snow (Rogue)",
|
||||
"spring2025SunshineWarriorSet": "Sunshine (Warrior)",
|
||||
"spring2025CrystalPointRogueSet": "Crystal Point (Rogue)",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria (Healer)",
|
||||
"spring2025MantisMageSet": "Mantis (Mage)",
|
||||
"summer2025ScallopWarriorSet": "Scallop (Warrior)",
|
||||
"summer2025SquidRogueSet": "Squid (Rogue)",
|
||||
"summer2025SeaAngelHealerSet": "Sea Angel (Healer)",
|
||||
"summer2025FairyWrasseMageSet": "Fairy Wrasse (Mage)",
|
||||
"fall2025SasquatchWarriorSet": "Sasquatch (Warrior)",
|
||||
"fall2025SkeletonRogueSet": "Skeleton (Rogue)",
|
||||
"fall2025KoboldHealerSet": "Kobold (Healer)",
|
||||
"fall2025MaskedGhostMageSet": "Masked Ghost (Mage)",
|
||||
"winter2026RimeReaperWarriorSet": "Rime Reaper (Warrior)",
|
||||
"winter2026SkiRogueSet": "Ski (Rogue)",
|
||||
"winter2026PolarBearHealerSet": "Polar Bear (Healer)",
|
||||
"winter2026MidwinterCandleMageSet": "Midwinter Candle (Mage)",
|
||||
"spring2026FrogWarriorSet": "Frog (Warrior)",
|
||||
"spring2026BranchRogueSet": "Spring Branch (Rogue)",
|
||||
"spring2026SnowdropHealerSet": "Snowdrop (Healer)",
|
||||
"spring2026MaypoleMageSet": "Maypole (Mage)",
|
||||
"summer2026AlligatorWarriorSet": "Alligator (Warrior)",
|
||||
"summer2026PuffinHealerSet": "Puffin (Healer)",
|
||||
"summer2026TigerSharkMageSet": "Tiger Shark (Mage)",
|
||||
"summer2026TsunamiRogueSet": "Tsunami (Rogue)",
|
||||
"winterPromoGiftHeader": "GIFT A SUBSCRIPTION, GET ONE FREE!",
|
||||
"winterPromoGiftDetails1": "Until January 6th only, when you gift somebody a subscription, you get the same subscription for yourself for free!",
|
||||
"winterPromoGiftDetails2": "Please note that if you or your gift recipient already have a recurring subscription, the gifted subscription will only start after that subscription is cancelled or has expired. Thanks so much for your support! <3",
|
||||
|
||||
@@ -33,7 +33,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": "We'd love to hear your feedback! If you'd like to share any, enter it below. It will be anonymous unless you choose to include your contact details.",
|
||||
"feedbackPlaceholder": "Add your feedback",
|
||||
"dataExport": "Data Export",
|
||||
"saveData": "Here are a few options for saving your data.",
|
||||
@@ -82,8 +82,8 @@
|
||||
"resetText2": "Another option is using an <b>Orb of Rebirth</b>, which will reset everything else while preserving your Tasks and Equipment.",
|
||||
"resetTextLocal": "If you're absolutely certain, type your password into the text box below.",
|
||||
"resetTextSocial": "If you're absolutely certain, type <b>\"<%= magicWord %>\"</b> into the text box below.",
|
||||
"deleteLocalAccountText": "<b>Are you sure?</b> This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type your password into the text box below.",
|
||||
"deleteSocialAccountText": "<b>Are you sure?</b> This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type <b>\"<%= magicWord %>\"</b> into the text box below.",
|
||||
"deleteLocalAccountText": "<b>Are you sure?</b> This action is permanent. Deleting your account will remove all of your data, and it cannot be recovered. Gems will not be refunded.<br><br>Please allow up to 24 hours for account deletion to complete, and up to 30 days for analytics data to be removed if you opted in. Once complete, you'll be able to register for a new Habitica account using your previous login information.<br><br>To continue, type your password below.",
|
||||
"deleteSocialAccountText": "<b>Are you sure?</b> This action is permanent. Deleting your account will remove all of your data, and it cannot be recovered. Gems will not be refunded.<br><br>Please allow up to 24 hours for account deletion to complete, and up to 30 days for analytics data to be removed if you opted in. Once complete, you'll be able to register for a new Habitica account using your previous login information.<br><br>To continue, type <%= magicWord %> below.",
|
||||
"API": "API",
|
||||
"APICopied": "API token copied to clipboard.",
|
||||
"APITokenTitle": "API Token",
|
||||
@@ -163,7 +163,7 @@
|
||||
"generate": "Generate",
|
||||
"getCodes": "Get Codes",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Webhooks provide a way for developers to receive notifications when a particular action is performed, such as scoring or updating a Task, or sending a message in a Group. By creating a webhook, you will be able to listen to changes in Habitica and build apps that respond to these changes.<br><br>For additional information and examples on webhooks, please visit our <a target=\"_blank\" href=\"https://habitica.com/apidoc/#api-Webhook-AddWebhook\">API Docs</a>.",
|
||||
"webhooksInfo": "Webhooks provide a way for developers to receive notifications when a particular action is performed, such as scoring or updating a Task, or sending a message in a Group. By creating a webhook, you will be able to listen to changes in Habitica and build apps that respond to these changes.<br><br>For additional information and examples on webhooks, please visit our <a target=\"_blank\" href=\"https://apidoc.habitica.com/#api-Webhook-AddWebhook\">API Docs</a>.",
|
||||
"enabled": "Enabled",
|
||||
"webhookURL": "Webhook URL",
|
||||
"addWebhook": "Add Webhook",
|
||||
|
||||
@@ -186,6 +186,9 @@
|
||||
"mysterySet202603": "Wisteria Wizard Set",
|
||||
"mysterySet202604": "Audacious Astronaut Set",
|
||||
"mysterySet202605": "Nightfall Nimbus Set",
|
||||
"mysterySet202606": "Holiday Hammock Set",
|
||||
"mysterySet202607": "Oceanmancer Set",
|
||||
"mysterySet202608": "Beaming Blades Set",
|
||||
"mysterySet301404": "Steampunk Standard Set",
|
||||
"mysterySet301405": "Steampunk Accessories Set",
|
||||
"mysterySet301703": "Peacock Steampunk Set",
|
||||
|
||||
@@ -123,6 +123,16 @@
|
||||
"dayOfMonth": "Day of the Month",
|
||||
"month": "Month",
|
||||
"months": "Months",
|
||||
"every": "every",
|
||||
"everyDay": "every day",
|
||||
"everyXDays": "every <%= count %> days",
|
||||
"everyWeek": "every week",
|
||||
"everyXWeeks": "every <%= count %> weeks",
|
||||
"everyMonth": "every month",
|
||||
"everyXMonths": "every <%= count %> months",
|
||||
"everyYear": "every year",
|
||||
"everyXYears": "every <%= count %> years",
|
||||
"fifthWeekWarning": "This task <strong>will not</strong> appear due during months with fewer <%= day %>s",
|
||||
"week": "Week",
|
||||
"weeks": "Weeks",
|
||||
"year": "Year",
|
||||
|
||||
@@ -941,5 +941,14 @@
|
||||
"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."
|
||||
"backgroundOnAStrangePlanetNotes": "Venture where no Habitican has gone before: On a Strange Planet.",
|
||||
"backgroundBeachWithVolcanoText": "Beach with Volcano",
|
||||
"backgrounds072026": "SET 146: Released July 2026",
|
||||
"backgroundTropicalCoralGardenText": "Tropical Coral Garden",
|
||||
"backgroundTropicalCoralGardenNotes": "Dive into a Tropical Coral Garden.",
|
||||
"backgrounds082026": "SET 147: Released August 2026",
|
||||
"backgroundVegetableGardenText": "Vegetable Garden",
|
||||
"backgroundVegetableGardenNotes": "Plant tasty greens in a Vegetable Garden.",
|
||||
"backgrounds062026": "SET 145: Released June 2026",
|
||||
"backgroundBeachWithVolcanoNotes": "Watch nature’s wonder on a Beach with a Volcano."
|
||||
}
|
||||
|
||||
@@ -73,9 +73,9 @@
|
||||
"weaponHealer3Notes": "Purifies poison at a touch. Increases Intelligence by <%= int %>.",
|
||||
"weaponHealer4Text": "Physician Rod",
|
||||
"weaponHealer4Notes": "As much a badge of office as a healing tool. Increases Intelligence by <%= int %>.",
|
||||
"weaponHealer5Text": "Royal Scepter",
|
||||
"weaponHealer5Text": "Royal Sceptre",
|
||||
"weaponHealer5Notes": "Fit to grace the hand of a monarch, or of one who stands at a monarch's right hand. Increases Intelligence by <%= int %>.",
|
||||
"weaponHealer6Text": "Golden Scepter",
|
||||
"weaponHealer6Text": "Golden Sceptre",
|
||||
"weaponHealer6Notes": "Soothes the pain of all who look upon it. Increases Intelligence by <%= int %>.",
|
||||
"weaponSpecial0Text": "Dark Souls Blade",
|
||||
"weaponSpecial0Notes": "Feasts upon foes' life essence to power its wicked strokes. Increases Strength by <%= str %>.",
|
||||
@@ -151,8 +151,8 @@
|
||||
"weaponSpecialWinter2015WarriorNotes": "This delicious sword probably attracts monsters… but you’re up for the challenge! Increases Strength by <%= str %>. Limited Edition 2014-2015 Winter Gear.",
|
||||
"weaponSpecialWinter2015MageText": "Winter-lit Staff",
|
||||
"weaponSpecialWinter2015MageNotes": "The light of this crystal staff fills hearts with cheer. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2014-2015 Winter Gear.",
|
||||
"weaponSpecialWinter2015HealerText": "Soothing Scepter",
|
||||
"weaponSpecialWinter2015HealerNotes": "This scepter warms sore muscles and soothes away stress. Increases Intelligence by <%= int %>. Limited Edition 2014-2015 Winter Gear.",
|
||||
"weaponSpecialWinter2015HealerText": "Soothing Sceptre",
|
||||
"weaponSpecialWinter2015HealerNotes": "This sceptre warms sore muscles and soothes away stress. Increases Intelligence by <%= int %>. Limited Edition 2014-2015 Winter Gear.",
|
||||
"weaponSpecialSpring2015RogueText": "Exploding Squeak",
|
||||
"weaponSpecialSpring2015RogueNotes": "Don’t let the sound fool you—these explosives pack a punch. Increases Strength by <%= str %>. Limited Edition 2015 Spring Gear.",
|
||||
"weaponSpecialSpring2015WarriorText": "Bone Club",
|
||||
@@ -355,8 +355,8 @@
|
||||
"weaponArmoireLamplighterNotes": "This long pole has a wick on one end for lighting lamps, and a hook on the other end for putting them out. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Lamplighter's Set (Item 1 of 4).",
|
||||
"weaponArmoireCoachDriversWhipText": "Coach Driver's Whip",
|
||||
"weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 3 of 3).",
|
||||
"weaponArmoireScepterOfDiamondsText": "Scepter of Diamonds",
|
||||
"weaponArmoireScepterOfDiamondsNotes": "This scepter shines with a warm red glow as it grants you increased willpower. Increases Strength by <%= str %>. Enchanted Armoire: King of Diamonds Set (Item 3 of 4).",
|
||||
"weaponArmoireScepterOfDiamondsText": "Sceptre of Diamonds",
|
||||
"weaponArmoireScepterOfDiamondsNotes": "This sceptre shines with a warm red glow as it grants you increased willpower. Increases Strength by <%= str %>. Enchanted Armoire: King of Diamonds Set (Item 3 of 4).",
|
||||
"weaponArmoireFlutteryArmyText": "Fluttery Army",
|
||||
"weaponArmoireFlutteryArmyNotes": "This group of scrappy lepidopterans is ready to flap fiercely and cool down your reddest tasks! Increases Constitution, Intelligence, and Strength by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 3 of 4).",
|
||||
"weaponArmoireCobblersHammerText": "Cobbler's Hammer",
|
||||
@@ -1217,7 +1217,7 @@
|
||||
"headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
|
||||
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
|
||||
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green colour. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Green Loungewear Set (Item 1 of 3).",
|
||||
"headArmoireCannoneerBandannaText": "Cannoneer Bandanna",
|
||||
"headArmoireCannoneerBandannaText": "Cannoneer Bandana",
|
||||
"headArmoireCannoneerBandannaNotes": "'Tis a cannoneer's life for me! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cannoneer Set (Item 3 of 3).",
|
||||
"headArmoireFalconerCapText": "Falconer Cap",
|
||||
"headArmoireFalconerCapNotes": "This jaunty cap helps you better understand birds of prey. Increases Intelligence by <%= int %>. Enchanted Armoire: Falconer Set (Item 2 of 3).",
|
||||
@@ -3324,7 +3324,7 @@
|
||||
"shieldArmoireFlyFishingRodNotes": "Put a lure on this long and flexible rod and fish will mistake it for an insect every single time. Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Fly Fishing Set (Item 3 of 3).",
|
||||
"shieldArmoireTrustyPencilNotes": "You know what they say: the pencil is mightier than the sword-cil. Wait… that doesn’t sound quite right… Increases Intelligence by <%= int %>. Enchanted Armoire: School Uniform Set (Item 4 of 4).",
|
||||
"shieldArmoireSoftYellowPillowNotes": "The experienced warrior packs a pillow for any expedition. Grow and shine as you consolidate all you’ve learned during past adventures… even while you nap. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Yellow Loungewear Set (Item 3 of 3).",
|
||||
"shieldArmoireVerdantBannerNotes": "Wave your banner high to signal friends that it’s time to rally together! Intelligence by <%= int %>. Enchanted Armoire: Verdant Page Set (Item 2 of 2).",
|
||||
"shieldArmoireVerdantBannerNotes": "Wave your banner high to signal friends that it’s time to rally together! Increases Intelligence by <%= int %>. Enchanted Armoire: Verdant Page Set (Item 2 of 2).",
|
||||
"backMystery202505Notes": "Earn your stripes swooping and soaring on these aerodynamic wings. Confers no benefit. May 2025 Subscriber Item.",
|
||||
"backMystery202605Notes": "A glowing aureole of moonlight and starlight to illuminate the darkest night. Confers no benefit. May 2026 Subscriber Item.",
|
||||
"bodyMystery202509Notes": "This scarf shields your face from the wind and also—looks pretty darn cool. Confers no benefit. September 2025 Subscriber Item.",
|
||||
@@ -3549,5 +3549,61 @@
|
||||
"eyewearMystery202204ANotes": "What’s your mood today? Express yourself with these fun screens. Confers no benefit. April 2022 Subscriber Item.",
|
||||
"eyewearArmoireClownsNoseNotes": "This accessory will make sure everyone “nose” you’re a clown! Increases Intelligence by <%= int %>. Enchanted Armoire: Clown Set (Item 2 of 5).",
|
||||
"eyewearArmoireComedyMaskNotes": "Cheerily! Here is a quaint mask for thine happy heart, playing, heralding joy, and expressing merriment and mirth upon the stage. Increases Constitution by <%= con %>. Enchanted Armoire: Theatre Masks Set (Item 1 of 2).",
|
||||
"eyewearArmoireTragedyMaskNotes": "Alas! Here sits a heavy mask for thine poor player, strutting, fretting, and expressing woe and sorrow upon the stage. Increases Intelligence by <%= int %>. Enchanted Armoire: Theatre Masks Set (Item 2 of 2)."
|
||||
"eyewearArmoireTragedyMaskNotes": "Alas! Here sits a heavy mask for thine poor player, strutting, fretting, and expressing woe and sorrow upon the stage. Increases Intelligence by <%= int %>. Enchanted Armoire: Theatre Masks Set (Item 2 of 2).",
|
||||
"weaponSpecialSummer2026WarriorText": "Gator Machete",
|
||||
"weaponSpecialSummer2026WarriorNotes": "This flashy, fancy weapon fits right into your swampcore aesthetic. Increases Strength by <%= str %>. Limited Edition Summer 2026 Gear.",
|
||||
"weaponSpecialSummer2026RogueText": "Tsunami Blade",
|
||||
"weaponSpecialSummer2026RogueNotes": "This clever, curvy weapon fits right into your seacore aesthetic. Increases Strength by <%= str %>. Limited Edition Summer 2026 Gear.",
|
||||
"weaponSpecialSummer2026HealerText": "Puffin Lance",
|
||||
"weaponSpecialSummer2026HealerNotes": "This fine, feather-adorned weapon fits right into your islandcore aesthetic. Increases Intelligence by <%= int %>. Limited Edition Summer 2026 Gear.",
|
||||
"weaponSpecialSummer2026MageText": "Tiger Shark Spear",
|
||||
"weaponSpecialSummer2026MageNotes": "This dangerous, double-ended weapon fits right into your oceancore aesthetic. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition Summer 2026 Gear.",
|
||||
"weaponMystery202607Text": "Oceanmancer’s Fishy Familiars",
|
||||
"weaponMystery202607Notes": "These colourful companions will channel your aqueous abilities. Confers no benefit. July 2026 Subscriber Item.",
|
||||
"weaponArmoireGardenRakeNotes": "Step 1: Rake all the fallen leaves into a giant pile. Step 2: Celebrate a job well done by jumping into the pile. Step 3: Repeat. Increases Constitution by <%= con %>. Enchanted Armoire: Gardener Set 2 (Item 1 of 2).",
|
||||
"armorSpecialSummer2026WarriorNotes": "Conceal yourself in this suit, but don’t hide from your problems. Gather your gator grit and meet your tasks like the alligator you are. Increases Constitution by <%= con %>. Limited Edition Summer 2026 Gear.",
|
||||
"armorSpecialSummer2026MageNotes": "Slide into this suit, but don’t hide from your problems. Show your shark shine and swim right up to face those tasks like the shark you are. Increases Intelligence by <%= int %>. Limited Edition Summer 2026 Gear.",
|
||||
"armorArmoireKendoBoguNotes": "This might be training armour, but it offers more than enough protection for your path ahead. Increases Constitution by <%= con %>. Enchanted Armoire: Kendo Set (Item 2 of 3).",
|
||||
"headSpecialSummer2026WarriorText": "Gator Helm",
|
||||
"headSpecialSummer2026HealerNotes": "Go forth and be productive! If you encounter complications, just gather them up in your colourful beak and take them somewhere else. Increases Intelligence by <%= int %>. Limited Edition Summer 2026 Gear.",
|
||||
"headSpecialSummer2026WarriorNotes": "Go forth and be productive! If you get any pushback, just snap back and show your sharp teeth. Increases Strength by <%= str %>. Limited Edition Summer 2026 Gear.",
|
||||
"headArmoireKendoMenNotes": "You might be surprised by how well you can see through the grille as you follow the way of the sword. Increases Perception by <%= per %>. Enchanted Armoire: Kendo Set (Item 1 of 3).",
|
||||
"shieldSpecialSummer2026WarriorNotes": "Deflect oncoming challenges with this stylish, shiny shield. And when you’ve successfully cleared your list, crank up the music and have a party! Increases Constitution by <%= con %>. Limited Edition Summer 2026 Gear.",
|
||||
"shieldMystery202608Notes": "Slice and dice all your tasks into manageable pieces! Confers no benefit. August 2026 Subscriber Item.",
|
||||
"weaponMystery202608Text": "Beaming Magenta Blade",
|
||||
"weaponMystery202608Notes": "Bright, beautiful, dangerous to your undone Dailies. Confers no benefit. August 2026 Subscriber Item.",
|
||||
"weaponArmoireBrightRainbowKiteText": "Rainbow Kite",
|
||||
"weaponArmoireBrightRainbowKiteNotes": "This kite’s colours are bright and loud. Watching it soar high will make you proud! Increases all stats by <%= attrs %> each. Enchanted Armoire: Rainbow Kite Set (Item 1 of 2).",
|
||||
"weaponArmoirePastelRainbowKiteText": "Pastel Rainbow Kite",
|
||||
"weaponArmoirePastelRainbowKiteNotes": "This kite’s colours are muted and soft. It dances and spins as it soars aloft! Increases all stats by <%= attrs %> each. Enchanted Armoire: Rainbow Kite Set (Item 2 of 2).",
|
||||
"weaponArmoireKendoShinaiText": "Kendo Shinai",
|
||||
"weaponArmoireKendoShinaiNotes": "Light and soft, you can use this bamboo practice sword as you strive to improve yourself. Increases Strength by <%= str %>. Enchanted Armoire: Kendo Set (Item 3 of 3).",
|
||||
"weaponArmoireGardenRakeText": "Garden Rake",
|
||||
"armorSpecialSummer2026WarriorText": "Gator Suit",
|
||||
"armorSpecialSummer2026RogueText": "Tsunami Suit",
|
||||
"armorSpecialSummer2026RogueNotes": "Cloak yourself in this tsunami suit, but don’t hide from your problems. Summon a strong storm to have your back and meet your tasks like the adventurer you are. Increases Perception by <%= per %>. Limited Edition Summer 2026 Gear.",
|
||||
"armorSpecialSummer2026HealerText": "Puffin Suit",
|
||||
"armorSpecialSummer2026HealerNotes": "Fit yourself in this suit, but don’t hide from your problems. Produce your puffin power and tackle your tasks like the puffin you are. Increases Constitution by <%= con %>. Limited Edition Summer 2026 Gear.",
|
||||
"armorSpecialSummer2026MageText": "Tiger Shark Suit",
|
||||
"armorArmoireKendoBoguText": "Kendo Bōgu",
|
||||
"headSpecialSummer2026RogueText": "Tsunami Helm",
|
||||
"headSpecialSummer2026RogueNotes": "Go forth and be productive! If you lose your way, just follow the flow. Increases Perception by <%= per %>. Limited Edition Summer 2026 Gear.",
|
||||
"headSpecialSummer2026HealerText": "Puffin Helm",
|
||||
"headSpecialSummer2026MageText": "Tiger Shark Helm",
|
||||
"headSpecialSummer2026MageNotes": "Go forth and be productive! If an obstacle dares to get in your way, just crush it with your mighty jaws. Increases Perception by <%= per %>. Limited Edition Summer 2026 Gear.",
|
||||
"headMystery202606Text": "Holiday Hat",
|
||||
"headMystery202606Notes": "Holidays are made for enjoying the sunshine—but don’t get burned! Confers no benefit. June 2026 Subscriber Item.",
|
||||
"headArmoireKendoMenText": "Kendo Men",
|
||||
"shieldSpecialSummer2026WarriorText": "Gator Shield",
|
||||
"shieldSpecialSummer2026HealerText": "Puffin Potion",
|
||||
"shieldSpecialSummer2026HealerNotes": "Keep your colony of fellow puffins healthy with this potion. It tastes great with fish! Increases Constitution by <%= con %>. Limited Edition Summer 2026 Gear.",
|
||||
"shieldMystery202606Text": "Holiday Hammock",
|
||||
"shieldMystery202606Notes": "Between tasks, hop in this hammock, relax, and enjoy the scenery! Confers no benefit. June 2026 Subscriber Item.",
|
||||
"shieldMystery202607Text": "Oceanmancer’s Briny Bubble",
|
||||
"shieldMystery202607Notes": "Tumultuous waters bend to your mighty magical will. Confers no benefit. July 2026 Subscriber Item.",
|
||||
"shieldMystery202608Text": "Brilliant Emerald Blade",
|
||||
"shieldArmoireGardenHoseText": "Garden Hose",
|
||||
"shieldArmoireGardenHoseNotes": "This magical hose never kinks and can infinitely stretch to reach every inch of your space. All your flowers, trees, shrubs, and thirsty pets can enjoy a drink from it. Increases Perception by <%= per %>. Enchanted Armoire: Gardener Set 2 (Item 2 of 2).",
|
||||
"eyewearMystery202606Text": "Holiday Shades",
|
||||
"eyewearMystery202606Notes": "Your eyes are shaded but your outlook is still sunny! Confers no benefit. June 2026 Subscriber Item."
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"titleSeasonalShop": "Seasonal Shop",
|
||||
"saveEdits": "Save Edits",
|
||||
"showMore": "Show More",
|
||||
"showLess": "Show Less",
|
||||
"showLess": "Show Fewer",
|
||||
"markdownHelpLink": "Markdown formatting help",
|
||||
"bold": "**Bold**",
|
||||
"markdownImageEx": "",
|
||||
|
||||
@@ -176,10 +176,10 @@
|
||||
"winter2021WinterMoonMageSet": "Winter Moon (Mage)",
|
||||
"winter2021IceFishingWarriorSet": "Ice Fisher (Warrior)",
|
||||
"g1g1HowItWorks": "Type in the username of the account you’d like to gift to. From there, pick the sub length you would like to gift and check out. Your account will automatically be rewarded with the same level of subscription you just gifted.",
|
||||
"spring2024FluoriteWarriorSet": "Fluorite Set (Warrior)",
|
||||
"spring2024HibiscusMageSet": "Hibiscus Set (Mage)",
|
||||
"spring2024BluebirdHealerSet": "Bluebird Set (Healer)",
|
||||
"spring2024MeltingSnowRogueSet": "Melting Snow Set (Rogue)",
|
||||
"spring2024FluoriteWarriorSet": "Fluorite (Warrior)",
|
||||
"spring2024HibiscusMageSet": "Hibiscus (Mage)",
|
||||
"spring2024BluebirdHealerSet": "Bluebird (Healer)",
|
||||
"spring2024MeltingSnowRogueSet": "Melting Snow (Rogue)",
|
||||
"wantToPayWithMoneyText": "Want to pay with Stripe, Paypal, or Amazon?",
|
||||
"ownJubilantGryphatrice": "<strong>You own the Jubilant Gryphatrice!</strong> Visit Pets and Mounts to equip!",
|
||||
"jubilantSuccess": "You've successfully purchased the <strong>Jubilant Gryphatrice!</strong>",
|
||||
@@ -190,8 +190,8 @@
|
||||
"anniversaryLimitations": "This is a limited time event that starts on January 30th at 8:00 AM ET (13:00 UTC) and will end February 8th at 11:59 PM ET (04:59 UTC). The Limited Edition Jubilant Gryphatrice and ten Magic Hatching Potions will be available to buy during this time. The other Gifts listed in the Four for Free section will be automatically delivered to all accounts that were active in the 30 days prior to day the gift is sent. Accounts created after the gifts are sent will not be able to claim them.",
|
||||
"winter2024SnowyOwlRogueSet": "Snowy Owl (Rogue)",
|
||||
"winter2024FrozenHealerSet": "Frozen (Healer)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Peppermint Bark Set (Warrior)",
|
||||
"winter2024NarwhalWizardMageSet": "Narwhal Wizard Set (Mage)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Peppermint Bark (Warrior)",
|
||||
"winter2024NarwhalWizardMageSet": "Narwhal Wizard (Mage)",
|
||||
"buyNowMoneyButton": "Buy Now for $9.99",
|
||||
"winter2023WalrusWarriorSet": "Walrus (Warrior)",
|
||||
"winter2023FairyLightsMageSet": "Fairy Lights (Mage)",
|
||||
@@ -259,36 +259,40 @@
|
||||
"fall2023BogCreatureHealerSet": "Bog Creature (Healer)",
|
||||
"anniversaryGryphatricePrice": "Own it today for <strong>$9.99</strong> or <strong>60 gems</strong>",
|
||||
"gemSaleLimitationsText": "This promotion only applies during the limited-time event. This event starts on <%= eventStartMonth %> <%= eventStartOrdinal %> at <%= eventStartTime %> <%= timeZone %> and will end on <%= eventEndMonth %> <%= eventEndOrdinal %> at <%= eventEndTime %> <%= timeZone %>. The promo offer is only available when buying Gems for yourself.",
|
||||
"summer2024WhaleSharkWarriorSet": "Whale Shark Set (Warrior)",
|
||||
"summer2024SeaAnemoneMageSet": "Sea Anemone Set (Mage)",
|
||||
"summer2024SeaSnailHealerSet": "Sea Snail Set (Healer)",
|
||||
"summer2024NudibranchRogueSet": "Nudibranch Set (Rogue)",
|
||||
"winter2025AuroraMageSet": "Aurora Set (Mage)",
|
||||
"winter2025SnowRogueSet": "Snow Set (Rogue)",
|
||||
"spring2025SunshineWarriorSet": "Sunshine Set (Warrior)",
|
||||
"spring2025CrystalPointRogueSet": "Crystal Point Set (Rogue)",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria Set (Healer)",
|
||||
"spring2025MantisMageSet": "Mantis Set (Mage)",
|
||||
"fall2024FieryImpWarriorSet": "Fiery Imp Set (Warrior)",
|
||||
"fall2024UnderworldSorcerorMageSet": "Underworld Sorceror Set (Mage)",
|
||||
"fall2024SpaceInvaderHealerSet": "Space Invader Set (Healer)",
|
||||
"fall2024BlackCatRogueSet": "Black Cat Set (Rogue)",
|
||||
"winter2025MooseWarriorSet": "Moose Set (Warrior)",
|
||||
"winter2025StringLightsHealerSet": "String Lights Set (Healer)",
|
||||
"fall2025SasquatchWarriorSet": "Sasquatch Set (Warrior)",
|
||||
"fall2025SkeletonRogueSet": "Skeleton Set (Rogue)",
|
||||
"fall2025KoboldHealerSet": "Kobold Set (Healer)",
|
||||
"fall2025MaskedGhostMageSet": "Masked Ghost Set (Mage)",
|
||||
"summer2025ScallopWarriorSet": "Scallop Set (Warrior)",
|
||||
"summer2025SquidRogueSet": "Squid Set (Rogue)",
|
||||
"summer2025SeaAngelHealerSet": "Sea Angel Set (Healer)",
|
||||
"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)"
|
||||
"summer2024WhaleSharkWarriorSet": "Whale Shark (Warrior)",
|
||||
"summer2024SeaAnemoneMageSet": "Sea Anemone (Mage)",
|
||||
"summer2024SeaSnailHealerSet": "Sea Snail (Healer)",
|
||||
"summer2024NudibranchRogueSet": "Nudibranch (Rogue)",
|
||||
"winter2025AuroraMageSet": "Aurora (Mage)",
|
||||
"winter2025SnowRogueSet": "Snow (Rogue)",
|
||||
"spring2025SunshineWarriorSet": "Sunshine (Warrior)",
|
||||
"spring2025CrystalPointRogueSet": "Crystal Point (Rogue)",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria (Healer)",
|
||||
"spring2025MantisMageSet": "Mantis (Mage)",
|
||||
"fall2024FieryImpWarriorSet": "Fiery Imp (Warrior)",
|
||||
"fall2024UnderworldSorcerorMageSet": "Underworld Sorceror (Mage)",
|
||||
"fall2024SpaceInvaderHealerSet": "Space Invader (Healer)",
|
||||
"fall2024BlackCatRogueSet": "Black Cat (Rogue)",
|
||||
"winter2025MooseWarriorSet": "Moose (Warrior)",
|
||||
"winter2025StringLightsHealerSet": "String Lights (Healer)",
|
||||
"fall2025SasquatchWarriorSet": "Sasquatch (Warrior)",
|
||||
"fall2025SkeletonRogueSet": "Skeleton (Rogue)",
|
||||
"fall2025KoboldHealerSet": "Kobold (Healer)",
|
||||
"fall2025MaskedGhostMageSet": "Masked Ghost (Mage)",
|
||||
"summer2025ScallopWarriorSet": "Scallop (Warrior)",
|
||||
"summer2025SquidRogueSet": "Squid (Rogue)",
|
||||
"summer2025SeaAngelHealerSet": "Sea Angel (Healer)",
|
||||
"summer2025FairyWrasseMageSet": "Fairy Wrasse (Mage)",
|
||||
"spring2026FrogWarriorSet": "Frog (Warrior)",
|
||||
"spring2026BranchRogueSet": "Spring Branch (Rogue)",
|
||||
"spring2026SnowdropHealerSet": "Snowdrop (Healer)",
|
||||
"spring2026MaypoleMageSet": "Maypole (Mage)",
|
||||
"winter2026RimeReaperWarriorSet": "Rime Reaper (Warrior)",
|
||||
"winter2026SkiRogueSet": "Ski (Rogue)",
|
||||
"winter2026PolarBearHealerSet": "Polar Bear (Healer)",
|
||||
"winter2026MidwinterCandleMageSet": "Midwinter Candle (Mage)",
|
||||
"summer2026AlligatorWarriorSet": "Alligator (Warrior)",
|
||||
"summer2026PuffinHealerSet": "Puffin (Healer)",
|
||||
"summer2026TigerSharkMageSet": "Tiger Shark (Mage)",
|
||||
"summer2026TsunamiRogueSet": "Tsunami (Rogue)"
|
||||
}
|
||||
|
||||
@@ -863,7 +863,7 @@
|
||||
"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.”",
|
||||
"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 lacklustre.<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!",
|
||||
|
||||
@@ -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": "We’d love to hear your feedback! If you’d like to share any, enter it below. It will be anonymous unless you choose to include your contact details.",
|
||||
"dataExport": "Data Export",
|
||||
"saveData": "Here are a few options for saving your data.",
|
||||
"habitHistory": "Habit History",
|
||||
@@ -47,8 +47,8 @@
|
||||
"dangerZone": "Danger Zone",
|
||||
"resetText1": "<b>Be careful!</b> This resets many parts of your account. This is highly discouraged, but some people find it useful in the beginning after playing with the site for a short time.",
|
||||
"resetText2": "Another option is using an <b>Orb of Rebirth</b>, which will reset everything else while preserving your Tasks and Equipment.",
|
||||
"deleteLocalAccountText": "<b>Are you sure?</b> This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type your password into the text box below.",
|
||||
"deleteSocialAccountText": "<b>Are you sure?</b> This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you’re absolutely certain, type <b>“<%= magicWord %>”</b> into the text box below.",
|
||||
"deleteLocalAccountText": "<b>Are you sure?</b> This action is permanent. Deleting your account will remove all of your data, and it cannot be recovered. Gems will not be refunded.<br><br>Please allow up to 24 hours for account deletion to complete, and up to 30 days for analytics data to be removed if you opted in. Once complete, you’ll be able to register for a new Habitica account using your previous login information.<br><br>To continue, type your password below.",
|
||||
"deleteSocialAccountText": "<b>Are you sure?</b> This action is permanent. Deleting your account will remove all of your data, and it cannot be recovered. Gems will not be refunded.<br><br>Please allow up to 24 hours for account deletion to complete, and up to 30 days for analytics data to be removed if you opted in. Once complete, you’ll be able to register for a new Habitica account using your previous login information.<br><br>To continue, type <%= magicWord %> below.",
|
||||
"API": "API",
|
||||
"APIv3": "API v3",
|
||||
"APIText": "Copy these for use in third party applications. However, think of your API Token like a password, and do not share it publicly. You may occasionally be asked for your User ID, but never post your API Token where others can see it, including on Github.",
|
||||
@@ -116,7 +116,7 @@
|
||||
"generate": "Generate",
|
||||
"getCodes": "Get Codes",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Webhooks provide a way for developers to receive notifications when a particular action is performed, such as scoring or updating a Task, or sending a message in a Group. By creating a webhook, you will be able to listen to changes in Habitica and build apps that respond to these changes.<br><br>For additional information and examples on webhooks, please visit our <a target=\"_blank\" href=\"https://habitica.com/apidoc/#api-Webhook-AddWebhook\">API Docs</a>.",
|
||||
"webhooksInfo": "Webhooks provide a way for developers to receive notifications when a particular action is performed, such as scoring or updating a Task, or sending a message in a Group. By creating a webhook, you will be able to listen to changes in Habitica and build apps that respond to these changes.<br><br>For additional information and examples on webhooks, please visit our <a target=\"_blank\" href=\"https://apidoc.habitica.com/#api-Webhook-AddWebhook\">API Docs</a>.",
|
||||
"enabled": "Enabled",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "invalid URL",
|
||||
|
||||
@@ -277,5 +277,8 @@
|
||||
"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."
|
||||
"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.",
|
||||
"mysterySet202606": "Holiday Hammock Set",
|
||||
"mysterySet202607": "Oceanmancer Set",
|
||||
"mysterySet202608": "Beaming Blades Set"
|
||||
}
|
||||
|
||||
@@ -143,5 +143,15 @@
|
||||
"deleteXTasks": "Delete <%= count %> Tasks",
|
||||
"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?"
|
||||
"confirmDeleteTasks": "Would you like to delete the tasks?",
|
||||
"everyDay": "every day",
|
||||
"everyXDays": "every <%= count %> days",
|
||||
"everyXWeeks": "every <%= count %> weeks",
|
||||
"everyMonth": "every month",
|
||||
"everyYear": "every year",
|
||||
"everyXYears": "every <%= count %> years",
|
||||
"every": "every",
|
||||
"everyWeek": "every week",
|
||||
"everyXMonths": "every <%= count %> months",
|
||||
"fifthWeekWarning": "This task <strong>will not</strong> appear due during months with fewer <%= day %>s"
|
||||
}
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
"achievementPearlyProText": "Ha domado todas las Monturas Blancas.",
|
||||
"achievementPrimedForPaintingModalText": "¡Has conseguido todas las Mascotas Blancas!",
|
||||
"achievementPrimedForPaintingText": "Ha conseguido todas las Mascotas Blancas.",
|
||||
"achievementPrimedForPainting": "Preparado para Pintar",
|
||||
"achievementPrimedForPainting": "Lienzo en Blanco",
|
||||
"hideAchievements": "Ocultar <%= category %>",
|
||||
"showAllAchievements": "Mostrar Todos <%= category %>",
|
||||
"onboardingCompleteDesc": "Has ganado <strong>5 Logros</strong> y <strong class=\"gold-amount\">100 de Oro</strong> por completar la lista.",
|
||||
|
||||
@@ -941,5 +941,14 @@
|
||||
"backgroundElvenCitadelText": "Ciudadela Élfica",
|
||||
"backgroundElvenCitadelNotes": "Toma un pintoresto recorrido en una ciudadela élfica.",
|
||||
"backgroundOnAStrangePlanetText": "En un Extraño Planeta",
|
||||
"backgroundOnAStrangePlanetNotes": "Aventúrate allá donde ningun Habiticano ha viajado antes: hacia un extraño planeta."
|
||||
"backgroundOnAStrangePlanetNotes": "Aventúrate allá donde ningun Habiticano ha viajado antes: hacia un extraño planeta.",
|
||||
"backgrounds062026": "145.ª serie: publicada en junio de 2026",
|
||||
"backgroundBeachWithVolcanoText": "Playa con Volcán",
|
||||
"backgrounds072026": "146.ª serie: publicada en julio de 2026",
|
||||
"backgroundTropicalCoralGardenText": "Jardín Tropical de Coral",
|
||||
"backgrounds082026": "147.ª serie: publicada en agosto de 2026",
|
||||
"backgroundBeachWithVolcanoNotes": "Observa la maravilla natural de una Playa con Volcán.",
|
||||
"backgroundTropicalCoralGardenNotes": "Sumérgete en un Jardín Tropical de Coral.",
|
||||
"backgroundVegetableGardenText": "Huerto",
|
||||
"backgroundVegetableGardenNotes": "Cultiva verduras sabrosas en un Huerto."
|
||||
}
|
||||
|
||||
@@ -3549,5 +3549,61 @@
|
||||
"shieldSpecialSpring2026WarriorNotes": "Este candelabro no sólo puede iluminar tu camino; también puedes usarlo para derretir cualquier resto de nieve y hielo. Aumenta la Constitución en <%= con %>. Equipamiento de Edición Limitada de Primavera 2026.",
|
||||
"shieldSpecialSpring2026HealerNotes": "Crea una brisa suave con este ventilador a medida que suben las temperaturas. También sirve como bolígrafo en caso de necesitarlo. Aumenta la Constitución en <%= con %>. Equipamiento de Edición Limitada de Primavera 2026.",
|
||||
"shieldMystery202605Notes": "Deja que la brillante luz de luna te proteja de los peligros en la oscuridad. No otorga ningún beneficio. Artículo de Suscriptor de mayo 2026.",
|
||||
"shieldArmoireSoftYellowPillowNotes": "El guerrero experimentado lleva una almohada en cada expedición. Crece y brilla mientras consolidas todo lo aprendido en aventuras pasadas… incluso mientras duermes la siesta. Aumenta la Inteligencia y la Percepción en <%= attrs %>. Armario Encantado: Conjunto Ropa de Casa Amarilla (Artículo 3 de 3)."
|
||||
"shieldArmoireSoftYellowPillowNotes": "El guerrero experimentado lleva una almohada en cada expedición. Crece y brilla mientras consolidas todo lo aprendido en aventuras pasadas… incluso mientras duermes la siesta. Aumenta la Inteligencia y la Percepción en <%= attrs %>. Armario Encantado: Conjunto Ropa de Casa Amarilla (Artículo 3 de 3).",
|
||||
"weaponSpecialSummer2026RogueNotes": "Esta ingeniosa y elegante arma encaja a la perfección con tu estética seacore. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada verano 2026.",
|
||||
"weaponSpecialSummer2026MageNotes": "Esta peligrosa arma de doble filo encaja a la perfección con tu estética oceancore. Aumenta la Inteligencia en <%= int %> y la Percepción en <%= per %>. Equipamiento de edición limitada verano 2026.",
|
||||
"weaponArmoireBrightRainbowKiteNotes": "Los colores de esta cometa son brillantes y llamativos. ¡Verla volar alto te llenará de orgullo! Aumenta todas las estadísitcas en <%= attrs %> cada una. Armario Encantado: Conjunto Cometa Arcoíris (Artículo 1 de 2).",
|
||||
"weaponArmoireKendoShinaiNotes": "Ligera y suave, puedes usar esta espada de bambú para practicar mientras te esfuerzas por mejorar. Aumenta la Fuerza en <%= str %>. Armario Encantado: Conjunto de Kendo (Artículo 3 de 3).",
|
||||
"armorSpecialSummer2026WarriorText": "Traje Aligátor",
|
||||
"armorSpecialSummer2026WarriorNotes": "Escóndete tras este traje, pero no de tus problemas. Reúne tu coraje de aligátor y cumple tus tareas como el aligátor que eres. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada Verano 2026.",
|
||||
"armorSpecialSummer2026RogueNotes": "Envuélvete en este traje antitsunami, pero no huyas de tus problemas. Invoca una poderosa tormenta para que te proteja y cumple tus tareas como el aventurero que eres. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada Verano 2026.",
|
||||
"armorSpecialSummer2026MageNotes": "Delízate dentro de este traje, pero no huyas de tus problemas. Demuestra tu instinto de tiburón y nada hacia esas tareas como el tiburón que eres. Aumenta la inteligencia en <%= int %>. Equipamiento de edición limitada Verano 2026.",
|
||||
"armorArmoireKendoBoguNotes": "Esta quizá sea una armadura de entrenamiento, pero te otorga protección más que suficiente para el camino que tienes delante. Aumenta la Constitución en <%= con %>. Armario Encantado: Conjunto Kendo (Artículo 2 de 3).",
|
||||
"headMystery202606Text": "Sombrero Vacacional",
|
||||
"headMystery202606Notes": "Las vacaciones son para disfrutar del sol, ¡pero cuidado con las quemaduras! No otorga ningún beneficio. Artículo para Suscriptores Junio 2026.",
|
||||
"shieldSpecialSummer2026WarriorNotes": "Desvía los desafíos que se avecinen con este elegante y brillante escudo. Y cuando hayas completado tu lista, sube el volumen de la música y ¡a celebrar! Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada Verano 2026.",
|
||||
"weaponSpecialSummer2026WarriorText": "Machete Aligátor",
|
||||
"weaponSpecialSummer2026RogueText": "Espada Tsunami",
|
||||
"weaponSpecialSummer2026HealerText": "Lanza Frailecillo",
|
||||
"weaponSpecialSummer2026MageText": "Lanza Tiburón Tigre",
|
||||
"weaponSpecialSummer2026WarriorNotes": "Esta llamativa y elegante arma encaja a la perfección con tu estética swampcore. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de verano de 2026.",
|
||||
"weaponSpecialSummer2026HealerNotes": "Esta elegante arma adornada con plumas encaja a la perfección con tu estética islandcore. Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada verano 2026.",
|
||||
"weaponMystery202607Text": "Familiares acuáticos del Oceánomante",
|
||||
"weaponMystery202607Notes": "Estos coloridos compañeros canalizarán tus habilidades acuáticas. No confieren ningún beneficio. Artículo de Suscriptor Julio 2026.",
|
||||
"weaponMystery202608Text": "Espada Magenta Brillante",
|
||||
"weaponMystery202608Notes": "Brillante, hermosa y peligrosa para tus Tareas Diarias sin terminar. No otorga ningún beneficio. Artículo de Suscriptor Agosto 2026.",
|
||||
"weaponArmoireBrightRainbowKiteText": "Cometa Arcoíris",
|
||||
"weaponArmoirePastelRainbowKiteText": "Cometa Arcoíris Pastel",
|
||||
"weaponArmoirePastelRainbowKiteNotes": "Los colores de esta cometa son suaves y sútiles. ¡Baila y gira mientras se eleva por los aires! Aumenta todas las estadísticas en <%= attrs %> cada una. Armario Encantado: Conjunto Cometa Arcoíris (Artículo 2 de 2).",
|
||||
"weaponArmoireKendoShinaiText": "Shinai de Kendo",
|
||||
"weaponArmoireGardenRakeText": "Rastrillo de Jardín",
|
||||
"weaponArmoireGardenRakeNotes": "Paso 1: Amontona todas las hojas caídas en una pila gigante. Paso 2: Celebra el trabajo bien hecho saltando a la pila. Paso 3: Repite. Aumenta la Constitución en <%= con %>. Armario Encantado: Conjunto de Jardinero 2 (Artículo 1 de 2).",
|
||||
"armorSpecialSummer2026RogueText": "Traje Tsunami",
|
||||
"armorSpecialSummer2026HealerText": "Traje Frailecillo",
|
||||
"armorSpecialSummer2026HealerNotes": "Ponte este traje, pero no huyas de tus problemas. Despliega tu poder de frailecillo y afronta tus tareas como el frailecillo que eres. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada Verano 2026.",
|
||||
"armorSpecialSummer2026MageText": "Traje Tiburón Tigre",
|
||||
"armorArmoireKendoBoguText": "Bōgu de Kendo",
|
||||
"headSpecialSummer2026WarriorText": "Casco Aligátor",
|
||||
"headSpecialSummer2026WarriorNotes": "¡Adelante y sé productivo! Si encuentras resistencia, sólo contraataca y muestra tus afilados dientes. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada Verano 2026.",
|
||||
"headSpecialSummer2026RogueText": "Casco Tsunami",
|
||||
"headSpecialSummer2026RogueNotes": "¡Adelante y sé productivo! Si pierdes el camino, sólo sigue la corriente. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada Verano de 2026.",
|
||||
"headSpecialSummer2026HealerText": "Casco Frailecillo",
|
||||
"headSpecialSummer2026HealerNotes": "¡Adelante y sé productivo! Si encuentras complicaciones, sólo tómalas con tu colorido pico y llévalas a otra parte. Aumente la Inteligencia en <%= int %>. Equipamiento de edición limitada Verano 2026.",
|
||||
"headSpecialSummer2026MageText": "Casco Tiburón Tigre",
|
||||
"headSpecialSummer2026MageNotes": "¡Adelante y sé productivo! Si algún obstáculo se atreve a interponerse en tu camino, sólo aplástalo con tus poderosas mandíbulas. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada Verano de 2026.",
|
||||
"headArmoireKendoMenText": "Men de Kendo",
|
||||
"headArmoireKendoMenNotes": "Quizá te sorprenda lo bien que puedes ver a través de la rejilla mientras sigues el Camino de la Espada (Kendo). Aumenta la Percepción en <%= per %>. Armario Encantado: Conjunto Kendo (Artículo 1 de 3).",
|
||||
"shieldSpecialSummer2026WarriorText": "Escudo Aligátor",
|
||||
"shieldSpecialSummer2026HealerText": "Poción Frailecillo",
|
||||
"shieldSpecialSummer2026HealerNotes": "Manten sana a tu parvada de frailecillos con esta poción. ¡Le va de maravilla al pescado! Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada Verano 2026.",
|
||||
"shieldMystery202606Text": "Hamaca Vacacional",
|
||||
"shieldArmoireGardenHoseText": "Manguera de Jardín",
|
||||
"shieldArmoireGardenHoseNotes": "Esta manguera mágica nunca se enreda y se estira infinitamente para alcanzar cada rincón del espacio. Todas tus flores, árboles, arbustos y mascotas sedientas pueden beber de ella. Aumenta la Percepción en <%= per %>. Armario Encantado: Conjunto de Jardinero 2 (Artículo 2 de 2).",
|
||||
"shieldMystery202606Notes": "Entre una tarea y otra, túmbate en esta hamaca, relájate y ¡disfruta del paisaje! No otorga ningún beneficio. Artículo de Suscriptor Junio 2026.",
|
||||
"shieldMystery202607Text": "Burbuja Salada del Océanomante",
|
||||
"shieldMystery202607Notes": "Aguas turbulentas se doblegan ante tu poderosa voluntad mágica. No confiere ningún beneficio. Artículo de Suscriptor Julio 2026.",
|
||||
"shieldMystery202608Text": "Espada Esmeralda Brillante",
|
||||
"shieldMystery202608Notes": "¡Corta en rodajas y cubitos todas tus tareas para hacerlas más manejables! No otorga ningún beneficio. Artículo de Suscriptor Agosto 2026.",
|
||||
"eyewearMystery202606Text": "Gafas Vacacionales",
|
||||
"eyewearMystery202606Notes": "Tu mirada se ha ensombrecido, ¡pero aún brillas como el sol! No otorga ningún beneficio. Artículo de Suscriptor Junio 2026."
|
||||
}
|
||||
|
||||
@@ -228,8 +228,8 @@
|
||||
"summer2023GoldfishWarriorSet": "Pez dorado (Guerrero)",
|
||||
"winter2024SnowyOwlRogueSet": "Búho Nival (Pícaro)",
|
||||
"winter2024FrozenHealerSet": "Helado (Sanador)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Conjunto de corteza de menta (Guerrero)",
|
||||
"winter2024NarwhalWizardMageSet": "Conjunto Mago narval (Mago)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Corteza de Menta (Guerrero)",
|
||||
"winter2024NarwhalWizardMageSet": "Conjunto Mago Narval (Mago)",
|
||||
"summer2023GuppyRogueSet": "Guppy (Pícaro)",
|
||||
"summer2023KelpHealerSet": "Alga marina (Sanador)",
|
||||
"summer2023CoralMageSet": "Coral (Mago)",
|
||||
@@ -254,41 +254,45 @@
|
||||
"fourForFreeText": "Para continuar con la fiesta, vamos a regalar Atuendos de Fiesta, 20 Gemas, y un Fondo de edición limitada de cumpleaños y un conjunto que incluye una Capa, Hombreras y una Máscara.",
|
||||
"jubilantGryphatricePromo": "Mascota Animada de Grifatriz Jubiloso",
|
||||
"anniversaryGryphatriceText": "¡El raro Grifatriz Jubiloso se une a las celebraciones de cumpleaños! No te pierdas la oportunidad de obtener esta Mascota animada exclusiva.",
|
||||
"spring2024HibiscusMageSet": "Conjunto Planta Hibisco (Mago)",
|
||||
"spring2024BluebirdHealerSet": "Conjunto Pájaro Azulillo (Sanador)",
|
||||
"spring2024MeltingSnowRogueSet": "Conjunto Derrite-Nieves (Pícaro)",
|
||||
"spring2024FluoriteWarriorSet": "Conjunto de Fluorita (Guerrero)",
|
||||
"summer2024SeaAnemoneMageSet": "Conjunto de Anémona Marina (Mago)",
|
||||
"summer2024SeaSnailHealerSet": "Conjunto de Caracol Marino (Sanador)",
|
||||
"summer2024WhaleSharkWarriorSet": "Conjunto de Tiburón-Ballena (Guerrero)",
|
||||
"summer2024NudibranchRogueSet": "Conjunto de Nudibranquio (Pícaro)",
|
||||
"spring2024HibiscusMageSet": "Hibisco (Mago)",
|
||||
"spring2024BluebirdHealerSet": "Pájaro Azulillo (Sanador)",
|
||||
"spring2024MeltingSnowRogueSet": "Nieve Derretida (Pícaro)",
|
||||
"spring2024FluoriteWarriorSet": "Fluorita (Guerrero)",
|
||||
"summer2024SeaAnemoneMageSet": "Anémona Marina (Mago)",
|
||||
"summer2024SeaSnailHealerSet": "Caracol Marino (Sanador)",
|
||||
"summer2024WhaleSharkWarriorSet": "Tiburón-Ballena (Guerrero)",
|
||||
"summer2024NudibranchRogueSet": "Nudibranquio (Pícaro)",
|
||||
"gemSaleLimitationsText": "Esta promoción solo se aplica durante el periodo de tiempo limitado del evento. Este evento empieza el <%= eventStartMonth %> <%= eventStartOrdinal %> a las <%= eventStartTime %> <%= timeZone %> y termina el <%= eventEndMonth %> <%= eventEndOrdinal %> a las <%= eventEndTime %> <%= timeZone %>. La oferta de esta promoción está solo disponible para las Gemas que compres para ti mismo.",
|
||||
"fall2024UnderworldSorcerorMageSet": "Conjunto de Alto Hechicero del Inframundo (Mago)",
|
||||
"fall2024SpaceInvaderHealerSet": "Conjunto de Invasor del Espacio (Sanador)",
|
||||
"fall2024BlackCatRogueSet": "Conjunto Gato Negro (Pícaro)",
|
||||
"fall2024FieryImpWarriorSet": "Conjunto de Balrog Menor (Guerrero)",
|
||||
"winter2025StringLightsHealerSet": "Conjunto Tira de Luces (Sanador)",
|
||||
"winter2025SnowRogueSet": "Conjunto Muñeco de Nieve (Pícaro)",
|
||||
"winter2025MooseWarriorSet": "Conjunto Alce (Guerrero)",
|
||||
"winter2025AuroraMageSet": "Conjunto Aurora (Mago)",
|
||||
"spring2025CrystalPointRogueSet": "Conjunto Punta de Cristal (Pícaro)",
|
||||
"spring2025PlumeriaHealerSet": "Conjunto Plumeria (Sanador)",
|
||||
"spring2025MantisMageSet": "Conjunto Mantis (Mago)",
|
||||
"spring2025SunshineWarriorSet": "Conjunto Rayo de Sol (Guerrero)",
|
||||
"summer2025ScallopWarriorSet": "Conjunto Vieira (Guerrero)",
|
||||
"summer2025SquidRogueSet": "Conjunto Calamar (Pícaro)",
|
||||
"summer2025SeaAngelHealerSet": "Conjunto Ángel de Mar (Sanador)",
|
||||
"summer2025FairyWrasseMageSet": "Conjunto Pez Lábrido Hada (Mago)",
|
||||
"fall2025SasquatchWarriorSet": "Conjunto Pie Grande (Guerrero)",
|
||||
"fall2025SkeletonRogueSet": "Conjunto Esqueleto (Pícaro)",
|
||||
"fall2025KoboldHealerSet": "Conjunto Kobold (Sanador)",
|
||||
"fall2025MaskedGhostMageSet": "Conjunto Fantasma Enmascarado (Mago)",
|
||||
"winter2026RimeReaperWarriorSet": "Conjunto Destripador Escarcha (Guerrero)",
|
||||
"winter2026SkiRogueSet": "Conjunto Esquí (Pícaro)",
|
||||
"winter2026PolarBearHealerSet": "Conjunto Oso Polar (Sanador)",
|
||||
"winter2026MidwinterCandleMageSet": "Conjunto Vela Invernal (Mago)",
|
||||
"spring2026FrogWarriorSet": "Conjunto Rana (Guerrero)",
|
||||
"spring2026BranchRogueSet": "Conjunto Rama Primaveral (Pícaro)",
|
||||
"spring2026SnowdropHealerSet": "Conjunto Campanilla de Invierno (Sanador)",
|
||||
"spring2026MaypoleMageSet": "Conjunto Palo de Mayo (Mago)"
|
||||
"fall2024UnderworldSorcerorMageSet": "Alto Hechicero del Inframundo (Mago)",
|
||||
"fall2024SpaceInvaderHealerSet": "Invasor del Espacio (Sanador)",
|
||||
"fall2024BlackCatRogueSet": "Gato Negro (Pícaro)",
|
||||
"fall2024FieryImpWarriorSet": "Balrog Menor (Guerrero)",
|
||||
"winter2025StringLightsHealerSet": "Tira de Luces (Sanador)",
|
||||
"winter2025SnowRogueSet": "Nieve (Pícaro)",
|
||||
"winter2025MooseWarriorSet": "Alce (Guerrero)",
|
||||
"winter2025AuroraMageSet": "Aurora (Mago)",
|
||||
"spring2025CrystalPointRogueSet": "Punta de Cristal (Pícaro)",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria (Sanador)",
|
||||
"spring2025MantisMageSet": "Mantis (Mago)",
|
||||
"spring2025SunshineWarriorSet": "Rayo de Sol (Guerrero)",
|
||||
"summer2025ScallopWarriorSet": "Vieira (Guerrero)",
|
||||
"summer2025SquidRogueSet": "Calamar (Pícaro)",
|
||||
"summer2025SeaAngelHealerSet": "Ángel de Mar (Sanador)",
|
||||
"summer2025FairyWrasseMageSet": "Pez Lábrido Hada (Mago)",
|
||||
"fall2025SasquatchWarriorSet": "Pie Grande (Guerrero)",
|
||||
"fall2025SkeletonRogueSet": "Esqueleto (Pícaro)",
|
||||
"fall2025KoboldHealerSet": "Kobold (Sanador)",
|
||||
"fall2025MaskedGhostMageSet": "Fantasma Enmascarado (Mago)",
|
||||
"winter2026RimeReaperWarriorSet": "Destripador Escarcha (Guerrero)",
|
||||
"winter2026SkiRogueSet": "Esquí (Pícaro)",
|
||||
"winter2026PolarBearHealerSet": "Oso Polar (Sanador)",
|
||||
"winter2026MidwinterCandleMageSet": "Vela Invernal (Mago)",
|
||||
"spring2026FrogWarriorSet": "Rana (Guerrero)",
|
||||
"spring2026BranchRogueSet": "Rama Primaveral (Pícaro)",
|
||||
"spring2026SnowdropHealerSet": "Campanilla de Invierno (Sanador)",
|
||||
"spring2026MaypoleMageSet": "Palo de Mayo (Mago)",
|
||||
"summer2026PuffinHealerSet": "Frailecillo (Sanador)",
|
||||
"summer2026TigerSharkMageSet": "Tiburón Tigre (Mago)",
|
||||
"summer2026TsunamiRogueSet": "Tsunami (Pícaro)",
|
||||
"summer2026AlligatorWarriorSet": "Aligátor (Guerrero)"
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"needTips": "¿Necesitas algunos consejos para comenzar? ¡Aquí tienes una guía clara!",
|
||||
"step1": "Paso 1: Añade Tareas",
|
||||
"webStep1Text": "Habitica es inútil sin metas de la vida real, así que introduce algunas tareas. ¡Puedes añadir más en el futuro conforme se te vayan ocurriendo! Todas las tareas pueden crearse presionando sobre el botón verde de \"Añadir Tarea\".\n* **Establece [Tareas pendientes](https://habitica.fandom.com/es/wiki/Pendientes):** Introduce tareas que debas realizar una única vez o raramente en la columna de tareas pendientes. ¡Puedes pulsar sobre dichas tareas para editarlas y añadir listas, fechas de vencimiento y muchas cosas más!\n* **Establece [Tareas diarias](https://habitica.fandom.com/es/wiki/Diarias):** Introduce en la columna de tareas diarias actividades que debas realizar diariamente o en días particulares de la semana, el mes o el año. Presiona sobre la tarea para editar sus fechas de vencimiento y/o inicio. También puedes hacer que venzan de forma cíclica, por ejemplo, cada tres 3 días.\n* **Establece [Hábitos](https://habitica.fandom.com/wiki/Habits):** Introduce hábitos que desees adquirir (o evitar) en la columna de hábitos. Puedes editarlos para diferenciar aquellos que son buenos :heavy_plus_sign: de los que son malos :heavy_minus_sign:.\n* **Establece [Recompensas](https://habitica.fandom.com/wiki/Rewards):** Como añadido a las recompensas propias del juego, puedes incluir actividades o premios con los que te quieras motivar en la columna de recompensas. Es importante que no seas muy duro contigo mismo y te tomes algún descanso, ¡pero con moderación!\n* Si no sabes qué tareas podrías añadir y necesitas inspiración, puedes echar un vistazo a las páginas de la wiki relacionadas a continuación: [Ejemplos de hábitos](https://habitica.fandom.com/wiki/Sample_Habits), [Ejemplos de Tareas Diarias](https://habitica.fandom.com/wiki/Sample_Dailies), [Ejemplos de Tareas Pendientes](https://habitica.fandom.com/es/wiki/Ejemplos_de_Pendientes), y [Ejemplos de Recompensas](https://habitica.fandom.com/wiki/Sample_Custom_Rewards).",
|
||||
"step2": "Paso 2: Gana puntos cumpliendo con tus tareas en la vida real",
|
||||
"webStep2Text": "Ahora, ¡comienza a enfrentarte a tus metas de la lista! Al cumplir tareas y marcarlas en Habitica, ganarás puntos de [experiencia](https://habitica.fandom.com/es/wiki/Puntos_de_Experiencia) que te ayudarán a subir de nivel, así como piezas de [oro](https://habitica.fandom.com/es/wiki/Oro) que te permitirán comprar recompensas. Si caes en malos hábitos o fallas en cumplir tus tareas diarias, perderás puntos de [salud](https://habitica.fandom.com/wiki/Health_Points). De esta manera, las barras de experiencia y de salud en Habitica, sirven como un divertido indicador de tu progreso hacia cumplir tus metas reales. Empezarás a ver cómo mejora tu vida real mientras tu personaje evoluciona en el juego .",
|
||||
"webStep1Text": "Habitica es inútil sin metas de la vida real, así que introduce algunas tareas. ¡Puedes añadir más en el futuro conforme se te vayan ocurriendo! Todas las tareas pueden crearse presionando sobre el botón verde de \"Añadir Tarea\".\n* **Establece [Tareas Pendientes](https://habitica.fandom.com/es/wiki/Pendientes):** Introduce tareas que debas realizar una única vez o raramente en la columna de tareas pendientes. ¡Puedes pulsar sobre dichas tareas para editarlas y añadir listas, fechas de vencimiento y muchas cosas más!\n* **Establece [Tareas Diarias](https://habitica.fandom.com/es/wiki/Diarias):** Introduce en la columna de tareas diarias actividades que debas realizar diariamente o en días particulares de la semana, el mes o el año. Presiona sobre la tarea para editar sus fechas de vencimiento y/o inicio. También puedes hacer que venzan de forma cíclica, por ejemplo, cada tres 3 días.\n* **Establece [Hábitos](https://habitica.fandom.com/es/wiki/Hábitos):** Introduce hábitos que desees adquirir (o evitar) en la columna de hábitos. Puedes editarlos para diferenciar aquellos que son buenos :heavy_plus_sign: de los que son malos :heavy_minus_sign:.\n* **Establece [Recompensas](https://habitica.fandom.com/es/wiki/Recompensas):** Como añadido a las recompensas propias del juego, puedes incluir actividades o premios con los que te quieras motivar en la columna de recompensas. Es importante que no seas muy duro contigo mismo y te tomes algún descanso, ¡pero con moderación!\n* Si no sabes qué tareas podrías añadir y necesitas inspiración, puedes echar un vistazo a las páginas de la wiki relacionadas a continuación: [Ejemplos de Hábitos](https://habitica.fandom.com/wiki/Sample_Habits), [Ejemplos de Tareas Diarias](https://habitica.fandom.com/es/wiki/Ejemplos_de_Diarias), [Ejemplos de Tareas Pendientes](https://habitica.fandom.com/es/wiki/Ejemplos_de_Pendientes), y [Ejemplos de Recompensas](https://habitica.fandom.com/es/wiki/Ejemplos_de_recompensas_personalizadas).",
|
||||
"step2": "Paso 2: Gana Puntos cumpliendo con tus tareas en la vida real",
|
||||
"webStep2Text": "Ahora, ¡comienza a enfrentarte a tus metas de la lista! Al cumplir tareas y marcarlas en Habitica, ganarás [Puntos de Experiencia](https://habitica.fandom.com/es/wiki/Puntos_de_Experiencia) que te ayudarán a subir de nivel, así como piezas de [Oro](https://habitica.fandom.com/es/wiki/Oro) que te permitirán comprar recompensas. Si caes en malos hábitos o fallas en cumplir tus tareas diarias, perderás [Puntos de Vida](https://habitica.fandom.com/es/wiki/Puntos_de_vida). De esta manera, las barras de Experiencia y de Salud en Habitica, sirven como un divertido indicador de tu progreso hacia cumplir tus metas reales. Empezarás a ver cómo mejora tu vida real mientras tu personaje evoluciona en el juego.",
|
||||
"step3": "Paso 3: Personaliza y explora Habitica",
|
||||
"webStep3Text": "Una vez que te hayas familiarizado con lo básico, podrás sacar aún más partido de Habitica con estas funcionalidades:\n * Organiza tus tareas con [etiquetas](https://habitica.fandom.com/es/wiki/Etiquetas) (edita una tarea para añadirlas).\n * Personaliza tu [avatar](https://habitica.fandom.com/wiki/Avatar) haciendo click en el icono de usuario de la esquina derecha superior.\n * Compra tu [equipamiento](https://habitica.fandom.com/wiki/Equipment) en recompensas o desde el [mercado](<%= shopUrl %>), y cámbialo en [Inventario > Equipamiento](<%= equipUrl %>).\n * Conecta con otros usuarios a través de la [Herramienta para buscar Equipos](https://habitica.com/looking-for-party).\n * Eclosiona [mascotas](https://habitica.fandom.com/es/wiki/Mascotas) coleccionando [huevos](https://habitica.fandom.com/es/wiki/Huevos) y [pociones de eclosión](https://habitica.fandom.com/es/wiki/Pociones_de_Eclosi%C3%B3n). [Aliméntalas](https://habitica.fandom.com/es/wiki/Comida) para crear [monturas](http://habitica.fandom.com/wiki/Mounts).\n * En el nivel 10: Elige tu [clase](https://habitica.fandom.com/wiki/Class_System) preferida y usa [habilidades](https://habitica.fandom.com/wiki/Skills) específicas de cada una (niveles del 11 al 14).\n * Forma un equipo con tus amigos (haciendo click en [Equipo](<%= partyUrl %>) en la barra de navegación) para rendiros cuentas unos a otros y consigue un pergamino de misión.\n * Vence a monstruos y colecciona objetos en las [misiones](https://habitica.fandom.com/wiki/Quests) (recibirás una misión en el nivel 15).",
|
||||
"overviewQuestionsRevised": "¿Tienes preguntas? Échale un vistazo a nuestras <a href='/static/faq'>Preguntas frecuentes</a>. SI tu pregunta no aparece, puedes pedir ayuda usando el siguiente formulario: "
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
"generate": "Generar",
|
||||
"getCodes": "Obtener Códigos",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Los webhooks ayudan a los desarrolladores a recibir una notificación cuando suceden ciertas acciones, como al completar o actualizar una Tarea o al enviar un mensaje a un Grupo. Al crear un webhook podrás estar al día de los cambios en Habitica y crear aplicaciones que respondan a esos cambios. En la wiki podrás encontrar más información y ejemplos de webhooks: consulta la página <a target=\"_blank\" href=\"https://habitica.com/apidoc/#api-Webhook-AddWebhook\">API Docs</a>.",
|
||||
"webhooksInfo": "Los webhooks ayudan a los desarrolladores a recibir una notificación cuando suceden ciertas acciones, como al completar o actualizar una Tarea o al enviar un mensaje a un Grupo. Al crear un webhook podrás estar al día de los cambios en Habitica y crear aplicaciones que respondan a esos cambios. En la wiki podrás encontrar más información y ejemplos de webhooks: consulta la página <a target=\"_blank\" href=\"https://apidoc.habitica.com/#api-Webhook-AddWebhook\">API Docs</a>.",
|
||||
"enabled": "Habilitado",
|
||||
"webhookURL": "URL del Webhook",
|
||||
"invalidUrl": "Url no válida",
|
||||
|
||||
@@ -277,5 +277,8 @@
|
||||
"mysterySet202603": "Conjunto de Mago de las Glicinias",
|
||||
"mysterySet202604": "Conjunto Astronauta Audaz",
|
||||
"mysterySet202605": "Conjunto Nimbus del Anochecer",
|
||||
"subscriptionBillingFYIShort": "Las suscripciones se renuevan automáticamente a menos que las canceles al menos 24 horas antes de que finalice el período actual. Se te cobrará el importe correspondiente en las 24 horas siguientes a la fecha de renovación, al mismo precio que pagaste inicialmente."
|
||||
"subscriptionBillingFYIShort": "Las suscripciones se renuevan automáticamente a menos que las canceles al menos 24 horas antes de que finalice el período actual. Se te cobrará el importe correspondiente en las 24 horas siguientes a la fecha de renovación, al mismo precio que pagaste inicialmente.",
|
||||
"mysterySet202608": "Conjunto Cuchillas Radiantes",
|
||||
"mysterySet202606": "Conjunto Hamaca Vacacional",
|
||||
"mysterySet202607": "Conjunto Océanomante"
|
||||
}
|
||||
|
||||
@@ -143,5 +143,15 @@
|
||||
"deleteXTasks": "Eliminar <%= count %> tareas",
|
||||
"confirmDeleteTasks": "¿Quieres eliminar las tareas?",
|
||||
"brokenChallengeTaskCount": "Esta es una de las <%= count %> tareas que forman parte de un desafío que ya no existe.",
|
||||
"sureDeleteType": "¿Estás seguro que deseas eliminar esta tarea?"
|
||||
"sureDeleteType": "¿Estás seguro que deseas eliminar esta tarea?",
|
||||
"everyDay": "cada día",
|
||||
"everyWeek": "cada semana",
|
||||
"everyXWeeks": "cada <%= count %> semanas",
|
||||
"everyMonth": "cada mes",
|
||||
"everyYear": "cada año",
|
||||
"everyXYears": "cada <%= count %> años",
|
||||
"every": "cada",
|
||||
"everyXDays": "cada <%= count %> días",
|
||||
"everyXMonths": "cada <%= count %> meses",
|
||||
"fifthWeekWarning": "Esta tarea <strong>no</strong> aparecerá pendiente en meses con menos de <%= day %>sem"
|
||||
}
|
||||
|
||||
@@ -114,9 +114,9 @@
|
||||
"unallocated": "Puntos de Atributo no asignados",
|
||||
"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",
|
||||
"evenAllocation": "Distribuir equitativamente",
|
||||
"evenAllocationPop": "Asigna el mismo número de Puntos a cada Atributo",
|
||||
"classAllocation": "Distribuir Puntos de acuerdo a tu Clase",
|
||||
"classAllocation": "Distribuir según la Clase",
|
||||
"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",
|
||||
|
||||
@@ -2845,5 +2845,6 @@
|
||||
"weaponSpecialWinter2026RogueNotes": "Los bastones de esquí te ayudan a mantener el equilibrio, la estabilidad y la sincronización; todo lo que necesitas para ser verdaderamente productivo. Aumenta <%= str %> de Fuerza. Equipamiento de Edición Limitada de Invierno 2025-2026.",
|
||||
"weaponSpecialWinter2026WarriorNotes": "Las guadañas ayudan a cortar, segar y cubrir grandes áreas; todo lo que necesitas a la hora de elaborar una lista de tareas. Aumenta <%= str %> de Fuerza. Equipamiento de Edición Limitada de Invierno 2025-2026.",
|
||||
"weaponSpecialWinter2026HealerNotes": "Los bastones dan soporte, estabilidad y dirección; todo lo que ayuda a conquistar verdaderamente una lista de tareas. Aumenta <%= int %> de Inteligencia. Equipamiento de Edición Limitada de Invierno 2025-2026.",
|
||||
"weaponSpecialWinter2026MageText": "Bastón Candelabro"
|
||||
"weaponSpecialWinter2026MageText": "Bastón Candelabro",
|
||||
"weaponSpecialSummer2025HealerNotes": "Dibuja un ocho mientras avanzas, logrando un gran progreso en tus tareas. Aumenta <%= int %> de Inteligencia. Equipamiento de Edición Limitada de Verano 2025."
|
||||
}
|
||||
|
||||
@@ -941,5 +941,14 @@
|
||||
"backgrounds052026": "Ensemble 144 : Sortie Mai 2026",
|
||||
"backgroundElvenCitadelText": "Citadelle Elfique",
|
||||
"backgroundOnAStrangePlanetText": "Sur une Étrange Planète",
|
||||
"backgroundOnAStrangePlanetNotes": "Aventurez vous là ou aucun·e habitant·e d'Habitica n'est allé·e auparavant : Sur une Étrange Planète."
|
||||
"backgroundOnAStrangePlanetNotes": "Aventurez vous là ou aucun·e habitant·e d'Habitica n'est allé·e auparavant : Sur une Étrange Planète.",
|
||||
"backgrounds062026": "Set 145 : Sortie Juin 2026",
|
||||
"backgrounds072026": "Set 146 : Sortie Juillet 2026",
|
||||
"backgroundTropicalCoralGardenText": "Jardin de Corail Tropical",
|
||||
"backgroundTropicalCoralGardenNotes": "Plongez dans un Jardin de Corail Tropical.",
|
||||
"backgrounds082026": "Set 147 : Sortie Août 2026",
|
||||
"backgroundVegetableGardenNotes": "Plantez des légumes délicieux dans un Jardin Potager.",
|
||||
"backgroundBeachWithVolcanoNotes": "Admirez les merveilles de la nature sur une Plage avec un Volcan.",
|
||||
"backgroundBeachWithVolcanoText": "Plage avec un Volcan",
|
||||
"backgroundVegetableGardenText": "Jardin Potager"
|
||||
}
|
||||
|
||||
@@ -3549,5 +3549,61 @@
|
||||
"armorSpecialSpring2026WarriorNotes": "Sautez à pied joint dans l'action dès que la neige commence à fondre. Augmente la Constitution de <%= con %>. Équipement Édition Limitée Printemps 2026.",
|
||||
"armorSpecialSpring2026MageNotes": "Arrivez prêt·e à danser, pique-niquer, et à profiter des températures agréable qu'apporte le printemps. Augmente l'Intelligence de <%= int %>. Équipement Édition Limitée Printemps 2026.",
|
||||
"armorArmoireHandstandOutfitNotes": "Les choses semblent bien différentes quand on est à l'envers, non ? Si vous vous sentez coincé·e, c'est le moment de chercher une nouvelle perspective ! Augmente la Perception de <%= per %>. Armoire Enchantée : Ensemble Équilibre sur les mains (Objet 1 sur 1).",
|
||||
"shieldArmoireSoftYellowPillowNotes": "L·e·a Combattant·e expérimenté·e emporte un oreiller pour n'importe quelle expédition. Grandissez et rayonnez en consolidant tout ce que vous avez appris dans vos précédentes aventures... Même en faisant la sieste. Augmente l'Intelligence et la Perception de <%= attrs %> chacune. Armoire Enchantée : Ensemble Vêtements d'Intérieur Jaunes (Objet 3 sur 3)."
|
||||
"shieldArmoireSoftYellowPillowNotes": "L·e·a Combattant·e expérimenté·e emporte un oreiller pour n'importe quelle expédition. Grandissez et rayonnez en consolidant tout ce que vous avez appris dans vos précédentes aventures... Même en faisant la sieste. Augmente l'Intelligence et la Perception de <%= attrs %> chacune. Armoire Enchantée : Ensemble Vêtements d'Intérieur Jaunes (Objet 3 sur 3).",
|
||||
"weaponSpecialSummer2026WarriorNotes": "Cette arme clinquante et classe convient parfaitement à votre esthétique \"marécage\". Augmente la Force de <%= str %>. Équipement Édition Limitée Été 2026.",
|
||||
"weaponArmoireBrightRainbowKiteNotes": "Les couleurs de ce cerf-volant sont puissantes et brillantes. Le regarder s'élever vous rendra fi·er·ère ! Augmente toutes les Caractéristiques de <%= attrs %> chacun. Armoire Enchantée : Set Cerf-Volant Arc-en-Ciel (Objet 1 sur 2).",
|
||||
"weaponArmoirePastelRainbowKiteNotes": "Les couleurs de ce cerf-volant sont apaisantes et discrètes. Il danse et virevolte en flottant dans les airs ! Augmente toutes les Caractéristiques de <%= attrs %> chacun. Armoire Enchantée : Set Cerf-Volant Arc-en-Ciel (Objet 2 sur 2).",
|
||||
"weaponSpecialSummer2026RogueText": "Lame Tsunami",
|
||||
"weaponSpecialSummer2026WarriorText": "Machette Alligator",
|
||||
"weaponSpecialSummer2026HealerText": "Lance Macareux",
|
||||
"weaponSpecialSummer2026MageText": "Lance Requin-Tigre",
|
||||
"weaponSpecialSummer2026MageNotes": "Cette dangereuse arme à double tranchant convient parfaitement à votre esthétique \"océan\". Augmente la Perception de <%= Per %>. Équipement Édition Limitée Été 2026.",
|
||||
"weaponSpecialSummer2026RogueNotes": "Cette arme incurvée et intelligente convient parfaitement à votre esthétique \"océan\". Augmente la Force de <%= str %>. Équipement Édition Limitée Été 2026.",
|
||||
"weaponSpecialSummer2026HealerNotes": "Cette arme délicate décorée de plumes convient parfaitement à votre esthétique \"des îles\". Augmente l'Intelligence de <%= int %>. Équipement Édition Limitée Été 2026.",
|
||||
"weaponMystery202607Text": "Poissons de Compagnie de l'Océanmancien",
|
||||
"weaponMystery202607Notes": "Ces compagnons colorés vont concentrer vos compétences aqueuses. Ne confère aucun bonus. Équipement d'Abonnement Juillet 2026.",
|
||||
"weaponMystery202608Text": "Lame Magenta Rayonnante",
|
||||
"weaponMystery202608Notes": "Brillante, magnifique, et dangereuse envers vos Quotidiennes non accomplies. Ne confère aucun bonus. Équipement d'Abonnement Août 2026.",
|
||||
"weaponArmoireBrightRainbowKiteText": "Cerf-Volant Arc-en-Ciel",
|
||||
"weaponArmoirePastelRainbowKiteText": "Cerf-Volant Arc-en-Ciel Pastel",
|
||||
"weaponArmoireKendoShinaiText": "Shinai de Kendo",
|
||||
"weaponArmoireKendoShinaiNotes": "Léger et doux, vous pouvez utiliser cette épée d'entraînement en bambou pour répondre à vos aspirations d'amélioration. Augmente la Force de <%= str %>. Armoire Enchantée : Ensemble Kendo (Objet 3 sur 3).",
|
||||
"weaponArmoireGardenRakeText": "Râteau de Jardin",
|
||||
"weaponArmoireGardenRakeNotes": "Étape 1 : Réunir toutes les feuilles tombées en un grand tas. Étape 2 : Célébrer tout le travail accompli en sautant dans ce même tas. Étape 3 : Recommencer. Augmente la Constitution de <%= con %>. Armoire Enchantée : Ensemble Jardini·er·ère 2 (Objet 1 sur 2).",
|
||||
"armorSpecialSummer2026WarriorText": "Costume Alligator",
|
||||
"armorSpecialSummer2026WarriorNotes": "Dissimulez vous dans ce costume, mais ne vous cachez pas de vos problèmes. Armez vous de votre puissance animale et faites face à vos tâches tel l'alligator que vous êtres. Augmente la Constitution de <%= con %>. Équipement Édition Limitée Été 2026.",
|
||||
"armorSpecialSummer2026RogueText": "Costume Tsunami",
|
||||
"headMystery202606Text": "Chapeau de Vacances",
|
||||
"headArmoireKendoMenText": "Men de Kendo",
|
||||
"shieldSpecialSummer2026WarriorText": "Bouclier Alligator",
|
||||
"shieldMystery202606Text": "Hamac de Vacances",
|
||||
"shieldMystery202608Text": "Lame d'Emeraude Brillante",
|
||||
"armorSpecialSummer2026HealerText": "Costume Macareux",
|
||||
"armorSpecialSummer2026MageText": "Costume Requin-Tigre",
|
||||
"armorArmoireKendoBoguText": "Bogu de Kendo",
|
||||
"headSpecialSummer2026WarriorText": "Heaume Alligator",
|
||||
"headSpecialSummer2026RogueText": "Heaume Tsunami",
|
||||
"headSpecialSummer2026HealerText": "Heaume Macareux",
|
||||
"headSpecialSummer2026MageText": "Heaume Requin-Tigre",
|
||||
"shieldSpecialSummer2026HealerText": "Potion Macareux",
|
||||
"shieldMystery202607Text": "Bulles Troubles de l'Océanmancien",
|
||||
"shieldArmoireGardenHoseText": "Tuyau d'Arrosage",
|
||||
"eyewearMystery202606Text": "Lunettes de Soleil de Vacances",
|
||||
"armorSpecialSummer2026RogueNotes": "Dissimulez vous dans ce costume tsunami, mais ne vous cachez pas de vos problèmes. Invoquez une terrible tempête pour prendre les devants et faites face à vos tâches tel·le l'aventuri·er·ère que vous êtes. Augmente la Perception de <%= per %>. Équipement Édition Limitée Été 2026.",
|
||||
"armorSpecialSummer2026HealerNotes": "Glissez vous dans ce costume, , mais ne vous cachez pas de vos problèmes. Convoquez votre magie de macareux et attaquez vos tâches tel·le l·e·a macareux que vous êtes. Augmente la Constitution de <%= con %>. Équipement Édition Limitée Été 2026.",
|
||||
"armorSpecialSummer2026MageNotes": "Glissez vous dans ce costume, mais ne vous cachez pas de vos problèmes. Montrez votre rayonnement de requin et nagez tout droit pour faire face à vos tâches tel·le l·e·a requin que vous êtes. Augmente l'Intelligence de <%= int %>. Équipement Édition Limitée Été 2026.",
|
||||
"eyewearMystery202606Notes": "Vos yeux sont peut-être voilés mais votre apparence est toujours solaire ! Ne confère aucun bonus. Équipement d'Abonnement Juin 2026.",
|
||||
"headMystery202606Notes": "Les vacances sont faites pour profiter du soleil... Mais ne cramez pas ! Ne confère aucun bonus. Équipement d'Abonnement Juin 2026.",
|
||||
"headSpecialSummer2026HealerNotes": "En avant et soyez producti·f·ve ! Si vous faites face à des difficultés, réunissez-les dans votre bec coloré et déplacez les aillers. Augmente l'Intelligence de <%= int %>. Équipement Édition Limitée Été 2026.",
|
||||
"headArmoireKendoMenNotes": "Vous serez surpris·e de voir si clairement à travers la grille en étudiant la voie de l'épée. Augmente la Perception de <%= per %>. Armoire Enchantée : Ensemble Kendo (Objet 1 sur 3).",
|
||||
"shieldSpecialSummer2026WarriorNotes": "Déviez les challenges à venir avec ce beau et brillant bouclier. Lorsque vous aurez réussi à terminer votre liste, montez le son et faites la fête ! Augmente la Constitution de <%= con %>. Équipement Édition Limitée Été 2026.",
|
||||
"shieldMystery202608Notes": "Découpez et tranchez toutes vos tâches en morceaux plus faciles à gérer ! Ne confère aucun bonus. Équipement d'Abonnement Août 2026.",
|
||||
"shieldArmoireGardenHoseNotes": "Ce tuyau magique ne s'entortille jamais et peut s'étirer à l'infini dans le moindre recoin de votre environnement. Tou·te·s vos fleurs, arbres, arbrisseaux et familiers assoiffé·e·s pourront s'y désaltérer. Augmente la Perception de <%= per %>. Armoire Enchantée : Ensemble Jardinier 2 (Objet 2 sur 2).",
|
||||
"armorArmoireKendoBoguNotes": "Bien que ce soit une armure d'entraînement, elle vous offre une protection suffisante pour le chemin à venir. Augmente la Constitution de <%= con %>. Armoire Enchantée : Ensemble Kendo (Objet 2 sur 3).",
|
||||
"headSpecialSummer2026WarriorNotes": "En avant et soyez producti·f·ve ! Si vous rencontrez des obstacles, claquez juste la mâchoire et montrez vos grandes dents. Augmente la Force de <%= str %>. Équipement Édition Limitée Été 2026.",
|
||||
"headSpecialSummer2026RogueNotes": "En avant et soyez producti·f·ve ! Si vous vous perdez, vous n'aurez qu'à suivre le courant. Augmente la Perception de <%= per %>. Équipement Édition Limitée Été 2026.",
|
||||
"headSpecialSummer2026MageNotes": "En avant et soyez producti·f·ve ! Si un obstacle ose se mettre sur votre chemin, réduisez-le en poussière avec vos puissantes mâchoires. Augmente la Perception de <%= per %>. Équipement Édition Limitée Été 2026.",
|
||||
"shieldSpecialSummer2026HealerNotes": "Protégez la santé de vos compagnon·ne·s macareu·x·ses avec cette potion. Un excellent ajout au poisson ! Augmente la Constitution de <%= con %>. Équipement Édition Limitée Été 2026.",
|
||||
"shieldMystery202606Notes": "Entre vos tâches, sautez dans ce hamac, détendez-vous et profitez du décor ! Ne confère aucun bonus. Équipement d'Abonnement Juin 2026.",
|
||||
"shieldMystery202607Notes": "Les eaux tumultueuses se plient à votre puissante force magique. Ne confère aucun bonus. Équipement d'Abonnement Juillet 2026."
|
||||
}
|
||||
|
||||
@@ -252,43 +252,47 @@
|
||||
"fall2023BogCreatureHealerSet": "Créature de la Tourbe (Guérisseu·r·se)",
|
||||
"winter2024SnowyOwlRogueSet": "Chouette des Neiges (Voleur)",
|
||||
"winter2024FrozenHealerSet": "Glacé (Guérisseu.r.se)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Ensemble de l'Aboiement à la Menthe Poivrée (Guerri.er.ère)",
|
||||
"winter2024NarwhalWizardMageSet": "Ensemble du Sorcier Narval (Mage)",
|
||||
"spring2024FluoriteWarriorSet": "Ensemble en Fluorite (Guerri·er·ère)",
|
||||
"spring2024HibiscusMageSet": "Ensemble Hibiscus (Mage)",
|
||||
"spring2024BluebirdHealerSet": "Ensemble Merlebleu (Guérisseu·r·se)",
|
||||
"spring2024MeltingSnowRogueSet": "Ensemble de la Neige Fondante (Voleu·r·se)",
|
||||
"summer2024WhaleSharkWarriorSet": "Ensemble du Requin Baleine (Guerri·er·ère)",
|
||||
"summer2024SeaAnemoneMageSet": "Ensemble de l'Anémone de Mer (Mage)",
|
||||
"summer2024SeaSnailHealerSet": "Ensemble de l'Escargot de Mer (Guérisseu·r·se)",
|
||||
"summer2024NudibranchRogueSet": "Ensemble du Nudibranche (Voleu·r·se)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Écorce Menthe Poivrée (Guerri·er·ère)",
|
||||
"winter2024NarwhalWizardMageSet": "Sorcier Narval (Mage)",
|
||||
"spring2024FluoriteWarriorSet": "Fluorite (Guerri·er·ère)",
|
||||
"spring2024HibiscusMageSet": "Hibiscus (Mage)",
|
||||
"spring2024BluebirdHealerSet": "Merlebleu (Guérisseu·r·se)",
|
||||
"spring2024MeltingSnowRogueSet": "Neige Fondante (Voleu·r·se)",
|
||||
"summer2024WhaleSharkWarriorSet": "Requin Baleine (Guerri·er·ère)",
|
||||
"summer2024SeaAnemoneMageSet": "Anémone de Mer (Mage)",
|
||||
"summer2024SeaSnailHealerSet": "Escargot de Mer (Guérisseu·r·se)",
|
||||
"summer2024NudibranchRogueSet": "Nudibranche (Voleu·r·se)",
|
||||
"gemSaleLimitationsText": "Cette promotion ne s'applique que pendant un évènement disponible durant un temps limité. Cet évènement commence le <%= eventStartMonth %> <%= eventStartOrdinal %> à <%= eventStartTime %> <%= timeZone %> et se terminera le <%= eventEndMonth %> <%= eventEndOrdinal %> à <%= eventEndTime %> <%= timeZone %>. Cette promotion ne s'applique que si vous achetez des Gemmes pour vous-même.",
|
||||
"fall2024FieryImpWarriorSet": "Ensemble du Diablotin Ardent (Guerri·er·ère)",
|
||||
"fall2024BlackCatRogueSet": "Ensemble du Chat Noir (Voleu·r·se)",
|
||||
"fall2024UnderworldSorcerorMageSet": "Ensemble du Sorcier de l'Outre-Monde (Mage)",
|
||||
"fall2024SpaceInvaderHealerSet": "Ensemble de l'Envahisseur de l'Espace (Guérisseu·r·se)",
|
||||
"winter2025AuroraMageSet": "Ensemble Aurore (Mage)",
|
||||
"winter2025SnowRogueSet": "Ensemble Neigeux (Voleu·r·se)",
|
||||
"winter2025MooseWarriorSet": "Ensemble Élan (Guerri·er·ère)",
|
||||
"winter2025StringLightsHealerSet": "Ensemble Guirlande de Lumières (Guérisseu·r·se)",
|
||||
"spring2025PlumeriaHealerSet": "Ensemble Plumeria (Guérisseu·r·se)",
|
||||
"spring2025MantisMageSet": "Ensemble Mante Religieuse (Mage)",
|
||||
"spring2025SunshineWarriorSet": "Ensemble Solaire (Guerri·er·ère)",
|
||||
"spring2025CrystalPointRogueSet": "Ensemble Pointe de Cristal (Voleu·r·se)",
|
||||
"summer2025SquidRogueSet": "Ensemble Calamar (Voleu·r·se)",
|
||||
"summer2025SeaAngelHealerSet": "Ensemble Clione (Guérisseu·r·se)",
|
||||
"summer2025FairyWrasseMageSet": "Ensemble Labre Exquis (Mage)",
|
||||
"summer2025ScallopWarriorSet": "Ensemble Pétoncle (Guerri·er·ère)",
|
||||
"fall2025MaskedGhostMageSet": "Ensemble Fantôme Masqué·e (Mage)",
|
||||
"fall2025SasquatchWarriorSet": "Ensemble Big Foot (Guerri·er·ère)",
|
||||
"fall2025SkeletonRogueSet": "Ensemble Squelette (Voleu·r·se)",
|
||||
"fall2025KoboldHealerSet": "Ensemble Kobold (Guérisseu·r·se)",
|
||||
"winter2026RimeReaperWarriorSet": "Ensemble Faucheuse du Grive (Guerri·er·ère)",
|
||||
"winter2026SkiRogueSet": "Ensemble Ski (Voleu·r·se)",
|
||||
"winter2026PolarBearHealerSet": "Ensemble Ourse Blanche (Guérisseu·r·se)",
|
||||
"winter2026MidwinterCandleMageSet": "Ensemble Bougie du Midwinter (Mage)",
|
||||
"spring2026SnowdropHealerSet": "Ensemble Perce-Neige (Guérisseu·r·se)",
|
||||
"spring2026FrogWarriorSet": "Ensemble Grenouille (Guerri·er·ère)",
|
||||
"spring2026MaypoleMageSet": "Ensemble Arbre de Mai (Mage)",
|
||||
"spring2026BranchRogueSet": "Ensemble Branche Printanière (Voleu·r·se)"
|
||||
"fall2024FieryImpWarriorSet": "Diablotin Ardent (Guerri·er·ère)",
|
||||
"fall2024BlackCatRogueSet": "Chat Noir (Voleu·r·se)",
|
||||
"fall2024UnderworldSorcerorMageSet": "Sorcier de l'Outre-Monde (Mage)",
|
||||
"fall2024SpaceInvaderHealerSet": "Envahisseur de l'Espace (Guérisseu·r·se)",
|
||||
"winter2025AuroraMageSet": "Aurore (Mage)",
|
||||
"winter2025SnowRogueSet": "Neige (Voleu·r·se)",
|
||||
"winter2025MooseWarriorSet": "Élan (Guerri·er·ère)",
|
||||
"winter2025StringLightsHealerSet": "Guirlande de Lumières (Guérisseu·r·se)",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria (Guérisseu·r·se)",
|
||||
"spring2025MantisMageSet": "Mante Religieuse (Mage)",
|
||||
"spring2025SunshineWarriorSet": "Rayon de Soleil (Guerri·er·ère)",
|
||||
"spring2025CrystalPointRogueSet": "Pointe de Cristal (Voleu·r·se)",
|
||||
"summer2025SquidRogueSet": "Calamar (Voleu·r·se)",
|
||||
"summer2025SeaAngelHealerSet": "Clione (Guérisseu·r·se)",
|
||||
"summer2025FairyWrasseMageSet": "Labre Exquis (Mage)",
|
||||
"summer2025ScallopWarriorSet": "Pétoncle (Guerri·er·ère)",
|
||||
"fall2025MaskedGhostMageSet": "Fantôme Masqué·e (Mage)",
|
||||
"fall2025SasquatchWarriorSet": "Big Foot (Guerri·er·ère)",
|
||||
"fall2025SkeletonRogueSet": "Squelette (Voleu·r·se)",
|
||||
"fall2025KoboldHealerSet": "Kobold (Guérisseu·r·se)",
|
||||
"winter2026RimeReaperWarriorSet": "Faucheuse du Grive (Guerri·er·ère)",
|
||||
"winter2026SkiRogueSet": "Ski (Voleu·r·se)",
|
||||
"winter2026PolarBearHealerSet": "Ourse Blanche (Guérisseu·r·se)",
|
||||
"winter2026MidwinterCandleMageSet": "Bougie du Midwinter (Mage)",
|
||||
"spring2026SnowdropHealerSet": "Perce-Neige (Guérisseu·r·se)",
|
||||
"spring2026FrogWarriorSet": "Grenouille (Guerri·er·ère)",
|
||||
"spring2026MaypoleMageSet": "Arbre de Mai (Mage)",
|
||||
"spring2026BranchRogueSet": "Branche Printanière (Voleu·r·se)",
|
||||
"summer2026AlligatorWarriorSet": "Alligator (Guerri·er·ère)",
|
||||
"summer2026PuffinHealerSet": "Macareux (Guérisseu·r·se)",
|
||||
"summer2026TigerSharkMageSet": "Requin-Tigre (Mage)",
|
||||
"summer2026TsunamiRogueSet": "Tsunami (Voleu·r·se)"
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"resetAccPop": "Recommencez à zéro. Cela supprimera votre niveau, votre or, votre équipement, votre historique et vos tâches.",
|
||||
"deleteAccount": "Supprimer le compte",
|
||||
"deleteAccPop": "Annule et supprime votre compte Habitica.",
|
||||
"feedback": "Si vous souhaitez nous faire part de vos impressions, n'hésitez pas à les saisir ci-dessous. Nous serions ravi·e·s d'avoir vos retours ! Ce sera posté de façon anonyme, sauf si vous décidez d'entrer vos détails de contact. Vous ne parlez pas bien anglais ? Aucun problème ! Utilisez le langage que vous préférez.",
|
||||
"feedback": "Nous aimerions connaître votre avis ! Si vous souhaitez le partage avec nous, renseignez-le ci-dessous. Ce message sera anonyme à moins que vous ne décidiez d'ajouter vos infos de contact.",
|
||||
"dataExport": "Export de Données",
|
||||
"saveData": "Voici quelques options pour sauvegarder vos données.",
|
||||
"habitHistory": "Historique Habitica",
|
||||
@@ -47,8 +47,8 @@
|
||||
"dangerZone": "Zone de Danger",
|
||||
"resetText1": "<b>ATTENTION !</b> Cette action va réinitialiser une grand partie de votre compte. Ceci est fortement déconseillé, mais certaines personnes y trouvent une utilité dans les premiers temps, après une courte utilisation de l'application.",
|
||||
"resetText2": "Une autre possibilité est d'utiliser une <b>Orbe de Renaissance</b>, qui vous permettra de tout réinitialiser tout en conservant vos Tâches et votre Équipement.",
|
||||
"deleteLocalAccountText": "<b>Confirmez-vous ?</b> Cela va supprimer votre compte Habitica définitivement et il ne pourra pas être restauré ! Vous devrez créer un nouveau compte pour utiliser Habitica de nouveau. Les Gemmes sur votre compte ou celles dépensées ne seront pas remboursées. Si vous confirmez définitivement, tapez votre mot de passe dans le champ de texte ci-dessous.",
|
||||
"deleteSocialAccountText": "<b>Confirmez-vous votre choix ?</b> Cela supprimera votre compte définitivement, et il ne pourra jamais être restauré ! Vous devrez créer un nouveau compte pour réutiliser Habitica. Vos gemmes restantes ou dépensées ne seront pas remboursées. Si votre décision est prise, écrivez <b>\"<%= magicWord %>\"</b> dans le champ ci-dessous.",
|
||||
"deleteLocalAccountText": "<b>En êtes-vous certain·e ?</b> Cette action est permanente. Supprimer votre compte effacera toutes vos données, et celles-ci ne pourront être récupérées. Les Gemmes ne seront pas remboursées.<br><br>Votre compte sera supprimé après 24h, voire jusqu'à 30 jours si vous avez choisi de partager vos données analytiques. Une fois votre compte supprimé, vous pourrez vous connecter via un nouveau compte Habitica en utilisant vos précédentes informations de connexion.<br><br>Pour continuer, merci de renseigner votre mot de passe ci-dessous.",
|
||||
"deleteSocialAccountText": "<b>En êtes-vous certain·e ?</b> Cette action est permanente. Supprimer votre compte effacera toutes vos données, et celles-ci ne pourront être récupérées. Les Gemmes ne seront pas remboursées.<br><br>Votre compte sera supprimé après 24h, voire jusqu'à 30 jours si vous avez choisi de partager vos données analytiques. Une fois votre compte supprimé, vous pourrez vous connecter via un nouveau compte Habitica en utilisant vos précédentes informations de connexion.<br><br>Pour continuer, merci d'entrer <%= magicWord %> ci-dessous.",
|
||||
"API": "API",
|
||||
"APIv3": "API v3",
|
||||
"APIText": "Copiez ceci pour un usage dans des applications tierces. Considérez toutefois votre Jeton d'API comme l'équivalent d'un mot de passe, et ne le partagez pas publiquement. Votre ID d'utilisateur peut occasionnellement vous être demandé, mais ne publiez jamais votre Jeton d'API là où d'autres peuvent le voir, y compris sur Github.",
|
||||
@@ -116,7 +116,7 @@
|
||||
"generate": "Générer",
|
||||
"getCodes": "Obtenir les Codes",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Webhooks propose aux Développeu·r·se·s de recevoir des notification quand une action en particulier est faite, tel que valider ou mettre à jour une Tâche, ou envoyé un message dans un Groupe. En créant un webhook, vous pourrez écouter les changements dans Habitica et mettre au point des applis qui répondent à ces changement. <br><br>Pour des informations complémentaires et des exemples de webhooks, merci de visiter nos<a target=\"_blank\" href=\"https://habitica.com/apidoc/#api-Webhook-AddWebhook\"> Documents API</a>.",
|
||||
"webhooksInfo": "Webhooks propose aux Développeu·r·se·s de recevoir des notification quand une action en particulier est faite, tel que valider ou mettre à jour une Tâche, ou envoyé un message dans un Groupe. En créant un webhook, vous pourrez écouter les changements dans Habitica et mettre au point des applis qui répondent à ces changement. <br><br>Pour des informations complémentaires et des exemples de webhooks, merci de visiter nos<a target=\"_blank\" href=\"https://apidoc.habitica.com/#api-Webhook-AddWebhook\"> Documents API</a>.",
|
||||
"enabled": "Activé",
|
||||
"webhookURL": "URL du webhook",
|
||||
"invalidUrl": "URL invalide",
|
||||
|
||||
@@ -277,5 +277,8 @@
|
||||
"subscriptionBillingFYIShort": "Les abonnements se renouvellent automatiquement à moins que vous n'annuliez votre engagement 24 heures avant la fin de la période en cours. Vous serez prélevé·e 24 heures avant la date de votre renouvellement, au même prix que celui que vous avez initialement payé.",
|
||||
"mysterySet202604": "Ensemble Astronaute Audacieu·x·se",
|
||||
"mysterySet202605": "Ensemble Nimbus Tombée de la Nuit",
|
||||
"mysterySet202603": "Ensemble Mage de la Glycine"
|
||||
"mysterySet202603": "Ensemble Mage de la Glycine",
|
||||
"mysterySet202607": "Ensemble Océanmancien",
|
||||
"mysterySet202606": "Ensemble Hamac de Vacances",
|
||||
"mysterySet202608": "Ensemble Lames Lumineuses"
|
||||
}
|
||||
|
||||
@@ -143,5 +143,15 @@
|
||||
"deleteType": "Supprimer <%= type %>",
|
||||
"deleteXTasks": "Supprimer <%= count %> Tâches",
|
||||
"brokenChallengeTaskCount": "C'est une des <%= count %> tâches qui font partie d'un Défi qui n'existe plus.",
|
||||
"sureDeleteType": "Êtes vous sûr·e de vouloir supprimer cette tâche ?"
|
||||
"sureDeleteType": "Êtes vous sûr·e de vouloir supprimer cette tâche ?",
|
||||
"everyDay": "chaque jour",
|
||||
"everyXDays": "tous les <%= count %> jours",
|
||||
"everyWeek": "chaque semaine",
|
||||
"everyMonth": "chaque mois",
|
||||
"everyYear": "chaque année",
|
||||
"everyXYears": "tous les <%= count %> ans",
|
||||
"every": "chaque",
|
||||
"everyXWeeks": "toutes les <%= count %> semaines",
|
||||
"everyXMonths": "tous les <%= count %> mois",
|
||||
"fifthWeekWarning": "Cette tâche <strong>n'apparaîtra pas</strong> comme \"à faire\" durant les mois comptant moins de <%= day %>"
|
||||
}
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
"generate": "Generálás",
|
||||
"getCodes": "Kódok megszerzése",
|
||||
"webhooks": "Webhook",
|
||||
"webhooksInfo": "A webhookok lehetőséget adnak a fejlesztőknek arra, hogy értesítést kapjanak, amikor valamilyen művelet történik – például amikor pontozol vagy frissítesz egy feladatot vagy üzenetet küldesz egy csoportban. Ha létrehozol egy webhookot, figyelheted a változásokat a Habiticában, és olyan alkalmazásokat építhetsz, amik ezekre a változásokra reagálnak.<br><br>További információért és példákért látogasd meg az <a target=\"_blank\" href=\"https://habitica.com/apidoc/#api-Webhook-AddWebhook\">API dokumentációnkat</a>.",
|
||||
"webhooksInfo": "A webhookok lehetőséget adnak a fejlesztőknek arra, hogy értesítést kapjanak, amikor valamilyen művelet történik – például amikor pontozol vagy frissítesz egy feladatot vagy üzenetet küldesz egy csoportban. Ha létrehozol egy webhookot, figyelheted a változásokat a Habiticában, és olyan alkalmazásokat építhetsz, amik ezekre a változásokra reagálnak.<br><br>További információért és példákért látogasd meg az <a target=\"_blank\" href=\"https://apidoc.habitica.com/#api-Webhook-AddWebhook\">API dokumentációnkat</a>.",
|
||||
"enabled": "Engedélyezve",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "érvénytelen url",
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
"welcomeTo": "Selamat datang di",
|
||||
"welcomeBack": "Selamat datang kembali!",
|
||||
"justin": "Justin",
|
||||
"justinIntroMessage1": "Halo! Kamu pasti baru di sini. Nama saya <strong>Justin</strong>, dan aku akan menjadi pemandumu di Habitica. Jadi, kamu ingin terlihat seperti apa sekarang? Jangan khawatir, kamu dapat mengganti penampilanmu nanti.",
|
||||
"justinIntroMessage1": "Halo! Kamu pasti baru di sini. Nama saya <strong>Justin</strong>, dan aku akan menjadi pemandumu di Habitica. Jadi, kamu ingin terlihat seperti apa sekarang? Jangan khawatir, kamu dapat mengganti penampilanmu nanti.",
|
||||
"justinIntroMessage3": "Bagus! Sekarang, apa yang kamu mau perbaiki selama perjalanan ini?",
|
||||
"introTour": "Ini dia! Aku telah mengisi beberapa Tugas untukmu berdasarkan minatmu, jadi kamu dapat memulai langsung. Klik sebuah Tugas untuk mengedit atau tambahkan Tugas baru untuk menyesuaikan jadwalmu!",
|
||||
"prev": "Sebelum",
|
||||
"next": "Setelah",
|
||||
"randomize": "Acak-acak",
|
||||
"mattBoch": "Matt Boch",
|
||||
"mattBochText1": "Selamat datang di kandang! Aku Matt, sang Penakluk Hewan. Setiap kali kamu menyelesaikan sebuah tugas, kamu akan mendapatkan sebuah kesempatan acak untuk mendapatkan sebuah Telur atau Ramuan Penetas untuk menetas seekor hewean peliharaan. Setelah kamu menetaskan seekor hewan peliharaan, peliharaanmu akan muncul disini! Klik gambar peliharaan untuk memasangnya pada avatarmu. Beri mereka makan dengan makanan yang kamu temukan, dan mereka akan tumbuh cukup besar untuk bisa ditunggangi.",
|
||||
"mattBochText1": "Selamat datang di kandang! Aku Matt, sang Penakluk Hewan. Setiap kali kamu menyelesaikan sebuah tugas, kamu akan mendapatkan kesempatan acak untuk mendapatkan Telur atau Ramuan Penetas untuk menetas seekor hewean peliharaan. Setelah kamu menetaskan seekor hewan peliharaan, peliharaanmu akan muncul di sini! Klik gambar peliharaan untuk memasangnya pada avatarmu. Beri mereka makan dengan makanan yang kamu temukan, dan mereka akan tumbuh cukup besar untuk bisa ditunggangi.",
|
||||
"welcomeToTavern": "Selamat datang di Kedai Minuman!",
|
||||
"sleepDescription": "Perlu istirahat? Tunda Kerusakan (berlokasi di Pengaturan) untuk menunda beberapa permainan dalam Habitica yang lebih sulit:",
|
||||
"sleepBullet1": "Keseharian yang terlewat tidak akan menyakitimu (monster bos masih akan mengakibatkan kerusakan yang disebabkan Keseharian yang terlewat oleh anggota Party yang lain)",
|
||||
|
||||
@@ -73,140 +73,140 @@
|
||||
"backgroundStainedGlassNotes": "Ammira delle Vetrate.",
|
||||
"backgroundRollingHillsText": "Colline ondulanti",
|
||||
"backgroundRollingHillsNotes": "Folleggia tra le colline ondulanti.",
|
||||
"backgrounds042015": "SET 11: Rilasciato ad aprile 2015",
|
||||
"backgrounds042015": "SET 11: Rilasciato ad Aprile 2015",
|
||||
"backgroundCherryTreesText": "Bosco di ciliegi",
|
||||
"backgroundCherryTreesNotes": "Ammira i Ciliegi in Fiore.",
|
||||
"backgroundFloralMeadowText": "Campo fiorito",
|
||||
"backgroundFloralMeadowNotes": "Fai un picnic tra i fiorellini.",
|
||||
"backgroundGumdropLandText": "Landa dei Dolciumi",
|
||||
"backgroundGumdropLandNotes": "Assaggia il dolce panorama.",
|
||||
"backgrounds052015": "SET 12: Rilasciato a maggio 2015",
|
||||
"backgrounds052015": "SET 12: Rilasciato a Maggio 2015",
|
||||
"backgroundMarbleTempleText": "Tempio di marmo",
|
||||
"backgroundMarbleTempleNotes": "Posa di fronte a un tempio di marmo.",
|
||||
"backgroundMountainLakeText": "Lago di montagna",
|
||||
"backgroundMountainLakeNotes": "Immergi i tuoi piedi in un lago montano.",
|
||||
"backgroundPagodasText": "Pagode",
|
||||
"backgroundPagodasNotes": "Arrampicati sulla cima delle pagode.",
|
||||
"backgrounds062015": "SET 13: Rilasciato a giugno 2015",
|
||||
"backgrounds062015": "SET 13: Rilasciato a Giugno 2015",
|
||||
"backgroundDriftingRaftText": "Zattera alla deriva",
|
||||
"backgroundDriftingRaftNotes": "Rema su una zattera alla deriva.",
|
||||
"backgroundShimmeryBubblesText": "Bolle colorate",
|
||||
"backgroundShimmeryBubblesNotes": "Fluttua in un mare di bolle.",
|
||||
"backgroundIslandWaterfallsText": "Isola delle cascate",
|
||||
"backgroundIslandWaterfallsNotes": "Fai un picnic sull'isola delle cascate.",
|
||||
"backgrounds072015": "SET 14: Rilasciato a luglio 2015",
|
||||
"backgrounds072015": "SET 14: Rilasciato a Luglio 2015",
|
||||
"backgroundDilatoryRuinsText": "Rovine di Dilatoria",
|
||||
"backgroundDilatoryRuinsNotes": "Immergiti tra le rovine subacquee.",
|
||||
"backgroundGiantWaveText": "Onda gigante",
|
||||
"backgroundGiantWaveNotes": "Fai surf su un'onda altissima!",
|
||||
"backgroundSunkenShipText": "Nave affondata",
|
||||
"backgroundSunkenShipNotes": "Esplora un relitto sottomarino.",
|
||||
"backgrounds082015": "SET 15: Rilasciato ad agosto 2015",
|
||||
"backgrounds082015": "SET 15: Rilasciato ad Agosto 2015",
|
||||
"backgroundPyramidsText": "Piramidi",
|
||||
"backgroundPyramidsNotes": "Ammira le antiche piramidi.",
|
||||
"backgroundSunsetSavannahText": "Tramonto nella savana",
|
||||
"backgroundSunsetSavannahNotes": "Attraversa la savana al tramonto.",
|
||||
"backgroundTwinklyPartyLightsText": "Luci festive colorate",
|
||||
"backgroundTwinklyPartyLightsNotes": "Danza sotto le luci colorate!",
|
||||
"backgrounds092015": "SET 16: Rilasciato a settembre 2015",
|
||||
"backgrounds092015": "SET 16: Rilasciato a Settembre 2015",
|
||||
"backgroundMarketText": "Mercato di Habitica",
|
||||
"backgroundMarketNotes": "Fai acquisti nel Mercato.",
|
||||
"backgroundStableText": "Scuderia di Habitica",
|
||||
"backgroundStableNotes": "Prenditi cura degli animali nella Scuderia.",
|
||||
"backgroundTavernText": "Taverna di Habitica",
|
||||
"backgroundTavernNotes": "Fai una visita alla Taverna.",
|
||||
"backgrounds102015": "SET 17: Rilasciato ad ottobre 2015",
|
||||
"backgrounds102015": "SET 17: Rilasciato ad Ottobre 2015",
|
||||
"backgroundHarvestMoonText": "Luna del Raccolto",
|
||||
"backgroundHarvestMoonNotes": "Canta al chiarore della Luna del Raccolto.",
|
||||
"backgroundSlimySwampText": "Palude Melmosa",
|
||||
"backgroundSlimySwampNotes": "Arranca attraverso una palude melmosa.",
|
||||
"backgroundSwarmingDarknessText": "Oscurità Brulicante",
|
||||
"backgroundSwarmingDarknessNotes": "Un'oscurità che mette i brividi.",
|
||||
"backgrounds112015": "SET 18: Rilasciato a novembre 2015",
|
||||
"backgrounds112015": "SET 18: Rilasciato a Novembre 2015",
|
||||
"backgroundFloatingIslandsText": "Isole Fluttuanti",
|
||||
"backgroundFloatingIslandsNotes": "Saltella tra le isole fluttuanti.",
|
||||
"backgroundNightDunesText": "Dune Notturne",
|
||||
"backgroundNightDunesNotes": "Fai una passeggiata notturna tra le dune.",
|
||||
"backgroundSunsetOasisText": "Oasi al tramonto",
|
||||
"backgroundSunsetOasisNotes": "Goditi l'oasi durante il tramonto.",
|
||||
"backgrounds122015": "SET 19: Rilasciato a dicembre 2015",
|
||||
"backgrounds122015": "SET 19: Rilasciato a Dicembre 2015",
|
||||
"backgroundAlpineSlopesText": "Pendii alpini",
|
||||
"backgroundAlpineSlopesNotes": "Scia sui pendii delle montagne.",
|
||||
"backgroundSnowySunriseText": "Alba innevata",
|
||||
"backgroundSnowySunriseNotes": "Ammira il colore della neve all'alba.",
|
||||
"backgroundWinterTownText": "Città invernale",
|
||||
"backgroundWinterTownNotes": "Passeggia per la città invernale.",
|
||||
"backgrounds012016": "SET 20: Rilasciato a gennaio 2016",
|
||||
"backgrounds012016": "SET 20: Rilasciato a Gennaio 2016",
|
||||
"backgroundFrozenLakeText": "Lago ghiacciato",
|
||||
"backgroundFrozenLakeNotes": "Pattina su un lago ghiacciato.",
|
||||
"backgroundSnowmanArmyText": "Esercito di pupazzi di neve",
|
||||
"backgroundSnowmanArmyNotes": "Guida un esercito di pupazzi di neve.",
|
||||
"backgroundWinterNightText": "Notte d'inverno",
|
||||
"backgroundWinterNightNotes": "Osserva le stelle nella notte invernale.",
|
||||
"backgrounds022016": "SET 21: Rilasciato a febbraio 2016",
|
||||
"backgrounds022016": "SET 21: Rilasciato a Febbraio 2016",
|
||||
"backgroundBambooForestText": "Foresta di bambù",
|
||||
"backgroundBambooForestNotes": "Passeggia attraverso una foresta di bambù.",
|
||||
"backgroundCozyLibraryText": "Biblioteca",
|
||||
"backgroundCozyLibraryNotes": "Leggi in un'accogliente biblioteca.",
|
||||
"backgroundGrandStaircaseText": "Grande Scalone",
|
||||
"backgroundGrandStaircaseNotes": "Discendi delle maestose scale.",
|
||||
"backgrounds032016": "SET 22: Rilasciato a marzo 2016",
|
||||
"backgrounds032016": "SET 22: Rilasciato a Marzo 2016",
|
||||
"backgroundDeepMineText": "Miniera Profonda",
|
||||
"backgroundDeepMineNotes": "Trova metalli preziosi in una profonda miniera.",
|
||||
"backgroundRainforestText": "Foresta Pluviale",
|
||||
"backgroundRainforestNotes": "Avventurati in una foresta pluviale.",
|
||||
"backgroundStoneCircleText": "Cerchio di Pietre",
|
||||
"backgroundStoneCircleNotes": "Lancia incantesimi all'interno del Cerchio di Pietre.",
|
||||
"backgrounds042016": "SET 23: Rilasciato ad aprile 2016",
|
||||
"backgrounds042016": "SET 23: Rilasciato ad Aprile 2016",
|
||||
"backgroundArcheryRangeText": "Campo di tiro con l'arco",
|
||||
"backgroundArcheryRangeNotes": "Fai pratica nel campo di tiro con l'arco.",
|
||||
"backgroundGiantFlowersText": "Fiori giganti",
|
||||
"backgroundGiantFlowersNotes": "Divertiti in cima a dei fiori giganteschi.",
|
||||
"backgroundRainbowsEndText": "Fine dell'arcobaleno",
|
||||
"backgroundRainbowsEndNotes": "Trova l'oro alla fine dell'arcobaleno.",
|
||||
"backgrounds052016": "SET 24: Rilasciato a maggio 2016",
|
||||
"backgrounds052016": "SET 24: Rilasciato a Maggio 2016",
|
||||
"backgroundBeehiveText": "Alveare",
|
||||
"backgroundBeehiveNotes": "Ronza e danza in un alveare.",
|
||||
"backgroundGazeboText": "Gazebo",
|
||||
"backgroundGazeboNotes": "Combatti sotto un Gazebo.",
|
||||
"backgroundTreeRootsText": "Radici dell'Albero",
|
||||
"backgroundTreeRootsNotes": "Esplora le Radici dell'Albero.",
|
||||
"backgrounds062016": "SET 25: Rilasciato a giugno 2016",
|
||||
"backgrounds062016": "SET 25: Rilasciato a Giugno 2016",
|
||||
"backgroundLighthouseShoreText": "Costa del Faro",
|
||||
"backgroundLighthouseShoreNotes": "Passeggia lungo la Costa del Faro.",
|
||||
"backgroundLilypadText": "Ninfea",
|
||||
"backgroundLilypadNotes": "Salta su una ninfea.",
|
||||
"backgroundWaterfallRockText": "Roccia della Cascata",
|
||||
"backgroundWaterfallRockNotes": "Fatti bagnare dagli schizzi della cascata.",
|
||||
"backgrounds072016": "SET 26: Rilasciato a luglio 2016",
|
||||
"backgrounds072016": "SET 26: Rilasciato a Luglio 2016",
|
||||
"backgroundAquariumText": "Acquario",
|
||||
"backgroundAquariumNotes": "Galleggia in un acquario.",
|
||||
"backgroundDeepSeaText": "Oceano Profondo",
|
||||
"backgroundDeepSeaNotes": "Immergiti nelle profondità dell'oceano.",
|
||||
"backgroundDilatoryCastleText": "Castello di Dilatoria",
|
||||
"backgroundDilatoryCastleNotes": "Nuota oltre il Castello di Dilatoria.",
|
||||
"backgrounds082016": "SET 27: Rilasciato ad agosto 2016",
|
||||
"backgrounds082016": "SET 27: Rilasciato ad Agosto 2016",
|
||||
"backgroundIdyllicCabinText": "Baita Idilliaca",
|
||||
"backgroundIdyllicCabinNotes": "Ritirati in una magnifica baita.",
|
||||
"backgroundMountainPyramidText": "Montagna Piramidale",
|
||||
"backgroundMountainPyramidNotes": "Sali i tanti gradini di una Montagna Piramidale.",
|
||||
"backgroundStormyShipText": "Nave in Tempesta",
|
||||
"backgroundStormyShipNotes": "Resisti contro il vento e le onde a bordo di una Nave in Tempesta.",
|
||||
"backgrounds092016": "SET 28: Rilasciato a settembre 2016",
|
||||
"backgrounds092016": "SET 28: Rilasciato a Settembre 2016",
|
||||
"backgroundCornfieldsText": "Campi di granturco",
|
||||
"backgroundCornfieldsNotes": "Goditi una splendida giornata fra i campi di granturco.",
|
||||
"backgroundFarmhouseText": "Fattoria",
|
||||
"backgroundFarmhouseNotes": "Saluta gli animali mentre vai verso la Fattoria.",
|
||||
"backgroundOrchardText": "Frutteto",
|
||||
"backgroundOrchardNotes": "Raccogli i frutti maturi in un frutteto.",
|
||||
"backgrounds102016": "SET 29: Rilasciato a ottobre 2016",
|
||||
"backgrounds102016": "SET 29: Rilasciato ad Ottobre 2016",
|
||||
"backgroundSpiderWebText": "Ragnatela",
|
||||
"backgroundSpiderWebNotes": "Rimani impigliato in una ragnatela.",
|
||||
"backgroundStrangeSewersText": "Strane Fogne",
|
||||
"backgroundStrangeSewersNotes": "Scivola attraverso le Strane Fogne.",
|
||||
"backgroundRainyCityText": "Città Piovosa",
|
||||
"backgroundRainyCityNotes": "Salta nelle pozzanghere della Città Piovosa.",
|
||||
"backgrounds112016": "SET 30: Rilasciato a novembre 2016",
|
||||
"backgrounds112016": "SET 30: Rilasciato a Novembre 2016",
|
||||
"backgroundMidnightCloudsText": "Nuvole di mezzanotte",
|
||||
"backgroundMidnightCloudsNotes": "Vola tra le nuvole nella notte.",
|
||||
"backgroundStormyRooftopsText": "Tetti Tempestosi",
|
||||
@@ -226,253 +226,253 @@
|
||||
"backgroundRedNotes": "Un incredibile sfondo rosso.",
|
||||
"backgroundYellowText": "Giallo",
|
||||
"backgroundYellowNotes": "Un simpatico sfondo giallo.",
|
||||
"backgrounds122016": "SET 31: Rilasciato a dicembre 2016",
|
||||
"backgrounds122016": "SET 31: Rilasciato a Dicembre 2016",
|
||||
"backgroundShimmeringIcePrismText": "Prismi di ghiaccio iridescenti",
|
||||
"backgroundShimmeringIcePrismNotes": "Danza tra delle colorate formazioni di ghiaccio.",
|
||||
"backgroundWinterFireworksText": "Fuochi d'artificio invernali",
|
||||
"backgroundWinterFireworksNotes": "Spara dei fuochi d'artificio.",
|
||||
"backgroundWinterStorefrontText": "Negozio invernale",
|
||||
"backgroundWinterStorefrontNotes": "Acquista dei regali in un negozio invernale.",
|
||||
"backgrounds012017": "SET 32: Rilasciato a gennaio 2017",
|
||||
"backgrounds012017": "SET 32: Rilasciato a Gennaio 2017",
|
||||
"backgroundBlizzardText": "Bufera",
|
||||
"backgroundBlizzardNotes": "Affronta una bufera di neve.",
|
||||
"backgroundSparklingSnowflakeText": "Fiocco di neve luccicante",
|
||||
"backgroundSparklingSnowflakeNotes": "Scivola su uno scintillante fiocco di neve.",
|
||||
"backgroundStoikalmVolcanoesText": "Vulcani di Stoikalm",
|
||||
"backgroundStoikalmVolcanoesNotes": "Esplora i vulcani di Stoikalm.",
|
||||
"backgrounds022017": "SET 33: Rilasciato a febbraio 2017",
|
||||
"backgrounds022017": "SET 33: Rilasciato a Febbraio 2017",
|
||||
"backgroundBellTowerText": "Campanile",
|
||||
"backgroundBellTowerNotes": "Arrampicati sul campanile.",
|
||||
"backgroundTreasureRoomText": "Stanza del tesoro",
|
||||
"backgroundTreasureRoomNotes": "Tuffati nelle ricchezze della stanza del tesoro.",
|
||||
"backgroundWeddingArchText": "Arco matrimoniale",
|
||||
"backgroundWeddingArchNotes": "Mettiti in posa sotto un arco matrimoniale.",
|
||||
"backgrounds032017": "SET 34: Rilasciato a marzo 2017",
|
||||
"backgrounds032017": "SET 34: Rilasciato a Marzo 2017",
|
||||
"backgroundMagicBeanstalkText": "Pianta di fagiolo magico",
|
||||
"backgroundMagicBeanstalkNotes": "Arrampicati fino a raggiungere le nuvole.",
|
||||
"backgroundMeanderingCaveText": "Caverna Labirintica",
|
||||
"backgroundMeanderingCaveNotes": "Esplora la Caverna Labirintica.",
|
||||
"backgroundMistiflyingCircusText": "Circo di Fantalata",
|
||||
"backgroundMistiflyingCircusNotes": "Spassatela nel Circo di Fantalata.",
|
||||
"backgrounds042017": "SET 35: Rilasciato a aprile 2017",
|
||||
"backgrounds042017": "SET 35: Rilasciato ad Aprile 2017",
|
||||
"backgroundBugCoveredLogText": "Tronco ricoperto di insetti",
|
||||
"backgroundBugCoveredLogNotes": "Ispeziona un tronco ricoperto di insetti.",
|
||||
"backgroundGiantBirdhouseText": "Casetta per uccelli gigante",
|
||||
"backgroundGiantBirdhouseNotes": "Riposati in una casetta per uccelli gigante.",
|
||||
"backgroundMistShroudedMountainText": "Montagna avvolta dalla nebbia",
|
||||
"backgroundMistShroudedMountainNotes": "Raggiungi la vetta di una montagna avvolta dalla nebbia.",
|
||||
"backgrounds052017": "SET 36: Rilasciato a maggio 2017",
|
||||
"backgrounds052017": "SET 36: Rilasciato a Maggio 2017",
|
||||
"backgroundGuardianStatuesText": "Statue Guardiane",
|
||||
"backgroundGuardianStatuesNotes": "Sta' all'erta davanti alle Statue Guardiane.",
|
||||
"backgroundHabitCityStreetsText": "Strade di Habit City",
|
||||
"backgroundHabitCityStreetsNotes": "Esplora le strade di Habit City.",
|
||||
"backgroundOnATreeBranchText": "Sul ramo di un albero",
|
||||
"backgroundOnATreeBranchNotes": "Riposati sul ramo di un albero.",
|
||||
"backgrounds062017": "SET 37: Rilasciato a giugno 2017",
|
||||
"backgrounds062017": "SET 37: Rilasciato a Giugno 2017",
|
||||
"backgroundBuriedTreasureText": "Tesoro sepolto",
|
||||
"backgroundBuriedTreasureNotes": "Dissotterra un tesoro sepolto.",
|
||||
"backgroundOceanSunriseText": "Alba sull'oceano",
|
||||
"backgroundOceanSunriseNotes": "Ammira l'alba sull'oceano.",
|
||||
"backgroundSandcastleText": "Castello di sabbia",
|
||||
"backgroundSandcastleNotes": "Regna su un castello di sabbia.",
|
||||
"backgrounds072017": "SET 38: Rilasciato a luglio 2017",
|
||||
"backgrounds072017": "SET 38: Rilasciato a Luglio 2017",
|
||||
"backgroundGiantSeashellText": "Conchiglia Gigante",
|
||||
"backgroundGiantSeashellNotes": "Stenditi tra le valve di un'enorme conchiglia.",
|
||||
"backgroundKelpForestText": "Foresta di kelp",
|
||||
"backgroundKelpForestNotes": "Nuota in una foresta di alghe kelp.",
|
||||
"backgroundMidnightLakeText": "Lago a mezzanotte",
|
||||
"backgroundMidnightLakeNotes": "Riposati vicino ad un lago a notte fonda.",
|
||||
"backgrounds082017": "SET 39: Rilasciato a agosto 2017",
|
||||
"backgrounds082017": "SET 39: Rilasciato ad Agosto 2017",
|
||||
"backgroundBackOfGiantBeastText": "Dorso di una creatura gigante",
|
||||
"backgroundBackOfGiantBeastNotes": "Cavalca sul dorso di una creatura gigante.",
|
||||
"backgroundDesertDunesText": "Dune del deserto",
|
||||
"backgroundDesertDunesNotes": "Esplora con coraggio le dune del deserto.",
|
||||
"backgroundSummerFireworksText": "Fuochi d'artificio estivi",
|
||||
"backgroundSummerFireworksNotes": "Festeggia la Festa del cambio di nome con dei fuochi d'artificio estivi!",
|
||||
"backgrounds092017": "SET 40: Rilasciato a settembre 2017",
|
||||
"backgrounds092017": "SET 40: Rilasciato a Settembre 2017",
|
||||
"backgroundBesideWellText": "Accanto ad un pozzo",
|
||||
"backgroundBesideWellNotes": "Passeggia accanto ad un pozzo.",
|
||||
"backgroundGardenShedText": "Capanna degli attrezzi",
|
||||
"backgroundGardenShedNotes": "Lavora in una capanna degli attrezzi.",
|
||||
"backgroundPixelistsWorkshopText": "Laboratorio del Pixelista",
|
||||
"backgroundPixelistsWorkshopNotes": "Crea un capolavoro nel laboratorio del Pixelista.",
|
||||
"backgrounds102017": "SET 41: Rilasciato a ottobre 2017",
|
||||
"backgrounds102017": "SET 41: Rilasciato ad Ottobre 2017",
|
||||
"backgroundMagicalCandlesText": "Candele magiche",
|
||||
"backgroundMagicalCandlesNotes": "Scaldati col tepore delle candele magiche.",
|
||||
"backgroundSpookyHotelText": "Hotel Sinistro",
|
||||
"backgroundSpookyHotelNotes": "Sbircia nella hall di un hotel sinistro.",
|
||||
"backgroundTarPitsText": "Pozzi di catrame",
|
||||
"backgroundTarPitsNotes": "In punta di piedi attraverso i pozzi di catrame.",
|
||||
"backgrounds112017": "SET 42: Rilasciato a novembre 2017",
|
||||
"backgrounds112017": "SET 42: Rilasciato a Novembre 2017",
|
||||
"backgroundFiberArtsRoomText": "Stanza delle Arti della Fibra",
|
||||
"backgroundFiberArtsRoomNotes": "Fila nella Stanza delle Arti della Fibra.",
|
||||
"backgroundMidnightCastleText": "Castello di mezzanotte",
|
||||
"backgroundMidnightCastleNotes": "Passeggia nei pressi del Castello di mezzanotte.",
|
||||
"backgroundTornadoText": "Tornado",
|
||||
"backgroundTornadoNotes": "Vola attraverso un Tornado.",
|
||||
"backgrounds122017": "SET 43: Rilasciato a dicembre 2017",
|
||||
"backgrounds122017": "SET 43: Rilasciato a Dicembre 2017",
|
||||
"backgroundCrosscountrySkiTrailText": "Pista Campestre da Sci",
|
||||
"backgroundCrosscountrySkiTrailNotes": "Plana lungo una Pista Campestre da Sci.",
|
||||
"backgroundStarryWinterNightText": "Notte Invernale Stellata",
|
||||
"backgroundStarryWinterNightNotes": "Ammira una Notte Invernale Stellata.",
|
||||
"backgroundToymakersWorkshopText": "Laboratorio del giocattolaio",
|
||||
"backgroundToymakersWorkshopNotes": "Scaldati nella meraviglia del Laboratorio del Giocattolaio.",
|
||||
"backgrounds012018": "SET 44: Rilasciato a gennaio 2018",
|
||||
"backgrounds012018": "SET 44: Rilasciato a Gennaio 2018",
|
||||
"backgroundAuroraText": "Aurora",
|
||||
"backgroundAuroraNotes": "Stenditi sotto il bagliore invernale dell'Aurora.",
|
||||
"backgroundDrivingASleighText": "Slitta",
|
||||
"backgroundDrivingASleighNotes": "Guida una slitta sui campi ricoperti di neve.",
|
||||
"backgroundFlyingOverIcySteppesText": "Steppe Gelide",
|
||||
"backgroundFlyingOverIcySteppesNotes": "Sorvola le Steppe Gelide.",
|
||||
"backgrounds022018": "SET 45: Rilasciato a febbraio 2018",
|
||||
"backgrounds022018": "SET 45: Rilasciato a Febbraio 2018",
|
||||
"backgroundChessboardLandText": "Landa della Scacchiera",
|
||||
"backgroundChessboardLandNotes": "Gioca una partita nella Landa della Scacchiera.",
|
||||
"backgroundMagicalMuseumText": "Museo Magico",
|
||||
"backgroundMagicalMuseumNotes": "Visita un Museo Magico.",
|
||||
"backgroundRoseGardenText": "Giardino di Rose",
|
||||
"backgroundRoseGardenNotes": "Gioca in un profumato Giardino di Rose.",
|
||||
"backgrounds032018": "SET 46: Rilasciato a marzo 2018",
|
||||
"backgrounds032018": "SET 46: Rilasciato a Marzo 2018",
|
||||
"backgroundGorgeousGreenhouseText": "Serra Stupenda",
|
||||
"backgroundGorgeousGreenhouseNotes": "Cammina per la flora nella Serra Stupenda.",
|
||||
"backgroundElegantBalconyText": "Terrazzo Elegante",
|
||||
"backgroundElegantBalconyNotes": "Guarda fuori il paesaggio da un Terrazzo Elegante.",
|
||||
"backgroundDrivingACoachText": "Guidando una Carrozza",
|
||||
"backgroundDrivingACoachNotes": "Divertiti a Guidare una Carrozza tra i campi fioriti.",
|
||||
"backgrounds042018": "SET 47: Rilasciato in aprile 2018",
|
||||
"backgrounds042018": "SET 47: Rilasciato ad Aprile 2018",
|
||||
"backgroundTulipGardenText": "Giardino di Tulipani",
|
||||
"backgroundTulipGardenNotes": "Cammina sulle punte dei piedi nel Giardino di Tulipani.",
|
||||
"backgroundFlyingOverWildflowerFieldText": "Campo di Fiori Selvatici",
|
||||
"backgroundFlyingOverWildflowerFieldNotes": "Librati sopra un Campo di Fiori Selvatici.",
|
||||
"backgroundFlyingOverAncientForestText": "Antica Foresta",
|
||||
"backgroundFlyingOverAncientForestNotes": "Vola sopra le punte di un'Antica Foresta.",
|
||||
"backgrounds052018": "SET 48: Rilasciato maggio 2018",
|
||||
"backgrounds052018": "SET 48: Rilasciato a Maggio 2018",
|
||||
"backgroundTerracedRiceFieldText": "Risaia Terrazzata",
|
||||
"backgroundTerracedRiceFieldNotes": "Goditi la Risaia Terrazzata nella stagione di coltivazione.",
|
||||
"backgroundFantasticalShoeStoreText": "Negozio di Scarpe Fantastiche",
|
||||
"backgroundFantasticalShoeStoreNotes": "Cerca nuove divertenti calzature nel Negozio di Scarpe Fantastico.",
|
||||
"backgroundChampionsColosseumText": "Colosseo dei Campioni",
|
||||
"backgroundChampionsColosseumNotes": "Scaldati col tepore del Colosseo dei Campioni.",
|
||||
"backgrounds062018": "SET 49: Rilasciato giugno 2018",
|
||||
"backgrounds062018": "SET 49: Rilasciato a Giugno 2018",
|
||||
"backgroundDocksText": "Moli",
|
||||
"backgroundDocksNotes": "Pesca dalla cima dei Moli.",
|
||||
"backgroundRowboatText": "Barca a Remi",
|
||||
"backgroundRowboatNotes": "Canta le strofe nella Barca a Remi.",
|
||||
"backgroundPirateFlagText": "Bandiera Pirata",
|
||||
"backgroundPirateFlagNotes": "Fai sventolare una temuta Bandiera Pirata.",
|
||||
"backgrounds072018": "SET 50: Rilasciato luglio 2018",
|
||||
"backgrounds072018": "SET 50: Rilasciato a Luglio 2018",
|
||||
"backgroundDarkDeepText": "Oscura Profondità",
|
||||
"backgroundDarkDeepNotes": "Nuota nell'Oscura Profondità tra animali bioluminescenti.",
|
||||
"backgroundDilatoryCityText": "Città di Dilatoria",
|
||||
"backgroundDilatoryCityNotes": "Vaga attraverso la Città Sommersa di Dilatoria.",
|
||||
"backgroundTidePoolText": "Piscina della Marea",
|
||||
"backgroundTidePoolNotes": "Ammira l'oceano vicino a una Piscina della Marea.",
|
||||
"backgrounds082018": "SET 51: Rilasciato agosto 2018",
|
||||
"backgrounds082018": "SET 51: Rilasciato ad Agosto 2018",
|
||||
"backgroundTrainingGroundsText": "Campo di Addestramento",
|
||||
"backgroundTrainingGroundsNotes": "Allenati presso il Campo di Addestramento.",
|
||||
"backgroundFlyingOverRockyCanyonText": "Canyon Roccioso",
|
||||
"backgroundFlyingOverRockyCanyonNotes": "Guarda dall'alto una scena mozzafiato volando sopra il Canyon Roccioso.",
|
||||
"backgroundBridgeText": "Ponte",
|
||||
"backgroundBridgeNotes": "Attraversa un incantevole Ponte.",
|
||||
"backgrounds092018": "SET 52: rilasciato settembre 2018",
|
||||
"backgrounds092018": "SET 52: rilasciato a Settembre 2018",
|
||||
"backgroundApplePickingText": "A Raccogliere Mele",
|
||||
"backgroundApplePickingNotes": "Vai A Raccogliere Mele, e portane a casa un bel cesto.",
|
||||
"backgroundGiantBookText": "Libro Gigante",
|
||||
"backgroundGiantBookNotes": "Leggi mentre cammini tra le pagine del Libro Gigante.",
|
||||
"backgroundCozyBarnText": "Dolce Stalla",
|
||||
"backgroundCozyBarnNotes": "Rilassati con i tuoi animali nella loro Dolce Stalla.",
|
||||
"backgrounds102018": "SET 53: rilasciato ottobre 2018",
|
||||
"backgrounds102018": "SET 53: rilasciato ad Ottobre 2018",
|
||||
"backgroundBayouText": "Palude",
|
||||
"backgroundBayouNotes": "Scaldati al bagliore delle lucciole nella Palude nebbiosa.",
|
||||
"backgroundCreepyCastleText": "Castello Inquietante",
|
||||
"backgroundCreepyCastleNotes": "Avvicinandosi coraggiosamente a un Castello Inquietante.",
|
||||
"backgroundDungeonText": "Sotterraneo",
|
||||
"backgroundDungeonNotes": "Salvando i prigionieri da un Sotterraneo spaventoso.",
|
||||
"backgrounds112018": "SET 54: Rilasciato a novembre 2018",
|
||||
"backgrounds112018": "SET 54: Rilasciato a Novembre 2018",
|
||||
"backgroundBackAlleyText": "Vicolo",
|
||||
"backgroundBackAlleyNotes": "Sii sospetto gironzolando in un Vicolo.",
|
||||
"backgroundGlowingMushroomCaveText": "Grotta Funghesca Lucente",
|
||||
"backgroundGlowingMushroomCaveNotes": "Rimira con ammirazione una Grotta Funghesca Lucente.",
|
||||
"backgroundCozyBedroomText": "Stanza Da Letto Accogliente",
|
||||
"backgroundCozyBedroomNotes": "Accoccolati in una Stanza Da Letto Accogliente.",
|
||||
"backgrounds122018": "SET 55: Rilasciato a dicembre 2018",
|
||||
"backgrounds122018": "SET 55: Rilasciato a Dicembre 2018",
|
||||
"backgroundFlyingOverSnowyMountainsText": "Montagne Innevate",
|
||||
"backgroundFlyingOverSnowyMountainsNotes": "Librati sopra le Montagne Innevate di notte.",
|
||||
"backgroundFrostyForestText": "Foresta Ghiacciata",
|
||||
"backgroundFrostyForestNotes": "Copriti bene per fare un'escursione nella Foresta Ghiacciata.",
|
||||
"backgroundSnowyDayFireplaceText": "Camino in un Giorno Nevoso",
|
||||
"backgroundSnowyDayFireplaceNotes": "Coccolati accanto ad un Camino in un Giorno Nevoso.",
|
||||
"backgrounds012019": "SET 56: Rilasciato a gennaio 2019",
|
||||
"backgrounds012019": "SET 56: Rilasciato a Gennaio 2019",
|
||||
"backgroundAvalancheText": "Valanga",
|
||||
"backgroundAvalancheNotes": "Fuggi dalla forza tonante di una Valanga.",
|
||||
"backgroundArchaeologicalDigText": "Scavo Archeologico",
|
||||
"backgroundArchaeologicalDigNotes": "Dissotterra segreti dell'antico passato in uno Scavo Archeologico.",
|
||||
"backgroundScribesWorkshopText": "Studio dello Scriba",
|
||||
"backgroundScribesWorkshopNotes": "Scrivi la tua prossima grande pergamena in uno Studio dello Scriba.",
|
||||
"backgrounds022019": "SET 57: Rilasciato febbraio 2019",
|
||||
"backgrounds022019": "SET 57: Rilasciato a Febbraio 2019",
|
||||
"backgroundMedievalKitchenText": "Cucina Medioevale",
|
||||
"backgroundMedievalKitchenNotes": "Prepara una tempesta in una cucina medievale.",
|
||||
"backgroundOldFashionedBakeryText": "Panificio vecchio stile",
|
||||
"backgroundOldFashionedBakeryNotes": "Goditi i deliziosi odori fuori da una panetteria vecchio stile.",
|
||||
"backgroundValentinesDayFeastingHallText": "Sala delle feste di San Valentino",
|
||||
"backgroundValentinesDayFeastingHallNotes": "Senti l'amore in una sala delle feste di San Valentino.",
|
||||
"backgrounds032019": "SET 58: Rilasciato marzo 2019",
|
||||
"backgrounds032019": "SET 58: Rilasciato a Marzo 2019",
|
||||
"backgroundDuckPondText": "Stagno delle anatre",
|
||||
"backgroundDuckPondNotes": "Dai da mangiare agli uccelli acquatici allo Stagno delle Anatre.",
|
||||
"backgroundFieldWithColoredEggsText": "Campo con Uova Colorate",
|
||||
"backgroundFieldWithColoredEggsNotes": "Caccia al tesoro di primavera in un Campo con Uova Colorate.",
|
||||
"backgroundFlowerMarketText": "Mercato dei fiori",
|
||||
"backgroundFlowerMarketNotes": "Trova i colori perfetti per bouquet o giardino in un Mercato dei Fiori.",
|
||||
"backgrounds042019": "SET 59: Rilasciato aprile 2019",
|
||||
"backgrounds042019": "SET 59: Rilasciato ad Aprile 2019",
|
||||
"backgroundBirchForestText": "Foresta di Betulle",
|
||||
"backgroundBirchForestNotes": "Trastullati in una tranquilla foresta di betulle.",
|
||||
"backgroundHalflingsHouseText": "Casa del Mezzuomo",
|
||||
"backgroundHalflingsHouseNotes": "Visita l'incantevole Casa di un Mezzuomo.",
|
||||
"backgroundBlossomingDesertText": "Deserto Fiorito",
|
||||
"backgroundBlossomingDesertNotes": "Assisti a una rara super fioritura nel Deserto Fiorito.",
|
||||
"backgrounds052019": "SET 60: Rilasciato maggio 2019",
|
||||
"backgrounds052019": "SET 60: Rilasciato a Maggio 2019",
|
||||
"backgroundDojoText": "Dojo",
|
||||
"backgroundDojoNotes": "Impara nuove mosse in un Dojo.",
|
||||
"backgroundParkWithStatueText": "Parco con una Statua",
|
||||
"backgroundParkWithStatueNotes": "Segui il percorso fiorito attraverso un Parco con una Statua.",
|
||||
"backgroundRainbowMeadowText": "Prato Arcobaleno",
|
||||
"backgroundRainbowMeadowNotes": "Trova la pentola d'oro dove finisce un Arcobaleno in un Prato.",
|
||||
"backgrounds062019": "SET 61: Rilasciato giugno 2019",
|
||||
"backgrounds062019": "SET 61: Rilasciato a Giugno 2019",
|
||||
"backgroundSchoolOfFishText": "Scuola di Pesca",
|
||||
"backgroundSchoolOfFishNotes": "Nuota in una Scuola di Pesca.",
|
||||
"backgroundSeasideCliffsText": "Scogliere sul mare",
|
||||
"backgroundSeasideCliffsNotes": "Stai in piedi su una spiaggia con sopra la bellezza delle scogliere sul mare.",
|
||||
"backgroundUnderwaterVentsText": "Correnti Marine",
|
||||
"backgrounds072019": "SET 62: Rilasciato luglio 2019",
|
||||
"backgrounds072019": "SET 62: Rilasciato a Luglio 2019",
|
||||
"backgroundLakeWithFloatingLanternsText": "Lago con Lanterne Galleggianti",
|
||||
"backgroundLakeWithFloatingLanternsNotes": "Guarda le stelle dall'atmosfera festosa di un Lago con Lanterne Galleggianti.",
|
||||
"backgroundFlyingOverTropicalIslandsText": "Sorvolando le Isole Tropicali",
|
||||
"backgroundFlyingOverTropicalIslandsNotes": "Lascia che la vista ti tolga il fiato mentre Sorvoli le Isole Tropicali.",
|
||||
"backgroundAmongGiantAnemonesText": "Tra le Anemoni Giganti",
|
||||
"backgroundAmongGiantAnemonesNotes": "Esplora la vita della barriera corallina, protetta dai predatori Tra le Anemoni Giganti.",
|
||||
"backgrounds082019": "SET 63: Rilasciato agosto 2019",
|
||||
"backgrounds082019": "SET 63: Rilasciato ad Agosto 2019",
|
||||
"backgroundAmidAncientRuinsText": "Tra Antiche Rovine",
|
||||
"backgroundAmidAncientRuinsNotes": "Stai in piedi in riverenza del misterioso passato Tra Antiche Rovine.",
|
||||
"backgroundGiantDandelionsText": "Denti di Leone Giganti",
|
||||
"backgroundGiantDandelionsNotes": "Gingillati tra i Denti di un Leone Gigante.",
|
||||
"backgroundTreehouseText": "Casa sull'Albero",
|
||||
"backgroundTreehouseNotes": "Rilassati in un rifugio arboricolo tutto per te, nella tua casa sull'albero.",
|
||||
"backgrounds122019": "SET 67: Uscito dicembre 2019",
|
||||
"backgrounds122019": "SET 67: Uscito Dicembre 2019",
|
||||
"backgroundPotionShopNotes": "Trovi un elisir per alcun disturbo a un Negozio Pozione.",
|
||||
"backgroundPotionShopText": "Negozio Pozione",
|
||||
"backgroundFlyingInAThunderstormNotes": "Insegui un Temporale Tumultuoso il più vicino che osi.",
|
||||
"backgroundFlyingInAThunderstormText": "Temporale Tumultuoso",
|
||||
"backgroundFarmersMarketNotes": "Compra gli alimenti più freschi al Mercato Contadino.",
|
||||
"backgroundFarmersMarketText": "Mercato Contadino",
|
||||
"backgrounds112019": "SET 66: Rilasciato a novembre 2019",
|
||||
"backgrounds112019": "SET 66: Rilasciato a Novembre 2019",
|
||||
"backgroundFoggyMoorNotes": "Stai attento traversando una Palude Nebbiosa.",
|
||||
"backgroundFoggyMoorText": "Palude Nebbiosa",
|
||||
"backgrounds102019": "SET 65: Uscito ottobre 2019",
|
||||
"backgrounds102019": "SET 65: Rilasciato ad Ottobre 2019",
|
||||
"backgroundInAClassroomNotes": "Assorbi la conoscenza dai tuoi mentori in un‘ Aula.",
|
||||
"backgroundInAClassroomText": "Aula",
|
||||
"backgroundInAnAncientTombText": "Tomba Antica",
|
||||
"backgroundAutumnFlowerGardenNotes": "Goditi il calore di un Giardino Ornamentale d‘Autunno.",
|
||||
"backgroundAutumnFlowerGardenText": "Giardino Ornamentale d‘Autunno",
|
||||
"backgrounds092019": "SET 64: Uscito settembre 2019",
|
||||
"backgrounds092019": "SET 64: Uscito Settembre 2019",
|
||||
"backgroundUnderwaterVentsNotes": "Fai un tuffo profondo giù, giù alle Correnti Marine.",
|
||||
"backgroundPumpkinCarriageNotes": "Sali su un'incantata Carrozza a forma di Zucca prima che l'orologio suoni la mezzanotte.",
|
||||
"backgroundPumpkinCarriageText": "Carrozza Zucca",
|
||||
@@ -490,42 +490,42 @@
|
||||
"backgroundSaltLakeText": "Lago salato",
|
||||
"backgroundRelaxationRiverNotes": "Lasciati trasportare languidamente dal fiume rilassante.",
|
||||
"backgroundRelaxationRiverText": "Fiume rilassante",
|
||||
"backgrounds062020": "SET 73: Rilasciato a giugno 2020",
|
||||
"backgrounds062020": "SET 73: Rilasciato a Giugno 2020",
|
||||
"backgroundStrawberryPatchNotes": "Raccogli prelibatezze da una fila di fragole.",
|
||||
"backgroundStrawberryPatchText": "Fila di Fragole",
|
||||
"backgroundHotAirBalloonNotes": "Sorvola il paesaggio in mongolfiera.",
|
||||
"backgroundHotAirBalloonText": "Mongolfiera",
|
||||
"backgroundHabitCityRooftopsNotes": "Salta avventurosamente tra i tetti della città di Habit.",
|
||||
"backgroundHabitCityRooftopsText": "Tetti della città",
|
||||
"backgrounds052020": "SET 72: Rilasciato a maggio 2020",
|
||||
"backgrounds052020": "SET 72: Rilasciato a Maggio 2020",
|
||||
"backgroundRainyBarnyardNotes": "Fai una passeggiata inzuppandoti in un cortile piovoso.",
|
||||
"backgroundRainyBarnyardText": "Cortile piovoso",
|
||||
"backgroundHeatherFieldNotes": "Goditi l'aroma di un campo di erica.",
|
||||
"backgroundHeatherFieldText": "Campo di erica",
|
||||
"backgroundAnimalCloudsNotes": "Esercita la tua immaginazione trovando forme animali tra le nuvole.",
|
||||
"backgroundAnimalCloudsText": "Nuvole animali",
|
||||
"backgrounds042020": "SET 71: Rilasciato ad aprile 2020",
|
||||
"backgrounds042020": "SET 71: Rilasciato ad Aprile 2020",
|
||||
"backgroundSucculentGardenNotes": "Ammira l'arida bellezza di un giardino succulento.",
|
||||
"backgroundSucculentGardenText": "Giardino succulento",
|
||||
"backgroundButterflyGardenNotes": "Festeggia con degli impollinatori in un giardino delle farfalle.",
|
||||
"backgroundButterflyGardenText": "Giardino delle farfalle",
|
||||
"backgroundAmongGiantFlowersNotes": "Riposati tra dei fiori giganti.",
|
||||
"backgroundAmongGiantFlowersText": "Tra i fiori giganti",
|
||||
"backgrounds032020": "SET 70: Rilasciato a marzo 2020",
|
||||
"backgrounds032020": "SET 70: Rilasciato a Marzo 2020",
|
||||
"backgroundTeaPartyNotes": "Partecipa a un fantastico Ricevimento del Tè.",
|
||||
"backgroundTeaPartyText": "Ricevimento del Tè",
|
||||
"backgroundHallOfHeroesNotes": "Avvicinati alla sala degli eroi con riconoscenza e riverenza.",
|
||||
"backgroundHallOfHeroesText": "Sala degli eroi",
|
||||
"backgroundElegantBallroomNotes": "Danza tutta la notte in un'elegante sala da ballo.",
|
||||
"backgroundElegantBallroomText": "Elegante sala da ballo",
|
||||
"backgrounds022020": "SET 69: Rilasciato a febbraio 2020",
|
||||
"backgrounds022020": "SET 69: Rilasciato a Febbraio 2020",
|
||||
"backgroundSnowglobeNotes": "Scuoti uno palla di vetro con la neve e prendi il tuo posto in un microcosmo di un paesaggio invernale.",
|
||||
"backgroundSnowglobeText": "Globo di neve",
|
||||
"backgroundDesertWithSnowNotes": "Testimone della rara e tranquilla bellezza di un deserto innevato.",
|
||||
"backgroundDesertWithSnowText": "Deserto innevato",
|
||||
"backgroundBirthdayPartyNotes": "Festeggia la festa di compleanno del tuo Habitante preferito.",
|
||||
"backgroundBirthdayPartyText": "Festa di compleanno",
|
||||
"backgrounds012020": "SET 68: Rilasciato a gennaio 2020",
|
||||
"backgrounds012020": "SET 68: Rilasciato a Gennaio 2020",
|
||||
"backgroundWinterNocturneNotes": "Crogiolati alla luce delle stelle di una notte invernale.",
|
||||
"backgroundWinterNocturneText": "Notte invernale",
|
||||
"backgroundHolidayWreathNotes": "Festeggia il tuo avatar con una ghirlanda festosa profumata.",
|
||||
@@ -535,7 +535,7 @@
|
||||
"backgroundMonsterMakersWorkshopText": "Officina del Creatore di Mostri",
|
||||
"backgroundMonsterMakersWorkshopNotes": "Sperimenta le scienze proibite nell'Officina di un Creatore di Mostri.",
|
||||
"backgroundSwimmingAmongJellyfishNotes": "Fai un'esperienza elettrizzante tra bellezza e pericolo in Nuotando tra le meduse.",
|
||||
"backgrounds072020": "SET 74: Rilasciato a luglio 2020",
|
||||
"backgrounds072020": "SET 74: Rilasciato a Luglio 2020",
|
||||
"backgroundUnderwaterRuinsNotes": "Esplora le Rovine Sommerse affondate molto tempo fa.",
|
||||
"backgroundUnderwaterRuinsText": "Rovine sommerse",
|
||||
"backgroundSwimmingAmongJellyfishText": "Nuotando tra le Meduse",
|
||||
@@ -547,51 +547,51 @@
|
||||
"backgroundJungleCanopyText": "Tettoia nella giungla",
|
||||
"backgroundCampingOutNotes": "Goditi la vita all'aria aperta campeggiando.",
|
||||
"backgroundCampingOutText": "Campeggio",
|
||||
"backgrounds082020": "SET 75: Rilasciato ad agosto 2020",
|
||||
"backgrounds082020": "SET 75: Rilasciato ad Agosto 2020",
|
||||
"backgroundHerdingSheepInAutumnNotes": "Confonditi in un gregge di pecore.",
|
||||
"backgroundHerdingSheepInAutumnText": "Gregge di pecore",
|
||||
"backgroundGiantAutumnLeafNotes": "Appollaiati su una foglia gigante prima che cada.",
|
||||
"backgroundGiantAutumnLeafText": "Foglia Gigante",
|
||||
"backgroundFlyingOverAnAutumnForestNotes": "Ammira gli splendidi colori sottostanti mentre sorvoli una Foresta Autunnale.",
|
||||
"backgroundFlyingOverAnAutumnForestText": "Volando su di una Foresta Autunnale",
|
||||
"backgrounds092020": "SET 76: Rilasciato a settembre 2020",
|
||||
"backgrounds092020": "SET 76: Rilasciato a Settembre 2020",
|
||||
"backgroundSpookyScarecrowFieldText": "Campo di spaventosi spaventapasseri",
|
||||
"backgroundSpookyScarecrowFieldNotes": "Dimostra di essere più audace di un uccello sfidando un campo di spaventosi spaventapasseri.",
|
||||
"backgroundHauntedForestNotes": "Cerca di non perderti nella foresta stregata.",
|
||||
"backgroundHauntedForestText": "Foresta infestata",
|
||||
"backgroundCrescentMoonNotes": "Fai il lavoro dei tuoi sogni mentre siedi sulla luna crescente.",
|
||||
"backgroundCrescentMoonText": "Luna crescente",
|
||||
"backgrounds102020": "SET 77: Rilasciato a ottobre 2020",
|
||||
"backgrounds102020": "SET 77: Rilasciato ad Ottobre 2020",
|
||||
"backgroundRiverOfLavaNotes": "Sfida la convezione passeggiando lungo un fiume di lava.",
|
||||
"backgroundRiverOfLavaText": "Fiume di lava",
|
||||
"backgroundRestingInTheInnNotes": "Lavora dal comfort e dalla sicurezza della tua camera mentre sosti alla locanda.",
|
||||
"backgroundRestingInTheInnText": "Sosta alla locanda",
|
||||
"backgroundMysticalObservatoryNotes": "Leggi il tuo destino tra le stelle da un osservatorio mistico.",
|
||||
"backgroundMysticalObservatoryText": "Osservatorio Mistico",
|
||||
"backgrounds112020": "SET 78: Rilasciato a novembre 2020",
|
||||
"backgrounds112020": "SET 78: Rilasciato a Novembre 2020",
|
||||
"backgroundHolidayHearthNotes": "Rilassati, riscaldati e asciugati accanto ad un caminetto festivo.",
|
||||
"backgroundHolidayHearthText": "Caminetto Festivo",
|
||||
"backgroundInsideAnOrnamentNotes": "Lascia che la tua gioia festiva risplenda da dentro un addobbo.",
|
||||
"backgroundInsideAnOrnamentText": "Dentro un addobbo",
|
||||
"backgroundGingerbreadHouseText": "Casetta di Zenzero",
|
||||
"backgroundGingerbreadHouseNotes": "Ammira i panorami, i profumi e (se ne hai il coraggio) i sapori di una casetta di zenzero.",
|
||||
"backgrounds122020": "SET 79: Rilasciato a dicembre 2020",
|
||||
"backgrounds122020": "SET 79: Rilasciato a Dicembre 2020",
|
||||
"backgroundWintryCastleNotes": "Ammira un castello invernale attraverso le gelide nebbie.",
|
||||
"backgroundWintryCastleText": "Castello invernale",
|
||||
"backgroundIcicleBridgeNotes": "Attraversa il ponte di ghiaccio con attenzione.",
|
||||
"backgroundIcicleBridgeText": "Ponte di ghiaccio",
|
||||
"backgroundHotSpringNotes": "Dissolvi le tue preoccupazioni con un tuffo in una sorgente termale.",
|
||||
"backgroundHotSpringText": "Sorgente termale",
|
||||
"backgrounds012021": "SET 80: Rilasciato a gennaio 2021",
|
||||
"backgrounds012021": "SET 80: Rilasciato a Gennaio 2021",
|
||||
"backgroundThroneRoomNotes": "Concedi udienza nella tua lussuosa Sala del Trono.",
|
||||
"backgroundThroneRoomText": "Sala del Trono",
|
||||
"backgroundHeartShapedBubblesNotes": "Galleggia allegramente tra le bolle a forma di cuore.",
|
||||
"backgroundHeartShapedBubblesText": "Bolle a forma di cuore",
|
||||
"backgroundFlyingOverGlacierNotes": "Osserva la maestosità ghiacciata sorvolando un ghiacciaio.",
|
||||
"backgroundFlyingOverGlacierText": "Sorvolando un ghiacciaio",
|
||||
"backgrounds022021": "SET 81: Rilasciato a febbraio 2021",
|
||||
"backgrounds022021": "SET 81: Rilasciato a Febbraio 2021",
|
||||
"backgroundInTheArmoryText": "Nell'Armeria",
|
||||
"backgrounds032021": "SET 82: Rilasciato a marzo 2021",
|
||||
"backgrounds032021": "SET 82: Rilasciato a Marzo 2021",
|
||||
"backgroundSpringThawNotes": "Guarda l'inverno arrendersi al disgelo primaverile.",
|
||||
"backgroundSpringThawText": "Disgelo di primavera",
|
||||
"backgroundSplashInAPuddleNotes": "Goditi il la fine della tempesta inzuppandoti in una pozzanghera.",
|
||||
@@ -607,14 +607,14 @@
|
||||
"backgroundWindmillsText": "Mulini a vento",
|
||||
"backgroundAfternoonPicnicNotes": "Goditi un picnic pomeridiano da solo o con il tuo animaletto.",
|
||||
"backgroundAfternoonPicnicText": "Picnic pomeridiano",
|
||||
"backgrounds052021": "SET 84: Rilasciato a maggio 2021",
|
||||
"backgrounds052021": "SET 84: Rilasciato a Maggio 2021",
|
||||
"backgroundWindmillsNotes": "Salta in sella ed inizia a duellare i mulini a vento.",
|
||||
"backgroundDragonsLairNotes": "Cerca di non disturbare l'inquilino della tana del drago.",
|
||||
"backgroundDragonsLairText": "Tana del drago",
|
||||
"backgroundForestedLakeshoreText": "Sponda Boscosa di un Lago",
|
||||
"backgroundClotheslineNotes": "Esci ad asciugare i vestiti su di uno stendino.",
|
||||
"backgroundClotheslineText": "Stendino",
|
||||
"backgrounds062021": "SET 85: Rilasciato a giugno 2021",
|
||||
"backgrounds062021": "SET 85: Rilasciato a Giugno 2021",
|
||||
"backgroundWaterMillNotes": "Guarda la ruota del mulino ad acqua girare e girare.",
|
||||
"backgroundWaterMillText": "Mulino ad acqua",
|
||||
"backgroundForestedLakeshoreNotes": "Ingelosisci la tua squadra scegliendo il punto migliore sulla Sponda Boscosa di un Lago.",
|
||||
@@ -631,15 +631,15 @@
|
||||
"backgroundRopeBridgeText": "Ponte di Corda",
|
||||
"backgroundStoneTowerNotes": "Ammira dai parapetti di una Torre di Pietra a un'altra.",
|
||||
"backgroundStoneTowerText": "Torre di Pietra",
|
||||
"backgrounds082021": "SET 87: Rilasciato Agosto 2021",
|
||||
"backgrounds082021": "SET 87: Rilasciato ad Agosto 2021",
|
||||
"backgroundAutumnLakeshoreNotes": "Riposati sulla riva di un lago autunnale per apprezzare il riflesso del bosco nell'acqua.",
|
||||
"backgrounds092021": "SET 88: Rilasciato Settembre 2021",
|
||||
"backgrounds092021": "SET 88: Rilasciato a Settembre 2021",
|
||||
"backgroundVineyardText": "Vigna",
|
||||
"backgroundAutumnLakeshoreText": "Riva del lago autunnale",
|
||||
"backgroundVineyardNotes": "Esplora la distesa di una vigna fruttuosa.",
|
||||
"backgroundAutumnPoplarsNotes": "Deliziati nelle brillanti sfumatore di marrone e oro in un Bosco di Pioppi Autunnale.",
|
||||
"backgroundAutumnPoplarsText": "Bosco di Pioppi autunnale",
|
||||
"backgrounds102021": "SET 89: Rilasciato a ottobre 2021",
|
||||
"backgrounds102021": "SET 89: Rilasciato ad Ottobre 2021",
|
||||
"backgroundCrypticCandlesText": "Candele criptiche",
|
||||
"backgroundCrypticCandlesNotes": "Evoca forze arcane tra delle candele criptiche.",
|
||||
"backgroundHauntedPhotoNotes": "Ritrovati intrappolato nel mondo in bianco e nero di una foto spettrale.",
|
||||
@@ -648,33 +648,33 @@
|
||||
"backgroundUndeadHandsNotes": "Prova a fuggire dalle grinfie delle mani non morte.",
|
||||
"backgroundInsideAPotionBottleNotes": "Sbircia attraverso il vetro mentre speri di essere salvato dall'interno di una pozione.",
|
||||
"backgroundSpiralStaircaseNotes": "Sali, scendi e gira intorno a una scala a chiocciola.",
|
||||
"backgrounds112021": "SET 90: Rilasciato a novembre 2021",
|
||||
"backgrounds112021": "SET 90: Rilasciato a Novembre 2021",
|
||||
"backgroundFortuneTellersShopText": "Negozio dell'Indovino",
|
||||
"backgroundFortuneTellersShopNotes": "Cerca allettanti indizi sul tuo futuro nella negozio di un indovino.",
|
||||
"backgroundInsideAPotionBottleText": "Dentro una Pozione",
|
||||
"backgroundSpiralStaircaseText": "Scala a chiocciola",
|
||||
"backgroundFrozenPolarWatersText": "Acque polari ghiacciate",
|
||||
"backgroundFrozenPolarWatersNotes": "Esplora le ghiacciate acque polari.",
|
||||
"backgrounds122021": "SET 91: Rilasciato a dicembre 2021",
|
||||
"backgrounds122021": "SET 91: Rilasciato a Dicembre 2021",
|
||||
"backgroundWinterCanyonText": "Canyon Invernale",
|
||||
"backgroundWinterCanyonNotes": "Avventurati in un Canyon Invernale!",
|
||||
"backgroundIcePalaceText": "Palazzo di ghiaccio",
|
||||
"backgroundIcePalaceNotes": "Regna in un palazzo di ghiaccio.",
|
||||
"backgrounds012022": "SET 92: Rilasciato Gennaio 2022",
|
||||
"backgrounds012022": "SET 92: Rilasciato a Gennaio 2022",
|
||||
"backgroundMeteorShowerNotes": "Osserva l'abbagliante spettacolo notturno di una pioggia di meteoriti.",
|
||||
"backgroundSnowyFarmNotes": "Controlla che tutti stiano bene e al caldo nella tua fattoria coperta di neve.",
|
||||
"backgroundMeteorShowerText": "Pioggia di Meteore",
|
||||
"backgroundPalmTreeWithFairyLightsText": "Palma con Luci Fatate",
|
||||
"backgroundPalmTreeWithFairyLightsNotes": "Posa vicino a una palma ornata di luci decorative.",
|
||||
"backgroundSnowyFarmText": "Fattoria Innevata",
|
||||
"backgrounds022022": "SET 93: Rilasciato a febbraio 2022",
|
||||
"backgrounds022022": "SET 93: Rilasciato a Febbraio 2022",
|
||||
"backgroundWinterWaterfallText": "Cascata Invernale",
|
||||
"backgroundWinterWaterfallNotes": "Stupisciti di fronte ad una Cascata Invernale.",
|
||||
"backgroundOrangeGroveText": "Aranceto",
|
||||
"backgroundOrangeGroveNotes": "Passeggia attraverso un profumato Aranceto.",
|
||||
"backgroundIridescentCloudsText": "Nubi Iridescenti",
|
||||
"backgroundIridescentCloudsNotes": "Galleggia tra le Nuvole Iridescenti.",
|
||||
"backgrounds032022": "SET 94: Rilasciato a marzo 2022",
|
||||
"backgrounds032022": "SET 94: Rilasciato a Marzo 2022",
|
||||
"backgroundAnimalsDenText": "Tana degli animaletti dei boschi",
|
||||
"backgroundAnimalsDenNotes": "Mettiti a tuo agio in una tana degli animaletti dei boschi.",
|
||||
"backgroundBrickWallWithIvyText": "Muro di mattoni con edera",
|
||||
@@ -685,25 +685,25 @@
|
||||
"backgroundFlowerShopText": "Negozio di fiori",
|
||||
"backgroundFlowerShopNotes": "Goditi il dolce profumo di un negozio di fiori.",
|
||||
"backgroundSpringtimeLakeText": "Laghetto primaverile",
|
||||
"backgrounds042022": "SET 95: Rilasciato ad aprile 2022",
|
||||
"backgrounds042022": "SET 95: Rilasciato ad Aprile 2022",
|
||||
"backgroundBlossomingTreesNotes": "Tergiversa sotto gli alberi in fiore.",
|
||||
"backgroundSpringtimeLakeNotes": "Ammira i panorami lungo le rive di un laghetto primaverile.",
|
||||
"hideLockedBackgrounds": "Nascondi sfondi bloccati",
|
||||
"backgrounds052022": "SET 96: Rilasciato a maggio 2022",
|
||||
"backgrounds052022": "SET 96: Rilasciato a Maggio 2022",
|
||||
"backgroundEnchantedMusicRoomText": "Studio Musicale Incantato",
|
||||
"backgroundOnACastleWallText": "Sulle Mura Di Un Castello",
|
||||
"backgroundEnchantedMusicRoomNotes": "Suona in uno Studio Musicale Incantato.",
|
||||
"backgroundOnACastleWallNotes": "Guarda oltre le Mura di un Castello.",
|
||||
"backgroundCastleGateText": "Porta Di Un Castello",
|
||||
"backgroundCastleGateNotes": "Stai di guardia presso la Porta di un Castello.",
|
||||
"backgrounds062022": "SET 97: Rilasciato a giugno 2022",
|
||||
"backgrounds062022": "SET 97: Rilasciato a Giugno 2022",
|
||||
"backgroundBeachWithDunesText": "Spiaggia con le Dune",
|
||||
"backgroundBeachWithDunesNotes": "Esplora una spiaggia con le dune.",
|
||||
"backgroundMountainWaterfallText": "Cascata di Montagna",
|
||||
"backgroundMountainWaterfallNotes": "Ammira una cascata di montagna.",
|
||||
"backgroundSailboatAtSunsetText": "Barca a Vela al Tramonto",
|
||||
"backgroundSailboatAtSunsetNotes": "Goditi la bellezza di una barca a vela al tramonto.",
|
||||
"backgrounds072022": "SET 98: Rilasciato a luglio 2022",
|
||||
"backgrounds072022": "SET 98: Rilasciato a Luglio 2022",
|
||||
"backgroundBioluminescentWavesText": "Onde Bioluminescenti",
|
||||
"backgroundBioluminescentWavesNotes": "Ammira il bagliore delle Onde Bioluminescenti.",
|
||||
"backgroundUnderwaterCaveText": "Grotta Sommersa",
|
||||
@@ -712,12 +712,12 @@
|
||||
"backgroundUnderwaterStatuesNotes": "Prova a non battere le ciglia in un Parco delle Sculture Sommerso.",
|
||||
"backgroundMessyRoomText": "Stanza Disordinata",
|
||||
"backgroundByACampfireNotes": "Goditi il caldo bagliore Accanto ad un Falò.",
|
||||
"backgrounds082022": "SET 99: Rilasciato ad agosto 2022",
|
||||
"backgrounds082022": "SET 99: Rilasciato ad Agosto 2022",
|
||||
"backgroundRainbowEucalyptusText": "Eucalipto Arcobaleno",
|
||||
"backgroundByACampfireText": "Accanto ad un Falò",
|
||||
"backgroundRainbowEucalyptusNotes": "Ammira un boschetto di Eucalipto Arcobaleno.",
|
||||
"backgroundMessyRoomNotes": "Riordina una Stanza Disordinata.",
|
||||
"backgrounds092022": "SET 100: Rilasciato a settembre 2022",
|
||||
"backgrounds092022": "SET 100: Rilasciato a Settembre 2022",
|
||||
"backgroundTheatreStageText": "Palcoscenico Teatrale",
|
||||
"backgroundTheatreStageNotes": "Esibisciti su di un Palcoscenico Teatrale.",
|
||||
"backgroundAutumnPicnicText": "Picnic Autunnale",
|
||||
@@ -729,7 +729,7 @@
|
||||
"backgroundMaskMakersWorkshopText": "Bottega del Mascheraio",
|
||||
"backgroundMaskMakersWorkshopNotes": "Prova un nuovo volto nella Bottega del Mascheraio.",
|
||||
"backgroundCemeteryGateText": "Cancello di un Cimitero",
|
||||
"backgrounds102022": "SET 101: Rilasciato a ottobre 2022",
|
||||
"backgrounds102022": "SET 101: Rilasciato ad Ottobre 2022",
|
||||
"backgroundCemeteryGateNotes": "Infesta il Cancello di un Cimitero.",
|
||||
"backgroundAmongGiantMushroomsText": "Tra Funghi Giganti",
|
||||
"backgroundAmongGiantMushroomsNotes": "Meravigliati dinanzi a Funghi Giganti.",
|
||||
@@ -737,15 +737,15 @@
|
||||
"backgroundMistyAutumnForestNotes": "Girovaga attraverso una Nebbiosa Foresta Autunnale.",
|
||||
"backgroundAutumnBridgeText": "Ponte in Autunno",
|
||||
"backgroundAutumnBridgeNotes": "Ammira la bellezza di un Ponte in Autunno.",
|
||||
"backgrounds112022": "SET 102: Rilasciato a novembre 2022",
|
||||
"backgrounds122022": "SET 103: Rilasciato a dicembre 2022",
|
||||
"backgrounds112022": "SET 102: Rilasciato a Novembre 2022",
|
||||
"backgrounds122022": "SET 103: Rilasciato a Dicembre 2022",
|
||||
"backgroundBranchesOfAHolidayTreeText": "Rami di un Albero Festivo",
|
||||
"backgroundBranchesOfAHolidayTreeNotes": "Folleggia sui Rami di un Albero Festivo.",
|
||||
"backgroundInsideACrystalText": "Dentro un Cristallo",
|
||||
"backgroundInsideACrystalNotes": "Sbircia fuori da Dentro un Cristallo.",
|
||||
"backgroundSnowyVillageText": "Villaggio Innevato",
|
||||
"backgroundSnowyVillageNotes": "Ammira un Villaggio Innevato.",
|
||||
"backgrounds012023": "SET 104: Rilasciato a gennaio 2023",
|
||||
"backgrounds012023": "SET 104: Rilasciato a Gennaio 2023",
|
||||
"backgroundRimeIceText": "Brinata Scintillante",
|
||||
"backgroundRimeIceNotes": "Ammira la Brina scintillante.",
|
||||
"backgroundSnowyTempleText": "Templio Innevato",
|
||||
@@ -755,7 +755,7 @@
|
||||
"eventBackgrounds": "Sfondi Eventi",
|
||||
"backgroundBirthdayBashText": "Festa di Compleanno",
|
||||
"backgroundBirthdayBashNotes": "Habitica sta celebrando la propria festa di compleanno, e tutti sono invitati a partecipare!",
|
||||
"backgrounds022023": "SET 105: Rilasciato a febbraio 2023",
|
||||
"backgrounds022023": "SET 105: Rilasciato a Febbraio 2023",
|
||||
"backgroundGoldenBirdcageText": "Voliera Dorata",
|
||||
"backgroundInFrontOfFountainText": "Di Fronte ad una Fontana",
|
||||
"backgroundInFrontOfFountainNotes": "Passeggia Di Fronte ad una Fontana.",
|
||||
@@ -829,12 +829,12 @@
|
||||
"backgroundGiantCatNotes": "Fai un pisolino con un Gatto Gigante.",
|
||||
"backgroundBarrelCellarText": "Cantina delle Botti",
|
||||
"backgroundBarrelCellarNotes": "Cerca delizie culinarie in una Cantina delle Botti.",
|
||||
"backgrounds062024": "SET 121: Rilasciato Giugno 2024",
|
||||
"backgrounds062024": "SET 121: Rilasciato a Giugno 2024",
|
||||
"backgroundShellGateText": "Cancello Conchiglia",
|
||||
"backgrounds072024": "SET 122: Rilasciato Luglio 2024",
|
||||
"backgrounds072024": "SET 122: Rilasciato a Luglio 2024",
|
||||
"backgroundRiverBottomText": "Fondale del fiume",
|
||||
"backgroundRiverBottomNotes": "Esplora il fondale di un fiume.",
|
||||
"backgrounds092024": "SET 124: Rilasciato Settembre 2024",
|
||||
"backgrounds092024": "SET 124: Rilasciato a Settembre 2024",
|
||||
"backgroundMagicDoorInForestText": "Porta magica nella foresta",
|
||||
"backgroundMagicDoorInForestNotes": "Azzardati ad entrare nella Porta magica nella foresta.",
|
||||
"backgroundFloweringForestText": "Foresta fiorita",
|
||||
@@ -847,7 +847,7 @@
|
||||
"backgroundSwanBoatText": "Barca a forma di Cigno",
|
||||
"backgroundHeartTreeTunnelText": "Tunnel nell'albero a forma di Cuore",
|
||||
"backgroundHeartTreeTunnelNotes": "Passa attraverso il Tunnel nell'albero a forma di Cuore.",
|
||||
"backgrounds102024": "SET 124: Rilasciato Ottobre 2024",
|
||||
"backgrounds102024": "SET 124: Rilasciato ad Ottobre 2024",
|
||||
"backgroundSurroundedByGhostsText": "Circondato dai Fantasmi",
|
||||
"backgroundSurroundedByGhostsNotes": "Trascorri una serata lugubre circondato dai Fantasmi.",
|
||||
"backgroundAutumnTreeTunnelText": "Tunnel nell'albero Autunnale",
|
||||
@@ -856,7 +856,7 @@
|
||||
"backgroundForestSunsetNotes": "Crogiolati al chiarore di un Tramonto sulla foresta.",
|
||||
"backgroundWallFloweringVinesText": "Muro con viti in fiore",
|
||||
"backgroundWallFloweringVinesNotes": "Passa il tempo presso un Muro con viti in fiore.",
|
||||
"backgrounds082024": "SET 123: Rilasciato Agosto 2024",
|
||||
"backgrounds082024": "SET 123: Rilasciato ad Agosto 2024",
|
||||
"backgroundSavannaText": "Praterie nebbiose",
|
||||
"backgroundSavannaNotes": "Fai un'escursione nelle Praterie Nebbiose.",
|
||||
"backgroundHolidayTreeForestText": "Foresta di alberi delle Feste",
|
||||
@@ -882,20 +882,20 @@
|
||||
"backgroundPottersStudioNotes": "Crea arte nello studio del Vasaio.",
|
||||
"monthlyBackgrounds": "Sfondi del Mese",
|
||||
"backgroundFirstSnowForestText": "Prima neve nella foresta",
|
||||
"backgrounds122024": "SET 127: rilasciato nel dicembre 2024",
|
||||
"backgrounds012025": "SET 128: rilasciato nel gennaio 2025",
|
||||
"backgrounds122024": "SET 127: rilasciato a Dicembre 2024",
|
||||
"backgrounds012025": "SET 128: rilasciato a Gennaio 2025",
|
||||
"backgroundFirstSnowForestNotes": "Calpesta la prima neve nella foresta.",
|
||||
"backgrounds112024": "SET 126: Rilasciato a novembre 2024",
|
||||
"backgrounds112024": "SET 126: Rilasciato a Novembre 2024",
|
||||
"backgroundContainerGardenText": "Giardino in vaso",
|
||||
"backgroundContainerGardenNotes": "Sporcati le mani con il Giardino in Vaso.",
|
||||
"backgroundCastleHallWithHearthText": "Sala del Castello con Focolare",
|
||||
"backgroundCastleHallWithHearthNotes": "Immergetevi nel calore di una Sala del Castello con il Focolare.",
|
||||
"backgrounds022025": "SET 129: rilasciato a febbraio 2025",
|
||||
"backgrounds022025": "SET 129: rilasciato a Febbraio 2025",
|
||||
"backgroundOldFashionedTeaShopText": "Antico Negozio di Tè",
|
||||
"backgroundOldFashionedTeaShopNotes": "Gustati una piacevole bevanda nell'Antico Negozio di Tè.",
|
||||
"backgroundWinterLandscapeWithCabinNotes": "Resta al caldo nel Paesaggio Invernale con una Baita.",
|
||||
"backgroundWinterLandscapeWithCabinText": "Paesaggio Invernale con Baita",
|
||||
"backgrounds032025": "SET 130: rilasciato a marzo 2025",
|
||||
"backgrounds032025": "SET 130: rilasciato a Marzo 2025",
|
||||
"backgroundMountainSceneWithBlossomsText": "Scena Montana con Fiori",
|
||||
"backgrounds0420205": "SET 131: Rilasciato ad Aprile 2025",
|
||||
"backgroundGardenWithFlowerBedsText": "Giardino con Aiuole Fiorite",
|
||||
@@ -907,39 +907,48 @@
|
||||
"backgrounds052025": "SET 132: Rilasciato a Maggio 2025",
|
||||
"backgroundTrailThroughAForestText": "Sentiero Attraverso una Foresta",
|
||||
"backgroundTrailThroughAForestNotes": "Passeggia lungo un Sentiero Attraverso una Foresta.",
|
||||
"backgrounds072025": "SET 134: Rilasciato Luglio 2025",
|
||||
"backgrounds072025": "SET 134: Rilasciato a Luglio 2025",
|
||||
"backgroundSirensLairText": "Tana della Sirena",
|
||||
"backgroundSirensLairNotes": "Abbi il coraggio di entrare nella Tana della Sirena.",
|
||||
"backgrounds082025": "SET 135: Rilasciato Agosto 2025",
|
||||
"backgrounds082025": "SET 135: Rilasciato ad Agosto 2025",
|
||||
"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.",
|
||||
"backgrounds102025": "SET 137: Rilasciato Ottobre 2025",
|
||||
"backgrounds102025": "SET 137: Rilasciato ad Ottobre 2025",
|
||||
"backgroundInsideForestWitchsCottageNotes": "Tessi incantesimi nella casetta della Strega della Foresta.",
|
||||
"backgrounds112025": "SET 138: Rilasciato Novembre 2025",
|
||||
"backgrounds112025": "SET 138: Rilasciato a Novembre 2025",
|
||||
"backgroundCastleKeepWithBannersText": "Sala del castello con stendardi",
|
||||
"backgrounds092025": "SET 136: Rilasciato Settembre 2025",
|
||||
"backgrounds092025": "SET 136: Rilasciato a Settembre 2025",
|
||||
"backgroundInsideForestWitchsCottageText": "Casetta della Strega della Foresta",
|
||||
"backgroundCastleKeepWithBannersNotes": "Canta storie di gesta eroiche nella sala del castello con gli stendardi.",
|
||||
"backgrounds122025": "SET 139: Rilasciato Dicembre 2025",
|
||||
"backgrounds122025": "SET 139: Rilasciato a Dicembre 2025",
|
||||
"backgroundNighttimeStreetWithShopsText": "Via Notturna con Negozi",
|
||||
"backgroundNighttimeStreetWithShopsNotes": "Apprezza il luccichio confortevole di una Via Notturna con Negozi.",
|
||||
"backgrounds012026": "SET 140: Rilasciato Gennaio 2026",
|
||||
"backgrounds012026": "SET 140: Rilasciato a Gennaio 2026",
|
||||
"backgroundWinterDesertWithSaguarosText": "Deserto Invernale con Cactus Giganti",
|
||||
"backgroundWinterDesertWithSaguarosNotes": "Respira l'aria frizzante di un Deserto Invernale con Cactus Giganti.",
|
||||
"backgrounds022026": "SET 141: Rilasciato Febbraio 2026",
|
||||
"backgrounds022026": "SET 141: Rilasciato a Febbraio 2026",
|
||||
"backgroundElegantPalaceText": "Palazzo Elegante",
|
||||
"backgroundElegantPalaceNotes": "Ammira le sale piene di colori di un Elegante Palazzo.",
|
||||
"backgrounds032026": "SET 142: Rilasciato Marzo 2026",
|
||||
"backgrounds032026": "SET 142: Rilasciato a Marzo 2026",
|
||||
"backgroundWaterfallWithRainbowText": "Cascata con Arcobaleno",
|
||||
"backgroundWaterfallWithRainbowNotes": "Ammira la bellezza mozzafiato di una Cascata con Arcobaleno.",
|
||||
"backgrounds042026": "SET 143: Rilasciato Aprile 2026",
|
||||
"backgrounds042026": "SET 143: Rilasciato ad Aprile 2026",
|
||||
"backgroundRidingACometNotes": "Viaggia nello spazio Sfrecciando su una Cometa!",
|
||||
"backgroundRidingACometText": "Sfrecciando su una Cometa",
|
||||
"backgrounds052026": "SET 144: Rilasciato Maggio 2026",
|
||||
"backgrounds052026": "SET 144: Rilasciato a 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."
|
||||
"backgroundOnAStrangePlanetNotes": "Avventurati dove nessun Habitante è mai giunto prima: Su uno Strano Pianeta.",
|
||||
"backgrounds062026": "SET 145: Rilasciato a Giugno 2026",
|
||||
"backgroundBeachWithVolcanoNotes": "Osserva le meraviglie della natura su una spiaggia con un Vulcano.",
|
||||
"backgroundTropicalCoralGardenNotes": "Tuffati in un Giardino di Corallo Tropicale.",
|
||||
"backgrounds082026": "SET 147: Rilasciato ad Agosto 2026",
|
||||
"backgroundVegetableGardenText": "Orto",
|
||||
"backgroundBeachWithVolcanoText": "Spiaggia con Vulcano",
|
||||
"backgrounds072026": "SET 146: Rilasciato a Luglio 2026",
|
||||
"backgroundTropicalCoralGardenText": "Giardino di Corallo Tropicale",
|
||||
"backgroundVegetableGardenNotes": "Pianta verdure gustose in un Orto."
|
||||
}
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
"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.",
|
||||
"commGuidePara002": "Per aiutare a mantenere la sicurezza, la felicità e la produttività nella community, abbiamo alcune linee guida per Sfide, profili dei Giocatori e chat, sia pubbliche, sia private. Le abbiamo stilate accuratamente per renderle il più semplici possibile. Per favore, leggile con attenzione prima di interfacciarti con gli altri Utenti.",
|
||||
"commGuidePara003": "Queste regole potrebbero cambiare di tanto in tanto. Quando ci saranno cambiamenti sostanziali nelle regole della community qui elencate, verrai avvertito con un annuncio di Bailey e/o sui nostri social media!",
|
||||
"commGuidePara002": "Per aiutare a mantenere la sicurezza, la felicità e la produttività di tutti, abbiamo alcune linee guida per le Sfide, i profili dei Giocatori, la chat della Squadra e i messaggi privati. Le abbiamo stilate accuratamente per renderle il più semplici possibile. Per favore, leggile con attenzione prima di iniziare ad interagire con gli altri giocatori.",
|
||||
"commGuidePara003": "Queste regole potrebbero cambiare di tanto in tanto. Quando ci sono cambiamenti sostanziali alle regole della community qui elencate, verrai avvertito con un annuncio di Bailey e/o sui nostri social media!",
|
||||
"commGuideHeadingInteractions": "Interazioni su Habitica",
|
||||
"commGuidePara015": "Habitica ha diversi spazi in cui puoi interagire con altri giocatori. Questi includono contesti di chat privati (messaggi privati e chat di gruppo) così come la funzionalità Cerca una Squadra e le Sfide.",
|
||||
"commGuidePara015": "Habitica ha vari spazi dove puoi interagire con gli altri giocatori. Fra questi ci sono contesti privati (messaggi e chat di Squadra) oltre all'opzione Cerca una Squadra e alle Sfide.",
|
||||
"commGuidePara016": "Quando navighi negli spazi pubblici di Habitica, ci sono delle regole generali che bisogna rispettare per mantenere tutti felici e al sicuro.",
|
||||
"commGuideList02A": "<strong>Rispettarsi a vicenda.</strong> Sii cortese, gentile, amichevole e disposto ad aiutare. Ricorda: gli Habitanti hanno trascorsi diversi e possono quindi avere esperienze molto divergenti.",
|
||||
"commGuideList02C": "<strong>Non pubblicare immagini o testi violenti, minacciosi, o sessualmente espliciti/suggestivi, o che promuovono discriminazione, bigottismo, razzismo, sessismo, odio, molestia o danno contro qualsiasi individuale o gruppo</strong>. Neanche per scherzare o con un meme. Questo include insulti e affermazioni. Non tutti hanno lo stesso senso dell'umorismo, quindi qualcosa che tu consideri come uno scherzo potrebbe essere offensivo per qualcun'altro.",
|
||||
@@ -78,7 +78,7 @@
|
||||
"commGuideLink03": "<a href='https://github.com/HabitRPG/habitica' target='_blank'>GitHub</a>: per aiutare con il codice di programmazione!",
|
||||
"commGuideLink04": "<a href='https://docs.google.com/forms/d/e/1FAIpQLScPhrwq_7P1C6PTrI3lbvTsvqGyTNnGzp1ugi1Ml0PFee_p5g/viewform?usp=sf_link' target='_blank'>Modulo feedback</a>: per richieste di funzionalità e caratteristiche del sito.",
|
||||
"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.",
|
||||
"commGuideList01A": "Le nostre Linee Guida e i Termini di Servizio sono validi per le Sfide, le Squadre, i profili dei giocatori e i messaggi privati.",
|
||||
"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 dei Gradi Contributore",
|
||||
"commGuideList05H": "Severi o ripetuti tentativi di truffare o pressare altri giocatori per oggetti che richiedono soldi reali",
|
||||
|
||||
@@ -10,14 +10,14 @@
|
||||
"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?",
|
||||
"faqQuestion28": "Posso mettere in pausa le mie Attività Giornaliere se ho 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.",
|
||||
"webFaqAnswer30": "Se la tua Salute raggiunge lo zero, scenderai di un livello, perderai un punto attributo, tutto il tuo Oro e un oggetto del tuo Equipaggiamento (che però potrai riacquistare). Potrai rifarti completando missioni 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?",
|
||||
"faqQuestion32": "Come posso scegliere 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 \"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.",
|
||||
@@ -71,7 +71,7 @@
|
||||
"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 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?",
|
||||
"faqQuestion58": "Come posso filtrare l’elenco dei membri in cerca di 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 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",
|
||||
@@ -183,15 +183,15 @@
|
||||
"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",
|
||||
"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",
|
||||
"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",
|
||||
"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.",
|
||||
|
||||
@@ -296,7 +296,7 @@
|
||||
"weaponMystery301404Text": "Bastone Steampunk",
|
||||
"weaponMystery301404Notes": "Eccellente per fare un giro in città. Oggetto abbonati Marzo 3015. Non conferisce alcun bonus.",
|
||||
"weaponArmoireBasicCrossbowText": "Balestra Base",
|
||||
"weaponArmoireBasicCrossbowNotes": "Questa balestra può penetrare l'armatura di un'attività da molto, molto lontano! Aumenta la Forza di <%= str %>, la Percezione di <%= per %> e la Costituzione di <%= con %>. Scrigno Incantato: Oggetto Indipendente.",
|
||||
"weaponArmoireBasicCrossbowNotes": "Questa balestra può penetrare l'armatura di un'attività da molto lontano! Aumenta la Forza di <%= str %>, la Percezione di <%= per %> e la Costituzione di <%= con %>. Scrigno Incantato: Oggetto Indipendente.",
|
||||
"weaponArmoireLunarSceptreText": "Scettro Lunare Lenitivo",
|
||||
"weaponArmoireLunarSceptreNotes": "Il potere curativo di questo scettro cresce e diminuisce seguendo le fasi lunari. Aumenta la Costituzione di <%= con %> e l'Intelligenza di <%= int %>. Scrigno Incantato: Set Luna Lenitiva (Oggetto 3 di 3).",
|
||||
"weaponArmoireRancherLassoText": "Lazzo da Cowboy",
|
||||
@@ -694,7 +694,7 @@
|
||||
"armorMystery201710Text": "Abito da Diavoletto Imperioso",
|
||||
"armorMystery201710Notes": "Squamoso, scintillante e forte! Non conferisce alcun bonus. Oggetto abbonati Ottobre 2017.",
|
||||
"armorMystery201711Text": "Vestito del Pilota di Tappeti",
|
||||
"armorMystery201711Notes": "Questo comodo maglione ti terrà al caldo volando nel cielo! Non dà alcun beneficio. Oggetto abbonati Novembre 2017.",
|
||||
"armorMystery201711Notes": "Questo comodo maglione ti terrà al caldo volando nel cielo! Non dà alcun bonus. Oggetto abbonati Novembre 2017.",
|
||||
"armorMystery201712Text": "Armatura del Candelomante",
|
||||
"armorMystery201712Notes": "Il calore e la luce che emana questa armatura magica ti scalderà il cuore, senza mai bruciarti la pelle! Non conferisce alcun bonus. Oggetto abbonati Dicembre 2017.",
|
||||
"armorMystery201802Text": "Armatura dello Scarafaggio dell'Amore",
|
||||
@@ -896,7 +896,7 @@
|
||||
"headSpecialTurkeyHelmBaseText": "Elmo da Tacchino",
|
||||
"headSpecialTurkeyHelmBaseNotes": "Il tuo Giorno da Racchino sembrerà completo quando metterai questo elmo col becco! Non conferisce alcun bonus.",
|
||||
"headSpecialTurkeyHelmGildedText": "Elmo del Tacchino Dorato",
|
||||
"headSpecialTurkeyHelmGildedNotes": "Glugluglu! Non da alcun beneficio.",
|
||||
"headSpecialTurkeyHelmGildedNotes": "Glugluglu! Non da alcun bonus.",
|
||||
"headSpecialNyeText": "Assurdo Cappello da Festa",
|
||||
"headSpecialNyeNotes": "Hai ricevuto un Assurdo Cappello da Festa! Indossalo con orgoglio mentre festeggi il nuovo anno! Non conferisce alcun bonus.",
|
||||
"headSpecialYetiText": "Elmo dell'Addestra-Yeti",
|
||||
@@ -1347,7 +1347,7 @@
|
||||
"shieldSpecialWinter2016WarriorText": "Scudo Slitta",
|
||||
"shieldSpecialWinter2016WarriorNotes": "Usa questa slitta per bloccare gli attacchi, o cavalcalo trionfalmente in battaglia! Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Inverno 2015-2016.",
|
||||
"shieldSpecialWinter2016HealerText": "Regalo Pixie",
|
||||
"shieldSpecialWinter2016HealerNotes": "Aprilo aprilo aprilo aprilo aprilo aprilo!!!!!!!!! Aumenta la Costituzione di <%= con %>. Equipaggiamento Invernale di Edizione Limitata, 2015-2016.",
|
||||
"shieldSpecialWinter2016HealerNotes": "Aprilo aprilo aprilo aprilo aprilo aprilo!!!!!!!!! Aumenta la Costituzione di <%= con %>. Equipaggiamento Invernale in Edizione Limitata 2015-2016.",
|
||||
"shieldSpecialSpring2016WarriorText": "Ruota di formaggio",
|
||||
"shieldSpecialSpring2016WarriorNotes": "Hai affrontato trappole diaboliche per procurarti questo alimento che amplifica la difesa. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Primavera 2016.",
|
||||
"shieldSpecialSpring2016HealerText": "Scudo Floreale",
|
||||
@@ -1387,7 +1387,7 @@
|
||||
"shieldSpecialSummer2018WarriorText": "Scudo Teschio del Pesce Combattente",
|
||||
"shieldSpecialSummer2018WarriorNotes": "Creato dalla pietra, questo terribile scudo a forma di teschio spaventa i pesci mentre raduni i tuoi animali e cavalcature Scheletro. Aumenta Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2018.",
|
||||
"shieldSpecialSummer2018HealerText": "Emblema del Monarca dei Mermeide",
|
||||
"shieldSpecialSummer2018HealerNotes": "Questo scudo può creare una cupola di aria per il beneficio di chi viene dalla terra ferma a visitare il tuo reame sommerso. Aumenta Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2018.",
|
||||
"shieldSpecialSummer2018HealerNotes": "Questo scudo può creare una cupola di aria per il bonus di chi viene dalla terra ferma a visitare il tuo reame sommerso. Aumenta Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2018.",
|
||||
"shieldSpecialFall2018RogueText": "Fiala della Tentazione",
|
||||
"shieldSpecialFall2018RogueNotes": "Questa fiala rappresenta le distrazioni e i problemi che ti impediscono di essere la migiore versione di te. Resisti! Tifiamo per te! Aumenta Forza di <%= str %>. Equipaggiamento in Edizione Limitata Autunno 2018.",
|
||||
"shieldSpecialFall2018WarriorText": "Scudo Brillante",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"backMystery201804Text": "Coda di Scoiattolo",
|
||||
"backMystery201804Notes": "Certo, ti aiuta a bilanciarti saltando tra i rami, ma la cosa più importante è la MASSIMA FLUFFOSITÀ. Non conferisce alcun bonus. Oggetto abbonati Aprile 2018.",
|
||||
"backMystery201812Text": "Coda della Volpe Artica",
|
||||
"backMystery201812Notes": "La tua lussuriosa coda luccica come un ghiacciolo, ondulando felicemente mentre zampetti sopra i cumuli di neve. Non da alcun beneficio. Oggetti per Abbonati Dicembre 2018.",
|
||||
"backMystery201812Notes": "La tua lussuriosa coda luccica come un ghiacciolo, ondulando felicemente mentre zampetti sopra i cumuli di neve. Non da alcun bonus. Oggetti per Abbonati Dicembre 2018.",
|
||||
"backMystery201805Text": "Coda di Pavone Fenomenale",
|
||||
"backMystery201805Notes": "Questa bellissima coda piumata è perfetta per una pavoneggiarsi sul sentiero di un piacevole giardino. Non da benefici. Oggetto abbonati Maggio 2018.",
|
||||
"backSpecialWonderconRedText": "Mantello Maestoso",
|
||||
@@ -1519,7 +1519,7 @@
|
||||
"backSpecialAetherCloakText": "Mantello Etereo",
|
||||
"backSpecialAetherCloakNotes": "Questo mantello una volta apparteneva alla Masterclasser perduta, Aumenta Percezione di <%= per %>.",
|
||||
"backSpecialTurkeyTailBaseText": "Coda da Tacchino",
|
||||
"backSpecialTurkeyTailBaseNotes": "Indossa la tua nobile Coda di Tacchino mentre festeggi! Non dà alcun beneficio.",
|
||||
"backSpecialTurkeyTailBaseNotes": "Indossa la tua nobile Coda di Tacchino mentre festeggi! Non dà alcun bonus.",
|
||||
"backSpecialTurkeyTailGildedText": "Coda di Tacchino Dorato",
|
||||
"backSpecialTurkeyTailGildedNotes": "Piumaggio adatto ad una parata! Non dà benefici.",
|
||||
"backBearTailText": "Coda da Orso",
|
||||
@@ -1570,7 +1570,7 @@
|
||||
"bodyMystery201706Text": "Mantello stracciato del Corsaro",
|
||||
"bodyMystery201706Notes": "Questo mantello ha delle tasche segrete per nascondere tutto l'Oro che rubi alle tue Attività. Non conferisce alcun bonus. Oggetto abbonati Giugno 2017.",
|
||||
"bodyMystery201711Text": "Sciarpa del Pilota di Tappeti",
|
||||
"bodyMystery201711Notes": "Questa morbida sciarpa fatta a maglia appare maestosa mossa dal vento. Non da alcun beneficio. Oggetto abbonati Novembre 2017.",
|
||||
"bodyMystery201711Notes": "Questa morbida sciarpa fatta a maglia appare maestosa mossa dal vento. Non da alcun bonus. Oggetto abbonati Novembre 2017.",
|
||||
"bodyMystery201901Text": "Paraspalle Polari",
|
||||
"bodyMystery201901Notes": "Questi paraspalle luccicanti sono forti, ma copriranno le tue spalle senza peso come un raggio di luce danzante. Non conferisce alcun bonus. Oggetto abbonati Gennaio 2019.",
|
||||
"bodyArmoireCozyScarfText": "Sciarpa Comoda",
|
||||
@@ -1629,19 +1629,19 @@
|
||||
"headAccessoryWolfEarsText": "Orecchie da Lupo",
|
||||
"headAccessoryWolfEarsNotes": "Queste orecchie ti faranno somigliare ad un fedele lupo! Non conferisce alcun bonus.",
|
||||
"headAccessoryBlackHeadbandText": "Fascia per Capelli Nera",
|
||||
"headAccessoryBlackHeadbandNotes": "Una semplice fascia per capelli nera. Non da alcun beneficio.",
|
||||
"headAccessoryBlackHeadbandNotes": "Una semplice fascia per capelli nera. Non da alcun bonus.",
|
||||
"headAccessoryBlueHeadbandText": "Fascia per Capelli Blu",
|
||||
"headAccessoryBlueHeadbandNotes": "Una semplice fascia per capelli blu. Non da alcun beneficio.",
|
||||
"headAccessoryBlueHeadbandNotes": "Una semplice fascia per capelli blu. Non da alcun bonus.",
|
||||
"headAccessoryGreenHeadbandText": "Fascia per Capelli Verde",
|
||||
"headAccessoryGreenHeadbandNotes": "Una semplice fascia per capelli verde. Non da alcun beneficio.",
|
||||
"headAccessoryGreenHeadbandNotes": "Una semplice fascia per capelli verde. Non da alcun bonus.",
|
||||
"headAccessoryPinkHeadbandText": "Fascia per Capelli Rosa",
|
||||
"headAccessoryPinkHeadbandNotes": "Una semplice fascia per capelli rosa. Non da alcun beneficio.",
|
||||
"headAccessoryPinkHeadbandNotes": "Una semplice fascia per capelli rosa. Non da alcun bonus.",
|
||||
"headAccessoryRedHeadbandText": "Fascia per Capelli Rossa",
|
||||
"headAccessoryRedHeadbandNotes": "Una semplice fascia per capelli rossa. Non da alcun beneficio.",
|
||||
"headAccessoryRedHeadbandNotes": "Una semplice fascia per capelli rossa. Non da alcun bonus.",
|
||||
"headAccessoryWhiteHeadbandText": "Fascia per Capelli Bianca",
|
||||
"headAccessoryWhiteHeadbandNotes": "Una semplice fascia per capelli bianca. Non da alcun beneficio.",
|
||||
"headAccessoryWhiteHeadbandNotes": "Una semplice fascia per capelli bianca. Non da alcun bonus.",
|
||||
"headAccessoryYellowHeadbandText": "Fascia per Capelli Gialla",
|
||||
"headAccessoryYellowHeadbandNotes": "Una semplice fascia per capelli gialla. Non da alcun beneficio.",
|
||||
"headAccessoryYellowHeadbandNotes": "Una semplice fascia per capelli gialla. Non da alcun bonus.",
|
||||
"headAccessoryMystery201403Text": "Corna del Proteggiforeste",
|
||||
"headAccessoryMystery201403Notes": "Queste corna sono ricoperte di muschio magico e licheni. Non conferiscono alcun bonus. Oggetto abbonati Marzo 2014.",
|
||||
"headAccessoryMystery201404Text": "Antenne di Farfalla d'Alba",
|
||||
@@ -1761,7 +1761,7 @@
|
||||
"headArmoireMatchMakersBeretText": "Basco del Costruttore di Fiammiferi",
|
||||
"armorArmoireMatchMakersApronText": "Grembiule Costruttore di Fiammiferi",
|
||||
"weaponArmoireLivelyMatchText": "Un Fiammifero Felice",
|
||||
"weaponArmoireHappyBannerText": "Happy Banner",
|
||||
"weaponArmoireHappyBannerText": "Banner Happy",
|
||||
"weaponArmoireAlchemistsDistillerNotes": "Purifica metalli e altri composti magici con questo strumento in ottone lucente. Aumenta la forza di <%= str %> e l'intelligenza di <%= int %>. Scrigno incantato: Set dell'Alchimista oggetto 3 of 4).",
|
||||
"weaponArmoireAlchemistsDistillerText": "Distillatore dell'Alchimista",
|
||||
"weaponArmoireShadowMastersMaceNotes": "Le creature dell'oscurità obbediranno ad ogni tuo comando quando agiterai questa mazza luminosa. Aumenta la percezione di <%= per %>. Scrigno incantato: Set del Maestro dell'Ombra (Oggetto 3 di 4).",
|
||||
@@ -2394,12 +2394,12 @@
|
||||
"headArmoireGlengarryText": "Berretto scozzese",
|
||||
"armorArmoireBagpipersKiltNotes": "Un buon kilt resistente che ti servirà bene. Aumenta la Costituzione di <%= con %>. Scrigo Incantato: Set del Suonatore di Cornamusa (Oggetto 2 di 3).",
|
||||
"armorArmoireBagpipersKiltText": "Kilt del Suonatore di Cornamusa",
|
||||
"backMystery202109Notes": "Vola leggiadramente nell'aria del tramonto senza un suono. Nessun beneficio. Oggetto per Abbonati Settembre 2021.",
|
||||
"backMystery202109Notes": "Vola leggiadramente nell'aria del tramonto senza un suono. Non da alcun bonus. Oggetto abbonati Settembre 2021.",
|
||||
"headAccessoryMystery202109Text": "Antenne del Lepidottero Lunare",
|
||||
"shieldArmoireHeraldsMessageScrollNotes": "Quali notizie eccitanti conterrà questa pergamenta? Sarà un nuovo animaletto o una lunga serie di una abitudine? Aumenta Percezione di <%= per %>. Scrigno Incantato: Set dell'Eraldo (Oggetto 4 di 4)",
|
||||
"backMystery202109Text": "Ali del Lepidottero Lunare",
|
||||
"headArmoireHeraldsCapText": "Copricapo dell'Eraldo",
|
||||
"headAccessoryMystery202109Notes": "Senti il profumo dei fiori nella brezza o l'odore del cambiamento nel vento. Nessun beneficio. Oggetto per Abbonati Settembre 2021.",
|
||||
"headAccessoryMystery202109Notes": "Senti il profumo dei fiori nella brezza o l'odore del cambiamento nel vento. Non da alcun bonus. Oggetto abbonati Settembre 2021.",
|
||||
"armorArmoireHeraldsTunicText": "Tunica dell'Eraldo",
|
||||
"weaponArmoireHeraldsBuisineText": "Buisine dell'Eraldo",
|
||||
"weaponArmoireHeraldsBuisineNotes": "Gli annunci suoneranno molto meglio seguendo la fanfara di questa tromba. Aumenta la Forza di <%= str %>. Scrigno Incantato: Set dell'Eraldo (Oggetto 3 di 4).",
|
||||
@@ -2584,7 +2584,7 @@
|
||||
"backMystery202205Text": "Ali del Crepuscolo",
|
||||
"headAccessoryMystery202205Text": "Corna di Drago Alate Crepuscolari",
|
||||
"backMystery202205Notes": "Il potente battito di queste vaste ali può essere sentito echeggiare tra le dune. Non conferisce alcun bonus. Oggetto Abbonati Maggio 2022.",
|
||||
"headAccessoryMystery202205Notes": "Queste corna smaglianti brillano come un tramonto nel deserto. Non conferiscono alcun beneficio. Oggetto Abbonati Maggio 2022.",
|
||||
"headAccessoryMystery202205Notes": "Queste corna smaglianti brillano come un tramonto nel deserto. Non conferiscono alcun bonus. Oggetto Abbonati Maggio 2022.",
|
||||
"weaponArmoireHuntingHornText": "Corno da Caccia",
|
||||
"weaponArmoireHuntingHornNotes": "Tuuuuuu! Tuuu! Tuuu! Raduna la tua squadra per un'avventura o una missione suonando questo corno. Aumenta la Forza di <%= str %> e l'Intelligenza di <%= int %>. Scrigno Incantato: Set Strumento Musicale 1 (Oggetto 1 di 3)",
|
||||
"shieldArmoireSnareDrumText": "Tamburo Rullante",
|
||||
@@ -2954,15 +2954,15 @@
|
||||
"weaponSpecialSpring2026MageText": "Parasole del Palo Fiorito",
|
||||
"weaponMystery202511Text": "Spada di Ghiaccio",
|
||||
"weaponMystery202511Notes": "Il bagliore gelido di questa spada avrà la meglio anche sulle attività più rosse. Non conferisce alcun vantaggio. Oggetto abbonati di Novembre 2025.",
|
||||
"weaponMystery202512Notes": "Una spada scintillante forgiata con zucchero, menta e incantesimi arcani. Non conferisce alcun beneficio. Oggetto abbonati di Dicembre 2025.",
|
||||
"weaponMystery202601Notes": "Uno scudo di ghiaccio a forma di bolla che garantisce protezione magica da ogni avversità. Non conferisce alcun beneficio. Oggetto abbonati di Gennaio 2026.",
|
||||
"weaponMystery202512Notes": "Una spada scintillante forgiata con zucchero, menta e incantesimi arcani. Non conferisce alcun bonus. Oggetto abbonati di Dicembre 2025.",
|
||||
"weaponMystery202601Notes": "Uno scudo di ghiaccio a forma di bolla che garantisce protezione magica da ogni avversità. Non conferisce alcun bonus. Oggetto abbonati di Gennaio 2026.",
|
||||
"weaponMystery202512Text": "Lama del Campione dei Biscotti",
|
||||
"weaponMystery202601Text": "Scudo Invernale",
|
||||
"armorArmoireSchoolUniformSkirtNotes": "Che tu frequenti una scuola per maghi, cavalieri di draghi, giocatori di sport con la palla, artigiani creativi o membri di una professione troppo segreta per essere menzionata qui, con questa divisa ti sentirai perfettamente a tuo agio. Aumenta l'Intelligenza di <%= int %>. Scrigno Incantato: Set di Divisa Scolastica (Oggetto 1 di 4).",
|
||||
"armorArmoireSchoolUniformPantsNotes": "Che tu frequenti una scuola per maghi, cavalieri di draghi, giocatori di sport con una palla, artigiani creativi o membri di una professione troppo segreta per essere menzionata qui, con questa divisa ti sentirai perfettamente a tuo agio. Aumenta l'Intelligenza di <%= int %>. Scrigno Incantato: Set di Divisa Scolastica (Oggetto 2 di 4).",
|
||||
"weaponArmoireGildedKnightsSpearText": "Lancia del Cavaliere Dorato",
|
||||
"weaponMystery202603Text": "Bacchetta del Mago Glicine",
|
||||
"weaponMystery202603Notes": "Lancia incantesimi per riscaldare l'aria primaverile e per incoraggiare i boccioli a fiorire! Non conferisce alcun beneficio. Oggetto abbonati di Marzo 2026.",
|
||||
"weaponMystery202603Notes": "Lancia incantesimi per riscaldare l'aria primaverile e per incoraggiare i boccioli a fiorire! Non conferisce alcun bonus. Oggetto abbonati di Marzo 2026.",
|
||||
"weaponArmoireStormKnightAxeText": "Ascia del Cavaliere della Tempesta",
|
||||
"weaponArmoireStormKnightAxeNotes": "Raduna la tua furia e colpisci come un tuono! Aumenta la Forza di <%= str %>. Scrigno Incantato: Set Cavaliere della Tempesta (Oggetto 3 di 3).",
|
||||
"weaponArmoireGildedKnightsSpearNotes": "Con quest'arma, puoi assicurarti che tutti paghino sempre i loro debiti. Aumenta la Forza di <%= str %>. Scrigno Incantato: Set del Cavaliere Dorato (Oggetto 3 di 3).",
|
||||
@@ -3039,34 +3039,34 @@
|
||||
"armorSpecialSpring2026HealerText": "Abito Bucaneve",
|
||||
"armorSpecialSpring2026HealerNotes": "Scivola con grazia da un inverno freddo e buio verso una primavera gloriosa. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Primavera 2026.",
|
||||
"armorSpecialSpring2026MageText": "Costume da Danzatrice dell'Albero di Maggio",
|
||||
"armorMystery202401Notes": "Queste vesti sembrano delicate come fiocchi di neve di cristallo, ma ti terranno al caldo mentre compi le tue magie invernali. Non conferisce alcun beneficio. Oggetto abbonati Gennaio 2024.",
|
||||
"armorMystery202401Notes": "Queste vesti sembrano delicate come fiocchi di neve di cristallo, ma ti terranno al caldo mentre compi le tue magie invernali. Non conferisce alcun bonus. Oggetto abbonati Gennaio 2024.",
|
||||
"armorMystery202406Text": "Completo da Spettro Bucaniere",
|
||||
"armorMystery202406Notes": "Perseguita i tuoi nemici con stile ed eleganza! Non conferisce alcun beneficio. Oggetto abbonati Giugno 2024.",
|
||||
"armorMystery202406Notes": "Perseguita i tuoi nemici con stile ed eleganza! Non conferisce alcun bonus. Oggetto abbonati Giugno 2024.",
|
||||
"armorMystery202407Text": "Costume da Axolotl Amichevole",
|
||||
"armorMystery202412Notes": "Un look divertente e morbido per tenerti al caldo nelle giornate invernali. Non offre alcun beneficio. Oggetto abbonati Dicembre 2024.",
|
||||
"armorMystery202412Notes": "Un look divertente e morbido per tenerti al caldo nelle giornate invernali. Non offre alcun bonus. Oggetto abbonati Dicembre 2024.",
|
||||
"armorMystery202401Text": "Vesti dell'Incantatore Nevoso",
|
||||
"armorSpecialWinter2026HealerNotes": "Come uno spettacolo di luci naturali, sarai sbalorditivo mentre completerai le tue Attività Giornaliere. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Inverno 2025-2026.",
|
||||
"armorSpecialSpring2026WarriorNotes": "Entra in azione non appena la neve inizia a sciogliersi. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Primavera 2026.",
|
||||
"armorSpecialSpring2026MageNotes": "Sii pronto a ballare, a fare un picnic e a goderti il clima mite che porta la primavera. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata Primavera 2026.",
|
||||
"armorMystery202407Notes": "Scivola su laghi e canali con la tua sinuosa coda rosa! Non conferisce alcun beneficio. Oggetto abbonati Luglio 2024.",
|
||||
"armorMystery202502Notes": "Sei pieno di battute e di scherzi carini, dal colletto a balze fino alle scarpe giganti! Non conferisce alcun beneficio. Oggetto abbonati Febbraio 2025.",
|
||||
"armorMystery202407Notes": "Scivola su laghi e canali con la tua sinuosa coda rosa! Non conferisce alcun bonus. Oggetto abbonati Luglio 2024.",
|
||||
"armorMystery202502Notes": "Sei pieno di battute e di scherzi carini, dal colletto a balze fino alle scarpe giganti! Non conferisce alcun bonus. Oggetto abbonati Febbraio 2025.",
|
||||
"armorMystery202502Text": "Costume d'Arlecchino Amichevole",
|
||||
"armorMystery202306Text": "Cappotto Arcobaleno",
|
||||
"armorMystery202306Notes": "Nessuno ti rovinerà la festa! E se anche ci provassero, rimarrai colorato e asciutto! Non conferisce alcun beneficio. Oggetto abbonati Giugno 2023.",
|
||||
"armorMystery202306Notes": "Nessuno ti rovinerà la festa! E se anche ci provassero, rimarrai colorato e asciutto! Non conferisce alcun bonus. Oggetto abbonati Giugno 2023.",
|
||||
"armorMystery202307Text": "Tentacoli del Kraken",
|
||||
"armorMystery202307Notes": "Le ventose offrono la trazione migliore sul fondale marino e sui fianchi delle navi alla deriva. Non conferisce alcun beneficio. Oggetto abbonati Luglio 2023.",
|
||||
"armorMystery202307Notes": "Le ventose offrono la trazione migliore sul fondale marino e sui fianchi delle navi alla deriva. Non conferisce alcun bonus. Oggetto abbonati Luglio 2023.",
|
||||
"armorMystery202310Text": "Tunica dello Spettro",
|
||||
"armorMystery202310Notes": "Un indumento spettrale che si arriccerà e fluttuerà con grazia mentre galleggiate tra le paludi e le lande desolate infestate. Non conferisce alcun beneficio. Oggetto abbonati Ottobre 2023.",
|
||||
"armorMystery202310Notes": "Un indumento spettrale che si arriccerà e fluttuerà con grazia mentre galleggiate tra le paludi e le lande desolate infestate. Non conferisce alcun bonus. Oggetto abbonati Ottobre 2023.",
|
||||
"armorMystery202304Text": "Armatura Teiera",
|
||||
"armorMystery202304Notes": "Ecco il tuo manico ed ecco il tuo beccuccio! Non conferisce alcun beneficio. Oggetto abbonati Aprile 2023.",
|
||||
"armorMystery202304Notes": "Ecco il tuo manico ed ecco il tuo beccuccio! Non conferisce alcun bonus. Oggetto abbonati Aprile 2023.",
|
||||
"armorMystery202509Text": "Tunica del Viandante Scompigliata dal Vento",
|
||||
"armorMystery202509Notes": "Fatto con seta dai colori vivaci che ti protegge dalle intemperie, dal caldo o dal freddo. Non offre alcun beneficio. Oggetto abbonati Settembre 2025.",
|
||||
"armorMystery202509Notes": "Fatto con seta dai colori vivaci che ti protegge dalle intemperie, dal caldo o dal freddo. Non offre alcun bonus. Oggetto abbonati Settembre 2025.",
|
||||
"armorMystery202512Text": "Armatura Campione dei Biscotti",
|
||||
"armorMystery202512Notes": "Preparati alla battaglia con questo piatto che è sia dolce e forte allo stesso tempo. Non conferisce alcun beneficio. Oggetto abbonati Dicembre 2025.",
|
||||
"armorMystery202512Notes": "Preparati alla battaglia con questo piatto che è sia dolce e forte allo stesso tempo. Non conferisce alcun bonus. Oggetto abbonati Dicembre 2025.",
|
||||
"armorMystery202604Text": "Audace Tuta Spaziale da Astronauta",
|
||||
"armorMystery202604Notes": "Un piccolo passo per la tua lista di Cosa da Fare, un grande balzo verso l'autorealizzazione! Non conferisce alcun beneficio. Oggetto abbonati Aprile 2026.",
|
||||
"armorMystery202604Notes": "Un piccolo passo per la tua lista di Cosa da Fare, un grande balzo verso l'autorealizzazione! Non conferisce alcun bonus. Oggetto abbonati Aprile 2026.",
|
||||
"armorMystery202504Text": "Armatura dello Yeti Inafferrabile",
|
||||
"armorMystery202504Notes": "Abominevole? Piuttosto adorabile! Non apporta alcun beneficio. Oggetto abbonati Aprile 2025.",
|
||||
"armorMystery202504Notes": "Abominevole? Piuttosto adorabile! Non apporta alcun bonus. Oggetto abbonati Aprile 2025.",
|
||||
"armorArmoireTeaGownText": "Abito da Festa del Tè",
|
||||
"armorArmoireTeaGownNotes": "Sei resiliente, creativo, brillante e così alla moda! Aumenta Forza e Intelligenza di <%= attrs %> ciascuno. Scrigno Incantato: Set da Festa del Tè (Oggetto 1 di 3).",
|
||||
"armorArmoireBasketballUniformNotes": "Ti stai chiedendo cosa ci sia stampato sul retro dell'uniforme? È il tuo numero fortunato, naturalmente! Aumenta la Percezione del <%= per %>. Scrigno Incantato: Set da Basket Vecchio Stile (Oggetto 1 di 2).",
|
||||
@@ -3159,7 +3159,7 @@
|
||||
"headSpecialFall2023HealerText": "Maschera della Creatura della Palude",
|
||||
"headSpecialFall2023MageNotes": "Con occhi penetranti e un tocco di classe, trasforma qualsiasi illusione in una possibilità. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata Autunno 2023.",
|
||||
"headSpecialNye2023Text": "Cappello da Festa Ridicolo",
|
||||
"headSpecialNye2023Notes": "Hai ricevuto un cappello da festa decisamente ridicolo! Indossalo con orgoglio per festeggiare il nuovo anno! Non conferisce alcun beneficio.",
|
||||
"headSpecialNye2023Notes": "Hai ricevuto un cappello da festa decisamente ridicolo! Indossalo con orgoglio per festeggiare il nuovo anno! Non conferisce alcun bonus.",
|
||||
"headSpecialFall2023HealerNotes": "Con occhi scuri come la palude da cui è emerso, fissa lo sguardo sui nemici. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata Autunno 2023.",
|
||||
"headSpecialWinter2024RogueText": "Cappuccio del Gufo delle Nevi",
|
||||
"headSpecialWinter2024RogueNotes": "Chi vedrai indossando questo cappuccio? Beh, e chi NON vedrai? Catturerai ogni movimento, ogni gesto, ogni dettaglio intorno a te. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata Inverno 2023-2024.",
|
||||
@@ -3225,10 +3225,10 @@
|
||||
"headSpecialFall2025HealerNotes": "Sorprendente e provvista di corna, questa maschera ti copre la testa mentre ti dedichi a tutte le tue attività importanti. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione limitata Autunno 2025.",
|
||||
"headSpecialFall2025MageText": "Maschera del Fantasma Mascherato",
|
||||
"headSpecialFall2025MageNotes": "Eterea e luminosa, questa maschera ti copre la testa mentre ti concentri su tutte le tue attività importanti. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata Autunno 2025.",
|
||||
"headMystery202404Notes": "Questo cappello ti connetterà con la terra e ti consentirà di ascoltare i desideri segreti di molte creature. Non conferisce alcun beneficio. Oggetto abbonati Aprile 2024.",
|
||||
"headMystery202404Notes": "Questo cappello ti connetterà con la terra e ti consentirà di ascoltare i desideri segreti di molte creature. Non conferisce alcun bonus. Oggetto abbonati Aprile 2024.",
|
||||
"headMystery202412Text": "Cappuccio di Coniglio a Forma di Bastoncino di Zucchero",
|
||||
"headMystery202403Text": "Cappello Fortunato Acquamarina",
|
||||
"headMystery202403Notes": "Che fortuna poter indossare questo raffinato cappello di velluto color smeraldo con la sua splendida gemma verde mare. Non conferisce alcun beneficio. Oggetto abbonati Marzo 2024.",
|
||||
"headMystery202403Notes": "Che fortuna poter indossare questo raffinato cappello di velluto color smeraldo con la sua splendida gemma verde mare. Non conferisce alcun bonus. Oggetto abbonati Marzo 2024.",
|
||||
"headSpecialWinter2026WarriorText": "Elmetto del Mietitore Ghiacciato",
|
||||
"headSpecialWinter2026RogueText": "Maschera e Occhiali da Sci",
|
||||
"headSpecialWinter2026RogueNotes": "Mantieni la concentrazione e la tua visione mentre punti a traguardi più ambiziosi in questa stagione. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata Inverno 2025-2026.",
|
||||
@@ -3246,29 +3246,29 @@
|
||||
"headSpecialSpring2026MageText": "Ghirlanda di Fiori Primaverili",
|
||||
"headSpecialSpring2026MageNotes": "Fai una dichiarazione gioiosa con dei fiori brillanti che ti circondano la testa. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata Primavera 2026.",
|
||||
"headMystery202312Text": "Capelli Blu Invernali",
|
||||
"headMystery202312Notes": "Questa acconciatura elaborata evoca i colori innevati della stagione. Non conferisce alcun beneficio. Oggetto abbonati Dicembre 2023.",
|
||||
"headMystery202312Notes": "Questa acconciatura elaborata evoca i colori innevati della stagione. Non conferisce alcun bonus. Oggetto abbonati Dicembre 2023.",
|
||||
"headMystery202402Text": "Capelli Rosa Paradiso",
|
||||
"headMystery202402Notes": "Questa graziosa criniera rosa è l'accessorio perfetto per il mese di Febbraio e oltre. Non conferisce alcun beneficio. Oggetto abbonati Febbraio 2024.",
|
||||
"headMystery202402Notes": "Questa graziosa criniera rosa è l'accessorio perfetto per il mese di Febbraio e oltre. Non conferisce alcun bonus. Oggetto abbonati Febbraio 2024.",
|
||||
"headMystery202404Text": "Cappello del Mago Micelio",
|
||||
"headMystery202406Text": "Cappello del Bucaniere Fantasma",
|
||||
"headMystery202406Notes": "Le piume fantasma che adornano questo cappello brillano debolmente, come le onde di un mare spettrale. Non conferisce alcun beneficio. Oggetto abbonati Giugno 2024.",
|
||||
"headMystery202407Notes": "Queste branchie magiche ti permetteranno di respirare sott'acqua! Non conferisce alcun beneficio. Oggetto abbonati Luglio 2024.",
|
||||
"headMystery202406Notes": "Le piume fantasma che adornano questo cappello brillano debolmente, come le onde di un mare spettrale. Non conferisce alcun bonus. Oggetto abbonati Giugno 2024.",
|
||||
"headMystery202407Notes": "Queste branchie magiche ti permetteranno di respirare sott'acqua! Non conferisce alcun bonus. Oggetto abbonati Luglio 2024.",
|
||||
"headMystery202409Text": "Cappello da Mago Eliotropio",
|
||||
"headMystery202411Text": "Elmo Setoloso",
|
||||
"headMystery202409Notes": "Più che semplici decorazioni, i girasoli incantati su questo cappello infondono a chi lo indossa una potente energia magica. Non conferisce alcun beneficio. Oggetto abbonati Settembre 2024.",
|
||||
"headMystery202409Notes": "Più che semplici decorazioni, i girasoli incantati su questo cappello infondono a chi lo indossa una potente energia magica. Non conferisce alcun bonus. Oggetto abbonati Settembre 2024.",
|
||||
"headMystery202501Text": "Cappello del Vincolatore di Ghiaccio",
|
||||
"headMystery202411Notes": "Questo elmo è piuttosto intimidatorio verso le tue attività quando ti ci butti a capofitto! Non conferisce alcun beneficio. Oggetto abbonati Novembre 2024.",
|
||||
"headMystery202411Notes": "Questo elmo è piuttosto intimidatorio verso le tue attività quando ti ci butti a capofitto! Non conferisce alcun bonus. Oggetto abbonati Novembre 2024.",
|
||||
"headMystery202407Text": "Cappuccio Da Axolotl Amichevole",
|
||||
"headMystery202412Notes": "Caldo e accogliente, proprio come una tazza di cioccolata calda alla menta in una fredda notte d'inverno! Non apporta alcun beneficio. Oggetto abbonati Dicembre 2024.",
|
||||
"headMystery202412Notes": "Caldo e accogliente, proprio come una tazza di cioccolata calda alla menta in una fredda notte d'inverno! Non apporta alcun bonus. Oggetto abbonati Dicembre 2024.",
|
||||
"headMystery202303Text": "Capelli da Personaggio Principale",
|
||||
"headMystery202310Notes": "Nasconde il tuo viso, eppure dona agli occhi un bagliore inquietante e spettrale. Non conferisce alcun beneficio. Oggetto abbonati Ottobre 2023.",
|
||||
"headMystery202310Notes": "Nasconde il tuo viso, eppure dona agli occhi un bagliore inquietante e spettrale. Non conferisce alcun bonus. Oggetto abbonati Ottobre 2023.",
|
||||
"headMystery202311Text": "Cappello dell'Incantatore",
|
||||
"headMystery202311Notes": "Collega lo spazio e il tempo sottopendoli alla tua volontà. Non conferisce alcun beneficio. Oggetto abbonati Novembre 2023.",
|
||||
"headMystery202311Notes": "Collega lo spazio e il tempo sottopendoli alla tua volontà. Non conferisce alcun bonus. Oggetto abbonati Novembre 2023.",
|
||||
"headMystery202303Notes": "Quale modo migliore per far sapere a tutti che sei la star di questa storia se non con dei capelli blu e incredibilmente appuntiti? Non conferisce alcun vantaggio. Oggetto abbonati Marzo 2023.",
|
||||
"headMystery202304Text": "Coperchio da Teiera",
|
||||
"headMystery202304Notes": "Indossa questo elmo per la tua sicurezza personale. Non conferisce alcun beneficio. Oggetto abbonati Aprile 2023.",
|
||||
"headMystery202304Notes": "Indossa questo elmo per la tua sicurezza personale. Non conferisce alcun bonus. Oggetto abbonati Aprile 2023.",
|
||||
"headMystery202308Text": "Capelli Viola da Protagonista",
|
||||
"headMystery202308Notes": "Quel ciuffo ribelle che spunta dal centro della testa rappresenta la tua tenacia o la tua propensione a cacciarti nei guai? Non conferisce alcun beneficio. Oggetto abbonati Agosto 2023.",
|
||||
"headMystery202308Notes": "Quel ciuffo ribelle che spunta dal centro della testa rappresenta la tua tenacia o la tua propensione a cacciarti nei guai? Non conferisce alcun bonus. Oggetto abbonati Agosto 2023.",
|
||||
"headMystery202310Text": "Cappuccio dello Spettro",
|
||||
"shieldSpecialWinter2025WarriorText": "Scudo del Guerriero Alce",
|
||||
"shieldSpecialWinter2025HealerText": "Il Regalo Perfetto",
|
||||
@@ -3296,17 +3296,17 @@
|
||||
"shieldMystery202511Text": "Scudo Ghiacciato",
|
||||
"shieldArmoireSpringPetalUchiwaNotes": "Questo ventaglio portatile con un bellissimo motivo a petali crea una leggera brezza solo per te quando il tempo si riscalda. Aumenta Intelligenza e Percezione di <%= attrs %> ciascuno. Scrigno Incantato: Set Petali di Primavera (Oggetto 2 di 2).",
|
||||
"shieldArmoireSoftOrangePillowText": "Cuscino Morbido Arancione",
|
||||
"backMystery202405Notes": "Queste magnifiche ali hanno lo splendore dell'oro ma sono leggere come una piuma. Non conferiscono alcun beneficio. Oggetto abbonati Maggio 2024.",
|
||||
"backMystery202405Notes": "Queste magnifiche ali hanno lo splendore dell'oro ma sono leggere come una piuma. Non conferiscono alcun bonus. Oggetto abbonati Maggio 2024.",
|
||||
"headArmoirePottersBandanaText": "Bandana",
|
||||
"headMystery202504Text": "Cappuccio da Yeti Sfuggente",
|
||||
"headMystery202504Notes": "Indossa questo misterioso volto per vivere inosservato tra i ciptidi più remoti del mondo. Non conferisce alcun beneficio. Oggetto abbonati Aprile 2025.",
|
||||
"headMystery202504Notes": "Indossa questo misterioso volto per vivere inosservato tra i ciptidi più remoti del mondo. Non conferisce alcun bonus. Oggetto abbonati Aprile 2025.",
|
||||
"headMystery202507Text": "Cappellino da Skater Grintoso",
|
||||
"headMystery202602Text": "Orecchie di Volpe Sakura",
|
||||
"headMystery202602Notes": "Queste orecchie affineranno il tuo udito, permettendoti di sentire i boccioli che crescono sui rami degli alberi con l'avvicinarsi della primavera. Non conferisce alcun beneficio. Oggetto abbonati Febbraio 2026.",
|
||||
"headMystery202602Notes": "Queste orecchie affineranno il tuo udito, permettendoti di sentire i boccioli che crescono sui rami degli alberi con l'avvicinarsi della primavera. Non conferisce alcun bonus. Oggetto abbonati Febbraio 2026.",
|
||||
"headMystery202603Text": "Cappello da Mago di Glicine",
|
||||
"headMystery202603Notes": "Questo cappello sbarazzino non solo potenzia le tue capacità magiche, ma emana anche un delizioso profumo primaverile! Non conferisce alcun beneficio. Oggetto abbonati Marzo 2026.",
|
||||
"headMystery202603Notes": "Questo cappello sbarazzino non solo potenzia le tue capacità magiche, ma emana anche un delizioso profumo primaverile! Non conferisce alcun bonus. Oggetto abbonati Marzo 2026.",
|
||||
"headMystery202604Text": "Audace Casco da Astronauta",
|
||||
"headMystery202604Notes": "Nello spazio, nessuno può sentirti spuntare le voci dalla tua lista di Cosa da Fare. Ma la vera ricompensa è il senso di realizzazione personale! Non conferisce alcun beneficio. Oggetto abbonati Aprile 2026.",
|
||||
"headMystery202604Notes": "Nello spazio, nessuno può sentirti spuntare le voci dalla tua lista di Cosa da Fare. Ma la vera ricompensa è il senso di realizzazione personale! Non conferisce alcun bonus. Oggetto abbonati Aprile 2026.",
|
||||
"headArmoireTeaHatText": "Cappello da Festa del Tè",
|
||||
"headArmoireBeaniePropellerHatText": "Cappello a Elica",
|
||||
"headArmoireBeaniePropellerHatNotes": "Non è il momento di restare con i piedi per terra! Fai girare questa piccola elica e vola più in alto di quanto le tue ambizioni possano portarti. Aumenta tutte le statistiche di <%= attrs %>. Scrigno Incantato: Oggetto Indipendente.",
|
||||
@@ -3368,18 +3368,18 @@
|
||||
"shieldSpecialSpring2026RogueNotes": "Allungati e raggiungi ogni altezza con questi rami. All'occorrenza possono anche fungere da grattaschiena. Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata Primavera 2026.",
|
||||
"shieldSpecialSpring2026HealerNotes": "Crea una leggera brezza con questo ventaglio man mano che le giornate si fanno più calde. All'occorrenza, può essere usato anche come strumento per scrivere. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Primavera 2026.",
|
||||
"shieldSpecialSpring2026HealerText": "Foglia di Bucaneve",
|
||||
"shieldMystery202408Notes": "Luci magiche illumineranno l'interno del tuo rifugio a bolla, o qualsiasi altro luogo in cui ti serva un po' d'illuminazione! Non conferisce alcun beneficio. Oggetto abbonati Agosto 2024.",
|
||||
"shieldMystery202408Notes": "Luci magiche illumineranno l'interno del tuo rifugio a bolla, o qualsiasi altro luogo in cui ti serva un po' d'illuminazione! Non conferisce alcun bonus. Oggetto abbonati Agosto 2024.",
|
||||
"shieldMystery202409Text": "Bastone del Mago Eliotropio",
|
||||
"shieldMystery202409Notes": "Il rubino splendente incastonato su questo bastone trae il suo potere dal sole di fine estate. Non conferisce alcun beneficio. Oggetto abbonati Settembre 2024.",
|
||||
"shieldMystery202501Notes": "Decora qualsiasi paesaggio esterno con un manto di brina scintillante e diamantina. Non conferisce alcun beneficio. Oggetto abbonati Gennaio 2025.",
|
||||
"shieldMystery202409Notes": "Il rubino splendente incastonato su questo bastone trae il suo potere dal sole di fine estate. Non conferisce alcun bonus. Oggetto abbonati Settembre 2024.",
|
||||
"shieldMystery202501Notes": "Decora qualsiasi paesaggio esterno con un manto di brina scintillante e diamantina. Non conferisce alcun bonus. Oggetto abbonati Gennaio 2025.",
|
||||
"shieldMystery202506Text": "Scudo contro le Radiazioni Solari",
|
||||
"shieldMystery202502Notes": "Per San Valentino e per ogni altro giorno, che possa il tuo cuore essere leggero come questi palloncini. Non conferisce alcun beneficio. San Valentino di febbraio 2025.",
|
||||
"shieldMystery202511Notes": "Questo robusto scudo di roccia ghiacciata ti protegge dalle cattive abitudini senza congelarti le mani. Non conferisce alcun beneficio. Oggetto abbonati Novembre 2025.",
|
||||
"shieldMystery202506Notes": "Dissipa l'oscurità e dona raggi caldi e allegri ovunque tu sia. Non conferisce alcun beneficio. Oggetto abbonati Giugno 2025.",
|
||||
"shieldMystery202502Notes": "Per San Valentino e per ogni altro giorno, che possa il tuo cuore essere leggero come questi palloncini. Non conferisce alcun bonus. San Valentino di Febbraio 2025.",
|
||||
"shieldMystery202511Notes": "Questo robusto scudo di roccia ghiacciata ti protegge dalle cattive abitudini senza congelarti le mani. Non conferisce alcun bonus. Oggetto abbonati Novembre 2025.",
|
||||
"shieldMystery202506Notes": "Dissipa l'oscurità e dona raggi caldi e allegri ovunque tu sia. Non conferisce alcun bonus. Oggetto abbonati Giugno 2025.",
|
||||
"shieldMystery202508Text": "Lama Ciano Brillante",
|
||||
"shieldMystery202508Notes": "Se pensavi che una sola lama rotante fosse bella da vedere, provane due! Non offre alcun vantaggio. Oggetto abbonati Agosto 2025.",
|
||||
"shieldMystery202605Text": "Scudo del Crepuscolo",
|
||||
"shieldMystery202605Notes": "Lascia che la luce famelica della luna ti protegga dai pericoli dell'oscurità. Non conferisce alcun beneficio. Oggetto abbonati Maggio 2026.",
|
||||
"shieldMystery202605Notes": "Lascia che la luce famelica della luna ti protegga dai pericoli dell'oscurità. Non conferisce alcun bonus. Oggetto abbonati Maggio 2026.",
|
||||
"headArmoireFunnyFoolCapText": "Cappello da Fanfarone Divertente",
|
||||
"shieldSpecialSummer2024WarriorNotes": "A coloro che affermano che non puoi raggiungere i tuoi obiettivi, rispondi semplicemente: prova a ripeterlo alla mia mano, ehm, alla mia pinna! Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2024.",
|
||||
"shieldArmoireTeaKettleNotes": "Con questo bollitore puoi preparare tutti i tuoi tè preferiti e aromatici. Hai voglia di tè nero, tè verde o magari di un infuso di erbe? Aumenta la Costituzione di <%= con %>. Scrigno Incantato: Set da Festa del Tè (Oggetto 3 di 3).",
|
||||
@@ -3401,12 +3401,12 @@
|
||||
"shieldArmoireDoubleBassNotes": "Bom doo bom brrrr brr brr brrrr! Riunisci il tuo gruppo per un po' di relax o per ballare mentre ascolti la musica di questo profondo contrabbasso. Aumenta Costituzione e Forza di <%= attrs %> ciascuna. Scrigno Incantato: Set di Strumenti Musicali 2 (Oggetto 3 di 3)",
|
||||
"shieldArmoireSoftYellowPillowText": "Cuscino Morbido Giallo",
|
||||
"shieldArmoireSoftYellowPillowNotes": "Il guerriero esperto porta con sé un cuscino a ogni spedizione. Cresci e risplendi mentre consolidi tutto ciò che hai imparato durante le avventure passate... anche mentre fai un pisolino. Aumenta Intelligenza e Percezione di <%= attrs %> ciascuna. Scrigno Incantato: Set di Abbigliamento da Casa Giallo (Oggetto 3 di 3).",
|
||||
"shieldArmoireVerdantBannerNotes": "Sventola in alto il tuo stendardo per segnalare agli amici che è ora di radunarsi! Intelligenza di <%= int %>. Scrigno Incantato: Set di Pagina Verde (Oggetto 2 di 2).",
|
||||
"shieldArmoireVerdantBannerNotes": "Sventola in alto il tuo stendardo per segnalare agli amici che è ora di radunarsi! Aumenta l'Intelligenza di <%= int %>. Scrigno Incantato: Set di Pagina Verde (Oggetto 2 di 2).",
|
||||
"shieldArmoireVerdantBannerText": "Banner di Pagina Verde",
|
||||
"backMystery202302Text": "Coda di Gatto Imbroglione",
|
||||
"backMystery202401Text": "Incantesimo Nevoso",
|
||||
"backMystery202401Notes": "Evoca leggeri fiocchi di neve o scatena una bufera di neve. La scelta è tua! Non conferisce alcun beneficio. Oggetto abbonati Gennaio 2024.",
|
||||
"backMystery202402Notes": "Lascia che un'aura di energia amorevole ti circondi ovunque tu vada! Non conferisce alcun beneficio. Oggetto abbonati Febbraio 2024.",
|
||||
"backMystery202401Notes": "Evoca leggeri fiocchi di neve o scatena una bufera di neve. La scelta è tua! Non conferisce alcun bonus. Oggetto abbonati Gennaio 2024.",
|
||||
"backMystery202402Notes": "Lascia che un'aura di energia amorevole ti circondi ovunque tu vada! Non conferisce alcun bonus. Oggetto abbonati Febbraio 2024.",
|
||||
"headArmoireDragonKnightsHelmNotes": "Con le caratteristiche infuocate di questo elmo, i draghi potrebbero scambiarti per uno di loro. Aumenta l'Intelligenza di <%= int %>. Scrigno Incantato: Set del Cavaliere Drago (Oggetto 1 di 3)",
|
||||
"headArmoireFestiveHelperHatText": "Cappello Festivo da Aiutante",
|
||||
"headArmoireFunnyFoolCapNotes": "I campanelli su questo cappello potrebbero far scoppiare a ridere i tuoi avversari, ma a te servono solo per concentrarti. Aumenta la Costituzione di <%= con %>. Scrigno Incantato: Set del Fanferone Divertente (Oggetto 1 di 3)",
|
||||
@@ -3420,7 +3420,7 @@
|
||||
"shieldArmoireBuoyantBeachBallNotes": "Hai già troppi palloni che fluttuano in aria? Eccone uno che puoi tranquillamente posizionare a terra, far rotolare e far rimbalzare e rimbalzare e rimbalzare... Aumenta la forza di <%= str %>. Scrigno Incantato: Set di Abiti da Spiaggia (Oggetto 4 di 4).",
|
||||
"shieldArmoireFancyFloralFanNotes": "Sfoggiala la tua incontenibile eleganza con questo ventaglio di prima qualità, realizzato con un favoloso tessuto floreale. Aumenta la Percezione di <%= per %>. Scrigno Incantato: Set di Accessori Floreali Eleganti (Oggetto 2 di 2).",
|
||||
"headMystery202502Text": "Cappello da Arlecchino Amichevole",
|
||||
"headMystery202502Notes": "Questo grazioso cappellino porterà sicuramente gioia a chiunque ti veda! Non conferisce alcun beneficio. Oggetto abbonati Febbraio 2025.",
|
||||
"headMystery202502Notes": "Questo grazioso cappellino porterà sicuramente gioia a chiunque ti veda! Non conferisce alcun bonus. Oggetto abbonati Febbraio 2025.",
|
||||
"headArmoireStormKnightHelmText": "Elmo del Cavaliere della Tempesta",
|
||||
"headArmoireFestiveHelperHatNotes": "Consiglio per le vacanze #27: tenete a portata di mano un cappello da aiutante. Uno abbastanza grande da contenere un giocattolo di emergenza dentro! Aumenta l'Intelligenza di <%= int %>. Scrigno Incantato: Set Aiutante Festivo (Oggetto 1 di 2)",
|
||||
"headArmoireSnowyTrapperHatText": "Cappello da Cacciatore di Neve",
|
||||
@@ -3431,9 +3431,9 @@
|
||||
"shieldArmoireHattersPocketWatchNotes": "Non arrivare più in ritardo a un appuntamento importantissimo! Controlla spesso il tuo orologio da tasca e le notifiche. Aumenta l'Intelligenza di <%= int %>. Scrigno Incantato: Set del Cappellaio Matto (Oggetto 4 di 4).",
|
||||
"shieldArmoireSafetyFlashlightNotes": "Aspetta, hai sentito quel rumore? Presto! Illumina con la torcia le ombre laggiù. Mmmh. Forse è stato solo il vento. Oppure no...? Aumenta la Costituzione di <%= con %>. Scrigno Incantato: Set Notte del Terrore (Oggetto 1 di 2)",
|
||||
"headMystery202512Text": "Elmetto del Campione dei Biscotti",
|
||||
"headMystery202512Notes": "Il pan di zenzero forgiato con un'antica magia ti proteggerà finché riuscirai a resistere alla tentazione di assaggiarlo! Non conferisce alcun beneficio. Oggetto abbonati Dicembre 2025.",
|
||||
"headMystery202501Notes": "Questo cappello scintillante genera un'aura di luce e allegria intorno a te in ogni momento. Non conferisce alcun beneficio. Oggetto abbonati Gennaio 2025.",
|
||||
"headMystery202503Notes": "Questa verde acconciatura si addice perfettamente a un coraggioso guerriero e difensore del pianeta. Non conferisce alcun beneficio. Oggetto abbonati Marzo 2025.",
|
||||
"headMystery202512Notes": "Il pan di zenzero forgiato con un'antica magia ti proteggerà finché riuscirai a resistere alla tentazione di assaggiarlo! Non conferisce alcun bonus. Oggetto abbonati Dicembre 2025.",
|
||||
"headMystery202501Notes": "Questo cappello scintillante genera un'aura di luce e allegria intorno a te in ogni momento. Non conferisce alcun bonus. Oggetto abbonati Gennaio 2025.",
|
||||
"headMystery202503Notes": "Questa verde acconciatura si addice perfettamente a un coraggioso guerriero e difensore del pianeta. Non conferisce alcun bonus. Oggetto abbonati Marzo 2025.",
|
||||
"headMystery202503Text": "Capelli Furia di Giada",
|
||||
"headMystery202507Notes": "I cappelli indossati al contrario sono ancora di moda, vero? Non offrono alcun vantaggio. Oggetto abbonati Luglio 2025.",
|
||||
"headArmoireHattersTopHatNotes": "I nostri cappelli sono fatti apposta per te, e tu sai come tenerli testa! Cosa si nasconde nel tuo cappello è un mistero (ma speriamo sia un coniglietto). Aumenta la Percezione di <%= per %>. Scrigno Incantato: Set del Cappellaio (Oggetto 1 di 4).",
|
||||
@@ -3446,7 +3446,7 @@
|
||||
"shieldSpecialWinter2026WarriorText": "Scudo di Gelo",
|
||||
"shieldArmoirePrettyPinkGiftBoxNotes": "È un regalo da un caro amico? Da un parente affettuoso? Dal tuo vero amore? Un ammiratore segreto? Chiunque te l'abbia inviato sa che sarai contento di ciò che conterrà. Aumenta tutte le statistiche di <%= attrs %> ciascuna. Scrigno Incantato: Set Grazioso Rosa (Oggetto 2 di 2)",
|
||||
"shieldSpecialSummer2023WarriorNotes": "Evoca lo spirito di un pesciolino rosso per avere una dose extra di rassicurazione e compagnia durante un combattimento. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2023.",
|
||||
"backMystery202302Notes": "Ogni volta che indossi questa coda, sarà sicuramente una giornata favolosa! Callooh! Callay! Non conferisce alcun beneficio. Oggetto abbonati Febbraio 2023.",
|
||||
"backMystery202302Notes": "Ogni volta che indossi questa coda, sarà sicuramente una giornata favolosa! Callooh! Callay! Non conferisce alcun bonus. Oggetto abbonati Febbraio 2023.",
|
||||
"headArmoirePaintersBeretText": "Berretto da Pittore",
|
||||
"headArmoireTeaHatNotes": "Questo elegante cappello è al tempo stesso raffinato e funzionale. Aumenta la Percezione di <%= per %>. Scrigno Incantato: Set da Festa del Tè (Oggetto 2 di 3).",
|
||||
"headArmoirePaintersBeretNotes": "Guarda il mondo con uno sguardo più artistico quando indossi questo berretto sbarazzino. Aumenta la Percezione di <%= per %>. Scrigno Incantato: Set del Pittore (Oggetto 2 di 4).",
|
||||
@@ -3461,12 +3461,12 @@
|
||||
"shieldArmoireSaucepanNotes": "Guarda dentro questa pentola fumante per trovare la risposta al segreto più gelosamente custodito dalla vita! (Zuppa. La risposta è sempre zuppa.) Aumenta la Percezione di <%= per %> . Scrigno Incantato: Set di Utensili da Cucina 2 (Oggetto 1 di 2).",
|
||||
"shieldArmoireBucketNotes": "Sebbene questo secchio sia utile per contenere una miscela di acqua e di soluzione detergente, potresti anche usarlo per raccogliere, trasportare e spostare praticamente qualsiasi cosa ci stia dentro! Aumenta Forza e Intelligenza di <%= attrs %> ciascuna. Scrigno Incantato: Set di Prodotti per la Pulizia 2 (Oggetto 1 di 3)",
|
||||
"shieldArmoireSaucepanText": "Casseruola",
|
||||
"backMystery202305Notes": "Cattura lo scintillio della stella della sera e librati in volo verso regni misteriosi con queste ali. Non conferisce alcun beneficio. Oggetto abbonati Maggio 2023.",
|
||||
"backMystery202305Notes": "Cattura lo scintillio della stella della sera e librati in volo verso regni misteriosi con queste ali. Non conferisce alcun bonus. Oggetto abbonati Maggio 2023.",
|
||||
"shieldSpecialSpring2023HealerText": "Corsage di Gigli",
|
||||
"shieldArmoireTeaKettleText": "Bollitore per il Tè",
|
||||
"shieldArmoirePaintersPaletteNotes": "Hai a disposizione colori di tutte le tonalità dell'arcobaleno. È la magia che li rende così vividi quando li usi, o è il tuo talento? Aumenta la Forza di <%= str %>. Scrigno Incantato: Set del Pittore (Oggetto 4 di 4).",
|
||||
"backMystery202309Text": "Ali Colossali della Falena Cometa",
|
||||
"backMystery202309Notes": "Svolazza sopra le foreste, plana sulle montagne e solca gli oceani con queste ali luminose e meravigliose. Non conferisce alcun beneficio. Oggetto abbonati Settembre 2023.",
|
||||
"backMystery202309Notes": "Svolazza sopra le foreste, plana sulle montagne e solca gli oceani con queste ali luminose e meravigliose. Non conferisce alcun bonus. Oggetto abbonati Settembre 2023.",
|
||||
"shieldSpecialSummer2023HealerNotes": "Lo nascondi e lo proteggi. Scoraggia i mostri ficcanaso dall'avvicinarsi troppo. Simbiosi perfetta! Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2023.",
|
||||
"shieldArmoirePaintersPaletteText": "Tavolozza del Pittore",
|
||||
"headArmoireAdmiralsBicorneText": "Cappello Bicorno dell'Ammiraglio",
|
||||
@@ -3477,43 +3477,43 @@
|
||||
"shieldSpecialFall2023WarriorText": "Cuscino Comodo",
|
||||
"shieldArmoireBucketText": "Secchio",
|
||||
"bodyMystery202509Text": "Sciarpa del Viandante Sferzata dal Vento",
|
||||
"headAccessoryMystery202410Notes": "È questo il suono dei bambini che bussano alla tua porta per fare \"dolcetto o scherzetto\"? Non apporta alcun beneficio. Oggetto abbonati Ottobre 2024.",
|
||||
"backMystery202505Notes": "Guadagnatevi le vostre strisce planando e librandovi in volo su queste ali aerodinamiche. Non conferisce alcun beneficio. Oggetto abbonati Maggio 2025.",
|
||||
"backMystery202506Notes": "Porta con te una piacevole sensazione di calore mentre svolgi le tue attività quotidiane. Non apporta alcun beneficio. Oggetto abbonati Giugno 2025.",
|
||||
"headAccessoryMystery202410Notes": "È questo il suono dei bambini che bussano alla tua porta per fare \"dolcetto o scherzetto\"? Non apporta alcun bonus. Oggetto abbonati Ottobre 2024.",
|
||||
"backMystery202505Notes": "Guadagnatevi le vostre strisce planando e librandovi in volo su queste ali aerodinamiche. Non conferisce alcun bonus. Oggetto abbonati Maggio 2025.",
|
||||
"backMystery202506Notes": "Porta con te una piacevole sensazione di calore mentre svolgi le tue attività quotidiane. Non apporta alcun bonus. Oggetto abbonati Giugno 2025.",
|
||||
"backMystery202510Text": "Ali di Ghoul Plananti",
|
||||
"backMystery202506Text": "Aureola di Splendore Solare",
|
||||
"backMystery202602Text": "Cinque code di Sakura",
|
||||
"backMystery202601Text": "Sigillo d'Inverno",
|
||||
"backMystery202601Notes": "Questo marchio conferisce all'utente il controllo sugli elementi della stagione del freddo e del gelo. Non conferisce alcun beneficio. Oggetto abbonati Gennaio 2026.",
|
||||
"backMystery202602Notes": "Queste soffici code hanno il colore dei fiori di ciliegio, un promemoria che la primavera è alle porte! Non conferisce alcun beneficio. Oggetto abbonati Febbraio 2026.",
|
||||
"backMystery202601Notes": "Questo marchio conferisce all'utente il controllo sugli elementi della stagione del freddo e del gelo. Non conferisce alcun bonus. Oggetto abbonati Gennaio 2026.",
|
||||
"backMystery202602Notes": "Queste soffici code hanno il colore dei fiori di ciliegio, un promemoria che la primavera è alle porte! Non conferisce alcun bonus. Oggetto abbonati Febbraio 2026.",
|
||||
"backMystery202605Text": "Nimbo del Crepuscolo",
|
||||
"backMystery202605Notes": "Un'aureola luminosa di luce lunare e stellare per illuminare la notte anche più buia. Non conferisce alcun beneficio. Oggetto abbonati Maggio 2026.",
|
||||
"backMystery202605Notes": "Un'aureola luminosa di luce lunare e stellare per illuminare la notte anche più buia. Non conferisce alcun bonus. Oggetto abbonati Maggio 2026.",
|
||||
"backArmoireHarpsichordNotes": "Pting! Ptiiing! Riunite il vostro gruppo per una cena o un picnic e ascoltate una melodia squillante su questo clavicembalo. Aumenta Percezione e Intelligenza di <%= attrs %> ciascuna. Scrigno Incantato: Set di Strumenti Musicali 2 (Oggetto 1 di 3)",
|
||||
"backArmoireHarpsichordText": "Clavicembalo",
|
||||
"bodyMystery202411Text": "Spallacci Setolosi",
|
||||
"bodyMystery202411Notes": "Le formidabili punte di questi spallacci sono perfette per lanciarsi a capofitto nella tua lista di Cose da Fare. Non conferisce alcun beneficio. Oggetto abbonati Novembre 2024.",
|
||||
"bodyMystery202509Notes": "Questa sciarpa protegge il viso dal vento e, inoltre, ha un aspetto davvero fantastico. Non offre alcun beneficio. Oggetto abbonati Settembre 2025.",
|
||||
"bodyMystery202411Notes": "Le formidabili punte di questi spallacci sono perfette per lanciarsi a capofitto nella tua lista di Cose da Fare. Non conferisce alcun bonus. Oggetto abbonati Novembre 2024.",
|
||||
"bodyMystery202509Notes": "Questa sciarpa protegge il viso dal vento e, inoltre, ha un aspetto davvero fantastico. Non offre alcun bonus. Oggetto abbonati Settembre 2025.",
|
||||
"headAccessoryMystery202405Text": "Corna di Drago Dorate",
|
||||
"headAccessoryMystery202410Text": "Orecchie di Caramelle di Mais",
|
||||
"headAccessoryMystery202505Text": "Maestose Antenne a Coda di Rondine",
|
||||
"headAccessoryMystery202505Notes": "Individua le zone migliori per la fioritura di fiori selvatici grazie a queste appendici sensibili. Non offre alcun beneficio. Oggetto abbonati Maggio 2025.",
|
||||
"headAccessoryMystery202505Notes": "Individua le zone migliori per la fioritura di fiori selvatici grazie a queste appendici sensibili. Non offre alcun bonus. Oggetto abbonati Maggio 2025.",
|
||||
"eyewearMystery202312Text": "Occhi Blu Invernali",
|
||||
"eyewearMystery202312Notes": "Non c'è bisogno di preoccuparsi, questi occhi blu come il ghiaccio ti aiuteranno a superare la stagione fredda e buia e ad arrivare al calore dei mesi a venire. Non conferisce alcun beneficio. Oggetto abbonati Dicembre 2023.",
|
||||
"eyewearMystery202312Notes": "Non c'è bisogno di preoccuparsi, questi occhi blu come il ghiaccio ti aiuteranno a superare la stagione fredda e buia e ad arrivare al calore dei mesi a venire. Non conferisce alcun bonus. Oggetto abbonati Dicembre 2023.",
|
||||
"eyewearMystery202406Text": "Maschera del Bucaniere Fantasma",
|
||||
"eyewearMystery202503Text": "Occhi Furia di Giada",
|
||||
"eyewearMystery202510Text": "Occhi di Ghoul Fluttuanti",
|
||||
"eyewearMystery202510Notes": "Questi occhi spettrali brillano come la Luna del raccolto. Non conferisce alcun beneficio. Oggetto abbonati Ottobre 2025.",
|
||||
"eyewearMystery202510Notes": "Questi occhi spettrali brillano come la Luna del raccolto. Non conferisce alcun bonus. Oggetto abbonati Ottobre 2025.",
|
||||
"eyewearArmoireRoseColoredGlassesNotes": "Questi occhiali ti aiuteranno a vedere il lato positivo di qualunque situazione, oltre a garantirti un aspetto impeccabile. Aumenta la Percezione di <%= per %>. Scrigno incantato: Set Ottimista (Oggetto 2 di 4).",
|
||||
"headAccessoryMystery202405Notes": "La lucentezza metallica di queste raffinate corna riflette i colori danzanti del fuoco di drago. Non conferisce alcun beneficio. Oggetto abbonati Maggio 2024.",
|
||||
"headAccessoryMystery202405Notes": "La lucentezza metallica di queste raffinate corna riflette i colori danzanti del fuoco di drago. Non conferisce alcun bonus. Oggetto abbonati Maggio 2024.",
|
||||
"backMystery202505Text": "Ali di Rondine In Volo",
|
||||
"backMystery202410Text": "Coda di Caramelle di Mais",
|
||||
"backMystery202410Notes": "Questa coda si rizza al solo sentir parlare di dolcetti spettrali. Non conferisce alcun beneficio. Oggetto abbonati Ottobre 2024.",
|
||||
"backMystery202410Notes": "Questa coda si rizza al solo sentir parlare di dolcetti spettrali. Non conferisce alcun bonus. Oggetto abbonati Ottobre 2024.",
|
||||
"backMystery202507Text": "Skateboard Grintoso",
|
||||
"backMystery202507Notes": "Il tuo destriero per i marciapiedi e le rampe da skate. Non conferisce alcun beneficio. Oggetto abbonati Luglio 2025.",
|
||||
"backMystery202507Notes": "Il tuo destriero per i marciapiedi e le rampe da skate. Non conferisce alcun bonus. Oggetto abbonati Luglio 2025.",
|
||||
"eyewearArmoireRoseColoredGlassesText": "Occhiali Color Rosa",
|
||||
"eyewearMystery202406Notes": "Cercate di evitare che una banda di ragazzini ficcanaso e il loro cane parlante mettano in atto questa cosa. Non apporta alcun beneficio. Oggetto abbonati Giugno 2024.",
|
||||
"eyewearMystery202503Notes": "Questo sguardo penetrante incuterà terrore in qualsiasi combattente osi sfidarti! Non conferisce alcun beneficio. Oggetto abbonati Marzo 2025.",
|
||||
"backMystery202510Notes": "Vola silenziosamente attraverso i cieli infestati con queste ali giganti. Non conferisce alcun beneficio. Oggetto abbonati Ottobre 2025.",
|
||||
"eyewearMystery202406Notes": "Cercate di evitare che una banda di ragazzini ficcanaso e il loro cane parlante mettano in atto questa cosa. Non apporta alcun bonus. Oggetto abbonati Giugno 2024.",
|
||||
"eyewearMystery202503Notes": "Questo sguardo penetrante incuterà terrore in qualsiasi combattente osi sfidarti! Non conferisce alcun bonus. Oggetto abbonati Marzo 2025.",
|
||||
"backMystery202510Notes": "Vola silenziosamente attraverso i cieli infestati con queste ali giganti. Non conferisce alcun bonus. Oggetto abbonati Ottobre 2025.",
|
||||
"backSpecialHeroicAureoleText": "Aureola Eroica",
|
||||
"backSpecialHeroicAureoleNotes": "Le gemme su quest'aureola brillano quando racconti le tue gesta gloriose. Aumenta tutte le statistiche di <%= attrs %>.",
|
||||
"bodyArmoireKarateWhiteBeltText": "Cintura Bianca",
|
||||
@@ -3532,22 +3532,78 @@
|
||||
"bodyArmoireKarateBlackBeltNotes": "Questa cintura di livello più alto è per coloro che cercano una comprensione più profonda e possono trasmettere la loro conoscenza agli altri. Aumenta l'Intelligenza di <%= int %>. Scrigno Incantato: Set Karate (Oggetto 10 di 10).",
|
||||
"headAccessorySpecialHeroicCircletNotes": "Pesante è la testa che porta la corona, ma questo diadema è leggero come il tuo spirito generoso. Aumenta tutte le statistiche di <%= attrs %>.",
|
||||
"headAccessorySpecialHeroicCircletText": "Diadema Eroico",
|
||||
"headAccessoryMystery202305Notes": "Queste corna brillano grazie al riflesso della luce lunare. Non conferiscono alcun beneficio. Oggetto abbonati Maggio 2023.",
|
||||
"headAccessoryMystery202305Notes": "Queste corna brillano grazie al riflesso della luce lunare. Non conferiscono alcun bonus. Oggetto abbonati Maggio 2023.",
|
||||
"headAccessoryMystery202307Text": "Corona del Kraken",
|
||||
"headAccessoryMystery202307Notes": "Questo possente cerchio evoca cicloni e tempeste! Non conferisce alcun beneficio. Oggetto abbonati Luglio 2023.",
|
||||
"headAccessoryMystery202307Notes": "Questo possente cerchio evoca cicloni e tempeste! Non conferisce alcun bonus. Oggetto abbonati Luglio 2023.",
|
||||
"eyewearMystery202303Text": "Occhi Sognanti",
|
||||
"eyewearMystery202303Notes": "Lasciate che la vostra espressione indifferente induca i vostri nemici in un illusorio senso di sicurezza. Non offre alcun vantaggio. Oggetto abbonati Marzo 2023.",
|
||||
"eyewearMystery202308Notes": "Hai sonno o stai semplicemente riposando gli occhi in attesa della tua prossima incredibile battaglia? Non apporta alcun beneficio. Oggetto abbonati Agosto 2023.",
|
||||
"eyewearMystery202308Notes": "Hai sonno o stai semplicemente riposando gli occhi in attesa della tua prossima incredibile battaglia? Non apporta alcun bonus. Oggetto abbonati Agosto 2023.",
|
||||
"bodyArmoireKarateYellowBeltText": "Cintura Gialla",
|
||||
"bodyArmoireKarateYellowBeltNotes": "Questa cintura è per i principianti che hanno imparato le basi. Aumenta la Percezione di <%= per %>. Scrigno Incantato: Set Karate (Oggetto 3 di 10).",
|
||||
"bodyArmoireKarateBlueBeltNotes": "Questa cintura è per coloro che stanno imparando di più e allineando mente e corpo. Aumenta la Costituzione di <%= con %>. Scrigno Incantato: Set Karate (Oggetto 6 di 10).",
|
||||
"bodyArmoireKarateBrownBeltText": "Cintura Marrone",
|
||||
"headAccessoryMystery202302Text": "Orecchie da Gatto Imbroglione",
|
||||
"headAccessoryMystery202302Notes": "L'accessorio purr-fetto per esaltare il tuo sorriso incantevole. Non offre alcun beneficio. Oggetto abbonati Febbraio 2023.",
|
||||
"headAccessoryMystery202302Notes": "L'accessorio purr-fetto per esaltare il tuo sorriso incantevole. Non offre alcun bonus. Oggetto abbonati Febbraio 2023.",
|
||||
"headAccessoryMystery202305Text": "Corna della Sera",
|
||||
"headAccessoryMystery202309Text": "Antenne Colossali della Falena Cometa",
|
||||
"headAccessoryMystery202309Notes": "Queste antenne sono alla moda e piumate, ma ti aiutano anche a orientarti! Non conferiscono alcun beneficio. Oggetto abbonati Settembre 2023.",
|
||||
"headAccessoryMystery202309Notes": "Queste antenne sono alla moda e piumate, ma ti aiutano anche a orientarti! Non conferiscono alcun bonus. Oggetto abbonati Settembre 2023.",
|
||||
"headAccessoryMystery202310Text": "Corona di Luci Spettrali",
|
||||
"headAccessoryMystery202310Notes": "Come fuochi fatui, queste luci ultraterrene potrebbero attirare le anime curiose verso la loro rovina. Non apporta alcun beneficio. Oggetto abbonati Ottobre 2023.",
|
||||
"eyewearMystery202308Text": "Occhi Assonnati"
|
||||
"headAccessoryMystery202310Notes": "Come fuochi fatui, queste luci ultraterrene potrebbero attirare le anime curiose verso la loro rovina. Non apporta alcun bonus. Oggetto abbonati Ottobre 2023.",
|
||||
"eyewearMystery202308Text": "Occhi Assonnati",
|
||||
"weaponSpecialSummer2026MageNotes": "Quest'arma pericolosa e a doppia estremità si adatta perfettamente alla tua estetica oceanica. Aumenta l'Intelligenza di <%= int %> e la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"weaponArmoireKendoShinaiNotes": "Leggera e morbida, puoi fare pratica con questa spada in bambù mentre ti sforzi a migliorare te stesso. Aumenta la Forza di <%= str %>. Scrigno Incantato: Set da Kendo (Oggetto 3 di 3).",
|
||||
"armorSpecialSummer2026WarriorNotes": "Puoi nasconderti in questo costume, ma non puoi nasconderti dai tuoi problemi. Raduna la tua grinta da alligatore e affronta i tuoi compiti mostrando l'alligatore che sei. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"armorSpecialSummer2026RogueNotes": "Avvolgiti in questo abito tsunami, ma non nasconderti dai tuoi problemi. Evoca una forte tempesta che ti copra le spalle e affronta i tuoi compiti per l'avventuriero che sei. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"armorSpecialSummer2026MageNotes": "Scivola dentro questo completo, ma non nasconderti dai tuoi problemi. Mostra il tuo splendore da squalo e nuota dritto verso quelle attività per lo squalo che sei. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"armorArmoireKendoBoguNotes": "Potrebbe essere un'armatura da allenamento, ma offre una protezione più che sufficiente per il cammino che ti attende. Aumenta la Costituzione di <%= con %>. Scrigno incantato: Set da Kendo (Oggetto 2 di 3).",
|
||||
"headSpecialSummer2026WarriorText": "Elmo d'Alligatore",
|
||||
"headSpecialSummer2026WarriorNotes": "Vai avanti e sii produttivo! Dinanzi agli ostacoli, reagisci con veemenza e mostra i tuoi denti aguzzi. Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"headSpecialSummer2026HealerNotes": "Vai avanti e sii produttivo! Se hai delle difficoltà, raccoglile semplicemente nel tuo becco colorato e portale da qualche altra parte. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"headArmoireKendoMenNotes": "Potresti restare sorpreso da quanto riesci a veder bene attraverso la grata, mentre segui la via della spada. Aumenta la Percezione di <%= per %>. Scrigno Incantato: Set da Kendo (Oggetto 1 di 3).",
|
||||
"shieldSpecialSummer2026WarriorNotes": "Respingi le sfide in arrivo con questo scudo elegante e lucente. E quando avrai completato con successo la tua lista, alza il volume della musica e dai inizio alla festa! Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"shieldMystery202607Notes": "Acque tumultuose si piegano alla tua potente volontà magica. Non conferisce alcun bonus. Oggetto abbonati Luglio 2026.",
|
||||
"eyewearMystery202606Notes": "I tuoi occhi sono in ombra, ma il tuo umore resta roseo! Non conferisce alcun bonus. Oggetto abbonati Giugno 2026.",
|
||||
"weaponSpecialSummer2026RogueText": "Lama Tsunami",
|
||||
"weaponSpecialSummer2026RogueNotes": "Quest'arma intelligente e sinuosa si adatta perfettamente alla tua estetica marina. Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"weaponSpecialSummer2026WarriorNotes": "Quest'arma scintillante ed elegante si adatta perfettamente alla tua estetica paludosa. Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"weaponSpecialSummer2026HealerText": "Lancia Pulcinella di Mare",
|
||||
"weaponSpecialSummer2026WarriorText": "Machete Alligatore",
|
||||
"weaponSpecialSummer2026HealerNotes": "Quest'arma decorata con piume si adatta perfettamente alla tua estetica isolana. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"weaponSpecialSummer2026MageText": "Lancia di Squalo Tigre",
|
||||
"weaponMystery202607Text": "Ittici Familiari dell'Oceanomante",
|
||||
"weaponMystery202607Notes": "Questi compagni colorati guideranno le tue abilità acquatiche. Non conferisce alcun bonus. Oggetto abbonati Luglio 2026.",
|
||||
"weaponMystery202608Text": "Lama Magenta Raggiante",
|
||||
"weaponMystery202608Notes": "Luminoso, magnifico, pericoloso per le tue Attività Giornaliere incompiute. Non conferisce alcun bonus. Oggetto abbonati Agosto 2026.",
|
||||
"weaponArmoireBrightRainbowKiteText": "Aquilone Arcobaleno",
|
||||
"weaponArmoireBrightRainbowKiteNotes": "I colori di questo aquilone sono vivaci e sgargianti. Guardarlo volare in alto ti renderà orgoglioso! Aumenta tutte le statistiche di <%= attrs %> ciascuna. Scrigno Incantato: Set Aquilone Arcobaleno (Oggetto 1 di 2).",
|
||||
"weaponArmoirePastelRainbowKiteText": "Aquilone Arcobaleno Pastello",
|
||||
"weaponArmoirePastelRainbowKiteNotes": "I colori di questo aquilone sono tenui e delicati. Danza e gira mentre vola in alto! Aumenta tutte le statistiche di <%= attrs %> ciascuna. Scrigno Incantato: Set Aquilone Arcobaleno (Oggetto 2 di 2).",
|
||||
"weaponArmoireKendoShinaiText": "Shinai da Kendo",
|
||||
"weaponArmoireGardenRakeText": "Rastrello da Giardino",
|
||||
"weaponArmoireGardenRakeNotes": "Step 1: Raccogli tutte le foglie cadute in un mucchio gigante. Step 2: Celebra il lavoro compiuto saltando nel mucchio. Passaggio 3: Ripeti. Aumenta la Costituzione di <%= con %>. Scrigno Incantato: Set Giardiniere 2 (Oggetto 1 di 2).",
|
||||
"armorSpecialSummer2026WarriorText": "Tuta da Alligatore",
|
||||
"armorSpecialSummer2026RogueText": "Abito Tsunami",
|
||||
"armorSpecialSummer2026HealerText": "Abito da Pulcinella di Mare",
|
||||
"armorSpecialSummer2026HealerNotes": "Indossa questo completo, ma non nasconderti dai tuoi problemi. Sprigiona il tuo potere da pulcinella di mare e affronta i tuoi compiti per la pulcinella di mare che sei. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"armorSpecialSummer2026MageText": "Abito da Squalo Tigre",
|
||||
"armorArmoireKendoBoguText": "Bōgu da Kendo",
|
||||
"headSpecialSummer2026RogueText": "Elmo Tsunami",
|
||||
"headSpecialSummer2026RogueNotes": "Vai avanti e sii produttivo! Se perdi la strada, segui semplicemente il flusso. Aumenta la Percezione del <%= per %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"headSpecialSummer2026HealerText": "Elmo da Pulcinella di Mare",
|
||||
"headSpecialSummer2026MageText": "Elmo da Squalo Tigre",
|
||||
"headSpecialSummer2026MageNotes": "Vai avanti e sii produttivo! Se un ostacolo osa intralciare il tuo cammino, distruggilo semplicemente con le tue potenti mascelle. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"headMystery202606Text": "Cappello per le Vacanze",
|
||||
"headMystery202606Notes": "Le vacanze sono fatte per godersi il sole, ma non scottarti! Non conferisce alcun bonus. Oggetto abbonati Giugno 2026.",
|
||||
"headArmoireKendoMenText": "Men da Kendo",
|
||||
"shieldSpecialSummer2026WarriorText": "Scudo d'Alligatore",
|
||||
"shieldSpecialSummer2026HealerText": "Pozione di Pulcinella di Mare",
|
||||
"shieldSpecialSummer2026HealerNotes": "Mantieni sana la tua colonia di pulcinelle di mare con questa pozione. Ha un ottimo sapore con il pesce! Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata Estate 2026.",
|
||||
"shieldMystery202606Text": "Amaca per le Vacanze",
|
||||
"shieldMystery202606Notes": "Tra un'attività e l'altra, sali su questa amaca, rilassati e goditi il panorama! Non conferisce alcun bonus. Oggetto abbonati Giugno 2026.",
|
||||
"shieldMystery202607Text": "Bolla Salata dell'Oceanomante",
|
||||
"shieldMystery202608Text": "Lama di Brillante Smeraldo",
|
||||
"shieldMystery202608Notes": "Suddividi e scomponi tutti i tuoi compiti in più parti gestibili! Non conferisce alcun bonus. Oggetto abbonati Agosto 2026.",
|
||||
"shieldArmoireGardenHoseText": "Tubo da Giardino",
|
||||
"shieldArmoireGardenHoseNotes": "Questo tubo magico non si attorciglia mai e può allungarsi all'infinito per raggiungere ogni centimetro del tuo spazio. Tutti i tuoi fiori, alberi, arbusti e gli animali domestici possono dissetarsi con esso. Aumenta la Percezione del <%= per %>. Scrigno Incantato: Set Giardiniere 2 (Oggetto 2 di 2).",
|
||||
"eyewearMystery202606Text": "Occhiali da Sole per le Vacanze"
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"tavern": "Chat della Taverna",
|
||||
"tavernChat": "Chat della Taverna",
|
||||
"innCheckOutBanner": "Attualmente sei fermo nella locanda. Le tue Attività Giornaliere non ti danneggeranno e non progredirai nelle missioni.",
|
||||
"innCheckOutBannerShort": "Hai sospeso i danni.",
|
||||
"innCheckOutBanner": "Attualmente hai messo in pausa i danni. Le tue Attività Giornaliere non ti danneggeranno e non progredirai nelle Missioni.",
|
||||
"innCheckOutBannerShort": "Hai messo in pausa i danni.",
|
||||
"resumeDamage": "Riattiva Danni",
|
||||
"helpfulLinks": "Link utili",
|
||||
"lookingForGroup": "Sei in cerca di una squadra? Guarda qui! (in inglese)",
|
||||
@@ -422,7 +422,7 @@
|
||||
"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:",
|
||||
"checkinsLabel": "Accessi:",
|
||||
"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!",
|
||||
|
||||
@@ -131,7 +131,7 @@
|
||||
"winter2019WinterStarSet": "Stella d'Inverno (Guaritore)",
|
||||
"winter2019PoinsettiaSet": "Poinsettia (Ladro)",
|
||||
"winterPromoGiftHeader": "REGALA UN ABBONAMENTO, NE OTTIENI UNO GRATIS!",
|
||||
"winterPromoGiftDetails1": "Solo fino al 6 gennaio, quando regali a qualcuno un abbonamento, ricevi lo stesso abbonamento gratuitamente!",
|
||||
"winterPromoGiftDetails1": "Solo fino al 6 Gennaio, quando regali a qualcuno un abbonamento, ricevi lo stesso abbonamento gratuitamente!",
|
||||
"winterPromoGiftDetails2": "Per favore nota che se tu o la persona a cui stai facendo il regalo avete già un abbonamento che si rinnova automaticamente, l'abbonamento regalato inizierà solo che l'abbonamento sarà cancellato o finirà. Grazie infinite per il supporto! <3",
|
||||
"discountBundle": "pacchetto",
|
||||
"g1g1Announcement": "È attiva la promozione <strong>Regala un abbonamento e ricevine uno gratis</strong>!",
|
||||
@@ -210,22 +210,22 @@
|
||||
"winter2023FairyLightsMageSet": "Luci Fatate (Mago)",
|
||||
"winter2023CardinalHealerSet": "Cardinale Rosso (Guaritore)",
|
||||
"winter2023RibbonRogueSet": "Fiocco (Ladro)",
|
||||
"anniversaryLimitedDates": "dal 30 gennaio al 8 febbraio",
|
||||
"anniversaryLimitedDates": "dal 30 Gennaio al 8 Febbraio",
|
||||
"limitedEvent": "evento a tempo limitato",
|
||||
"celebrateAnniversary": "Festaggia il decimo compleanno di Habitica coi regali e gli oggetti esclusivi scritto sotto!",
|
||||
"celebrateBirthday": "Festeggia il decimo compleanno di Habitica con regali e oggetti esclusivi!",
|
||||
"anniversaryLimitations": "Questo è un evento a tempo limitato che comincia il 30 gennaio alle 8.00 ET (13.00 UTC) e finisce il 8 febbraio alle 23.59 ET (04.59 UTC). L'edizione limitata Grifatrice Giubilante e dieci Pozioni di Schiusa Magiche saranno disponibili a comprare durante questo periodo. Gli altri regali listati nella sezione \"Four for Free\" saranno inseriti automaticamente negli account che sono stati attivi negli 30 giorni precendenti al giorno che il regalo è mandato. Gli account creati dopo qualsiasi regalo è mandato non possono ricevere i regali.",
|
||||
"spring2024FluoriteWarriorSet": "Set di Fluorite (Guerriero)",
|
||||
"spring2024HibiscusMageSet": "Set di Ibisco (Mago)",
|
||||
"spring2024BluebirdHealerSet": "Set dell'Uccello Azzurro (Guaritore)",
|
||||
"spring2024MeltingSnowRogueSet": "Set di Neve Sciolta (Ladro)",
|
||||
"summer2024WhaleSharkWarriorSet": "Set dello Squalo Balena (Guerriero)",
|
||||
"summer2024SeaAnemoneMageSet": "Set dell'Anemone di Mare (Mago)",
|
||||
"summer2024SeaSnailHealerSet": "Set della Lumaca di Mare (Guaritore)",
|
||||
"summer2024NudibranchRogueSet": "Set del Nudibranco (Ladro)",
|
||||
"anniversaryLimitations": "Questo è un evento a tempo limitato che comincia il 30 Gennaio alle 8.00 ET (13.00 UTC) e finisce il 8 Febbraio alle 23.59 ET (04.59 UTC). L'edizione limitata Grifatrice Giubilante e dieci Pozioni di Schiusa Magiche saranno disponibili a comprare durante questo periodo. Gli altri regali listati nella sezione \"Four for Free\" saranno inseriti automaticamente negli account che sono stati attivi negli 30 giorni precendenti al giorno che il regalo è mandato. Gli account creati dopo qualsiasi regalo è mandato non possono ricevere i regali.",
|
||||
"spring2024FluoriteWarriorSet": "Fluorite (Guerriero)",
|
||||
"spring2024HibiscusMageSet": "Ibisco (Mago)",
|
||||
"spring2024BluebirdHealerSet": "Uccello Azzurro (Guaritore)",
|
||||
"spring2024MeltingSnowRogueSet": "Neve Sciolta (Ladro)",
|
||||
"summer2024WhaleSharkWarriorSet": "Squalo Balena (Guerriero)",
|
||||
"summer2024SeaAnemoneMageSet": "Anemone di Mare (Mago)",
|
||||
"summer2024SeaSnailHealerSet": "Lumaca di Mare (Guaritore)",
|
||||
"summer2024NudibranchRogueSet": "Nudibranco (Ladro)",
|
||||
"winter2024SnowyOwlRogueSet": "Gufo delle Nevi (Ladro)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Set della Corteccia di Menta Piperita (Guerriero)",
|
||||
"winter2024NarwhalWizardMageSet": "Set del Mago Narvalo (Mago)",
|
||||
"winter2024PeppermintBarkWarriorSet": "Corteccia di Menta Piperita (Guerriero)",
|
||||
"winter2024NarwhalWizardMageSet": "Mago Narvalo (Mago)",
|
||||
"spring2023CaterpillarRogueSet": "Millepiedi (Ladro)",
|
||||
"spring2023HummingbirdWarriorSet": "Colibrì (Guerriero)",
|
||||
"spring2023MoonstoneMageSet": "Pietra lunare (Mago)",
|
||||
@@ -238,38 +238,38 @@
|
||||
"fall2023ScarletWarlockMageSet": "Stregone Scarlatto (Mago)",
|
||||
"fall2023WitchsBrewRogueSet": "Infuso della Strega (Ladro)",
|
||||
"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)",
|
||||
"winter2025SnowRogueSet": "Neve (Ladro)",
|
||||
"winter2025MooseWarriorSet": "Alce (Guerriero)",
|
||||
"winter2025AuroraMageSet": "Aurora (Mago)",
|
||||
"winter2025StringLightsHealerSet": "Lucine a Strisce (Guaritore)",
|
||||
"spring2025SunshineWarriorSet": "Luce Solare (Guerriero)",
|
||||
"spring2025CrystalPointRogueSet": "Punta di Cristallo (Ladro)",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria (Guaritore)",
|
||||
"spring2025MantisMageSet": "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)",
|
||||
"fall2024FieryImpWarriorSet": "Demone Ardente (Guerriero)",
|
||||
"fall2024UnderworldSorcerorMageSet": "Mago dell'Oltretomba (Mago)",
|
||||
"fall2024SpaceInvaderHealerSet": "Invasore Spaziale (Guaritore)",
|
||||
"fall2024BlackCatRogueSet": "Gatto Nero (Ladro)",
|
||||
"summer2025ScallopWarriorSet": "Capasanta (Guerriero)",
|
||||
"summer2025SquidRogueSet": "Calamaro (Ladro)",
|
||||
"summer2025SeaAngelHealerSet": "Angelo Marino (Guaritore)",
|
||||
"summer2025FairyWrasseMageSet": "Labride Fatato (Mago)",
|
||||
"fall2025SasquatchWarriorSet": "Bigfoot (Guerriero)",
|
||||
"fall2025SkeletonRogueSet": "Scheletro (Ladro)",
|
||||
"fall2025KoboldHealerSet": "Koboldo (Guaritore)",
|
||||
"fall2025MaskedGhostMageSet": "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)",
|
||||
"spring2026FrogWarriorSet": "Rana (Guerriero)",
|
||||
"spring2026BranchRogueSet": "Ramo Primaverile (Ladro)",
|
||||
"spring2026SnowdropHealerSet": "Bucaneve (Guaritore)",
|
||||
"spring2026MaypoleMageSet": "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)",
|
||||
"winter2026SkiRogueSet": "Sci (Ladro)",
|
||||
"winter2026RimeReaperWarriorSet": "Mietitore Ghiacciato (Guerriero)",
|
||||
"winter2026PolarBearHealerSet": "Orso Polare (Guaritore)",
|
||||
"winter2026MidwinterCandleMageSet": "Candela 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",
|
||||
@@ -290,5 +290,9 @@
|
||||
"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."
|
||||
"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.",
|
||||
"summer2026AlligatorWarriorSet": "Alligatore (Guerriero)",
|
||||
"summer2026PuffinHealerSet": "Pulcinella di Mare (Guaritore)",
|
||||
"summer2026TigerSharkMageSet": "Squalo Tigre (Mago)",
|
||||
"summer2026TsunamiRogueSet": "Tsunami (Ladro)"
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"checkinEarned": "Il tuo contatore accessi è aumentato!",
|
||||
"unlockedCheckInReward": "Hai sbloccato un Premio Accesso!",
|
||||
"checkinProgressTitle": "Progresso fino al prossimo",
|
||||
"incentiveBackgroundsUnlockedWithCheckins": "Altri Sfondi Base saranno sbloccati con gli accessi giornalieri.",
|
||||
"incentiveBackgroundsUnlockedWithCheckins": "Altri Sfondi Base saranno sbloccati con gli Accessi Giornalieri.",
|
||||
"oneOfAllPetEggs": "un uovo per ogni tipo standard di uovo",
|
||||
"twoOfAllPetEggs": "due uova per ogni tipo standard di uovo",
|
||||
"threeOfAllPetEggs": "tre uova per ogni tipo standard di uovo",
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
"step2": "Passo 2: Guadagna Punti portando a termine le attività nella vita reale",
|
||||
"webStep2Text": "Inizia a lavorare sugli obiettivi nella tua lista! Man mano che completi le attività e che ne spunti le voci su Habitica, guadagnerai punti [Esperienza](https://habitica.fandom.com/wiki/Experience_Points), che ti faranno salire di livello, e [Oro](https://habitica.fandom.com/wiki/Gold_Points), che ti permetterà di acquistare le Ricompense. Invece, se ricadi in una cattiva abitudine o se salti una Attività Giornaliera, perderai punti [Salute](https://habitica.fandom.com/wiki/Health_Points). Puoi quindi considerare la barra Esperienza e la barra Salute di Habitica come un simpatico indicatore del tuo progresso verso il completamento dei tuoi obiettivi. Man mano che il tuo personaggio progredirà nel gioco, inizierai a veder migliorare anche la tua vita reale.",
|
||||
"step3": "Passo 3: Personalizza ed Esplora Habitica",
|
||||
"webStep3Text": "Una volta che hai familiarità con le basi, puoi ottenere ancora di più da Habitica con queste fantastiche caratteristiche:\n * Organizza le tue Attività con le [etichette](https://habitica.fandom.com/wiki/Tags) (modifica una Attività per aggiungerle).\n* Personalizza il tuo [Avatar](https://habitica.fandom.com/wiki/Avatar) usando l'icona Utente nel'angolo in alto a destra.\n * Compra il tuo [Equipaggiamento](https://habitica.fandom.com/wiki/Equipment) nella colonna delle Ricompense o nel [Mercato](<%= shopUrl %>), e cambialo andando a [Inventario > Equipaggmento](<%= equipUrl %>).\n * Connetti con altri utenti con lo [strumento per la ricerca Squadre](https://habitica.com/looking-for-party).\n * Ottieni [Animali](https://habitica.fandom.com/wiki/Pets) collezionando [Uova](https://habitica.fandom.com/wiki/Eggs) e [Pozioni di Schiusa](https://habitica.fandom.com/wiki/Hatching_Potions). Dai da [mangiare](https://habitica.fandom.com/wiki/Food) agli Animali per ottenere [Cavalcature](https://habitica.fandom.com/wiki/Mounts).\n * Al livello 10: scegli una particolare [Classe](https://habitica.fandom.com/wiki/Class_System), e poi usa specifiche [abilità di Classe](https://habitica.fandom.com/wiki/Skills) (livelli 11-14).\n * Forma una Squadra con i tuoi amici (usando il pulsante [Squadra](<%= partyUrl %>) nella barra di navigazione) per rimanere responsabile e guadagnare pergamene Missione.\n * Sconfiggi mostri e colleziona oggetti mentre fai le [Missioni](https://habitica.fandom.com/wiki/Quests) (riceverai una pergamena Missione al livelo 15).",
|
||||
"overviewQuestionsRevised": "Hai delle domande? Controlla la sezione <a href='/static/faq'>FAQ</a>! Se la tua domanda non è ancora stata posta lì, puoi chiedere aiuto usando questo modulo: "
|
||||
"webStep3Text": "Una volta che hai familiarità con le basi, puoi ottenere ancora di più da Habitica con queste fantastiche caratteristiche:\n * Organizza le tue Attività con le [etichette](https://habitica.fandom.com/wiki/Tags) (modifica una Attività per aggiungerle).\n* Personalizza il tuo [Avatar](https://habitica.fandom.com/wiki/Avatar) usando l'icona Utente nel'angolo in alto a destra.\n * Compra il tuo [Equipaggiamento](https://habitica.fandom.com/wiki/Equipment) nella colonna delle Ricompense o nel [Mercato](<%= shopUrl %>), e cambialo andando a [Inventario > Equipaggmento](<%= equipUrl %>).\n * Connetti con altri utenti con lo strumento [Cerca una Squadra](https://habitica.com/looking-for-party).\n * Ottieni [Animali](https://habitica.fandom.com/wiki/Pets) collezionando [Uova](https://habitica.fandom.com/wiki/Eggs) e [Pozioni di Schiusa](https://habitica.fandom.com/wiki/Hatching_Potions). Dai da [mangiare](https://habitica.fandom.com/wiki/Food) agli Animali per ottenere [Cavalcature](https://habitica.fandom.com/wiki/Mounts).\n * Al livello 10: scegli una particolare [Classe](https://habitica.fandom.com/wiki/Class_System), e poi usa specifiche [abilità di Classe](https://habitica.fandom.com/wiki/Skills) (livelli 11-14).\n * Forma una Squadra con i tuoi amici (usando il pulsante [Squadra](<%= partyUrl %>) nella barra di navigazione) per rimanere responsabile e guadagnare pergamene Missione.\n * Sconfiggi mostri e colleziona oggetti mentre fai le [Missioni](https://habitica.fandom.com/wiki/Quests) (riceverai una pergamena Missione al livelo 15).",
|
||||
"overviewQuestionsRevised": "Hai delle domande? Controlla nelle <a href='/static/faq'>FAQ</a>! Se la tua domanda non c'è ancora, puoi chiedere aiuto con questo modulo: "
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"stable": "Animali e cavalcature",
|
||||
"stable": "Animali e Cavalcature",
|
||||
"pets": "Animali",
|
||||
"activePet": "Animale attivo",
|
||||
"noActivePet": "Nessun animale attivo",
|
||||
@@ -57,7 +57,7 @@
|
||||
"mountMasterText2": " e ha liberato tutte e 90 le sue cavalcature <%= count %> volta/e",
|
||||
"triadBingoName": "Triplo Bingo",
|
||||
"triadBingoText": "Ha trovato tutti i 90 animali, tutte le 90 cavalcature e tutti i 90 animali DI NUOVO (MA COME HAI FATTO!)",
|
||||
"triadBingoText2": " e ha liberato tutti i loro animali e cavalcature <%= count %> volta/e",
|
||||
"triadBingoText2": " e ha liberato tutti gli Animali e le Cavalcature <%= count %> volta/e",
|
||||
"triadBingoAchievement": "Hai ottenuto la medaglia \"Triplo Bingo\" per aver trovato tutti gli animali, addomesticato tutte le cavalcature, e trovato di nuovo tutti gli animali!",
|
||||
"hatchedPet": "È nato un <%= egg %> <%= potion %>!",
|
||||
"hatchedPetGeneric": "Hai fatto nascere un nuovo animale!",
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
"questNotPending": "Non ci sono missioni da cominciare.",
|
||||
"questOrGroupLeaderOnlyStartQuest": "Solo il leader del gruppo o della missione può forzare l'inizio di una missione",
|
||||
"loginIncentiveQuest": "Per sbloccare questa missione, usa Habitica per un totale di <%= count %> giorni!",
|
||||
"loginReward": "<%= count %> accessi",
|
||||
"loginReward": "<%= count %> Accessi",
|
||||
"questBundles": "Pacchetto missioni scontato",
|
||||
"noQuestToStart": "Fai un salto al <a href=\"<%= questShop %>\">Negozio Missioni</a> per le nuove uscite!",
|
||||
"pendingDamage": "<%= damage %> danno in sospeso",
|
||||
|
||||
@@ -745,7 +745,7 @@
|
||||
"questOnyxCollectOnyxStones": "Pietre d'Onice",
|
||||
"questOnyxDropOnyxPotion": "Pozione di Schiusa Onice",
|
||||
"questOnyxUnlockText": "Sblocca l'acquisto delle Pozioni di Schiusa Onice nel negozio",
|
||||
"questVirtualPetText": "Caos Virtuale con il pesce d'aprile: L'accensione",
|
||||
"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!",
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
"generate": "Genera",
|
||||
"getCodes": "Ottieni codici",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provvede webhook in modo tale che quando alcune azioni avvengono nel tuo account, le informazioni possono essere inviate a uno script su un altro sito. Puoi specificare questi script qui. Fai attenzione con questa funzione perché se specifichi un URL non corretto questo può causare errori e lentezza in Habitica. Per ulterioni informazioni vedi l'articolo in inglese sulla wiki <a target=\"_blank\" href=\"https://habitica.com/apidoc/#api-Webhook-AddWebhook\">Webhooks</a>.",
|
||||
"webhooksInfo": "Habitica provvede webhook in modo tale che quando alcune azioni avvengono nel tuo account, le informazioni possono essere inviate a uno script su un altro sito. Puoi specificare questi script qui. Fai attenzione con questa funzione perché se specifichi un URL non corretto questo può causare errori e lentezza in Habitica. Per ulterioni informazioni vedi l'articolo in inglese sulla wiki <a target=\"_blank\" href=\"https://apidoc.habitica.com/#api-Webhook-AddWebhook\">Webhooks</a>.",
|
||||
"enabled": "Abilitato",
|
||||
"webhookURL": "URL Webhook",
|
||||
"invalidUrl": "URL non valido",
|
||||
@@ -205,7 +205,7 @@
|
||||
"remainingBalance": "Saldo Rimanente",
|
||||
"generalSettings": "Impostazioni Generali",
|
||||
"taskSettings": "Impostazioni delle Attività",
|
||||
"confirmCancelChanges": "Confermi? I cambiamenti non salvati saranno perduti.",
|
||||
"confirmCancelChanges": "Confermi? Perderai tutte le modifiche non salvate.",
|
||||
"account": "Profilo",
|
||||
"loginMethods": "Metodi per accedere",
|
||||
"character": "Personaggio",
|
||||
|
||||
@@ -277,5 +277,8 @@
|
||||
"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."
|
||||
"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.",
|
||||
"mysterySet202606": "Set di Amache per le Vacanze",
|
||||
"mysterySet202608": "Set di Lame Raggianti",
|
||||
"mysterySet202607": "Set dell'Oceanomante"
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"edit": "Modifica",
|
||||
"save": "Salva",
|
||||
"addChecklist": "Aggiungi checklist",
|
||||
"checklist": "Checklist",
|
||||
"checklist": "Lista",
|
||||
"newChecklistItem": "Nuovo elemento checklist",
|
||||
"expandChecklist": "Espandi checklist",
|
||||
"collapseChecklist": "Nascondi checklist",
|
||||
@@ -143,5 +143,15 @@
|
||||
"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à?"
|
||||
"sureDeleteType": "Vuoi davvero eliminare questa attività?",
|
||||
"every": "ogni",
|
||||
"everyDay": "ogni giorno",
|
||||
"everyXDays": "ogni <%= count %> giorni",
|
||||
"everyXWeeks": "ogni <%= count %> settimane",
|
||||
"everyMonth": "ogni mese",
|
||||
"everyYear": "ogni anno",
|
||||
"everyXYears": "ogni <%= count %> anni",
|
||||
"everyWeek": "ogni settimana",
|
||||
"everyXMonths": "ogni <%= count %> mesi",
|
||||
"fifthWeekWarning": "Questa attività <strong>non</strong> scadrà durante i mesi con meno di <%= giorni %>s"
|
||||
}
|
||||
|
||||
@@ -941,5 +941,11 @@
|
||||
"backgroundElvenCitadelText": "エルフの城塞",
|
||||
"backgroundElvenCitadelNotes": "エルフの城塞まで、景色のいい道を歩きましょう。",
|
||||
"backgroundOnAStrangePlanetText": "不思議な惑星",
|
||||
"backgroundOnAStrangePlanetNotes": "Habiticaの住民の行ったことない、不思議な惑星を冒険しましょう。"
|
||||
"backgroundOnAStrangePlanetNotes": "Habiticaの住民の行ったことない、不思議な惑星を冒険しましょう。",
|
||||
"backgrounds062026": "セット145:2026年6月リリース",
|
||||
"backgroundBeachWithVolcanoText": "海辺と火山",
|
||||
"backgrounds072026": "セット146:2026年7月リリース",
|
||||
"backgrounds082026": "セット147:2063年8月リリース",
|
||||
"backgroundVegetableGardenText": "菜園",
|
||||
"backgroundVegetableGardenNotes": "菜園でおいしい野菜を育てましょう。"
|
||||
}
|
||||
|
||||
@@ -1266,7 +1266,7 @@
|
||||
"headArmoireJeweledArcherHelmText": "宝石で飾られたかぶと",
|
||||
"headArmoireJeweledArcherHelmNotes": "このかぶとは飾り立てて見えるかもしれません。しかし、大変に軽く強力でもあるのです。知能が<%= int %>上がります。ラッキー宝箱:宝石飾りの弓使いセット(アイテム1/3 )。",
|
||||
"headArmoireVeilOfSpadesText": "スペードのベール",
|
||||
"headArmoireVeilOfSpadesNotes": "影になってミステリアスなベールは、あなたの密やかさを高めるでしょう。知覚が<%= per %>上がります。ラッキー宝箱:スペードのエースセット(アイテム1/3 )。",
|
||||
"headArmoireVeilOfSpadesNotes": "影になってミステリアスなベールは、あなたの密やかさを高めるでしょう。知覚が<%= per %>上がります。ラッキー宝箱:スペードのエースセット(アイテム1/3)。",
|
||||
"offhand": "反対の手のアイテム",
|
||||
"shieldBase0Text": "利き手と反対の手の装備はありません",
|
||||
"shieldBase0Notes": "盾や、利き手と反対の手の装備はありません。",
|
||||
@@ -3473,5 +3473,25 @@
|
||||
"headSpecialWinter2026WarriorText": "霜の死神のかぶと",
|
||||
"backMystery202605Notes": "最も暗い夜でも照らす、月と星の光で輝く光輪。効果なし。2026年5月の有料会員アイテム。",
|
||||
"backMystery202506Text": "陽光の光輪",
|
||||
"weaponArmoirePrettyPinkParasolNotes": "見た目もよくて実用的、それがいちばんの組み合わせです。さらに印象的に見せるなら、このパラソルをくるっと回してみてください!すべての能力値がそれぞれ<%= attrs %>上がります。ラッキー宝箱:ピンクのおしゃれセット(アイテム1/2)"
|
||||
"weaponArmoirePrettyPinkParasolNotes": "見た目もよくて実用的、それがいちばんの組み合わせです。さらに印象的に見せるなら、このパラソルをくるっと回してみてください!すべての能力値がそれぞれ<%= attrs %>上がります。ラッキー宝箱:ピンクのおしゃれセット(アイテム1/2)",
|
||||
"weaponSpecialSummer2026RogueNotes": "曲線美が特徴のこの武器は海辺風コーデにぴったりです。力が<%= str %>上がります。2026年夏の限定装備。",
|
||||
"weaponSpecialSummer2026RogueText": "津波の刀",
|
||||
"weaponSpecialSummer2026WarriorText": "ワニのマチェテ",
|
||||
"weaponSpecialSummer2026HealerNotes": "羽飾りのついたこの立派な武器は島風コーデにぴったりです。知能が<%= int %>上がります。2026年夏の限定装備。",
|
||||
"weaponSpecialSummer2026HealerText": "ツノメドリの槍",
|
||||
"armorArmoireKendoBoguText": "剣道の防具",
|
||||
"armorArmoireKendoBoguNotes": "稽古用の防具ですが、これからの道のりには十分です。体質が<%= con %>上がります。ラッキー宝箱:剣道セット(アイテム2/3)。",
|
||||
"armorSpecialSummer2026HealerNotes": "このスーツを身につけてもいいですが、困ったことから逃げてはいけません。ツノメドリみたいに力強くタスクを乗り越えましょう。体質が<%= con %>上がります。2026年夏の限定装備。",
|
||||
"armorSpecialSummer2026MageNotes": "このスーツに滑り込んでもいいですが、困ったことから逃げてはいけません。サメみたいに輝きながら泳ぎ、タスクに立ち向かいましょう。知能が<%= int %>上がります。2026年夏の限定装備。",
|
||||
"weaponArmoireKendoShinaiNotes": "軽くてしなやかな素振り用の竹刀です。成長を目指しながら使ってください。力が<%= str %>上がります。ラッキー宝箱:剣道セット(アイテム3/3)。",
|
||||
"weaponArmoireKendoShinaiText": "剣道の竹刀",
|
||||
"armorSpecialSummer2026RogueNotes": "このスーツに身に包めてもいいですが、困ったことから逃げてはいけません。探検家みたいに嵐を召喚してタスクに挑みましょう。知覚が<%= per %>上がります。2026年夏の限定装備。",
|
||||
"armorSpecialSummer2026HealerText": "ツノメドリのスーツ",
|
||||
"armorSpecialSummer2026MageText": "イタチザメのスーツ",
|
||||
"armorSpecialSummer2026RogueText": "津波のスーツ",
|
||||
"weaponSpecialSummer2026MageText": "イタチザメの槍",
|
||||
"weaponSpecialSummer2026MageNotes": "この鋭い諸刃の剣は海洋風コーデにぴったりです。知能が<%= int %>、知覚が<%= per %>上がります。2026年夏の限定装備。",
|
||||
"weaponSpecialSummer2026WarriorNotes": "この豪華できらびやかな武器は沼風コーデにぴったりです。力が<%= str %>上がります。2026年夏の限定装備。",
|
||||
"weaponArmoireBrightRainbowKiteText": "虹色の凧",
|
||||
"weaponArmoirePastelRainbowKiteText": "パステルカラーの凧"
|
||||
}
|
||||
|
||||
@@ -250,45 +250,49 @@
|
||||
"anniversaryLimitations": "これは1月30日8:00 AM ET (13:00 UTC)から2月8日11:59 PM ET (04:59 UTC)までの期間限定イベントです。期間中、限定版「喜びに満ちたグリファトリス」と10個の「魔法のたまごがえしの薬」を購入することができます。4つで無料のギフトに記載されているその他のギフトは、ギフトが送られる日の前30日間にアクティブだったすべてのアカウントに自動的に配信されます。ギフトが送られた後に作成されたアカウントは、ギフトを受け取ることができません。",
|
||||
"plentyOfPotionsText": "コミュニティで人気の魔法のたまごがえしの薬10種を復活させます。コレクションを充実させるために、市場に行きましょう!",
|
||||
"fourForFreeText": "パーティーを盛り上げるために、パーティー・ローブ、ジェム20個、バースデー限定背景、さらにケープ、ショルダーガード、アイマスクのアイテム・セットをプレゼントします。",
|
||||
"winter2024NarwhalWizardMageSet": "イッカククジラの魔術使いセット (魔道士)",
|
||||
"winter2024NarwhalWizardMageSet": "イッカククジラの魔術使い(魔道士)",
|
||||
"winter2024SnowyOwlRogueSet": "シロフクロウ (盗賊)",
|
||||
"winter2024FrozenHealerSet": "氷漬け (治療師)",
|
||||
"winter2024PeppermintBarkWarriorSet": "ペパーミントの樹皮セット (戦士)",
|
||||
"spring2024FluoriteWarriorSet": "ホタル石のセット(戦士)",
|
||||
"spring2024HibiscusMageSet": "ハイビスカスのセット(魔道士)",
|
||||
"spring2024BluebirdHealerSet": "青い鳥のセット(治療師)",
|
||||
"spring2024MeltingSnowRogueSet": "雪解けのセット(盗賊)",
|
||||
"summer2024SeaSnailHealerSet": "巻貝のセット(治療師)",
|
||||
"summer2024NudibranchRogueSet": "ウミウシのセット(盗賊)",
|
||||
"summer2024WhaleSharkWarriorSet": "ジンベイザメのセット(戦士)",
|
||||
"summer2024SeaAnemoneMageSet": "イソギンチャクのセット(魔道士)",
|
||||
"fall2024FieryImpWarriorSet": "ファイアインプセット(戦士)",
|
||||
"fall2024UnderworldSorcerorMageSet": "黄泉の国の魔術師セット(魔道士)",
|
||||
"winter2024PeppermintBarkWarriorSet": "ペパーミントの樹皮(戦士)",
|
||||
"spring2024FluoriteWarriorSet": "ホタル石(戦士)",
|
||||
"spring2024HibiscusMageSet": "ハイビスカス(魔道士)",
|
||||
"spring2024BluebirdHealerSet": "青い鳥(治療師)",
|
||||
"spring2024MeltingSnowRogueSet": "雪解け(盗賊)",
|
||||
"summer2024SeaSnailHealerSet": "巻貝(治療師)",
|
||||
"summer2024NudibranchRogueSet": "ウミウシ(盗賊)",
|
||||
"summer2024WhaleSharkWarriorSet": "ジンベイザメ(戦士)",
|
||||
"summer2024SeaAnemoneMageSet": "イソギンチャク(魔道士)",
|
||||
"fall2024FieryImpWarriorSet": "ファイアインプ(戦士)",
|
||||
"fall2024UnderworldSorcerorMageSet": "黄泉の国の魔術師(魔道士)",
|
||||
"gemSaleLimitationsText": "このプロモーションは期間限定イベント中のみ有効です。このイベントは<%= eventStartMonth %><%= eventStartOrdinal %> <%= eventStartTime %> <%= timeZone %>に始まり、<%= eventEndMonth %><%= eventEndOrdinal %><%= eventEndTime %> <%= timeZone %>に終了します。ジェムを自分で購入した方のみ対象です。",
|
||||
"winter2025MooseWarriorSet": "ヘラジカセット(戦士)",
|
||||
"winter2025AuroraMageSet": "オーロラセット(魔道士)",
|
||||
"winter2025StringLightsHealerSet": "ストリングライトセット(治療師)",
|
||||
"winter2025SnowRogueSet": "雪セット(盗賊)",
|
||||
"fall2024SpaceInvaderHealerSet": "スペースインベーダーセット(治療師)",
|
||||
"fall2024BlackCatRogueSet": "黒ネコセット(盗賊)",
|
||||
"spring2025CrystalPointRogueSet": "水晶ポイントセット(盗賊)",
|
||||
"spring2025PlumeriaHealerSet": "プルメリアセット(治療師)",
|
||||
"spring2025MantisMageSet": "カマキリセット(魔道士)",
|
||||
"spring2025SunshineWarriorSet": "陽光セット(戦士)",
|
||||
"summer2025ScallopWarriorSet": "ホタテ貝セット(戦士)",
|
||||
"summer2025SquidRogueSet": "イカセット(盗賊)",
|
||||
"summer2025SeaAngelHealerSet": "クリオネセット(治療師)",
|
||||
"summer2025FairyWrasseMageSet": "イトヒキベラセット(魔道士)",
|
||||
"fall2025SasquatchWarriorSet": "サスクワッチセット(戦士)",
|
||||
"fall2025SkeletonRogueSet": "ガイコツセット(盗賊)",
|
||||
"fall2025KoboldHealerSet": "コボルドセット(治療師)",
|
||||
"fall2025MaskedGhostMageSet": "マスクお化けセット(魔道士)",
|
||||
"winter2026MidwinterCandleMageSet": "真冬のろうそくセット(魔道士)",
|
||||
"winter2026SkiRogueSet": "スキーセット(盗賊)",
|
||||
"winter2026PolarBearHealerSet": "ホッキョクグマセット(治療師)",
|
||||
"winter2026RimeReaperWarriorSet": "霜の死神セット(戦士)",
|
||||
"spring2026SnowdropHealerSet": "スノードロップセット(治療師)",
|
||||
"spring2026MaypoleMageSet": "メイポールセット(魔道士)",
|
||||
"spring2026FrogWarriorSet": "カエルセット(戦士)",
|
||||
"spring2026BranchRogueSet": "春の枝セット(盗賊)"
|
||||
"winter2025MooseWarriorSet": "ヘラジカ(戦士)",
|
||||
"winter2025AuroraMageSet": "オーロラ(魔道士)",
|
||||
"winter2025StringLightsHealerSet": "ストリングライト(治療師)",
|
||||
"winter2025SnowRogueSet": "雪(盗賊)",
|
||||
"fall2024SpaceInvaderHealerSet": "スペースインベーダー(治療師)",
|
||||
"fall2024BlackCatRogueSet": "黒ネコ(盗賊)",
|
||||
"spring2025CrystalPointRogueSet": "水晶ポイント(盗賊)",
|
||||
"spring2025PlumeriaHealerSet": "プルメリア(治療師)",
|
||||
"spring2025MantisMageSet": "カマキリ(魔道士)",
|
||||
"spring2025SunshineWarriorSet": "陽光(戦士)",
|
||||
"summer2025ScallopWarriorSet": "ホタテ貝(戦士)",
|
||||
"summer2025SquidRogueSet": "イカ(盗賊)",
|
||||
"summer2025SeaAngelHealerSet": "クリオネ(治療師)",
|
||||
"summer2025FairyWrasseMageSet": "イトヒキベラ(魔道士)",
|
||||
"fall2025SasquatchWarriorSet": "サスクワッチ(戦士)",
|
||||
"fall2025SkeletonRogueSet": "ガイコツ(盗賊)",
|
||||
"fall2025KoboldHealerSet": "コボルド(治療師)",
|
||||
"fall2025MaskedGhostMageSet": "マスクお化け(魔道士)",
|
||||
"winter2026MidwinterCandleMageSet": "真冬のろうそく(魔道士)",
|
||||
"winter2026SkiRogueSet": "スキー(盗賊)",
|
||||
"winter2026PolarBearHealerSet": "ホッキョクグマ(治療師)",
|
||||
"winter2026RimeReaperWarriorSet": "霜の死神(戦士)",
|
||||
"spring2026SnowdropHealerSet": "スノードロップ(治療師)",
|
||||
"spring2026MaypoleMageSet": "メイポール(魔道士)",
|
||||
"spring2026FrogWarriorSet": "カエル(戦士)",
|
||||
"spring2026BranchRogueSet": "春の枝(盗賊)",
|
||||
"summer2026AlligatorWarriorSet": "アリゲーター(戦士)",
|
||||
"summer2026PuffinHealerSet": "ツノメドリ(治療師)",
|
||||
"summer2026TigerSharkMageSet": "イタチザメ(魔道士)",
|
||||
"summer2026TsunamiRogueSet": "津波(盗賊)"
|
||||
}
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
"generate": "生成する",
|
||||
"getCodes": "コードを取得する",
|
||||
"webhooks": "Webhook",
|
||||
"webhooksInfo": "Webhookは、タスクの採点や更新、グループ内のメッセージ送信など、特定のアクションが実行されたときに通知を受け取る方法を開発者に提供します。Webhookを作成することで、Habiticaの変更を監視し、その変更に対応するアプリを構築することができます。<br><br>Webhookに関する追加情報や例については、<a target=\"_blank\" href=\"https://habitica.com/apidoc/#api-Webhook-AddWebhook\">API Docs</a>をご覧ください。",
|
||||
"webhooksInfo": "Webhookは、タスクの採点や更新、グループ内のメッセージ送信など、特定のアクションが実行されたときに通知を受け取る方法を開発者に提供します。Webhookを作成することで、Habiticaの変更を監視し、その変更に対応するアプリを構築することができます。<br><br>Webhookに関する追加情報や例については、<a target=\"_blank\" href=\"https://apidoc.habitica.com/#api-Webhook-AddWebhook\">API Docs</a>をご覧ください。",
|
||||
"enabled": "有効",
|
||||
"webhookURL": "webフック URL",
|
||||
"invalidUrl": "無効な Url",
|
||||
@@ -183,7 +183,7 @@
|
||||
"transaction_gift_receive": "<b>受け取った</b>相手",
|
||||
"transaction_create_challenge": "<b>作成した</b>チャレンジ",
|
||||
"transaction_create_guild": "<b>作成した</b>ギルド",
|
||||
"transaction_rebirth": "転生のオーブの使用",
|
||||
"transaction_rebirth": "転生のオーブを使いました",
|
||||
"transaction_spend": "<b>使用</b>:",
|
||||
"transaction_reroll": "防御の薬の使用",
|
||||
"addPasswordAuth": "パスワードを追加",
|
||||
|
||||
@@ -277,5 +277,7 @@
|
||||
"subscriptionBillingFYIShort": "有料プランは現在加入している期間が終了する24時間前までに解約しない限り、自動的に更新されます。あなたのアカウントは更新日の24時間以内に、最初にお支払った料金で、請求されます。",
|
||||
"mysterySet202603": "藤の魔術師セット",
|
||||
"mysterySet202604": "大胆な宇宙飛行士セット",
|
||||
"mysterySet202605": "夜の帳セット"
|
||||
"mysterySet202605": "夜の帳セット",
|
||||
"mysterySet202606": "ホリデーハンモックセット",
|
||||
"mysterySet202607": "海の魔術師セット"
|
||||
}
|
||||
|
||||
@@ -143,5 +143,14 @@
|
||||
"deleteXTasks": "<%= count %>つのタスクを削除する",
|
||||
"confirmDeleteTasks": "タスクを削除したいですか?",
|
||||
"sureDeleteType": "本当にこのタスクを削除してもいいですか?",
|
||||
"brokenChallengeTaskCount": "これは終了したチャレンジに関する<%= count %>つのタスクのうちの一つです。"
|
||||
"brokenChallengeTaskCount": "これは終了したチャレンジに関する<%= count %>つのタスクのうちの一つです。",
|
||||
"everyDay": "毎日",
|
||||
"everyXDays": "<%= count %>日ごと",
|
||||
"everyWeek": "毎週",
|
||||
"everyXWeeks": "<%= count %>週間ごと",
|
||||
"everyMonth": "毎月",
|
||||
"everyXMonths": "<%= count %>ヶ月ごと",
|
||||
"everyYear": "毎年",
|
||||
"everyXYears": "<%= count %>年ごと",
|
||||
"fifthWeekWarning": "このタスクは<%= day %>が少ない月には表示されません"
|
||||
}
|
||||
|
||||
@@ -941,5 +941,6 @@
|
||||
"backgroundElvenCitadelText": "요정의 요새",
|
||||
"backgroundElvenCitadelNotes": "요정의 요새로 이어지는 아름다운 길을 따라 여행을 시작하세요.",
|
||||
"backgroundOnAStrangePlanetText": "낯선 행성에서",
|
||||
"backgroundOnAStrangePlanetNotes": "미지의 낯선 행성, 해비티카 최초의 탐험가가 되어보세요."
|
||||
"backgroundOnAStrangePlanetNotes": "미지의 낯선 행성, 해비티카 최초의 탐험가가 되어보세요.",
|
||||
"backgrounds062026": "SET 145: 2026년 6월 출시"
|
||||
}
|
||||
|
||||
@@ -1808,5 +1808,8 @@
|
||||
"weaponSpecialFall2020MageText": "3개의 비전",
|
||||
"weaponSpecialFall2019RogueNotes": "지휘를 하든 아리아를 부르든, 이 유용한 장치가 당신의 손을 자유롭게 해 극적인 제스처를 취할 수 있게 해줍니다! 체력이 <%= str %>만큼 증가합니다. 2019년 가을 한정판 장비.",
|
||||
"weaponSpecialFall2020HealerText": "누에고치 지팡이",
|
||||
"weaponSpecialFall2020MageNotes": "무언가 마법사의 시야에서 벗어나더라도, 이 지팡이 위의 빛나는 수정들이 당신이 놓친 것을 비춰줄 것입니다. 지능이 <%=int%> 증가하고 지각이 <%=per%> 증가합니다. 2020년 가을 한정 장비."
|
||||
"weaponSpecialFall2020MageNotes": "무언가 마법사의 시야에서 벗어나더라도, 이 지팡이 위의 빛나는 수정들이 당신이 놓친 것을 비춰줄 것입니다. 지능이 <%=int%> 증가하고 지각이 <%=per%> 증가합니다. 2020년 가을 한정 장비.",
|
||||
"weaponSpecialSpring2021WarriorText": "태양의 망치",
|
||||
"weaponSpecialSpring2021HealerText": "버드나무 가지",
|
||||
"weaponSpecialSpring2021MageText": "백조 깃털"
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
"commGuideList11E": "Aanpassingen van problematische content door de beheerder",
|
||||
"commGuideHeadingRestoration": "Herstel",
|
||||
"commGuidePara061": "Habitica is gewijd aan zelfverbetering, en we geloven dan ook in het geven van een tweede kans. <strong>Als je een overtreding begaat en een gevolg opgelegd krijgt, zie dat dan als een kans om je acties te evalueren en ernaar te streven een beter gemeenschapslid te zijn</strong>.",
|
||||
"commGuidePara062": "De aankondiging, het bericht, en/of de e-mail die je ontvangt met de consequenties van je acties is een goede bron van informatie. Werk mee met iedere restrictie die van kracht is en probeer te voldoen aan de eisen om de sancties op te laten heffen. Als je wenst vragen te stellen omtrent je overtreding of consequenties, je te verontschuldigen, of pleiten voor een herstelling, neem contact met ons op via mail: admin@habitica.com met je gebruikersID of @gebruikersnaam. Het is jouw verantwoordelijkheid om contact op te nemen.",
|
||||
"commGuidePara062": "<strong>Als je wenst vragen te stellen omtrent je overtreding of consequenties, je te verontschuldigen, of pleiten voor een herstelling, neem contact met ons op via mail: <a href='mailto:admin@habitica.com' target='_blank'> admin@habitica.com</a> met je gebruikersID of @gebruikersnaam<strong>. Het is <strong>jouw</strong> verantwoordelijkheid om contact op te nemen.",
|
||||
"commGuidePara063": "Als je de gevolgen niet begrijpt, niet begrijpt wat je overtreding was of als je nog andere vragen hebt in betrekking tot de zaak, vraag dan een beheerder om hulp zodat je in de toekomst niet weer de fout in gaat. Als je het niet eens bent met een bepaalde beslissing, dan kan je contact opnemen met de beheerder om erover te discusseren via <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>.",
|
||||
"commGuideHeadingMeet": "Maak kennis met de Beheerders",
|
||||
"commGuidePara007": "De Habitica Beheerders houden de app en de webpagina's lopende en kunnen ageren als gespreksmoderators. Ze hebben paarse naamlabels met kroontjes erop. Hun titel is \"Heroisch\".",
|
||||
|
||||
@@ -1460,7 +1460,7 @@
|
||||
"shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).",
|
||||
"shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield",
|
||||
"shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).",
|
||||
"shieldArmoireUnfinishedTomeText": "Onafgewerkt boekdeel",
|
||||
"shieldArmoireUnfinishedTomeText": "Onafgewerkt Boekdeel",
|
||||
"shieldArmoireUnfinishedTomeNotes": "You simply can't procrastinate when you're holding this! The binding needs to be finished so people can read the book! Increases Intelligence by <%= int %>. Enchanted Armoire: Bookbinder Set (Item 4 of 4).",
|
||||
"shieldArmoireSoftBluePillowText": "Zacht blauw kussen",
|
||||
"shieldArmoireSoftBluePillowNotes": "The sensible warrior packs a pillow for any expedition. Shield yourself from sharp tasks... even while you nap. Increases Constitution by <%= con %>. Enchanted Armoire: Blue Loungewear Set (Item 3 of 3).",
|
||||
@@ -2682,5 +2682,14 @@
|
||||
"headArmoireMedievalLaundryHatText": "Wasserij Hoed",
|
||||
"shieldArmoireMedievalLaundryText": "Vuile Wasgoed",
|
||||
"shieldArmoireBasketballText": "Basketbal",
|
||||
"shieldArmoireDustpanText": "Stofblik"
|
||||
"shieldArmoireDustpanText": "Stofblik",
|
||||
"headArmoireHattersTopHatText": "Hoge Hoed van de Hoedenmaakster",
|
||||
"headMystery202606Text": "Feestdag Hoed",
|
||||
"headSpecialSummer2022RogueText": "Krabhelm",
|
||||
"shieldSpecialWinter2023WarriorText": "Oesterschild",
|
||||
"bodyArmoireKarateYellowBeltText": "Gele Riem",
|
||||
"headSpecialFall2022RogueText": "Kappa Masker",
|
||||
"bodyArmoireKarateWhiteBeltText": "Witte Riem",
|
||||
"armorSpecialSummer2023WarriorText": "Goudvispantser",
|
||||
"shieldArmoireSpanishGuitarText": "Spaanse Gitaar"
|
||||
}
|
||||
|
||||
@@ -254,7 +254,7 @@
|
||||
"removeMember": "Lid verwijderen",
|
||||
"sendMessage": "Bericht verzenden",
|
||||
"promoteToLeader": "Draag de leiding over",
|
||||
"inviteFriendsParty": "Nodig een andere speler uit voor jouw Gezelschap<br/> en ontvang een exclusieve Basi-List Queesterol!",
|
||||
"inviteFriendsParty": "Nodig een andere speler uit voor jouw Gezelschap<br/> en ontvang een exclusieve Basi-List Queesterol.",
|
||||
"createParty": "Groep aanmaken",
|
||||
"inviteMembersNow": "Wil je nu leden uitnodigen?",
|
||||
"playInPartyTitle": "Speel Habitica met een gezelschap!",
|
||||
|
||||
@@ -156,7 +156,7 @@
|
||||
"spring2019RobinHealerSet": "Roodborstje (Genezer)",
|
||||
"spring2019AmberMageSet": "Amber (Magiër)",
|
||||
"spring2019OrchidWarriorSet": "Orchidee (Krijger)",
|
||||
"g1g1Limitations": "Dit is een in tijd begrensde actie die begint op 16 december om 14:00, en eindigt op 7 januari om 02:00. Het aanbod is alleen dan geldig, wanneer je aan een andere Habiticaan schenkt. Wanneer jij, of de ontvanger, al over een abonnement beschikt, zullen de geschonken abonnementsmaanden hieraan toegevoegd worden, en alleen dan gebruikt worden als het huidige abonnement afloopt, of wordt opgezegd.",
|
||||
"g1g1Limitations": "Dit is een in tijd begrensde actie die begint op <%= promoStartMonth %> <%= promoStartOrdinal %> om <%= promoStartTime %>, en eindigt op <%= promoEndMonth %> <%= promoEndOrdinal %> om <%= promoEndTime %>. Het aanbod is alleen dan geldig, wanneer je aan een andere Habiticaan schenkt. Wanneer jij, of de ontvanger, al over een abonnement beschikt, zullen de geschonken abonnementsmaanden hieraan toegevoegd worden, en alleen dan gebruikt worden als het huidige abonnement afloopt, of wordt opgezegd.",
|
||||
"limitations": "Beperkingen",
|
||||
"g1g1HowItWorks": "Type de gebruikersnaam in van degene aan wie je wilt geven. Kies dan de duur van het abonnement dat je wilt geven, en rondt af. Jouw account krijgt automatisch hetzelfde abonnement cadeau.",
|
||||
"howItWorks": "Zo werkt het",
|
||||
@@ -233,19 +233,24 @@
|
||||
"summer2024SeaAnemoneMageSet": "Zeeanemonen Set (Magiër)",
|
||||
"summer2024SeaSnailHealerSet": "Zeeslakken Set (Genezer)",
|
||||
"summer2024NudibranchRogueSet": "Zeenaaktslakken Set (Schurk)",
|
||||
"summer2025ScallopWarriorSet": "Sint-Jacobsschelp Krijger Set",
|
||||
"summer2025SquidRogueSet": "Inktvis Schurken Set",
|
||||
"summer2025SeaAngelHealerSet": "Zee-egel Genezer Set",
|
||||
"summer2025ScallopWarriorSet": "Sint-Jacobsschelp Set (Krijger)",
|
||||
"summer2025SquidRogueSet": "Inktvis Verzameling (Schurken)",
|
||||
"summer2025SeaAngelHealerSet": "Zee-egel Verzameling (Genezer)",
|
||||
"winter2025MooseWarriorSet": "Elandkrijger Set (Krijger)",
|
||||
"winter2025AuroraMageSet": "Aurora Verzameling (Magiër)",
|
||||
"winter2025StringLightsHealerSet": "Lichtsnoer Set (Genezer)",
|
||||
"winter2025SnowRogueSet": "Sneeuw Verzameling (Schurk)",
|
||||
"spring2025SunshineWarriorSet": "Zonnenschijnkrijgers Set",
|
||||
"spring2025SunshineWarriorSet": "Zonnenschijn Verzameling (Krijger)",
|
||||
"spring2025CrystalPointRogueSet": "Kristalpunt Set (Schurk)",
|
||||
"spring2025PlumeriaHealerSet": "Plumeria Verzameling (Genezer)",
|
||||
"spring2025MantisMageSet": "Bidsprinkhaan Magiër Set",
|
||||
"spring2025MantisMageSet": "Bidsprinkhaan Set (Magiër)",
|
||||
"fall2024FieryImpWarriorSet": "Vurige Imp Set (Krijger)",
|
||||
"fall2024UnderworldSorcerorMageSet": "Onderwereld Heksenmeester Set (Magiër)",
|
||||
"fall2024SpaceInvaderHealerSet": "Space Invader Set (Genezer)",
|
||||
"fall2024BlackCatRogueSet": "Zwarte Kat Set (Schurk)"
|
||||
"fall2024BlackCatRogueSet": "Zwarte Kat Set (Schurk)",
|
||||
"limitedEdition": "Beperkte Oplage",
|
||||
"dayOne": "Dag 1",
|
||||
"dayFive": "Dag 5",
|
||||
"dayTen": "Dag 10",
|
||||
"twentyGems": "20 Edelstenen"
|
||||
}
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
"skillsTitle": "<%= classStr %> Vaardigheden",
|
||||
"toDo": "To Do",
|
||||
"tourStatsPage": "Dit is jouw statistiekenpagina! Je kunt prestaties verdienen door deze taken te volbrengen.",
|
||||
"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!",
|
||||
"tourTavernPage": "",
|
||||
"tourPartyPage": "Jouw gezelschap helpt je verantwoordelijk te blijven. Nodig je vrienden uit en speel een queeste-perkamentrol vrij!",
|
||||
"tourChallengesPage": "Uitdagingen zijn takenlijsten met een thema, aangemaakt door andere gebruikers! Als je meedoet aan een uitdaging worden de bijbehorende taken toegevoegd aan je account. Wedijver met andere gebruikers om edelstenen te winnen!",
|
||||
"tourMarketPage": "Iedere keer als je een taak voltooid, heb je een willekeurige kans om een Ei, Uitbroedtoverdrank of een stuk Voedsel voor Dieren te vinden. Je kunt deze voorwerpen ook hier kopen.",
|
||||
|
||||
@@ -102,7 +102,7 @@
|
||||
"questGoldenknight2Text": "De Gouden Ridder, deel 2: Gouden Ridder",
|
||||
"questGoldenknight2Notes": "Bewapend met tientallen getuigenverklaringen van Habiticanen ga je eindelijk de confrontatie aan met de Gouden Ridder. Je begint één voor één de klachten van de Habiticanen op te noemen. \"En @Pfeffernusse vindt dat je constante opschepperij-\" De ridder heft haar hand om je tot stilte te manen en hoont, \"Kom nou, deze mensen zijn gewoon jaloers op mijn succes. Ze zouden minder moeten zeuren en gewoon net zo hard moeten werken als ik! Ik zal je laten zien hoeveel macht je kunt verzamelen door zo ijverig te zijn als ik!\" Ze heft haar morgenster en bereidt zich voor om je aan te vallen!",
|
||||
"questGoldenknight2Boss": "Gouden Ridder",
|
||||
"questGoldenknight2Completion": "The Golden Knight lowers her Morningstar in consternation. “I apologize 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 defense… but perhaps I can still apologize?”",
|
||||
"questGoldenknight2Completion": "",
|
||||
"questGoldenknight2DropGoldenknight3Quest": "De Gouden Ridder, deel 3: The IJzeren Ridder (Rol)",
|
||||
"questGoldenknight3Text": "De Gouden Ridder, deel 3: De IJzeren Ridder",
|
||||
"questGoldenknight3Notes": "@Jon Arinbjorn trekt je aandacht met een luide schreeuw. In de nasleep van je strijd is er een nieuw figuur verschenen. Een ridder bekleed met gebrandschilderd zwart ijzer komt met getrokken zwaard langzaam op je af. \"Vader, nee!\" schreeuwt de Gouden Ridder naar het figuur, maar de ridder weigert te stoppen. Ze keert zich naar jou en zegt, \"Het spijt me. Ik ben een idioot geweest, met zo'n grote ego dat ik niet zag hoe wreed ik ben geweest. Maar mijn vader is wreder dan ik ooit zou kunnen zijn. Als hij niet wordt gestopt, zal hij ons allemaal vernietigen. Hier, gebruik mijn morgenster en stop de IJzeren Ridder!\"",
|
||||
@@ -143,20 +143,20 @@
|
||||
"questAtom1Notes": "Je reist naar de kust van het Afwasmeer voor wat welverdiende rust en ontspanning... Maar het meer is vervuild met afwas! Hoe heeft dit kunnen gebeuren? Tja, je kunt het meer gewoonweg niet in deze staat achterlaten. Er zit maar één ding op: de vaat doen en je vakantie redden! Maar eerst op zoek naar zeep om deze rotzooi schoon te kunnen maken. Heel veel zeep...",
|
||||
"questAtom1CollectSoapBars": "Stukken zeep",
|
||||
"questAtom1Drop": "Het Monster van SnackStress (perkamentrol)",
|
||||
"questAtom1Completion": "After some thorough scrubbing, all the dishes are stacked safely on the shore! You stand back and proudly survey your hard work.",
|
||||
"questAtom1Completion": "",
|
||||
"questAtom2Text": "Aanval van het Alledaagse, deel 2: Het Monster van SnackStress",
|
||||
"questAtom2Notes": "Zo, het ziet er hier al een stuk beter uit nu de afwas gedaan is. Misschien kun je eindelijk eens iets leuks gaan doen. Hé, er lijkt een pizzadoos in het meer te drijven. Ach ja, één extra ding opruimen kan nog wel. Maar helaas is het niet zomaar een pizzadoos! Met een plotselinge golf richt de doos zich op uit het water - het blijkt het hoofd van een monster te zijn. Dat kan niet! Het befaamde monster van SnackStress?! Men zegt dat het al sinds voorhistorische tijden bestaat, verstopt in het meer: een wezen voortgekomen uit afval en etensresten van Habiticanen van lang geleden. Bah!",
|
||||
"questAtom2Boss": "Het Monster van SnackStress",
|
||||
"questAtom2Drop": "De Wasbezweerder (perkamentrol)",
|
||||
"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": "",
|
||||
"questAtom3Text": "Aanval van het Alledaagse, deel 3: De Wasbezweerder",
|
||||
"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!\"",
|
||||
"questAtom3Notes": "",
|
||||
"questAtom3Completion": "De valse Wasbezweerder is verslagen! Schone was dwarrelt in stapels neer. Het ziet er hier een stuk beter uit. Terwijl je door de versgestreken harnassen heen waadt, vang je een glimp op van metaal, en je blik wordt getrokken door een glimmende helm. De oorspronkelijke eigenaar van deze helm is dan misschien onbekend, maar wanneer je de helm opzet voel je de warme aanwezigheid van een gulle persoonlijkheid. Jammer dat er geen naam in staat.",
|
||||
"questAtom3Boss": "De Wasbezweerder",
|
||||
"questAtom3DropPotion": "Basis uitbroeddrank",
|
||||
"questOwlText": "De Nachtbraker",
|
||||
"questOwlNotes": "De herberghaard brandt elke nacht<br>Tot wild gespuis het duister bracht<br>Hoe kunnen wij nou 's nachts dan werken?<br>@Twitching roept: \"Ik Zoek vechters! Hele sterke!<br>Deze Nachtuil braakt de nacht<br>Dus vecht met haast en breek zijn macht!<br>Drijf hem weg nu, doe het vlug,<br>En geef ons onze gloed terug!\"",
|
||||
"questOwlCompletion": "De nachtuil vlucht bij 't ochtendgloren<br>Maar jij, jij kunt een gaap niet smoren.<br>Als nachtbraker weet jij hoe fijn<br>Een nacht hard doorwerken kan zijn,<br>Maar nu ga je toch echt naar bed<br>En vindt drie eieren, wat een pret!<br>Ze zullen zachtjes naar je happen<br>als jij een uiltje moet gaan knappen.",
|
||||
"questOwlCompletion": "De nachtuil vlucht bij 't ochtendgloren<br>Maar jij kunt een gaap niet smoren.<br>Als nachtbraker weet jij hoe fijn<br>Een nacht hard doorwerken kan zijn,<br>Maar nu ga je toch echt naar bed<br>En vindt drie eieren, wat een pret!<br>Ze zullen zachtjes naar je happen<br>als jij een uiltje moet gaan knappen.",
|
||||
"questOwlBoss": "De Nachtbraker",
|
||||
"questOwlDropOwlEgg": "Uil (ei)",
|
||||
"questOwlUnlockText": "Ontgrendelt het kopen van Uileneieren op de Markt",
|
||||
@@ -295,7 +295,7 @@
|
||||
"questUnicornDropUnicornEgg": "Eenhoorn (ei)",
|
||||
"questUnicornUnlockText": "Ontgrendelt het kopen van Eenhoorneieren op de Markt",
|
||||
"questSabretoothText": "De Sabeltandkat",
|
||||
"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!\"",
|
||||
"questSabretoothNotes": "",
|
||||
"questSabretoothCompletion": "Na een lang en vermoeiend gevecht, worstel je de Zombie Sabeltandkat naar de grond. Als je het eindelijk kan benaderen, merk je een naar gat op in een van zijn sabel tanden. Na het realiseren van de ware oorzaak van de woede van de kat, lukt het je om het gat te laten vullen door @Fandekasp, en adviseer je iedereen om het monster in de toekomst geen zoetigheid meer te voeren. De Sabelkat bloeit op, en in dankbaarheid sturen zijn temmers jou een royale beloning – een partij sabeltand-eieren!",
|
||||
"questSabretoothBoss": "Zombie Sabeltandkat",
|
||||
"questSabretoothDropSabretoothEgg": "Sabeltand (Ei)",
|
||||
@@ -343,7 +343,7 @@
|
||||
"questAxolotlUnlockText": "Ontgrendelt het kopen van Molsalamandereieren op de Markt",
|
||||
"questAxolotlRageTitle": "Axolotl-regeneratie",
|
||||
"questAxolotlRageDescription": "Deze balk wordt gevuld wanneer je je dagelijkse taken niet afvinkt. Wanneer hij vol is, zal de Magische Axolotl voor 30% van zijn resterende gezondheid genezen!",
|
||||
"questAxolotlRageEffect": "`Magische Axolotl gebruikt AXOLOTL REGENERATIE!`\n\n`Een gordijn van kleurijke bubbels verduistert het monster voor een ogenblik en wanneer het opheldert, zijn enkele van zijn wonden verdwenen!`",
|
||||
"questAxolotlRageEffect": "Magische Axolotl gebruikt AXOLOTL REGENERATIE!\n\nEen gordijn van kleurijke bubbels verduistert het monster voor een ogenblik en wanneer het opheldert, zijn enkele van zijn wonden verdwenen!",
|
||||
"questTurtleText": "Begeleid de schildpad",
|
||||
"questTurtleNotes": "Help! Deze grote zeeschildpad kan de weg naar haar neststrand niet vinden. Ze gaat er ieder jaar naar toe om haar eieren te leggen, maar dit jaar is Onvoltooibaai gevuld met giftig Taakdrijfhout gemaakt van rode Dagelijkse Taken en niet-afgevinkte To Do's. \"Ze slaat in paniek om zich heen!\" zegt @JessicaChase.<br><br>@UncommonCriminal knikt. \"Dat komt doordat haar richtingsgevoel wazig en verward is.\"<br><br>@Scarabsi grijpt je arm. \"Kan jij helpen om het Taakdrijfhout dat haar pad blokkeert te verwijderen? Het kan gevaarlijk zijn, maar we moeten haar helpen!\"",
|
||||
"questTurtleCompletion": "Je moedige werk heeft het water opgehelderd voor onze zeeschildpad om haar strand te vinden. Jij, @Bambin en @JaizakAripaik kijken toe terwijl ze haar kroost van eieren diep in het zand begraaft, zodat ze kunnen groeien en uitkomen tot honderden kleine zeeschildpadjes. Altijd als de dame, geeft ze je elk drie eieren en vraagt om ze te voederen en ervoor te zorgen zodat ze op een dag zelf grote zeeschildpadden worden.",
|
||||
@@ -357,7 +357,7 @@
|
||||
"questArmadilloDropArmadilloEgg": "Gordeldier (Ei)",
|
||||
"questArmadilloUnlockText": "Ontgrendelt het kopen van Gordeldiereieren op de Markt",
|
||||
"questCowText": "De Moetante Koe",
|
||||
"questCowNotes": "It’s been a long, hot day at Sparring Farms, and there is nothing more you want than a long sip of water and some sleep. You're standing there daydreaming when @Soloana suddenly screams, \"Everyone run! The prize cow has mootated!\"<br><br>@eevachu gulps. \"It must be our bad habits that infected it.\"<br><br>\"Quick!\" @Feralem Tau says. \"Let’s do something before the udder cows mootate, too.\"<br><br>You’ve herd enough. No more daydreaming -- it's time to get those bad habits under control!",
|
||||
"questCowNotes": "",
|
||||
"questCowCompletion": "Je melkt je goede gewoontes voor wat ze waard zijn tot de koe haar oorspronkelijke vorm aanneemt. De koe kijkt naar je met haar mooie bruine ogen en duwt drie eieren naar jullie .<br><br>@fuzzytrees lacht en geeft je de eieren, \"Misschien is het nog steeds gemoeteerd als er baby koetjes in deze eieren zitten. Maar ik vertrouw erop dat jij je aan je goede gewoontes houdt wanneer je ze opvoedt!\"",
|
||||
"questCowBoss": "Moetante Koe",
|
||||
"questCowDropCowEgg": "Koe (Ei)",
|
||||
@@ -375,7 +375,7 @@
|
||||
"questTaskwoodsTerror1Boss": "Vuurschedel Zwerm",
|
||||
"questTaskwoodsTerror1RageTitle": "De zwerm laten herrijzen",
|
||||
"questTaskwoodsTerror1RageDescription": "De zwerm laten herrijzen: deze balk vult zich als je je dagelijkse taken niet afvinkt. Wanneer de balk vol is, zal de vuurschedelzwerm 30% van zijn resterende gezondheid terugkrijgen!",
|
||||
"questTaskwoodsTerror1RageEffect": "`Vuur Schedel Zwerm gebruikt ZWERM HERBOREN!`\n\nAangemoedigd door hun overwinningen, dwarrelen er meer schedels rondom je in een vlaag van vlammen!",
|
||||
"questTaskwoodsTerror1RageEffect": "Vuur Schedel Zwerm gebruikt ZWERM HERBOREN!\n\nAangemoedigd door hun overwinningen, dwarrelen er meer schedels rondom je in een vlaag van vlammen!",
|
||||
"questTaskwoodsTerror1DropSkeletonPotion": "Skelet uitbroeddrank",
|
||||
"questTaskwoodsTerror1DropRedPotion": "Rode uitbroeddrank",
|
||||
"questTaskwoodsTerror1DropHeadgear": "Vuurbezweerderstulband (hoofdbescherming)",
|
||||
@@ -437,7 +437,7 @@
|
||||
"questStoikalmCalamity1Boss": "Schedelzwerm van aarde",
|
||||
"questStoikalmCalamity1RageTitle": "De zwerm laten herrijzen",
|
||||
"questStoikalmCalamity1RageDescription": "Zwerm herboren: De balk vult zich wanneer je niet al je Dagelijkse taken voltooid. Wanneer het vol is, herstelt de Schedelzwerm van aarde zich voor 30% van zijn resterende gezondheid!",
|
||||
"questStoikalmCalamity1RageEffect": "'Schedelzwerm van aarde gebruikt ZWERM HERBOREN!'\n\nMeer schedels breken los van de grond, hun tanden klapperend in de kou!",
|
||||
"questStoikalmCalamity1RageEffect": "Schedelzwerm van aarde gebruikt ZWERM HERBOREN!\n\nMeer schedels breken los van de grond, hun tanden klapperend in de kou!",
|
||||
"questStoikalmCalamity1DropSkeletonPotion": "Skeletachtige uitbroeddrank",
|
||||
"questStoikalmCalamity1DropDesertPotion": "Woestijnachtige uitbroeddrank",
|
||||
"questStoikalmCalamity1DropArmor": "Mammoetrijder Harnas",
|
||||
@@ -478,7 +478,7 @@
|
||||
"questMayhemMistiflying1Boss": "Luchtschedel zwerm",
|
||||
"questMayhemMistiflying1RageTitle": "De zwerm laten herrijzen",
|
||||
"questMayhemMistiflying1RageDescription": "De zwerm laten herrijzen: Deze balk vult zich wanneer je je dagelijkse taken niet voltooit. Wanneer hij vol is, geneest de luchtschedel zwerm zich voor 30% van zijn resterende gezondheid!",
|
||||
"questMayhemMistiflying1RageEffect": "'Luchtschedel zwerm gebruikt LAAT DE ZWERM HERRIJZEN!'\n\nAangemoedigd door hun overwinningen komen er meer schedels uit de wolken!",
|
||||
"questMayhemMistiflying1RageEffect": "Luchtschedel zwerm gebruikt LAAT DE ZWERM HERRIJZEN!\n\nAangemoedigd door hun overwinningen komen er meer schedels uit de wolken!",
|
||||
"questMayhemMistiflying1DropSkeletonPotion": "Skelet uitbroeddrank",
|
||||
"questMayhemMistiflying1DropWhitePotion": "Witte uitbroeddrank",
|
||||
"questMayhemMistiflying1DropArmor": "Doortrapte regenboog koeriersgewaad (Wapenuitrusting)",
|
||||
@@ -495,7 +495,7 @@
|
||||
"questMayhemMistiflying3Boss": "De windwerker",
|
||||
"questMayhemMistiflying3DropPinkCottonCandy": "Roze suikerspin (Voedsel)",
|
||||
"questMayhemMistiflying3DropShield": "Roguish Rainbow Message (Off-Hand Item)",
|
||||
"questMayhemMistiflying3DropWeapon": "Roguish Rainbow Message (Main-Hand Item)",
|
||||
"questMayhemMistiflying3DropWeapon": "Schurkachtige Regenboog Boodschap (Dominante-Hand Voorwerp)",
|
||||
"featheredFriendsText": "Gevederde vrienden queestebundel",
|
||||
"featheredFriendsNotes": "Bevat 'Help! Harpij!', 'De Nachtbraker,' en 'De Vogels van Uitstel.' Beschikbaar tot 31 mei.",
|
||||
"questNudibranchText": "Plaag van de Doe-het-nu Zeenaaktslakken",
|
||||
@@ -519,23 +519,23 @@
|
||||
"questGroupLostMasterclasser": "Mystery of the Masterclassers",
|
||||
"questUnlockLostMasterclasser": "Om deze queeste te ontgrendelen, dien je eerst de afsluitende queesten van deze queestelijnen: ‘De Droefheid der Dralen’ ‘Mayhem in Mistiflying’, ‘Stoikalmse Calamiteit’ en ‘Terreur in het Takenbos’ te voltooien.",
|
||||
"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…",
|
||||
"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.”",
|
||||
"questLostMasterclasser1Notes": "",
|
||||
"questLostMasterclasser1Completion": "",
|
||||
"questLostMasterclasser1CollectAncientTomes": "Ancient Tomes",
|
||||
"questLostMasterclasser1CollectForbiddenTomes": "Forbidden Tomes",
|
||||
"questLostMasterclasser1CollectForbiddenTomes": "Verboden Boekdelen",
|
||||
"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>",
|
||||
"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.”",
|
||||
"questLostMasterclasser2Notes": "",
|
||||
"questLostMasterclasser2Completion": "",
|
||||
"questLostMasterclasser2Boss": "The a'Voidant",
|
||||
"questLostMasterclasser2DropEyewear": "Etherisch masker (oogaccessoire)",
|
||||
"questLostMasterclasser3Text": "Het Mysterie van de Masterclassers, deel 3: Stad in het Zand",
|
||||
"questLostMasterclasser3Notes": "As night unfurls over the scorching sands of the Timewastes, your guides @AnnDeLune, @Kiwibot, and @Katy133 lead you forward. Some bleached pillars poke from the shadowed dunes, and as you approach them, a strange skittering sound echoes across the seemingly-abandoned expanse.<br><br>“Invisible creatures!” says the April Fool, clearly covetous. “Oho! Just imagine the possibilities. This must be the work of a truly stealthy Rogue.”<br><br>“A Rogue who could be watching us,” says Lady Glaciate, dismounting and raising her spear. “If there’s a head-on attack, try not to irritate our opponent. I don’t want a repeat of the volcano incident.”<br><br>He beams at her. “But it was one of your most resplendent rescues.”<br><br>To your surprise, Lady Glaciate turns very pink at the compliment. She hastily stomps away to examine the ruins.<br><br>“Looks like the wreck of an ancient city,” says @AnnDeLune. “I wonder what…”<br><br>Before she can finish her sentence, a portal roars open in the sky. Wasn’t that magic supposed to be nearly impossible here? The hoofbeats of the invisible animals thunder as they flee in panic, and you steady yourself against the onslaught of shrieking skulls that flood the skies.",
|
||||
"questLostMasterclasser3Completion": "The April Fool surprises the final skull with a spray of sand, and it blunders backwards into Lady Glaciate, who smashes it expertly. As you catch your breath and look up, you see a single flash of someone’s silhouette moving on the other side of the closing portal. Thinking quickly, you snatch up the amulet from the chest of previously-possessed items, and sure enough, it’s drawn towards the unseen person. Ignoring the shouts of alarm from Lady Glaciate and the April Fool, you leap through the portal just as it snaps shut, plummeting into an inky swath of nothingness.",
|
||||
"questLostMasterclasser3Notes": "",
|
||||
"questLostMasterclasser3Completion": "",
|
||||
"questLostMasterclasser3Boss": "Void Skull Swarm",
|
||||
"questLostMasterclasser3RageTitle": "Zwerm herrijzing",
|
||||
"questLostMasterclasser3RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Void Skull Swarm will heal 30% of its remaining health!",
|
||||
"questLostMasterclasser3RageEffect": "`Void Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls scream down from the heavens, bolstering the swarm!",
|
||||
"questLostMasterclasser3RageDescription": "",
|
||||
"questLostMasterclasser3RageEffect": "",
|
||||
"questLostMasterclasser3DropBodyAccessory": "Aether Amulet (Body Accessory)",
|
||||
"questLostMasterclasser3DropBasePotion": "Basis uitbroeddrank",
|
||||
"questLostMasterclasser3DropGoldenPotion": "Gouden uitbroeddrank",
|
||||
@@ -544,27 +544,27 @@
|
||||
"questLostMasterclasser3DropZombiePotion": "Zombie uitbroeddrank",
|
||||
"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.",
|
||||
"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>",
|
||||
"questLostMasterclasser4Completion": "",
|
||||
"questLostMasterclasser4Boss": "Anti'zinnya",
|
||||
"questLostMasterclasser4RageTitle": "Siphoning Void",
|
||||
"questLostMasterclasser4RageDescription": "Siphoning Void: This bar fills when you don't complete your Dailies. When it is full, Anti'zinnya will remove the party's Mana!",
|
||||
"questLostMasterclasser4RageEffect": "`Anti'zinnya uses SIPHONING VOID!` In a twisted inversion of the Ethereal Surge spell, you feel your magic drain away into the darkness!",
|
||||
"questLostMasterclasser4DropBackAccessory": "Etherische mantel (rugaccessoire)",
|
||||
"questLostMasterclasser4DropWeapon": "Etherische Kristallen (tweehandig wapen)",
|
||||
"questLostMasterclasser4DropMount": "Invisible Aether Mount",
|
||||
"questLostMasterclasser4DropMount": "Onzichtbaar Ether Rijdier",
|
||||
"questYarnText": "Een geknosselde draad",
|
||||
"questYarnNotes": "It’s such a pleasant day that you decide to take a walk through the Taskan Countryside. As you pass by its famous yarn shop, a piercing scream startles the birds into flight and scatters the butterflies into hiding. You run towards the source and see @Arcosine running up the path towards you. Behind him, a horrifying creature consisting of yarn, pins, and knitting needles is clicking and clacking ever closer.<br><br>The shopkeepers race after him, and @stefalupagus grabs your arm, out of breath. \"Looks like all of his unfinished projects\" <em>gasp gasp</em> \"have transformed the yarn from our Yarn Shop\" <em>gasp gasp</em> \"into a tangled mass of Yarnghetti!\"<br><br>\"Sometimes, life gets in the way and a project is abandoned, becoming ever more tangled and confused,\" says @khdarkwolf. \"The confusion can even spread to other projects, until there are so many half-finished works running around that no one gets anything done!\"<br><br>It’s time to make a choice: complete your stalled projects… or decide to unravel them for good. Either way, you'll have to increase your productivity quickly before the Dread Yarnghetti spreads confusion and discord to the rest of Habitica!",
|
||||
"questYarnNotes": "",
|
||||
"questYarnCompletion": "With a feeble swipe of a pin-riddled appendage and a weak roar, the Dread Yarnghetti finally unravels into a pile of yarn balls.<br><br>\"Take care of this yarn,\" shopkeeper @JinjooHat says, handing them to you. \"If you feed them and care for them properly, they'll grow into new and exciting projects that just might make your heart take flight…\"",
|
||||
"questYarnBoss": "The Dread Yarnghetti",
|
||||
"questYarnDropYarnEgg": "Wol (Ei)",
|
||||
"questYarnUnlockText": "Ontgrendelt het kopen van Gareneieren op de Markt",
|
||||
"winterQuestsText": "Winter Quest Bundle",
|
||||
"winterQuestsText": "Winter Queeste Bundel",
|
||||
"winterQuestsNotes": "Bevat 'Trapper Santa', 'Find the Cub' en 'The Fowl Frost'. Beschikbaar tot 31 januari. Let op dat Trapper Santa en Find the Cub stapelbare prestatie hebben, maar een zeldzaam huisdier en een rijdier geven dat maar één keer aan je stal kan worden toegevoegd.",
|
||||
"questPterodactylText": "The Pterror-dactyl",
|
||||
"questPterodactylNotes": "You're taking a stroll along the peaceful Stoïkalm Cliffs when an evil screech rends the air. You turn to find a hideous creature flying towards you and are overcome by a powerful terror. As you turn to flee, @Lilith of Alfheim grabs you. \"Don't panic! It's just a Pterror-dactyl.\"<br><br>@Procyon P nods. \"They nest nearby, but they're attracted to the scent of negative Habits and undone Dailies.\"<br><br>\"Don't worry,\" @Katy133 says. \"We just need to be extra productive to defeat it!\" You are filled with a renewed sense of purpose and turn to face your foe.",
|
||||
"questPterodactylCompletion": "With one last screech the Pterror-dactyl plummets over the side of the cliff. You run forward to watch it soar away over the distant steppes. \"Phew, I'm glad that's over,\" you say. \"Me too,\" replies @GeraldThePixel. \"But look! It's left some eggs behind for us.\" @Edge passes you three eggs, and you vow to raise them in tranquility, surrounded by positive Habits and blue Dailies.",
|
||||
"questPterodactylBoss": "Pterror-dactyl",
|
||||
"questPterodactylDropPterodactylEgg": "Pterodactyl (Egg)",
|
||||
"questPterodactylDropPterodactylEgg": "Pterodactyl (Ei)",
|
||||
"questPterodactylUnlockText": "Ontgrendelt het kopen van Pterodactyluseieren op de Markt",
|
||||
"questBadgerText": "Stop Badgering Me!",
|
||||
"questBadgerNotes": "Ah, winter in het Takenwoud. De zacht vallende sneeuw, de takken die glinsteren van de vorst, de bloeiende feeën… nog steeds niet aan het dutten? <br><br>\"Waarom zijn ze nog wakker?\" roept @LilithofAlfheim. \"Als ze niet snel overwinteren, zullen ze nooit de energie hebben voor het plantseizoen.\" <br><br>Terwijl jij en @Willow the Witty zich haasten om onderzoek te doen, komt er een harige kop uit de grond. Voordat je kunt schreeuwen: \"Het is de Pestende Lastpak!\" het is terug in zijn hol - maar niet voordat ze de \"Slaapstand\" to do's van de feeën hebben gegrepen en een gigantische lijst met vervelende taken op hun plaats hebben laten vallen!<br><br> \"Geen wonder dat de feeën niet rusten, als ze constant worden gepest! \" @plumilla zegt. Kun jij dit beest verjagen en de oogst van Takenwoud dit jaar redden?",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"rebirthNew": "Hergeboorte: Nieuw Avontuur Beschikbaar!",
|
||||
"rebirthUnlock": "Je hebt Hergeboorte vrijgespeeld! Dit speciale marktvoorwerp stelt je in staat om een nieuw spel te beginnen vanaf Niveau 1 terwijl je je taken, prestaties, dieren, en meer behoudt. Gebruik het om nieuw leven in Habitica te blazen als je voelt dat je alles al bereikt hebt of om nieuwe spelonderdelen te beleven met de frisse blik van een beginnend personage!",
|
||||
"rebirthAchievement": "Je bent een nieuw avontuur begonnen! Dit is Hergeboorte <%= number %> voor jou en het hoogste Niveau dat je behaald hebt is <%= level %>. Begin je volgende nieuwe avontuur als je een nog hoger niveau hebt bereikt om deze Prestatie nog een keer te behalen!",
|
||||
"rebirthAchievement100": "Je bent een nieuw avontuur begonnen! Dit is Hergeboorte <%= number %> voor je en het hoogste Niveau dat je hebt bereikt is 100 of hoger. Om deze prestatie nog een keer te behalen, begin dan je nieuwe avontuur wanneer je op zijn minst Niveau 100 hebt bereikt!",
|
||||
"rebirthAchievement100": "Je bent een nieuw avontuur begonnen! Dit is Hergeboorte <%= number %> voor je en het hoogste Niveau dat je hebt bereikt is 100 of hoger. Om deze prestatie nog een keer te behalen, begin dan je nieuwe avontuur wanneer je op zijn minst Niveau 100 hebt bereikt.",
|
||||
"rebirthBegan": "Is een Nieuw Avontuur begonnen",
|
||||
"rebirthText": "Is <%= rebirths %> Nieuwe Avonturen begonnen",
|
||||
"rebirthOrb": "Heeft een Bol der Hergeboorte gebruikt om opnieuw te beginnen na het bereiken van Niveau <%= level %>.",
|
||||
@@ -14,5 +14,6 @@
|
||||
"nextFreeRebirth": "<strong><%= days %> dagen</strong> tot <strong>GRATIS</strong> Bol der Hergeboorte",
|
||||
"rebirthNewAchievement": "Nieuwe prestatie",
|
||||
"rebirthNewAdventure": "Een nieuw avontuur begint nu!",
|
||||
"rebirthUnlockedOrb": "Een nieuw avontuur is beschikbaar!"
|
||||
"rebirthUnlockedOrb": "Een nieuw avontuur is beschikbaar!",
|
||||
"rebirthUnlockedNewItem": "Bol der Hergeboorte is Ontgrendeld"
|
||||
}
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
"generate": "Genereren",
|
||||
"getCodes": "Codes verkrijgen",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Webhooks bieden ontwikkelaars een manier om meldingen te ontvangen wanneer een bepaalde actie wordt uitgevoerd, zoals het beoordelen of bijwerken van een Taak, of het verzenden van een bericht in een Groep. Door een webhook te maken, kunt u luisteren naar wijzigingen in Habitica en apps bouwen die op deze wijzigingen reageren.<br><br>Voor meer informatie en voorbeelden over webhooks kunt u onze <a target=\"_blank\" href=\"https://habitica.com/apidoc/#api-Webhook-AddWebhook\">API-documentatie</a> raadplegen.",
|
||||
"webhooksInfo": "Webhooks bieden ontwikkelaars een manier om meldingen te ontvangen wanneer een bepaalde actie wordt uitgevoerd, zoals het beoordelen of bijwerken van een Taak, of het verzenden van een bericht in een Groep. Door een webhook te maken, kunt u luisteren naar wijzigingen in Habitica en apps bouwen die op deze wijzigingen reageren.<br><br>Voor meer informatie en voorbeelden over webhooks kunt u onze <a target=\"_blank\" href=\"https://apidoc.habitica.com/#api-Webhook-AddWebhook\">API-documentatie</a> raadplegen.",
|
||||
"enabled": "Ingeschakeld",
|
||||
"webhookURL": "Webhook-URL",
|
||||
"invalidUrl": "ongeldige url",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user