mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-14 07:52:15 +00:00
Merge branch 'develop' into increment-component
This commit is contained in:
commit
c7e2834fc6
106 changed files with 9046 additions and 5790 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit 6b38812db483d762ee9b3a700d6737ea94099b57
|
||||
Subproject commit 351ca72bc4cecce515aa94a1951e4b7803f5d3f3
|
||||
108
migrations/archive/2022/20221213_pet_group_achievements.js
Normal file
108
migrations/archive/2022/20221213_pet_group_achievements.js
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
/* eslint-disable no-console */
|
||||
const MIGRATION_NAME = '20221213_pet_group_achievements';
|
||||
import { model as User } from '../../../website/server/models/user';
|
||||
|
||||
const progressCount = 1000;
|
||||
let count = 0;
|
||||
|
||||
async function updateUser (user) {
|
||||
count++;
|
||||
|
||||
const set = {
|
||||
migration: MIGRATION_NAME,
|
||||
};
|
||||
|
||||
if (user && user.items && user.items.pets) {
|
||||
const pets = user.items.pets;
|
||||
if (pets['BearCub-Base']
|
||||
&& pets['BearCub-CottonCandyBlue']
|
||||
&& pets['BearCub-CottonCandyPink']
|
||||
&& pets['BearCub-Desert']
|
||||
&& pets['BearCub-Golden']
|
||||
&& pets['BearCub-Red']
|
||||
&& pets['BearCub-Shade']
|
||||
&& pets['BearCub-Skeleton']
|
||||
&& pets['BearCub-White']
|
||||
&& pets['BearCub-Zombie']
|
||||
&& pets['Fox-Base']
|
||||
&& pets['Fox-CottonCandyBlue']
|
||||
&& pets['Fox-CottonCandyPink']
|
||||
&& pets['Fox-Desert']
|
||||
&& pets['Fox-Golden']
|
||||
&& pets['Fox-Red']
|
||||
&& pets['Fox-Shade']
|
||||
&& pets['Fox-Skeleton']
|
||||
&& pets['Fox-White']
|
||||
&& pets['Fox-Zombie']
|
||||
&& pets['Penguin-Base']
|
||||
&& pets['Penguin-CottonCandyBlue']
|
||||
&& pets['Penguin-CottonCandyPink']
|
||||
&& pets['Penguin-Desert']
|
||||
&& pets['Penguin-Golden']
|
||||
&& pets['Penguin-Red']
|
||||
&& pets['Penguin-Shade']
|
||||
&& pets['Penguin-Skeleton']
|
||||
&& pets['Penguin-White']
|
||||
&& pets['Penguin-Zombie']
|
||||
&& pets['Whale-Base']
|
||||
&& pets['Whale-CottonCandyBlue']
|
||||
&& pets['Whale-CottonCandyPink']
|
||||
&& pets['Whale-Desert']
|
||||
&& pets['Whale-Golden']
|
||||
&& pets['Whale-Red']
|
||||
&& pets['Whale-Shade']
|
||||
&& pets['Whale-Skeleton']
|
||||
&& pets['Whale-White']
|
||||
&& pets['Whale-Zombie']
|
||||
&& pets['Wolf-Base']
|
||||
&& pets['Wolf-CottonCandyBlue']
|
||||
&& pets['Wolf-CottonCandyPink']
|
||||
&& pets['Wolf-Desert']
|
||||
&& pets['Wolf-Golden']
|
||||
&& pets['Wolf-Red']
|
||||
&& pets['Wolf-Shade']
|
||||
&& pets['Wolf-Skeleton']
|
||||
&& pets['Wolf-White']
|
||||
&& pets['Wolf-Zombie'] {
|
||||
set['achievements.polarPro'] = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (count % progressCount === 0) console.warn(`${count} ${user._id}`);
|
||||
|
||||
return await User.update({ _id: user._id }, { $set: set }).exec();
|
||||
}
|
||||
|
||||
export default async function processUsers () {
|
||||
let query = {
|
||||
// migration: { $ne: MIGRATION_NAME },
|
||||
'auth.timestamps.loggedin': { $gt: new Date('2022-11-01') },
|
||||
};
|
||||
|
||||
const fields = {
|
||||
_id: 1,
|
||||
items: 1,
|
||||
};
|
||||
|
||||
while (true) { // eslint-disable-line no-constant-condition
|
||||
const users = await User // eslint-disable-line no-await-in-loop
|
||||
.find(query)
|
||||
.limit(250)
|
||||
.sort({_id: 1})
|
||||
.select(fields)
|
||||
.lean()
|
||||
.exec();
|
||||
|
||||
if (users.length === 0) {
|
||||
console.warn('All appropriate users found and modified.');
|
||||
console.warn(`\n${count} users processed\n`);
|
||||
break;
|
||||
} else {
|
||||
query._id = {
|
||||
$gt: users[users.length - 1]._id,
|
||||
};
|
||||
}
|
||||
|
||||
await Promise.all(users.map(updateUser)); // eslint-disable-line no-await-in-loop
|
||||
}
|
||||
};
|
||||
144
migrations/archive/2022/20221227_nye.js
Normal file
144
migrations/archive/2022/20221227_nye.js
Normal file
|
|
@ -0,0 +1,144 @@
|
|||
/* eslint-disable no-console */
|
||||
const MIGRATION_NAME = '20221227_nye';
|
||||
import { model as User } from '../../../website/server/models/user';
|
||||
import { v4 as uuid } from 'uuid';
|
||||
|
||||
const progressCount = 1000;
|
||||
let count = 0;
|
||||
|
||||
async function updateUser (user) {
|
||||
count++;
|
||||
|
||||
const set = { migration: MIGRATION_NAME };
|
||||
let push;
|
||||
|
||||
if (typeof user.items.gear.owned.head_special_nye2021 !== 'undefined') {
|
||||
set['items.gear.owned.head_special_nye2022'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye2022',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
} else if (typeof user.items.gear.owned.head_special_nye2020 !== 'undefined') {
|
||||
set['items.gear.owned.head_special_nye2021'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye2021',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
} else if (typeof user.items.gear.owned.head_special_nye2019 !== 'undefined') {
|
||||
set['items.gear.owned.head_special_nye2020'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye2020',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
} else if (typeof user.items.gear.owned.head_special_nye2018 !== 'undefined') {
|
||||
set['items.gear.owned.head_special_nye2019'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye2019',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
} else if (typeof user.items.gear.owned.head_special_nye2017 !== 'undefined') {
|
||||
set['items.gear.owned.head_special_nye2018'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye2018',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
} else if (typeof user.items.gear.owned.head_special_nye2016 !== 'undefined') {
|
||||
set['items.gear.owned.head_special_nye2017'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye2017',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
} else if (typeof user.items.gear.owned.head_special_nye2015 !== 'undefined') {
|
||||
set['items.gear.owned.head_special_nye2016'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye2016',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
} else if (typeof user.items.gear.owned.head_special_nye2014 !== 'undefined') {
|
||||
set['items.gear.owned.head_special_nye2015'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye2015',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
} else if (typeof user.items.gear.owned.head_special_nye !== 'undefined') {
|
||||
set['items.gear.owned.head_special_nye2014'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye2014',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
} else {
|
||||
set['items.gear.owned.head_special_nye'] = false;
|
||||
push = [
|
||||
{
|
||||
type: 'marketGear',
|
||||
path: 'gear.flat.head_special_nye',
|
||||
_id: uuid(),
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
if (count % progressCount === 0) console.warn(`${count} ${user._id}`);
|
||||
|
||||
return await User.update({_id: user._id}, {$set: set, $push: {pinnedItems: {$each: push}}}).exec();
|
||||
}
|
||||
|
||||
export default async function processUsers () {
|
||||
let query = {
|
||||
'auth.timestamps.loggedin': {$gt: new Date('2022-12-01')},
|
||||
migration: {$ne: MIGRATION_NAME},
|
||||
};
|
||||
|
||||
const fields = {
|
||||
_id: 1,
|
||||
items: 1,
|
||||
};
|
||||
|
||||
while (true) { // eslint-disable-line no-constant-condition
|
||||
const users = await User // eslint-disable-line no-await-in-loop
|
||||
.find(query)
|
||||
.limit(250)
|
||||
.sort({_id: 1})
|
||||
.select(fields)
|
||||
.lean()
|
||||
.exec();
|
||||
|
||||
if (users.length === 0) {
|
||||
console.warn('All appropriate users found and modified.');
|
||||
console.warn(`\n${count} users processed\n`);
|
||||
break;
|
||||
} else {
|
||||
query._id = {
|
||||
$gt: users[users.length - 1],
|
||||
};
|
||||
}
|
||||
|
||||
await Promise.all(users.map(updateUser)); // eslint-disable-line no-await-in-loop
|
||||
}
|
||||
};
|
||||
359
package-lock.json
generated
359
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "habitica",
|
||||
"version": "4.251.0",
|
||||
"version": "4.255.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
@ -27,24 +27,24 @@
|
|||
"integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ=="
|
||||
},
|
||||
"@babel/core": {
|
||||
"version": "7.19.6",
|
||||
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.6.tgz",
|
||||
"integrity": "sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==",
|
||||
"version": "7.20.12",
|
||||
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz",
|
||||
"integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==",
|
||||
"requires": {
|
||||
"@ampproject/remapping": "^2.1.0",
|
||||
"@babel/code-frame": "^7.18.6",
|
||||
"@babel/generator": "^7.19.6",
|
||||
"@babel/helper-compilation-targets": "^7.19.3",
|
||||
"@babel/helper-module-transforms": "^7.19.6",
|
||||
"@babel/helpers": "^7.19.4",
|
||||
"@babel/parser": "^7.19.6",
|
||||
"@babel/template": "^7.18.10",
|
||||
"@babel/traverse": "^7.19.6",
|
||||
"@babel/types": "^7.19.4",
|
||||
"@babel/generator": "^7.20.7",
|
||||
"@babel/helper-compilation-targets": "^7.20.7",
|
||||
"@babel/helper-module-transforms": "^7.20.11",
|
||||
"@babel/helpers": "^7.20.7",
|
||||
"@babel/parser": "^7.20.7",
|
||||
"@babel/template": "^7.20.7",
|
||||
"@babel/traverse": "^7.20.12",
|
||||
"@babel/types": "^7.20.7",
|
||||
"convert-source-map": "^1.7.0",
|
||||
"debug": "^4.1.0",
|
||||
"gensync": "^1.0.0-beta.2",
|
||||
"json5": "^2.2.1",
|
||||
"json5": "^2.2.2",
|
||||
"semver": "^6.3.0"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
@ -57,68 +57,47 @@
|
|||
}
|
||||
},
|
||||
"@babel/compat-data": {
|
||||
"version": "7.20.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz",
|
||||
"integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ=="
|
||||
"version": "7.20.10",
|
||||
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.10.tgz",
|
||||
"integrity": "sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg=="
|
||||
},
|
||||
"@babel/generator": {
|
||||
"version": "7.20.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.1.tgz",
|
||||
"integrity": "sha512-u1dMdBUmA7Z0rBB97xh8pIhviK7oItYOkjbsCxTWMknyvbQRBwX7/gn4JXurRdirWMFh+ZtYARqkA6ydogVZpg==",
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.7.tgz",
|
||||
"integrity": "sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==",
|
||||
"requires": {
|
||||
"@babel/types": "^7.20.0",
|
||||
"@babel/types": "^7.20.7",
|
||||
"@jridgewell/gen-mapping": "^0.3.2",
|
||||
"jsesc": "^2.5.1"
|
||||
}
|
||||
},
|
||||
"@babel/helper-compilation-targets": {
|
||||
"version": "7.20.0",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz",
|
||||
"integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==",
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz",
|
||||
"integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==",
|
||||
"requires": {
|
||||
"@babel/compat-data": "^7.20.0",
|
||||
"@babel/compat-data": "^7.20.5",
|
||||
"@babel/helper-validator-option": "^7.18.6",
|
||||
"browserslist": "^4.21.3",
|
||||
"lru-cache": "^5.1.1",
|
||||
"semver": "^6.3.0"
|
||||
}
|
||||
},
|
||||
"@babel/helper-function-name": {
|
||||
"version": "7.19.0",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz",
|
||||
"integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==",
|
||||
"requires": {
|
||||
"@babel/template": "^7.18.10",
|
||||
"@babel/types": "^7.19.0"
|
||||
}
|
||||
},
|
||||
"@babel/helper-module-transforms": {
|
||||
"version": "7.19.6",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz",
|
||||
"integrity": "sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==",
|
||||
"version": "7.20.11",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz",
|
||||
"integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==",
|
||||
"requires": {
|
||||
"@babel/helper-environment-visitor": "^7.18.9",
|
||||
"@babel/helper-module-imports": "^7.18.6",
|
||||
"@babel/helper-simple-access": "^7.19.4",
|
||||
"@babel/helper-simple-access": "^7.20.2",
|
||||
"@babel/helper-split-export-declaration": "^7.18.6",
|
||||
"@babel/helper-validator-identifier": "^7.19.1",
|
||||
"@babel/template": "^7.18.10",
|
||||
"@babel/traverse": "^7.19.6",
|
||||
"@babel/types": "^7.19.4"
|
||||
"@babel/template": "^7.20.7",
|
||||
"@babel/traverse": "^7.20.10",
|
||||
"@babel/types": "^7.20.7"
|
||||
}
|
||||
},
|
||||
"@babel/helper-simple-access": {
|
||||
"version": "7.19.4",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz",
|
||||
"integrity": "sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==",
|
||||
"requires": {
|
||||
"@babel/types": "^7.19.4"
|
||||
}
|
||||
},
|
||||
"@babel/helper-string-parser": {
|
||||
"version": "7.19.4",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
|
||||
"integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
|
||||
},
|
||||
"@babel/helper-validator-identifier": {
|
||||
"version": "7.19.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
|
||||
|
|
@ -135,41 +114,41 @@
|
|||
}
|
||||
},
|
||||
"@babel/parser": {
|
||||
"version": "7.20.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.1.tgz",
|
||||
"integrity": "sha512-hp0AYxaZJhxULfM1zyp7Wgr+pSUKBcP3M+PHnSzWGdXOzg/kHWIgiUWARvubhUKGOEw3xqY4x+lyZ9ytBVcELw=="
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.7.tgz",
|
||||
"integrity": "sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg=="
|
||||
},
|
||||
"@babel/template": {
|
||||
"version": "7.18.10",
|
||||
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
|
||||
"integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz",
|
||||
"integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
|
||||
"requires": {
|
||||
"@babel/code-frame": "^7.18.6",
|
||||
"@babel/parser": "^7.18.10",
|
||||
"@babel/types": "^7.18.10"
|
||||
"@babel/parser": "^7.20.7",
|
||||
"@babel/types": "^7.20.7"
|
||||
}
|
||||
},
|
||||
"@babel/traverse": {
|
||||
"version": "7.20.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz",
|
||||
"integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==",
|
||||
"version": "7.20.12",
|
||||
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.12.tgz",
|
||||
"integrity": "sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==",
|
||||
"requires": {
|
||||
"@babel/code-frame": "^7.18.6",
|
||||
"@babel/generator": "^7.20.1",
|
||||
"@babel/generator": "^7.20.7",
|
||||
"@babel/helper-environment-visitor": "^7.18.9",
|
||||
"@babel/helper-function-name": "^7.19.0",
|
||||
"@babel/helper-hoist-variables": "^7.18.6",
|
||||
"@babel/helper-split-export-declaration": "^7.18.6",
|
||||
"@babel/parser": "^7.20.1",
|
||||
"@babel/types": "^7.20.0",
|
||||
"@babel/parser": "^7.20.7",
|
||||
"@babel/types": "^7.20.7",
|
||||
"debug": "^4.1.0",
|
||||
"globals": "^11.1.0"
|
||||
}
|
||||
},
|
||||
"@babel/types": {
|
||||
"version": "7.20.0",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.0.tgz",
|
||||
"integrity": "sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==",
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz",
|
||||
"integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==",
|
||||
"requires": {
|
||||
"@babel/helper-string-parser": "^7.19.4",
|
||||
"@babel/helper-validator-identifier": "^7.19.1",
|
||||
|
|
@ -198,9 +177,9 @@
|
|||
}
|
||||
},
|
||||
"caniuse-lite": {
|
||||
"version": "1.0.30001429",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001429.tgz",
|
||||
"integrity": "sha512-511ThLu1hF+5RRRt0zYCf2U2yRr9GPF6m5y90SBCWsvSoYoW7yAGlv/elyPaNfvGCkp6kj/KFZWU0BMA69Prsg=="
|
||||
"version": "1.0.30001442",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001442.tgz",
|
||||
"integrity": "sha512-239m03Pqy0hwxYPYR5JwOIxRJfLTWtle9FV8zosfV5pHg+/51uD4nxcUlM8+mWWGfwKtt8lJNHnD3cWw9VZ6ow=="
|
||||
},
|
||||
"chalk": {
|
||||
"version": "2.4.2",
|
||||
|
|
@ -212,6 +191,19 @@
|
|||
"supports-color": "^5.3.0"
|
||||
}
|
||||
},
|
||||
"json5": {
|
||||
"version": "2.2.3",
|
||||
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
||||
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="
|
||||
},
|
||||
"lru-cache": {
|
||||
"version": "5.1.1",
|
||||
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
||||
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
||||
"requires": {
|
||||
"yallist": "^3.0.2"
|
||||
}
|
||||
},
|
||||
"semver": {
|
||||
"version": "6.3.0",
|
||||
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
||||
|
|
@ -225,6 +217,11 @@
|
|||
"escalade": "^3.1.1",
|
||||
"picocolors": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"yallist": {
|
||||
"version": "3.1.1",
|
||||
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
||||
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -669,13 +666,13 @@
|
|||
}
|
||||
},
|
||||
"@babel/helpers": {
|
||||
"version": "7.20.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz",
|
||||
"integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==",
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.7.tgz",
|
||||
"integrity": "sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==",
|
||||
"requires": {
|
||||
"@babel/template": "^7.18.10",
|
||||
"@babel/traverse": "^7.20.1",
|
||||
"@babel/types": "^7.20.0"
|
||||
"@babel/template": "^7.20.7",
|
||||
"@babel/traverse": "^7.20.7",
|
||||
"@babel/types": "^7.20.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/code-frame": {
|
||||
|
|
@ -687,29 +684,15 @@
|
|||
}
|
||||
},
|
||||
"@babel/generator": {
|
||||
"version": "7.20.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.1.tgz",
|
||||
"integrity": "sha512-u1dMdBUmA7Z0rBB97xh8pIhviK7oItYOkjbsCxTWMknyvbQRBwX7/gn4JXurRdirWMFh+ZtYARqkA6ydogVZpg==",
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.7.tgz",
|
||||
"integrity": "sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==",
|
||||
"requires": {
|
||||
"@babel/types": "^7.20.0",
|
||||
"@babel/types": "^7.20.7",
|
||||
"@jridgewell/gen-mapping": "^0.3.2",
|
||||
"jsesc": "^2.5.1"
|
||||
}
|
||||
},
|
||||
"@babel/helper-function-name": {
|
||||
"version": "7.19.0",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz",
|
||||
"integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==",
|
||||
"requires": {
|
||||
"@babel/template": "^7.18.10",
|
||||
"@babel/types": "^7.19.0"
|
||||
}
|
||||
},
|
||||
"@babel/helper-string-parser": {
|
||||
"version": "7.19.4",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
|
||||
"integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
|
||||
},
|
||||
"@babel/helper-validator-identifier": {
|
||||
"version": "7.19.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
|
||||
|
|
@ -726,41 +709,41 @@
|
|||
}
|
||||
},
|
||||
"@babel/parser": {
|
||||
"version": "7.20.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.1.tgz",
|
||||
"integrity": "sha512-hp0AYxaZJhxULfM1zyp7Wgr+pSUKBcP3M+PHnSzWGdXOzg/kHWIgiUWARvubhUKGOEw3xqY4x+lyZ9ytBVcELw=="
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.7.tgz",
|
||||
"integrity": "sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg=="
|
||||
},
|
||||
"@babel/template": {
|
||||
"version": "7.18.10",
|
||||
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
|
||||
"integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz",
|
||||
"integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
|
||||
"requires": {
|
||||
"@babel/code-frame": "^7.18.6",
|
||||
"@babel/parser": "^7.18.10",
|
||||
"@babel/types": "^7.18.10"
|
||||
"@babel/parser": "^7.20.7",
|
||||
"@babel/types": "^7.20.7"
|
||||
}
|
||||
},
|
||||
"@babel/traverse": {
|
||||
"version": "7.20.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz",
|
||||
"integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==",
|
||||
"version": "7.20.12",
|
||||
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.12.tgz",
|
||||
"integrity": "sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==",
|
||||
"requires": {
|
||||
"@babel/code-frame": "^7.18.6",
|
||||
"@babel/generator": "^7.20.1",
|
||||
"@babel/generator": "^7.20.7",
|
||||
"@babel/helper-environment-visitor": "^7.18.9",
|
||||
"@babel/helper-function-name": "^7.19.0",
|
||||
"@babel/helper-hoist-variables": "^7.18.6",
|
||||
"@babel/helper-split-export-declaration": "^7.18.6",
|
||||
"@babel/parser": "^7.20.1",
|
||||
"@babel/types": "^7.20.0",
|
||||
"@babel/parser": "^7.20.7",
|
||||
"@babel/types": "^7.20.7",
|
||||
"debug": "^4.1.0",
|
||||
"globals": "^11.1.0"
|
||||
}
|
||||
},
|
||||
"@babel/types": {
|
||||
"version": "7.20.0",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.0.tgz",
|
||||
"integrity": "sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==",
|
||||
"version": "7.20.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz",
|
||||
"integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==",
|
||||
"requires": {
|
||||
"@babel/helper-string-parser": "^7.19.4",
|
||||
"@babel/helper-validator-identifier": "^7.19.1",
|
||||
|
|
@ -1978,6 +1961,11 @@
|
|||
"requires": {
|
||||
"lru-cache": "^6.0.0"
|
||||
}
|
||||
},
|
||||
"uuid": {
|
||||
"version": "8.3.2",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
||||
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -1989,6 +1977,13 @@
|
|||
"@opencensus/core": "^0.1.0",
|
||||
"hex2dec": "^1.0.1",
|
||||
"uuid": "^8.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"uuid": {
|
||||
"version": "8.3.2",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
||||
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
|
||||
}
|
||||
}
|
||||
},
|
||||
"@panva/asn1.js": {
|
||||
|
|
@ -2047,23 +2042,12 @@
|
|||
}
|
||||
},
|
||||
"@sinonjs/fake-timers": {
|
||||
"version": "9.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz",
|
||||
"integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==",
|
||||
"version": "10.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz",
|
||||
"integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@sinonjs/commons": "^1.7.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sinonjs/commons": {
|
||||
"version": "1.8.5",
|
||||
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.5.tgz",
|
||||
"integrity": "sha512-rTpCA0wG1wUxglBSFdMMY0oTrKYvgf4fNgv/sXbfCVAdf+FnPBdKJR/7XbpTCwbCrvCbdPYnlWaUUYz4V2fPDA==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"type-detect": "4.0.8"
|
||||
}
|
||||
}
|
||||
"@sinonjs/commons": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"@sinonjs/samsam": {
|
||||
|
|
@ -3168,19 +3152,20 @@
|
|||
"integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA=="
|
||||
},
|
||||
"axios": {
|
||||
"version": "0.27.2",
|
||||
"resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz",
|
||||
"integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==",
|
||||
"version": "1.2.2",
|
||||
"resolved": "https://registry.npmjs.org/axios/-/axios-1.2.2.tgz",
|
||||
"integrity": "sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"follow-redirects": "^1.14.9",
|
||||
"form-data": "^4.0.0"
|
||||
"follow-redirects": "^1.15.0",
|
||||
"form-data": "^4.0.0",
|
||||
"proxy-from-env": "^1.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"follow-redirects": {
|
||||
"version": "1.14.9",
|
||||
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz",
|
||||
"integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==",
|
||||
"version": "1.15.2",
|
||||
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
|
||||
"integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==",
|
||||
"dev": true
|
||||
}
|
||||
}
|
||||
|
|
@ -4321,9 +4306,9 @@
|
|||
}
|
||||
},
|
||||
"chalk": {
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz",
|
||||
"integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==",
|
||||
"version": "5.2.0",
|
||||
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz",
|
||||
"integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==",
|
||||
"dev": true
|
||||
},
|
||||
"chardet": {
|
||||
|
|
@ -9799,9 +9784,9 @@
|
|||
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
|
||||
},
|
||||
"json5": {
|
||||
"version": "2.2.1",
|
||||
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
|
||||
"integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="
|
||||
"version": "2.2.2",
|
||||
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.2.tgz",
|
||||
"integrity": "sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ=="
|
||||
},
|
||||
"jsonfile": {
|
||||
"version": "6.1.0",
|
||||
|
|
@ -10108,9 +10093,9 @@
|
|||
"integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg=="
|
||||
},
|
||||
"loader-utils": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.3.tgz",
|
||||
"integrity": "sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A==",
|
||||
"version": "2.0.4",
|
||||
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz",
|
||||
"integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
|
||||
"requires": {
|
||||
"big.js": "^5.2.2",
|
||||
"emojis-list": "^3.0.0",
|
||||
|
|
@ -11411,9 +11396,9 @@
|
|||
"integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="
|
||||
},
|
||||
"nise": {
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/nise/-/nise-5.1.2.tgz",
|
||||
"integrity": "sha512-+gQjFi8v+tkfCuSCxfURHLhRhniE/+IaYbIphxAN2JRR9SHKhY8hgXpaXiYfHdw+gcGe4buxgbprBQFab9FkhA==",
|
||||
"version": "5.1.3",
|
||||
"resolved": "https://registry.npmjs.org/nise/-/nise-5.1.3.tgz",
|
||||
"integrity": "sha512-U597iWTTBBYIV72986jyU382/MMZ70ApWcRmkoF1AZ75bpqOtI3Gugv/6+0jLgoDOabmcSwYBkSSAWIp1eA5cg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@sinonjs/commons": "^2.0.0",
|
||||
|
|
@ -11433,9 +11418,9 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@sinonjs/commons": {
|
||||
"version": "1.8.5",
|
||||
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.5.tgz",
|
||||
"integrity": "sha512-rTpCA0wG1wUxglBSFdMMY0oTrKYvgf4fNgv/sXbfCVAdf+FnPBdKJR/7XbpTCwbCrvCbdPYnlWaUUYz4V2fPDA==",
|
||||
"version": "1.8.6",
|
||||
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
|
||||
"integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"type-detect": "4.0.8"
|
||||
|
|
@ -12097,13 +12082,12 @@
|
|||
"integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ="
|
||||
},
|
||||
"passport": {
|
||||
"version": "0.6.0",
|
||||
"resolved": "https://registry.npmjs.org/passport/-/passport-0.6.0.tgz",
|
||||
"integrity": "sha512-0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug==",
|
||||
"version": "0.5.0",
|
||||
"resolved": "https://registry.npmjs.org/passport/-/passport-0.5.0.tgz",
|
||||
"integrity": "sha512-ln+ue5YaNDS+fes6O5PCzXKSseY5u8MYhX9H5Co4s+HfYI5oqvnHKoOORLYDUPh+8tHvrxugF2GFcUA1Q1Gqfg==",
|
||||
"requires": {
|
||||
"passport-strategy": "1.x.x",
|
||||
"pause": "0.0.1",
|
||||
"utils-merge": "^1.0.1"
|
||||
"pause": "0.0.1"
|
||||
}
|
||||
},
|
||||
"passport-facebook": {
|
||||
|
|
@ -12214,7 +12198,7 @@
|
|||
"pause": {
|
||||
"version": "0.0.1",
|
||||
"resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz",
|
||||
"integrity": "sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg=="
|
||||
"integrity": "sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10="
|
||||
},
|
||||
"pause-stream": {
|
||||
"version": "0.0.11",
|
||||
|
|
@ -12459,6 +12443,12 @@
|
|||
"ipaddr.js": "1.9.1"
|
||||
}
|
||||
},
|
||||
"proxy-from-env": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
||||
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
|
||||
"dev": true
|
||||
},
|
||||
"ps-tree": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz",
|
||||
|
|
@ -13543,6 +13533,13 @@
|
|||
"requires": {
|
||||
"any-base": "^1.1.0",
|
||||
"uuid": "^8.3.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"uuid": {
|
||||
"version": "8.3.2",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
||||
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
|
||||
}
|
||||
}
|
||||
},
|
||||
"side-channel": {
|
||||
|
|
@ -13630,13 +13627,13 @@
|
|||
}
|
||||
},
|
||||
"sinon": {
|
||||
"version": "14.0.2",
|
||||
"resolved": "https://registry.npmjs.org/sinon/-/sinon-14.0.2.tgz",
|
||||
"integrity": "sha512-PDpV0ZI3ZCS3pEqx0vpNp6kzPhHrLx72wA0G+ZLaaJjLIYeE0n8INlgaohKuGy7hP0as5tbUd23QWu5U233t+w==",
|
||||
"version": "15.0.1",
|
||||
"resolved": "https://registry.npmjs.org/sinon/-/sinon-15.0.1.tgz",
|
||||
"integrity": "sha512-PZXKc08f/wcA/BMRGBze2Wmw50CWPiAH3E21EOi4B49vJ616vW4DQh4fQrqsYox2aNR/N3kCqLuB0PwwOucQrg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@sinonjs/commons": "^2.0.0",
|
||||
"@sinonjs/fake-timers": "^9.1.2",
|
||||
"@sinonjs/fake-timers": "10.0.2",
|
||||
"@sinonjs/samsam": "^7.0.1",
|
||||
"diff": "^5.0.0",
|
||||
"nise": "^5.1.2",
|
||||
|
|
@ -14289,9 +14286,9 @@
|
|||
}
|
||||
},
|
||||
"stripe": {
|
||||
"version": "10.13.0",
|
||||
"resolved": "https://registry.npmjs.org/stripe/-/stripe-10.13.0.tgz",
|
||||
"integrity": "sha512-Uq+hToFOXHU+BHgzUmop2Monc0dM8pluXcoCOrgz9oY8XBDnSPOuXAJdKa04x5DCEgKWrFMHncQfAgwqzSgaTQ==",
|
||||
"version": "11.6.0",
|
||||
"resolved": "https://registry.npmjs.org/stripe/-/stripe-11.6.0.tgz",
|
||||
"integrity": "sha512-ht8S1l8CJJE3jtv2NM1mEQzZBkITYvb9uDpSeXYeNz9iJkFFgDU169htwOW00OdIESvFaIsGgWQatAE5dfOERQ==",
|
||||
"requires": {
|
||||
"@types/node": ">=8.1.0",
|
||||
"qs": "^6.11.0"
|
||||
|
|
@ -14318,16 +14315,16 @@
|
|||
"integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ=="
|
||||
},
|
||||
"superagent": {
|
||||
"version": "8.0.5",
|
||||
"resolved": "https://registry.npmjs.org/superagent/-/superagent-8.0.5.tgz",
|
||||
"integrity": "sha512-lQVE0Praz7nHiSaJLKBM/cZyi7J0E4io8tWnGSBdBrqAzhzrjQ/F5iGP9Zr29CJC8N5zYdhG2kKaNcB6dKxp7g==",
|
||||
"version": "8.0.6",
|
||||
"resolved": "https://registry.npmjs.org/superagent/-/superagent-8.0.6.tgz",
|
||||
"integrity": "sha512-HqSe6DSIh3hEn6cJvCkaM1BLi466f1LHi4yubR0tpewlMpk4RUFFy35bKz8SsPBwYfIIJy5eclp+3tCYAuX0bw==",
|
||||
"requires": {
|
||||
"component-emitter": "^1.3.0",
|
||||
"cookiejar": "^2.1.3",
|
||||
"debug": "^4.3.4",
|
||||
"fast-safe-stringify": "^2.1.1",
|
||||
"form-data": "^4.0.0",
|
||||
"formidable": "^2.0.1",
|
||||
"formidable": "^2.1.1",
|
||||
"methods": "^1.1.2",
|
||||
"mime": "2.6.0",
|
||||
"qs": "^6.11.0",
|
||||
|
|
@ -14984,13 +14981,13 @@
|
|||
"integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw=="
|
||||
},
|
||||
"tsconfig-paths": {
|
||||
"version": "3.9.0",
|
||||
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz",
|
||||
"integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==",
|
||||
"version": "3.14.1",
|
||||
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz",
|
||||
"integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==",
|
||||
"requires": {
|
||||
"@types/json5": "^0.0.29",
|
||||
"json5": "^1.0.1",
|
||||
"minimist": "^1.2.0",
|
||||
"minimist": "^1.2.6",
|
||||
"strip-bom": "^3.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
@ -15001,6 +14998,11 @@
|
|||
"requires": {
|
||||
"minimist": "^1.2.0"
|
||||
}
|
||||
},
|
||||
"minimist": {
|
||||
"version": "1.2.7",
|
||||
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz",
|
||||
"integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -15242,6 +15244,11 @@
|
|||
"requires": {
|
||||
"ms": "2.1.2"
|
||||
}
|
||||
},
|
||||
"uuid": {
|
||||
"version": "8.3.2",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
||||
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -15480,9 +15487,9 @@
|
|||
"integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
|
||||
},
|
||||
"uuid": {
|
||||
"version": "8.3.2",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
||||
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
|
||||
"version": "9.0.0",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
|
||||
"integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg=="
|
||||
},
|
||||
"v8-compile-cache": {
|
||||
"version": "2.1.1",
|
||||
|
|
|
|||
18
package.json
18
package.json
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"name": "habitica",
|
||||
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
|
||||
"version": "4.251.0",
|
||||
"version": "4.255.2",
|
||||
"main": "./website/server/index.js",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.19.6",
|
||||
"@babel/core": "^7.20.12",
|
||||
"@babel/preset-env": "^7.20.2",
|
||||
"@babel/register": "^7.18.9",
|
||||
"@google-cloud/trace-agent": "^7.1.2",
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
"nconf": "^0.12.0",
|
||||
"node-gcm": "^1.0.5",
|
||||
"on-headers": "^1.0.2",
|
||||
"passport": "^0.6.0",
|
||||
"passport": "^0.5.0",
|
||||
"passport-facebook": "^3.0.0",
|
||||
"passport-google-oauth2": "^0.2.0",
|
||||
"passport-google-oauth20": "2.0.0",
|
||||
|
|
@ -67,11 +67,11 @@
|
|||
"remove-markdown": "^0.5.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"short-uuid": "^4.2.2",
|
||||
"stripe": "^10.13.0",
|
||||
"superagent": "^8.0.5",
|
||||
"stripe": "^11.6.0",
|
||||
"superagent": "^8.0.6",
|
||||
"universal-analytics": "^0.5.3",
|
||||
"useragent": "^2.1.9",
|
||||
"uuid": "^8.3.2",
|
||||
"uuid": "^9.0.0",
|
||||
"validator": "^13.7.0",
|
||||
"vinyl-buffer": "^1.0.1",
|
||||
"winston": "^3.8.2",
|
||||
|
|
@ -110,11 +110,11 @@
|
|||
"apidoc": "gulp apidoc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"axios": "^0.27.2",
|
||||
"axios": "^1.2.2",
|
||||
"chai": "^4.3.7",
|
||||
"chai-as-promised": "^7.1.1",
|
||||
"chai-moment": "^0.1.0",
|
||||
"chalk": "^5.1.2",
|
||||
"chalk": "^5.2.0",
|
||||
"cross-spawn": "^7.0.3",
|
||||
"expect.js": "^0.3.1",
|
||||
"istanbul": "^1.1.0-alpha.1",
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
"monk": "^7.3.4",
|
||||
"require-again": "^2.0.0",
|
||||
"run-rs": "^0.7.7",
|
||||
"sinon": "^14.0.2",
|
||||
"sinon": "^15.0.1",
|
||||
"sinon-chai": "^3.7.0",
|
||||
"sinon-stub-promise": "^4.0.0"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -541,6 +541,35 @@ describe('POST /chat', () => {
|
|||
.to.eql(userWithStyle.preferences.background);
|
||||
});
|
||||
|
||||
it('creates equipped to user styles', async () => {
|
||||
const userWithStyle = await generateUser({
|
||||
'preferences.costume': false,
|
||||
'auth.timestamps.created': new Date('2022-01-01'),
|
||||
});
|
||||
await userWithStyle.sync();
|
||||
|
||||
const message = await userWithStyle.post(`/groups/${groupWithChat._id}/chat`, { message: testMessage });
|
||||
|
||||
expect(message.message.id).to.exist;
|
||||
expect(message.message.userStyles.items.gear.equipped)
|
||||
.to.eql(userWithStyle.items.gear.equipped);
|
||||
expect(message.message.userStyles.items.gear.costume).to.not.exist;
|
||||
});
|
||||
|
||||
it('creates costume to user styles', async () => {
|
||||
const userWithStyle = await generateUser({
|
||||
'preferences.costume': true,
|
||||
'auth.timestamps.created': new Date('2022-01-01'),
|
||||
});
|
||||
await userWithStyle.sync();
|
||||
|
||||
const message = await userWithStyle.post(`/groups/${groupWithChat._id}/chat`, { message: testMessage });
|
||||
|
||||
expect(message.message.id).to.exist;
|
||||
expect(message.message.userStyles.items.gear.costume).to.eql(userWithStyle.items.gear.costume);
|
||||
expect(message.message.userStyles.items.gear.equipped).to.not.exist;
|
||||
});
|
||||
|
||||
it('adds backer info to chat', async () => {
|
||||
const backerInfo = {
|
||||
npc: 'Town Crier',
|
||||
|
|
|
|||
|
|
@ -48,6 +48,19 @@ describe('Post /groups/:groupId/invite', () => {
|
|||
});
|
||||
});
|
||||
|
||||
it('returns error when recipient has blocked the senders', async () => {
|
||||
const inviterNoBlocks = await inviter.update({ 'inbox.blocks': [] });
|
||||
const userWithBlockedInviter = await generateUser({ 'inbox.blocks': [inviter._id] });
|
||||
await expect(inviterNoBlocks.post(`/groups/${group._id}/invite`, {
|
||||
usernames: [userWithBlockedInviter.auth.local.lowerCaseUsername],
|
||||
}))
|
||||
.to.eventually.be.rejected.and.eql({
|
||||
code: 401,
|
||||
error: 'NotAuthorized',
|
||||
message: t('notAuthorizedToSendMessageToThisUser'),
|
||||
});
|
||||
});
|
||||
|
||||
it('invites a user to a group by username', async () => {
|
||||
const userToInvite = await generateUser();
|
||||
|
||||
|
|
|
|||
|
|
@ -96,6 +96,20 @@ describe('PUT /user/auth/update-password', async () => {
|
|||
});
|
||||
});
|
||||
|
||||
it('returns an error when newPassword is too long', async () => {
|
||||
const body = {
|
||||
password,
|
||||
newPassword: '12345678910111213141516171819202122232425262728293031323334353637383940',
|
||||
confirmPassword: '12345678910111213141516171819202122232425262728293031323334353637383940',
|
||||
};
|
||||
|
||||
await expect(user.put(ENDPOINT, body)).to.eventually.be.rejected.and.eql({
|
||||
code: 400,
|
||||
error: 'BadRequest',
|
||||
message: t('invalidReqParams'),
|
||||
});
|
||||
});
|
||||
|
||||
it('returns an error when confirmPassword is missing', async () => {
|
||||
const body = {
|
||||
password,
|
||||
|
|
|
|||
|
|
@ -37,6 +37,8 @@ describe('GET /faq', () => {
|
|||
|
||||
expect(res).to.have.property('questions');
|
||||
expect(res.questions[0]).to.eql({
|
||||
exclusions: [],
|
||||
heading: 'overview',
|
||||
question: translate('faqQuestion0'),
|
||||
ios: translate('iosFaqAnswer0'),
|
||||
});
|
||||
|
|
@ -57,6 +59,8 @@ describe('GET /faq', () => {
|
|||
|
||||
expect(res).to.have.property('questions');
|
||||
expect(res.questions[0]).to.eql({
|
||||
exclusions: [],
|
||||
heading: 'overview',
|
||||
question: translate('faqQuestion0'),
|
||||
android: translate('androidFaqAnswer0'),
|
||||
});
|
||||
|
|
|
|||
12329
website/client/package-lock.json
generated
12329
website/client/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -18,21 +18,21 @@
|
|||
"@storybook/addon-links": "6.5.8",
|
||||
"@storybook/addon-notes": "5.3.21",
|
||||
"@storybook/addons": "6.5.9",
|
||||
"@storybook/vue": "6.3.13",
|
||||
"@vue/cli-plugin-babel": "^4.5.15",
|
||||
"@storybook/vue": "6.5.14",
|
||||
"@vue/cli-plugin-babel": "^5.0.8",
|
||||
"@vue/cli-plugin-eslint": "^4.5.19",
|
||||
"@vue/cli-plugin-router": "^5.0.8",
|
||||
"@vue/cli-plugin-unit-mocha": "^4.5.15",
|
||||
"@vue/cli-plugin-unit-mocha": "^5.0.8",
|
||||
"@vue/cli-service": "^4.5.15",
|
||||
"@vue/test-utils": "1.0.0-beta.29",
|
||||
"amplitude-js": "^8.21.1",
|
||||
"amplitude-js": "^8.21.3",
|
||||
"axios": "^0.27.2",
|
||||
"axios-progress-bar": "^1.2.0",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"bootstrap": "^4.6.0",
|
||||
"bootstrap-vue": "^2.22.0",
|
||||
"chai": "^4.3.6",
|
||||
"core-js": "^3.26.0",
|
||||
"bootstrap-vue": "^2.23.1",
|
||||
"chai": "^4.3.7",
|
||||
"core-js": "^3.27.2",
|
||||
"dompurify": "^2.4.1",
|
||||
"eslint": "^6.8.0",
|
||||
"eslint-config-habitrpg": "^6.2.0",
|
||||
|
|
@ -42,7 +42,7 @@
|
|||
"hellojs": "^1.19.5",
|
||||
"inspectpack": "^4.7.1",
|
||||
"intro.js": "^6.0.0",
|
||||
"jquery": "^3.6.1",
|
||||
"jquery": "^3.6.3",
|
||||
"lodash": "^4.17.21",
|
||||
"moment": "^2.29.4",
|
||||
"nconf": "^0.12.0",
|
||||
|
|
@ -66,6 +66,6 @@
|
|||
"webpack": "^4.46.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.18.9"
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.20.7"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -293,6 +293,11 @@
|
|||
width: 48px;
|
||||
height: 52px;
|
||||
}
|
||||
.achievement-polarPro2x {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/achievement-polarPro2x.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.achievement-primedForPainting2x {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/achievement-primedForPainting2x.png');
|
||||
width: 48px;
|
||||
|
|
@ -1619,6 +1624,11 @@
|
|||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rime_ice {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_rime_ice.png');
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_river_of_lava {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_river_of_lava.png');
|
||||
width: 141px;
|
||||
|
|
@ -1724,6 +1734,11 @@
|
|||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_snowy_temple {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_snowy_temple.png');
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_snowy_village {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_snowy_village.png');
|
||||
width: 141px;
|
||||
|
|
@ -2054,6 +2069,11 @@
|
|||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_winter_lake_with_swans {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_winter_lake_with_swans.png');
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_winter_night {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/background_winter_night.png');
|
||||
width: 141px;
|
||||
|
|
@ -2815,6 +2835,11 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.icon_background_habitversary_bash {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/icon_background_habitversary_bash.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.icon_background_halflings_house {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/icon_background_halflings_house.png');
|
||||
width: 68px;
|
||||
|
|
@ -3240,6 +3265,11 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.icon_background_rime_ice {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/icon_background_rime_ice.png');
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
.icon_background_river_of_lava {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/icon_background_river_of_lava.png');
|
||||
width: 68px;
|
||||
|
|
@ -3345,6 +3375,11 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.icon_background_snowy_temple {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/icon_background_snowy_temple.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.icon_background_snowy_village {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/icon_background_snowy_village.png');
|
||||
width: 68px;
|
||||
|
|
@ -3680,6 +3715,11 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.icon_background_winter_lake_with_swans {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/icon_background_winter_lake_with_swans.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.icon_background_winter_night {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/icon_background_winter_night.png');
|
||||
width: 68px;
|
||||
|
|
@ -18550,6 +18590,11 @@
|
|||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.broad_armor_armoire_shawlCollarCoat {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_armoire_shawlCollarCoat.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.broad_armor_armoire_sheetGhostCostume {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_armoire_sheetGhostCostume.png');
|
||||
width: 114px;
|
||||
|
|
@ -19785,6 +19830,11 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_armor_armoire_shawlCollarCoat {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_armor_armoire_shawlCollarCoat.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_armor_armoire_sheetGhostCostume {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_armor_armoire_sheetGhostCostume.png');
|
||||
width: 68px;
|
||||
|
|
@ -21495,6 +21545,11 @@
|
|||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.slim_armor_armoire_shawlCollarCoat {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_armoire_shawlCollarCoat.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.slim_armor_armoire_sheetGhostCostume {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_armoire_sheetGhostCostume.png');
|
||||
width: 114px;
|
||||
|
|
@ -27530,6 +27585,31 @@
|
|||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.back_mystery_202301 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/back_mystery_202301.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_mystery_202301 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_mystery_202301.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.shop_back_mystery_202301 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_back_mystery_202301.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_head_mystery_202301 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_head_mystery_202301.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_set_mystery_202301 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_set_mystery_202301.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.broad_armor_mystery_301404 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_mystery_301404.png');
|
||||
width: 90px;
|
||||
|
|
@ -31275,6 +31355,26 @@
|
|||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.broad_armor_special_winter2023Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_winter2023Healer.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.broad_armor_special_winter2023Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_winter2023Mage.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.broad_armor_special_winter2023Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_winter2023Rogue.png');
|
||||
width: 116px;
|
||||
height: 119px;
|
||||
}
|
||||
.broad_armor_special_winter2023Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_winter2023Warrior.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.broad_armor_special_yeti {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/broad_armor_special_yeti.png');
|
||||
width: 90px;
|
||||
|
|
@ -31330,6 +31430,11 @@
|
|||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_special_nye2022 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_nye2022.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_special_ski {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_ski.png');
|
||||
width: 90px;
|
||||
|
|
@ -31500,6 +31605,26 @@
|
|||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.head_special_winter2023Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_winter2023Healer.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.head_special_winter2023Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_winter2023Mage.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.head_special_winter2023Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_winter2023Rogue.png');
|
||||
width: 116px;
|
||||
height: 119px;
|
||||
}
|
||||
.head_special_winter2023Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_winter2023Warrior.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.head_special_yeti {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/head_special_yeti.png');
|
||||
width: 90px;
|
||||
|
|
@ -31635,6 +31760,21 @@
|
|||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.shield_special_winter2023Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_special_winter2023Healer.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.shield_special_winter2023Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_special_winter2023Rogue.png');
|
||||
width: 116px;
|
||||
height: 119px;
|
||||
}
|
||||
.shield_special_winter2023Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_special_winter2023Warrior.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.shield_special_yeti {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shield_special_yeti.png');
|
||||
width: 90px;
|
||||
|
|
@ -31815,6 +31955,26 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_armor_special_winter2023Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_armor_special_winter2023Healer.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_armor_special_winter2023Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_armor_special_winter2023Mage.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_armor_special_winter2023Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_armor_special_winter2023Rogue.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_armor_special_winter2023Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_armor_special_winter2023Warrior.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_armor_special_yeti {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_armor_special_yeti.png');
|
||||
width: 68px;
|
||||
|
|
@ -31870,6 +32030,11 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_head_special_nye2022 {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_head_special_nye2022.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_head_special_ski {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_head_special_ski.png');
|
||||
width: 68px;
|
||||
|
|
@ -32040,6 +32205,26 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_head_special_winter2023Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_head_special_winter2023Healer.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_head_special_winter2023Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_head_special_winter2023Mage.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_head_special_winter2023Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_head_special_winter2023Rogue.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_head_special_winter2023Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_head_special_winter2023Warrior.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_head_special_yeti {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_head_special_yeti.png');
|
||||
width: 68px;
|
||||
|
|
@ -32175,11 +32360,31 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_shield_special_winter2023Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_shield_special_winter2023Healer.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_shield_special_winter2023Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_shield_special_winter2023Rogue.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_shield_special_winter2023Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_shield_special_winter2023Warrior.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_shield_special_yeti {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_shield_special_yeti.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_weapon_special_Winter2023Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_weapon_special_Winter2023Rogue.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_weapon_special_candycane {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_weapon_special_candycane.png');
|
||||
width: 68px;
|
||||
|
|
@ -32355,6 +32560,21 @@
|
|||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_weapon_special_winter2023Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_weapon_special_winter2023Healer.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_weapon_special_winter2023Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_weapon_special_winter2023Mage.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_weapon_special_winter2023Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_weapon_special_winter2023Warrior.png');
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
}
|
||||
.shop_weapon_special_yeti {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/shop_weapon_special_yeti.png');
|
||||
width: 68px;
|
||||
|
|
@ -32535,6 +32755,26 @@
|
|||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.slim_armor_special_winter2023Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_winter2023Healer.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.slim_armor_special_winter2023Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_winter2023Mage.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.slim_armor_special_winter2023Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_winter2023Rogue.png');
|
||||
width: 116px;
|
||||
height: 119px;
|
||||
}
|
||||
.slim_armor_special_winter2023Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_winter2023Warrior.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.slim_armor_special_yeti {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/slim_armor_special_yeti.png');
|
||||
width: 90px;
|
||||
|
|
@ -32715,6 +32955,26 @@
|
|||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.weapon_special_winter2023Healer {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_winter2023Healer.png');
|
||||
width: 117px;
|
||||
height: 120px;
|
||||
}
|
||||
.weapon_special_winter2023Mage {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_winter2023Mage.png');
|
||||
width: 114px;
|
||||
height: 90px;
|
||||
}
|
||||
.weapon_special_winter2023Rogue {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_winter2023Rogue.png');
|
||||
width: 116px;
|
||||
height: 119px;
|
||||
}
|
||||
.weapon_special_winter2023Warrior {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_winter2023Warrior.png');
|
||||
width: 114px;
|
||||
height: 117px;
|
||||
}
|
||||
.weapon_special_yeti {
|
||||
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/weapon_special_yeti.png');
|
||||
width: 90px;
|
||||
|
|
|
|||
|
|
@ -50,7 +50,21 @@ export default {
|
|||
challengeId: this.challengeId,
|
||||
keep,
|
||||
});
|
||||
await this.$store.dispatch('tasks:fetchUserTasks', { forceLoad: true });
|
||||
const userTasksByType = (await this.$store.dispatch('tasks:fetchUserTasks', { forceLoad: true })).data;
|
||||
let tagInUse = false;
|
||||
Object.keys(userTasksByType).forEach(taskType => {
|
||||
userTasksByType[taskType].forEach(task => {
|
||||
if (task.tags.indexOf(this.challengeId) > -1) {
|
||||
tagInUse = true;
|
||||
}
|
||||
});
|
||||
});
|
||||
if (!tagInUse) {
|
||||
await this.$store.dispatch(
|
||||
'tags:deleteTag',
|
||||
{ tagId: this.challengeId },
|
||||
);
|
||||
}
|
||||
this.close();
|
||||
},
|
||||
close () {
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@
|
|||
v-if="editing"
|
||||
class="menu-container col-2"
|
||||
:class="{active: activeTopPage === 'backgrounds'}"
|
||||
@click="changeTopPage('backgrounds', '2022')"
|
||||
@click="changeTopPage('backgrounds', '2023')"
|
||||
>
|
||||
<div class="menu-item">
|
||||
<div
|
||||
|
|
@ -1185,7 +1185,7 @@ export default {
|
|||
},
|
||||
],
|
||||
|
||||
bgSubMenuItems: ['2022', '2021', '2020', '2019', '2018', '2017', '2016', '2015', '2014'].map(y => ({
|
||||
bgSubMenuItems: ['2023', '2022', '2021', '2020', '2019', '2018', '2017', '2016', '2015', '2014'].map(y => ({
|
||||
id: y,
|
||||
label: y,
|
||||
})),
|
||||
|
|
@ -1214,6 +1214,7 @@ export default {
|
|||
2020: [],
|
||||
2021: [],
|
||||
2022: [],
|
||||
2023: [],
|
||||
};
|
||||
|
||||
// Hack to force update for now until we restructure the data
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
>{{ $t('editAvatar') }}</a>
|
||||
<a
|
||||
class="topbar-dropdown-item dropdown-item dropdown-separated"
|
||||
@click="showAvatar('backgrounds', '2022')"
|
||||
@click="showAvatar('backgrounds', '2023')"
|
||||
>{{ $t('backgrounds') }}</a>
|
||||
<a
|
||||
class="topbar-dropdown-item dropdown-item"
|
||||
|
|
|
|||
|
|
@ -83,6 +83,7 @@
|
|||
}
|
||||
|
||||
h4 {
|
||||
color: $gray-10;
|
||||
font-size: 0.875rem;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@
|
|||
<div class="subscribe-card mx-auto">
|
||||
<div
|
||||
v-if="hasSubscription && !hasCanceledSubscription"
|
||||
class="d-flex flex-column align-items-center"
|
||||
class="d-flex flex-column align-items-center pt-4"
|
||||
>
|
||||
<div class="round-container bg-green-10 d-flex align-items-center justify-content-center">
|
||||
<div
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
</h2>
|
||||
<div
|
||||
v-if="hasGroupPlan"
|
||||
class="mx-5 text-center"
|
||||
class="mx-5 mb-4 text-center"
|
||||
>
|
||||
{{ $t('youHaveGroupPlan') }}
|
||||
</div>
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
</div>
|
||||
<button
|
||||
class="btn btn-primary btn-update-card
|
||||
d-flex justify-content-center align-items-center"
|
||||
d-flex justify-content-center align-items-center mb-4"
|
||||
@click="redirectToStripeEdit()"
|
||||
>
|
||||
<div
|
||||
|
|
@ -143,21 +143,61 @@
|
|||
</div>
|
||||
<div
|
||||
v-else
|
||||
class="svg-icon"
|
||||
class="svg-icon mb-4"
|
||||
:class="paymentMethodLogo.class"
|
||||
v-html="paymentMethodLogo.icon"
|
||||
>
|
||||
</div>
|
||||
<div
|
||||
v-if="purchasedPlanExtraMonthsDetails.months > 0"
|
||||
class="extra-months green-10 py-2 px-3 mt-4"
|
||||
class="extra-months green-10 py-2 px-3 mb-4"
|
||||
v-html="$t('purchasedPlanExtraMonths',
|
||||
{months: purchasedPlanExtraMonthsDetails.months})"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-if="hasCanceledSubscription"
|
||||
v-if="hasGiftSubscription"
|
||||
class="d-flex flex-column align-items-center mt-4"
|
||||
>
|
||||
<div class="round-container bg-green-10 d-flex align-items-center justify-content-center">
|
||||
<div
|
||||
v-once
|
||||
class="svg-icon svg-check"
|
||||
v-html="icons.checkmarkIcon"
|
||||
></div>
|
||||
</div>
|
||||
<h2 class="green-10 mx-auto mb-75">
|
||||
{{ $t('youAreSubscribed') }}
|
||||
</h2>
|
||||
<div
|
||||
class="mx-4 text-center mb-4 lh-71"
|
||||
>
|
||||
<span v-once>
|
||||
{{ $t('haveNonRecurringSub') }}
|
||||
</span>
|
||||
<span
|
||||
v-once
|
||||
v-html="$t('subscriptionInactiveDate', {date: subscriptionEndDate})"
|
||||
>
|
||||
</span>
|
||||
</div>
|
||||
<h2 v-once>
|
||||
{{ $t('switchToRecurring') }}
|
||||
</h2>
|
||||
<small
|
||||
v-once
|
||||
class="mx-4 mb-3 text-center"
|
||||
>
|
||||
{{ $t('continueGiftSubBenefits') }}
|
||||
</small>
|
||||
<subscription-options
|
||||
:note="'subscriptionCreditConversion'"
|
||||
class="w-100 mb-2"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
v-else-if="hasCanceledSubscription"
|
||||
class="d-flex flex-column align-items-center mt-4"
|
||||
>
|
||||
<div class="round-container bg-gray-300 d-flex align-items-center justify-content-center">
|
||||
|
|
@ -180,7 +220,7 @@
|
|||
</div>
|
||||
<div
|
||||
v-if="hasSubscription"
|
||||
class="bg-gray-700 py-3 mt-4 mb-3 text-center"
|
||||
class="bg-gray-700 py-3 mb-3 text-center"
|
||||
>
|
||||
<div class="header-mini mb-3">
|
||||
{{ $t('subscriptionStats') }}
|
||||
|
|
@ -322,6 +362,12 @@
|
|||
max-width: 21rem;
|
||||
}
|
||||
|
||||
small {
|
||||
color: $gray-100;
|
||||
font-size: 12px ;
|
||||
line-height: 1.33;
|
||||
}
|
||||
|
||||
strong {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
|
@ -399,6 +445,10 @@
|
|||
height: 49px;
|
||||
}
|
||||
|
||||
.lh-71 {
|
||||
line-height: 1.71;
|
||||
}
|
||||
|
||||
.maroon-50 {
|
||||
color: $maroon-50;
|
||||
}
|
||||
|
|
@ -443,7 +493,6 @@
|
|||
}
|
||||
|
||||
.subscribe-card {
|
||||
padding-top: 2rem;
|
||||
width: 28rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 2px 0 rgba(26, 24, 29, 0.16), 0 1px 4px 0 rgba(26, 24, 29, 0.12);
|
||||
|
|
@ -472,8 +521,7 @@
|
|||
}
|
||||
|
||||
.svg-check {
|
||||
width: 35.1px;
|
||||
height: 28px;
|
||||
width: 36px;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
|
|
@ -670,6 +718,9 @@ export default {
|
|||
hasSubscription () {
|
||||
return Boolean(this.user.purchased.plan.customerId);
|
||||
},
|
||||
hasGiftSubscription () {
|
||||
return this.user.purchased.plan.customerId === 'Gift';
|
||||
},
|
||||
hasCanceledSubscription () {
|
||||
return (
|
||||
this.hasSubscription
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div id="subscription-form">
|
||||
<b-form-group class="mb-4 w-100 h-100">
|
||||
<b-form-group class="mb-3 w-100 h-100">
|
||||
<!-- eslint-disable vue/no-use-v-if-with-v-for -->
|
||||
<b-form-radio
|
||||
v-for="block in subscriptionBlocksOrdered"
|
||||
|
|
@ -32,6 +32,15 @@
|
|||
</div>
|
||||
</b-form-radio>
|
||||
</b-form-group>
|
||||
<div class="mx-4 mb-4 text-center">
|
||||
<small
|
||||
v-if="note"
|
||||
v-once
|
||||
class="font-italic"
|
||||
>
|
||||
{{ $t(note) }}
|
||||
</small>
|
||||
</div>
|
||||
<!-- payment buttons first is for gift subs and the second is for renewing subs -->
|
||||
<payments-buttons
|
||||
v-if="userReceivingGift && userReceivingGift._id"
|
||||
|
|
@ -82,7 +91,10 @@
|
|||
|
||||
.subscription-bubble, .discount-bubble {
|
||||
border-radius: 100px;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
font-size: 12px;
|
||||
line-height: 1.33;
|
||||
}
|
||||
|
||||
.subscription-bubble {
|
||||
|
|
@ -100,8 +112,20 @@
|
|||
<style lang="scss" scoped>
|
||||
@import '~@/assets/scss/colors.scss';
|
||||
|
||||
small {
|
||||
color: $gray-100;
|
||||
display: inline-block;
|
||||
font-size: 12px ;
|
||||
font-weight: normal;
|
||||
line-height: 1.33;
|
||||
}
|
||||
|
||||
.subscribe-option {
|
||||
border-bottom: 1px solid $gray-600;
|
||||
background-color: $gray-700;
|
||||
|
||||
&:not(:last-of-type) {
|
||||
border-bottom: 1px solid $gray-600;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
|
|
@ -121,6 +145,10 @@ export default {
|
|||
paymentsMixin,
|
||||
],
|
||||
props: {
|
||||
note: {
|
||||
type: String,
|
||||
default: null,
|
||||
},
|
||||
userReceivingGift: {
|
||||
type: Object,
|
||||
default () {},
|
||||
|
|
@ -154,13 +182,13 @@ export default {
|
|||
subscriptionBubbles (subscription) {
|
||||
switch (subscription) {
|
||||
case 'basic_3mo':
|
||||
return '<span class="subscription-bubble px-2 py-1 mr-1">Gem cap raised to 30</span><span class="subscription-bubble px-2 py-1">+1 Mystic Hourglass</span>';
|
||||
return '<span class="subscription-bubble py-1 mr-1">Gem cap raised to 30</span><span class="subscription-bubble py-1">+1 Mystic Hourglass</span>';
|
||||
case 'basic_6mo':
|
||||
return '<span class="subscription-bubble px-2 py-1 mr-1">Gem cap raised to 35</span><span class="subscription-bubble px-2 py-1">+2 Mystic Hourglass</span>';
|
||||
return '<span class="subscription-bubble py-1 mr-1">Gem cap raised to 35</span><span class="subscription-bubble py-1">+2 Mystic Hourglass</span>';
|
||||
case 'basic_12mo':
|
||||
return '<span class="discount-bubble px-2 py-1 mr-1">Save 20%</span><span class="subscription-bubble px-2 py-1 mr-1">Gem cap raised to 45</span><span class="subscription-bubble px-2 py-1">+4 Mystic Hourglass</span>';
|
||||
return '<span class="discount-bubble py-1 mr-1">Save 20%</span><span class="subscription-bubble py-1 mr-1">Gem cap raised to 45</span><span class="subscription-bubble py-1">+4 Mystic Hourglass</span>';
|
||||
default:
|
||||
return '<span class="subscription-bubble px-2 py-1">Gem cap at 25</span>';
|
||||
return '<span class="subscription-bubble py-1">Gem cap at 25</span>';
|
||||
}
|
||||
},
|
||||
updateSubscriptionData (key) {
|
||||
|
|
|
|||
|
|
@ -5,40 +5,44 @@
|
|||
>
|
||||
<div class="row">
|
||||
<div class="col-12 col-md-6 offset-md-3">
|
||||
<h1 id="faq-heading">
|
||||
<h1
|
||||
v-once
|
||||
id="faq-heading"
|
||||
>
|
||||
{{ $t('frequentlyAskedQuestions') }}
|
||||
</h1>
|
||||
<div
|
||||
v-for="(heading, index) in headings"
|
||||
v-for="(entry, index) in faq.questions"
|
||||
:key="index"
|
||||
class="faq-question"
|
||||
>
|
||||
<div
|
||||
v-if="heading !== 'world-boss'"
|
||||
<h2
|
||||
v-once
|
||||
v-b-toggle="entry.heading"
|
||||
role="tab"
|
||||
variant="info"
|
||||
@click="handleClick($event)"
|
||||
>
|
||||
<h2
|
||||
v-b-toggle="heading"
|
||||
role="tab"
|
||||
variant="info"
|
||||
@click="handleClick($event)"
|
||||
>
|
||||
{{ $t(`faqQuestion${index}`) }}
|
||||
</h2>
|
||||
<b-collapse
|
||||
:id="heading"
|
||||
:visible="isVisible(heading)"
|
||||
accordion="faq"
|
||||
role="tabpanel"
|
||||
>
|
||||
<div
|
||||
v-markdown="$t(`webFaqAnswer${index}`, replacements)"
|
||||
class="card-body"
|
||||
></div>
|
||||
</b-collapse>
|
||||
</div>
|
||||
{{ entry.question }}
|
||||
</h2>
|
||||
<b-collapse
|
||||
:id="entry.heading"
|
||||
:visible="isVisible(entry.heading)"
|
||||
accordion="faq"
|
||||
role="tabpanel"
|
||||
>
|
||||
<div
|
||||
v-once
|
||||
v-markdown="entry.web"
|
||||
class="card-body"
|
||||
></div>
|
||||
</b-collapse>
|
||||
</div>
|
||||
<hr>
|
||||
<p v-markdown="$t('webFaqStillNeedHelp')"></p>
|
||||
<p
|
||||
v-once
|
||||
v-markdown="stillNeedHelp"
|
||||
></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -46,7 +50,7 @@
|
|||
|
||||
<style lang='scss' scoped>
|
||||
.card-body {
|
||||
margin-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.faq-question h2 {
|
||||
|
|
@ -74,53 +78,34 @@
|
|||
</style>
|
||||
|
||||
<script>
|
||||
// @TODO: env.EMAILS.TECH_ASSISTANCE_EMAIL
|
||||
import markdownDirective from '@/directives/markdown';
|
||||
|
||||
const TECH_ASSISTANCE_EMAIL = 'admin@habitica.com';
|
||||
|
||||
export default {
|
||||
directives: {
|
||||
markdown: markdownDirective,
|
||||
},
|
||||
data () {
|
||||
const headings = [
|
||||
'overview',
|
||||
'set-up-tasks',
|
||||
'sample-tasks',
|
||||
'task-color',
|
||||
'health',
|
||||
'party-with-friends',
|
||||
'pets-mounts',
|
||||
'character-classes',
|
||||
'blue-mana-bar',
|
||||
'monsters-quests',
|
||||
'gems',
|
||||
'bugs-features',
|
||||
'world-boss',
|
||||
'group-plans',
|
||||
];
|
||||
|
||||
const hash = window.location.hash.replace('#', '');
|
||||
|
||||
return {
|
||||
headings,
|
||||
replacements: {
|
||||
techAssistanceEmail: TECH_ASSISTANCE_EMAIL,
|
||||
wikiTechAssistanceEmail: `mailto:${TECH_ASSISTANCE_EMAIL}`,
|
||||
},
|
||||
visible: hash && headings.includes(hash) ? hash : null,
|
||||
faq: {},
|
||||
headings: [],
|
||||
stillNeedHelp: '',
|
||||
};
|
||||
},
|
||||
mounted () {
|
||||
async mounted () {
|
||||
this.$store.dispatch('common:setTitle', {
|
||||
section: this.$t('help'),
|
||||
subSection: this.$t('faq'),
|
||||
});
|
||||
this.faq = await this.$store.dispatch('faq:getFAQ');
|
||||
for (const entry of this.faq.questions) {
|
||||
this.headings.push(entry.heading);
|
||||
}
|
||||
this.stillNeedHelp = this.faq.stillNeedHelp.web;
|
||||
},
|
||||
methods: {
|
||||
isVisible (heading) {
|
||||
return this.visible && this.visible === heading;
|
||||
const hash = window.location.hash.replace('#', '');
|
||||
return hash && this.headings.includes(hash) && hash === heading;
|
||||
},
|
||||
handleClick (e) {
|
||||
if (!e) return;
|
||||
|
|
|
|||
|
|
@ -863,16 +863,13 @@ export default {
|
|||
this.loadUser();
|
||||
this.oldTitle = this.$store.state.title;
|
||||
this.selectPage(this.startingPage);
|
||||
this.$root.$on('habitica:restoreTitle', () => {
|
||||
if (this.oldTitle) {
|
||||
this.$store.dispatch('common:setTitle', {
|
||||
fullTitle: this.oldTitle,
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
beforeDestroy () {
|
||||
this.$root.$off('habitica:restoreTitle');
|
||||
if (this.oldTitle) {
|
||||
this.$store.dispatch('common:setTitle', {
|
||||
fullTitle: this.oldTitle,
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
async loadUser () {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
:hide-footer="true"
|
||||
:hide-header="true"
|
||||
@hide="beforeHide"
|
||||
@hidden="onHidden"
|
||||
@shown="onShown()"
|
||||
>
|
||||
<profile
|
||||
|
|
@ -55,14 +54,11 @@ export default {
|
|||
},
|
||||
beforeHide () {
|
||||
if (this.$route.path !== window.location.pathname) {
|
||||
this.$root.$emit('habitica:restoreTitle');
|
||||
}
|
||||
},
|
||||
onHidden () {
|
||||
if (this.$route.path !== window.location.pathname) {
|
||||
this.$router.go(-1);
|
||||
this.$router.back();
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
</script>
|
||||
|
|
|
|||
7
website/client/src/store/actions/faq.js
Normal file
7
website/client/src/store/actions/faq.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import axios from 'axios';
|
||||
|
||||
export async function getFAQ () {
|
||||
const url = '/api/v4/faq?platform=web';
|
||||
const response = await axios.get(url);
|
||||
return response.data.data;
|
||||
}
|
||||
|
|
@ -18,6 +18,7 @@ import * as snackbars from './snackbars';
|
|||
import * as worldState from './worldState';
|
||||
import * as news from './news';
|
||||
import * as analytics from './analytics';
|
||||
import * as faq from './faq';
|
||||
|
||||
// Actions should be named as 'actionName' and can be accessed as 'namespace:actionName'
|
||||
// Example: fetch in user.js -> 'user:fetch'
|
||||
|
|
@ -41,6 +42,7 @@ const actions = flattenAndNamespace({
|
|||
worldState,
|
||||
news,
|
||||
analytics,
|
||||
faq,
|
||||
});
|
||||
|
||||
export default actions;
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
import axios from 'axios';
|
||||
|
||||
export async function getTags () {
|
||||
const url = 'api/v4/tags';
|
||||
const url = '/api/v4/tags';
|
||||
const response = await axios.get(url);
|
||||
return response.data.data;
|
||||
}
|
||||
|
||||
export async function createTag (store, payload) {
|
||||
const url = 'api/v4/tags';
|
||||
const url = '/api/v4/tags';
|
||||
const response = await axios.post(url, {
|
||||
name: payload.name,
|
||||
});
|
||||
|
|
@ -19,13 +19,13 @@ export async function createTag (store, payload) {
|
|||
}
|
||||
|
||||
export async function getTag (store, payload) {
|
||||
const url = `api/v4/tags/${payload.tagId}`;
|
||||
const url = `/api/v4/tags/${payload.tagId}`;
|
||||
const response = await axios.get(url);
|
||||
return response.data.data;
|
||||
}
|
||||
|
||||
export async function updateTag (store, payload) {
|
||||
const url = `api/v4/tags/${payload.tagId}`;
|
||||
const url = `/api/v4/tags/${payload.tagId}`;
|
||||
const response = await axios.put(url, {
|
||||
tagDetails: payload.tagDetails,
|
||||
});
|
||||
|
|
@ -33,7 +33,7 @@ export async function updateTag (store, payload) {
|
|||
}
|
||||
|
||||
export async function sortTag (store, payload) {
|
||||
const url = 'api/v4/reorder-tags';
|
||||
const url = '/api/v4/reorder-tags';
|
||||
const response = await axios.post(url, {
|
||||
tagId: payload.tagId,
|
||||
to: payload.to,
|
||||
|
|
@ -42,7 +42,7 @@ export async function sortTag (store, payload) {
|
|||
}
|
||||
|
||||
export async function deleteTag (store, payload) {
|
||||
const url = `api/v4/tags/${payload.tagId}`;
|
||||
const url = `/api/v4/tags/${payload.tagId}`;
|
||||
const response = await axios.delete(url);
|
||||
return response.data.data;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -740,5 +740,10 @@
|
|||
"backgroundAmongGiantMushroomsNotes": "Bewundere Riesige Pilze.",
|
||||
"backgroundAmongGiantMushroomsText": "Unter Riesigen Pilzen",
|
||||
"backgroundMistyAutumnForestText": "Nebeliger Herbstwald",
|
||||
"backgroundMistyAutumnForestNotes": "Durchstreife einen nebeligen Herbstwald."
|
||||
"backgroundMistyAutumnForestNotes": "Durchstreife einen nebeligen Herbstwald.",
|
||||
"backgroundAutumnBridgeText": "Brücke im Herbst",
|
||||
"backgroundAutumnBridgeNotes": "Bewundere die Schönheit einer Brücke im Herbst.",
|
||||
"backgrounds122022": "Set 103: Veröffentlicht im Dezember 2022",
|
||||
"backgroundBranchesOfAHolidayTreeText": "Äste eines Festtagsbaums",
|
||||
"backgroundBranchesOfAHolidayTreeNotes": "Baumle auf den Ästen eines Festtagsbaums."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -141,5 +141,8 @@
|
|||
"achievementWoodlandWizardModalText": "You collected all the forest pets!",
|
||||
"achievementBoneToPick": "Bone to Pick",
|
||||
"achievementBoneToPickText": "Has hatched all the Classic and Quest Skeleton Pets!",
|
||||
"achievementBoneToPickModalText": "You collected all the Classic and Quest Skeleton Pets!"
|
||||
"achievementBoneToPickModalText": "You collected all the Classic and Quest Skeleton Pets!",
|
||||
"achievementPolarPro": "Polar Pro",
|
||||
"achievementPolarProText": "Has hatched all Polar pets: Bear, Fox, Penguin, Whale, and Wolf!",
|
||||
"achievementPolarProModalText": "You collected all the Polar Pets!"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -843,6 +843,14 @@
|
|||
"backgroundSnowyVillageText": "Snowy Village",
|
||||
"backgroundSnowyVillageNotes": "Admire a Snowy Village.",
|
||||
|
||||
"backgrounds012023": "SET 104: Released January 2023",
|
||||
"backgroundRimeIceText": "Rime Ice",
|
||||
"backgroundRimeIceNotes": "Admire Sparkly Rime Ice.",
|
||||
"backgroundSnowyTempleText": "Snowy Temple",
|
||||
"backgroundSnowyTempleNotes": "View a Serene Snowy Temple.",
|
||||
"backgroundWinterLakeWithSwansText": "Winter Lake With Swans",
|
||||
"backgroundWinterLakeWithSwansNotes": "Enjoy Nature at a Winter Lake With Swans.",
|
||||
|
||||
"timeTravelBackgrounds": "Steampunk Backgrounds",
|
||||
"backgroundAirshipText": "Airship",
|
||||
"backgroundAirshipNotes": "Become a sky sailor on board your very own Airship.",
|
||||
|
|
|
|||
|
|
@ -67,6 +67,8 @@
|
|||
"webFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual. You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party. A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change. You can read more about [past World Bosses](https://habitica.fandom.com/wiki/World_Bosses) on the wiki.",
|
||||
|
||||
"faqQuestion13": "What is a Group Plan?",
|
||||
"iosFaqAnswer13": "## How do Group Plans work?\n\nA [Group Plan](/group-plans) gives your Party or Guild access to a shared task board that’s similar to your personal task board! It’s a shared Habitica experience where tasks can be created and checked off by anyone in the group.\n\nThere are also features available like member roles, status view, and task assigning that give you a more controlled experience. [Visit our wiki](https://habitica.fandom.com/wiki/Group_Plans) to learn more about our Group Plans’ features!\n\n## Who benefits from a Group Plan?\n\nGroup Plans work best when you have a small team of people who want to collaborate together. We recommend 2-5 members.\n\nGroup Plans are great for families, whether it’s a parent and child or you and a partner. Shared goals, chores, or responsibilities are easy to keep track of on one board.\n\nGroup Plans can also be useful for teams of colleagues that have shared goals, or managers that want to introduce their employees to gamification.\n\n## Quick tips for using Groups\n\nHere are some quick tips to get you started with your new Group. We’ll provide more details in the following sections:\n\n* Make a member a manager to give them the ability to create and edit tasks\n* Leave tasks unassigned if anyone can complete it and it only needs done once\n* Assign a task to one person to make sure no one else can complete their task\n* Assign a task to multiple people if they all need to complete it\n* Toggle the ability to display shared tasks on your personal board to not miss anything\n* You get rewarded for the tasks you complete, even multi-assigned\n* Task completion rewards aren’t shared or split between Team members\n* Use task color on the team board to judge the average completion rate of tasks\n* Regularly review the tasks on your Team Board to make sure they are still relevant\n* Missing a Daily won’t damage you or your team, but the task will degrade in color\n\n## How can others in the group create tasks?\n\nOnly the group leader and managers can create tasks. If you’d like a group member to be able to create tasks, then you should promote them to be a manager by going to the Group Information tab, viewing the member list, and clicking the dot icon by their name.\n\n## How does assigning a task work?\n\nGroup Plans give you the unique ability to assign tasks to other group members. Assigning a task is great for delegating. If you assign a task to someone, then other members are prevented from completing it.\n\nYou can also assign a task to multiple people if it needs to be completed by more than one member. For example, if everyone has to brush their teeth, create a task and assign it to each group member. They will all be able to check it off and get their individual rewards for doing so. The main task will show as complete once everyone checks it off.\n\n## How do unassigned tasks work?\n\nUnassigned tasks can be completed by anyone in the group, so leave a task unassigned to allow any member to complete it. For example, taking out the trash. Whoever takes out the trash can check off the unassigned task and it will show as completed for everyone.\n\n## How does the synchronized day reset work?\n\nShared tasks will reset at the same time for everyone to keep the shared task board in sync. This time is visible on the shared task board and is determined by the group leader’s day start time. Because shared tasks reset automatically, you will not get a chance to complete yesterday’s uncompleted shared Dailies when you check in the next morning.\n\nShared Dailies will not do damage if they are missed, however they will degrade in color to help visualize progress. We don’t want the shared experience to be a negative one!\n\n## How do I use my Group on the mobile apps?\n\nWhile the mobile apps don’t fully support all Group Plans functionality yet, you can still complete shared tasks from the iOS and Android app by copying the tasks onto your personal task board. You can switch this preference on from Settings in the mobile apps or from the group task board on the browser version. Now open and assigned shared tasks will display on your personal task board across all platforms.\n\n## What’s the difference between a Group’s shared tasks and Challenges?\n\nGroup Plan shared task boards are more dynamic than Challenges, in that they can constantly be updated and interacted with. Challenges are great if you have one set of tasks to send out to many people.\n\nGroup Plans are also a paid feature, while Challenges are available free to everyone.\n\nYou cannot assign specific tasks in Challenges, and Challenges do not have a shared day reset. In general, Challenges offer less control and direct interaction.",
|
||||
"androidFaqAnswer13": "## How do Group Plans work?\n\nA [Group Plan](/group-plans) gives your Party or Guild access to a shared task board that’s similar to your personal task board! It’s a shared Habitica experience where tasks can be created and checked off by anyone in the group.\n\nThere are also features available like member roles, status view, and task assigning that give you a more controlled experience. [Visit our wiki](https://habitica.fandom.com/wiki/Group_Plans) to learn more about our Group Plans’ features!\n\n## Who benefits from a Group Plan?\n\nGroup Plans work best when you have a small team of people who want to collaborate together. We recommend 2-5 members.\n\nGroup Plans are great for families, whether it’s a parent and child or you and a partner. Shared goals, chores, or responsibilities are easy to keep track of on one board.\n\nGroup Plans can also be useful for teams of colleagues that have shared goals, or managers that want to introduce their employees to gamification.\n\n## Quick tips for using Groups\n\nHere are some quick tips to get you started with your new Group. We’ll provide more details in the following sections:\n\n* Make a member a manager to give them the ability to create and edit tasks\n* Leave tasks unassigned if anyone can complete it and it only needs done once\n* Assign a task to one person to make sure no one else can complete their task\n* Assign a task to multiple people if they all need to complete it\n* Toggle the ability to display shared tasks on your personal board to not miss anything\n* You get rewarded for the tasks you complete, even multi-assigned\n* Task completion rewards aren’t shared or split between Team members\n* Use task color on the team board to judge the average completion rate of tasks\n* Regularly review the tasks on your Team Board to make sure they are still relevant\n* Missing a Daily won’t damage you or your team, but the task will degrade in color\n\n## How can others in the group create tasks?\n\nOnly the group leader and managers can create tasks. If you’d like a group member to be able to create tasks, then you should promote them to be a manager by going to the Group Information tab, viewing the member list, and clicking the dot icon by their name.\n\n## How does assigning a task work?\n\nGroup Plans give you the unique ability to assign tasks to other group members. Assigning a task is great for delegating. If you assign a task to someone, then other members are prevented from completing it.\n\nYou can also assign a task to multiple people if it needs to be completed by more than one member. For example, if everyone has to brush their teeth, create a task and assign it to each group member. They will all be able to check it off and get their individual rewards for doing so. The main task will show as complete once everyone checks it off.\n\n## How do unassigned tasks work?\n\nUnassigned tasks can be completed by anyone in the group, so leave a task unassigned to allow any member to complete it. For example, taking out the trash. Whoever takes out the trash can check off the unassigned task and it will show as completed for everyone.\n\n## How does the synchronized day reset work?\n\nShared tasks will reset at the same time for everyone to keep the shared task board in sync. This time is visible on the shared task board and is determined by the group leader’s day start time. Because shared tasks reset automatically, you will not get a chance to complete yesterday’s uncompleted shared Dailies when you check in the next morning.\n\nShared Dailies will not do damage if they are missed, however they will degrade in color to help visualize progress. We don’t want the shared experience to be a negative one!\n\n## How do I use my Group on the mobile apps?\n\nWhile the mobile apps don’t fully support all Group Plans functionality yet, you can still complete shared tasks from the iOS and Android app by copying the tasks onto your personal task board. You can switch this preference on from Settings in the mobile apps or from the group task board on the browser version. Now open and assigned shared tasks will display on your personal task board across all platforms.\n\n## What’s the difference between a Group’s shared tasks and Challenges?\n\nGroup Plan shared task boards are more dynamic than Challenges, in that they can constantly be updated and interacted with. Challenges are great if you have one set of tasks to send out to many people.\n\nGroup Plans are also a paid feature, while Challenges are available free to everyone.\n\nYou cannot assign specific tasks in Challenges, and Challenges do not have a shared day reset. In general, Challenges offer less control and direct interaction.",
|
||||
"webFaqAnswer13": "## How do Group Plans work?\n\nA [Group Plan](/group-plans) gives your Party or Guild access to a shared task board that’s similar to your personal task board! It’s a shared Habitica experience where tasks can be created and checked off by anyone in the group.\n\nThere are also features available like member roles, status view, and task assigning that give you a more controlled experience. [Visit our wiki](https://habitica.fandom.com/wiki/Group_Plans) to learn more about our Group Plans’ features!\n\n## Who benefits from a Group Plan?\n\nGroup Plans work best when you have a small team of people who want to collaborate together. We recommend 2-5 members.\n\nGroup Plans are great for families, whether it’s a parent and child or you and a partner. Shared goals, chores, or responsibilities are easy to keep track of on one board.\n\nGroup Plans can also be useful for teams of colleagues that have shared goals, or managers that want to introduce their employees to gamification.\n\n## Quick tips for using Groups\n\nHere are some quick tips to get you started with your new Group. We’ll provide more details in the following sections:\n\n* Make a member a manager to give them the ability to create and edit tasks\n* Leave tasks unassigned if anyone can complete it and it only needs done once\n* Assign a task to one person to make sure no one else can complete their task\n* Assign a task to multiple people if they all need to complete it\n* Toggle the ability to display shared tasks on your personal board to not miss anything\n* You get rewarded for the tasks you complete, even multi-assigned\n* Task completion rewards aren’t shared or split between Team members\n* Use task color on the team board to judge the average completion rate of tasks\n* Regularly review the tasks on your Team Board to make sure they are still relevant\n* Missing a Daily won’t damage you or your team, but the task will degrade in color\n\n## How can others in the group create tasks?\n\nOnly the group leader and managers can create tasks. If you’d like a group member to be able to create tasks, then you should promote them to be a manager by going to the Group Information tab, viewing the member list, and clicking the dot icon by their name.\n\n## How does assigning a task work?\n\nGroup Plans give you the unique ability to assign tasks to other group members. Assigning a task is great for delegating. If you assign a task to someone, then other members are prevented from completing it.\n\nYou can also assign a task to multiple people if it needs to be completed by more than one member. For example, if everyone has to brush their teeth, create a task and assign it to each group member. They will all be able to check it off and get their individual rewards for doing so. The main task will show as complete once everyone checks it off.\n\n## How do unassigned tasks work?\n\nUnassigned tasks can be completed by anyone in the group, so leave a task unassigned to allow any member to complete it. For example, taking out the trash. Whoever takes out the trash can check off the unassigned task and it will show as completed for everyone.\n\n## How does the synchronized day reset work?\n\nShared tasks will reset at the same time for everyone to keep the shared task board in sync. This time is visible on the shared task board and is determined by the group leader’s day start time. Because shared tasks reset automatically, you will not get a chance to complete yesterday’s uncompleted shared Dailies when you check in the next morning.\n\nShared Dailies will not do damage if they are missed, however they will degrade in color to help visualize progress. We don’t want the shared experience to be a negative one!\n\n## How do I use my Group on the mobile apps?\n\nWhile the mobile apps don’t fully support all Group Plans functionality yet, you can still complete shared tasks from the iOS and Android app by copying the tasks onto your personal task board. You can switch this preference on from Settings in the mobile apps or from the group task board on the browser version. Now open and assigned shared tasks will display on your personal task board across all platforms.\n\n## What’s the difference between a Group’s shared tasks and Challenges?\n\nGroup Plan shared task boards are more dynamic than Challenges, in that they can constantly be updated and interacted with. Challenges are great if you have one set of tasks to send out to many people.\n\nGroup Plans are also a paid feature, while Challenges are available free to everyone.\n\nYou cannot assign specific tasks in Challenges, and Challenges do not have a shared day reset. In general, Challenges offer less control and direct interaction.",
|
||||
|
||||
"iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), come ask in the Tavern chat under Menu > Tavern! We're happy to help.",
|
||||
|
|
|
|||
|
|
@ -438,6 +438,9 @@
|
|||
"headSpecialNye2021Text": "Preposterous Party Hat",
|
||||
"headSpecialNye2021Notes": "You've received a Preposterous Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
|
||||
|
||||
"headSpecialNye2022Text": "Fantastic Party Hat",
|
||||
"headSpecialNye2022Notes": "You've received a Fantastic Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
|
||||
|
||||
"weaponSpecialSpring2022RogueText": "Giant Earring Stud",
|
||||
"weaponSpecialSpring2022RogueNotes": "A shiny! It’s so shiny and gleaming and pretty and nice and all yours! Increases Strength by <%= str %>. Limited Edition 2022 Spring Gear.",
|
||||
"weaponSpecialSpring2022WarriorText": "Inside-Out Umbrella",
|
||||
|
|
@ -456,6 +459,15 @@
|
|||
"weaponSpecialFall2022HealerText": "Right Peeker Eye",
|
||||
"weaponSpecialFall2022HealerNotes": "To claim victory, hold it forth and utter the words of command: 'Eye One!' Increases Intelligence by <%= int %>. Limited Edition 2022 Fall Gear.",
|
||||
|
||||
"weaponSpecialWinter2023RogueText": "Green Satin Sash",
|
||||
"weaponSpecialWinter2023RogueNotes": "Legends tell of Rogues who snare their opponents' weapons, disarm them, then gift the item back just to be cute. Incrases Strength by <%= str %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"weaponSpecialWinter2023WarriorText": "Tusk Spear",
|
||||
"weaponSpecialWinter2023WarriorNotes": "The two prongs of this spear are shaped like walrus tusks but are twice as powerful. Jab at doubts and at silly poems until they back off! Increases Strength by <%= str %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"weaponSpecialWinter2023MageText": "Foxfire",
|
||||
"weaponSpecialWinter2023MageNotes": "Neither fox nor fire, but plenty festive! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"weaponSpecialWinter2023HealerText": "Throwing Wreath",
|
||||
"weaponSpecialWinter2023HealerNotes": "Watch this festive, prickly wreath spin through the air toward your enemy or obstacles and return to you like a boomerang for another throw. Increases Intelligence by <%= int %>. Limited Edition 2022-2023 Winter 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",
|
||||
|
|
@ -1109,6 +1121,15 @@
|
|||
"armorSpecialFall2022HealerText": "Profusion of Peeker Pods",
|
||||
"armorSpecialFall2022HealerNotes": "How many peeps could a Peeker peep, if a Peeker could peep peeps? Increases Constitution by <%= con %>. Limited Edition 2022 Fall Gear.",
|
||||
|
||||
"armorSpecialWinter2023RogueText": "Ribbon Wrap",
|
||||
"armorSpecialWinter2023RogueNotes": "Obtain items. Bundle them up in pretty paper. And give them to your local Rogue! The season demands it. Increases Perception by <%= per %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"armorSpecialWinter2023WarriorText": "Walrus Suit",
|
||||
"armorSpecialWinter2023WarriorNotes": "This tough walrus suit is perfect for a walk along a beach in the middle of the night. Increases Constitution by <%= con %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"armorSpecialWinter2023MageText": "Fairy Light Gown",
|
||||
"armorSpecialWinter2023MageNotes": "Just because you have lights on, that doesn't make you a tree! ...maybe some other year. Increases Intelligence by <%= int %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"armorSpecialWinter2023HealerText": "Cardinal Suit",
|
||||
"armorSpecialWinter2023HealerNotes": "This bright cardinal suit is perfect for flying high above your problems. Increases Constitution by <%= con %>. Limited Edition 2022-2023 Winter 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",
|
||||
|
|
@ -1404,7 +1425,9 @@
|
|||
"armorArmoireSheetGhostCostumeNotes": "Boo! This is the scariest costume in all of Habitica, so wear it wisely... and watch your step so you don’t trip. Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
"armorArmoireJewelersApronText": "Jeweler's Apron",
|
||||
"armorArmoireJewelersApronNotes": "This heavy-duty apron is just the thing to wear when you feel creative. Best of all, there are dozens of small pockets to hold everything you need. Increases Intelligence by <%= int %>. Enchanted Armoire: Jeweler Set (Item 1 of 4).",
|
||||
|
||||
"armorArmoireShawlCollarCoatText": "Shawl-Collar Coat",
|
||||
"armorArmoireShawlCollarCoatNotes": "A wise wizard once said there’s nothing better than being both cozy and productive! Wear this warm and stylish coat as you conquer the year’s challenges. Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
|
||||
|
||||
"headgear": "helm",
|
||||
"headgearCapitalized": "Headgear",
|
||||
|
||||
|
|
@ -1835,6 +1858,15 @@
|
|||
"headSpecialFall2022MageNotes": "Entrance and lure others close with this magical maiden mask. Increases Perception by <%= per %>. Limited Edition 2022 Fall Gear.",
|
||||
"headSpecialFall2022HealerText": "Peeker Mask",
|
||||
"headSpecialFall2022HealerNotes": "Beauty is in there. Somewhere! Increases Intelligence by <%= int %>. Limited Edition 2022 Fall Gear.",
|
||||
|
||||
"headSpecialWinter2023RogueText": "Gift Bow",
|
||||
"headSpecialWinter2023RogueNotes": "People's temptations to “unwrap” your hair will give you opportunities to practice your ducks and dodges. Increases Perception by <%= per %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"headSpecialWinter2023WarriorText": "Walrus Helm",
|
||||
"headSpecialWinter2023WarriorNotes": "This walrus helm is perfect for chatting with a friend or partaking in a clever meal. Increases Strength by <%= str %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"headSpecialWinter2023MageText": "Fairy-Lit Tiara",
|
||||
"headSpecialWinter2023MageNotes": "Were you hatched with a Starry Night potion? Because I've got stars in my eyes for you. Increases Perception by <%= per %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"headSpecialWinter2023HealerText": "Cardinal Helm",
|
||||
"headSpecialWinter2023HealerNotes": "This cardinal helm is perfect for whistling and singing to herald the winter season. Increases Intelligence by <%= int %>. Limited Edition 2022-2023 Winter 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.",
|
||||
|
|
@ -1979,6 +2011,8 @@
|
|||
"headMystery202210Notes": "This scaly hood will surely terrify your To-Do list into submission! Confers no benefit. October 2022 Subscriber Item.",
|
||||
"headMystery202211Text": "Electromancer Hat",
|
||||
"headMystery202211Notes": "Be careful with this powerful hat, its effect on admirers can be quite shocking! Confers no benefit. November 2022 Subscriber Item.",
|
||||
"headMystery202301Text": "Valiant Vulpine Ears",
|
||||
"headMystery202301Notes": "Your hearing will be so sharp you'll hear the dawn breaking and the dew sparkling. Confers no benefit. January 2023 Subscriber Item.",
|
||||
"headMystery301404Text": "Fancy Top Hat",
|
||||
"headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
|
||||
"headMystery301405Text": "Basic Top Hat",
|
||||
|
|
@ -2396,6 +2430,11 @@
|
|||
"shieldSpecialFall2022HealerText": "Left Peeker Eye",
|
||||
"shieldSpecialFall2022HealerNotes": "Eye Two, look upon this costume and tremble. Increases Constitution by <%= con %>. Limited Edition 2022 Fall Gear.",
|
||||
|
||||
"shieldSpecialWinter2023WarriorText": "Oyster Shield",
|
||||
"shieldSpecialWinter2023WarriorNotes": "The time has come, the Walrus said, to talk of many things: of oyster shells—and winter bells—of songs that someone sings—and where this shield’s pearl has gone—or what the new year brings! Increases Constitution by <%= con %>. Limited Edition 2022-2023 Winter Gear.",
|
||||
"shieldSpecialWinter2023HealerText": "Cool Jams",
|
||||
"shieldSpecialWinter2023HealerNotes": "Your song of frost and snow will soothe the spirits of all who hear. Increases Constitution by <%= con %>. Limited Edition 2022-2023 Winter 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",
|
||||
|
|
@ -2622,6 +2661,8 @@
|
|||
"backMystery202205Notes": "The mighty flap of these vast wings can be heard echoing among the dunes. Confers no benefit. May 2022 Subscriber Item.",
|
||||
"backMystery202206Text": "Sea Sprite Wings",
|
||||
"backMystery202206Notes": "Whimsical wings made of water and waves! Confers no benefit. June 2022 Subscriber Item.",
|
||||
"backMystery202301Text": "Five Tails of Valor",
|
||||
"backMystery202301Notes": "These fluffy tails contain ethereal power and also a high level of charm! Confers no benefit. January 2023 Subscriber Item.",
|
||||
|
||||
"backSpecialWonderconRedText": "Mighty Cape",
|
||||
"backSpecialWonderconRedNotes": "Swishes with strength and beauty. Confers no benefit. Special Edition Convention Item.",
|
||||
|
|
|
|||
|
|
@ -191,6 +191,10 @@
|
|||
"fall2022OrcWarriorSet": "Orc (Warrior)",
|
||||
"fall2022HarpyMageSet": "Harpy (Mage)",
|
||||
"fall2022WatcherHealerSet": "Peeker (Healer)",
|
||||
"winter2023WalrusWarriorSet": "Walrus (Warrior)",
|
||||
"winter2023FairyLightsMageSet": "Fairy Lights (Mage)",
|
||||
"winter2023CardinalHealerSet": "Cardinal (Healer)",
|
||||
"winter2023RibbonRogueSet": "Ribbon (Rogue)",
|
||||
"eventAvailability": "Available for purchase until <%= date(locale) %>.",
|
||||
"eventAvailabilityReturning": "Available for purchase until <%= availableDate(locale) %>. This potion was last available in <%= previousDate(locale) %>.",
|
||||
"dateEndJanuary": "January 31",
|
||||
|
|
@ -229,7 +233,7 @@
|
|||
"howItWorks": "How it Works",
|
||||
"g1g1HowItWorks": "Type in the username of the account you’d like to gift to. From there, pick the sub length you’d like to gift and check out. Your account will automatically be rewarded with the same level of subscription you just gifted.",
|
||||
"limitations": "Limitations",
|
||||
"g1g1Limitations": "This is a limited time event that starts on December 16th at 8:00 AM ET (13:00 UTC) and will end January 6th at 8:00 PM ET (1:00 UTC). This promotion only applies when you gift to another Habitican. If you or your gift recipient already have a subscription, the gifted subscription will add months of credit that will only be used after the current subscription is canceled or expires.",
|
||||
"g1g1Limitations": "This is a limited time event that starts on December 15th at 8:00 AM ET (13:00 UTC) and will end January 8th at 11:59 PM ET (January 9th 04:59 UTC). This promotion only applies when you gift to another Habitican. If you or your gift recipient already have a subscription, the gifted subscription will add months of credit that will only be used after the current subscription is canceled or expires.",
|
||||
"noLongerAvailable": "This item is no longer available.",
|
||||
"gemSaleHow": "Between <%= eventStartMonth %> <%= eventStartOrdinal %> and <%= eventEndOrdinal %>, simply purchase any Gem bundle like usual and your account will be credited with the promotional amount of Gems. More Gems to spend, share, or save for any future releases!",
|
||||
"gemSaleLimitations": "This promotion only applies during the limited time event. This event starts on <%= eventStartMonth %> <%= eventStartOrdinal %> at 8:00 AM EDT (12:00 UTC) and will end <%= eventStartMonth %> <%= eventEndOrdinal %> at 8:00 PM EDT (00:00 UTC). The promo offer is only available when buying Gems for yourself."
|
||||
|
|
|
|||
|
|
@ -145,6 +145,7 @@
|
|||
"mysterySet202210": "Ominous Ophidian Set",
|
||||
"mysterySet202211": "Electromancer Set",
|
||||
"mysterySet202212": "Glacial Guardian Set",
|
||||
"mysterySet202301": "Valiant Vulpine Set",
|
||||
"mysterySet301404": "Steampunk Standard Set",
|
||||
"mysterySet301405": "Steampunk Accessories Set",
|
||||
"mysterySet301703": "Peacock Steampunk Set",
|
||||
|
|
@ -201,12 +202,16 @@
|
|||
"lookingForMoreItems": "Looking for More Items?",
|
||||
"dropCapSubs": "Habitica subscribers can find double the random items each day and receive monthly mystery items!",
|
||||
"subscriptionCanceled": "Your subscription is canceled",
|
||||
"subscriptionInactiveDate": "Your subscription benefits will become inactive on <strong><%= date %></strong>",
|
||||
"subscriptionInactiveDate": "Your subscription benefits will become inactive on <br><strong><%= date %></strong>",
|
||||
"subscriptionStats": "Subscription Stats",
|
||||
"subMonths": "Sub Months",
|
||||
"needToUpdateCard": "Need to update your card?",
|
||||
"readyToResubscribe": "Are you ready to resubscribe?",
|
||||
"cancelYourSubscription": "Cancel your subscription?",
|
||||
"cancelSubAlternatives": "If you're having technical problems or Habitica doesn't seem to be working out for you, please consider <a href='mailto:admin@habitica.com'>contacting us</a>. We want to help you get the most from Habitica.",
|
||||
"sendAGift": "Send Gift"
|
||||
"sendAGift": "Send Gift",
|
||||
"haveNonRecurringSub": "You have a non-recurring gift subscription.",
|
||||
"switchToRecurring": "Switch to a recurring subscription?",
|
||||
"continueGiftSubBenefits": "Want to continue your benefits? You can start a new subscription before your gifted one runs out to keep your benefits active.",
|
||||
"subscriptionCreditConversion": "Starting a new subscription will convert any remaining months to credit that will be used after the recurring subscription is canceled."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1417,21 +1417,21 @@
|
|||
"shieldSpecialSpring2018WarriorText": "Escudo de la Mañana",
|
||||
"shieldSpecialSpring2018WarriorNotes": "Este robusto escudo brilla con la gloria de la primera luz. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de primavera 2018.",
|
||||
"shieldSpecialSpring2018HealerText": "Escudo Granate",
|
||||
"shieldSpecialSpring2018HealerNotes": "A pesar de su apariencia caprichosa, ¡este escudo granate es bastante duradero! Aumenta la Constitución en <%= con %>. Equipamiento de Primavera Edición Limitada del 2018.",
|
||||
"shieldSpecialSummer2018WarriorText": "Escudo de cráneo beta",
|
||||
"shieldSpecialSummer2018WarriorNotes": "Hecho de piedra, este temible escudo con forma de calavera inflige terror a los peces enemigos mientras reúnes a tus mascotas esqueleto y monturas. Aumenta la Constitución en <%= con %>. Equipo de Verano Edición Limitada del 2018.",
|
||||
"shieldSpecialSummer2018HealerText": "Emblema de monarca sirena",
|
||||
"shieldSpecialSummer2018HealerNotes": "Este escudo puede producir una cúpula de aire para el beneficio de los visitantes terrestres al visitar tu reino acuático. Aumenta la Constitución en <%= con %>. Equipo de Verano Edición Limitada del 2018.",
|
||||
"shieldSpecialSpring2018HealerNotes": "A pesar de su apariencia caprichosa, ¡este escudo granate es bastante duradero! Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de primavera 2018.",
|
||||
"shieldSpecialSummer2018WarriorText": "Escudo de Cráneo Beta",
|
||||
"shieldSpecialSummer2018WarriorNotes": "Hecho de piedra, este temible escudo con forma de calavera inflige terror a los peces enemigos mientras reúnes a tus mascotas esqueleto y monturas. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de verano 2018.",
|
||||
"shieldSpecialSummer2018HealerText": "Emblema de Monarca Sirena",
|
||||
"shieldSpecialSummer2018HealerNotes": "Este escudo puede producir una cúpula de aire para el beneficio de los visitantes terrestres al visitar tu reino acuático. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de verano 2018.",
|
||||
"shieldSpecialFall2018RogueText": "Vial de la Tentación",
|
||||
"shieldSpecialFall2018RogueNotes": "Este frasco representa todas las distracciones y problemas que te impiden dar lo mejor de ti. ¡Resiste! ¡Te estamos apoyando! Aumenta la Fuerza en <%= str %>. Edición Limitada de Equipamiento de Otoño 2018.",
|
||||
"shieldSpecialFall2018RogueNotes": "Este frasco representa todas las distracciones y problemas que te impiden dar lo mejor de ti. ¡Resiste! ¡Te estamos apoyando! Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de otoño 2018.",
|
||||
"shieldSpecialFall2018WarriorText": "Escudo Brillante",
|
||||
"shieldSpecialFall2018WarriorNotes": "Super brillante para disuadir a cualquier gorgona problemática de asomarse por las esquinas. Aumenta la Constitución en <%= con %>. Edición Limitada de Equipamiento de Otoño 2018.",
|
||||
"shieldSpecialFall2018WarriorNotes": "Super brillante para disuadir a cualquier gorgona problemática de asomarse por las esquinas. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de otoño 2018.",
|
||||
"shieldSpecialFall2018HealerText": "Escudo Hambriento",
|
||||
"shieldSpecialFall2018HealerNotes": "Con sus fauces bien abiertas, este escudo absorberá todos los golpes de tu enemigo. Aumenta la Constitución en <%= con %>. Edición Limitada de Equipamiento de Otoño 2018.",
|
||||
"shieldSpecialFall2018HealerNotes": "Con sus fauces bien abiertas, este escudo absorberá todos los golpes de tu enemigo. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de otoño 2018.",
|
||||
"shieldSpecialWinter2019WarriorText": "Escudo Helado",
|
||||
"shieldSpecialWinter2019WarriorNotes": "Este escudo fue fabricado usando las más gruesas capas de hielo del glaciar más antiguo de las Estepas de Stoïkalm. Aumenta la Constitución en <%= con %>. Equipamiento de Invierno Edición Limitada de 2018-2019.",
|
||||
"shieldSpecialWinter2019WarriorNotes": "Este escudo fue fabricado usando las más gruesas capas de hielo del glaciar más antiguo de las Estepas de Stoïkalm. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de invierno 2018-2019.",
|
||||
"shieldSpecialWinter2019HealerText": "Cristales de Hielo Encantados",
|
||||
"shieldSpecialWinter2019HealerNotes": "Puede que el fino hielo se rompa, pero estos perfectos cristales devolverán cualquier golpe antes de que impacte. Aumenta la Constitución en <%= con %>. Equipamiento de Invierno Edición Limitada de 2018-2019.",
|
||||
"shieldSpecialWinter2019HealerNotes": "Puede que el fino hielo se rompa, pero estos perfectos cristales devolverán cualquier golpe antes de que impacte. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de invierno 2018-2019.",
|
||||
"shieldMystery201601Text": "Destructora de Resoluciones",
|
||||
"shieldMystery201601Notes": "Esta espada se puede usar para desviar a todas las distracciones. No otorga ningún beneficio. Artículo de Suscriptor de Enero 2016.",
|
||||
"shieldMystery201701Text": "Escudo para congelar el tiempo",
|
||||
|
|
@ -2289,16 +2289,16 @@
|
|||
"headArmoireGuardiansBonnetNotes": "¡Ponte este atractivo gorro para pastorear tus tareas! Aumenta la constitución en <%= con %>. Armario Encantado: Conjunto de guardián de los pastores (artículo 1 de 3).",
|
||||
"headArmoireHeraldsCapNotes": "Este gorro de heraldo incluye una alegre pluma. Aumenta la inteligencia en <%= int %>. Armario Encantado: Conjunto de heraldo (articulo 2 de 4).",
|
||||
"headArmoireMedievalLaundryHatNotes": "No es que sea un gorro muy elaborado, pero para lavar la ropa... servirá. Aumenta la inteligencia en <%= int %>. Armario Encantado: Conjunto de lavanderos medievales (artículo 4 de 6).",
|
||||
"shieldSpecialSummer2019HealerNotes": "Deje que aquellos que necesitan ayuda sepan que está en camino, gracias al sonoro estruendo de esta trompeta de concha. Aumenta la constitución en <%= con %>. Equipamiento de edición limitada de verano 2019.",
|
||||
"shieldSpecialSummer2019HealerNotes": "Deje que aquellos que necesitan ayuda sepan que está en camino, gracias al sonoro estruendo de esta trompeta de concha. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de verano 2019.",
|
||||
"headArmoireJadeHelmText": "Caso de jade",
|
||||
"headArmoirePinkFloppyHatNotes": "Se han cosido muchos hechizos en este simple sombrero, dándole un color rosa perfecto. Aumenta la inteligencia en <%= int %>. Armario Encantado: Conjunto casual rosa (artículo 1 de 3).",
|
||||
"headArmoireHornsOfAutumnNotes": "¡Desenvaina el poder del aire fresco de esta temporada y canalízalo a través de tu magia! Aumenta la fuerza en <%= str %>. Armario Encantado: Conjunto de hechicero otoñal (artículo 1 de 4).",
|
||||
"headArmoireNightcapText": "Gorro de dormir",
|
||||
"shieldSpecialSpring2019WarriorNotes": "¡Deja que el poder de la clorofila mantenga a raya a tus enemigos! Aumenta la constitución en <%= con %>. Equipamiento de edición limitada de primavera 2019.",
|
||||
"shieldSpecialSpring2019WarriorNotes": "¡Deja que el poder de la clorofila mantenga a raya a tus enemigos! Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de primavera 2019.",
|
||||
"headArmoireBlueMoonHelmText": "Yelmo de la luna azul",
|
||||
"headArmoireMedievalLaundryHatText": "Gorro de lavandero",
|
||||
"shieldSpecialSpring2019HealerNotes": "Este escudo brillante en realidad está hecho de chocolate recubierto de caramelo. Aumenta la constitución en <%= con %>. Equipamiento de edición limitada de primavera 2019.",
|
||||
"shieldSpecialSummer2019WarriorNotes": "Refúgiate tras este robusto escudo redondo, que lleva grabado como blasón a tu reptil favorito. Aumenta la constitución en <%= con %>. Equipamiento de edición limitada de verano 2019.",
|
||||
"shieldSpecialSpring2019HealerNotes": "Este escudo brillante en realidad está hecho de chocolate recubierto de caramelo. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de primavera 2019.",
|
||||
"shieldSpecialSummer2019WarriorNotes": "Refúgiate tras este robusto escudo redondo, que lleva grabado como blasón a tu reptil favorito. Aumenta la Constitución en <%= con %>. Equipamiento de edición limitada de verano 2019.",
|
||||
"headArmoireMedievalLaundryCapText": "Gorro de lavandero",
|
||||
"headArmoireGuardiansBonnetText": "Gorrito de guardián",
|
||||
"headArmoireRubberDuckyNotes": "¡El compañero perfecto para un indulgente día de spa! Aunque sorprendentemente, también sabe mucho sobre todo tipo de problemas de software. Aumenta la inteligencia en <%= int %>. Armario Encantado: Conjunto de baño de burbujas (artículo 1 de 4).",
|
||||
|
|
|
|||
|
|
@ -138,5 +138,11 @@
|
|||
"achievementGroupsBeta2022Text": "Vous et votre groupe avez fourni un retour de grande valeur pour aider aux tests d'Habitica.",
|
||||
"achievementWoodlandWizardModalText": "Vous avez collecté tous les familiers de la forêt !",
|
||||
"achievementWoodlandWizard": "Sorcellerie de sous-bois",
|
||||
"achievementWoodlandWizardText": "A fait éclore toutes les créatures de la forêt de couleur basique : Blaireau, ours, cerf, renard, grenouille, hérisson, hiboux, escargot, écureuil et arbrisseau !"
|
||||
"achievementWoodlandWizardText": "A fait éclore toutes les créatures de la forêt de couleur basique : Blaireau, ours, cerf, renard, grenouille, hérisson, hiboux, escargot, écureuil et arbrisseau !",
|
||||
"achievementBoneToPick": "Un os à ronger",
|
||||
"achievementBoneToPickText": "A fait éclore tous les familiers squelettes classiques et de quête !",
|
||||
"achievementBoneToPickModalText": "Vous avez collecté tous les familiers squelette classiques et de quête !",
|
||||
"achievementPolarPro": "Pro polaire",
|
||||
"achievementPolarProText": "A fait éclore tous les familiers polaires : Ours, renard, pingouin, baleine et loup !",
|
||||
"achievementPolarProModalText": "Vous avez collecté tous les familiers polaires !"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -728,5 +728,26 @@
|
|||
"backgroundAutumnPicnicText": "Pique-nique automnal",
|
||||
"backgroundOldPhotoText": "Vieille photo",
|
||||
"backgroundAutumnPicnicNotes": "Appréciez un pique-nique automnal.",
|
||||
"backgroundOldPhotoNotes": "Prenez la pose sur une vieille photo."
|
||||
"backgroundOldPhotoNotes": "Prenez la pose sur une vieille photo.",
|
||||
"backgrounds112022": "Ensemble 102 : sorti en novembre 2022",
|
||||
"backgroundAmongGiantMushroomsNotes": "Émerveillez-vous parmi les champignons géants.",
|
||||
"backgroundAmongGiantMushroomsText": "Parmi les champignons géants",
|
||||
"backgroundMistyAutumnForestText": "Forêt automnale brumeuse",
|
||||
"backgroundMistyAutumnForestNotes": "Baladez-vous dans une forêt automnale brumeuse.",
|
||||
"backgroundAutumnBridgeText": "Pont en automne",
|
||||
"backgroundAutumnBridgeNotes": "Admirez la beauté d'un pont en automne.",
|
||||
"backgrounds102022": "Ensemble 101 : sorti en octobre 2022",
|
||||
"backgroundSpookyRuinsText": "Ruines terrifiantes",
|
||||
"backgroundSpookyRuinsNotes": "Explorez des ruines terrifiantes.",
|
||||
"backgroundMaskMakersWorkshopText": "Atelier de fabrication de masques",
|
||||
"backgroundMaskMakersWorkshopNotes": "Essayez un nouveau visage dans l'atelier de fabrication de masques.",
|
||||
"backgroundCemeteryGateText": "Porte de cimetière",
|
||||
"backgroundCemeteryGateNotes": "Hantez la porte d'un cimetière.",
|
||||
"backgrounds122022": "Ensemble 103 : sorti en décembre 2022",
|
||||
"backgroundBranchesOfAHolidayTreeText": "Branches d'un sapin de Noël",
|
||||
"backgroundBranchesOfAHolidayTreeNotes": "Batifoles sur les branches d'un sapin de Noël.",
|
||||
"backgroundInsideACrystalText": "L'intérieur d'un cristal",
|
||||
"backgroundInsideACrystalNotes": "Surveillez depuis l'intérieur d'un cristal.",
|
||||
"backgroundSnowyVillageText": "Village enneigé",
|
||||
"backgroundSnowyVillageNotes": "Admirez un village enneigé."
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -2704,5 +2704,83 @@
|
|||
"weaponSpecialFall2022RogueNotes": "Non seulement vous pouvez vous défendre avec ce concombre, mais il servira aussi de casse-croûte savoureux. Augmente la force de <%= str %>. Équipement en édition limitée de l'automne 2022.",
|
||||
"weaponSpecialFall2022WarriorNotes": "Elle est peut-être plus prévue pour couper les bûches Ou les tranches de pain croustillant que les armures ennemies, mais GRRR ! Ça a l'air terrifiant ! Augmente la force de <%= str %>. Équipement en édition limitée de l'automne 2022.",
|
||||
"armorSpecialFall2022RogueNotes": "Que vous nagiez, que vous vous faufiliez, ou que vous luttiez, vous serez tranquille dans cette armure. Augmente la perception de <%= per %>. Équipement en édition limitée de l'automne 2022.",
|
||||
"weaponSpecialFall2022RogueText": "Lame concombre"
|
||||
"weaponSpecialFall2022RogueText": "Lame concombre",
|
||||
"weaponMystery202211Text": "Bâton d'électromancie",
|
||||
"weaponArmoireMagicSpatulaText": "Spatule magique",
|
||||
"weaponArmoireFinelyCutGemNotes": "Quelle trouvaille ! Ce bijou étonnant, taillé avec précision, sera le joyau de votre collection. Et il pourrait contenir une magie spéciale, qui n'attend que vous pour l'exploiter. Augmente la constitution de <%= con %>. Armoire enchantée : Ensemble de bijouterie (objet 4 de 4).",
|
||||
"armorArmoireSheetGhostCostumeText": "Costume de fantôme",
|
||||
"weaponArmoireMagicSpatulaNotes": "Regardez votre nourriture voler et se retourner dans les airs. Vous aurez de la chance pour la journée si, comme par magie, elle se retourne trois fois avant de retomber sur votre spatule. Augmente la perception de <%= per %>. Armoire enchantée : ensemble d'instruments de cuisine (objet 1 de 2).",
|
||||
"armorArmoireSheetGhostCostumeNotes": "Bouh ! C'est le costume le plus effrayant de tout Habitica, alors portez-le à bon escient... et faites attention où vous mettez les pieds pour ne pas trébucher. Augmente la constitution de <%= con %>. Armoire enchantée : objet indépendant.",
|
||||
"armorArmoireJewelersApronNotes": "Ce tablier résistant est exactement ce qu'il faut porter lorsque vous vous sentez créatif. Mieux encore, il comporte des dizaines de petites poches pour ranger tout ce dont vous avez besoin. Augmente l'intelligence de <%= int %>. Armoire enchantée : ensemble de bijouterie (objet 1 de 4).",
|
||||
"weaponMystery202211Notes": "Exploitez la puissance impressionnante d'une tempête de foudre avec ce bâton. Ne confère aucun bonus. Objet d'abonnement de novembre 2022.",
|
||||
"armorSpecialFall2022HealerNotes": "Combien d'espions pourrait épier un voyeur, si un voyeur pouvait épier des espions ? Augmente la constitution de <%= con %>. Objet en édition limitée de l'automne 2022.",
|
||||
"weaponMystery202212Text": "Baguette glaciale",
|
||||
"weaponMystery202212Notes": "Le flocon de neige lumineux de cette baguette a le pouvoir de réchauffer les cœurs, même lors des nuits d'hiver les plus froides ! Ne confère aucun bonus. Objet d'abonnement de décembre 2022.",
|
||||
"armorSpecialFall2022WarriorText": "Armure orc",
|
||||
"armorSpecialFall2022MageText": "Armure de harpie",
|
||||
"headSpecialFall2022WarriorNotes": "Des défenses assez résistantes et acérées pour percer une citrouille ! GROAR ! Augmente la force de <%= str %>. Objet en édition limitée de l'automne 2022.",
|
||||
"armorSpecialFall2022MageNotes": "Volez aussi vite que le vent avec ces ailes merveilleuses et serrez ce qui vous tient le plus à cœur dans ces serres terrifiantes. Augmente l'intelligence de <%= int %>. Objet en édition limitée de l'automne 2022.",
|
||||
"weaponArmoireFinelyCutGemText": "Gemme finement taillée",
|
||||
"armorSpecialFall2022WarriorNotes": "GROAR ! GRANDES EPAULES vouloir dire vous GRANDE FORCE ! Augmente la constitution de <%= con %>. Objet en édition limitée de l'automne 2022.",
|
||||
"armorSpecialFall2022HealerText": "Profusion de globes oculaires",
|
||||
"armorArmoireJewelersApronText": "Tablier de joaillerie",
|
||||
"armorMystery202210Text": "Armure ophidienne omniprésente",
|
||||
"armorMystery202210Notes": "Essayez de vous déplacer en rampant pour une fois, vous verrez que c'est un mode de transport très efficace ! Ne confère aucun bonus. Objet d'abonnement d'octobre 2022.",
|
||||
"headSpecialFall2022RogueNotes": "Avec cette casquette en métal sur la tête, vous aurez une protection supplémentaire lorsque vous vous aventurerez sur la terre ferme. Augmente la perception de <%= per %>. Objet en édition limitée de l'automne 2022.",
|
||||
"headSpecialFall2022WarriorText": "Masque orc",
|
||||
"headSpecialFall2022MageText": "Masque de harpie",
|
||||
"armorMystery202212Text": "Robe glaciale",
|
||||
"armorMystery202212Notes": "L'univers peut être froid, mais cette charmante robe vous gardera bien au chaud pendant votre vol. Ne confère aucun bonus. Objet d'abonnement de décembre 2022.",
|
||||
"headSpecialFall2022RogueText": "Masque de kappa",
|
||||
"headAccessoryMystery202212Text": "Tiare glaciale",
|
||||
"headAccessoryMystery202212Notes": "Magnifiez votre chaleur et votre amitié à des niveaux insoupçonnés avec cette tiare d'or orné. Ne confère aucun bonus. Objet d'abonnement de décembre 2022.",
|
||||
"eyewearArmoireComedyMaskText": "Masque de comédie",
|
||||
"eyewearArmoireComedyMaskNotes": "Joie ! Voici un masque pittoresque pour votre cœur joyeux, jouant, annonçant la joie, et exprimant la gaieté et l'allégresse sur scène. Augmente la constitution de <%= con %>. Armoire enchantée : ensemble de masques de théâtre (objet 1 de 2).",
|
||||
"eyewearArmoireTragedyMaskText": "Masque de tragédie",
|
||||
"shieldArmoireBubblingCauldronNotes": "Le chaudron parfait pour préparer une potion de productivité ou cuisiner une soupe savoureuse. En fait, il y a peu de différence entre les deux ! Augmente la constitution de <%= con %>. Armoire enchantée : ensemble d'instruments de cuisine (objet 2 de 2).",
|
||||
"headMystery202211Notes": "Faites attention avec ce puissant chapeau, son effet sur les admirateurs peut provoquer un choc ! Ne confère aucun bonus. Objet d'abonnement de novembre 2022.",
|
||||
"headMystery202211Text": "Chapeau d'électromancie",
|
||||
"shieldArmoireBubblingCauldronText": "Chaudron bouillonnant",
|
||||
"shieldArmoireJewelersPliersText": "Pince de joaillerie",
|
||||
"shieldArmoireJewelersPliersNotes": "Elle coupe, elle tord, pince et bien plus. Cet outil peut vous aider à créer quoi que ce soit que vous imaginiez. Augmente la force de <%= str %>. Armoire enchantée : ensemble de bijouterie (objet 3 de 4).",
|
||||
"headSpecialFall2022MageNotes": "Entrez et attirez les autres près de vous avec ce masque magique de jeune fille. Augmente la perception de <%= per %>. Objet en édition limitée de l'automne 2022.",
|
||||
"headSpecialFall2022HealerText": "Masque de voyeur",
|
||||
"headSpecialFall2022HealerNotes": "La beauté est là dedans. Quelque part ! Augmente l'intelligence de <%= int %>. Objet en édition limitée de l'automne 2022.",
|
||||
"headMystery202210Text": "Heaume ophidien omniprésent",
|
||||
"headMystery202210Notes": "Ce capuchon écailleux va sûrement terrifier votre liste de choses à faire et la soumettre ! Ne confère aucun bonus. Objet d'abonnement d'octobre 2022.",
|
||||
"shieldSpecialFall2022WarriorText": "Bouclier orc",
|
||||
"shieldSpecialFall2022WarriorNotes": "DES BONBONS OU DES GROAR ! Augmente la constitution de <%= con %>. Objet en édition limitée de l'automne 2022.",
|
||||
"shieldSpecialFall2022HealerText": "Œil gauche du voyeur",
|
||||
"shieldSpecialFall2022HealerNotes": "Deuxième œil, regardez ce costume et tremblez. Augmente la constitution de <%= con %>. Objet en édition limitée de l'automne 2022.",
|
||||
"eyewearArmoireJewelersEyeLoupeNotes": "Cette loupe oculaire magnifie ce sur quoi vous travaillez pour que vous puissiez en voir tous les détails. Augmente la perception de <%= per %>. Armoire enchantée : ensemble de bijouterie (objet 2 de 4).",
|
||||
"eyewearArmoireTragedyMaskNotes": "Hélas ! Voici un lourd masque pour ton pauvre avatar, qui se pavane, s'agite et exprime le malheur et la tristesse sur la scène. Augmente l'intelligence de <%= int %>. Armoire enchantée : ensemble de masques de théâtre (objet 2 de 2).",
|
||||
"eyewearArmoireJewelersEyeLoupeText": "Loupe oculaire de joaillerie",
|
||||
"headSpecialWinter2023RogueNotes": "Les tentations des gens de vous \"déballer\" les cheveux vous donneront des occasions de pratiquer vos esquives. Augmente la perception de <%= per %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"weaponSpecialWinter2023WarriorNotes": "Les deux pointes de cette lance ont la forme de défenses de morse mais sont deux fois plus puissantes. Frappez les doutes et les poèmes stupides jusqu'à ce qu'ils reculent ! Augmente la force de <%= str %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"headSpecialWinter2023MageText": "Tiare de lumière féerique",
|
||||
"weaponSpecialWinter2023MageText": "Feu de renard",
|
||||
"headSpecialWinter2023MageNotes": "Vous avez été éclos avec une potion nuit étoilée ? Parce que j'ai des étoiles dans les yeux pour vous. Augmente la perception de <%= per %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"weaponSpecialWinter2023MageNotes": "Ni renard ni feu, mais totalement festif ! Augmente l'intelligence de <%= int %> et la perception de <%= per %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"weaponSpecialWinter2023HealerText": "Couronne de jet",
|
||||
"shieldSpecialWinter2023WarriorNotes": "Le temps est venu, dit le morse, de parler de beaucoup de choses : des coquilles d'huîtres—et des cloches d'hiver—des chansons que quelqu'un chante—et où est passée la perle de ce bouclier—ou de ce que la nouvelle année apporte ! Augmente la constitution de <%= con %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"weaponSpecialWinter2023HealerNotes": "Regardez cette couronne festive et piquante filer dans les airs vers votre ennemi ou vos obstacles et revenir vers vous comme un boomerang pour un autre lancer. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"armorSpecialWinter2023RogueText": "Ruban d'emballage",
|
||||
"armorSpecialWinter2023RogueNotes": "Obtenez des objets. Empaquetez-les dans un beau papier cadeau. Et donnez-les à votre voleur local ! C'est de saison. Augmente la perception de <%= per %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"armorSpecialWinter2023WarriorText": "Costume de morse",
|
||||
"armorSpecialWinter2023WarriorNotes": "Ce costume de morse résistant est parfait pour une promenade sur une plage au milieu de la nuit. Augmente la Constitution de <%= con %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"armorSpecialWinter2023MageText": "Robe de chambre de lumière féerique",
|
||||
"armorSpecialWinter2023MageNotes": "Juste parce que vous avez beaucoup de lumières ne fait pas de vous un arbre ! ... peut-être l'année prochaine. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"armorSpecialWinter2023HealerText": "Costume cardinal",
|
||||
"armorSpecialWinter2023HealerNotes": "Ce costume cardinal lumineux est parfait pour voler haut au-dessus de vos problèmes. Augmente la constitution de <%= con %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"weaponSpecialWinter2023RogueText": "Ceinture de satin vert",
|
||||
"weaponSpecialWinter2023RogueNotes": "Les légendes parlent de voleurs qui dérobent les armes de leurs adversaires, les rendent inutilisables, puis les offrent en retour juste pour être mignon. Augmente la force de <%= str %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"weaponSpecialWinter2023WarriorText": "Lance défenses",
|
||||
"headSpecialWinter2023RogueText": "Nœud cadeau",
|
||||
"headSpecialWinter2023WarriorText": "Casque morse",
|
||||
"headSpecialWinter2023WarriorNotes": "Ce casque de morse est parfait pour discuter avec un ami ou participer à un repas intelligent. Augmente la force de <%= str %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"headSpecialWinter2023HealerText": "Heaume cardinal",
|
||||
"headSpecialWinter2023HealerNotes": "Ce heaume cardinal est parfait pour siffler et chanter pour annoncer la nouvelle saison. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2022-2023.",
|
||||
"shieldSpecialWinter2023WarriorText": "Bouclier huitre",
|
||||
"shieldSpecialWinter2023HealerText": "Chansonnette fraiche",
|
||||
"shieldSpecialWinter2023HealerNotes": "Votre chanson de givre et de neige apaisera les esprits de ceux qui l'entendent. Augmente la constitution de <%= con %>. Équipement en édition limitée de l'hiver 2022-2023."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"dataTool": "Outil d'affichage des données",
|
||||
"resources": "Ressources",
|
||||
"communityGuidelines": "Règles de vie en communauté",
|
||||
"bannedWordUsed": "Oups ! Il semblerait que ce message contienne une injure, une connotation religieuse, ou une référence à une drogue ou un sujet mature (<%= swearWordsUsed %>). Habitica a des habitants qui proviennent de tous horizons, et nous préservons donc nos fils de discussion. N'hésitez pas à retoucher votre message pour pouvoir l'envoyer !",
|
||||
"bannedWordUsed": "Oups ! Il semblerait que ce message contienne une injure ou une référence à une drogue ou un sujet mature (<%= swearWordsUsed %>). Habitica préserve les fils de discussion. N'hésitez pas à retoucher votre message pour pouvoir l'envoyer ! Vous devez enlever le mot en question, pas le censurer.",
|
||||
"bannedSlurUsed": "Votre message contenait du langage inapproprié, et vos privilèges de discussion ont été révoqués.",
|
||||
"party": "Équipe",
|
||||
"usernameCopied": "Nom d'utilisateur copié dans le presse-papier.",
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
"sendGiftCost": "Total : <%= cost %>$ (USD)",
|
||||
"sendGiftFromBalance": "Offrir vos propres gemmes",
|
||||
"sendGiftPurchase": "Acheter les gemmes",
|
||||
"sendGiftMessagePlaceholder": "Message personnel (facultatif)",
|
||||
"sendGiftMessagePlaceholder": "Ajouter un message",
|
||||
"sendGiftSubscription": "<%= months %> Mois : <%= price %>$ USD",
|
||||
"gemGiftsAreOptional": "Veuillez noter que Habitica ne vous demandera jamais d'offrir des gemmes aux autres joueurs. Supplier qu'on vous donne des gemmes est une <strong>violation de nos règles de vie en communauté</strong>, et toute fois où cela se produit doit être signalée à <%= hrefTechAssistanceEmail %>.",
|
||||
"battleWithFriends": "Combattez des monstres aux côtés d'amis",
|
||||
|
|
@ -405,5 +405,17 @@
|
|||
"newGroupsBullet01": "Interagissez avec les tâches directement depuis la console des tâches partagées",
|
||||
"groupUse": "Qu'est ce qui décrit mieux l'usage de votre groupe ?*",
|
||||
"groupUseDefault": "Choisissez une réponse",
|
||||
"createGroup": "Créer un groupe"
|
||||
"createGroup": "Créer un groupe",
|
||||
"groupParentChildren": "Parent(s) qui définissent des tâches pour les enfants",
|
||||
"descriptionOptionalText": "Ajouter une description",
|
||||
"nextPaymentMethod": "Suite : Méthode de paiement",
|
||||
"sendGiftLabel": "Voulez vous envoyer un message avec le cadeau ?",
|
||||
"groupCouple": "Couple qui partage ses tâches",
|
||||
"groupFriends": "Amis qui partagent leurs tâches",
|
||||
"groupCoworkers": "Collaborateurs qui partagent leurs tâches",
|
||||
"groupManager": "Responsable qui définit des tâches pour ses employés",
|
||||
"groupTeacher": "Enseignant qui définit des tâches pour les étudiants",
|
||||
"nameStar": "Nom*",
|
||||
"nameStarText": "Ajouter un titre",
|
||||
"descriptionOptional": "Description"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@
|
|||
"septemberYYYY": "Septembre <%= year %>",
|
||||
"royalPurpleJackolantern": "Citrouille d'Habitoween pourpre royal",
|
||||
"novemberYYYY": "Novembre <%= year %>",
|
||||
"g1g1Limitations": "Il s'agit d'un événement limité dans le temps, qui démarre le 16 décembre à 08h00 ET (13h00 UTC) et qui finit le 6 Janvier à 20h00 ET (01h00 UTC). Cette promotion ne s'applique que lorsque vous offrez à quelqu'un d'autre. Si la personne désignée a déjà un abonnement, l'abonnement offert ajoutera des mois d'abonnement qui ne seront utilisés qu'après la fin de leur abonnement actuel.",
|
||||
"g1g1Limitations": "Il s'agit d'un événement limité dans le temps, qui démarre le 15 décembre à 08h00 ET (13h00 UTC) et qui finit le 8 janvier à 23h59 ET (9 janvier04h59 UTC). Cette promotion ne s'applique que lorsque vous offrez à quelqu'un d'autre. Si la personne désignée a déjà un abonnement, l'abonnement offert ajoutera des mois d'abonnement qui ne seront utilisés qu'après la fin de leur abonnement actuel.",
|
||||
"limitations": "Limitations",
|
||||
"g1g1HowItWorks": "Entrez l'identifiant du compte auquel vous voulez faire un cadeau. Puis choisissez la durée d'abonnement que vous voulez offrir et validez. Vous recevrez automatiquement la même durée d'abonnement que celle que vous venez d'offrir.",
|
||||
"howItWorks": "Comment ça marche",
|
||||
|
|
@ -235,5 +235,9 @@
|
|||
"fall2022WatcherHealerSet": "Voyeur (Guérisseur)",
|
||||
"fall2022KappaRogueSet": "Kappa (Voleur)",
|
||||
"gemSaleHow": "Entre le <%= eventStartOrdinal %> et le <%= eventEndOrdinal %> <%= eventStartMonth %>, achetez simplement n'importe quel ensemble de gemmes comme d'habitude et votre compte sera crédité avec le montant promotionnel de gemmes. Plus de gemmes à dépenser, à partager ou à conserver pour de nouveaux objets !",
|
||||
"gemSaleLimitations": "Cette promotion s'applique uniquement pendant la durée de l'événement. L'événement démarre le <%= eventStartOrdinal %> <%= eventStartMonth %> à 8:00 EDT (12:00 UTC) et se terminera le <%= eventEndOrdinal %> <%= eventStartMonth %> à 20:00 EDT (00:00 UTC). Cette promotion n'est disponible que pour les gemmes que vous achetez pour vous."
|
||||
"gemSaleLimitations": "Cette promotion s'applique uniquement pendant la durée de l'événement. L'événement démarre le <%= eventStartOrdinal %> <%= eventStartMonth %> à 8:00 EDT (12:00 UTC) et se terminera le <%= eventEndOrdinal %> <%= eventStartMonth %> à 20:00 EDT (00:00 UTC). Cette promotion n'est disponible que pour les gemmes que vous achetez pour vous.",
|
||||
"winter2023WalrusWarriorSet": "Morse (Guerrier)",
|
||||
"winter2023FairyLightsMageSet": "Lumières féeriques (Mage)",
|
||||
"winter2023CardinalHealerSet": "Cardinal (Guérisseur)",
|
||||
"spring2023RibbonRogueSet": "Ruban (Voleur)"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -190,24 +190,24 @@
|
|||
"suggestMyUsername": "Suggérer mon identifiant",
|
||||
"mentioning": "Mentions",
|
||||
"bannedWordUsedInProfile": "Votre pseudo ou votre texte de présentation contenait un langage inapproprié.",
|
||||
"transaction_create_guild": "Créé une guilde",
|
||||
"transaction_subscription_perks": "De bonus d'abonnement",
|
||||
"transaction_create_guild": "<b>Créé</b> une guilde",
|
||||
"transaction_subscription_perks": "Bonus d'<b>abonnement</b>",
|
||||
"noHourglassTransactions": "Vous n'avez aucune transaction de sablier mystique pour l'instant.",
|
||||
"transaction_debug": "Action de debug",
|
||||
"transaction_buy_money": "Acheté avec de l'argent",
|
||||
"transaction_buy_gold": "Acheté avec de l'or",
|
||||
"transaction_contribution": "Via une contribution",
|
||||
"transaction_spend": "Dépensé pour",
|
||||
"transaction_buy_money": "<b>Acheté</b> avec de l'argent",
|
||||
"transaction_buy_gold": "<b>Acheté</b> avec de l'or",
|
||||
"transaction_contribution": "<b>Palier</b> modifié",
|
||||
"transaction_spend": "<b>Dépensé</b> pour",
|
||||
"transaction_release_mounts": "Libéré les montures",
|
||||
"transaction_reroll": "Utilisé une potion de fortification",
|
||||
"transactions": "Transactions",
|
||||
"gemTransactions": "Transactions de gemmes",
|
||||
"hourglassTransactions": "Transactions de sabliers mystiques",
|
||||
"noGemTransactions": "Vous n'avez aucune transaction de gemmes pour l'instant.",
|
||||
"transaction_gift_send": "Offert à",
|
||||
"transaction_gift_receive": "Reçu de",
|
||||
"transaction_create_challenge": "Créé un défi",
|
||||
"transaction_change_class": "Changé de classe",
|
||||
"transaction_gift_send": "<b>Offert</b> à",
|
||||
"transaction_gift_receive": "<b>Reçu</b> de",
|
||||
"transaction_create_challenge": "<b>Créé</b> un défi",
|
||||
"transaction_change_class": "Changé de <b>classe</b>",
|
||||
"transaction_rebirth": "Utilisé l'orbe de résurrection",
|
||||
"transaction_release_pets": "Libéré les familiers",
|
||||
"addPasswordAuth": "Ajouter le mot de passe",
|
||||
|
|
@ -218,7 +218,13 @@
|
|||
"adjustment": "Ajustement",
|
||||
"passwordSuccess": "Mot de passe changé avec succès",
|
||||
"giftSubscriptionRateText": "<strong>$<%= price %> USD</strong> pour <strong><%= months %> mois</strong>",
|
||||
"transaction_admin_update_balance": "Administration donnée",
|
||||
"transaction_admin_update_balance": "<b>Administration</b> donnée",
|
||||
"transaction_create_bank_challenge": "Banque de défi créée",
|
||||
"transaction_admin_update_hourglasses": "Admin mis à jour"
|
||||
"transaction_admin_update_hourglasses": "<b>Admin</b> mis à jour",
|
||||
"passwordIssueLength": "Les mots de passe doivent faire entre 8 et 64 caractères.",
|
||||
"timestamp": "Horodatage",
|
||||
"amount": "Montant",
|
||||
"action": "Action",
|
||||
"note": "Note",
|
||||
"remainingBalance": "Crédit restant"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -215,5 +215,6 @@
|
|||
"mysterySet202208": "Ensemble de queue de cheval audacieuse",
|
||||
"mysterySet202209": "Ensemble d'étude de magie",
|
||||
"mysterySet202210": "Ensemble ophidien inquiétant",
|
||||
"mysterySet202211": "Ensemble d'électromancie"
|
||||
"mysterySet202211": "Ensemble d'électromancie",
|
||||
"mysterySet202212": "Ensemble de Garde des glaces"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
"viewAchievements": "Lihat Penghargaan",
|
||||
"letsGetStarted": "Mari kita mulai!",
|
||||
"onboardingProgress": "<%= percentage %>% kemajuan",
|
||||
"gettingStartedDesc": "Ayo selesaikan tugas pengenalan ini dan kamu akan mendapat <strong>5 Pencapaian</strong> dan <strong class=\"gold-amount\">100 Emas</strong> setelah kamu selesai!",
|
||||
"gettingStartedDesc": "Ayo selesaikan tugas pengenalan ini dan kamu akan memperoleh <strong>5 Pencapaian</strong> dan <strong class=\"gold-amount\">100 Emas</strong> setelah kamu selesai!",
|
||||
"yourProgress": "Perkembangan Anda",
|
||||
"yourRewards": "Hadiah Anda",
|
||||
"foundNewItems": "Anda menemukan barang baru!",
|
||||
|
|
@ -123,5 +123,26 @@
|
|||
"achievementShadyCustomerModalText": "Kamu mengumpulkan semua Peliharaan Bayangan!",
|
||||
"achievementShadeOfItAll": "Segala Bayang yang Ada",
|
||||
"achievementShadeOfItAllText": "Telah menjinakkan semua Tunggangan Bayangan.",
|
||||
"achievementShadeOfItAllModalText": "Kamu menjinakkan semua Tunggangan Bayangan!"
|
||||
"achievementShadeOfItAllModalText": "Kamu menjinakkan semua Tunggangan Bayangan!",
|
||||
"achievementWoodlandWizardModalText": "Kamu telah mengumpulkan seluruh peliharaan hutan!",
|
||||
"achievementPolarProModalText": "Kamu mengumpulkan seluruh Peliharaan Kutub!",
|
||||
"achievementPolarProText": "Telah menetaskan semua peliharaan Kutub: Beruang, Rubah, Pinguin, Paus, dan Serigala!",
|
||||
"achievementBirdsOfAFeatherModalText": "Kamu mengumpulkan seluruh peliharaan yang bisa terbang!",
|
||||
"achievementBoneToPickModalText": "Kamu telah mengumpulkan semua Peliharaan Tulang Klasik dan Misi!",
|
||||
"achievementBoneToPickText": "Telah menetaskan semua Peliharaan Tulang Klasik dan Misi!",
|
||||
"achievementGroupsBeta2022": "Pengetes Beta Interaktif",
|
||||
"achievementGroupsBeta2022Text": "Kamu dan grupmu telah memberikan umpan balik yang sangat berharga dalam membantu pengetesan Habitica.",
|
||||
"achievementGroupsBeta2022ModalText": "Kamu dan grupmu membantu Habitica dengan mengetes dan memberikan umpan balik!",
|
||||
"achievementPolarPro": "Ahli Kutub",
|
||||
"achievementWoodlandWizard": "Penyihir Hutan",
|
||||
"achievementWoodlandWizardText": "Telah menetaskan semua warna standar makhluk-makhluk hutan: Luak, Beruang, Rusa, Rubah, Katak, Landak, Burung Hantu, Siput, Tupai, dan Pepohonan!",
|
||||
"achievementZodiacZookeeperText": "Telah menetaskan semua warna standar peliharaan zodiak: Tikus, Sapi, Kelinci, Ular, Kuda, Domba, Monyet, Ayam, Serigala, Harimau, Babi Terbang, dan Naga!",
|
||||
"achievementReptacularRumble": "Gelegar Reptakuler",
|
||||
"achievementReptacularRumbleText": "Telah menetaskan semua warna standar peliharaan reptil: Aligator, Pterodaktil, Ular, Triceratops, Penyu, T-Rex, dan Velociraptor!",
|
||||
"achievementReptacularRumbleModalText": "Kamu telah mengumpulkan seluruh peliharaan reptil!",
|
||||
"achievementBirdsOfAFeather": "Bulu-bulu Burung",
|
||||
"achievementBirdsOfAFeatherText": "Telah menetaskan semua warna standar peliharaan yang bisa terbang: Babi Terbang, Burung Hantu, Nuri, Pterodaktil, Grifin, Falcon, Merak, dan Ayam!",
|
||||
"achievementBoneToPick": "Ambil Tulang",
|
||||
"achievementZodiacZookeeper": "Penangkar Zodiak",
|
||||
"achievementZodiacZookeeperModalText": "Kamu mengumpulkan seluruh peliharaan zodiak!"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -103,5 +103,6 @@
|
|||
"selectParticipant": "Pilih Seorang Peserta",
|
||||
"wonChallengeDesc": "<%= challengeName %> memilihmu sebagai pemenang! Kemenanganmu telah dimasukkan ke Pencapaian.",
|
||||
"yourReward": "Hadiahmu",
|
||||
"filters": "Filters"
|
||||
"filters": "Filters",
|
||||
"removeTasks": "Hapus Tugas"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
"dailyDueDefaultViewPop": "Dengan opsi ini, Tugas harian akan menampilkan daftar tugas berdasarkan 'tenggat waktu', bukan berdasarkan 'Semua'",
|
||||
"reverseChatOrder": "Perlihatkan obrolan dalam urutan terbalik",
|
||||
"startAdvCollapsed": "Suntingan Tambahan pada tugas tersembunyi",
|
||||
"startAdvCollapsedPop": "With this option set, Advanced Settings will be hidden when you first open a task for editing.",
|
||||
"startAdvCollapsedPop": "Dengan mengaktifkan pengaturan ini, Pengaturan Lanjutan akan disembunyikan ketika kamu pertama kali membuka tugas untuk diedit.",
|
||||
"dontShowAgain": "Jangan perlihatkan lagi",
|
||||
"suppressLevelUpModal": "Jangan perlihatkan notifikasi saat naik level",
|
||||
"suppressHatchPetModal": "Jangan perlihatkan notifikasi saat menetaskan peliharaan",
|
||||
|
|
@ -21,12 +21,12 @@
|
|||
"fixVal": "Menetapkan Nilai Karakter",
|
||||
"fixValPop": "Mengubah nilai secara manual seperti Kesehatan, Level, dan Koin Emas.",
|
||||
"invalidLevel": "Jumlah tidak sah: Level harus 1 atau lebih.",
|
||||
"enableClass": "Mengaktifkan Sistem Pekerjaan.",
|
||||
"enableClass": "Mengaktifkan Sistem Pekerjaan",
|
||||
"enableClassPop": "Kamu tidak mengaktifkan sistem pekerjaan di awal. Apakah kamu mau mengaktifkannya sekarang?",
|
||||
"resetAccPop": "Mulai dari awal, menyingkirkan semua level, emas, perlengkapan, riwayat, dan tugas.",
|
||||
"deleteAccount": "Hapus Akun",
|
||||
"deleteAccPop": "Menunda dan menghapus akun Habitica kamu.",
|
||||
"feedback": "If you'd like to give us feedback, please enter it below - we'd love to know what you liked or didn't like about Habitica! Don't speak English well? No problem! Use the language you prefer.",
|
||||
"feedback": "Jika kamu ingin memberikan umpan balik, silakan masukkan di bawah ini - kami ingin mengetahui apa yang kamu sukai atau tidak kamu sukai tentang Habitica! Tidak bisa Bahasa Inggris? Tidak masalah! Gunakan bahasa yang kamu bisa.",
|
||||
"qrCode": "Kode QR",
|
||||
"dataExport": "Ekspor Data",
|
||||
"saveData": "Inilah beberapa pilihan untuk menyimpan datamu.",
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
"APITokenWarning": "Kalau kamu butuh Token API baru (misal kamu tidak sengaja menyebarkannya), email <%= hrefTechAssistanceEmail %> berisi ID Pengguna dan Token-mu yang sekarang. Setelah direset kamu harus logout dari situs dan aplikasi handphone, dan kamu harus memasukkan Token barumu ke tools Habitica lain yang kamu gunakan.",
|
||||
"thirdPartyApps": "Aplikasi Pihak Ketiga",
|
||||
"dataToolDesc": "Laman web yang menunjukkan padamu informasi tertentu dari akun Habitica-mu, seperti statistik mengenai tugas, perlengkapan, dan kemampuan milik kamu.",
|
||||
"beeminder": "Beeminder",
|
||||
"beeminder": "<i>Beeminder</i>",
|
||||
"beeminderDesc": "Mengizinkan Beeminder memonitor To Do Habitica kamu secara otomatis. Kamu dapat memutuskan untuk mengatur jumlah target To Do yang selesai per hari atau per minggu, atau kamu dapat memutuskan untuk mengurangi secara berkala jumlah sisa To-Do yang belum selesai. (Arti \"memutuskan\" dalam Beeminder yakni dorongan untuk membayar sejumlah uang sungguhan! Tetapi mungkin saja kamu juga menyukai grafik Beeminder yang menarik.)",
|
||||
"chromeChatExtension": "Ekstensi Obrolan Chrome",
|
||||
"chromeChatExtensionDesc": "Ekstensi Obrolan Chrome untuk Habitica menambah kotak obrolan intuitif ke semua laman habitica.com. Ekstensi membuat pengguna dapat melakukan obrolan di Kedai Minum, party mereka, dan guild yang mereka ikuti.",
|
||||
|
|
@ -76,8 +76,8 @@
|
|||
"resetDo": "Lakukan, reset akun!",
|
||||
"resetComplete": "Reset selesai!",
|
||||
"fixValues": "Tetapkan Nilai",
|
||||
"fixValuesText1": "Jika kamu menemui bug atau terjadi kesalahan yang tidak adil yang mengubah karaktermu (tiba-tiba Kesehatan berkurang, dapat Koin Emas entah dari mana, dll), kamu dapat secara manual memperbaiki semua nilaimu di sini. Ya, ini mempermudah perbuatan curang: jadi gunakanlah fitur ini dengan bijak, atau kamu tidak akan mendapat manfaat apa-apa dari program perbaikan diri ini.",
|
||||
"fixValuesText2": "Note that you cannot restore Streaks on individual tasks here. To do that, edit the Daily and go to Advanced Settings, where you will find a Restore Streak field.",
|
||||
"fixValuesText1": "Jika kamu menemui bug atau terjadi kesalahan tidak adil yang mengubah karaktermu (tiba-tiba Kesehatan berkurang, Koin Emas entah dari mana, dll.), kamu dapat memperbaiki semuanya secara manual di sini. Ya, ini mempermudah kecurangan: gunakanlah fitur ini dengan bijak, atau kamu tidak akan mendapat manfaat apa-apa dari program perbaikan diri ini!",
|
||||
"fixValuesText2": "Harap diperhatikan bahwa kamu tidak bisa mengembalikan Runtunan tugas individu di sini. Untuk melakukannya, ubah Keseharian dan temukan Pengaturan Lanjutan, di sana kamu akan menemukan tempat untuk mengembalikan Runtunan.",
|
||||
"fix21Streaks": "Runtunan 21 Hari",
|
||||
"discardChanges": "Batalkan Perubahan",
|
||||
"deleteDo": "Lakukan, hapus akun!",
|
||||
|
|
@ -134,8 +134,8 @@
|
|||
"generateCodes": "Buat Kode",
|
||||
"generate": "Buat",
|
||||
"getCodes": "Dapatkan Kode",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.fandom.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"webhooks": "<i>Webhooks</i>",
|
||||
"webhooksInfo": "Habitica menyediakan webhooks sehingga ketika suatu tindakan terjadi pada akunmu, informasi tersebut dapat dikirimkan ke sebuah skrip di laman web lain. Kamu dapat menyertakan skrip-skrip itu di sini. Berhati-hatilah dengan fitur ini karena menyertakan URL yang salah dapat menyebabkan eror dan memperlambat Habitica. Informasi lebih lanjut, lihat laman tentang <a target=\"_blank\" href=\"https://habitica.fandom.com/wiki/Webhooks\">Webhooks</a> di wiki.",
|
||||
"enabled": "Diaktifkan",
|
||||
"webhookURL": "URL Webhook",
|
||||
"invalidUrl": "url tidak valid",
|
||||
|
|
@ -146,7 +146,7 @@
|
|||
"regIdRequired": "RegId dibutuhkan",
|
||||
"pushDeviceAdded": "Perangkat notifikasi sukses ditambahkan",
|
||||
"pushDeviceNotFound": "Pengguna tidak memiliki perangkat dengan id ini.",
|
||||
"pushDeviceRemoved": "Perangkat berhasil dihapus",
|
||||
"pushDeviceRemoved": "Perangkat berhasil dihapus.",
|
||||
"buyGemsGoldCap": "Batas maksimal Permata ditingkatkan menjadi <%= amount %>",
|
||||
"mysticHourglass": "<%= amount %> Jam Pasir Mistik",
|
||||
"purchasedPlanExtraMonths": "Kamu memiliki <strong><%= months %> months</strong>bulan kredit berlangganan tambahan.",
|
||||
|
|
@ -154,13 +154,13 @@
|
|||
"consecutiveMonths": "Bulan Berurutan:",
|
||||
"gemCapExtra": "Bonus Batas Maksimal Permata",
|
||||
"mysticHourglasses": "Jam Pasir Mistik:",
|
||||
"mysticHourglassesTooltip": "Jam Pasir Mistis",
|
||||
"mysticHourglassesTooltip": "Jam Pasir Mistik",
|
||||
"paypal": "PayPal",
|
||||
"amazonPayments": "Pembayaran Amazon",
|
||||
"amazonPaymentsRecurring": "Ticking the checkbox below is necessary for your subscription to be created. It allows your Amazon account to be used for ongoing payments for <strong>this</strong> subscription. It will not cause your Amazon account to be automatically used for any future purchases.",
|
||||
"amazonPaymentsRecurring": "Tanda di kotak ceklis di bawah ini diperlukan supaya berlangganan kamu bisa dibuat. Hal ini untuk membolehkan akun Amazon kamu digunakan untuk pembayaran berlangganan <strong>ini</strong>. Hal ini tidak akan menyebabkan akun Amazon kamu digunakan secara otomatis untuk pembayaran selanjutnya.",
|
||||
"timezone": "Zona Waktu",
|
||||
"timezoneUTC": "Habitica menggunakan set zona waktu pada PC kamu, yakni: <strong><%= utc %></strong>",
|
||||
"timezoneInfo": "Jika zona waktu salah, pertama reload halaman ini menggunakan tombol refresh dari perambanmu untuk memastikan bahwa Habitica memiliki informasi terbaru. Jika masih salah, sesuaikan zona waktu pada PC-mu kemudian muat ulang halaman ini lagi. <br><br><strong>Jika kamu menggunakan Habitica pada PC lain atau perangkat mobile, zona waktu harus sama semua.</strong> Jika Keseharianmu diulang pada waktu yang salah, periksa lagi semua PC dan browser pada perangkat mobile yang kamu gunakan.",
|
||||
"timezoneUTC": "Zona waktu kamu diatur oleh komputermu, yaitu: <strong><%= utc %></strong>",
|
||||
"timezoneInfo": "Jika zona waktu salah, muat ulang dulu halaman ini menggunakan tombol refresh dari perambanmu untuk memastikan Habitica memiliki informasi terbaru. Jika masih salah, sesuaikan zona waktu pada PC-mu kemudian muat ulang halaman ini lagi. <br><br><strong>Jika kamu menggunakan Habitica pada PC lain atau perangkat mobile, zona waktu harus sama semua.</strong> Jika Keseharianmu diulang pada waktu yang salah, periksa lagi semua PC dan browser pada perangkat mobile yang kamu gunakan.",
|
||||
"push": "Tekan",
|
||||
"about": "Tentang",
|
||||
"setUsernameNotificationTitle": "Konfirmasi nama pengguna-mu!",
|
||||
|
|
@ -176,7 +176,7 @@
|
|||
"usernameVerifiedConfirmation": "Nama penggunamu, <%= username %>, telah dikonfirmasi!",
|
||||
"usernameNotVerified": "Silahkan konfirmasi nama penggunamu.",
|
||||
"changeUsernameDisclaimer": "Nama pengguna digunakan untuk undangan, @mentions di obrolan, dan bertukar pesan. Harus berisi 1 sampai 20 karakter, berisi huruf a sampai z, angka 0 sampai 9, tanda hubung, atau garis bawah, dan tidak boleh mengandung bahasa yang tidak sopan.",
|
||||
"verifyUsernameVeteranPet": "One of these Veteran Pets will be waiting for you after you've finished confirming!",
|
||||
"verifyUsernameVeteranPet": "Salah satu dari Peliharaan Veteran ini akan menanti kamu setelah kamu selesai melakukan konfirmasi!",
|
||||
"subscriptionReminders": "Pengingat Berlangganan",
|
||||
"giftedSubscriptionWinterPromo": "Halo <%= username %>, kamu mendapatkan<%= monthCount %> bulan berlangganan sebagai hadiah dari promosi holiday gift-giving kami!",
|
||||
"newPMNotificationTitle": "Pesan Baru dari <%= name %>",
|
||||
|
|
@ -189,5 +189,29 @@
|
|||
"suggestMyUsername": "Sarankan nama pengguna saya",
|
||||
"mentioning": "Me-mention",
|
||||
"displaynameIssueNewline": "Nama Tampilan tidak boleh mengandung garis miring terbalik yang diikuti huruf N.",
|
||||
"bannedWordUsedInProfile": "Kata pada Nama Tampilan atau Tentang Diri mengandung bahasa yang kurang sopan."
|
||||
"bannedWordUsedInProfile": "Kata pada Nama Tampilan atau Tentang Diri mengandung bahasa yang kurang sopan.",
|
||||
"passwordSuccess": "Sandi berhasil diganti",
|
||||
"giftSubscriptionRateText": "<strong>$<%= price %> USD</strong> untuk <strong><%= months %> bulan</strong>",
|
||||
"addPasswordAuth": "Tambahkan Sandi",
|
||||
"gemCap": "Batas Permata",
|
||||
"nextHourglass": "Jam Pasir Selanjutnya",
|
||||
"transaction_admin_update_hourglasses": "<b>Admin</b> diperbarui",
|
||||
"noGemTransactions": "Kamu belum memiliki transaksi permata.",
|
||||
"transaction_contribution": "Perubahan <b>tier</b>",
|
||||
"transaction_spend": "<b>Dihabiskan</b> untuk",
|
||||
"transaction_gift_send": "<b>Diberikan</b> kepada",
|
||||
"adjustment": "Penyesuaian",
|
||||
"dayStartAdjustment": "Penyesuaian Awal Hari",
|
||||
"amount": "Jumlah",
|
||||
"action": "Lakukan",
|
||||
"note": "Catatan",
|
||||
"remainingBalance": "Saldo tersisa",
|
||||
"transactions": "Transaksi",
|
||||
"hourglassTransactions": "Transaksi Jam Pasir",
|
||||
"noHourglassTransactions": "Kamu belum punya transaksi Jam Pasir.",
|
||||
"transaction_debug": "Lakukan Debug",
|
||||
"transaction_buy_money": "<b>Dibeli</b> dengan uang",
|
||||
"transaction_buy_gold": "<b>Dibeli</b> dengan koin emas",
|
||||
"transaction_gift_receive": "<b>Diterima</b> dari",
|
||||
"transaction_admin_update_balance": "<b>Admin</b> diberikan"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -141,5 +141,8 @@
|
|||
"achievementWoodlandWizardText": "Ha schiuso le creature della foresta: Tasso, Orso, Cervo, Rana, Riccio, Gufo, Chiocciola, Scoiattolo e Arbusto, in tutte le colorazioni standard!",
|
||||
"achievementBoneToPickText": "Ha schiuso tutti gli animali scheletro Standard e delle Missioni!",
|
||||
"achievementBoneToPick": "Ossa da Raccogliere",
|
||||
"achievementBoneToPickModalText": "Hai collezionato tutti gli animali scheletro Standard e delle Missioni!"
|
||||
"achievementBoneToPickModalText": "Hai collezionato tutti gli animali scheletro Standard e delle Missioni!",
|
||||
"achievementPolarProModalText": "Hai collezionato tutti gli Animali Polari!",
|
||||
"achievementPolarPro": "Professionista Polare",
|
||||
"achievementPolarProText": "Ha schiuso tutti gli animali domestici Polari: Orso, Volpe, Pinguino, Balena e Lupo!"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -591,13 +591,13 @@
|
|||
"backgroundFlyingOverGlacierNotes": "Osserva la maestosità ghiacciata sorvolando un ghiacciaio.",
|
||||
"backgroundFlyingOverGlacierText": "Sorvolando un ghiacciaio",
|
||||
"backgrounds022021": "SET 81: Rilasciato a febbraio 2021",
|
||||
"backgroundInTheArmoryText": "Nello scrigno",
|
||||
"backgroundInTheArmoryText": "Nell'Armeria",
|
||||
"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.",
|
||||
"backgroundSplashInAPuddleText": "Inzupparsi in una pozzanghera",
|
||||
"backgroundInTheArmoryNotes": "Preparati nell'armeria.",
|
||||
"backgroundInTheArmoryNotes": "Preparati nell'Armeria.",
|
||||
"backgroundElegantGardenNotes": "Percorri i sentieri ben curati di un elegante giardino.",
|
||||
"backgroundElegantGardenText": "Giardino elegante",
|
||||
"backgroundCottageConstructionNotes": "Dai una mano, o almeno supervisiona, un cottage in costruzione.",
|
||||
|
|
@ -742,5 +742,12 @@
|
|||
"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"
|
||||
"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."
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -2740,5 +2740,47 @@
|
|||
"weaponArmoireMagicSpatulaText": "Spatola Magica",
|
||||
"weaponArmoireMagicSpatulaNotes": "Guarda il tuo cibo volare e capovolgersi in aria. Avrai buona fortuna per l'intera giornata se si ribalterà magicamente per tre volte atterrando nuovamente sulla tua spatola. Aumenta la Percezione di <%= per %>. Scrigno Incantato: Set Utensili da Cucina (Oggetto 1 di 2).",
|
||||
"shieldArmoireBubblingCauldronText": "Calderone Ribollente",
|
||||
"shieldArmoireBubblingCauldronNotes": "Il calderone perfetto per preparare una pozione di produttività o cucinare una zuppa saporita. In effetti, v'è poca differenza fra le due! Aumenta la Costituzione <%= con %>. Scrigno Incantato: Set Utensili da Cucina (Oggetto 2 di 2)."
|
||||
"shieldArmoireBubblingCauldronNotes": "Il calderone perfetto per preparare una pozione di produttività o cucinare una zuppa saporita. In effetti, v'è poca differenza fra le due! Aumenta la Costituzione <%= con %>. Scrigno Incantato: Set Utensili da Cucina (Oggetto 2 di 2).",
|
||||
"shieldArmoireJewelersPliersText": "Pinze del Gioielliere",
|
||||
"shieldArmoireJewelersPliersNotes": "Tagliano, torcono, pizzicano e altro ancora. Questo strumento può aiutarti a creare tutto ciò che puoi immaginare. Aumenta la Forza di <%= str %>. Scrigno Incantato: Set del Gioielliere (Oggetto 3 di 4).",
|
||||
"eyewearArmoireJewelersEyeLoupeText": "Lente d'Ingrandimento del Gioielliere",
|
||||
"eyewearArmoireJewelersEyeLoupeNotes": "Questo monocolo ingrandisce ciò su cui stai lavorando di modo da poter vedere assolutamente ogni dettaglio. Aumenta la Percezione di <%= per %>. Scrigno Incantato: Set del gioielliere (Oggetto 2 di 4).",
|
||||
"weaponArmoireFinelyCutGemText": "Gioiello Finemente Levigato",
|
||||
"weaponArmoireFinelyCutGemNotes": "Che scoperta! Questa splendida gemma levigata con precisione sarà il gioiello della tua collezione. E potrebbe contenere una qualche magia speciale, che aspetta solo che tu vi ci attinga. Aumenta la Costituzione di <%= con %>. Scrigno Incantato: Set del Gioielliere (Oggetto 4 di 4).",
|
||||
"armorArmoireJewelersApronText": "Grembiule del Gioielliere",
|
||||
"armorArmoireJewelersApronNotes": "Questo resistente grembiule è l'ideale da indossare quando ti senti creativo. E la cosa migliore è che ci sono dozzine di tasche per contenere tutto ciò di cui hai bisogno. Aumenta l'Intelligenza di <%= int %>. Scrigno Incantato: Set del Gioielliere (Oggetto 1 di 4).",
|
||||
"weaponMystery202212Text": "Bacchetta Glaciale",
|
||||
"weaponMystery202212Notes": "Il cristallo di neve raggiante di questa bacchetta ha il potere di riscaldare i cuori anche nelle notti invernali più fredde! Non conferisce alcun bonus. Oggetto abbonati dicembre 2022.",
|
||||
"headAccessoryMystery202212Text": "Tiara Glaciale",
|
||||
"headAccessoryMystery202212Notes": "Porta il tuo calore e le tue amicizie a nuovi livelli con questa decorata tiara dorata. Non conferisce alcun bonus. Oggetto abbonati dicembre 2022.",
|
||||
"armorMystery202212Text": "Abito Glaciale",
|
||||
"armorMystery202212Notes": "L'universo potrà essere freddo, ma quest'incantevole abito ti terrà al caldo mentre voli. Non conferisce alcun bonus. Oggetto abbonati dicembre 2022.",
|
||||
"weaponSpecialWinter2023RogueText": "Fusciacca di Raso Verde",
|
||||
"weaponSpecialWinter2023RogueNotes": "Le leggende raccontano di Ladri che afferrano le armi dei loro avversari, disarmandoli, e dandole poi indietro solo per essere carini. Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"weaponSpecialWinter2023WarriorNotes": "I due rebbi di questa lancia hanno la forma di zanne di tricheco ma sono doppiamente potenti. Sferra colpi ai dubbi e alle sciocche poesie finché non battono in ritirata! Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"weaponSpecialWinter2023HealerNotes": "Guarda questa ghirlanda festiva e pungente roteare nell'aria verso i tuoi nemici o verso i tuoi ostacoli e tornare da te come un boomerang pronto per un altro lancio. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"armorSpecialWinter2023RogueText": "Nastro",
|
||||
"armorSpecialWinter2023RogueNotes": "Ottieni oggetti. Incartali con della bella carta. E consegnali al tuo Ladro locale! La stagione lo richiede. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"armorSpecialWinter2023WarriorNotes": "Questo robusto costume da tricheco è perfetto per una passeggiata lungo la spiaggia nel cuore della notte. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"headSpecialWinter2023MageNotes": "Sei stato schiuso con una pozione Notte Stellata? Perché i miei occhi si illuminano di stelle per te. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"shieldSpecialWinter2023WarriorNotes": "È giunto il momento, disse il Tricheco, per parlare di tante cose: di conchiglie d'ostriche - e campanelle invernali - di canzoni cantate da qualcuno - e di dove è finita la perla di questo scudo - o di cosa ci porterà il nuovo anno! Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"headSpecialWinter2023RogueText": "Fiocco Regalo",
|
||||
"shieldSpecialWinter2023WarriorText": "Scudo dell'Ostrica",
|
||||
"headSpecialWinter2023RogueNotes": "La tentazione delle persone di \"scartare\" i tuoi capelli ti darà l'opportunità di esercitarti ad abbassarti e a schivare i colpi. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"weaponSpecialWinter2023WarriorText": "Lancia di Zanne",
|
||||
"weaponSpecialWinter2023MageText": "Fuoco di Volpe",
|
||||
"weaponSpecialWinter2023MageNotes": "Né volpe né fuoco, ma festivo in abbondanza! Aumenta l'Intelligenza di <%= int %> e la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"weaponSpecialWinter2023HealerText": "Ghirlanda da Lancio",
|
||||
"armorSpecialWinter2023WarriorText": "Costume da Tricheco",
|
||||
"armorSpecialWinter2023MageText": "Abito Luminoso Fatato",
|
||||
"armorSpecialWinter2023MageNotes": "Avere semplicemente le luci accese, non fa di te un albero! ...magari qualche altro anno. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"armorSpecialWinter2023HealerText": "Costume da Cardinale Rosso",
|
||||
"armorSpecialWinter2023HealerNotes": "Questo vivace costume da cardinale rosso è perfetto per sopravvolare sui tuoi problemi. aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"headSpecialWinter2023WarriorText": "Elmo del Tricheco",
|
||||
"headSpecialWinter2023WarriorNotes": "Questo elmo da tricheco è perfetto per chiacchierare con un amico o partecipare a un pasto strategico. Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"headSpecialWinter2023MageText": "Tiara con Luci Fatate",
|
||||
"headSpecialWinter2023HealerText": "Elmo del Cardinale Rosso",
|
||||
"headSpecialWinter2023HealerNotes": "Questo elmo da cardinale rosso è perfetto per fischiettare e cantare annunciando la stagione invernale. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023.",
|
||||
"shieldSpecialWinter2023HealerText": "Fresche Composizioni Musicali",
|
||||
"shieldSpecialWinter2023HealerNotes": "Il tuo canto di gelo e neve calmerà gli animi di tutti coloro che lo ascolteranno. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata, Inverno 2022-2023."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -187,7 +187,7 @@
|
|||
"septemberYYYY": "Settembre <%= year %>",
|
||||
"royalPurpleJackolantern": "Zucca di Halloween Porpora",
|
||||
"novemberYYYY": "Novembre <%= year %>",
|
||||
"g1g1Limitations": "Questo è un evento a tempo limitato che inizia il 16 dicembre alle 14:00 ora italiana (13:00 UTC) e terminerà il 6 gennaio alle 2:00 ora italiana (1:00 UTC). Questa promozione si applica solo quando fai un regalo a un altro Habitante. Se tu o il destinatario del regalo avete già un abbonamento, l'abbonamento in regalo aggiungerà mesi di credito che verranno utilizzati solo dopo l'annullamento o la scadenza dell'abbonamento corrente.",
|
||||
"g1g1Limitations": "Questo è un evento a tempo limitato che inizia il 15 dicembre alle 14:00 ora italiana (13:00 UTC) e terminerà il 9 gennaio alle 5:59 ora italiana (4:59 UTC). Questa promozione si applica solo quando fai un regalo a un altro Habitante. Se tu o il destinatario del regalo avete già un abbonamento, l'abbonamento in regalo aggiungerà mesi di credito che verranno utilizzati solo dopo l'annullamento o la scadenza dell'abbonamento corrente.",
|
||||
"limitations": "Limitazioni",
|
||||
"g1g1HowItWorks": "Digita il nome utente dell'account a cui desideri regalare. Da lì, scegli la durata che desideri regalare. Il tuo account verrà automaticamente ricompensato con la stesso livello di abbonamento che hai appena regalato.",
|
||||
"howItWorks": "Come funziona",
|
||||
|
|
@ -234,5 +234,9 @@
|
|||
"fall2022KappaRogueSet": "Kappa (Ladro)",
|
||||
"fall2022OrcWarriorSet": "Orco (Guerriero)",
|
||||
"gemSaleLimitations": "Questa promozione è applicabile solo durante l'evento a tempo limitato. Questo evento inizia il <%= eventStartMonth %> <%= eventStartOrdinal %> alle 8:00 EDT (12:00 UTC) e terminerà <%= eventStartMonth %> <%= eventEndOrdinal %> alle 20:00 EDT ( 00:00 UTC). L'offerta promozionale è disponibile solo quando acquisti Gemme per te stesso/a.",
|
||||
"gemSaleHow": "Tra <%= eventStartMonth %> <%= eventStartOrdinal %> e <%= eventEndOrdinal %>, acquista semplicemente qualsiasi pacchetto di gemme come al solito e sul tuo account verrà accreditato l'importo promozionale di Gemme. Più Gemme da spendere, condividere o risparmiare per le prossime uscite!"
|
||||
"gemSaleHow": "Tra <%= eventStartMonth %> <%= eventStartOrdinal %> e <%= eventEndOrdinal %>, acquista semplicemente qualsiasi pacchetto di gemme come al solito e sul tuo account verrà accreditato l'importo promozionale di Gemme. Più Gemme da spendere, condividere o risparmiare per le prossime uscite!",
|
||||
"winter2023WalrusWarriorSet": "Tricheco (Guerriero)",
|
||||
"winter2023FairyLightsMageSet": "Luci Fatate (Mago)",
|
||||
"winter2023CardinalHealerSet": "Cardinale Rosso (Guaritore)",
|
||||
"spring2023RibbonRogueSet": "Fiocco (Ladro)"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -214,5 +214,6 @@
|
|||
"mysterySet202209": "Set dell'Erudito Magico",
|
||||
"mysterySet202210": "Set dell'Inquietante Ofidiano",
|
||||
"mysteryset202211": "Set dell'Elettromante",
|
||||
"mysterySet202211": "Set dell'Elettromante"
|
||||
"mysterySet202211": "Set dell'Elettromante",
|
||||
"mysterySet202212": "Set del Guardiano Glaciale"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2632,7 +2632,7 @@
|
|||
"weaponSpecialSummer2022RogueText": "カニのハサミ",
|
||||
"weaponSpecialSummer2022RogueNotes": "ピンチの時は、迷わずこのハサミを見せつけてください!力が<%= str %>上がります。2022年夏の限定装備。",
|
||||
"weaponSpecialSummer2022WarriorText": "旋回サイクロン",
|
||||
"weaponSpecialSummer2022WarriorNotes": "回転!向きを変えて!荒らしをもたらします!力が<%= str %>上がります。2022年夏の限定装備。",
|
||||
"weaponSpecialSummer2022WarriorNotes": "回転!向きを変えて!嵐をもたらします!力が<%= str %>上がります。2022年夏の限定装備。",
|
||||
"weaponSpecialSummer2022MageText": "マンタの杖",
|
||||
"weaponSpecialSummer2022MageNotes": "この杖を一回くるっと回すとあなたの前方の水は魔法のように綺麗になります。知能が <%= int %> 、知覚が <%= per %>上がります。2022年夏の限定装備。",
|
||||
"weaponSpecialSummer2022HealerText": "便利な泡",
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@
|
|||
"unsubscribedTextUsers": "Habitica からのメールをすべて停止しました。<a href=\"/user/settings/notifications\">設定 > 通知</a>受け取りたいメールだけを有効にすることができます(要ログイン)。",
|
||||
"unsubscribedTextOthers": "Habitica から他のメールは届きません。",
|
||||
"unsubscribeAllEmails": "チェックすると、メールを停止します",
|
||||
"unsubscribeAllEmailsText": "私は、このボックスをチェックすることですべてのメールを停止し、 サイトやアカウントの変更についての重要な内容であっても Habitica がメールを通じて私に告知することができなくなることを理解したことを証明します。",
|
||||
"unsubscribeAllEmailsText": "私はこのボックスをチェックすることで、すべてのメールを停止して、 Habiticaがサイトやアカウントの重要な変更についてメールで通知できなくなることを理解したことを証明します。",
|
||||
"unsubscribeAllPush": "チェックすると、すべてのプッシュ通知を停止します",
|
||||
"correctlyUnsubscribedEmailType": "「<%= emailType %>」のメールを正常に停止しました。",
|
||||
"subscriptionRateText": "<strong><%= months %>カ月</strong> ごとに <strong><%= price %>米ドル</strong> ずつ",
|
||||
|
|
|
|||
|
|
@ -731,5 +731,16 @@
|
|||
"backgroundCemeteryGateText": "Brama Cmentarza",
|
||||
"backgroundCemeteryGateNotes": "Strasz przy Bramie Cmentarza.",
|
||||
"backgrounds102022": "SET 101: Opublikowany w październiku 2022",
|
||||
"backgroundSpookyRuinsNotes": "Zwiedź Straszne Ruiny."
|
||||
"backgroundSpookyRuinsNotes": "Zwiedź Straszne Ruiny.",
|
||||
"backgroundSnowyVillageText": "Śnieżna Wioska",
|
||||
"backgroundAmongGiantMushroomsText": "Pośród Gigantycznych Grzybów",
|
||||
"backgroundMistyAutumnForestText": "Mglisty Jesienny Las",
|
||||
"backgrounds112022": "Zestaw 102: Udostępniony w Listopadzie 2022",
|
||||
"backgroundMistyAutumnForestNotes": "Spacerować pośród Mglistego Jesiennego Lasu.",
|
||||
"backgroundInsideACrystalText": "Wewnątrz Kryształu",
|
||||
"backgroundBranchesOfAHolidayTreeText": "Gałązki Choinki",
|
||||
"backgroundSnowyVillageNotes": "Podziwiać Śnieżną Wioskę.",
|
||||
"backgroundAutumnBridgeNotes": "Podziwiać piękno Jesiennego Mostu.",
|
||||
"backgrounds122022": "Zestaw 103: Wypuszczony w Grudniu 2022",
|
||||
"backgroundInsideACrystalNotes": "Wyjrzeć z wnętrza Kryształu."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -141,5 +141,8 @@
|
|||
"achievementWoodlandWizardText": "Chocou todos os ovos de cor padrão das criaturas da floresta: Texugo, Urso, Cervo, Raposa, Sapo, Ouriço, Coruja, Caracol, Esquilo e Arvorezinha!",
|
||||
"achievementBoneToPick": "Ossos de Sobra",
|
||||
"achievementBoneToPickText": "Chocou todos os Mascotes Esqueleto Clássicos e de Missões!",
|
||||
"achievementBoneToPickModalText": "Você coletou todos os Mascotes Esqueleto Clássicos e de Missões!"
|
||||
"achievementBoneToPickModalText": "Você coletou todos os Mascotes Esqueleto Clássicos e de Missões!",
|
||||
"achievementPolarPro": "Profissional Polar",
|
||||
"achievementPolarProText": "Chocou todos os mascotes Polares: Urso, Raposa, Pinguim, Baleia e Lobo!",
|
||||
"achievementPolarProModalText": "Você coletou todos os Mascotes Polares!"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@
|
|||
"backgroundGiantFlowersNotes": "Divirta-se em cima de Flores Gigantes.",
|
||||
"backgroundRainbowsEndText": "Fim do Arco-íris",
|
||||
"backgroundRainbowsEndNotes": "Descubra o ouro no Fim do Arco-íris.",
|
||||
"backgrounds052016": "Conjunto 24: Lançado em Maio de 2016",
|
||||
"backgrounds052016": "Conjunto 24: Lançado em maio de 2016",
|
||||
"backgroundBeehiveText": "Colmeia",
|
||||
"backgroundBeehiveNotes": "Faça zumbidos e dance em uma Colmeia.",
|
||||
"backgroundGazeboText": "Gazebo",
|
||||
|
|
@ -186,7 +186,7 @@
|
|||
"backgroundDeepSeaNotes": "Mergulhe no Mar Profundo.",
|
||||
"backgroundDilatoryCastleText": "Castelo de Lentópolis",
|
||||
"backgroundDilatoryCastleNotes": "Nade além do Castelo de Lentópolis.",
|
||||
"backgrounds082016": "Conjunto 27: Lançado em Agosto de 2016",
|
||||
"backgrounds082016": "Conjunto 27: Lançado em agosto de 2016",
|
||||
"backgroundIdyllicCabinText": "Cabana Bucólica",
|
||||
"backgroundIdyllicCabinNotes": "Faça um retiro em uma Cabana Bucólica.",
|
||||
"backgroundMountainPyramidText": "Montanha Pirâmide",
|
||||
|
|
@ -200,14 +200,14 @@
|
|||
"backgroundFarmhouseNotes": "Diga olá para os animais em seu caminho para a Casa da Fazenda.",
|
||||
"backgroundOrchardText": "Pomar",
|
||||
"backgroundOrchardNotes": "Colha frutos maduros de um Pomar.",
|
||||
"backgrounds102016": "Conjunto 29: Lançado em Outubro de 2016",
|
||||
"backgrounds102016": "Conjunto 29: Lançado em outubro de 2016",
|
||||
"backgroundSpiderWebText": "Teia de Aranha",
|
||||
"backgroundSpiderWebNotes": "Fique preso em uma Teia de Aranha.",
|
||||
"backgroundStrangeSewersText": "Esgotos Estranhos",
|
||||
"backgroundStrangeSewersNotes": "Deslize através de Esgotos Estranhos.",
|
||||
"backgroundRainyCityText": "Cidade Chuvosa",
|
||||
"backgroundRainyCityNotes": "Se molhe por aí em uma Cidade Chuvosa.",
|
||||
"backgrounds112016": "Conjunto 30: Lançado em Novembro de 2016",
|
||||
"backgrounds112016": "Conjunto 30: Lançado em novembro de 2016",
|
||||
"backgroundMidnightCloudsText": "Nuvens da Meia-noite",
|
||||
"backgroundMidnightCloudsNotes": "Voe através das Nuvens da Meia-noite.",
|
||||
"backgroundStormyRooftopsText": "Telhados Tempestuosos",
|
||||
|
|
@ -227,14 +227,14 @@
|
|||
"backgroundRedNotes": "Um cenário vermelho vigoroso.",
|
||||
"backgroundYellowText": "Amarelo",
|
||||
"backgroundYellowNotes": "Um delicioso cenário amarelo.",
|
||||
"backgrounds122016": "Conjunto 31: Lançado em Dezembro de 2016",
|
||||
"backgrounds122016": "Conjunto 31: Lançado em dezembro de 2016",
|
||||
"backgroundShimmeringIcePrismText": "Prismas de Gelo Cintilantes",
|
||||
"backgroundShimmeringIcePrismNotes": "Dance através dos Prismas de Gelo Cintilantes.",
|
||||
"backgroundWinterFireworksText": "Fogos de Artifício de Inverno",
|
||||
"backgroundWinterFireworksNotes": "Solte Fogos de Artifício de Inverno.",
|
||||
"backgroundWinterStorefrontText": "Loja de Inverno",
|
||||
"backgroundWinterStorefrontNotes": "Compre presentes na Loja de Inverno.",
|
||||
"backgrounds012017": "Conjunto 32: Lançado em Janeiro de 2017",
|
||||
"backgrounds012017": "Conjunto 32: Lançado em janeiro de 2017",
|
||||
"backgroundBlizzardText": "Nevasca",
|
||||
"backgroundBlizzardNotes": "Enfrente uma Nevasca feroz.",
|
||||
"backgroundSparklingSnowflakeText": "Floco de Neve Brilhante",
|
||||
|
|
@ -248,35 +248,35 @@
|
|||
"backgroundTreasureRoomNotes": "Desfrute das riquezas de uma Sala do Tesouro.",
|
||||
"backgroundWeddingArchText": "Arco de Casamento",
|
||||
"backgroundWeddingArchNotes": "Pose embaixo do Arco de Casamento.",
|
||||
"backgrounds032017": "Conjunto 34: Lançado em Março de 2017",
|
||||
"backgrounds032017": "Conjunto 34: Lançado em março de 2017",
|
||||
"backgroundMagicBeanstalkText": "Pé-de-Feijão Mágico",
|
||||
"backgroundMagicBeanstalkNotes": "Suba num Pé-de-Feijão Mágico.",
|
||||
"backgroundMeanderingCaveText": "Caverna Serpenteante",
|
||||
"backgroundMeanderingCaveNotes": "Explore a Caverna Serpenteante.",
|
||||
"backgroundMistiflyingCircusText": "Circo de Borbópolis",
|
||||
"backgroundMistiflyingCircusNotes": "Festeje no Circo de Borbópolis.",
|
||||
"backgrounds042017": "Conjunto 35: Lançado em Abril de 2017",
|
||||
"backgrounds042017": "Conjunto 35: Lançado em abril de 2017",
|
||||
"backgroundBugCoveredLogText": "Tronco Cheio de Insetos",
|
||||
"backgroundBugCoveredLogNotes": "Investigue um Tronco Cheio de Insetos.",
|
||||
"backgroundGiantBirdhouseText": "Ninho Gigante de Pássaro",
|
||||
"backgroundGiantBirdhouseNotes": "Repouse em um Ninho Gigante de Pássaro.",
|
||||
"backgroundMistShroudedMountainText": "Montanha Coberta de Neblina",
|
||||
"backgroundMistShroudedMountainNotes": "Escale uma Montanha Coberta de Neblina.",
|
||||
"backgrounds052017": "Conjunto 36: Lançado em Maio de 2017",
|
||||
"backgrounds052017": "Conjunto 36: Lançado em maio de 2017",
|
||||
"backgroundGuardianStatuesText": "Estátuas do Guardião",
|
||||
"backgroundGuardianStatuesNotes": "Permaneça atento em frente às Estátuas do Guardião.",
|
||||
"backgroundHabitCityStreetsText": "Ruas da Cidade dos Hábitos",
|
||||
"backgroundHabitCityStreetsNotes": "Explore as Ruas da Cidade dos Hábitos.",
|
||||
"backgroundOnATreeBranchText": "Em um Galho de Árvore",
|
||||
"backgroundOnATreeBranchNotes": "Descanse em um Galho de Árvore.",
|
||||
"backgrounds062017": "Conjunto 37: Lançado em Junho de 2017",
|
||||
"backgrounds062017": "Conjunto 37: Lançado em junho de 2017",
|
||||
"backgroundBuriedTreasureText": "Tesouro Enterrado",
|
||||
"backgroundBuriedTreasureNotes": "Descubra um Tesouro Enterrado.",
|
||||
"backgroundOceanSunriseText": "Nascer do Sol no Oceano",
|
||||
"backgroundOceanSunriseNotes": "Admire um Nascer do Sol no Oceano.",
|
||||
"backgroundSandcastleText": "Castelo de Areia",
|
||||
"backgroundSandcastleNotes": "Governe um Castelo de Areia.",
|
||||
"backgrounds072017": "Conjunto 38: Lançado em Julho de 2017",
|
||||
"backgrounds072017": "Conjunto 38: Lançado em julho de 2017",
|
||||
"backgroundGiantSeashellText": "Concha Gigante",
|
||||
"backgroundGiantSeashellNotes": "Relaxe em uma Concha Gigante.",
|
||||
"backgroundKelpForestText": "Floresta de Algas",
|
||||
|
|
@ -290,7 +290,7 @@
|
|||
"backgroundDesertDunesNotes": "Explore com bravura as Dunas do Deserto.",
|
||||
"backgroundSummerFireworksText": "Fogos de Artifício de Verão",
|
||||
"backgroundSummerFireworksNotes": "Celebre o Dia da Nomeação do Habitica com Fogos de Artifício de Verão!",
|
||||
"backgrounds092017": "Conjunto 40: Lançado em Setembro de 2017",
|
||||
"backgrounds092017": "Conjunto 40: Lançado em setembro de 2017",
|
||||
"backgroundBesideWellText": "Ao Lado de um Poço",
|
||||
"backgroundBesideWellNotes": "Passeie Ao Lado de um Poço.",
|
||||
"backgroundGardenShedText": "Casinha do Jardim",
|
||||
|
|
@ -304,35 +304,35 @@
|
|||
"backgroundSpookyHotelNotes": "Esgueire-se pelos corredores de um Hotel Assustador.",
|
||||
"backgroundTarPitsText": "Fossos de Piche",
|
||||
"backgroundTarPitsNotes": "Ande na ponta dos pés através dos Fossos de Piche.",
|
||||
"backgrounds112017": "Conjunto 42: Lançado em Novembro de 2017",
|
||||
"backgrounds112017": "Conjunto 42: Lançado em novembro de 2017",
|
||||
"backgroundFiberArtsRoomText": "Ateliê de Crochê",
|
||||
"backgroundFiberArtsRoomNotes": "Gire o carretel no Ateliê de Crochê.",
|
||||
"backgroundMidnightCastleText": "Castelo da Meia-Noite",
|
||||
"backgroundMidnightCastleNotes": "Ande pelo Castelo da Meia-Noite.",
|
||||
"backgroundTornadoText": "Tornado",
|
||||
"backgroundTornadoNotes": "Voe por um Tornado.",
|
||||
"backgrounds122017": "Conjunto 43: Lançado em Dezembro de 2017",
|
||||
"backgrounds122017": "Conjunto 43: Lançado em dezembro de 2017",
|
||||
"backgroundCrosscountrySkiTrailText": "Trilha de Ski Transcontinental",
|
||||
"backgroundCrosscountrySkiTrailNotes": "Deslize por uma Trilha de Ski Transcontinental.",
|
||||
"backgroundStarryWinterNightText": "Noite Estrelada de Inverno",
|
||||
"backgroundStarryWinterNightNotes": "Admire uma Noite Estrelada de Inverno.",
|
||||
"backgroundToymakersWorkshopText": "Oficina do Criador de Brinquedos",
|
||||
"backgroundToymakersWorkshopNotes": "Banhe-se na maravilha da Oficina do Criador de Brinquedos.",
|
||||
"backgrounds012018": "Conjunto 44: Lançado em Janeiro de 2018",
|
||||
"backgrounds012018": "Conjunto 44: Lançado em janeiro de 2018",
|
||||
"backgroundAuroraText": "Aurora",
|
||||
"backgroundAuroraNotes": "Aqueça-se no brilho da Aurora.",
|
||||
"backgroundDrivingASleighText": "Trenó",
|
||||
"backgroundDrivingASleighNotes": "Ande de Trenó sobre os campos cobertos de neve.",
|
||||
"backgroundFlyingOverIcySteppesText": "Estepes Gelados",
|
||||
"backgroundFlyingOverIcySteppesNotes": "Voe sobre Estepes Gelados.",
|
||||
"backgrounds022018": "Conjunto 45: Lançado em Fevereiro de 2018",
|
||||
"backgrounds022018": "Conjunto 45: Lançado em fevereiro de 2018",
|
||||
"backgroundChessboardLandText": "Terra do Tabuleiro de Xadrez",
|
||||
"backgroundChessboardLandNotes": "Jogue uma partida na Terra do Tabuleiro de Xadrez.",
|
||||
"backgroundMagicalMuseumText": "Museu Mágico",
|
||||
"backgroundMagicalMuseumNotes": "Visite um Museu Mágico.",
|
||||
"backgroundRoseGardenText": "Jardim de Rosas",
|
||||
"backgroundRoseGardenNotes": "Distraia em um Jardim de Rosas perfumado.",
|
||||
"backgrounds032018": "Conjunto 46: Lançado em Março de 2018",
|
||||
"backgrounds032018": "Conjunto 46: Lançado em março de 2018",
|
||||
"backgroundGorgeousGreenhouseText": "Estufa Deslumbrante",
|
||||
"backgroundGorgeousGreenhouseNotes": "Caminhe entre a flora de uma Estufa Deslumbrante.",
|
||||
"backgroundElegantBalconyText": "Varanda Elegante",
|
||||
|
|
@ -353,7 +353,7 @@
|
|||
"backgroundFantasticalShoeStoreNotes": "Divirta-se procurando um novo sapato na Fantástica Loja de Sapatos.",
|
||||
"backgroundChampionsColosseumText": "Coliseu dos Campeões",
|
||||
"backgroundChampionsColosseumNotes": "Encandeça-se na glória do Coliseu dos Campeões.",
|
||||
"backgrounds062018": "Conjunto 49: Lançado em Junho de 2018",
|
||||
"backgrounds062018": "Conjunto 49: Lançado em junho de 2018",
|
||||
"backgroundDocksText": "Docas",
|
||||
"backgroundDocksNotes": "Pesque pelas Docas.",
|
||||
"backgroundRowboatText": "Barco a Remo",
|
||||
|
|
@ -395,7 +395,7 @@
|
|||
"backgroundGlowingMushroomCaveNotes": "Admire uma Caverna de Cogumelos Brilhantes.",
|
||||
"backgroundCozyBedroomText": "Quarto Aconchegante",
|
||||
"backgroundCozyBedroomNotes": "Deite em um Quarto Aconchegante.",
|
||||
"backgrounds122018": "Conjunto 55: Lançado em Dezembro de 2018",
|
||||
"backgrounds122018": "Conjunto 55: Lançado em dezembro de 2018",
|
||||
"backgroundFlyingOverSnowyMountainsText": "Montanhas Nevadas",
|
||||
"backgroundFlyingOverSnowyMountainsNotes": "Sobrevoe as Montanhas Nevadas à noite.",
|
||||
"backgroundFrostyForestText": "Floresta Gélida",
|
||||
|
|
@ -409,21 +409,21 @@
|
|||
"backgroundArchaeologicalDigNotes": "Desenterre segredos de um passado remoto em uma Escavação Arqueológica.",
|
||||
"backgroundScribesWorkshopText": "Oficina do Escriba",
|
||||
"backgroundScribesWorkshopNotes": "Escreva seu próximo grande pergaminho na Oficina do Escriba.",
|
||||
"backgrounds022019": "Conjunto 57: Lançado em Fevereiro de 2019",
|
||||
"backgrounds022019": "Conjunto 57: Lançado em fevereiro de 2019",
|
||||
"backgroundMedievalKitchenText": "Cozinha Medieval",
|
||||
"backgroundMedievalKitchenNotes": "Cozinhe para um banquete em uma Cozinha Medieval.",
|
||||
"backgroundOldFashionedBakeryText": "Padaria à Moda Antiga",
|
||||
"backgroundOldFashionedBakeryNotes": "Aproveite os cheiros deliciosos, do lado de fora de uma Padaria à Moda Antiga.",
|
||||
"backgroundValentinesDayFeastingHallText": "Salão de Festas do Dia dos Namorados",
|
||||
"backgroundValentinesDayFeastingHallNotes": "Sinta o amor no Salão de Festas do Dia dos Namorados.",
|
||||
"backgrounds032019": "Conjunto 58: Lançado em Março de 2019",
|
||||
"backgrounds032019": "Conjunto 58: Lançado em março de 2019",
|
||||
"backgroundDuckPondText": "Lagoa dos Patos",
|
||||
"backgroundDuckPondNotes": "Alimente aves aquáticas na Lagoa dos Patos.",
|
||||
"backgroundFieldWithColoredEggsText": "Campo com Ovos Coloridos",
|
||||
"backgroundFieldWithColoredEggsNotes": "Cace pelo tesouro de primavera em um Campo com Ovos Coloridos.",
|
||||
"backgroundFlowerMarketText": "Mercado de Flores",
|
||||
"backgroundFlowerMarketNotes": "Encontre as cores perfeitas para um buquê ou um jardim no Mercado de Flores.",
|
||||
"backgrounds042019": "Conjunto 59: Lançado em Abril de 2019",
|
||||
"backgrounds042019": "Conjunto 59: Lançado em abril de 2019",
|
||||
"backgroundBirchForestText": "Floresta de Bétulas",
|
||||
"backgroundBirchForestNotes": "Divirta-se em uma pacífica Floresta de Bétulas.",
|
||||
"backgroundHalflingsHouseText": "Casa de Halfling",
|
||||
|
|
@ -448,7 +448,7 @@
|
|||
"backgroundInAnAncientTombText": "Tumba Antiga",
|
||||
"backgroundAutumnFlowerGardenNotes": "Sinta o calor de um Jardim de Flores de Outono.",
|
||||
"backgroundAutumnFlowerGardenText": "Jardim de Flores de Outono",
|
||||
"backgrounds092019": "Conjunto 64: Lançado em Setembro de 2019",
|
||||
"backgrounds092019": "Conjunto 64: Lançado em setembro de 2019",
|
||||
"backgroundTreehouseNotes": "Curta em um refúgio arbóreo todo para você, na sua própria Casa na Árvore.",
|
||||
"backgroundTreehouseText": "Casa na Árvore",
|
||||
"backgroundGiantDandelionsNotes": "Flerte entre os Dentes-de-Leão Gigantes.",
|
||||
|
|
@ -506,7 +506,7 @@
|
|||
"backgroundHallOfHeroesText": "Salão dos Heróis",
|
||||
"backgroundElegantBallroomNotes": "Dance ao longo da noite em um Salão de Festas Elegante.",
|
||||
"backgroundElegantBallroomText": "Salão de Festas Elegante",
|
||||
"backgrounds022020": "Conjunto 69: Lançado em Fevereiro de 2020",
|
||||
"backgrounds022020": "Conjunto 69: Lançado em fevereiro de 2020",
|
||||
"backgroundSucculentGardenNotes": "Aprecie a beleza árida de um Jardim de Suculentas.",
|
||||
"backgroundSucculentGardenText": "Jardim de Suculentas",
|
||||
"backgroundButterflyGardenNotes": "Festeje com polinizadores em um Jardim de Borboletas.",
|
||||
|
|
@ -520,48 +520,48 @@
|
|||
"backgroundHeatherFieldText": "Campo de Urzes",
|
||||
"backgroundAnimalCloudsNotes": "Exercite sua imaginação encontrando formas de Animais nas Nuvens.",
|
||||
"backgroundAnimalCloudsText": "Nuvens de Animais",
|
||||
"backgrounds042020": "Conjunto 71: Lançado em Abril de 2020",
|
||||
"backgrounds042020": "Conjunto 71: Lançado em abril de 2020",
|
||||
"backgroundStrawberryPatchNotes": "Colha iguarias frescas de um Campo de Morango.",
|
||||
"backgroundStrawberryPatchText": "Campo de Morango",
|
||||
"backgroundHotAirBalloonNotes": "Voe acima da paisagem em um Balão de Ar Quente.",
|
||||
"backgroundHotAirBalloonText": "Balão de Ar Quente",
|
||||
"backgroundHabitCityRooftopsNotes": "Salte aventurando-se entre os Telhados da Cidade dos Hábitos.",
|
||||
"backgroundHabitCityRooftopsText": "Telhados da Cidade dos Hábitos",
|
||||
"backgrounds052020": "Conjunto 72: Lançado em Maio de 2020",
|
||||
"backgrounds052020": "Conjunto 72: Lançado em maio de 2020",
|
||||
"backgroundVikingShipNotes": "Navegue para a aventura a bordo de um Navio Viking.",
|
||||
"backgroundVikingShipText": "Navio Viking",
|
||||
"backgroundSaltLakeNotes": "Veja as impressionantes ondulações vermelhas de um Lago Salgado.",
|
||||
"backgroundSaltLakeText": "Lago Salgado",
|
||||
"backgroundRelaxationRiverNotes": "Desça vagarosamente pelo Rio do Relaxamento.",
|
||||
"backgroundRelaxationRiverText": "Rio do Relaxamento",
|
||||
"backgrounds062020": "Conjunto 73: Lançado em Junho de 2020",
|
||||
"backgrounds062020": "Conjunto 73: Lançado em junho de 2020",
|
||||
"backgroundUnderwaterRuinsNotes": "Explore Ruínas Subaquáticas submersas há muito tempo.",
|
||||
"backgroundUnderwaterRuinsText": "Ruínas Subaquáticas",
|
||||
"backgroundSwimmingAmongJellyfishNotes": "Emocione-se com beleza e perigo Nadando entre Águas-Vivas.",
|
||||
"backgroundSwimmingAmongJellyfishText": "Nadando entre Águas-Vivas",
|
||||
"backgroundBeachCabanaNotes": "Relaxe na sombra de uma Cabana de Praia.",
|
||||
"backgroundBeachCabanaText": "Cabana de Praia",
|
||||
"backgrounds072020": "Conjunto 74: Lançado em Julho de 2020",
|
||||
"backgrounds072020": "Conjunto 74: Lançado em julho de 2020",
|
||||
"backgroundProductivityPlazaNotes": "Faça um passeio inspirador pela Praça da Produtividade da Cidade dos Hábitos.",
|
||||
"backgroundProductivityPlazaText": "Praça da Produtividade",
|
||||
"backgroundJungleCanopyNotes": "Aproveite o esplendor sufocante de uma Copa da Selva.",
|
||||
"backgroundJungleCanopyText": "Copa da Selva",
|
||||
"backgroundCampingOutNotes": "Aproveite o ar livre Acampando.",
|
||||
"backgroundCampingOutText": "Acampando",
|
||||
"backgrounds082020": "Conjunto 75: Lançado em Agosto de 2020",
|
||||
"backgrounds082020": "Conjunto 75: Lançado em agosto de 2020",
|
||||
"backgroundHerdingSheepInAutumnNotes": "Misture-se com um Rebanho de Ovelhas.",
|
||||
"backgroundHerdingSheepInAutumnText": "Rebanho de Ovelhas",
|
||||
"backgroundGiantAutumnLeafNotes": "Pouse em uma Folha Gigante antes que ela caia.",
|
||||
"backgroundGiantAutumnLeafText": "Folha Gigante",
|
||||
"backgroundFlyingOverAnAutumnForestNotes": "Absorva as cores brilhantes abaixo Voando sobre uma Floresta de Outono.",
|
||||
"backgroundFlyingOverAnAutumnForestText": "Voando sobre uma Floresta no Outono",
|
||||
"backgrounds092020": "Conjunto 76: Lançado em Setembro de 2020",
|
||||
"backgrounds092020": "Conjunto 76: Lançado em setembro de 2020",
|
||||
"backgroundSpookyScarecrowFieldText": "Campo de Espantalho Assustador",
|
||||
"backgroundHauntedForestNotes": "Tente não se perder na Floresta Assombrada.",
|
||||
"backgroundHauntedForestText": "Floresta Assombrada",
|
||||
"backgroundCrescentMoonNotes": "Faça o trabalho dos sonhos sentado em uma Lua Crescente.",
|
||||
"backgroundCrescentMoonText": "Lua Crescente",
|
||||
"backgrounds102020": "Conjunto 77: Lançado em Outubro de 2020",
|
||||
"backgrounds102020": "Conjunto 77: Lançado em outubro de 2020",
|
||||
"backgroundSpookyScarecrowFieldNotes": "Prove que você é mais ousado do que um pássaro ao enfrentar um Campo de Espantalho Assustador.",
|
||||
"backgroundRiverOfLavaNotes": "Desafie a convecção dando um passeio ao longo do Rio de Lava.",
|
||||
"backgroundRiverOfLavaText": "Rio de Lava",
|
||||
|
|
@ -569,17 +569,17 @@
|
|||
"backgroundRestingInTheInnText": "Descansando na Taverna",
|
||||
"backgroundMysticalObservatoryNotes": "Leia o seu destino nas estrelas a partir de um Observatório Místico.",
|
||||
"backgroundMysticalObservatoryText": "Observatório Místico",
|
||||
"backgrounds112020": "Conjunto 78: Lançado em Novembro de 2020",
|
||||
"backgrounds112020": "Conjunto 78: Lançado em novembro de 2020",
|
||||
"backgroundInsideAnOrnamentNotes": "Deixe sua alegria festiva brilhar de Dentro de um Ornamento.",
|
||||
"backgroundInsideAnOrnamentText": "Dentro de um Ornamento",
|
||||
"backgroundHolidayHearthNotes": "Relaxe, se aqueça e seque-se ao lado de uma Lareira de Feriado.",
|
||||
"backgroundHolidayHearthText": "Lareira de Feriado",
|
||||
"backgroundGingerbreadHouseNotes": "Aproveite a vista, os aromas e (se você ousar) os sabores de uma Casa de Pão de Gengibre.",
|
||||
"backgroundGingerbreadHouseText": "Casa de Pão de Gengibre",
|
||||
"backgrounds122020": "Conjunto 79: Lançado em Dezembro de 2020",
|
||||
"backgrounds122020": "Conjunto 79: Lançado em dezembro de 2020",
|
||||
"backgroundHotSpringNotes": "Derreta suas preocupações com um mergulho em uma Fonte Termal.",
|
||||
"backgroundHotSpringText": "Fonte Termal",
|
||||
"backgrounds012021": "Conjunto 80: Lançado em Janeiro de 2021",
|
||||
"backgrounds012021": "Conjunto 80: Lançado em janeiro de 2021",
|
||||
"backgroundWintryCastleNotes": "Veja o Castelo Invernal através da névoa fria.",
|
||||
"backgroundWintryCastleText": "Castelo Invernal",
|
||||
"backgroundIcicleBridgeNotes": "Atravesse a Ponte Congelada com cuidado.",
|
||||
|
|
@ -590,12 +590,12 @@
|
|||
"backgroundHeartShapedBubblesText": "Bolhas em Forma de Coração",
|
||||
"backgroundFlyingOverGlacierNotes": "Testemunhe a grandeza congelada Sobrevoando uma Geleira.",
|
||||
"backgroundFlyingOverGlacierText": "Sobrevoando uma Geleira",
|
||||
"backgrounds022021": "Conjunto 81: Lançado em Fevereiro de 2021",
|
||||
"backgrounds022021": "Conjunto 81: Lançado em fevereiro de 2021",
|
||||
"backgroundSplashInAPuddleNotes": "Desfrute da consequência da tempestade Salpicando em uma Poça d'Água.",
|
||||
"backgroundSplashInAPuddleText": "Salpicando em uma Poça d'Água",
|
||||
"backgroundInTheArmoryNotes": "Equipe-se No Arsenal.",
|
||||
"backgroundInTheArmoryText": "No Arsenal",
|
||||
"backgrounds032021": "Conjunto 82: Lançado em Março de 2021",
|
||||
"backgrounds032021": "Conjunto 82: Lançado em março de 2021",
|
||||
"backgroundSpringThawNotes": "Assista a transição do inverno para o Degelo da Primavera.",
|
||||
"backgroundSpringThawText": "Degelo da Primavera",
|
||||
"backgroundElegantGardenText": "Jardim Elegante",
|
||||
|
|
@ -605,7 +605,7 @@
|
|||
"backgroundCottageConstructionText": "Chalé em Construção",
|
||||
"backgroundCottageConstructionNotes": "Ajude ou ao menos supervisione um Chalé em Construção.",
|
||||
"backgroundElegantGardenNotes": "Ande nesse Jardim Elegante bem cuidado.",
|
||||
"backgrounds052021": "Conjunto 84: Lançado em Maio de 2021",
|
||||
"backgrounds052021": "Conjunto 84: Lançado em maio de 2021",
|
||||
"backgroundAfternoonPicnicText": "Piquenique da Tarde",
|
||||
"backgroundAfternoonPicnicNotes": "Aproveite um Piquinique de Tarde sozinho(a) ou com seu mascote.",
|
||||
"backgroundDragonsLairText": "Covil do Dragão",
|
||||
|
|
@ -638,22 +638,22 @@
|
|||
"backgroundAutumnPoplarsNotes": "Deleite-se nos brilhantes tons de marrom e dourado na Floresta do Álamo Outonal.",
|
||||
"backgroundVineyardNotes": "Explore a ramificação de um Vinhedo frutífero.",
|
||||
"backgroundVineyardText": "Vinhedo",
|
||||
"backgrounds092021": "Conjunto 88: Lançado em Setembro de 2021",
|
||||
"backgrounds092021": "Conjunto 88: Lançado em setembro de 2021",
|
||||
"backgroundAutumnLakeshoreText": "Margem do Lago Outonal",
|
||||
"backgrounds102021": "Conjunto 89: Lançado em Outubro de 2021",
|
||||
"backgrounds102021": "Conjunto 89: Lançado em outubro de 2021",
|
||||
"backgroundCrypticCandlesText": "Velas Enigmáticas",
|
||||
"backgroundCrypticCandlesNotes": "Invoca forças misteriosas entre velas enigmáticas.",
|
||||
"backgroundHauntedPhotoText": "Foto Assombrada",
|
||||
"backgroundHauntedPhotoNotes": "Se encontre preso no mundo monocromático de uma Foto Assombrada.",
|
||||
"backgroundUndeadHandsText": "Mãos Mortas-vivas",
|
||||
"backgroundUndeadHandsNotes": "Tente escapar das garras de Mãos Mortas-vivas.",
|
||||
"backgrounds122021": "Conjunto 91: Lançado em Dezembro de 2021",
|
||||
"backgrounds122021": "Conjunto 91: Lançado em dezembro de 2021",
|
||||
"backgroundFrozenPolarWatersText": "Águas Polares Congeladas",
|
||||
"backgroundWinterCanyonText": "Cânion Invernal",
|
||||
"backgroundWinterCanyonNotes": "Aventure-se num Cânion Invernal!",
|
||||
"backgroundIcePalaceText": "Palácio de Gelo",
|
||||
"backgroundIcePalaceNotes": "Reine no Palácio de Gelo.",
|
||||
"backgrounds012022": "Conjunto 92: Lançado em Janeiro de 2022",
|
||||
"backgrounds012022": "Conjunto 92: Lançado em janeiro de 2022",
|
||||
"backgroundMeteorShowerText": "Chuva de Meteoros",
|
||||
"backgroundMeteorShowerNotes": "Contemple a deslumbrante exibição noturna de uma Chuva de Meteoros.",
|
||||
"backgroundPalmTreeWithFairyLightsText": "Palmeira em Luzes de Natal",
|
||||
|
|
@ -661,19 +661,19 @@
|
|||
"backgroundSnowyFarmNotes": "Veja se estão todos bem e aquecidos em sua Fazenda Nevada.",
|
||||
"backgroundFrozenPolarWatersNotes": "Explore Águas Polares Congeladas.",
|
||||
"backgroundPalmTreeWithFairyLightsNotes": "Faça uma pose ao lado de uma Palmeira enfeitada com Luzes de Natal.",
|
||||
"backgrounds112021": "Conjunto 90: Lançado em Novembro de 2021",
|
||||
"backgrounds112021": "Conjunto 90: Lançado em novembro de 2021",
|
||||
"backgroundFortuneTellersShopText": "Loja do Adivinho",
|
||||
"backgroundInsideAPotionBottleText": "No Frasco de Poção",
|
||||
"backgroundInsideAPotionBottleNotes": "Espie pelo vidro enquanto aguarda seu resgate No Frasco de Poção.",
|
||||
"backgroundFortuneTellersShopNotes": "ouça sugestões irresistíveis sobre seu futuro numa Loja do Adivinho.",
|
||||
"backgroundSpiralStaircaseNotes": "Suba, desça, sempre a rodar na Escadaria Espiral.",
|
||||
"backgroundSpiralStaircaseText": "Escadaria Espiral",
|
||||
"backgrounds022022": "Conjunto 93: Lançado em Fevereiro de 2022",
|
||||
"backgrounds032022": "Conjunto 94: Lançado em Março de 2022",
|
||||
"backgrounds022022": "Conjunto 93: Lançado em fevereiro de 2022",
|
||||
"backgrounds032022": "Conjunto 94: Lançado em março de 2022",
|
||||
"backgroundWinterWaterfallText": "Cachoeira Invernal",
|
||||
"backgroundOrangeGroveText": "Laranjal",
|
||||
"backgrounds042022": "Conjunto 95: Lançado em Abril de 2022",
|
||||
"backgrounds052022": "Conjunto 96: Lançado em Maio de 2022",
|
||||
"backgrounds042022": "Conjunto 95: Lançado em abril de 2022",
|
||||
"backgrounds052022": "Conjunto 96: Lançado em maio de 2022",
|
||||
"backgroundWinterWaterfallNotes": "Maravilhe-se diante de uma Cachoeira Invernal.",
|
||||
"backgroundIridescentCloudsNotes": "Flutue nas Nuvens Iridescentes.",
|
||||
"backgroundIridescentCloudsText": "Nuvens Iridescentes",
|
||||
|
|
@ -685,7 +685,7 @@
|
|||
"backgroundFloweringPrairieNotes": "Divirta-se em uma Pradaria Florida.",
|
||||
"backgroundOnACastleWallText": "Muralha do Castelo",
|
||||
"backgroundCastleGateNotes": "Monte guarda no Portão do Castelo.",
|
||||
"backgrounds062022": "Conjunto 97: Lançado em Junho de 2022",
|
||||
"backgrounds062022": "Conjunto 97: Lançado em junho de 2022",
|
||||
"backgroundBeachWithDunesText": "Praia com Dunas",
|
||||
"backgroundBeachWithDunesNotes": "Explore a Praia com Dunas.",
|
||||
"backgroundMountainWaterfallText": "Cachoeira da Montanha",
|
||||
|
|
@ -715,10 +715,10 @@
|
|||
"backgroundMessyRoomNotes": "Arrume um Quarto Bagunçado.",
|
||||
"backgroundByACampfireText": "Perto de Uma Fogueira",
|
||||
"backgroundByACampfireNotes": "Aqueça-se na faísca Perto de uma Fogueira.",
|
||||
"backgrounds082022": "Conjunto 99: Lançado em Agosto de 2022",
|
||||
"backgrounds082022": "Conjunto 99: Lançado em agosto de 2022",
|
||||
"backgroundRainbowEucalyptusText": "Eucalipto Arco-íris",
|
||||
"backgroundRainbowEucalyptusNotes": "Admire um bosque de Eucalipto Arco-íris.",
|
||||
"backgrounds092022": "Conjunto 100: Lançado em Setembro de 2022",
|
||||
"backgrounds092022": "Conjunto 100: Lançado em setembro de 2022",
|
||||
"backgroundOldPhotoNotes": "Faça uma pose em um Retrato Antigo.",
|
||||
"backgroundOldPhotoText": "Retrato Antigo",
|
||||
"backgroundAutumnPicnicNotes": "Aproveite um Piquenique de Outono.",
|
||||
|
|
@ -738,5 +738,12 @@
|
|||
"backgroundMistyAutumnForestText": "Floresta de Outono Enevoada",
|
||||
"backgroundMistyAutumnForestNotes": "Caminhar por uma Floresta de Outono Enevoada.",
|
||||
"backgroundAutumnBridgeText": "Ponte no Outono",
|
||||
"backgroundAutumnBridgeNotes": "Apreciar a beleza de uma Ponte no Outono."
|
||||
"backgroundAutumnBridgeNotes": "Apreciar a beleza de uma Ponte no Outono.",
|
||||
"backgrounds122022": "Conjunto 103: Lançado em dezembro de 2022",
|
||||
"backgroundBranchesOfAHolidayTreeNotes": "Brinque nos Galhos de uma Árvore Natalina.",
|
||||
"backgroundBranchesOfAHolidayTreeText": "Galhos de uma Árvore Natalina",
|
||||
"backgroundInsideACrystalText": "Dentro de um Cristal",
|
||||
"backgroundSnowyVillageText": "Aldeia Nevada",
|
||||
"backgroundSnowyVillageNotes": "Admire uma Aldeia Nevada.",
|
||||
"backgroundInsideACrystalNotes": "Observe a vista Dentro de um Cristal."
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -2740,5 +2740,47 @@
|
|||
"shieldArmoireBubblingCauldronText": "Caldeirão Borbulhante",
|
||||
"shieldArmoireBubblingCauldronNotes": "O caldeirão perfeito para preparar uma poção produtiva ou cozinhar uma sopa saborosa. De fato, há pouca diferença entre as duas! Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto Utensílios de Cozinha (item 2 de 2).",
|
||||
"weaponArmoireMagicSpatulaText": "Espátula Mágica",
|
||||
"weaponArmoireMagicSpatulaNotes": "Observe sua comida voar e virar no ar. Você obtém sorte no dia se virar três vezes e então cair de volta em sua espátula. Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto Utensílios de Cozinha (item 1 de 2)."
|
||||
"weaponArmoireMagicSpatulaNotes": "Observe sua comida voar e virar no ar. Você obtém sorte no dia se virar três vezes e então cair de volta em sua espátula. Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto Utensílios de Cozinha (item 1 de 2).",
|
||||
"armorMystery202212Notes": "O universo pode ser gelado, mas este vestido charmoso te manterá aconchegante enquanto voa. Não confere benefícios. Item de Assinante de dezembro de 2022.",
|
||||
"armorArmoireJewelersApronNotes": "Este avental resistente é a roupa perfeita para vestir nos momentos criativos. O melhor de tudo é que há dezenas de pequenos bolsos para guardar tudo que precisa. Aumenta a Inteligência em <%=int%>. Armário Encantado: Conjunto Joalheiro (Item 1 de 4).",
|
||||
"shieldArmoireJewelersPliersNotes": "Cortam, giram, apertam e muito mais. Esta ferramenta pode te ajudar a criar tudo que imaginar. Aumenta Força em <%= str %>. Armário Encantado: Conjunto Joalheiro (Item 3 de 4).",
|
||||
"armorMystery202212Text": "Vestido Glacial",
|
||||
"headAccessoryMystery202212Notes": "Fique mais quentinho e faça amizades de outro nível com esta tiara dourada ornamentada. Não confere benefícios. Item de Assinante de dezembro de 2022.",
|
||||
"eyewearArmoireJewelersEyeLoupeText": "Lupa de Joalheiro",
|
||||
"eyewearArmoireJewelersEyeLoupeNotes": "Esta lupa amplia seu trabalho para que possa ver absolutamente cada detalhe. Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto Joalheiro (Item 2 de 4).",
|
||||
"weaponArmoireFinelyCutGemNotes": "Você achou! Essa gema deslumbrante e com um corte preciso será o prêmio de sua coleção. E talvez contenha alguma mágica especial, apenas esperando seu toque. Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto Joalheiro (Item 4 de 4).",
|
||||
"weaponMystery202212Text": "Varinha Glacial",
|
||||
"weaponMystery202212Notes": "O floco de neve brilhante desta varinha possui o poder de aquecer corações, mesmo na noite mais gelada do inverno! Não confere benefícios. Item de Assinante de dezembro de 2022.",
|
||||
"weaponArmoireFinelyCutGemText": "Gema Finamente Cortada",
|
||||
"armorArmoireJewelersApronText": "Avental de Joalheiro",
|
||||
"shieldArmoireJewelersPliersText": "Alicate de Joalheiro",
|
||||
"headAccessoryMystery202212Text": "Tiara Glacial",
|
||||
"weaponSpecialWinter2023RogueText": "Faixa de Cetim Verde",
|
||||
"weaponSpecialWinter2023MageNotes": "Nem raposa nem fogo, mas muito festiva! Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Edição Limitada Equipamento de Inverno de 2022-2023.",
|
||||
"armorSpecialWinter2023WarriorNotes": "Este resistente traje de morsa é perfeito para um passeio pela praia no meio da noite. Aumenta Constituição em <%= con %>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"weaponSpecialWinter2023HealerNotes": "Observe esta coroa festiva e espinhosa girar no ar em direção aos seu inimigos ou obstáculos e retornar para você como um bumerangue, pronta para outro arremesso. Aumenta a Inteligência em <%=int%>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"armorSpecialWinter2023MageNotes": "Só porque você está reluzente, não quer dizer que seja uma árvore de natal... Talvez em outro ano. Aumenta a Inteligência em <%=int%>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"armorSpecialWinter2023RogueText": "Fita Enrolada",
|
||||
"armorSpecialWinter2023HealerNotes": "Este traje cardeal brilhante é perfeito para estar por cima de seus problemas. Aumenta Constituição em <%= con %>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"armorSpecialWinter2023RogueNotes": "Consiga itens. Empacote eles com papel de presente. E entregue para o Gatuno mais próximo! A hora requer isso. Aumenta Percepção em <%= per %>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"weaponSpecialWinter2023RogueNotes": "Há boatos de Gatunos que capturam as armas de seus oponentes, desarmam-nos e depois devolvem o item apenas para serem fofos. Aumenta Força em <%= str %>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"weaponSpecialWinter2023WarriorText": "Lança Presa",
|
||||
"weaponSpecialWinter2023MageText": "Rapofogo",
|
||||
"weaponSpecialWinter2023WarriorNotes": "As duas pontas desta lança têm a forma de presas de morsa, mas são duas vezes mais poderosas. Esmurre as dúvidas e os poemas tolos até recuarem! Aumenta Força em <%= str %>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"weaponSpecialWinter2023HealerText": "Jogando Guirlanda",
|
||||
"armorSpecialWinter2023WarriorText": "Traje Morsa",
|
||||
"armorSpecialWinter2023MageText": "Vestido Claro de Fada",
|
||||
"armorSpecialWinter2023HealerText": "Terno Cardeal",
|
||||
"headSpecialWinter2023RogueText": "Arco de Presente",
|
||||
"headSpecialWinter2023RogueNotes": "A tentação das pessoas de “desenrolar” seu cabelo lhe dará oportunidades de praticar suas esquivas. Aumenta Percepção em <%= per %>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"headSpecialWinter2023WarriorText": "Capacete de Morsa",
|
||||
"headSpecialWinter2023WarriorNotes": "Este capacete de morsa é perfeito para conversar com um amigo ou acompanhá-lo em uma refeição daquelas. Aumenta Força em <%= str %>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"headSpecialWinter2023MageText": "Tiara Iluminada por Fadas",
|
||||
"headSpecialWinter2023MageNotes": "Você nasceu com uma poção Noite Estrelada? Pois a constelação do meu olhar encheu de estrelas quando te vi. Aumenta Percepção em <%= per %>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"headSpecialWinter2023HealerText": "Capacete Cardeal",
|
||||
"headSpecialWinter2023HealerNotes": "Este capacete cardeal é perfeito para assobiar e cantar para anunciar a temporada de inverno. Aumenta a Inteligência em <%=int%>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"shieldSpecialWinter2023WarriorText": "Escudo de Ostra",
|
||||
"shieldSpecialWinter2023WarriorNotes": "A hora chegou, a Morsa diz, de dizer muitas coisas: sobre conchas de ostras—e sinos do inverno—sobre canções que alguém canta—e sobre onde está a pérola deste escudo—ou o que mais o novo ano trouxer! Aumenta Constituição em <%= con %>. Edição Limitada do Equipamento de Inverno de 2022-2023.",
|
||||
"shieldSpecialWinter2023HealerText": "Geléias Legais",
|
||||
"shieldSpecialWinter2023HealerNotes": "Sua canção de geada e neve acalmará os espíritos de todos que ouvirem. Aumenta Constituição em <%= con %>. Edição Limitada do Equipamento de Inverno de 2022-2023."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@
|
|||
"winter2021HollyIvyRogueSet": "Azevinho e Hera (Gatuno)",
|
||||
"g1g1HowItWorks": "Digite o nome de usuário que você gostaria de presentear. Depois disso, escolha a duração da assinatura e finalize a compra. Sua conta será automaticamente recompensada com a mesma assinatura que você acabou de presentear.",
|
||||
"howItWorks": "Como funciona",
|
||||
"g1g1Limitations": "Este é um evento de tempo limitado que começa no dia 16 de Dezembro (13:00 UTC, Horário de Brasília: 10:00) e terminará no dia 6 de Janeiro (01:00 UTC, Horário de Brasília: 22:00 do dia anterior). Essa promoção só se aplica quando você presenteia outro(a) habiticano(a). Se você ou o destinatário do presente já for assinante, a assinatura presenteada adicionará meses de crédito que só serão usados após a assinatura atual ser cancelada ou expirar.",
|
||||
"g1g1Limitations": "Este é um evento de tempo limitado que começa no dia 15 de dezembro às 10:00 pelo horário de Brasília e terminará no dia 9 de janeiro às 01:59 pelo horário de Brasília. Essa promoção só se aplica quando você presenteia outro habiticano. Se você ou o destinatário do presente já for assinante, a assinatura presenteada adicionará meses de crédito que só serão usados após a assinatura atual ser cancelada ou expirar.",
|
||||
"spring2021TwinFlowerRogueSet": "Flores Gêmeas (Gatuno)",
|
||||
"spring2021SwanMageSet": "Cisne (Mago)",
|
||||
"spring2021SunstoneWarriorSet": "Pedra Solar (Guerreiro)",
|
||||
|
|
@ -235,5 +235,9 @@
|
|||
"fall2022KappaRogueSet": "Kappa (Gatuno)",
|
||||
"fall2022WatcherHealerSet": "Observador (Curandeiro)",
|
||||
"gemSaleHow": "Entre <%= eventStartMonth %> <%= eventStartOrdinal %> e <%= eventEndOrdinal %>, compre qualquer pacote de Gemas e sua conta irá receber a quantidade de Gemas promocional. Mais Gemas para gastar, compartilhar ou guardar para futuras novidades!",
|
||||
"gemSaleLimitations": "Esta promoção apenas se aplica durante o tempo limitado do evento. Este evento começa em <%= eventStartMonth %> <%= eventStartOrdinal %> às 9:00 pelo horário de Brasília e irá terminar em <%= eventStartMonth %> <%= eventEndOrdinal %> às 21:00 pelo horário de Brasília. A promoção apenas está disponível ao comprar Gemas para você mesmo."
|
||||
"gemSaleLimitations": "Esta promoção apenas se aplica durante o tempo limitado do evento. Este evento começa em <%= eventStartMonth %> <%= eventStartOrdinal %> às 9:00 pelo horário de Brasília e irá terminar em <%= eventStartMonth %> <%= eventEndOrdinal %> às 21:00 pelo horário de Brasília. A promoção apenas está disponível ao comprar Gemas para você mesmo.",
|
||||
"winter2023FairyLightsMageSet": "Luzes de Natal (Mago)",
|
||||
"winter2023CardinalHealerSet": "Cardeal (Curandeiro)",
|
||||
"spring2023RibbonRogueSet": "Fita (Gatuno)",
|
||||
"winter2023WalrusWarriorSet": "Morsa (Guerreiro)"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@
|
|||
"questVice3Boss": "Vício, o Dragão Sombrio",
|
||||
"questVice3DropWeaponSpecial2": "Mastro do Dragão de Stephen Weber",
|
||||
"questVice3DropDragonEgg": "Dragão (Ovo)",
|
||||
"questVice3DropShadeHatchingPotion": "Poção de Eclosão Sombra",
|
||||
"questVice3DropShadeHatchingPotion": "Poção de Eclosão Sombria",
|
||||
"questGroupMoonstone": "Ascensão da Recaída",
|
||||
"questMoonstone1Text": "Recaída, Parte 1: A Corrente de Pedras da Lua",
|
||||
"questMoonstone1Notes": "Uma doença terrível atingiu os Habiticanos. Maus Hábitos que achávamos estarem mortos a muito tempo estão voltando à vida para vingança. Louças ficam sujas, livros esquecidos e a procrastinação corre livremente!<br><br>Você segue alguns de seus velhos Maus Hábitos até os Pântanos da Estagnação e descobre o culpado: Recaída, a Necromante! Você avança para atacá-la com armas em mãos mas as armas passam direto pelo espectro dela.<br><br>\"Nem tente\", ela fala baixinho com a voz rouca. \"Sem uma corrente de pedras da lua, nada pode me machucar - e joalheiro @aurakami espalhou todas as pedras da lua por toda a Habitica a muito tempo atrás!\" Ofegante, você foge... mas você sabe o que precisa fazer.",
|
||||
|
|
@ -314,8 +314,8 @@
|
|||
"questSnailUnlockText": "Desbloqueia Ovos de Caracol para compra no Mercado",
|
||||
"questBewilderText": "O Ilusion-lista",
|
||||
"questBewilderNotes": "A festa começa como qualquer outra.<br><br>Os aperitivos estão excelentes, a música está animada e até os elefantes dançarinos já são rotineiros. Os Habiticanos riem e conversam entre as abundantes flores dos centros de mesa, contentes por se distraírem das suas tarefas mais chatas, e o Primeiro de Abril rodopia entre eles, avidamente executando truques e fazendo piadas.<br><br>Assim que a torre-relógio de Mistyflying bate meia-noite, o Primeiro de Abril salta para o palco e começa um discurso.<br><br>\"Amigos! Inimigos! Conhecidos toleráveis! Dêem-me a vossa atenção.\" A multidão ri quando orelhas de animais aparecem nas suas cabeças e fazem poses com os seus novos acessórios.<br><br>\"Como sabem\", continua o Palhaço, \"as minhas divertidas ilusões normalmente duram somente um dia. No entanto, é o meu prazer anunciar que descobri uma forma de nos garantir diversão sem fim, sem o intrometido peso de nossas responsabilidades. Ilustres Habiticanos, conheçam o meu novo amigo mágico...O Ilusion-lista!\"<br><br>Lemoness empalidece subitamente, deixando cair os seus aperitivos. \"Esperem! Não confiem--\"<br><br>Subitamente uma névoa espessa e brilhante preenche a sala, rodopiando ao redor do Primeiro de Abril, transformando-se em penas e um pescoço alongado. A multidão fica sem palavras enquanto um pássaro monstruoso se materializa à sua frente, suas asas de brilhantes ilusões. Ele solta um riso estridente.<br><br>\"Ah! Faz eras desde que um Habiticano foi tolo o suficiente para me invocar! Que maravilhosa esta sensação de ter uma forma novamente.\"<br><br>Zumbindo de terror, as abelhas de Mistiflying fogem da cidade flutuante, que começa a descer do céu. Uma a uma, as brilhantes flores de primavera começam a secar e a flutuar ao vento.<br><br>\"Meus caros amigos, por que este pânico?\", grita o Ilusion-lista, batendo as suas asas. \"Não é necessário trabalhar mais pelas vossas recompensas. Eu simplesmente dar-vos-ei tudo o que desejam!\"<br><br>Moedas começam a chover do céu, batendo no solo com força e a multidão foge em busca de abrigo. \"Isso é uma piada?\" grita Baconsaur, enquanto o ouro parte janelas e telhas.<br><br>PainterProphet agacha-se enquanto relâmpagos caem e um nevoeiro tapa o Sol. \"Não! Desta vez, não creio que seja!\"<br><br>Depressa Habiticanos, não deixem que este Chefão Global os distraia dos seus objetivos! Mantenham o foco nas tarefas que precisam de completar para salvar Mistiflying -- e, com sorte, todos nós.",
|
||||
"questBewilderCompletion": "<strong>O Ilusion-lista foi DERROTADO!</strong><br><br>Conseguimos! O Ilusion-lista deixa sair um grito final enquanto se contorce no ar, soltando penas como chuva. Devagar e gradualmente, ele se transforma em uma nuvem de névoa. Enquanto o recente Sol começa a se revelar, furando o nevoeiro, ele se dissipa revelando as silhuetas de Bailey, Matt, Alex... e o próprio Primeiro de Abril.<br><br><strong>Mistiflying está salva!</strong><br><br>O Primeiro de Abril tem um ar envergonhado. \"Ah, hm,\" diz ele. \"Talvez eu tenha... me entusiasmado um pouco.\"<br><br>A multidão murmura. Flores ensopadas enchem os passeios. Em algum lugar, um telhado cai, fazendo soar o som de água.<br><br>\"É, bem...\" diz o Primeiro de Abril, \"Enfim. O que quero dizer é, me desculpem\". Ele solta um suspiro. \"Parece que nem tudo pode ser só diversão e jogos, afinal. Não machuca termos foco de vez em quando. Acho que vou começar a preparar a travessura do próximo ano.\"<br><br>Redphoenix tosse de forma ameaçadora.<br><br>\"Quero dizer, começar a limpeza de primavera deste ano!\" diz o Primeiro de Abril. \"Nada a temer! Vou deixar a Cidade dos Hábitos toda arrumada em pouco tempo. Felizmente ninguém é melhor que eu em usar dois esfregões ao mesmo tempo.\"<br><br>Motivada, a banda de cerimônias começa a tocar.<br><br>Não demora muito até que tudo esteja de volta ao normal na Cidade dos Hábitos. Mais - agora que o Ilusion-lista evaporou, as abelhas mágicas de Mistiflying voltaram ao trabalho e em pouco tempo as flores voltam a brotar e a cidade está flutuando novamente.<br><br>Enquanto os Habiticanos fazem carinho nas abelhas mágicas, os olhos do Primeiro de Abril se iluminam. \"Oho! Tive uma ideia! Porque não mantemos algumas destas Abelhas como mascotes e montarias? É uma recompensa que representa perfeitamente o equilíbrio entre trabalho árduo e doces recompensas, se for para ser todo metafórico e bobo.\" Ele pisca o olho. \"Além disso, elas não têm ferrões! Palavra de Palhaço.\"",
|
||||
"questBewilderCompletionChat": "`O Ilusion-lista foi DERROTADO!`\n\nConseguimos! O Ilusion-lista deixa sair um grito final enquanto se contorce no ar, soltando penas como chuva. Devagar e gradualmente, ele se transforma em uma nuvem de névoa. Enquanto o recente Sol começa a se revelar, furando o nevoeiro, ele se dissipa revelando as silhuetas de Bailey, Matt, Alex... e o próprio Primeiro de Abril.\n\n`Mistiflying está salva!`\n\nO Primeiro de Abril tem um ar envergonhado. \"Ah, hm,\" diz ele. \"Talvez eu tenha... me entusiasmado um pouco.\"\n\nA multidão murmura. Flores ensopadas enchem os passeios. Em algum lugar, um telhado cai, fazendo soar o som de água.\n\n\"É, bem...\" diz o Primeiro de Abril, \"Enfim. O que quero dizer é, me desculpem\". Ele solta um suspiro. \"Parece que nem tudo pode ser só diversão e jogos, afinal. Não machuca termos foco de vez em quando. Acho que vou começar a preparar a travessura do próximo ano.\"\n\nRedphoenix tosse de forma ameaçadora.\n\n\"Quero dizer, começar a limpeza de primavera deste ano!\" diz o Primeiro de Abril. \"Nada a temer! Vou deixar a Cidade dos Hábitos toda arrumada em pouco tempo. Felizmente ninguém é melhor que eu em usar dois esfregões ao mesmo tempo.\"\n\nMotivada, a banda de cerimônias começa a tocar.\n\nNão demora muito até que tudo esteja de volta ao normal na Cidade dos Hábitos. Mais - agora que o Ilusion-lista evaporou, as abelhas mágicas de Mistiflying voltaram ao trabalho e em pouco tempo as flores voltam a brotar e a cidade está flutuando novamente.\n\nEnquanto os Habiticanos fazem carinho nas abelhas mágicas, os olhos do Primeiro de Abril se iluminam. \"Oho! Tive uma ideia! Porque não mantemos algumas destas Abelhas como mascotes e montarias? É uma recompensa que representa perfeitamente o equilíbrio entre trabalho árduo e doces recompensas, se for para ser todo metafórico e bobo.\" Ele pisca o olho. \"Além disso, elas não têm ferrões! Palavra de Palhaço.\"",
|
||||
"questBewilderCompletion": "<strong>O Ilusion-lista foi DERROTADO!</strong><br><br>Conseguimos! O Ilusion-lista deixa sair um grito final enquanto se contorce no ar, soltando penas como chuva. Devagar e gradualmente, ele se transforma em uma nuvem de névoa. Enquanto o recente Sol começa a se revelar, furando o nevoeiro, ele se dissipa revelando as silhuetas de Bailey, Matt, Alex... e o próprio Piadista.<br><br><strong>Borbópolis está salva!</strong><br><br>O Piadista tem um ar envergonhado. \"Ah, hm,\" diz ele. \"Talvez eu tenha... me entusiasmado um pouco.\"<br><br>A multidão murmura. Flores ensopadas enchem os passeios. Em algum lugar, um telhado cai, fazendo soar o som de água.<br><br>\"É, bem...\" diz o Piadista, \"Enfim. O que quero dizer é, me desculpem\". Ele solta um suspiro. \"Parece que nem tudo pode ser só diversão e jogos, afinal. Não machuca termos foco de vez em quando. Acho que vou começar a preparar a travessura do próximo ano.\"<br><br>Redphoenix tosse de forma ameaçadora.<br><br>\"Quero dizer, começar a limpeza de primavera deste ano!\" diz o Piadista. \"Nada a temer! Vou deixar a Cidade dos Hábitos toda arrumada em pouco tempo. Felizmente ninguém é melhor que eu em usar dois esfregões ao mesmo tempo.\"<br><br>Motivada, a banda de cerimônias começa a tocar.<br><br>Não demora muito até que tudo esteja de volta ao normal na Cidade dos Hábitos. Mais - agora que o Ilusion-lista evaporou, as abelhas mágicas de Borbópolis voltaram ao trabalho e em pouco tempo as flores voltam a brotar e a cidade está flutuando novamente.<br><br>Enquanto os Habiticanos fazem carinho nas abelhas mágicas, os olhos do Piadista se iluminam. \"Oho! Tive uma ideia! Porque não mantemos algumas destas Abelhas como mascotes e montarias? É uma recompensa que representa perfeitamente o equilíbrio entre trabalho árduo e doces recompensas, se for para ser todo metafórico e bobo.\" Ele pisca o olho. \"Além disso, elas não têm ferrões! Palavra de Palhaço.\"",
|
||||
"questBewilderCompletionChat": "`O Ilusion-lista foi DERROTADO!`\n\nConseguimos! O Ilusion-lista deixa sair um grito final enquanto se contorce no ar, soltando penas como chuva. Devagar e gradualmente, ele se transforma em uma nuvem de névoa. Enquanto o recente Sol começa a se revelar, furando o nevoeiro, ele se dissipa revelando as silhuetas de Bailey, Matt, Alex... e o próprio Piadista.\n\n`Borbópolis está salva!`\n\nO Piadista tem um ar envergonhado. \"Ah, hm,\" diz ele. \"Talvez eu tenha... me entusiasmado um pouco.\"\n\nA multidão murmura. Flores ensopadas enchem os passeios. Em algum lugar, um telhado cai, fazendo soar o som de água.\n\n\"É, bem...\" diz o Piadista, \"Enfim. O que quero dizer é, me desculpem\". Ele solta um suspiro. \"Parece que nem tudo pode ser só diversão e jogos, afinal. Não machuca termos foco de vez em quando. Acho que vou começar a preparar a travessura do próximo ano.\"\n\nRedphoenix tosse de forma ameaçadora.\n\n\"Quero dizer, começar a limpeza de primavera deste ano!\" diz o Piadista. \"Nada a temer! Vou deixar a Cidade dos Hábitos toda arrumada em pouco tempo. Felizmente ninguém é melhor que eu em usar dois esfregões ao mesmo tempo.\"\n\nMotivada, a banda de cerimônias começa a tocar.\n\nNão demora muito até que tudo esteja de volta ao normal na Cidade dos Hábitos. Mais - agora que o Ilusion-lista evaporou, as abelhas mágicas de Borbópolis voltaram ao trabalho e em pouco tempo as flores voltam a brotar e a cidade está flutuando novamente.\n\nEnquanto os Habiticanos fazem carinho nas abelhas mágicas, os olhos do Piadista se iluminam. \"Oho! Tive uma ideia! Porque não mantemos algumas destas Abelhas como mascotes e montarias? É uma recompensa que representa perfeitamente o equilíbrio entre trabalho árduo e doces recompensas, se for para ser todo metafórico e bobo.\" Ele pisca o olho. \"Além disso, elas não têm ferrões! Palavra de Palhaço.\"",
|
||||
"questBewilderBossRageTitle": "Ataque de Decepção",
|
||||
"questBewilderBossRageDescription": "Quando essa barra encher, o Ilusion-lista vai lançar o seu Ataque de Decepção sobre Habitica!",
|
||||
"questBewilderDropBumblebeePet": "Abelha Mágica (Mascote)",
|
||||
|
|
@ -442,7 +442,7 @@
|
|||
"questStoikalmCalamity1DropDesertPotion": "Poção de Eclosão Deserto",
|
||||
"questStoikalmCalamity1DropArmor": "Armadura do Cavaleiro de Mamute",
|
||||
"questStoikalmCalamity2Text": "Calamidade em Stoïkalm, Parte 2: Procure as Cavernas Gélidas",
|
||||
"questStoikalmCalamity2Notes": "O salão majestoso dos Cavaleiros de Mamute é uma obra-prima incrível de arquitetura, mas também está inteiramente vazia. Não há móveis, não há armas e até as colunas estão sem suas decorações.<br><br>\"Aqueles crânios limparam este lugar,\" Lady Glaciata diz lançando um hálito de nevasca. \"Humilhante. Nenhuma alma deve mencionar isso ao Primeiro de Abril, ou eu nunca vou parar de ouvir sobre isso.\"<br><br>\"Que misterioso!\" diz @Beffymaroo. \"Mas onde eles--\"<br><br>\"As caverna do dragão de gelo.\" Lady Glaciata gesticula para brilhantes moedas jogadas na neve lá fora. \"Descuidado.\"<br><br>\"Mas não são dragões de gelo criaturas que respeitam seu próprio tesouro?\" @Beffymaroo pergunta. \"Por que eles possivelmente--\"<br><br>\"Controle da mente,\" diz Lady Glaciata, completamente sem foco. \"Ou algo igualmente melodramático e inconveniente.\" Ela começa a andar no corredor. \"Por que você está aí parado?\"<br><br>Rápido, vá seguir a trilha das Moedas de Gelo!",
|
||||
"questStoikalmCalamity2Notes": "O salão majestoso dos Cavaleiros de Mamute é uma obra-prima incrível de arquitetura, mas também está inteiramente vazia. Não há móveis, não há armas e até as colunas estão sem suas decorações.<br><br>\"Aqueles crânios limparam este lugar,\" Lady Glaciata diz lançando um hálito de nevasca. \"Humilhante. Nenhuma alma deve mencionar isso ao Piadista, ou eu nunca vou parar de ouvir sobre isso.\"<br><br>\"Que misterioso!\" diz @Beffymaroo. \"Mas onde eles--\"<br><br>\"As caverna do dragão de gelo.\" Lady Glaciata gesticula para brilhantes moedas jogadas na neve lá fora. \"Descuidado.\"<br><br>\"Mas não são dragões de gelo criaturas que respeitam seu próprio tesouro?\" @Beffymaroo pergunta. \"Por que eles possivelmente--\"<br><br>\"Controle da mente,\" diz Lady Glaciata, completamente sem foco. \"Ou algo igualmente melodramático e inconveniente.\" Ela começa a andar no corredor. \"Por que você está aí parado?\"<br><br>Rápido, vá seguir a trilha das Moedas de Gelo!",
|
||||
"questStoikalmCalamity2Completion": "As Moedas de Gelo te levam diretamente a uma entrada enterrada de uma caverna muito bem escondida. Apesar do clima do lado de for ser calmo e amável, com a luz do sol esparramada pela neve, dentro da caverna há um grande barulho, perfurante como o gélido vento. Lady Glaciata te entrega um Elmo do Cavaleiro de Mamute. \"Use isto,\" ela diz. \"Você vai precisar.\"",
|
||||
"questStoikalmCalamity2CollectIcicleCoins": "Moedas de Gelo",
|
||||
"questStoikalmCalamity2DropHeadgear": "Elmo do Cavaleiro de Mamute (Cabeça)",
|
||||
|
|
@ -473,25 +473,25 @@
|
|||
"questButterflyUnlockText": "Desbloqueia Ovos de Lagarto para compra no Mercado",
|
||||
"questGroupMayhemMistiflying": "Loucura em Borbópolis",
|
||||
"questMayhemMistiflying1Text": "Loucura em Borbópolis, Parte 1: Borbomágica Experimenta um Terrível Destino",
|
||||
"questMayhemMistiflying1Notes": "Apesar dos adivinhos locais terem prevido um bom clima, a tarde está com ventos fortíssimos, então você devagar segue seu amigo @Kiwibot até sua casa para escapar deste dia de ventos fortes. <br><br>Nenhum dos dois espera encontrar o Primeiro de Abril relaxando na mesa da cozinha.<br><br>\"Ahh, olá\", ele diz. \"Que bom encontrar vocês aqui. Por favor, me deixe te oferecer um pouco deste delicioso chã.\"<br><br>\"Esse...\", @Kiwibot começa. \"Esse é MEU---\"<br><br>\"Sim, sim, claro,\" diz o Primeiro de Abril, enquanto pega uns biscoitos. \"Só pensei que eu poderia entrar aqui e me livrar um pouco de todas as caveiras conjuradoras de tornados.\" Ele beberica um pouco seu chá. \"Incidentalmente, a cidade de Borbópolis está sendo atacada.\"<br><br>Horrorizado, você e seus amigos correm para os Estábulos e selam sua mais rápida montaria voadora. Enquanto vocês planam acima da cidade flutuante, vocês veem que um conjunto barulhento de caveiras voadoras está de olho na cidade... e muitas percebem e se viram na sua direção!",
|
||||
"questMayhemMistiflying1Completion": "A última caveira cai do céu, com um brilhante conjunto de roupas de arco-íris preso em sua mandíbula, mas a ventania não diminuiu. Algo mais está agindo aqui. E onde está o preguiçoso Primeiro de Abril? Você pega as roupas e entra na cidade.",
|
||||
"questMayhemMistiflying1Notes": "Apesar dos adivinhos locais terem prevido um bom clima, a tarde está com ventos fortíssimos, então você devagar segue seu amigo @Kiwibot até sua casa para escapar deste dia de ventos fortes. <br><br>Nenhum dos dois espera encontrar o Piadista relaxando na mesa da cozinha.<br><br>\"Ahh, olá\", ele diz. \"Que bom encontrar vocês aqui. Por favor, me deixe te oferecer um pouco deste delicioso chá.\"<br><br>\"Esse...\", @Kiwibot começa. \"Esse é MEU---\"<br><br>\"Sim, sim, claro,\" diz o Piadista, enquanto pega uns biscoitos. \"Só pensei que eu poderia entrar aqui e me livrar um pouco de todas as caveiras conjuradoras de tornados.\" Ele beberica um pouco seu chá. \"Incidentalmente, a cidade de Borbópolis está sendo atacada.\"<br><br>Horrorizado, você e seus amigos correm para os Estábulos e selam sua mais rápida montaria voadora. Enquanto vocês planam acima da cidade flutuante, vocês veem que um conjunto barulhento de caveiras voadoras está de olho na cidade... e muitas percebem e se viram na sua direção!",
|
||||
"questMayhemMistiflying1Completion": "A última caveira cai do céu, com um brilhante conjunto de roupas de arco-íris preso em sua mandíbula, mas a ventania não diminuiu. Algo mais está agindo aqui. E onde está o preguiçoso Piadista? Você pega as roupas e entra na cidade.",
|
||||
"questMayhemMistiflying1Boss": "Enxame de Caveiras Voadoras",
|
||||
"questMayhemMistiflying1RageTitle": "Retorno do Enxame",
|
||||
"questMayhemMistiflying1RageDescription": "Retorno do Enxame: Esta barra enche quando você não completa suas Diárias. Quando ela estiver cheia, o Enxame de Crânios vai curar 30% de sua vida restante!",
|
||||
"questMayhemMistiflying1RageDescription": "Retorno do Enxame: Esta barra enche quando você não completa suas Diárias. Quando ela estiver cheia, o Enxame de Caveiras Voadoras vai curar 30% de sua vida restante!",
|
||||
"questMayhemMistiflying1RageEffect": "`Enxame de Caveiras de Fogo usa RETORNO DO ENXAME!`\n\nEncorajado pelas suas vitórias, mais crânios giram ao seu redor numa espiral de fogo!",
|
||||
"questMayhemMistiflying1DropSkeletonPotion": "Poção de Eclosão Esqueleto",
|
||||
"questMayhemMistiflying1DropWhitePotion": "Poção de Eclosão Branca",
|
||||
"questMayhemMistiflying1DropArmor": "Túnica do Mensageiro Arco-Íris Malandro (Armadura)",
|
||||
"questMayhemMistiflying2Text": "Loucura em Borbópolis, Parte 2: E o Vento Piora",
|
||||
"questMayhemMistiflying2Notes": "Borbópolis começa a trepidar enquanto as abelhas mágicas que a mantém flutuando são golpeadas pelo vendaval. Depois de uma busca desenfreada pelo Primeiro de Abril, vocês o encontram numa cabana, alegremente jogando cartas com uma caveira amarrada e com raiva. <br><br>@Katy133 levanta a voz através do assobiante vento. \"O que está causando isto? Nós derrotamos as caveiras, mas isto está piorando!\"<br><br>\"Esse é o problema,\" o Primeiro de Abril concordo. \"Por favor seja uma dama e não comente com a Lady Glaucial. Ela sempre fica reclamando e querendo acabar nossa relação por eu seu \"catastroficamente irresponsável\" e eu tenho medo que ela possa entender mal essa situação.\" Ele embaralha as cartas. \"Talvez você possa seguir as Borbomágicas? Elas são imateriais, então o vento não pode jogar elas pra longe. Além disso, elas costumam se concentrar próximo de ameaças.\" Ele mostra a janela onde várias das criaturas patronas da cidade estão flutuando em direção leste. \"Agora me deixe concentrar... meu oponente não está com uma cara boa.\"",
|
||||
"questMayhemMistiflying2Completion": "Você segue as Borbomágicas para o lugar do tornado, onde está muito forte para você continuar. <br><br>\"Isso deve ajudar,\" diz uma voz diretamente no seu ouvido, tanto que você quase cai da sua montaria. O Primeiro de Abril está, de alguma forma, sentado bem ao seu lado na sela da montaria. \"Eu ouvi que aqueles capuz de mensageiros emitem uma aura que protege contra maus climas -- bem útil para não perder cartas enquanto se voa por aí. Talvez você possa tentar?\"",
|
||||
"questMayhemMistiflying2Notes": "Borbópolis começa a trepidar enquanto as abelhas mágicas que a mantém flutuando são golpeadas pelo vendaval. Depois de uma busca desenfreada pelo Piadista, vocês o encontram numa cabana, alegremente jogando cartas com uma caveira amarrada e com raiva. <br><br>@Katy133 levanta a voz através do assobiante vento. \"O que está causando isto? Nós derrotamos as caveiras, mas isto está piorando!\"<br><br>\"Esse é o problema,\" o Piadista concorda. \"Por favor seja uma dama e não comente com a Lady Glaucial. Ela sempre fica reclamando e querendo acabar nossa relação por eu seu \"catastroficamente irresponsável\" e eu tenho medo que ela possa entender mal essa situação.\" Ele embaralha as cartas. \"Talvez você possa seguir as Borbomágicas? Elas são imateriais, então o vento não pode jogar elas pra longe. Além disso, elas costumam se concentrar próximo de ameaças.\" Ele mostra a janela onde várias das criaturas patronas da cidade estão flutuando em direção leste. \"Agora me deixe concentrar... meu oponente não está com uma cara boa.\"",
|
||||
"questMayhemMistiflying2Completion": "Você segue as Borbomágicas para o lugar do tornado, onde está muito forte para você continuar. <br><br>\"Isso deve ajudar,\" diz uma voz diretamente no seu ouvido, tanto que você quase cai da sua montaria. O Piadista está, de alguma forma, sentado bem ao seu lado na sela da montaria. \"Eu ouvi que aqueles capuz de mensageiros emitem uma aura que protege contra maus climas -- bem útil para não perder cartas enquanto se voa por aí. Talvez você possa tentar?\"",
|
||||
"questMayhemMistiflying2CollectRedMistiflies": "Borbomágica Vermelha",
|
||||
"questMayhemMistiflying2CollectBlueMistiflies": "Borbomágica Azul",
|
||||
"questMayhemMistiflying2CollectGreenMistiflies": "Borbomágica Verde",
|
||||
"questMayhemMistiflying2DropHeadgear": "Capuz do Mensageiro Arco-Íris Malandro (Cabeça)",
|
||||
"questMayhemMistiflying3Text": "Loucura em Borbópolis, Parte 3: o Carteiro que é Extremamente Rude",
|
||||
"questMayhemMistiflying3Text": "Loucura em Borbópolis, Parte 3: O Carteiro que é Extremamente Rude",
|
||||
"questMayhemMistiflying3Notes": "As Borbomágicas estão girando tão rápido no tornado que é difícil vê-las. Olhando atentamente, você vê uma silhueta de algo com várias asas voando no centro da imensa tempestade. <br>\"Ai ai ai\", o Primeiro de Abril suspira, quase não se ouve por culpa do barulho da tempestade. \"Parece que Winny, de alguma forma, foi possuído. Problema bem comum, isso daí. Pode acontecer com qualquer um.\"<br><br>\"O Manipulador do Vento!\" @Beffymaroo grita para você. \"Ele é o mensageiro-mago mais talentoso de Borbópolis, exatamente por ser tão bom com magias do clima. Normalmente, ele é um mensageiro bem educado!\"<br><br>Como se quisesse desmentir essa última frase, o Manipulador do Vento lança um grito de fúria e mesmo com seu manto mágico, a tempestade quase te derruba de sua montaria.<br><br>\"Essa máscara toda cheguei é nova,\" o Primeiro de Abril nota. \"Talvez você devesse livrar ele da máscara?\"<br><br>É uma boa ideia... mas o mago em fúria não vai desistir sem uma boa briga.",
|
||||
"questMayhemMistiflying3Completion": "Logo quando você acreditava que não poderia aguentar o vento nenhum pouco mais, você consegue se esgueirar e arrancar a máscara do Manipulador do Vento. Instantaneamente, o tornado desaparece, deixando apenas uma reparadora briza com o brilho do sol. O Manipular do Vento olha ao redor aliviado. \"Onde ela foi?\"<br><br>\"Quem\", seu amigo @khdarkwolf pergunta. <br><br>\"Aquela doce mulher que se ofereceu para entregar um pacote por mim. Tzina.\" Ao notar a cidade que fora atacada pelo vento, sua expressão cai. \"Então, talvez ela não fosse tão doce...\"<br><br>O Primeiro de Abril o consola e entrega dois envelopes brilhantes. \"Aqui, por que você não deixa esse cansado amigo descansar e toma conta das cartas um pouco? Eu ouvi que a mágica nesses envelopes farão valer à pena seu tempo.\"",
|
||||
"questMayhemMistiflying3Completion": "Logo quando você acreditava que não poderia aguentar o vento nenhum pouco mais, você consegue se esgueirar e arrancar a máscara do Manipulador do Vento. Instantaneamente, o tornado desaparece, deixando apenas uma reparadora briza com o brilho do sol. O Manipular do Vento olha ao redor aliviado. \"Onde ela foi?\"<br><br>\"Quem?\", seu amigo @khdarkwolf pergunta. <br><br>\"Aquela doce mulher que se ofereceu para entregar um pacote por mim. Tzina.\" Ao notar a cidade que fora atacada pelo vento, sua expressão cai. \"Então, talvez ela não fosse tão doce...\"<br><br>O Piadista o consola e entrega dois envelopes brilhantes. \"Aqui, por que você não deixa esse cansado amigo descansar e toma conta das cartas um pouco? Eu ouvi que a mágica nesses envelopes farão valer à pena seu tempo.\"",
|
||||
"questMayhemMistiflying3Boss": "O Manipulador do Vento",
|
||||
"questMayhemMistiflying3DropPinkCottonCandy": "Algodão-Doce Rosa (Comida)",
|
||||
"questMayhemMistiflying3DropShield": "Mensagem do Arco-Íris Gatuno (Mão Secundária)",
|
||||
|
|
@ -519,7 +519,7 @@
|
|||
"questGroupLostMasterclasser": "Mistério dos Mestres de Classe",
|
||||
"questUnlockLostMasterclasser": "Para desbloquear essa missão, complete as missões finais dessa cadeia de missões: 'Angústia de Lentópolis', 'Loucura em Borbópolis', 'Calamidade de Stoïkalm' e 'Horror em Matarefa'.",
|
||||
"questLostMasterclasser1Text": "O Mistério dos Mestres de Classe, Parte 1: Leia as Entrelinhas",
|
||||
"questLostMasterclasser1Notes": "Inesperadamente, você é convocado por @beffymaroo e @Lemoness ao Salão do Hábito, onde fica atônito ao encontrar os quatro Mestres de Classe esperando por você sob a pálida luz da alvorada. Até mesmo a Ceifadora Alegre parece sombria.<br><br>\"Oh, você está aqui,\" diz Primeiro de Abril. \"Não tiraríamos você de seu descanso sem um motivo terrível—\"<br><br>\"Ajude-nos a investigar o recente ataque de possessões,' interrompe Lady Glaciata. \"Todas as vítimas culpam uma pessoa chamada Tzina.\"<br><br>Primeiro de Abril fica claramente ofendido com a interrupção. \"E quanto ao meu discurso?\" ele chia com ela. \"Com o nevoeiro e as trovoadas?\"<br><br>\"Temos pressa\", ela murmura de volta. \"E meus mamutes ainda estão encharcados por causa de sua prática incessante.\"<br><br>\"Receio que a estimada Mestre dos Guerreiros está certa,\" diz o Rei Manta. \"Tempo é essencial. Você nos ajudará?\"<br><br>Quando você concorda, ele agita sua varinha e abre um portal, revelando uma sala subaquática. \"Nade comigo até Dilatória e buscaremos em minha biblioteca por qualquer referência que nos dê uma pista.\" Ao perceber sua confusão, diz \"Não se preocupe. O papel foi encantado muito antes de Dilatória afundar. Nenhum dos livros está nem perto de estar molhado!\" Ele pisca. \"Diferente dos mamutes de Lady Glaciata.\"<br><br>\"Eu escutei isso, Manta.\"<br><br>Ao mergulhar na água após o Mestre dos Magos, suas pernas magicamente se transformam em nadadeiras. Embora seu corpo esteja flutuando, seu coração afunda ao ver as milhares de prateleiras. É melhor começar a leitura…",
|
||||
"questLostMasterclasser1Notes": "Inesperadamente, você é convocado por @beffymaroo e @Lemoness ao Salão do Hábito, onde fica atônito ao encontrar os quatro Mestres de Classe esperando por você sob a pálida luz da alvorada. Até mesmo a Ceifadora Alegre parece sombria.<br><br>\"Oh, você está aqui,\" diz Piadista. \"Não tiraríamos você de seu descanso sem um motivo terrível—\"<br><br>\"Ajude-nos a investigar o recente ataque de possessões\", interrompe Lady Glaciata. \"Todas as vítimas culpam uma pessoa chamada Tzina.\"<br><br>Piadista fica claramente ofendido com a interrupção. \"E quanto ao meu discurso?\" ele chia com ela. \"Com o nevoeiro e as trovoadas?\"<br><br>\"Temos pressa\", ela murmura de volta. \"E meus mamutes ainda estão encharcados por causa de sua prática incessante.\"<br><br>\"Receio que a estimada Mestre dos Guerreiros está certa,\" diz o Rei Manta. \"Tempo é essencial. Você nos ajudará?\"<br><br>Quando você concorda, ele agita sua varinha e abre um portal, revelando uma sala subaquática. \"Nade comigo até Dilatória e buscaremos em minha biblioteca por qualquer referência que nos dê uma pista.\" Ao perceber sua confusão, diz \"Não se preocupe. O papel foi encantado muito antes de Dilatória afundar. Nenhum dos livros está nem perto de estar molhado!\" Ele pisca. \"Diferente dos mamutes de Lady Glaciata.\"<br><br>\"Eu escutei isso, Manta.\"<br><br>Ao mergulhar na água após o Mestre dos Magos, suas pernas magicamente se transformam em nadadeiras. Embora seu corpo esteja flutuando, seu coração afunda ao ver as milhares de prateleiras. É melhor começar a leitura…",
|
||||
"questLostMasterclasser1Completion": "Após horas de busca nos volumes, você ainda não encontrou nenhuma informação útil.<br><br>\"É impossível que não exista nenhuma mísera referência a qualquer coisa relevante,\" diz a bibliotecária \"@Tuqjoi e seu assistente @stefalupagus concorda frustrado.<br><br>Os olhos de Rei Manta se estreitam. \"Impossível não...\" ele diz. \"<em>Intencional</em>.\" Por um instante a água brilha em volta de suas mãos e vários livros se arrepiam. \"Alguma coisa está obscurecendo a informação,\" ele diz. \"Não apenas um feitiço simples, mas algo com vontade própria. Algo... vivo.\" Ele nada para fora da mesa. \"A Ceifadora Alegre precisa saber disso. Vamos preparar algo para comer na estrada.\"",
|
||||
"questLostMasterclasser1CollectAncientTomes": "Tomos Antigos",
|
||||
"questLostMasterclasser1CollectForbiddenTomes": "Tomos Proibidos",
|
||||
|
|
@ -531,7 +531,7 @@
|
|||
"questLostMasterclasser2DropEyewear": "Máscara Etérea (Acessório de Olhos)",
|
||||
"questLostMasterclasser3Text": "O Mistério dos Mestres de Classe, Parte 3: Cidade nas Areias",
|
||||
"questLostMasterclasser3Notes": "Assim que a noite cai sobre as areias incandescentes de Tempo Perdido, seus guias @AnndeLuna, @KiwiBot e @Katy133 lhe levam a frente. Pilares alvejantes atravessam as dunas sombrias e, ao se aproximarem, um som arrepiante ecoa o ambiente que antes parecia abandonado. <br><br>\" Criaturas invisíveis!\" diz Primeiro de Abril claramente ambicioso \"Hehehe! Só imaginem as possibilidades. Este deve de ser um trabalho de um Gatuno realmente furtivo\"<br><br>\" Um Gatuno que pode estar nos vigiando\", fala Lady Glaciata desmontando de seu corcel e brandindo sua lança. \" Se eles estão prontos para atacar, tentem não irritar-los . Eu não quero outro incidente como o dos vulcões.\"<br><br> Ele então retruca \" Mas aquele foi com certeza um dos resgastes mais esplendidos\"<br><br> Para sua surpresa, Lady Glaciata cora com o elogio e dá um passo afobado para trás, como que para examinar as ruínas. <br><br> \"Parecem os destroços de uma antiga cidade\" diz @AnnDeLune. \"Eu só imagino o que será...\"<br><br> Antes que ela pudesse terminar sua fala, um portal emerge dos céus. Magia não deveria ser praticamente impossível aqui?! Você ouve o trote brusco dos animais invisíveis ao fugirem em pânico, e prontamente se põe em guarda para mais uma vez lutar contra uivantes caveiras que transbordam dos céus prontas para um massacre.",
|
||||
"questLostMasterclasser3Completion": "Primeiro de Abril surpreende a ultima caveira com um spray de areia, e ela recua até Lady Glaciata, que a destrói com destreza. Bom respire fundo e de uma olhada, você vê a silhueta de alguém movendo por um único instante no outro lado do portal que está se fechando. Quase como reflexo, você estende a mão para o baú dos itens previamente conquistados e se agarra ao amuleto, e com determinação, vai em direção da pessoa invisível. Ignorando os gritos de aviso de Lady Glaciata e Primeiro de Abril, você salta pelo portal instantes antes dele fechar, sendo submerso em um pegajoso vazio.",
|
||||
"questLostMasterclasser3Completion": "Piadista surpreende a última caveira com um spray de areia, e ela recua até Lady Glaciata, que a destrói com destreza. Bom, respire fundo e de uma olhada, você vê a silhueta de alguém movendo por um único instante no outro lado do portal que está se fechando. Quase como reflexo, você estende a mão para o baú dos itens previamente conquistados e se agarra ao amuleto, e com determinação, vai em direção da pessoa invisível. Ignorando os gritos de aviso de Lady Glaciata e Piadista, você salta pelo portal instantes antes dele fechar, sendo submerso em um pegajoso vazio.",
|
||||
"questLostMasterclasser3Boss": "Enxame de Caveiras do Vácuo",
|
||||
"questLostMasterclasser3RageTitle": "Retorno do Enxame",
|
||||
"questLostMasterclasser3RageDescription": "Retorno do Enxame: Esta barra enche quando você não completa suas Diárias. Quando fica cheia, o Enxame de Caveiras de Vácuo irá curar 30% de sua vida!",
|
||||
|
|
@ -544,7 +544,7 @@
|
|||
"questLostMasterclasser3DropZombiePotion": "Poção de Eclosão Zumbi",
|
||||
"questLostMasterclasser4Text": "O Mistério dos Mestres de Classe, Parte 4: A Mestra Desaparecida",
|
||||
"questLostMasterclasser4Notes": "Você emerge do portal, ainda suspenso em um estranho, e instável, submundo “Aquilo foi ousado,” diz uma voz fria. “Eu devo admitir, ainda não havia planejado uma batalha direta” Uma mulher ascende do redemoinho revolto em trevas. “Bem-vindo(a) ao reino do vácuo.”<br><br>Você tenta lutar contra uma sensação nauseante enquanto pergunta \"Você é a Zinnya?” <br><br>“Este é um velho nome para uma jovem idealista” ela diz com a boca contorcendo enquanto o mundo distorce sobre seus pés “Não! Se realmente precisa de um nome, deve me chamar como a Anti’zinnya agora, depois de tudo que eu fiz e desfiz.”<br><br>De repente, o portal reabre atrás de você e dele saltam todos os quatro mestres de classes, correndo em sua direção. Os olhos da Anti’zinnya’s estão preenchidos de ódio ao olhar essa cena. “Vejo que meus patéticos substitutos conseguiram chegar até você”<br><br>Você não acredita. “Substitutos?”<br><br>“Como mestre dobradora do ether, eu fui a primeira mestre de classe - a única mestre de classe. Esses quatro são patéticos, cada um possuindo apenas um fragmento do que um dia eu tive! Eu comandei cada magia, eu aprendi todas as habilidades. Eu quem criei o seu mundo pela minha vontade - até que o traiçoeiro ether se colapsou sobre o peso dos meus talentos e das minhas expectativas perfeitamente razoáveis. Depois, eu estive aprisionada por milênios nesse vácuo resultante, me recuperando. Imagina meu desgosto quando descobri o quanto meu legado foi corrompido. Ela deixa escapar uma fina, ecoante risada. “Meu plano era demolir seus domínios antes de destruir cada um de vocês, mas suponho que a ordem dos fatores é irrelevante” Com uma explosão de força desenfreada ela dispara em sua direção, e o Reino do Vácuo explode em caos.",
|
||||
"questLostMasterclasser4Completion": "Durante a investida de seu último ataque, A Mestra Desaparecida grita com frustração, e o corpo dela oscila em translucidez. O vazio começa envolve-la enquanto ela cai para frente, e por um momento, você enxerga ela se transformar, se tornando mais jovem, calma, e com uma expressão de paz em seu rosto... mas acaba com tudo esvaindo-se como apenas um sussurro, e você se encontra mais uma vez de joelhos no meio do deserto.<br><br>\"Parece que nós temos muito o que aprender sobre nossa história,\" diz o Rei Manta, olhando para as ruínas. \"Depois da Mestra Dobradora de Ether ter crescido sobrecarregada e perder o controle sob suas habilidades, o vazio derramado levou toda a vida desta terra. Provavelmente tudo o que se conhece poderia se tornar um deserto como este\"<br><br> \"Não é de se espantar que os antigos fundadores de Habitica sempre insistiam no equilíbrio da produtividade e do bem estar,\" murmura a Ceifadora Alegre. \"Reconstruir o mundo deles deve ter sido uma tarefa assustadora de um longo e árduo trabalho., mas eles deveriam querer prevenir que tal catástrofe acontecesse novamente\".<br><br>\"Uau, olhe aqueles itens primitivos!\" diz Primeiro de Abril. Com certeza, que todos eles brilho com a pálido e translúcida cintilação vinda da explosão final de ether que ocorreu quando você colocou o espirito de Anti’zinnya’s para dormir. \"Que efeito deslumbrante. Eu devo fazer anotações\"<br><br> \"Provavelmente o restos concentrados de ether nessa área, também tornaram os animais invisíveis\" diz Lady Glaciata, ao coçar a cabeça de uma silhueta vazia atrás das orelhas. Você sente uma cabeça fofa e invisível tocar a palma de sua mão e suspeita que terá que dar explicações aos Estábulos quando voltar para casa. Ao olhar as ruínas umas última vez, você vê o que sobrou da primeira Mestra de Classes: sua capa brilhante. Colocando-a em seus ombros, você volta para cidade do Hábito, pensando sobre tudo que aprendeu.<br><br>",
|
||||
"questLostMasterclasser4Completion": "Durante a investida de seu último ataque, A Mestra Desaparecida grita com frustração, e o corpo dela oscila em translucidez. O vazio começa envolve-la enquanto ela cai para frente, e por um momento, você enxerga ela se transformar, se tornando mais jovem, calma, e com uma expressão de paz em seu rosto... mas acaba com tudo esvaindo-se como apenas um sussurro, e você se encontra mais uma vez de joelhos no meio do deserto.<br><br>\"Parece que nós temos muito o que aprender sobre nossa história,\" diz o Rei Manta, olhando para as ruínas. \"Depois da Mestra Dobradora de Ether ter crescido sobrecarregada e perder o controle sob suas habilidades, o vazio derramado levou toda a vida desta terra. Provavelmente tudo o que se conhece poderia se tornar um deserto como este\"<br><br> \"Não é de se espantar que os antigos fundadores de Habitica sempre insistiam no equilíbrio da produtividade e do bem estar,\" murmura a Ceifadora Alegre. \"Reconstruir o mundo deles deve ter sido uma tarefa assustadora de um longo e árduo trabalho, mas eles deveriam querer prevenir que tal catástrofe acontecesse novamente\".<br><br>\"Uau, olhe aqueles itens primitivos!\" diz Piadista. Com certeza, todos eles brilham com a pálido e translúcida cintilação vinda da explosão final de ether que ocorreu quando você colocou o espírito de Anti’zinnya’s para dormir. \"Que efeito deslumbrante. Eu devo fazer anotações\"<br><br> \"Provavelmente o restos concentrados de ether nessa área, também tornaram os animais invisíveis\" diz Lady Glaciata, ao coçar a cabeça de uma silhueta vazia atrás das orelhas. Você sente uma cabeça fofa e invisível tocar a palma de sua mão e suspeita que terá que dar explicações aos Estábulos quando voltar para casa. Ao olhar as ruínas uma última vez, você vê o que sobrou da primeira Mestra de Classes: sua capa brilhante. Colocando-a em seus ombros, você volta para cidade do Hábito, pensando sobre tudo que aprendeu.<br><br>",
|
||||
"questLostMasterclasser4Boss": "Anti'zinnya",
|
||||
"questLostMasterclasser4RageTitle": "Vácuo Sifonante",
|
||||
"questLostMasterclasser4RageDescription": "Vácuo Sifonante: Essa barra enche quando você não completa suas Diárias. Quando estiver cheia, Anti'zinnya vai remover o Mana do grupo!",
|
||||
|
|
@ -751,7 +751,7 @@
|
|||
"questVirtualPetRageEffect": "`O Gotchimonstro usa Apito Irritante!` Gotchimonstro emite um bipe irritante e sua barrinha de felicidade desaparece de repente! Dano pendente reduzido.",
|
||||
"questVirtualPetDropVirtualPetPotion": "Poção de Eclosão de Mascote Virtual",
|
||||
"questVirtualPetBoss": "Gotchimonstro",
|
||||
"questVirtualPetText": "Caos Virtual depois do Primeiro de Abril: O apitamento",
|
||||
"questVirtualPetText": "Caos Virtual com o Piadista: O Apitamento",
|
||||
"questVirtualPetNotes": "É uma calma e prazerosa manhã de primavera em Habitica, uma semana após um memorável Primeiro de Abril. Você e @Beffymaroo estão no estábulo cuidando de seus mascotes (que ainda estão um pouco confusos com o tempo gasto virtualmente!).<br><br>Você ouve um estrondo longínquo e um som de bipe, suave no início mas que fica cada vez mais alto, como se estivesse se aproximando. Uma forma oval aparece no horizonte e ao se aproximar, apitando cada vez mais alto, você vê que é um bichinho virtual gigantesco!<br><br>\"Ah, não!\" @Beffymaroo exclama, \"Eu acho que o Piadista deixou alguns assuntos inacabados com o grandalhão aqui, parece que ele quer atenção!\"<br><br>O mascote virtual apita nervosamente, fazendo uma birra virtual e retumbando cada vez mais perto.",
|
||||
"questVirtualPetCompletion": "Alguns cuidados apertos de botões parecem ter satisfeito as misteriosas necessidades virtuais do mascote, e ele finalmente se acalmou, parecendo contente.<br><br>Repentinamente em uma explosão de confete, o Piadista aparece com uma cesta cheia de estranhas poções emitindo suaves apitos.<br><br>\"Que sincronia, hein, Piadista,\" @Beffymaroo diz com um sorriso amargo. \"Suspeito que esse camarada apitante seja um conhecido seu.\"<br><br>\"Hã, sim,\" o Piadista diz timidamente. \"Perdão por isso, e obrigado a vocês por cuidarem do Assistimon! Pegue essas poções como agradecimento, elas podem trazer de volta seus mascotes virtuais sempre que quiserem!\"<br><br>Você não está 100% certo de que simpatiza com toda a apitação, mas eles são fofos, então vale o risco!"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -216,5 +216,6 @@
|
|||
"mysterySet202209": "Conjunto Mágico Escolar",
|
||||
"mysterySet202210": "Conjunto Serpente Sinistra",
|
||||
"mysteryset202211": "Conjunto Eletromante",
|
||||
"mysterySet202211": "Conjunto Eletromante"
|
||||
"mysterySet202211": "Conjunto Eletromante",
|
||||
"mysterySet202212": "Conjunto Guardião Glacial"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -141,5 +141,8 @@
|
|||
"achievementWoodlandWizardText": "Собраны все лесные питомцы: Барсук, Медведь, Олень, Лиса, Лягушонок, Еж, Сова, Улитка, Белка и Куст!",
|
||||
"achievementBoneToPickText": "Собраны все классические и квестовые костяные питомцы!",
|
||||
"achievementBoneToPick": "Коллекционер(-ша) костей",
|
||||
"achievementBoneToPickModalText": "Вы собрали всех классических и квестовых костяных питомцев!"
|
||||
"achievementBoneToPickModalText": "Вы собрали всех классических и квестовых костяных питомцев!",
|
||||
"achievementPolarPro": "Полярник",
|
||||
"achievementPolarProModalText": "Вы собрали всех полярных питомцев!",
|
||||
"achievementPolarProText": "Собраны все полярные питомцы: медведь, лиса, пингвин, кит и волк!"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -742,5 +742,11 @@
|
|||
"backgrounds112022": "Набор 102: Выпущен в ноябре 2022",
|
||||
"backgroundAmongGiantMushroomsText": "Среди гигантских грибов",
|
||||
"backgroundMistyAutumnForestNotes": "Побродите по туманному осеннему лесу.",
|
||||
"backgroundAmongGiantMushroomsNotes": "Восхищайтесь гигантскими грибами."
|
||||
"backgroundAmongGiantMushroomsNotes": "Восхищайтесь гигантскими грибами.",
|
||||
"backgrounds122022": "Набор 103: Выпущен в декабре 2022",
|
||||
"backgroundBranchesOfAHolidayTreeText": "Ветви праздничной елки",
|
||||
"backgroundInsideACrystalText": "Внутри кристалла",
|
||||
"backgroundBranchesOfAHolidayTreeNotes": "Порезвитесь на ветвях праздничной елки.",
|
||||
"backgroundSnowyVillageText": "Снежная деревня",
|
||||
"backgroundSnowyVillageNotes": "Полюбуйтесь заснеженной деревней."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2737,5 +2737,10 @@
|
|||
"weaponArmoireMagicSpatulaText": "Волшебная лопатка",
|
||||
"shieldArmoireBubblingCauldronText": "Кипящий котел",
|
||||
"weaponArmoireMagicSpatulaNotes": "Наблюдайте за тем, как ваши продукты взлетают и переворачиваются в воздухе. Вам повезет, если они перевернутся три раза, а затем приземлятся обратно на лопатку. Увеличивает восприятие на <%= per %>. Зачарованный сундук: Набор кухонной утвари (предмет 1 из 2).",
|
||||
"shieldArmoireBubblingCauldronNotes": "Идеальный котел для варки полезного зелья или приготовления наваристого супа. На самом деле, разница между ними невелика! Увеличивает телосложение на <%= con %>. Зачарованный сундук: Набор кухонной утвари (предмет 2 из 2)."
|
||||
"shieldArmoireBubblingCauldronNotes": "Идеальный котел для варки полезного зелья или приготовления наваристого супа. На самом деле, разница между ними невелика! Увеличивает телосложение на <%= con %>. Зачарованный сундук: Набор кухонной утвари (предмет 2 из 2).",
|
||||
"weaponMystery202212Text": "Ледяной жезл",
|
||||
"weaponSpecialWinter2023RogueText": "Зеленый атласный пояс",
|
||||
"weaponSpecialWinter2023WarriorNotes": "Два зубца этого копья по своей форме напоминают бивни моржа, но в два раза мощнее. Подкалывайте сомнения до тех пор пока они не отступят! Увеличивает силу на <%= str %>. Ограниченный выпуск зимы 2022-2023.",
|
||||
"weaponSpecialWinter2023RogueNotes": "Легенды рассказывают, как разбойники заманивают своих противников в западню, обезоруживают их, а затем возвращают им их же оружие, просто чтобы быть милыми. Увеличивает Силу на <%= str %>. Ограниченный выпуск зимы 2022-2023.",
|
||||
"weaponSpecialWinter2023WarriorText": "Бивневое копье"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -235,5 +235,9 @@
|
|||
"fall2022WatcherHealerSet": "Подглядывающий (Целитель)",
|
||||
"fall2022KappaRogueSet": "Каппа (Разбойник)",
|
||||
"gemSaleHow": "В период между <%= eventStartMonth %> <%= eventStartOrdinal %> и <%= eventEndOrdinal %>, просто купите любой набор самоцветов, как обычно, и на ваш счет будет зачислено акционное количество самоцветов. Больше самоцветов, которыми можно поделиться, потратить их или сохранить для будущих релизов!",
|
||||
"gemSaleLimitations": "Данная акция действует только в течение ограниченного по времени события. Это событие начинается <%= eventStartMonth %> <%= eventStartOrdinal %> в 15:00 (12:00 UTC) и заканчивается <%= eventStartMonth %> <%= eventEndOrdinal %> в 03:00 (00:00 UTC). Промо-предложение доступно только при покупке драгоценных камней для себя."
|
||||
"gemSaleLimitations": "Данная акция действует только в течение ограниченного по времени события. Это событие начинается <%= eventStartMonth %> <%= eventStartOrdinal %> в 15:00 (12:00 UTC) и заканчивается <%= eventStartMonth %> <%= eventEndOrdinal %> в 03:00 (00:00 UTC). Промо-предложение доступно только при покупке драгоценных камней для себя.",
|
||||
"winter2023FairyLightsMageSet": "Волшебные огни (Маг)",
|
||||
"winter2023CardinalHealerSet": "Кардинал (Целитель)",
|
||||
"winter2023WalrusWarriorSet": "Морж (Воин)",
|
||||
"spring2023RibbonRogueSet": "Лента (Разбойник)"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -216,5 +216,6 @@
|
|||
"mysterySet202207": "Набор желейной медузы",
|
||||
"mysterySet202210": "Набор Зловещей змеи",
|
||||
"mysteryset202211": "Набор электроманта",
|
||||
"mysterySet202211": "Набор электроманта"
|
||||
"mysterySet202211": "Набор электроманта",
|
||||
"mysterySet202212": "Набор ледяного стража"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
"reachedLevel": "Dostigli ste nivo <%= level %>",
|
||||
"achievementLostMasterclasser": "Quest Completionist: Masterclasser Series",
|
||||
"achievementLostMasterclasserText": "Completed all sixteen quests in the Masterclasser Quest Series and solved the mystery of the Lost Masterclasser!",
|
||||
"foundNewItemsCTA": "Idi do inventara i spoj napitak za izleganje sa jajetom!",
|
||||
"foundNewItemsExplanation": "Završavanje zadataka ti daje šansu da nadješ stvari kao što su jaja,napitci za izleganje,hrana za ljubimce.",
|
||||
"foundNewItemsCTA": "Idi do inventara i spoji napitak za izleganje sa jajetom!",
|
||||
"foundNewItemsExplanation": "Završavanje zadataka ti omogućava da pronađeš stvari kao što su Jaja, Napici za Izleganje i Hrana za Ljubimce.",
|
||||
"foundNewItems": "Našao si nove stvari!",
|
||||
"hideAchievements": "Sakrij kategoriju",
|
||||
"showAllAchievements": "Prikaži sve kategorije",
|
||||
"hideAchievements": "Sakrij <%= kategoriju %>",
|
||||
"showAllAchievements": "Prikaži sve <%= kategorije %>",
|
||||
"onboardingCompleteDescSmall": "Ako želiš još,pogledaj Dostignuća i skupljaj!",
|
||||
"onboardingCompleteDesc": "Zaslužio si <strong>5 dostignuća</strong> i <strong class=\"gold-amount\">100 zlatnika</strong> za završavanje liste.",
|
||||
"onboardingComplete": "Završio si zadate zadatke!",
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@
|
|||
"backgroundTavernText": "Habitika Krčma",
|
||||
"backgroundTavernNotes": "Posetite Habitika Krčmu.",
|
||||
"backgrounds102015": "Komplet 17: Oktobar 2015",
|
||||
"backgroundHarvestMoonText": "Harvest Moon",
|
||||
"backgroundHarvestMoonText": "Mesec Žetve",
|
||||
"backgroundHarvestMoonNotes": "Cackle under the Harvest Moon.",
|
||||
"backgroundSlimySwampText": "Слузава Мочвара",
|
||||
"backgroundSlimySwampNotes": "Шљапкати кроз Слузаву Мочвару.",
|
||||
|
|
@ -159,8 +159,8 @@
|
|||
"backgroundStoneCircleText": "Krug Kamena",
|
||||
"backgroundStoneCircleNotes": "Бацај чини у Кругу од Камења.",
|
||||
"backgrounds042016": "Komplet 23: April 2016",
|
||||
"backgroundArcheryRangeText": "Archery Range",
|
||||
"backgroundArcheryRangeNotes": "Practice on the Archery Range.",
|
||||
"backgroundArcheryRangeText": "Teren za Streličarstvo",
|
||||
"backgroundArcheryRangeNotes": "Vežbaj na Terenu za Streličarstvo.",
|
||||
"backgroundGiantFlowersText": "Дивовско Цвеће",
|
||||
"backgroundGiantFlowersNotes": "Забава на врху Дивовског Цвећа.",
|
||||
"backgroundRainbowsEndText": "Kraj Duge",
|
||||
|
|
@ -196,8 +196,8 @@
|
|||
"backgrounds092016": "Комплет 28: Септембар 2016",
|
||||
"backgroundCornfieldsText": "Кукурузна поља",
|
||||
"backgroundCornfieldsNotes": "Уживај у дивном дану на Кукурузним пољима.",
|
||||
"backgroundFarmhouseText": "Farmhouse",
|
||||
"backgroundFarmhouseNotes": "Say hello to the animals on your way to the Farmhouse.",
|
||||
"backgroundFarmhouseText": "Seoska Kuća",
|
||||
"backgroundFarmhouseNotes": "Pozdravi životinje na putu prema Seoskoj Kući",
|
||||
"backgroundOrchardText": "Воћњак",
|
||||
"backgroundOrchardNotes": "Обери зрело воће у Воћњаку.",
|
||||
"backgrounds102016": "Комплет 29: Октобар 2016",
|
||||
|
|
@ -228,8 +228,8 @@
|
|||
"backgroundYellowText": "Жута",
|
||||
"backgroundYellowNotes": "Укусно жута позадина.",
|
||||
"backgrounds122016": "Комплет 31: Децембар 2016",
|
||||
"backgroundShimmeringIcePrismText": "Shimmering Ice Prisms",
|
||||
"backgroundShimmeringIcePrismNotes": "Dance through the Shimmering Ice Prisms.",
|
||||
"backgroundShimmeringIcePrismText": "Svetlucava Ledena Prizma",
|
||||
"backgroundShimmeringIcePrismNotes": "Pleši kroz Svetlucavu Ledenu Prizmu.",
|
||||
"backgroundWinterFireworksText": "Зимски Ватромет",
|
||||
"backgroundWinterFireworksNotes": "Активирај Зимски Ватромет.",
|
||||
"backgroundWinterStorefrontText": "Зима Продавница",
|
||||
|
|
@ -256,8 +256,8 @@
|
|||
"backgroundMistiflyingCircusText": "Мистични Циркус",
|
||||
"backgroundMistiflyingCircusNotes": "Лумповање у Мистичном Циркусу.",
|
||||
"backgrounds042017": "Комплет 35: Април 2017",
|
||||
"backgroundBugCoveredLogText": "Bug-Covered Log",
|
||||
"backgroundBugCoveredLogNotes": "Investigate a Bug-Covered Log.",
|
||||
"backgroundBugCoveredLogText": "Panj Prekriven Bubama",
|
||||
"backgroundBugCoveredLogNotes": "Istraži Panj Prekriven Bubama.",
|
||||
"backgroundGiantBirdhouseText": "Giant Birdhouse",
|
||||
"backgroundGiantBirdhouseNotes": "Perch in a Giant Birdhouse.",
|
||||
"backgroundMistShroudedMountainText": "Mist-Shrouded Mountain",
|
||||
|
|
|
|||
|
|
@ -231,7 +231,7 @@
|
|||
"questGroupDilatoryDistress": "Dilatory Distress",
|
||||
"questDilatoryDistress1Text": "Dilatory Distress, Part 1: Message in a Bottle",
|
||||
"questDilatoryDistress1Notes": "A message in a bottle arrived from the newly rebuilt city of Dilatory! It reads: \"Dear Habiticans, we need your help once again. Our princess has disappeared and the city is under siege by some unknown watery demons! The mantis shrimps are holding the attackers at bay. Please aid us!\" To make the long journey to the sunken city, one must be able to breathe water. Fortunately, the alchemists @Benga and @hazel can make it all possible! You only have to find the proper ingredients.",
|
||||
"questDilatoryDistress1Completion": "You don the the finned armor and swim to Dilatory as quickly as you can. The merfolk and their mantis shrimp allies have managed to keep the monsters outside the city for the moment, but they are losing. No sooner are you within the castle walls than the horrifying siege descends!",
|
||||
"questDilatoryDistress1Completion": "Navlačiš oklop sa perajama i plivaš do Sporograda što brže možeš. Sirene i njihovi saveznici rakovi ustonošci su do sada uspeli da zadrže čudovišta van grada, ali se teško drže. Samo što si kročio/la unutar zidina dvorca, stravična opsada započinje!",
|
||||
"questDilatoryDistress1CollectFireCoral": "Fire Coral",
|
||||
"questDilatoryDistress1CollectBlueFins": "Blue Fins",
|
||||
"questDilatoryDistress1DropArmor": "Finned Oceanic Armor (Armor)",
|
||||
|
|
@ -568,71 +568,71 @@
|
|||
"questPterodactylUnlockText": "Unlocks purchasable Pterodactyl eggs in the Market",
|
||||
"questBadgerText": "Stop Badgering Me!",
|
||||
"questBadgerNotes": "Ah, winter in the Taskwoods. The softly falling snow, the branches sparkling with frost, the Flourishing Fairies… still not snoozing?<br><br>“Why are they still awake?” cries @LilithofAlfheim. “If they don't hibernate soon, they'll never have the energy for planting season.”<br><br>As you and @Willow the Witty hurry to investigate, a furry head pops up from the ground. Before you can yell, “It’s the Badgering Bother!” it’s back in its burrow—but not before snatching up the Fairies' “Hibernate” To-Dos and dropping a giant list of pesky tasks in their place!<br><br>“No wonder the fairies aren't resting, if they're constantly being badgered like that!” @plumilla says. Can you chase off this beast and save the Taskwood’s harvest this year?",
|
||||
"questBadgerCompletion": "You finally drive away the the Badgering Bother and hurry into its burrow. At the end of a tunnel, you find its hoard of the faeries’ “Hibernate” To-Dos. The den is otherwise abandoned, except for three eggs that look ready to hatch.",
|
||||
"questBadgerBoss": "The Badgering Bother",
|
||||
"questBadgerDropBadgerEgg": "Badger (Egg)",
|
||||
"questBadgerUnlockText": "Unlocks purchasable Badger eggs in the Market",
|
||||
"questDysheartenerText": "The Dysheartener",
|
||||
"questBadgerCompletion": "Konačno oteravši Jazavičasto Uznemirenje, brzom parom se spuštaš u njegovu jazbinu. Na kraju tunela pronalaziš gomilu vilinskih Zadataka u režimu sna. Jama je napuštena, izuzev triju jaja koja izgledaju kao da će se ubrzo izleći.",
|
||||
"questBadgerBoss": "Jazavičasto Uznemirenje",
|
||||
"questBadgerDropBadgerEgg": "Jazavac (Jaje)",
|
||||
"questBadgerUnlockText": "Otključava kupovinu Jaja Jazavca na Pijaci",
|
||||
"questDysheartenerText": "Obeshrabljivač",
|
||||
"questDysheartenerNotes": "The sun is rising on Valentine’s Day when a shocking crash splinters the air. A blaze of sickly pink light lances through all the buildings, and bricks crumble as a deep crack rips through Habit City’s main street. An unearthly shrieking rises through the air, shattering windows as a hulking form slithers forth from the gaping earth.<br><br>Mandibles snap and a carapace glitters; legs upon legs unfurl in the air. The crowd begins to scream as the insectoid creature rears up, revealing itself to be none other than that cruelest of creatures: the fearsome Dysheartener itself. It howls in anticipation and lunges forward, hungering to gnaw on the hopes of hard-working Habiticans. With each rasping scrape of its spiny forelegs, you feel a vise of despair tightening in your chest.<br><br>“Take heart, everyone!” Lemoness shouts. “It probably thinks that we’re easy targets because so many of us have daunting New Year’s Resolutions, but it’s about to discover that Habiticans know how to stick to their goals!”<br><br>AnnDeLune raises her staff. “Let’s tackle our tasks and take this monster down!”",
|
||||
"questDysheartenerCompletion": "<strong>The Dysheartener is DEFEATED!</strong><br><br>Together, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”<br><br>Glowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigor and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.<br><br>The crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.<br><br>Our newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.<br><br>Beffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”<br><br>Crooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
|
||||
"questDysheartenerCompletionChat": "`The Dysheartener is DEFEATED!`\n\nTogether, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”\n\nGlowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigor and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.\n\nThe crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.\n\nOur newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.\n\nBeffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”\n\nCrooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
|
||||
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
|
||||
"questDysheartenerBossRageTitle": "Razarajući Slom Srca",
|
||||
"questDysheartenerBossRageDescription": "The Rage Attack gauge fills when Habiticans miss their Dailies. If it fills up, the Dysheartener will unleash its Shattering Heartbreak attack on one of Habitica's shopkeepers, so be sure to do your tasks!",
|
||||
"questDysheartenerBossRageSeasonal": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nOh, no! After feasting on our undone Dailies, the Dysheartener has gained the strength to unleash its Shattering Heartbreak attack. With a shrill shriek, it brings its spiny forelegs down upon the pavilion that houses the Seasonal Shop! The concussive blast of magic shreds the wood, and the Seasonal Sorceress is overcome by sorrow at the sight.\n\nQuickly, let's keep doing our Dailies so that the beast won't strike again!",
|
||||
"seasonalShopRageStrikeHeader": "The Seasonal Shop was Attacked!",
|
||||
"seasonalShopRageStrikeLead": "Leslie is Heartbroken!",
|
||||
"seasonalShopRageStrikeHeader": "Sezonska radnja je napadnuta!",
|
||||
"seasonalShopRageStrikeLead": "Lezlino Srce je Slomljeno!",
|
||||
"seasonalShopRageStrikeRecap": "On February 21, our beloved Leslie the Seasonal Sorceress was devastated when the Dysheartener shattered the Seasonal Shop. Quickly, tackle your tasks to defeat the monster and help rebuild!",
|
||||
"marketRageStrikeHeader": "The Market was Attacked!",
|
||||
"marketRageStrikeLead": "Alex is Heartbroken!",
|
||||
"marketRageStrikeHeader": "Pijaca je napadnuta!",
|
||||
"marketRageStrikeLead": "Aleksovo Srce je Slomljeno!",
|
||||
"marketRageStrikeRecap": "On February 28, our marvelous Alex the Merchant was horrified when the Dysheartener shattered the Market. Quickly, tackle your tasks to defeat the monster and help rebuild!",
|
||||
"questsRageStrikeHeader": "The Quest Shop was Attacked!",
|
||||
"questsRageStrikeLead": "Ian is Heartbroken!",
|
||||
"questsRageStrikeHeader": "Prodavnica Misija je napadnuta!",
|
||||
"questsRageStrikeLead": "Ianovo Srce je Slomljeno!",
|
||||
"questsRageStrikeRecap": "On March 6, our wonderful Ian the Quest Guide was deeply shaken when the Dysheartener shattered the ground around the Quest Shop. Quickly, tackle your tasks to defeat the monster and help rebuild!",
|
||||
"questDysheartenerBossRageMarket": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nHelp! After feasting on our incomplete Dailies, the Dysheartener lets out another Shattering Heartbreak attack, smashing the walls and floor of the Market! As stone rains down, Alex the Merchant weeps at his crushed merchandise, stricken by the destruction.\n\nWe can't let this happen again! Be sure to do all our your Dailies to prevent the Dysheartener from using its final strike.",
|
||||
"questDysheartenerBossRageQuests": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nAaaah! We've left our Dailies undone again, and the Dysheartener has mustered the energy for one final blow against our beloved shopkeepers. The countryside around Ian the Quest Master is ripped apart by its Shattering Heartbreak attack, and Ian is struck to the core by the horrific vision. We're so close to defeating this monster.... Hurry! Don't stop now!",
|
||||
"questDysheartenerDropHippogriffPet": "Hopeful Hippogriff (Pet)",
|
||||
"questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
|
||||
"questDysheartenerDropHippogriffPet": "Hipogrif Pun Nade (Ljubimac)",
|
||||
"questDysheartenerDropHippogriffMount": "Hipogrif Pun Nade (Jahaća Životinja)",
|
||||
"dysheartenerArtCredit": "Artwork by @AnnDeLune",
|
||||
"hugabugText": "Hug a Bug Quest Bundle",
|
||||
"hugabugText": "Paket Misija: Prigrli Bube",
|
||||
"hugabugNotes": "Contains 'The CRITICAL BUG,' 'The Snail of Drudgery Sludge,' and 'Bye, Bye, Butterfry.' Available until March 31.",
|
||||
"questSquirrelText": "The Sneaky Squirrel",
|
||||
"questSquirrelText": "Veverica Šunjavica",
|
||||
"questSquirrelNotes": "You wake up and find you’ve overslept! Why didn’t your alarm go off? … How did an acorn get stuck in the ringer?<br><br>When you try to make breakfast, the toaster is stuffed with acorns. When you go to retrieve your mount, @Shtut is there, trying unsuccessfully to unlock their stable. They look into the keyhole. “Is that an acorn in there?”<br><br>@randomdaisy cries out, “Oh no! I knew my pet squirrels had gotten out, but I didn’t know they’d made such trouble! Can you help me round them up before they make any more of a mess?”<br><br>Following the trail of mischievously placed oak nuts, you track and catch the wayward sciurines, with @Cantras helping secure each one safely at home. But just when you think your task is almost complete, an acorn bounces off your helm! You look up to see a mighty beast of a squirrel, crouched in defense of a prodigious pile of seeds.<br><br>“Oh dear,” says @randomdaisy, softly. “She’s always been something of a resource guarder. We’ll have to proceed very carefully!” You circle up with your party, ready for trouble!",
|
||||
"questSquirrelCompletion": "With a gentle approach, offers of trade, and a few soothing spells, you’re able to coax the squirrel away from its hoard and back to the stables, which @Shtut has just finished de-acorning. They’ve set aside a few of the acorns on a worktable. “These ones are squirrel eggs! Maybe you can raise some that don’t play with their food quite so much.”",
|
||||
"questSquirrelBoss": "Sneaky Squirrel",
|
||||
"questSquirrelDropSquirrelEgg": "Squirrel (Egg)",
|
||||
"questSquirrelUnlockText": "Unlocks purchasable Squirrel eggs in the Market",
|
||||
"cuddleBuddiesText": "Cuddle Buddies Quest Bundle",
|
||||
"questSquirrelBoss": "Veverica Šunjavica",
|
||||
"questSquirrelDropSquirrelEgg": "Veverica (Jaje)",
|
||||
"questSquirrelUnlockText": "Otključava kupovinu Jaja Veverice na Pijaci",
|
||||
"cuddleBuddiesText": "Paket Misija: Drugari za Zagrljaje",
|
||||
"cuddleBuddiesNotes": "Contains 'The Killer Bunny', 'The Nefarious Ferret', and 'The Guinea Pig Gang'. Available until May 31.",
|
||||
"aquaticAmigosText": "Aquatic Amigos Quest Bundle",
|
||||
"aquaticAmigosText": "Paket Misija: Morski Amigosi",
|
||||
"aquaticAmigosNotes": "Contains 'The Magical Axolotl', 'The Kraken of Inkomplete', and 'The Call of Octothulu'. Available until June 30.",
|
||||
"questSeaSerpentText": "Danger in the Depths: Sea Serpent Strike!",
|
||||
"questSeaSerpentText": "Opasnost iz Dubina: Napad Morske Zmije!",
|
||||
"questSeaSerpentNotes": "Your streaks have you feeling lucky—it’s the perfect time for a trip to the seahorse racetrack. You board the submarine at Diligent Docks and settle in for the trip to Dilatory, but you’ve barely submerged when an impact rocks the sub, sending its occupants tumbling. “What’s going on?” @AriesFaries shouts.<br><br>You glance through a nearby porthole and are shocked by the wall of shimmering scales passing by it. “Sea serpent!” Captain @Witticaster calls through the intercom. “Brace yourselves, it’s coming ‘round again!” As you grip the arms of your seat, your unfinished tasks flash before your eyes. ‘Maybe if we work together and complete them,’ you think, ‘we can drive this monster away!’",
|
||||
"questSeaSerpentCompletion": "Battered by your commitment, the sea serpent flees, disappearing into the depths. When you arrive in Dilatory, you breathe a sigh of relief before noticing @*~Seraphina~ approaching with three translucent eggs cradled in her arms. “Here, you should have these,” she says. “You know how to handle a sea serpent!” As you accept the eggs, you vow anew to remain steadfast in completing your tasks to ensure that there’s not a repeat occurrence.",
|
||||
"questSeaSerpentBoss": "The Mighty Sea Serpent",
|
||||
"questSeaSerpentDropSeaSerpentEgg": "Sea Serpent (Egg)",
|
||||
"questSeaSerpentUnlockText": "Unlocks purchasable Sea Serpent eggs in the Market",
|
||||
"questKangarooText": "Kangaroo Catastrophe",
|
||||
"questSeaSerpentBoss": "Silovita Morska Zmija",
|
||||
"questSeaSerpentDropSeaSerpentEgg": "Morska Zmija (Jaje)",
|
||||
"questSeaSerpentUnlockText": "Otključava kupovinu Jaja Morske Zmije na Pijaci",
|
||||
"questKangarooText": "Kengur Katastrofe",
|
||||
"questKangarooNotes": "Maybe you should have finished that last task… you know, the one you keep avoiding, even though it always comes back around? But @Mewrose and @LilithofAlfheim invited you and @stefalupagus to see a rare kangaroo troop hopping through the Sloensteadi Savannah; how could you say no?! As the troop comes into view, something hits you on the back of the head with a mighty <em>whack!</em><br><br>Shaking the stars from your vision, you pick up the responsible object--a dark red boomerang, with the very task you continually push back etched into its surface. A quick glance around confirms the rest of your party met a similar fate. One larger kangaroo looks at you with a smug grin, like she’s daring you to face her and that dreaded task once and for all!",
|
||||
"questKangarooCompletion": "“NOW!” You signal your party to throw the boomerangs back at the kangaroo. The beast hops further away with each hit until she flees, leaving nothing more than a dark red cloud of dust, a few eggs, and some gold coins.<br><br>@Mewrose walks forward to where the kangaroo once stood. “Hey, where did the boomerangs go?”<br><br>“They probably dissolved into dust, making that dark red cloud, when we finished our respective tasks,” @stefalupagus speculates.<br><br>@LilithofAlfheim squints at the horizon. “Is that another kangaroo troop heading our way?”<br><br>You all break into a run back to Habit City. Better to face your difficult tasks than take another lump to the back of the head!",
|
||||
"questKangarooBoss": "Catastrophic Kangaroo",
|
||||
"questKangarooDropKangarooEgg": "Kangaroo (Egg)",
|
||||
"questKangarooUnlockText": "Unlocks purchasable Kangaroo eggs in the Market",
|
||||
"forestFriendsText": "Forest Friends Quest Bundle",
|
||||
"questKangarooBoss": "Katastrofalni Kengur",
|
||||
"questKangarooDropKangarooEgg": "Kengur (Jaje)",
|
||||
"questKangarooUnlockText": "Otključava kupovinu Jaja Kengura na Pijaci",
|
||||
"forestFriendsText": "Paket Misija: Šumski Prijatelji",
|
||||
"forestFriendsNotes": "Contains 'The Spirit of Spring', 'The Hedgebeast', and 'The Tangle Tree'. Available until September 30.",
|
||||
"questAlligatorText": "The Insta-Gator",
|
||||
"questAlligatorText": "Insta-Gator",
|
||||
"questAlligatorNotes": "“Crikey!” exclaims @gully. “An Insta-Gator in its natural habitat! Careful, it distracts its prey with things that seem urgent THIS INSTANT, and it feeds on the unchecked Dailies that result.” You fall silent to avoid attracting its attention, but to no avail. The Insta-Gator spots you and charges! Distracting voices rise up from Swamps of Stagnation, grabbing for your attention: “Read this post! See this photo! Pay attention to me THIS INSTANT!” You scramble to mount a counterattack, completing your Dailies and bolstering your good Habits to fight off the dreaded Insta-Gator.",
|
||||
"questAlligatorCompletion": "With your attention focused on what’s important and not the Insta-Gator’s distractions, the Insta-Gator flees. Victory! “Are those eggs? They look like gator eggs to me,” asks @mfonda. “If we care for them correctly, they’ll be loyal pets or faithful steeds,” answers @UncommonCriminal, handing you three to care for. Let’s hope so, or else the Insta-Gator might make a return…",
|
||||
"questAlligatorBoss": "Insta-Gator",
|
||||
"questAlligatorDropAlligatorEgg": "Alligator (Egg)",
|
||||
"questAlligatorDropAlligatorEgg": "Aligator (Jaje)",
|
||||
"questAlligatorUnlockText": "Unlocks purchasable Alligator eggs in the Market",
|
||||
"oddballsText": "Oddballs Quest Bundle",
|
||||
"oddballsText": "Paket Misija: Ekscentrici",
|
||||
"oddballsNotes": "Contains 'The Jelly Regent,' 'Escape the Cave Creature,' and 'A Tangled Yarn.' Available until December 3.",
|
||||
"birdBuddiesText": "Bird Buddies Quest Bundle",
|
||||
"birdBuddiesText": "Paket Misija: Ptičiji Drugari",
|
||||
"birdBuddiesNotes": "Contains 'The Fowl Frost,' 'Rooster Rampage,' and 'The Push-and-Pull Peacock.' Available until December 31.",
|
||||
"questVelociraptorText": "The Veloci-Rapper",
|
||||
"questVelociraptorText": "Veloci-Reper",
|
||||
"questVelociraptorNotes": "You’re sharing honey cakes with @*~Seraphina~*, @Procyon P, and @Lilith of Alfheim by a lake in the Stoïkalm Steppes. Suddenly, a mournful voice interrupts your picnic.<br><br><em>My Habits took a hit, I missed my Dailies,<br>I’m losing it, sinking with doubt and maybes,<br>At the top of my game I used to be so fly,<br>But now I just let my Due Dates go by.</em><br><br>@*~Seraphina~* peers behind a stand of grass. “It’s the Veloci-Rapper. It seems... distraught?”<br><br>You pump a fist in determination. “There's only one thing to do. Rap battle time!”",
|
||||
"questVelociraptorCompletion": "You burst through the grass, confronting the Veloci-Rapper.<br><br><em>See here, rapper, you’re no quitter,<br>You’re Bad Habits' hardest hitter!<br>Check off your To-Dos like a boss,<br>Don’t mourn over one day’s loss!</em><br><br>Filled with renewed confidence, it bounds off to freestyle another day, leaving behind three eggs where it sat.",
|
||||
"questVelociraptorBoss": "Veloci-Rapper",
|
||||
"questVelociraptorDropVelociraptorEgg": "Velociraptor (Egg)",
|
||||
"questVelociraptorBoss": "Veloci-Reper",
|
||||
"questVelociraptorDropVelociraptorEgg": "Velociraptor (Jaje)",
|
||||
"questVelociraptorUnlockText": "Unlocks purchasable Velociraptor eggs in the Market"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -127,5 +127,16 @@
|
|||
"checkOffYesterDailies": "Check off any Dailies you did yesterday:",
|
||||
"yesterDailiesCallToAction": "Start My New Day!",
|
||||
"sessionOutdated": "Your session is outdated. Please refresh or sync.",
|
||||
"errorTemporaryItem": "This item is temporary and cannot be pinned."
|
||||
"errorTemporaryItem": "This item is temporary and cannot be pinned.",
|
||||
"addNotes": "Dodaj beleške",
|
||||
"editTagsText": "Podesi Oznake",
|
||||
"addTags": "Dodaj oznake...",
|
||||
"pressEnterToAddTag": "Pritisni enter za dodavanje oznake: '<%= tagName %>'",
|
||||
"addATitle": "Dodaj naslov",
|
||||
"counter": "Brojač",
|
||||
"adjustCounter": "Podesi Brojač",
|
||||
"resetCounter": "Resetuj Brojač",
|
||||
"tomorrow": "Sutra",
|
||||
"deleteTaskType": "Obriši ovo <%= type %>",
|
||||
"enterTag": "Unesi oznaku"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@
|
|||
"achievementShadyCustomer": "Тіньовий клієнт",
|
||||
"achievementZodiacZookeeperModalText": "Ви зібрали всіх зодіакальних тварин!",
|
||||
"achievementZodiacZookeeper": "Зодіакальний звіролов",
|
||||
"achievementZodiacZookeeperText": "Вилупив усіх стандартних зодіакальних тварин: Щура, Корову, Кролика, Змію, Коня, Вівцю, Мавпу, Півня, Вовка, Тигра, Свиню, і Дракона!",
|
||||
"achievementZodiacZookeeperText": "Вилупив усіх стандартних зодіакальних тварин: Щура, Корову, Кролика, Змію, Коня, Вівцю, Мавпу, Півня, Вовка, Тигра, Свиню та Дракона!",
|
||||
"achievementBirdsOfAFeatherText": "Зібрав(-ла) усіх літаючих тварин: летюче порося, сову, папугу, птеродактиля, ґрифона, сокола, павича та півня!",
|
||||
"achievementBirdsOfAFeatherModalText": "Ви зібрали всіх тварин, що літають!",
|
||||
"achievementBirdsOfAFeather": "Повітряний легіон",
|
||||
|
|
|
|||
|
|
@ -621,7 +621,7 @@
|
|||
"backgroundWaterMillNotes": "Подивіться, як крутиться колесо водяного млина.",
|
||||
"backgroundUnderwaterAmongKoiNotes": "Сліпіть і будьте засліплені блискучими коропами під водою.",
|
||||
"backgroundGhostShipText": "Корабель-привид",
|
||||
"backgroundGhostShipNotes": "Доведіть правдивість казок та легенд, коли ви сядете на борт корабля-привид.",
|
||||
"backgroundGhostShipNotes": "Доведіть правдивість казок та легенд, коли ви підніметесь на борт корабля-привиду.",
|
||||
"backgroundStoneTowerNotes": "Подивіться з парапетів однієї кам’яної вежі на іншу.",
|
||||
"backgroundRopeBridgeNotes": "Продемонструйте тим, хто сумнівається, що цей мотузковий міст абсолютно безпечний.",
|
||||
"backgroundDaytimeMistyForestNotes": "Купайтеся в сяйві денного світла, що ллється крізь Туманний ліс.",
|
||||
|
|
@ -731,5 +731,19 @@
|
|||
"backgroundMaskMakersWorkshopText": "Майстерня Маскотворця",
|
||||
"backgroundMaskMakersWorkshopNotes": "Приміряйте нову маску в майстерні масок.",
|
||||
"backgroundCemeteryGateText": "Цвинтарна брама",
|
||||
"backgroundCemeteryGateNotes": "Постійте біля цвинтарних воріт."
|
||||
"backgroundCemeteryGateNotes": "Постійте біля цвинтарних воріт.",
|
||||
"backgrounds112022": "Набір 102: листопад 2022",
|
||||
"backgroundAmongGiantMushroomsText": "Серед гігантських грибів",
|
||||
"backgroundMistyAutumnForestNotes": "Побродіть туманним осіннім лісом.",
|
||||
"backgroundInsideACrystalNotes": "Подивіться зсередини кристала.",
|
||||
"backgroundAmongGiantMushroomsNotes": "Подивуйтеся гігантським грибам.",
|
||||
"backgroundMistyAutumnForestText": "Туманний осінній ліс",
|
||||
"backgroundAutumnBridgeText": "Міст восени",
|
||||
"backgroundAutumnBridgeNotes": "Помилуйтеся красою мосту восени.",
|
||||
"backgrounds122022": "Набір 103: грудень 2022",
|
||||
"backgroundBranchesOfAHolidayTreeText": "Гілки святкового дерева",
|
||||
"backgroundBranchesOfAHolidayTreeNotes": "Пограйтесь на гілках святкової ялинки.",
|
||||
"backgroundInsideACrystalText": "Всередині кристалу",
|
||||
"backgroundSnowyVillageText": "Засніжене село",
|
||||
"backgroundSnowyVillageNotes": "Помилуйтесь засніженим селом."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
"commGuideHeadingInteractions": "Взаємодія в Habitica",
|
||||
"commGuidePara015": "Habitica має публічні та приватні місця для спілкування. Публічні це таверна, відкриті ґільдії, GitHub, Trello, та Wiki. Приватні - закриті ґільдії, чат команди, особисті повідомлення. Всі імена та @нікнейми повинні слідувати правилам публічних місць. Змінити ваше ім'я та/або @нікнейм можна з телефону: бокове меню > Налаштування > Мій акаунт; з веб-версії: Користувач > Налаштування.",
|
||||
"commGuidePara016": "Є декілька загальних правил, які допоможуть зберегти спокій і задоволення, коли ви вивчаєте нові місця у Habitica.",
|
||||
"commGuideList02A": "<strong>Поважайте один одного.</strong> Будьте ввічливими, уважними, дружніми та допомагайте іншим. Пам'ятайте: Звичанійці прибули з різних місць і мають дивовижно різний досвід. Це частина того, що робить Habitica кльовою! Влаштування спільноти означає повагу та прийняття наших відмінностей, так само як і наших схожих рис.",
|
||||
"commGuideList02A": "<strong>Поважайте один одного.</strong> Будьте ввічливими, уважними, дружніми та допомагайте іншим. Пам'ятайте: габітиканці прибули з різних місць і мають дивовижно різний досвід. Це частина того, що робить Habitica кльовою! Влаштування спільноти означає повагу та прийняття наших відмінностей, так само як і наших схожих рис.",
|
||||
"commGuideList02B": "<strong>Дотримуйтесь усіх <a href='/static/terms' target='_blank'>Загальних положень та умов</a></strong> як у публічних, так і в приватних місцях.",
|
||||
"commGuideList02C": "<strong>Не публікуйте зображення або тексти, які є насильницькими, загрозливими, сексуально відвертими/наводними, чи пропагують дискримінацію, фанатизм, расизм, сексизм, ненависть, переслідування чи шкоду будь-якій особі чи групі</strong>. Навіть не як жарт чи мем. Це включає образи, а також заяви. Не всі мають однакове почуття гумору, тому те, що ви вважаєте жартом, може зашкодити іншим.",
|
||||
"commGuideList02D": "<strong>Підтримуйте обговорення відповідними для будь-якого віку</strong>. Це означає уникання тем для дорослих у громадських місцях. У нас є багато молодих габітиканців, які користуються сайтом, і люди приходять з усіх верств суспільства. Ми хочемо, щоб наша громада була максимально комфортною та інклюзивною.",
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@
|
|||
"toUserIDRequired": "ID користувача є необхідним",
|
||||
"gemAmountRequired": "Необхідно ввести кількість самоцівітів",
|
||||
"notAuthorizedToSendMessageToThisUser": "Ви не можете відправити повідомленя цьому гравцю тому що він заблокував повідомлення.",
|
||||
"privateMessageGiftGemsMessage": "Привіт <%= receiverName %>, <%= senderName %> прислав вам <%= gemAmount %> самоцвітів!",
|
||||
"privateMessageGiftGemsMessage": "Привіт, <%= receiverName %>, <%= senderName %> надсилає вам самоцвіти: <%= gemAmount %> (шт.)!",
|
||||
"cannotSendGemsToYourself": "Не можна відправити самоцвіти самому собі. Натомість, спробуйте підписку.",
|
||||
"badAmountOfGemsToSend": "Не може бути менше ніж 1 і більше всіх ваших самоцвітів.",
|
||||
"report": "Пожалітись",
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
"questEvilSanta2CollectBranches": "Зламані гілочки",
|
||||
"questEvilSanta2DropBearCubPolarPet": "Білий ведмідь (улюбленець)",
|
||||
"questGryphonText": "Полум’яний ґрифон",
|
||||
"questGryphonNotes": "Великий звіролов, <strong>baconsaur</strong>, прийшов до Вашої групи, шукаючи допомоги. \"Прошу вас, шукачі пригод, Ви повинні мені допомогти! Мій найцінніший ґрифон вирвався на волю й тероризує Звичанію. Якщо зможеш зупинити його, я міг би винагородити тебе кількома її яйцями!\"",
|
||||
"questGryphonNotes": "Великий звіролов, <strong>baconsaur</strong>, прийшов до вашої команди, шукаючи допомоги. \"Прошу вас, шукачі пригод, Ви повинні мені допомогти! Мій найцінніший ґрифон вирвався на волю й тероризує Габітику. Якщо зможеш зупинити його, я міг би винагородити тебе кількома яйцями з ґрифоном!\"",
|
||||
"questGryphonCompletion": "Переможене могутнє чудовисько присоромлено плентається назад до свого господаря.\"А бодай мені! Добра робота, шукачі пригод!\" — вигукує <strong>baconsaur</strong>, \"Прошу, візьміть кілька грифонових яєць. Я впевнений, що вам вдасться як слід виростити цю малечу!\"",
|
||||
"questGryphonBoss": "Полум’яний ґрифон",
|
||||
"questGryphonDropGryphonEgg": "Яйце ґрифона",
|
||||
|
|
@ -129,8 +129,8 @@
|
|||
"questDilatoryDropMantisShrimpPet": "Рак-богомол (улюбленець)",
|
||||
"questDilatoryDropMantisShrimpMount": "Рак-богомол (скакун)",
|
||||
"questDilatoryBossRageTavern": "\"Жахливий Драк'он застосовує УДАР ЗАНЕХАЯННЯ!\"\n\nОй-ой! Незважаючи на всі наші зусилля, ми проґавили деякі щоденні справи і їхній темно-червоний колір накликав лють Драк'она! Своїм страшним Ударом Занехаяння він знищив Таверну! На щастя, у місті неподалік ми поставили Господу і завжди можна потеревенити на узбережжі... але бідолашний Бармен Даніель на власні очі побачив, як його улюблений будинок розвалився!\n\nСподіваюся, що звірюка не нападе знову!",
|
||||
"questDilatoryBossRageStables": "\"Жахливий Драк'он застосовує УДАР ЗАНЕХАЯННЯ!\"\n\nОй, лишенько! Знову ми недоробили багато завдань. Драк'он спрямував свій УДАР ЗАНЕХАЯННЯ на Митька та його стайні! Тваринки-вихованці порозбігалися навсебіч. На щастя, усі ваші улюбленці, здається, у порядку!\n\nБідолашна Звичанія! Сподіваюсь, такого більше не станеться. Покваптеся та виконайте усі свої завдання!",
|
||||
"questDilatoryBossRageMarket": "`Жахливий Драк'он застосовує УДАР ЗАНЕХАЯННЯ!`\n\nОоой!! Щойно Драк'он Ударом Занехаяння вщент розбив крамницю Торговця Алекса! Та, здається, ми добряче знесилили цю тварюку. Гадаю, він не має більше сил на ще один удар.\n\nТож не відступай, Звичаніє! Проженімо цього звіра геть з наших берегів!",
|
||||
"questDilatoryBossRageStables": "\"Жахливий Драк'он застосовує УДАР ЗАНЕХАЯННЯ!\"\n\nОй, лишенько! Знову ми недоробили багато завдань. Драк'он спрямував свій УДАР ЗАНЕХАЯННЯ на Митька та його стайні! Тваринки-вихованці порозбігалися навсебіч. На щастя, усі ваші улюбленці, здається, у порядку!\n\nБідолашна Габітика! Сподіваюсь, такого більше не станеться. Покваптеся та виконайте усі свої завдання!",
|
||||
"questDilatoryBossRageMarket": "`Жахливий Драк'он застосовує УДАР ЗАНЕХАЯННЯ!`\n\nОоой!! Щойно Драк'он Ударом Занехаяння вщент розбив крамницю Торговця Алекса! Та, здається, ми добряче знесилили цю тварюку. Гадаю, він не має більше сил на ще один удар.\n\nТож не відступай, Габітико! Проженімо цього звіра геть з наших берегів!",
|
||||
"questDilatoryCompletion": "\"Подолання Жахливого Драк'она Некваптиди\"\n\nНам вдалося! Заревівши востаннє, Жахливий Драк'он падає та пливе ген далеко-далеко. На березі вишикувалися натовпи втішених габітиканців! Ми допомогли Митькові, Даніелю та Алексу відбудувати їхні будинки. Але що це?\n\n\"Мешканці повертаються!\"\n\nТепер, коли Драк'он утік, море замерехтіло кольорами. Це різнобарвний рій раків-богомолів... а серед них — сотні морських істот!\n\n\"Ми — забуті жителі Некваптиди!\", — пояснює їхній ватажок Манта. \"Коли Некваптида затонула, раки-богомоли, які жили у цих водах, з допомогою чарів перетворили нас на водяників, щоб ми змогли вижити. Але лютий Жахливий Драк'он усіх нас запроторив до темної ущелини. Ми сотні років сиділи у тому полоні, та тепер нарешті можемо відбудувати своє місто!\"\n\n\"Як подяку,\" — каже його друг @Ottl, — \"Прийміть, будь ласка, цього рака-богомола та рака-богомола скакуна, а також досвід, золото та нашу безмежну вдячність.\"\n\n\"Нагороди\"\n * Рак-богомол улюбленець\n * Рак-богомол скакун\n * Шоколад, блакитна цукрова вата, рожева цукрова вата, риба, мед, м'ясо, молоко, картопля, тухле м'ясо, полуниця",
|
||||
"questSeahorseText": "Перегони у Некваптиді",
|
||||
"questSeahorseNotes": "Сьогодні - День перегонів. До Некваптиди прибули габітиканці з усього континенту, щоб влаштувати перегони на своїх морських кониках! Зненацька на біговій доріжці зчиняється шум та гамір і ви чуєте, як власниця морських коників @Kiwibot перекрикує рев хвиль. \"Зібрання морських коників привернуло увагу шаленого Морського жеребця!\" — гукає вона. \"Він поривається через стайні і нищить старовинну дорогу для бігу! Чи може хтось його вгамувати?\"",
|
||||
|
|
@ -196,7 +196,7 @@
|
|||
"questRockNotes": "",
|
||||
"questRockBoss": "",
|
||||
"questRockCompletion": "",
|
||||
"questRockDropRockEgg": "Яйце кам'еню",
|
||||
"questRockDropRockEgg": "Яйце з каменем",
|
||||
"questRockUnlockText": "Розблоковує купівлю каменю в яйці на ринку",
|
||||
"questBunnyText": "Кролик-вбивця",
|
||||
"questBunnyNotes": "",
|
||||
|
|
@ -428,8 +428,8 @@
|
|||
"questTriceratopsNotes": "",
|
||||
"questTriceratopsCompletion": "",
|
||||
"questTriceratopsBoss": "",
|
||||
"questTriceratopsDropTriceratopsEgg": "",
|
||||
"questTriceratopsUnlockText": "Розблоковує купівлю трицератопса в яйці на ринку",
|
||||
"questTriceratopsDropTriceratopsEgg": "Яйце з трицератопсом",
|
||||
"questTriceratopsUnlockText": "Розблоковує купівлю на ринку яєць з трицератопсом",
|
||||
"questGroupStoikalmCalamity": "Лихо Залишспокою",
|
||||
"questStoikalmCalamity1Text": "Лихо Залишспокою (частина 1): Земляні вороги",
|
||||
"questStoikalmCalamity1Notes": "",
|
||||
|
|
@ -657,5 +657,8 @@
|
|||
"questDolphinNotes": "Ви гуляєте по пляжу бухти Незавершеності, розмірковуючи про складну роботу, яка вас чекає. Раптом вам впадає в очі плескіт у воді. Чудовий дельфін стрибає над хвилями. Сонячне світло відбивається від його плавників і хвоста. Але зачекайте... це не відблиски сонячниї променів, і дельфін не занурюється назад у море. Він фіксує свій погляд на @khdarkwolf.<br><br>«Я ніколи не закінчу всі ці щоденники», — сказав @khdarkwolf.<br><br>«Я недостатньо хороший, щоб досягти своїх цілей», — сказав @confusedcicada, коли дельфін спрямував на неї свій яскравий погляд.<br><br>«Навіщо я взагалі намагався?» запитала @mewrose, в’янучи під поглядом звіра.<br><br>Його погляд зустрічається з вашими, і ви відчуваєте, як ваш розум починає тонути під наростаючою хвилею сумнівів. Ви берете себе в руи; хтось повинен здолати цю істоту, і це будете ви!",
|
||||
"questDolphinText": "Дельфін сумніву",
|
||||
"sandySidekicksNotes": "Містить \"Потураючий броненосець\", \"Змія зволікання\" та \"Льодяний Арахнід\". Доступний до <%= date %>.",
|
||||
"jungleBuddiesNotes": "Містить \"Жахливий мандрил і пустотливі мавпи\", \"Заколисливий лінивець\" та \"Заплутане дерево\". Доступний до <%= date %>."
|
||||
"jungleBuddiesNotes": "Містить \"Жахливий мандрил і пустотливі мавпи\", \"Заколисливий лінивець\" та \"Заплутане дерево\". Доступний до <%= date %>.",
|
||||
"questRobotCollectBolts": "Болти",
|
||||
"questRobotCollectSprings": "Пружини",
|
||||
"questRobotCollectGears": "Шестерні"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
"rebirthOrb": "Після <%= level %> рівня використано кулю переродження, щоби розпочати заново.",
|
||||
"rebirthOrb100": "Після 100+ рівня використано кулю переродження, щоби розпочати заново.",
|
||||
"rebirthOrbNoLevel": "Використано кулю переродження, щоби розпочати заново.",
|
||||
"rebirthPop": "Миттєво перезапустіть свого персонажа як Воїна рівня 1, зберігаючи при цьому досягнення, предмети колекціонування та обладнання. Ваші завдання та їхня історія залишиться, проте вони будуть відновлені до жовтого кольору. Ваші серії будуть вилучені, крім активних задач з випробувань та групових планів.. Ваше золото, досвід, мана та наслідки всіх навичок буде видалено. Все це набуде чинності негайно. Щоб отримати додаткові відомості, перегляньте сторінку <a href='https://habitica.fandom.com/wiki/Orb_of_Rebirth' target='_blank'>Сфера переродження</a> вікі.",
|
||||
"rebirthPop": "Миттєво перезапустіть свого персонажа як Воїна рівня 1, зберігаючи при цьому досягнення, предмети колекціонування та обладнання. Ваші завдання та їхня історія залишиться, проте вони будуть відновлені до жовтого кольору. Ваші серії будуть вилучені, крім активних задач з випробувань та групових планів. Ваше золото, досвід, мана та наслідки всіх навичок буде видалено. Все це набуде чинності негайно. Щоб отримати додаткові відомості, перегляньте сторінку <a href='https://habitica.fandom.com/wiki/Orb_of_Rebirth' target='_blank'>Сфера переродження</a> на Вікі.",
|
||||
"rebirthName": "Куля переродження",
|
||||
"rebirthComplete": "Ви переродилися!",
|
||||
"nextFreeRebirth": "<strong><%= days %> дн.</strong> поки <strong>FREE</strong> Orb of Rebirth"
|
||||
|
|
|
|||
|
|
@ -213,5 +213,6 @@
|
|||
"backgroundAlreadyOwned": "У вас вже є цей фон.",
|
||||
"mysterySet202204": "Набір віртуального мандрівника",
|
||||
"mysterySet202210": "Набір зловісного змієносця",
|
||||
"mysterySet202211": "Набір електроманта"
|
||||
"mysterySet202211": "Набір електроманта",
|
||||
"mysterySet202212": "Набір крижаного охоронця"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -135,11 +135,14 @@
|
|||
"achievementGroupsBeta2022ModalText": "你和团队通过测试和反馈来帮助Habitica发展壮大!",
|
||||
"achievementGroupsBeta2022Text": "你和团队为Habitica测试提供了宝贵的反馈意见。",
|
||||
"achievementReptacularRumble": "爬宠街斗",
|
||||
"achievementReptacularRumbleText": "已孵化所有基础颜色的爬虫宠物:鳄鱼、翼龙、蛇、三角龙、海龟、霸王龙、和迅猛龙!",
|
||||
"achievementReptacularRumbleText": "已孵化所有基础颜色的爬虫宠物:鳄鱼、翼龙、蛇、三角龙、海龟、霸王龙和迅猛龙!",
|
||||
"achievementWoodlandWizard": "林地巫师",
|
||||
"achievementWoodlandWizardModalText": "你集齐了所有森林宠物!",
|
||||
"achievementWoodlandWizardText": "已孵化所有基础颜色的森林宠物:獾、熊、鹿、狐狸、青蛙、刺猬、猫头鹰、蜗牛、松鼠和树芽!",
|
||||
"achievementBoneToPickModalText": "你已使用骷髅药水孵化所有基础宠物和副本宠物!",
|
||||
"achievementBoneToPickText": "使用骷髅药水孵化所有基础宠物和副本宠物!",
|
||||
"achievementBoneToPick": "拾骨魔咒"
|
||||
"achievementBoneToPick": "拾骨魔咒",
|
||||
"achievementPolarProModalText": "你驯服了所有极地宠物!",
|
||||
"achievementPolarPro": "极地专家",
|
||||
"achievementPolarProText": "已孵化出所有极地宠物:熊、狐狸、企鹅、鲸鱼和狼!"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@
|
|||
"backgroundShimmeryBubblesText": "梦幻气泡",
|
||||
"backgroundShimmeryBubblesNotes": "海市蜃楼梦晶莹,七彩人生一时成。",
|
||||
"backgroundIslandWaterfallsText": "瀑布岛",
|
||||
"backgroundIslandWaterfallsNotes": "今古长如白练飞,\n一条界破青山色。",
|
||||
"backgroundIslandWaterfallsNotes": "今古长如白练飞,一条界破青山色。",
|
||||
"backgrounds072015": "第14组:2015年7月推出",
|
||||
"backgroundDilatoryRuinsText": "迂缓遗迹",
|
||||
"backgroundDilatoryRuinsNotes": "潜入迂缓遗迹。",
|
||||
|
|
@ -294,9 +294,9 @@
|
|||
"backgroundBesideWellText": "在古井边",
|
||||
"backgroundBesideWellNotes": "在古井边漫步。",
|
||||
"backgroundGardenShedText": "棚屋",
|
||||
"backgroundGardenShedNotes": "布谷飞飞劝早耕,\n舂锄扑扑趁春晴。",
|
||||
"backgroundGardenShedNotes": "布谷飞飞劝早耕,舂锄扑扑趁春晴。",
|
||||
"backgroundPixelistsWorkshopText": "画室",
|
||||
"backgroundPixelistsWorkshopNotes": "风情意自足,横斜不可加。\n须知自古来,画家须诗家。",
|
||||
"backgroundPixelistsWorkshopNotes": "风情意自足,横斜不可加。须知自古来,画家须诗家。",
|
||||
"backgrounds102017": "第41组:2017年10月推出",
|
||||
"backgroundMagicalCandlesText": "魔法烛室",
|
||||
"backgroundMagicalCandlesNotes": "游荡在魔法烛室中。",
|
||||
|
|
@ -738,5 +738,12 @@
|
|||
"backgroundAmongGiantMushroomsText": "在巨型蘑菇丛",
|
||||
"backgroundMistyAutumnForestNotes": "漫步在雾秋森林。",
|
||||
"backgroundMistyAutumnForestText": "雾秋森林",
|
||||
"backgroundAutumnBridgeNotes": "欣赏秋日小桥的美丽。"
|
||||
"backgroundAutumnBridgeNotes": "欣赏秋日小桥的美丽。",
|
||||
"backgrounds122022": "第103组:2022年12月推出",
|
||||
"backgroundSnowyVillageNotes": "欣赏雪乡美景。",
|
||||
"backgroundBranchesOfAHolidayTreeText": "假日树的树枝",
|
||||
"backgroundBranchesOfAHolidayTreeNotes": "在假日树的树枝上嬉戏。",
|
||||
"backgroundInsideACrystalText": "在水晶内部",
|
||||
"backgroundInsideACrystalNotes": "在水晶内部观察外界。",
|
||||
"backgroundSnowyVillageText": "雪之乡"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -56,5 +56,5 @@
|
|||
"androidFaqStillNeedHelp": "如果[Wiki FAQ](https://habitica.fandom.com/zh/wiki/FAQ)不能解决你的问题,请在酒馆聊天中咨询。进入方式:菜单 > 酒馆!我们很乐意为你提供帮助。",
|
||||
"webFaqStillNeedHelp": "如果问题列表和[Wiki FAQ](https://habitica.fandom.com/zh/wiki/FAQ)不能解决你的问题,请在[Habitica 帮助公会](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)中咨询。我们很乐意为你提供帮助。",
|
||||
"faqQuestion13": "什么是团队计划?",
|
||||
"webFaqAnswer13": "## 团队计划是如何运作的?\n\n[团队计划](/group-plans)让您的队伍或公会可以访问类似于您的个人任务板的共享任务板! 这是一种共享的 Habitica 体验,团队中的任何成员都可以创建和检查任务。\n\n还增加一些新功能,如成员角色,状态视图和任务分配,为您提供更加可控的体验。想了解团队计划的更多信息请[访问我们的wiki](https://habitica.fandom.com/wiki/Group_Plans) !\n\n## 哪些人可以从团队计划中受益?\n\n团队计划最适合那些想要进行协作的小团队。我们建议保持在2-5名成员。\n\n对于家庭来说,不管是父母、孩子还是你和伴侣,都能从团队计划中受益。共同的目标、家务或责任很适合在一块任务板上记录下来。\n\n团队计划对于那些拥有共同目标的工作团队或希望向员工介绍游戏化的管理者也很有帮助。\n\n## 快速入门团队计划\n\n以下是一些使用技巧,可以帮助您的新团队快速起步。同时我们将在下一部分提供更多详细信息:\n\n* 让团队成员成为管理者,使他们能够创建和编辑任务\n* 如果任务是一次性且可完成的,则保留未分配的任务\n* 为确保其他成员不会误领任务,请将任务指派给一位成员\n* 如果多位成员都需要完成同一任务,请将任务进行分配\n* 在个人任务板上开启显示共享任务这一功能,避免错过任何内容\n* 即使是多人任务,在任务完成后你也能获得奖励\n* 任务完成奖励并不会在团队成员之间共享或平分\n* 您可以通过任务颜色在团队任务板上来判断平均完成率\n* 定期查看团队任务板上的任务,以确保它们是否需要保留\n* 错过一个每日任务不会对你或你的团队造成伤害,但任务颜色会下降\n\n## 团队中的其他成员如何创建任务?\n\n只有团队队长和管理者可以创建任务。如果您希望成员也能进行创建,那么您需要打开团队信息选项卡、查看成员列表并单击其名称旁的圆点图标将他们提升为管理者。\n\n## 任务分配该如何进行?\n\n团队计划赋予您将任务分配给其他小组成员的独特能力。任务分配功能非常适合委派。如果您已将任务分配给某位成员,那么其他成员将无法完成它。\n\n如果一个任务需要多位成员完成,那么您也可以将其分配给多人。例如,如果每个人都必须刷牙,请创建一个任务并将其分配给每位成员。这让他们都能勾选完成并获得个人奖励。当每个人勾选完成时,团队主任务才会显示为完成。\n\n## 未分配的任务如何处理?\n\n团队里的任何成员都可以完成未分配的任务,因此请保留那些未分配的任务,以便任何成员都能完成它。例如,倒垃圾。无论谁倒了垃圾,都可以将其勾选,并提示每个人任务已完成。\n\n## 在同步日如何重置工作?\n\n共享任务会同一时间重置,方便大家同步任务共享板。同步时间由团队队长设置后展示在任务共享板上。由于共享任务自动重置,第二天早上签到时,将没有机会勾选昨天未完成的每日共享任务。\n\n错过每日共享任务不会造成伤害,但是它们会降低颜色方便团队成员直观地了解进度。我们不希望任务共享给您带来负面的体验!\n\n## 如何在APP上使用团队?\n\n虽然APP尚未完全支持团队计划的所有功能,但通过将任务复制到个人任务板,您仍然可以在iOS和安卓的APP上完成共享任务。您可以从APP里的“设置”或浏览器版本里的团队任务板打开该选项。这将会使所有打开和分配的共享任务跨平台显示在您的个人任务板上。\n\n## 团队的共同任务与挑战有何区别?\n\n团队计划的共享任务板比挑战更具动态性,因为它可以不断更新交互。如果您有一组任务想要发给许多人,这一操作在挑战上执行会非常繁琐,但在团队计划里可以快速实现。\n\n其中团队计划是付费功能,而挑战对每个人都是免费的。\n\n你无法在挑战中分配特定的任务,挑战也没有共享日重置。总的来说,挑战提供的控制功能和直接交互功能较少。"
|
||||
"webFaqAnswer13": "## 团队计划是如何运作的?\n\n[团队计划](/group-plans)让您的队伍或公会可以访问类似于您的个人任务板的共享任务板! 这是一种共享的 Habitica 体验,团队中的任何成员都可以创建和检查任务。\n\n还增加一些新功能,如成员角色,状态视图和任务分配,为您提供更加可控的体验。想了解团队计划的更多信息请[访问我们的wiki](https://habitica.fandom.com/wiki/Group_Plans) !\n\n## 哪些人可以从团队计划中受益?\n\n团队计划最适合那些想要进行协作的小团队。我们建议保持在2-5名成员。\n\n对于家庭来说,不管是父母、孩子还是你和伴侣,都能从团队计划中受益。共同的目标、家务或责任很适合在一块任务板上记录下来。\n\n团队计划对于那些拥有共同目标的工作团队或希望向员工介绍游戏化的管理者也很有帮助。\n\n## 快速入门团队计划\n\n以下是一些使用技巧,可以帮助您的新团队快速起步。同时我们将在下一部分提供更多详细信息:\n\n* 让团队成员成为管理者,使他们能够创建和编辑任务\n* 如果任务是一次性且可完成的,则保留未分配的任务\n* 为确保其他成员不会误领任务,请将任务指派给一位成员\n* 如果多位成员都需要完成同一任务,请将任务进行分配\n* 在个人任务板上开启显示共享任务这一功能,避免错过任何内容\n* 即使是多人任务,在任务完成后你也能获得奖励\n* 任务完成奖励并不会在团队成员之间共享或平分\n* 您可以通过任务颜色在团队任务板上来判断平均完成率\n* 定期查看团队任务板上的任务,以确保它们是否需要保留\n* 错过一个每日任务不会对你或你的团队造成伤害,但任务颜色会下降\n\n## 团队中的其他成员如何创建任务?\n\n只有团队队长和管理者可以创建任务。如果您希望成员也能进行创建,那么您需要打开团队信息选项卡、查看成员列表并单击其名称旁的圆点图标将他们提升为管理者。\n\n## 任务分配该如何进行?\n\n团队计划赋予您将任务分配给团队其他成员的独特能力。任务分配功能非常适合委派。如果您已将任务分配给某位成员,那么其他成员将无法完成它。\n\n如果一个任务需要多位成员完成,那么您也可以将其分配给多人。例如,如果每个人都必须刷牙,请创建一个任务并将其分配给每位成员。这让他们都能勾选完成并获得个人奖励。当每个人勾选完成时,团队主任务才会显示为完成。\n\n## 未分配的任务如何处理?\n\n团队里的任何成员都可以完成未分配的任务,因此请保留那些未分配的任务,以便任何成员都能完成它。例如,倒垃圾。无论谁倒了垃圾,都可以将其勾选,并提示每个人任务已完成。\n\n## 在同步日如何重置工作?\n\n共享任务会同一时间重置,方便大家同步任务共享板。同步时间由团队队长设置后展示在任务共享板上。由于共享任务自动重置,第二天早上签到时,将没有机会勾选昨天未完成的每日共享任务。\n\n错过每日共享任务不会造成伤害,但是它们会降低颜色方便团队成员直观地了解进度。我们不希望任务共享给您带来负面的体验!\n\n## 如何在APP上使用团队?\n\n虽然APP尚未完全支持团队计划的所有功能,但通过将任务复制到个人任务板,您仍然可以在iOS和安卓的APP上完成共享任务。您可以从APP里的“设置”或浏览器版本里的团队任务板打开该选项。这将会使所有打开和分配的共享任务跨平台显示在您的个人任务板上。\n\n## 团队的共同任务与挑战有何区别?\n\n团队计划的共享任务板比挑战更具动态性,因为它可以不断更新交互。如果您有一组任务想要发给许多人,这一操作在挑战上执行会非常繁琐,但在团队计划里可以快速实现。\n\n其中团队计划是付费功能,而挑战对每个人都是免费的。\n\n你无法在挑战中分配特定的任务,挑战也没有共享日重置。总的来说,挑战提供的控制功能和直接交互功能较少。"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@
|
|||
"confirmPasswordPlaceholder": "确保你的密码相同!",
|
||||
"joinHabitica": "加入Habitica",
|
||||
"alreadyHaveAccountLogin": "已经是Habitica大陆的勇者了?<strong>从这里进入吧!</strong>",
|
||||
"dontHaveAccountSignup": "还不是我们的一份子?<strong>在这里登记。</strong>",
|
||||
"dontHaveAccountSignup": "还不是我们的一份子?<strong>请在这里注册。</strong>",
|
||||
"motivateYourself": "激励自己,实现目标。",
|
||||
"timeToGetThingsDone": "完成了所有的任务,该娱乐一下!快快成为Habitica的一份子吧!超过<%= userCountInMillions %>百万Habitica居民等着你!你完成的每一个任务都有助于改善生活。",
|
||||
"singUpForFree": "免费注册",
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
"weaponSpecialWinter2018HealerNotes": "这个槲寄生球会让过路人快乐和更加具有魅力! 增加<%= int %>点智力。2017-2018冬季限定版装备。",
|
||||
"weaponSpecialSpring2018RogueText": "活跃的芦苇",
|
||||
"weaponSpecialSpring2018RogueNotes": "看起来似乎是相当可爱的香蒲事实上是强而有力的翅膀武器!增加<%= str %>点力量。2018年春季限定版装备。",
|
||||
"weaponSpecialSpring2018WarriorText": "拂晓的斧头",
|
||||
"weaponSpecialSpring2018WarriorText": "破晓之斧",
|
||||
"weaponSpecialSpring2018WarriorNotes": "由闪亮黄金打造,这把斧头足以攻击颜色最红的任务!增加<%= str %>点力量。2018年春季限定版装备。",
|
||||
"weaponSpecialSpring2018MageText": "郁金香法杖",
|
||||
"weaponSpecialSpring2018MageNotes": "这朵魔法之花永不枯萎!增加<%= int %>点智力和<%= per %>点感知。2018年春季限定版装备。",
|
||||
|
|
@ -2740,5 +2740,34 @@
|
|||
"shieldArmoireBubblingCauldronText": "咕嘟冒泡锅",
|
||||
"weaponArmoireMagicSpatulaText": "魔法锅铲",
|
||||
"shieldArmoireBubblingCauldronNotes": "这是一口完美大锅,可以酿造生产力药水或烹饪美味汤肴。事实上,两者几乎没有区别!增加点<%=con%>体质。魔法衣橱:厨具套装(2/2)。",
|
||||
"weaponArmoireMagicSpatulaNotes": "看着你的食物在空中飞舞。如果它神奇地翻了三次,然后又落在你的锅铲上,你将会获得一天的好运。增加<%=per%>点感知。魔法衣橱:厨具套装(1/2)。"
|
||||
"weaponArmoireMagicSpatulaNotes": "看着你的食物在空中飞舞。如果它神奇地翻了三次,然后又落在你的锅铲上,你将会获得一天的好运。增加<%=per%>点感知。魔法衣橱:厨具套装(1/2)。",
|
||||
"weaponArmoireFinelyCutGemText": "完美宝石",
|
||||
"weaponArmoireFinelyCutGemNotes": "看看我发现了什么!这颗惊人工艺切割的宝石将成为您收藏品。它好像包含一些特殊的魔力,一直等待你去挖掘它。增加<%= con %>点体质。魔法衣橱:宝石套装(4/4)。",
|
||||
"armorMystery202212Notes": "宇宙可能很冷,但这件迷人的衣服会让你在飞行时保持舒适。没有属性加成。2022年12月订阅者物品。",
|
||||
"armorArmoireJewelersApronNotes": "这条厚重的围裙适合在创意工作时穿上。最棒的一点是有几十个小口袋可以装下你需要的一切。增加<%=int%>点智力。魔法衣橱:宝石套装(1/4)。",
|
||||
"armorMystery202212Text": "冰川连衣裙",
|
||||
"armorArmoireJewelersApronText": "珠宝商的围裙",
|
||||
"shieldArmoireJewelersPliersText": "珠宝钳",
|
||||
"shieldArmoireJewelersPliersNotes": "他们剪、扭、捏等等。这个工具可以帮助您实现任何灵感。增加<%=str%>点力量。魔法衣橱:宝石套装(3/4)。",
|
||||
"headAccessoryMystery202212Text": "寒冰之冠",
|
||||
"headAccessoryMystery202212Notes": "用这顶华丽的金色头饰将你的热情和友谊提升到新的高度。没有属性加成。2022年12月订阅者物品。",
|
||||
"eyewearArmoireJewelersEyeLoupeText": "珠宝商的放大镜",
|
||||
"weaponMystery202212Text": "寒冰法杖",
|
||||
"weaponMystery202212Notes": "即使在最寒冷的冬夜,这根魔杖里闪闪发光的雪花也能温暖人心!没有属性加成。2022年12月订阅者物品。",
|
||||
"eyewearArmoireJewelersEyeLoupeNotes": "这个放大镜放大了你眼前的事物,方便你看到所有细节。增加<%=per%>点感知。魔法衣橱:宝石套装(2/4)。",
|
||||
"weaponSpecialWinter2023RogueText": "绿色面纱",
|
||||
"weaponSpecialWinter2023WarriorText": "塔斯克矛",
|
||||
"weaponSpecialWinter2023MageText": "火狐",
|
||||
"weaponSpecialWinter2023HealerText": "回旋花环",
|
||||
"armorSpecialWinter2023WarriorText": "海象套装",
|
||||
"armorSpecialWinter2023MageText": "仙女光芒裙",
|
||||
"weaponSpecialWinter2023RogueNotes": "传说中诱捕对手武器的盗贼,缴械后把玩一番,再物归原主。增加<%=str%>点力量。2022-2023年冬季限定版装备。",
|
||||
"armorSpecialWinter2023RogueNotes": "用打包带将礼物和漂亮的纸张绑在一起。然后送给你们当地的盗贼!这个季节需要它传递温暖。增加<%=per%>点感知。2022-2023年冬季限定版装备。",
|
||||
"weaponSpecialWinter2023WarriorNotes": "矛的两端好似海象獠牙,威力却是海象的两倍。在嘲笑中、质疑中、愚蠢的诗歌中驱逐敌人!增加<%=str%>点力量。2022-2023年冬季限定版装备。",
|
||||
"weaponSpecialWinter2023MageNotes": "你管它是狐还是火?只要充满节日氛围就行啦!提高<%=int%>点智力,提高<%=per%>点感知。2022-2023年冬季限定版装备。",
|
||||
"weaponSpecialWinter2023HealerNotes": "注意看,这个喜庆的带刺花环在空中围绕你的敌人旋转,然后像回旋镖一样飞回你身边,方便你再次投掷。增加<%=int%>点智力。2022-2023年冬季限定版装备。",
|
||||
"armorSpecialWinter2023RogueText": "打包带",
|
||||
"armorSpecialWinter2023WarriorNotes": "这款结实的海象套装非常适合半夜穿上后去海边散步。增加<%=con%>点体质。2022-2023年冬季限定版装备。",
|
||||
"armorSpecialWinter2023MageNotes": "仅仅是有灯亮着,并不能让你成为一棵树……也许明年还有机会。增加<%=int%>点智力。2022-2023年冬季限定版装备。",
|
||||
"armorSpecialWinter2023HealerText": "红衣主教套装"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -216,5 +216,6 @@
|
|||
"mysterySet202209": "魔法学者套装",
|
||||
"mysterySet202210": "不祥之蛇套装",
|
||||
"mysteryset202211": "电磁套装",
|
||||
"mysterySet202211": "电磁套装"
|
||||
"mysterySet202211": "电磁套装",
|
||||
"mysterySet202212": "冰川守护者套装"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -183,6 +183,11 @@ const animalSetAchievs = {
|
|||
titleKey: 'achievementDomesticated',
|
||||
textKey: 'achievementDomesticatedText',
|
||||
},
|
||||
polarPro: {
|
||||
icon: 'achievement-polarPro',
|
||||
titleKey: 'achievementPolarPro',
|
||||
textKey: 'achievementPolarProText',
|
||||
},
|
||||
reptacularRumble: {
|
||||
icon: 'achievement-reptacularRumble',
|
||||
titleKey: 'achievementReptacularRumble',
|
||||
|
|
|
|||
|
|
@ -535,6 +535,11 @@ const backgrounds = {
|
|||
inside_a_crystal: { },
|
||||
snowy_village: { },
|
||||
},
|
||||
backgrounds012023: {
|
||||
rime_ice: { },
|
||||
snowy_temple: { },
|
||||
winter_lake_with_swans: { },
|
||||
},
|
||||
timeTravelBackgrounds: {
|
||||
airship: {
|
||||
price: 1,
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ export default prefill({
|
|||
setPrice: 5, availableFrom: '2022-10-04T08:00-04:00', availableUntil: EVENTS.fall2022.end, text: t('hauntedColors'),
|
||||
},
|
||||
winteryHairColors: {
|
||||
setPrice: 5, availableFrom: '2021-12-23T08:00-05:00', availableUntil: '2022-01-31T20:00-05:00', text: t('winteryColors'),
|
||||
setPrice: 5, availableFrom: '2023-01-17T08:00-05:00', availableUntil: EVENTS.winter2023.end, text: t('winteryColors'),
|
||||
},
|
||||
rainbowSkins: { setPrice: 5, text: t('rainbowSkins') },
|
||||
animalSkins: { setPrice: 5, text: t('animalSkins') },
|
||||
|
|
@ -33,6 +33,6 @@ export default prefill({
|
|||
setPrice: 5, availableFrom: '2022-07-05T08:00-05:00', availableUntil: EVENTS.summer2022.end, text: t('splashySkins'),
|
||||
},
|
||||
winterySkins: {
|
||||
setPrice: 5, availableFrom: '2021-12-23T08:00-05:00', availableUntil: '2022-01-31T20:00-05:00', text: t('winterySkins'),
|
||||
setPrice: 5, availableFrom: '2023-01-17T08:00-05:00', availableUntil: EVENTS.winter2023.end, text: t('winterySkins'),
|
||||
},
|
||||
});
|
||||
|
|
|
|||
|
|
@ -85,8 +85,9 @@ const bundles = {
|
|||
'evilsanta2',
|
||||
'penguin',
|
||||
],
|
||||
event: EVENTS.winter2023,
|
||||
canBuy () {
|
||||
return moment().isBetween('2022-01-11T08:00-05:00', '2022-01-31T20:00-05:00');
|
||||
return moment().isBetween(EVENTS.winter2023.start, EVENTS.winter2023.end);
|
||||
},
|
||||
type: 'quests',
|
||||
value: 7,
|
||||
|
|
|
|||
|
|
@ -41,6 +41,18 @@ const ANIMAL_SET_ACHIEVEMENTS = {
|
|||
achievementKey: 'domesticated',
|
||||
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
||||
},
|
||||
polarPro: {
|
||||
type: 'pet',
|
||||
species: [
|
||||
'BearCub',
|
||||
'Fox',
|
||||
'Penguin',
|
||||
'Whale',
|
||||
'Wolf',
|
||||
],
|
||||
achievementKey: 'polarPro',
|
||||
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
||||
},
|
||||
reptacularRumble: {
|
||||
type: 'pet',
|
||||
species: [
|
||||
|
|
|
|||
|
|
@ -10,11 +10,23 @@ const gemsPromo = {
|
|||
|
||||
export const EVENTS = {
|
||||
noEvent: {
|
||||
start: '2022-11-27T20:00-05:00',
|
||||
end: '2022-12-20T08:00-05:00',
|
||||
start: '2023-01-31T20:00-05:00',
|
||||
end: '2023-02-14T08:00-05:00',
|
||||
season: 'normal',
|
||||
npcImageSuffix: '',
|
||||
},
|
||||
winter2023: {
|
||||
start: '2022-12-20T08:00-05:00',
|
||||
end: '2023-01-31T23:59-05:00',
|
||||
npcImageSuffix: '_winter',
|
||||
season: 'winter',
|
||||
gear: true,
|
||||
},
|
||||
g1g12022: {
|
||||
start: '2022-12-15T08:00-05:00',
|
||||
end: '2023-01-08T23:59-05:00',
|
||||
promo: 'g1g1',
|
||||
},
|
||||
harvestFeast2022: {
|
||||
start: '2022-11-22T08:00-05:00',
|
||||
end: '2022-11-27T20:00-05:00',
|
||||
|
|
|
|||
|
|
@ -47,6 +47,11 @@ const SEASONAL_SETS = {
|
|||
'winter2022StockingWarriorSet',
|
||||
'winter2022PomegranateMageSet',
|
||||
'winter2022IceCrystalHealerSet',
|
||||
|
||||
'winter2023RibbonRogueSet',
|
||||
'winter2023WalrusWarriorSet',
|
||||
'winter2023FairyLightsMageSet',
|
||||
'winter2023CardinalHealerSet',
|
||||
],
|
||||
spring: [
|
||||
// spring 2014
|
||||
|
|
|
|||
|
|
@ -1,6 +1,60 @@
|
|||
import t from './translation';
|
||||
|
||||
const NUMBER_OF_QUESTIONS = 12;
|
||||
const questionList = [
|
||||
{
|
||||
heading: 'overview',
|
||||
translationIndex: 0,
|
||||
},
|
||||
{
|
||||
heading: 'set-up-tasks',
|
||||
translationIndex: 1,
|
||||
},
|
||||
{
|
||||
heading: 'sample-tasks',
|
||||
translationIndex: 2,
|
||||
},
|
||||
{
|
||||
heading: 'task-color',
|
||||
translationIndex: 3,
|
||||
},
|
||||
{
|
||||
heading: 'health',
|
||||
translationIndex: 4,
|
||||
},
|
||||
{
|
||||
heading: 'party-with-friends',
|
||||
translationIndex: 5,
|
||||
},
|
||||
{
|
||||
heading: 'pets-mounts',
|
||||
translationIndex: 6,
|
||||
},
|
||||
{
|
||||
heading: 'character-classes',
|
||||
translationIndex: 7,
|
||||
},
|
||||
{
|
||||
heading: 'blue-mana-bar',
|
||||
translationIndex: 8,
|
||||
},
|
||||
{
|
||||
heading: 'monsters-quests',
|
||||
translationIndex: 9,
|
||||
},
|
||||
{
|
||||
heading: 'gems',
|
||||
translationIndex: 10,
|
||||
},
|
||||
{
|
||||
heading: 'bugs-features',
|
||||
translationIndex: 11,
|
||||
},
|
||||
{
|
||||
heading: 'group-plans',
|
||||
translationIndex: 13,
|
||||
excludedPlatforms: ['android', 'ios'],
|
||||
},
|
||||
];
|
||||
|
||||
const faq = {
|
||||
questions: [],
|
||||
|
|
@ -10,12 +64,14 @@ const faq = {
|
|||
},
|
||||
};
|
||||
|
||||
for (let i = 0; i <= NUMBER_OF_QUESTIONS; i += 1) {
|
||||
questionList.forEach(listEntry => {
|
||||
const question = {
|
||||
question: t(`faqQuestion${i}`),
|
||||
ios: t(`iosFaqAnswer${i}`),
|
||||
android: t(`androidFaqAnswer${i}`),
|
||||
web: t(`webFaqAnswer${i}`, {
|
||||
exclusions: listEntry.excludedPlatforms || [],
|
||||
heading: listEntry.heading,
|
||||
question: t(`faqQuestion${listEntry.translationIndex}`),
|
||||
android: t(`androidFaqAnswer${listEntry.translationIndex}`),
|
||||
ios: t(`iosFaqAnswer${listEntry.translationIndex}`),
|
||||
web: t(`webFaqAnswer${listEntry.translationIndex}`, {
|
||||
// TODO: Need to pull these values from nconf
|
||||
techAssistanceEmail: 'admin@habitica.com',
|
||||
wikiTechAssistanceEmail: 'mailto:admin@habitica.com',
|
||||
|
|
@ -23,6 +79,6 @@ for (let i = 0; i <= NUMBER_OF_QUESTIONS; i += 1) {
|
|||
};
|
||||
|
||||
faq.questions.push(question);
|
||||
}
|
||||
});
|
||||
|
||||
export default faq;
|
||||
|
|
|
|||
|
|
@ -408,6 +408,9 @@ const armor = {
|
|||
int: 10,
|
||||
set: 'jewelers',
|
||||
},
|
||||
shawlCollarCoat: {
|
||||
con: 8,
|
||||
},
|
||||
};
|
||||
|
||||
const body = {
|
||||
|
|
|
|||
|
|
@ -96,6 +96,7 @@ const back = {
|
|||
202203: { },
|
||||
202205: { },
|
||||
202206: { },
|
||||
202301: { },
|
||||
};
|
||||
|
||||
const body = {
|
||||
|
|
@ -198,6 +199,7 @@ const head = {
|
|||
202208: { },
|
||||
202210: { },
|
||||
202211: { },
|
||||
202301: { },
|
||||
301404: { },
|
||||
301405: { },
|
||||
301703: { },
|
||||
|
|
|
|||
|
|
@ -718,27 +718,35 @@ const armor = {
|
|||
},
|
||||
winter2022Rogue: {
|
||||
set: 'winter2022FireworksRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Warrior: {
|
||||
set: 'winter2022StockingWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Mage: {
|
||||
set: 'winter2022PomegranateMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Healer: {
|
||||
set: 'winter2022IceCrystalHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
spring2022Rogue: {
|
||||
set: 'spring2022MagpieRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Warrior: {
|
||||
set: 'spring2022RainstormWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Mage: {
|
||||
set: 'spring2022ForsythiaMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Healer: {
|
||||
set: 'spring2022PeridotHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
birthday2022: {
|
||||
text: t('armorSpecialBirthday2022Text'),
|
||||
|
|
@ -748,27 +756,47 @@ const armor = {
|
|||
},
|
||||
summer2022Rogue: {
|
||||
set: 'summer2022CrabRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Warrior: {
|
||||
set: 'summer2022WaterspoutWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Mage: {
|
||||
set: 'summer2022MantaRayMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Healer: {
|
||||
set: 'summer2022AngelfishHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
fall2022Rogue: {
|
||||
set: 'fall2022KappaRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Warrior: {
|
||||
set: 'fall2022OrcWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Mage: {
|
||||
set: 'fall2022HarpyMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Healer: {
|
||||
set: 'fall2022WatcherHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
winter2023Rogue: {
|
||||
set: 'winter2023RibbonRogueSet',
|
||||
},
|
||||
winter2023Warrior: {
|
||||
set: 'winter2023WalrusWarriorSet',
|
||||
},
|
||||
winter2023Mage: {
|
||||
set: 'winter2023FairyLightsMageSet',
|
||||
},
|
||||
winter2023Healer: {
|
||||
set: 'winter2023CardinalHealerSet',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
@ -1824,15 +1852,19 @@ const head = {
|
|||
},
|
||||
winter2022Rogue: {
|
||||
set: 'winter2022FireworksRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Warrior: {
|
||||
set: 'winter2022StockingWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Mage: {
|
||||
set: 'winter2022PomegranateMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Healer: {
|
||||
set: 'winter2022IceCrystalHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
nye2021: {
|
||||
text: t('headSpecialNye2021Text'),
|
||||
|
|
@ -1842,39 +1874,69 @@ const head = {
|
|||
},
|
||||
spring2022Rogue: {
|
||||
set: 'spring2022MagpieRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Warrior: {
|
||||
set: 'spring2022RainstormWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Mage: {
|
||||
set: 'spring2022ForsythiaMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Healer: {
|
||||
set: 'spring2022PeridotHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
summer2022Rogue: {
|
||||
set: 'summer2022CrabRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Warrior: {
|
||||
set: 'summer2022WaterspoutWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Mage: {
|
||||
set: 'summer2022MantaRayMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Healer: {
|
||||
set: 'summer2022AngelfishHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
fall2022Rogue: {
|
||||
set: 'fall2022KappaRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Warrior: {
|
||||
set: 'fall2022OrcWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Mage: {
|
||||
set: 'fall2022HarpyMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Healer: {
|
||||
set: 'fall2022WatcherHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
winter2023Rogue: {
|
||||
set: 'winter2023RibbonRogueSet',
|
||||
},
|
||||
winter2023Warrior: {
|
||||
set: 'winter2023WalrusWarriorSet',
|
||||
},
|
||||
winter2023Mage: {
|
||||
set: 'winter2023FairyLightsMageSet',
|
||||
},
|
||||
winter2023Healer: {
|
||||
set: 'winter2023CardinalHealerSet',
|
||||
},
|
||||
nye2022: {
|
||||
text: t('headSpecialNye2022Text'),
|
||||
notes: t('headSpecialNye2022Notes'),
|
||||
value: 0,
|
||||
canOwn: ownsItem('head_special_nye2022'),
|
||||
},
|
||||
};
|
||||
|
||||
|
|
@ -2285,7 +2347,6 @@ const shield = {
|
|||
},
|
||||
spring2015Rogue: {
|
||||
set: 'sneakySqueakerSet',
|
||||
event: EVENTS.spring2021,
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2015Warrior: {
|
||||
|
|
@ -2636,39 +2697,60 @@ const shield = {
|
|||
},
|
||||
winter2022Rogue: {
|
||||
set: 'winter2022FireworksRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Warrior: {
|
||||
set: 'winter2022StockingWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Healer: {
|
||||
set: 'winter2022IceCrystalHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
spring2022Rogue: {
|
||||
set: 'spring2022MagpieRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Warrior: {
|
||||
set: 'spring2022RainstormWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Healer: {
|
||||
set: 'spring2022PeridotHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Rogue: {
|
||||
set: 'summer2022CrabRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Warrior: {
|
||||
set: 'summer2022WaterspoutWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Healer: {
|
||||
set: 'summer2022AngelfishHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
fall2022Rogue: {
|
||||
set: 'fall2022KappaRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Warrior: {
|
||||
set: 'fall2022OrcWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Healer: {
|
||||
set: 'fall2022WatcherHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
winter2023Rogue: {
|
||||
set: 'winter2023RibbonRogueSet',
|
||||
},
|
||||
winter2023Warrior: {
|
||||
set: 'winter2023WalrusWarriorSet',
|
||||
},
|
||||
winter2023Healer: {
|
||||
set: 'winter2023CardinalHealerSet',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
@ -3348,51 +3430,79 @@ const weapon = {
|
|||
},
|
||||
winter2022Rogue: {
|
||||
set: 'winter2022FireworksRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Warrior: {
|
||||
set: 'winter2022StockingWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Mage: {
|
||||
set: 'winter2022PomegranateMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
winter2022Healer: {
|
||||
set: 'winter2022IceCrystalHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'winter',
|
||||
},
|
||||
spring2022Rogue: {
|
||||
set: 'spring2022MagpieRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Warrior: {
|
||||
set: 'spring2022RainstormWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Mage: {
|
||||
set: 'spring2022ForsythiaMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
spring2022Healer: {
|
||||
set: 'spring2022PeridotHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'spring',
|
||||
},
|
||||
summer2022Rogue: {
|
||||
set: 'summer2022CrabRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Warrior: {
|
||||
set: 'summer2022WaterspoutWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Mage: {
|
||||
set: 'summer2022MantaRayMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
summer2022Healer: {
|
||||
set: 'summer2022AngelfishHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'summer',
|
||||
},
|
||||
fall2022Rogue: {
|
||||
set: 'fall2022KappaRogueSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Warrior: {
|
||||
set: 'fall2022OrcWarriorSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Mage: {
|
||||
set: 'fall2022HarpyMageSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
fall2022Healer: {
|
||||
set: 'fall2022WatcherHealerSet',
|
||||
canBuy: () => CURRENT_EVENT && CURRENT_EVENT.season === 'fall',
|
||||
},
|
||||
winter2023Rogue: {
|
||||
set: 'winter2023RibbonRogueSet',
|
||||
},
|
||||
winter2023Warrior: {
|
||||
set: 'winter2023WalrusWarriorSet',
|
||||
},
|
||||
winter2023Mage: {
|
||||
set: 'winter2023FairyLightsMageSet',
|
||||
},
|
||||
winter2023Healer: {
|
||||
set: 'winter2023CardinalHealerSet',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -176,11 +176,11 @@ const premium = {
|
|||
limited: true,
|
||||
_addlNotes: t('eventAvailabilityReturning', {
|
||||
availableDate: t('dateEndJanuary'),
|
||||
previousDate: t('januaryYYYY', { year: 2020 }),
|
||||
previousDate: t('januaryYYYY', { year: 2022 }),
|
||||
}),
|
||||
event: EVENTS.winter2022,
|
||||
event: EVENTS.winter2023,
|
||||
canBuy () {
|
||||
return moment().isBetween(EVENTS.winter2022.start, EVENTS.winter2022.end);
|
||||
return moment().isBetween(EVENTS.winter2023.start, EVENTS.winter2023.end);
|
||||
},
|
||||
},
|
||||
Peppermint: {
|
||||
|
|
@ -200,12 +200,13 @@ const premium = {
|
|||
value: 2,
|
||||
text: t('hatchingPotionStarryNight'),
|
||||
limited: true,
|
||||
event: EVENTS.winter2023,
|
||||
canBuy () {
|
||||
return moment().isBetween('2019-12-19', '2020-02-02');
|
||||
return moment().isBetween(EVENTS.winter2023.start, EVENTS.winter2023.end);
|
||||
},
|
||||
_addlNotes: t('eventAvailabilityReturning', {
|
||||
availableDate: t('dateEndJanuary'),
|
||||
previousDate: t('decemberYYYY', { year: 2017 }),
|
||||
previousDate: t('decemberYYYY', { year: 2019 }),
|
||||
}),
|
||||
},
|
||||
Rainbow: {
|
||||
|
|
@ -360,11 +361,11 @@ const premium = {
|
|||
limited: true,
|
||||
_addlNotes: t('eventAvailabilityReturning', {
|
||||
availableDate: t('dateEndJanuary'),
|
||||
previousDate: t('decemberYYYY', { year: 2019 }),
|
||||
previousDate: t('decemberYYYY', { year: 2020 }),
|
||||
}),
|
||||
event: EVENTS.winter2021,
|
||||
event: EVENTS.winter2023,
|
||||
canBuy () {
|
||||
return moment().isBetween('2020-12-22T08:00-04:00', '2021-01-31T20:00-04:00');
|
||||
return moment().isBetween(EVENTS.winter2023.start, EVENTS.winter2023.end);
|
||||
},
|
||||
},
|
||||
Ruby: {
|
||||
|
|
|
|||
|
|
@ -127,7 +127,7 @@ api.cardTypes = {
|
|||
nye: {
|
||||
key: 'nye',
|
||||
messageOptions: 5,
|
||||
yearRound: moment().isBefore('2022-01-02T20:00-04:00'),
|
||||
yearRound: moment().isBefore('2023-01-02T20:00-05:00'),
|
||||
},
|
||||
thankyou: {
|
||||
key: 'thankyou',
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import { EVENTS } from './constants';
|
|||
// path: 'premiumHatchingPotions.Rainbow',
|
||||
const featuredItems = {
|
||||
market () {
|
||||
if (moment().isBetween(EVENTS.bundle202211.start, EVENTS.bundle202211.end)) {
|
||||
if (moment().isBetween(EVENTS.winter2023.start, EVENTS.winter2023.end)) {
|
||||
return [
|
||||
{
|
||||
type: 'armoire',
|
||||
|
|
@ -13,15 +13,15 @@ const featuredItems = {
|
|||
},
|
||||
{
|
||||
type: 'premiumHatchingPotion',
|
||||
path: 'premiumHatchingPotions.Frost',
|
||||
path: 'premiumHatchingPotions.StarryNight',
|
||||
},
|
||||
{
|
||||
type: 'premiumHatchingPotion',
|
||||
path: 'premiumHatchingPotions.Ember',
|
||||
path: 'premiumHatchingPotions.Holly',
|
||||
},
|
||||
{
|
||||
type: 'premiumHatchingPotion',
|
||||
path: 'premiumHatchingPotions.Thunderstorm',
|
||||
path: 'premiumHatchingPotions.Aurora',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
@ -32,51 +32,51 @@ const featuredItems = {
|
|||
},
|
||||
{
|
||||
type: 'food',
|
||||
path: 'food.Milk',
|
||||
path: 'food.RottenMeat',
|
||||
},
|
||||
{
|
||||
type: 'hatchingPotions',
|
||||
path: 'hatchingPotions.White',
|
||||
path: 'hatchingPotions.CottonCandyBlue',
|
||||
},
|
||||
{
|
||||
type: 'eggs',
|
||||
path: 'eggs.Fox',
|
||||
path: 'eggs.FlyingPig',
|
||||
},
|
||||
];
|
||||
},
|
||||
quests () {
|
||||
if (moment().isBetween(EVENTS.bundle202211.start, EVENTS.bundle202211.end)) {
|
||||
if (moment().isBetween(EVENTS.winter2023.start, EVENTS.winter2023.end)) {
|
||||
return [
|
||||
{
|
||||
type: 'bundles',
|
||||
path: 'bundles.rockingReptiles',
|
||||
path: 'bundles.winterQuests',
|
||||
},
|
||||
{
|
||||
type: 'quests',
|
||||
path: 'quests.peacock',
|
||||
path: 'quests.whale',
|
||||
},
|
||||
{
|
||||
type: 'quests',
|
||||
path: 'quests.harpy',
|
||||
path: 'quests.turtle',
|
||||
},
|
||||
];
|
||||
}
|
||||
return [
|
||||
{
|
||||
type: 'quests',
|
||||
path: 'quests.axolotl',
|
||||
path: 'quests.slime',
|
||||
},
|
||||
{
|
||||
type: 'quests',
|
||||
path: 'quests.stone',
|
||||
path: 'quests.seaserpent',
|
||||
},
|
||||
{
|
||||
type: 'quests',
|
||||
path: 'quests.whale',
|
||||
path: 'quests.unicorn',
|
||||
},
|
||||
];
|
||||
},
|
||||
seasonal: 'spring2021Healer',
|
||||
seasonal: 'winter2022Healer',
|
||||
timeTravelers: [
|
||||
// TODO
|
||||
],
|
||||
|
|
|
|||
|
|
@ -289,7 +289,7 @@ spells.special = {
|
|||
target: 'user',
|
||||
notes: t('spellSpecialSnowballAuraNotes'),
|
||||
canOwn () {
|
||||
return moment().isBetween('2021-12-30T08:00-04:00', EVENTS.winter2022.end);
|
||||
return moment().isBetween('2022-12-27T08:00-05:00', EVENTS.winter2023.end);
|
||||
},
|
||||
cast (user, target, req) {
|
||||
if (!user.items.special.snowball) throw new NotAuthorized(t('spellNotOwned')(req.language));
|
||||
|
|
@ -435,7 +435,7 @@ spells.special = {
|
|||
target: 'user',
|
||||
notes: t('nyeCardNotes'),
|
||||
canOwn () {
|
||||
return moment().isBetween('2021-12-30T08:00-04:00', '2022-01-02T20:00-04:00');
|
||||
return moment().isBetween('2022-12-28T08:00-05:00', '2023-01-02T20:00-05:00');
|
||||
},
|
||||
cast (user, target) {
|
||||
if (user === target) {
|
||||
|
|
|
|||
|
|
@ -220,6 +220,7 @@ function _getBasicAchievements (user, language) {
|
|||
_addSimple(result, user, { path: 'reptacularRumble', language });
|
||||
_addSimple(result, user, { path: 'woodlandWizard', language });
|
||||
_addSimple(result, user, { path: 'boneToPick', language });
|
||||
_addSimple(result, user, { path: 'polarPro', language });
|
||||
|
||||
_addSimpleWithMasterCount(result, user, { path: 'beastMaster', language });
|
||||
_addSimpleWithMasterCount(result, user, { path: 'mountMaster', language });
|
||||
|
|
|
|||
|
|
@ -30,23 +30,24 @@ export default {
|
|||
|
||||
pinnedSets: SHOP_OPEN
|
||||
? {
|
||||
healer: 'fall2022WatcherHealerSet',
|
||||
rogue: 'fall2022KappaRogueSet',
|
||||
warrior: 'fall2022OrcWarriorSet',
|
||||
wizard: 'fall2022HarpyMageSet',
|
||||
rogue: 'winter2023RibbonRogueSet',
|
||||
warrior: 'winter2023WalrusWarriorSet',
|
||||
wizard: 'winter2023FairyLightsMageSet',
|
||||
healer: 'winter2023CardinalHealerSet',
|
||||
}
|
||||
: {},
|
||||
availableSpells: SHOP_OPEN && moment().isBetween('2022-10-04T08:00-05:00', CURRENT_EVENT.end)
|
||||
availableSpells: SHOP_OPEN && moment().isBetween('2022-12-27T08:00-05:00', CURRENT_EVENT.end)
|
||||
? [
|
||||
'spookySparkles',
|
||||
'snowball',
|
||||
]
|
||||
: [],
|
||||
|
||||
availableQuests: SHOP_OPEN && CURRENT_EVENT.season === 'spring'
|
||||
availableQuests: SHOP_OPEN && CURRENT_EVENT.season === 'winter'
|
||||
? [
|
||||
'egg',
|
||||
'evilsanta',
|
||||
'evilsanta2',
|
||||
]
|
||||
: [],
|
||||
|
||||
featuredSet: 'fall2021BrainEaterMageSet',
|
||||
featuredSet: 'winter2022PomegranateMageSet',
|
||||
};
|
||||
|
|
|
|||
|
|
@ -289,8 +289,11 @@ api.updatePassword = {
|
|||
newPassword: {
|
||||
notEmpty: { errorMessage: res.t('missingNewPassword') },
|
||||
isLength: {
|
||||
options: { min: common.constants.MINIMUM_PASSWORD_LENGTH },
|
||||
errorMessage: res.t('minPasswordLength'),
|
||||
options: {
|
||||
min: common.constants.MINIMUM_PASSWORD_LENGTH,
|
||||
max: common.constants.MAXIMUM_PASSWORD_LENGTH,
|
||||
},
|
||||
errorMessage: res.t('passwordIssueLength'),
|
||||
},
|
||||
},
|
||||
confirmPassword: {
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ function _deleteProperties (obj, keysToDelete, platform) {
|
|||
|
||||
function _deleteOtherPlatformsAnswers (faqObject, platform) {
|
||||
const faqCopy = _.cloneDeep(faqObject);
|
||||
_.remove(faqCopy.questions, question => question.exclusions.indexOf(platform) !== -1);
|
||||
const keysToDelete = _.without(['web', 'ios', 'android'], platform);
|
||||
|
||||
_deleteProperties(faqCopy.stillNeedHelp, keysToDelete, platform);
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue