Merge remote-tracking branch 'upstream/develop' into quest-unlocks
1
.gitignore
vendored
|
|
@ -1,6 +1,5 @@
|
|||
.DS_Store
|
||||
website/build
|
||||
website/raw_sprites/spritesmith
|
||||
website/transpiled-babel/
|
||||
website/common/transpiled-babel/
|
||||
node_modules
|
||||
|
|
|
|||
3
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[submodule "habitica-images"]
|
||||
path = habitica-images
|
||||
url = https://github.com/HabitRPG/habitica-images
|
||||
3
.slugignore
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Files not included in deployments to Heroku, to save on file size.
|
||||
|
||||
/habitica-images
|
||||
|
|
@ -4,7 +4,6 @@ import spritesmith from 'gulp.spritesmith';
|
|||
import clean from 'rimraf';
|
||||
import sizeOf from 'image-size';
|
||||
import mergeStream from 'merge-stream';
|
||||
import { basename } from 'path';
|
||||
import { sync } from 'glob';
|
||||
import { each } from 'lodash';
|
||||
import vinylBuffer from 'vinyl-buffer';
|
||||
|
|
@ -118,47 +117,12 @@ function createSpritesStream (name, src) {
|
|||
}
|
||||
|
||||
gulp.task('sprites:main', () => {
|
||||
const mainSrc = sync('website/raw_sprites/spritesmith/**/*.png');
|
||||
const mainSrc = sync('habitica-images/**/*.png');
|
||||
return createSpritesStream('main', mainSrc);
|
||||
});
|
||||
|
||||
gulp.task('sprites:largeSprites', () => {
|
||||
const largeSrc = sync('website/raw_sprites/spritesmith_large/**/*.png');
|
||||
return createSpritesStream('largeSprites', largeSrc);
|
||||
});
|
||||
|
||||
gulp.task('sprites:clean', done => {
|
||||
clean(`${IMG_DIST_PATH}spritesmith*,${CSS_DIST_PATH}spritesmith*}`, done);
|
||||
});
|
||||
|
||||
gulp.task('sprites:checkCompiledDimensions', gulp.series('sprites:main', done => {
|
||||
console.log('Verifying that images do not exceed max dimensions'); // eslint-disable-line no-console
|
||||
|
||||
let numberOfSheetsThatAreTooBig = 0;
|
||||
|
||||
const distSpritesheets = sync(`${IMG_DIST_PATH}*.png`);
|
||||
|
||||
each(distSpritesheets, img => {
|
||||
const spriteSize = calculateImgDimensions(img);
|
||||
|
||||
if (spriteSize > MAX_SPRITESHEET_SIZE) {
|
||||
numberOfSheetsThatAreTooBig += 1;
|
||||
const name = basename(img, '.png');
|
||||
console.error(`WARNING: ${name} might be too big - ${spriteSize} > ${MAX_SPRITESHEET_SIZE}`); // eslint-disable-line no-console
|
||||
}
|
||||
});
|
||||
|
||||
if (numberOfSheetsThatAreTooBig > 0) {
|
||||
// https://github.com/HabitRPG/habitica/pull/6683#issuecomment-185462180
|
||||
console.error( // eslint-disable-line no-console
|
||||
`${numberOfSheetsThatAreTooBig} sheets might too big for mobile Safari to be able to handle
|
||||
them, but there is a margin of error in these calculations so it is probably okay. Mention
|
||||
this to an admin so they can test a staging site on mobile Safari after your PR is merged.`,
|
||||
);
|
||||
} else {
|
||||
console.log('All images are within the correct dimensions'); // eslint-disable-line no-console
|
||||
}
|
||||
done();
|
||||
}));
|
||||
|
||||
gulp.task('sprites:compile', gulp.series('sprites:clean', 'sprites:checkCompiledDimensions', done => done()));
|
||||
gulp.task('sprites:compile', gulp.series('sprites:clean', 'sprites:main', done => done()));
|
||||
|
|
|
|||
1
habitica-images
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 4ab9833a58bbc85b7b0ad8dff1ee01535270dcfe
|
||||
135
migrations/archive/2021/20211230_nye.js
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
/* eslint-disable no-console */
|
||||
const MIGRATION_NAME = '20211230_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_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('2021-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
|
||||
}
|
||||
};
|
||||
1296
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "habitica",
|
||||
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
|
||||
"version": "4.215.1",
|
||||
"version": "4.218.0",
|
||||
"main": "./website/server/index.js",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.16.5",
|
||||
"@babel/preset-env": "^7.16.5",
|
||||
"@babel/register": "^7.16.5",
|
||||
"@babel/core": "^7.16.7",
|
||||
"@babel/preset-env": "^7.16.7",
|
||||
"@babel/register": "^7.16.7",
|
||||
"@google-cloud/trace-agent": "^5.1.6",
|
||||
"@parse/node-apn": "^5.1.0",
|
||||
"@slack/webhook": "^6.0.0",
|
||||
|
|
|
|||
34
website/client/package-lock.json
generated
|
|
@ -1750,19 +1750,19 @@
|
|||
}
|
||||
},
|
||||
"@babel/plugin-proposal-optional-chaining": {
|
||||
"version": "7.16.5",
|
||||
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz",
|
||||
"integrity": "sha512-kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A==",
|
||||
"version": "7.16.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz",
|
||||
"integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==",
|
||||
"requires": {
|
||||
"@babel/helper-plugin-utils": "^7.16.5",
|
||||
"@babel/helper-plugin-utils": "^7.16.7",
|
||||
"@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
|
||||
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": {
|
||||
"version": "7.16.5",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz",
|
||||
"integrity": "sha512-59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ=="
|
||||
"version": "7.16.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
|
||||
"integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
|
||||
},
|
||||
"@babel/helper-skip-transparent-expression-wrappers": {
|
||||
"version": "7.16.0",
|
||||
|
|
@ -1773,16 +1773,16 @@
|
|||
}
|
||||
},
|
||||
"@babel/helper-validator-identifier": {
|
||||
"version": "7.15.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
|
||||
"integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
|
||||
"version": "7.16.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
|
||||
"integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
|
||||
},
|
||||
"@babel/types": {
|
||||
"version": "7.16.0",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz",
|
||||
"integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==",
|
||||
"version": "7.16.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz",
|
||||
"integrity": "sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==",
|
||||
"requires": {
|
||||
"@babel/helper-validator-identifier": "^7.15.7",
|
||||
"@babel/helper-validator-identifier": "^7.16.7",
|
||||
"to-fast-properties": "^2.0.0"
|
||||
}
|
||||
}
|
||||
|
|
@ -16247,9 +16247,9 @@
|
|||
}
|
||||
},
|
||||
"core-js": {
|
||||
"version": "3.20.1",
|
||||
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.20.1.tgz",
|
||||
"integrity": "sha512-btdpStYFQScnNVQ5slVcr858KP0YWYjV16eGJQw8Gg7CWtu/2qNvIM3qVRIR3n1pK2R9NNOrTevbvAYxajwEjg=="
|
||||
"version": "3.20.2",
|
||||
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.20.2.tgz",
|
||||
"integrity": "sha512-nuqhq11DcOAbFBV4zCbKeGbKQsUDRqTX0oqx7AttUBuqe3h20ixsE039QHelbL6P4h+9kytVqyEtyZ6gsiwEYw=="
|
||||
},
|
||||
"core-js-compat": {
|
||||
"version": "3.11.0",
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
"bootstrap": "^4.6.0",
|
||||
"bootstrap-vue": "^2.21.2",
|
||||
"chai": "^4.3.4",
|
||||
"core-js": "^3.20.1",
|
||||
"core-js": "^3.20.2",
|
||||
"eslint": "^6.8.0",
|
||||
"eslint-config-habitrpg": "^6.2.0",
|
||||
"eslint-plugin-mocha": "^5.3.0",
|
||||
|
|
@ -64,6 +64,6 @@
|
|||
"webpack": "^4.46.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.16.5"
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.16.7"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -232,583 +232,583 @@
|
|||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_midnight_castle {
|
||||
.background_meteor_shower {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -568px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_midnight_clouds {
|
||||
.background_midnight_castle {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -710px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_midnight_lake {
|
||||
.background_midnight_clouds {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -852px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_mist_shrouded_mountain {
|
||||
.background_midnight_lake {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px 0px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_mistiflying_circus {
|
||||
.background_mist_shrouded_mountain {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -148px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_monster_makers_workshop {
|
||||
.background_mistiflying_circus {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -296px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_mountain_lake {
|
||||
.background_monster_makers_workshop {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -444px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_mountain_pyramid {
|
||||
.background_mountain_lake {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -592px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_mystical_observatory {
|
||||
.background_mountain_pyramid {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_night_dunes {
|
||||
.background_mystical_observatory {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: 0px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_ocean_sunrise {
|
||||
.background_night_dunes {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -142px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_old_fashioned_bakery {
|
||||
.background_ocean_sunrise {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -284px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_on_tree_branch {
|
||||
.background_old_fashioned_bakery {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -426px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_open_waters {
|
||||
.background_on_tree_branch {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -568px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_orchard {
|
||||
.background_open_waters {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -710px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_pagodas {
|
||||
.background_orchard {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -852px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_park_with_statue {
|
||||
.background_pagodas {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_pirate_flag {
|
||||
.background_palm_tree_with_fairy_lights {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px 0px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_pixelists_workshop {
|
||||
.background_park_with_statue {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -148px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_potion_shop {
|
||||
.background_pirate_flag {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -296px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_productivity_plaza {
|
||||
.background_pixelists_workshop {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -444px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_pumpkin_carriage {
|
||||
.background_potion_shop {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -592px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_pumpkin_patch {
|
||||
.background_productivity_plaza {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_purple {
|
||||
.background_pumpkin_carriage {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_pyramids {
|
||||
.background_pumpkin_patch {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: 0px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_raging_river {
|
||||
.background_purple {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -142px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rainbow_meadow {
|
||||
.background_pyramids {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -284px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rainbows_end {
|
||||
.background_raging_river {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -426px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rainforest {
|
||||
.background_rainbow_meadow {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -568px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rainy_barnyard {
|
||||
.background_rainbows_end {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -710px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rainy_city {
|
||||
.background_rainforest {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -852px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_red {
|
||||
.background_rainy_barnyard {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_relaxation_river {
|
||||
.background_rainy_city {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_resting_in_the_inn {
|
||||
.background_red {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px 0px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_river_of_lava {
|
||||
.background_relaxation_river {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -148px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rolling_hills {
|
||||
.background_resting_in_the_inn {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -296px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rope_bridge {
|
||||
.background_river_of_lava {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -444px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rose_garden {
|
||||
.background_rolling_hills {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -592px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_rowboat {
|
||||
.background_rope_bridge {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_salt_lake {
|
||||
.background_rose_garden {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_sandcastle {
|
||||
.background_rowboat {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_school_of_fish {
|
||||
.background_salt_lake {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: 0px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_scribes_workshop {
|
||||
.background_sandcastle {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -142px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_seafarer_ship {
|
||||
.background_school_of_fish {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -284px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_seaside_cliffs {
|
||||
.background_scribes_workshop {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -426px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_shimmering_ice_prism {
|
||||
.background_seafarer_ship {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -568px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_shimmery_bubbles {
|
||||
.background_seaside_cliffs {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -710px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_slimy_swamp {
|
||||
.background_shimmering_ice_prism {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -852px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_snowglobe {
|
||||
.background_shimmery_bubbles {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_snowman_army {
|
||||
.background_slimy_swamp {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_snowy_day_fireplace {
|
||||
.background_snowglobe {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_snowy_pines {
|
||||
.background_snowman_army {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px 0px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_snowy_sunrise {
|
||||
.background_snowy_day_fireplace {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -148px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_south_pole {
|
||||
.background_snowy_farm {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -296px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_sparkling_snowflake {
|
||||
.background_snowy_pines {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -444px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_spider_web {
|
||||
.background_snowy_sunrise {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -592px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_spiral_staircase {
|
||||
.background_south_pole {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_splash_in_a_puddle {
|
||||
.background_sparkling_snowflake {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_spooky_hotel {
|
||||
.background_spider_web {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_spooky_scarecrow_field {
|
||||
.background_spiral_staircase {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_spring_rain {
|
||||
.background_splash_in_a_puddle {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: 0px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_spring_thaw {
|
||||
.background_spooky_hotel {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -142px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_stable {
|
||||
.background_spooky_scarecrow_field {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -284px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_stained_glass {
|
||||
.background_spring_rain {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -426px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_starry_skies {
|
||||
.background_spring_thaw {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -568px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_starry_winter_night {
|
||||
.background_stable {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -710px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_stoikalm_volcanoes {
|
||||
.background_stained_glass {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -852px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_stone_circle {
|
||||
.background_starry_skies {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_stone_tower {
|
||||
.background_starry_winter_night {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_stormy_rooftops {
|
||||
.background_stoikalm_volcanoes {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_stormy_ship {
|
||||
.background_stone_circle {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_strange_sewers {
|
||||
.background_stone_tower {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px 0px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_strawberry_patch {
|
||||
.background_stormy_rooftops {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -148px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_succulent_garden {
|
||||
.background_stormy_ship {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -296px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_summer_fireworks {
|
||||
.background_strange_sewers {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -444px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_sunken_ship {
|
||||
.background_strawberry_patch {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -592px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_sunset_meadow {
|
||||
.background_succulent_garden {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -740px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_sunset_oasis {
|
||||
.background_summer_fireworks {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -888px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_sunset_savannah {
|
||||
.background_sunken_ship {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -1036px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_swarming_darkness {
|
||||
.background_sunset_meadow {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -1184px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_swimming_among_jellyfish {
|
||||
.background_sunset_oasis {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -1332px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_tar_pits {
|
||||
.background_sunset_savannah {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: 0px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_tavern {
|
||||
.background_swarming_darkness {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -142px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_tea_party {
|
||||
.background_swimming_among_jellyfish {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -284px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_terraced_rice_field {
|
||||
.background_tar_pits {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -426px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_throne_room {
|
||||
.background_tavern {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -568px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_thunderstorm {
|
||||
.background_tea_party {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -710px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_tide_pool {
|
||||
.background_terraced_rice_field {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -852px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_tornado {
|
||||
.background_throne_room {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -994px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_toymakers_workshop {
|
||||
.background_thunderstorm {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1136px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_training_grounds {
|
||||
.background_tide_pool {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1278px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_treasure_room {
|
||||
.background_tornado {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1420px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_tree_roots {
|
||||
.background_toymakers_workshop {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1562px -1480px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_treehouse {
|
||||
.background_training_grounds {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1704px 0px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_tulip_garden {
|
||||
.background_treasure_room {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1704px -148px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_twinkly_lights {
|
||||
.background_tree_roots {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1704px -296px;
|
||||
width: 141px;
|
||||
height: 147px;
|
||||
}
|
||||
.background_twinkly_party_lights {
|
||||
.background_treehouse {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-1.png');
|
||||
background-position: -1704px -444px;
|
||||
width: 141px;
|
||||
|
|
|
|||
|
|
@ -1,168 +1,198 @@
|
|||
.quest_atom3 {
|
||||
.quest_alligator {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -211px -1543px;
|
||||
width: 216px;
|
||||
height: 180px;
|
||||
background-position: -1322px -1112px;
|
||||
width: 201px;
|
||||
height: 213px;
|
||||
}
|
||||
.quest_axolotl {
|
||||
.quest_amber {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -220px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_badger {
|
||||
.quest_armadillo {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -440px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_basilist {
|
||||
.quest_atom1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1544px -1332px;
|
||||
width: 189px;
|
||||
height: 141px;
|
||||
background-position: -1082px -1332px;
|
||||
width: 250px;
|
||||
height: 150px;
|
||||
}
|
||||
.quest_beetle {
|
||||
.quest_atom2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -211px -1332px;
|
||||
width: 204px;
|
||||
height: 201px;
|
||||
background-position: -642px -1534px;
|
||||
width: 207px;
|
||||
height: 138px;
|
||||
}
|
||||
.quest_blackPearl {
|
||||
.quest_atom3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1540px -214px;
|
||||
background-position: -211px -1534px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
height: 180px;
|
||||
}
|
||||
.quest_bronze {
|
||||
.quest_axolotl {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: 0px -232px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_bunny {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: 0px -1543px;
|
||||
width: 210px;
|
||||
height: 186px;
|
||||
}
|
||||
.quest_butterfly {
|
||||
.quest_badger {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -220px -232px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_cheetah {
|
||||
.quest_basilist {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -191px -1721px;
|
||||
width: 189px;
|
||||
height: 141px;
|
||||
}
|
||||
.quest_beetle {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: 0px -1332px;
|
||||
width: 204px;
|
||||
height: 201px;
|
||||
}
|
||||
.quest_blackPearl {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1540px 0px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_bronze {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -440px -232px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_cow {
|
||||
.quest_bunny {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1762px 0px;
|
||||
width: 174px;
|
||||
height: 213px;
|
||||
}
|
||||
.quest_dilatory {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -660px -220px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_dilatoryDistress1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: 0px -1332px;
|
||||
background-position: 0px -1534px;
|
||||
width: 210px;
|
||||
height: 210px;
|
||||
height: 186px;
|
||||
}
|
||||
.quest_dilatoryDistress2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1762px -422px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.quest_dilatoryDistress3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: 0px -452px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_dilatory_derby {
|
||||
.quest_butterfly {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -660px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_dolphin {
|
||||
.quest_cheetah {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -660px -220px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_cow {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1757px 0px;
|
||||
width: 174px;
|
||||
height: 213px;
|
||||
}
|
||||
.quest_dilatory {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -220px -452px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_dustbunnies {
|
||||
.quest_dilatoryDistress1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1540px -1085px;
|
||||
width: 210px;
|
||||
height: 210px;
|
||||
}
|
||||
.quest_dilatoryDistress2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1757px -422px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.quest_dilatoryDistress3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -440px -452px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_egg {
|
||||
.quest_dilatory_derby {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1762px -214px;
|
||||
width: 165px;
|
||||
height: 207px;
|
||||
background-position: 0px -452px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_evilsanta {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1762px -724px;
|
||||
width: 118px;
|
||||
height: 131px;
|
||||
}
|
||||
.quest_evilsanta2 {
|
||||
.quest_dolphin {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -660px -452px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_falcon {
|
||||
.quest_dustbunnies {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -880px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_ferret {
|
||||
.quest_egg {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1757px -214px;
|
||||
width: 165px;
|
||||
height: 207px;
|
||||
}
|
||||
.quest_evilsanta {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1757px -724px;
|
||||
width: 118px;
|
||||
height: 131px;
|
||||
}
|
||||
.quest_evilsanta2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -880px -220px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_fluorite {
|
||||
.quest_falcon {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -880px -440px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_frog {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1540px 0px;
|
||||
width: 221px;
|
||||
height: 213px;
|
||||
}
|
||||
.quest_ghost_stag {
|
||||
.quest_ferret {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: 0px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_goldenknight1 {
|
||||
.quest_fluorite {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -220px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_frog {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1100px -1112px;
|
||||
width: 221px;
|
||||
height: 213px;
|
||||
}
|
||||
.quest_ghost_stag {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -440px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_goldenknight1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -660px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_goldenknight2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1293px -1332px;
|
||||
background-position: -1333px -1332px;
|
||||
width: 250px;
|
||||
height: 150px;
|
||||
}
|
||||
|
|
@ -174,217 +204,193 @@
|
|||
}
|
||||
.quest_gryphon {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -859px -1332px;
|
||||
background-position: -648px -1332px;
|
||||
width: 216px;
|
||||
height: 177px;
|
||||
}
|
||||
.quest_guineapig {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -440px -672px;
|
||||
background-position: -880px -672px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_harpy {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -660px -672px;
|
||||
background-position: -1100px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_hedgehog {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -416px -1332px;
|
||||
background-position: -205px -1332px;
|
||||
width: 219px;
|
||||
height: 186px;
|
||||
}
|
||||
.quest_hippo {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -880px -672px;
|
||||
background-position: -1100px -220px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_horse {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1100px 0px;
|
||||
background-position: -1100px -440px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_kangaroo {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1100px -220px;
|
||||
background-position: -1100px -660px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_kraken {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1076px -1332px;
|
||||
background-position: -865px -1332px;
|
||||
width: 216px;
|
||||
height: 177px;
|
||||
}
|
||||
.quest_lostMasterclasser1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1100px -440px;
|
||||
background-position: 0px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_lostMasterclasser2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1100px -660px;
|
||||
background-position: -220px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_lostMasterclasser3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: 0px -892px;
|
||||
background-position: -440px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_mayhemMistiflying1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1762px -573px;
|
||||
background-position: -1757px -573px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
.quest_mayhemMistiflying2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -220px -892px;
|
||||
background-position: -660px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_mayhemMistiflying3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -440px -892px;
|
||||
background-position: -880px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_monkey {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -660px -892px;
|
||||
background-position: -1100px -892px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moon1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1540px -431px;
|
||||
background-position: -1540px -217px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_moon2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -880px -892px;
|
||||
background-position: -1320px 0px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moon3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1100px -892px;
|
||||
background-position: -1320px -220px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moonstone1 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1320px 0px;
|
||||
background-position: -1320px -440px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moonstone2 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1320px -220px;
|
||||
background-position: -1320px -660px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_moonstone3 {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1320px -440px;
|
||||
background-position: -1320px -880px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_nudibranch {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1540px -648px;
|
||||
background-position: -1540px -434px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_octopus {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -636px -1332px;
|
||||
background-position: -425px -1332px;
|
||||
width: 222px;
|
||||
height: 177px;
|
||||
}
|
||||
.quest_onyx {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1320px -660px;
|
||||
background-position: 0px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_owl {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1320px -880px;
|
||||
background-position: -220px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_peacock {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1540px -865px;
|
||||
background-position: -1540px -651px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_penguin {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: 0px -1730px;
|
||||
background-position: 0px -1721px;
|
||||
width: 190px;
|
||||
height: 183px;
|
||||
}
|
||||
.quest_pterodactyl {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: 0px -1112px;
|
||||
background-position: -440px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_rat {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -220px -1112px;
|
||||
background-position: -660px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_robot {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -440px -1112px;
|
||||
background-position: -880px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_rock {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1540px -1082px;
|
||||
background-position: -1540px -868px;
|
||||
width: 216px;
|
||||
height: 216px;
|
||||
}
|
||||
.quest_rooster {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -428px -1543px;
|
||||
background-position: -428px -1534px;
|
||||
width: 213px;
|
||||
height: 174px;
|
||||
}
|
||||
.quest_ruby {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -660px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_sabretooth {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -880px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_seaserpent {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1100px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
.quest_sheep {
|
||||
background-image: url('~@/assets/images/sprites/spritesmith-main-15.png');
|
||||
background-position: -1320px -1112px;
|
||||
width: 219px;
|
||||
height: 219px;
|
||||
}
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 465 KiB After Width: | Height: | Size: 464 KiB |
|
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 153 KiB |
|
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 125 KiB |
|
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 164 KiB After Width: | Height: | Size: 132 KiB |
|
Before Width: | Height: | Size: 381 KiB After Width: | Height: | Size: 390 KiB |
|
Before Width: | Height: | Size: 311 KiB After Width: | Height: | Size: 331 KiB |
|
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 153 KiB |
|
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 169 KiB |
|
Before Width: | Height: | Size: 144 KiB After Width: | Height: | Size: 151 KiB |
|
Before Width: | Height: | Size: 588 KiB After Width: | Height: | Size: 597 KiB |
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 143 KiB |
|
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 147 KiB |
|
Before Width: | Height: | Size: 182 KiB After Width: | Height: | Size: 186 KiB |
|
Before Width: | Height: | Size: 143 KiB After Width: | Height: | Size: 144 KiB |
|
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 149 KiB |
|
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 146 KiB |
|
Before Width: | Height: | Size: 158 KiB After Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 148 KiB |
|
Before Width: | Height: | Size: 192 KiB After Width: | Height: | Size: 189 KiB |
|
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 175 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 163 KiB After Width: | Height: | Size: 166 KiB |
|
Before Width: | Height: | Size: 146 KiB After Width: | Height: | Size: 156 KiB |
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 57 KiB |
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 119 KiB After Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 127 KiB After Width: | Height: | Size: 124 KiB |
|
|
@ -121,7 +121,7 @@
|
|||
v-if="editing"
|
||||
class="menu-container col-2"
|
||||
:class="{active: activeTopPage === 'backgrounds'}"
|
||||
@click="changeTopPage('backgrounds', '2021')"
|
||||
@click="changeTopPage('backgrounds', '2022')"
|
||||
>
|
||||
<div class="menu-item">
|
||||
<div
|
||||
|
|
@ -1184,7 +1184,7 @@ export default {
|
|||
},
|
||||
],
|
||||
|
||||
bgSubMenuItems: ['2021', '2020', '2019', '2018', '2017', '2016', '2015', '2014'].map(y => ({
|
||||
bgSubMenuItems: ['2022', '2021', '2020', '2019', '2018', '2017', '2016', '2015', '2014'].map(y => ({
|
||||
id: y,
|
||||
label: y,
|
||||
})),
|
||||
|
|
@ -1212,6 +1212,7 @@ export default {
|
|||
2019: [],
|
||||
2020: [],
|
||||
2021: [],
|
||||
2022: [],
|
||||
};
|
||||
|
||||
// Hack to force update for now until we restructure the data
|
||||
|
|
|
|||
|
|
@ -2544,5 +2544,11 @@
|
|||
"shieldSpecialWinter2022WarriorText": "Jingle Bell Schild",
|
||||
"shieldSpecialWinter2022HealerText": "Beständiger Eiskristall",
|
||||
"shieldSpecialWinter2022HealerNotes": "Obwohl es in Deiner Hand schmilzt, füllt sich die elementare Kraft des Eises immer wieder aufs Neue von Innen auf. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2021–2022 Winterausrüstung.",
|
||||
"shieldSpecialWinter2022WarriorNotes": "Das ist ein Jingle Bell, Jingle Bell, Jingle Bell Schild. Jingle Bell beschützt und Jingle Bell behütet. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2021–2022 Winterausrüstung."
|
||||
"shieldSpecialWinter2022WarriorNotes": "Das ist ein Jingle Bell, Jingle Bell, Jingle Bell Schild. Jingle Bell beschützt und Jingle Bell behütet. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2021–2022 Winterausrüstung.",
|
||||
"headSpecialNye2021Text": "Absurder Partyhut",
|
||||
"weaponMystery202201Notes": "Setze eine Wolke aus silbernem und goldenem Glitter frei, wenn die Uhr Mitternacht schlägt. Frohes neues Jahr! Und wer räumt das jetzt auf? Gewährt keinen Attributbonus. Jänner 2022 Abonnentengegenstand.",
|
||||
"headSpecialNye2021Notes": "Du hast einen Absurden Partyhut erhalten! Trag ihn mit Stolz, während Du das neue Jahr einläutest! Gewährt keinen Attributbonus.",
|
||||
"eyewearMystery202201Text": "Mitternächtliche Spaßvogel-Maske",
|
||||
"eyewearMystery202201Notes": "Läute das neue Jahr in dieser eleganten, mit Federn geschmückten Maske ein, die Dir ein geheimnissvolles Auftreten verleiht. Gewährt keinen Attributbonus. Jänner 2022 Abonnentengegenstand.",
|
||||
"weaponMystery202201Text": "Mitternachts-Konfettikanone"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,60 +5,60 @@
|
|||
"noBackground": "No Background Selected",
|
||||
|
||||
"backgrounds062014": "SET 1: Released June 2014",
|
||||
"backgroundBeachText":"Beach",
|
||||
"backgroundBeachNotes":"Lounge upon a warm beach.",
|
||||
"backgroundFairyRingText":"Fairy Ring",
|
||||
"backgroundFairyRingNotes":"Dance in a fairy ring.",
|
||||
"backgroundForestText":"Forest",
|
||||
"backgroundForestNotes":"Stroll through a summer forest.",
|
||||
"backgroundBeachText": "Beach",
|
||||
"backgroundBeachNotes": "Lounge upon a warm beach.",
|
||||
"backgroundFairyRingText": "Fairy Ring",
|
||||
"backgroundFairyRingNotes": "Dance in a fairy ring.",
|
||||
"backgroundForestText": "Forest",
|
||||
"backgroundForestNotes": "Stroll through a summer forest.",
|
||||
|
||||
"backgrounds072014": "SET 2: Released July 2014",
|
||||
"backgroundCoralReefText":"Coral Reef",
|
||||
"backgroundCoralReefNotes":"Swim in a coral reef.",
|
||||
"backgroundOpenWatersText":"Open Waters",
|
||||
"backgroundOpenWatersNotes":"Enjoy the open waters.",
|
||||
"backgroundSeafarerShipText":"Seafarer Ship",
|
||||
"backgroundSeafarerShipNotes":"Sail aboard a Seafarer Ship.",
|
||||
"backgroundCoralReefText": "Coral Reef",
|
||||
"backgroundCoralReefNotes": "Swim in a coral reef.",
|
||||
"backgroundOpenWatersText": "Open Waters",
|
||||
"backgroundOpenWatersNotes": "Enjoy the open waters.",
|
||||
"backgroundSeafarerShipText": "Seafarer Ship",
|
||||
"backgroundSeafarerShipNotes": "Sail aboard a Seafarer Ship.",
|
||||
|
||||
"backgrounds082014": "SET 3: Released August 2014",
|
||||
"backgroundCloudsText":"Clouds",
|
||||
"backgroundCloudsNotes":"Soar through the Clouds.",
|
||||
"backgroundDustyCanyonsText":"Dusty Canyon",
|
||||
"backgroundDustyCanyonsNotes":"Wander through a Dusty Canyon.",
|
||||
"backgroundVolcanoText":"Volcano",
|
||||
"backgroundVolcanoNotes":"Heat up inside a Volcano.",
|
||||
"backgroundCloudsText": "Clouds",
|
||||
"backgroundCloudsNotes": "Soar through the Clouds.",
|
||||
"backgroundDustyCanyonsText": "Dusty Canyon",
|
||||
"backgroundDustyCanyonsNotes": "Wander through a Dusty Canyon.",
|
||||
"backgroundVolcanoText": "Volcano",
|
||||
"backgroundVolcanoNotes": "Heat up inside a Volcano.",
|
||||
|
||||
"backgrounds092014": "SET 4: Released September 2014",
|
||||
"backgroundThunderstormText":"Thunderstorm",
|
||||
"backgroundThunderstormNotes":"Conduct lightning in a Thunderstorm.",
|
||||
"backgroundAutumnForestText":"Autumn Forest",
|
||||
"backgroundAutumnForestNotes":"Stroll through an Autumn Forest.",
|
||||
"backgroundHarvestFieldsText":"Harvest Fields",
|
||||
"backgroundHarvestFieldsNotes":"Cultivate your Harvest Fields.",
|
||||
"backgroundThunderstormText": "Thunderstorm",
|
||||
"backgroundThunderstormNotes": "Conduct lightning in a Thunderstorm.",
|
||||
"backgroundAutumnForestText": "Autumn Forest",
|
||||
"backgroundAutumnForestNotes": "Stroll through an Autumn Forest.",
|
||||
"backgroundHarvestFieldsText": "Harvest Fields",
|
||||
"backgroundHarvestFieldsNotes": "Cultivate your Harvest Fields.",
|
||||
|
||||
"backgrounds102014": "SET 5: Released October 2014",
|
||||
"backgroundGraveyardText":"Graveyard",
|
||||
"backgroundGraveyardNotes":"Visit a Creepy Graveyard.",
|
||||
"backgroundHauntedHouseText":"Haunted House",
|
||||
"backgroundHauntedHouseNotes":"Sneak through a Haunted House.",
|
||||
"backgroundPumpkinPatchText":"Pumpkin Patch",
|
||||
"backgroundPumpkinPatchNotes":"Carve jack-o-lanterns in a Pumpkin Patch.",
|
||||
"backgroundGraveyardText": "Graveyard",
|
||||
"backgroundGraveyardNotes": "Visit a Creepy Graveyard.",
|
||||
"backgroundHauntedHouseText": "Haunted House",
|
||||
"backgroundHauntedHouseNotes": "Sneak through a Haunted House.",
|
||||
"backgroundPumpkinPatchText": "Pumpkin Patch",
|
||||
"backgroundPumpkinPatchNotes": "Carve jack-o-lanterns in a Pumpkin Patch.",
|
||||
|
||||
"backgrounds112014": "SET 6: Released November 2014",
|
||||
"backgroundHarvestFeastText":"Harvest Feast",
|
||||
"backgroundHarvestFeastNotes":"Enjoy a Harvest Feast.",
|
||||
"backgroundStarrySkiesText":"Starry Skies",
|
||||
"backgroundStarrySkiesNotes":"Gaze at the Starry Skies.",
|
||||
"backgroundSunsetMeadowText":"Sunset Meadow",
|
||||
"backgroundSunsetMeadowNotes":"Admire a Sunset Meadow.",
|
||||
"backgroundHarvestFeastText": "Harvest Feast",
|
||||
"backgroundHarvestFeastNotes": "Enjoy a Harvest Feast.",
|
||||
"backgroundStarrySkiesText": "Starry Skies",
|
||||
"backgroundStarrySkiesNotes": "Gaze at the Starry Skies.",
|
||||
"backgroundSunsetMeadowText": "Sunset Meadow",
|
||||
"backgroundSunsetMeadowNotes": "Admire a Sunset Meadow.",
|
||||
|
||||
"backgrounds122014": "SET 7: Released December 2014",
|
||||
"backgroundIcebergText":"Iceberg",
|
||||
"backgroundIcebergNotes":"Drift upon an Iceberg.",
|
||||
"backgroundTwinklyLightsText":"Winter Twinkly Lights",
|
||||
"backgroundTwinklyLightsNotes":"Stroll between trees bedecked in festive lights.",
|
||||
"backgroundSouthPoleText":"South Pole",
|
||||
"backgroundSouthPoleNotes":"Visit the icy South Pole.",
|
||||
"backgroundIcebergText": "Iceberg",
|
||||
"backgroundIcebergNotes": "Drift upon an Iceberg.",
|
||||
"backgroundTwinklyLightsText": "Winter Twinkly Lights",
|
||||
"backgroundTwinklyLightsNotes": "Stroll between trees bedecked in festive lights.",
|
||||
"backgroundSouthPoleText": "South Pole",
|
||||
"backgroundSouthPoleNotes": "Visit the icy South Pole.",
|
||||
|
||||
"backgrounds012015": "SET 8: Released January 2015",
|
||||
"backgroundIceCaveText": "Ice Cave",
|
||||
|
|
@ -746,6 +746,14 @@
|
|||
"backgroundFrozenPolarWatersText": "Frozen Polar Waters",
|
||||
"backgroundFrozenPolarWatersNotes": "Explore Frozen Polar Waters.",
|
||||
|
||||
"backgrounds012022": "SET 92: Released January 2022",
|
||||
"backgroundMeteorShowerText": "Meteor Shower",
|
||||
"backgroundMeteorShowerNotes": "Observe the dazzling nighttime display of a Meteor Shower.",
|
||||
"backgroundPalmTreeWithFairyLightsText": "Palm Tree with Fairy Lights",
|
||||
"backgroundPalmTreeWithFairyLightsNotes": "Pose by a Palm Tree bedecked with Fairy Lights.",
|
||||
"backgroundSnowyFarmText": "Snowy Farm",
|
||||
"backgroundSnowyFarmNotes": "Check that everyone is well and warm on your Snowy Farm.",
|
||||
|
||||
"timeTravelBackgrounds": "Steampunk Backgrounds",
|
||||
"backgroundAirshipText": "Airship",
|
||||
"backgroundAirshipNotes": "Become a sky sailor on board your very own Airship.",
|
||||
|
|
|
|||
|
|
@ -423,7 +423,10 @@
|
|||
"weaponSpecialWinter2022MageText": "Pomegranate Staff",
|
||||
"weaponSpecialWinter2022MageNotes": "The berries on this staff contain an ancient magic to be wielded in winter. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2021-2022 Winter Gear.",
|
||||
"weaponSpecialWinter2022HealerText": "Crystalline Ice Wand",
|
||||
"weaponSpecialWinter2022HealerNotes": "Touch this solid-water implement to a friend's neck and they'll jump out of their chair! But they'll feel better afterward. Hopefully.Increases Intelligence by <%= int %>. Limited Edition 2021-2022 Winter Gear.",
|
||||
"weaponSpecialWinter2022HealerNotes": "Touch this solid-water implement to a friend's neck and they'll jump out of their chair! But they'll feel better afterward. Hopefully. Increases Intelligence by <%= int %>. Limited Edition 2021-2022 Winter Gear.",
|
||||
|
||||
"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.",
|
||||
|
||||
"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.",
|
||||
|
|
@ -447,6 +450,8 @@
|
|||
"weaponMystery202104Notes": "Your enemies had better look out- you've got powerful and prickly defenses! Confers no benefit. April 2021 Subscriber Item.",
|
||||
"weaponMystery202111Text": "Chronomancer's Staff",
|
||||
"weaponMystery202111Notes": "Shape the flow of time with this mysterious and powerful staff. Confers no benefit. November 2021 Subscriber Item.",
|
||||
"weaponMystery202201Text": "Midnight Confetti Cannon",
|
||||
"weaponMystery202201Notes": "Unleash a cloud of gold and silver glitter when the clock strikes midnight. Happy New Year! Now who's cleaning this up? Confers no benefit. January 2022 Subscriber Item.",
|
||||
"weaponMystery301404Text": "Steampunk Cane",
|
||||
"weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.",
|
||||
|
||||
|
|
@ -608,6 +613,8 @@
|
|||
"weaponArmoirePotionGoldenNotes": "With this potion, your pet can have a heart of gold… and ears of gold… and a tail of gold… Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Potion Set (Item 10 of 10)",
|
||||
"weaponArmoireRegalSceptreText": "Regal Sceptre",
|
||||
"weaponArmoireRegalSceptreNotes": "Display your regal authority by taking this bejeweled staff in hand. Increases Perception by <%= per %>. Enchanted Armoire: Regal Set (Item 2 of 2).",
|
||||
"weaponArmoireShootingStarSpellText": "Stardust Sparkles",
|
||||
"weaponArmoireShootingStarSpellNotes": "Surround yourself in a spell of stardust magic to help you make all your wishes come true. Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Stardust Set (Item 3 of 3).",
|
||||
|
||||
"armor": "armor",
|
||||
"armorCapitalized": "Armor",
|
||||
|
|
@ -1287,6 +1294,8 @@
|
|||
"armorArmoireHeraldsTunicNotes": "Get ready to spread good news far and wide in this colorful, royal outfit. Increases Constitution by <%= con %>. Enchanted Armoire: Herald Set (Item 1 of 4).",
|
||||
"armorArmoireSoftBlackSuitText": "Soft Black Suit",
|
||||
"armorArmoireSoftBlackSuitNotes": "Black is a mysterious colour. It’s sure to inspire the most interesting dreams. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Black Loungewear Set (Item 2 of 3).",
|
||||
"armorArmoireShootingStarCostumeText": "Star Gown",
|
||||
"armorArmoireShootingStarCostumeNotes": "Rumored to have been spun out of the night sky itself, this flowy gown lets you rise above all obstacles in your path. Increases Constitution by <%= con %>. Enchanted Armoire: Stardust Set (Item 2 of 3).",
|
||||
|
||||
"headgear": "helm",
|
||||
"headgearCapitalized": "Headgear",
|
||||
|
|
@ -1990,6 +1999,8 @@
|
|||
"headArmoireBlackFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a bold black color. Increases Constitution, Perception, and Strength by <%= attrs %> each. Enchanted Armoire: Black Loungewear Set (Item 1 of 3).",
|
||||
"headArmoireRegalCrownText": "Regal Crown",
|
||||
"headArmoireRegalCrownNotes": "Any monarch would be lucky to have such a majestic, smart-looking crown. Increases Intelligence by <%= int %>. Enchanted Armoire: Regal Set (Item 1 of 2).",
|
||||
"headArmoireShootingStarCrownText": "Star Crown",
|
||||
"headArmoireShootingStarCrownNotes": "With this brightly shining headpiece, you will literally be the star of your own adventure! Increases Perception by <%= per %>. Enchanted Armoire: Stardust Set (Item 1 of 3).",
|
||||
|
||||
"offhand": "off-hand item",
|
||||
"offHandCapitalized": "Off-Hand Item",
|
||||
|
|
@ -2692,6 +2703,8 @@
|
|||
"eyewearMystery201907Notes": "Look awesome while protecting your eyes from harmful UV rays! Confers no benefit. July 2019 Subscriber Item.",
|
||||
"eyewearMystery202108Text": "Fiery Eyes",
|
||||
"eyewearMystery202108Notes": "Stare down your enemies (or your biggest tasks!) with these and they don't stand a chance. Confers no benefit. August 2021 Subscriber Item.",
|
||||
"eyewearMystery202201Text": "Midnight Merrymaker's Mask",
|
||||
"eyewearMystery202201Notes": "Ring in the new year with an air of mystery in this stylish feathered mask. Confers no benefit. January 2022 Subscriber Item.",
|
||||
"eyewearMystery301404Text": "Eyewear Goggles",
|
||||
"eyewearMystery301404Notes": "No eyewear could be fancier than a pair of goggles - except, perhaps, for a monocle. Confers no benefit. April 3015 Subscriber Item.",
|
||||
"eyewearMystery301405Text": "Monocle",
|
||||
|
|
|
|||
|
|
@ -129,6 +129,7 @@
|
|||
"mysterySet202110": "Mossy Gargoyle Set",
|
||||
"mysterySet202111": "Cosmic Chronomancer Set",
|
||||
"mysterySet202112": "Antarctic Undine Set",
|
||||
"mysterySet202201": "Midnight Merrymaker Set",
|
||||
"mysterySet301404": "Steampunk Standard Set",
|
||||
"mysterySet301405": "Steampunk Accessories Set",
|
||||
"mysterySet301703": "Peacock Steampunk Set",
|
||||
|
|
|
|||
|
|
@ -1,41 +1,41 @@
|
|||
{
|
||||
"clearCompleted": "حذف شده",
|
||||
"clearCompletedDescription": "Completed To-Dos are deleted after 30 days for non-subscribers and 90 days for subscribers.",
|
||||
"clearCompletedConfirm": "Are you sure you want to delete your completed To-Dos?",
|
||||
"addMultipleTip": "<strong>Tip:</strong> To add multiple <%= taskType %>, separate each one using a line break (Shift + Enter) and then press \"Enter.\"",
|
||||
"addATask": "Add a <%= type %>",
|
||||
"editATask": "Edit a <%= type %>",
|
||||
"createTask": "Create <%= type %>",
|
||||
"clearCompleted": "پاککردن کاملشدهها",
|
||||
"clearCompletedDescription": "To-Doهای کاملشده پس از ۳۰ روز برای غیرمشترکین و پس از ۹۰ روز برای مشترکین پاک خواهند شد.",
|
||||
"clearCompletedConfirm": "آیا مطمئنید که میخواهید To-Doهای کاملشده خود را پاک کنید؟",
|
||||
"addMultipleTip": "<strong>نکته:</strong> برای افزودن چندین <%= taskType %>، هر کدام را در یک خط جداگانه وارد کنید (Shift + Enter) و سپس دکمه \"Enter\" را بفشارید.",
|
||||
"addATask": "افزودن یک <%= type %>",
|
||||
"editATask": "ویرایش یک <%= type %>",
|
||||
"createTask": "ایجاد <%= type %>",
|
||||
"addTaskToUser": "Add Task",
|
||||
"scheduled": "Scheduled",
|
||||
"scheduled": "زمانبندیشده",
|
||||
"theseAreYourTasks": "These are your <%= taskType %>",
|
||||
"habit": "عادت",
|
||||
"habits": "عادت ها",
|
||||
"habits": "عادتها",
|
||||
"habitsDesc": "Habits don't have a rigid schedule. You can check them off multiple times per day.",
|
||||
"positive": "Positive",
|
||||
"negative": "Negative",
|
||||
"yellowred": "ضعیف",
|
||||
"greenblue": "قوی",
|
||||
"edit": "تغییر",
|
||||
"save": "سیو",
|
||||
"addChecklist": "اضافه کردن به لیست",
|
||||
"checklist": "چک لیست",
|
||||
"edit": "ویرایش",
|
||||
"save": "ذخیره",
|
||||
"addChecklist": "افزودن به چکلیست",
|
||||
"checklist": "چکلیست",
|
||||
"newChecklistItem": "New checklist item",
|
||||
"expandChecklist": "Expand Checklist",
|
||||
"collapseChecklist": "Collapse Checklist",
|
||||
"text": "عنوان",
|
||||
"notes": "Notes",
|
||||
"advancedSettings": "Advanced Settings",
|
||||
"notes": "یادداشتها",
|
||||
"advancedSettings": "تنظیمات پیشرفته",
|
||||
"difficulty": "سختی",
|
||||
"difficultyHelp": "Difficulty describes how challenging a Habit, Daily, or To-Do is for you to complete. A higher difficulty results in greater rewards when a Task is completed, but also greater damage when a Daily is missed or a negative Habit is clicked.",
|
||||
"trivial": "پیش پا افتاده",
|
||||
"easy": "اده",
|
||||
"medium": "توسط",
|
||||
"easy": "ساده",
|
||||
"medium": "متوسط",
|
||||
"hard": "سخت",
|
||||
"attributes": "Stats",
|
||||
"attributes": "آمار",
|
||||
"progress": "پیشرفت",
|
||||
"daily": "روزانه",
|
||||
"dailies": "روزانه ها",
|
||||
"dailies": "روزانهها",
|
||||
"dailysDesc": "Dailies repeat on a regular basis. Choose the schedule that works best for you!",
|
||||
"streakCounter": "Streak Counter",
|
||||
"repeat": "تکرار کن",
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
"todo": "To-Do",
|
||||
"todos": "To-Dos",
|
||||
"todosDesc": "To-Dos need to be completed once. Add checklists to your To-Dos to increase their value.",
|
||||
"dueDate": "Due Date",
|
||||
"dueDate": "سررسید",
|
||||
"remaining": "عالی",
|
||||
"complete": "جام شده",
|
||||
"complete2": "Complete",
|
||||
|
|
@ -127,5 +127,9 @@
|
|||
"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.",
|
||||
"addATitle": "افزودن یک عنوان",
|
||||
"addNotes": "افزودن یک یادداشت",
|
||||
"counter": "شمارنده",
|
||||
"adjustCounter": "تنظیم شمارنده"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2522,7 +2522,7 @@
|
|||
"weaponSpecialWinter2022MageText": "Bâton de grenadier",
|
||||
"weaponSpecialWinter2022MageNotes": "Les baies de ce bâton contiennent une ancienne magie à manier en hiver. Augmente l'intelligence de <%= int %> et la perception de <%= per %>. Equipement en édition limitée de l'hiver 2021-2022.",
|
||||
"weaponSpecialWinter2022HealerText": "Baguette de glace cristalline",
|
||||
"weaponSpecialWinter2022HealerNotes": "Touchez le cou d'une amie de cet instrument en eau solide et elle sautera de sa chaise ! Mais elle se sentira mieux après. Espérons-le.",
|
||||
"weaponSpecialWinter2022HealerNotes": "Touchez le cou d'une amie de cet instrument en eau solide et elle sautera de sa chaise ! Mais elle se sentira mieux après. Espérons-le. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2021-2022.",
|
||||
"armorSpecialWinter2022RogueText": "Explosion éblouissante",
|
||||
"armorSpecialWinter2022RogueNotes": "S'ils voient des étoiles, ils ne vous voient pas ! Oui, c'est la bonne façon de le voir. Augmente la perception de <%= per %>. Équipement en édition limitée de l'hiver 2021-2022.",
|
||||
"armorSpecialWinter2022WarriorText": "Chaussette pelucheuse",
|
||||
|
|
@ -2544,5 +2544,11 @@
|
|||
"headSpecialWinter2022RogueNotes": "Quoi ? Hein ? Il y a un voleur quelque part ? Désolé, je n'entends rien avec tout ces feux d'artifices ! Augmente la perception de <%= per %>. Équipement en édition limitée de l'hiver 2021-2022.",
|
||||
"headSpecialWinter2022MageNotes": "Grâce à son écorce épaisse, ce casque festif et fruité est très résistant. Augmente la perception de <%= per %>. Équipement en édition limitée de l'hiver 2021-2022.",
|
||||
"headSpecialWinter2022HealerNotes": "De minuscules imperfections et impuretés font que les bras de cette coiffe se ramifient dans des directions imprévisibles. C'est symbolique ! Et aussi très, très joli. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2021-2022.",
|
||||
"shieldSpecialWinter2022HealerNotes": "Bien qu'il fonde dans votre main, le pouvoir de la glace élémentaire le reconstitue de l'intérieur. Augmente la constitution de <%= con %>. Équipement en édition limitée de l'hiver 2021-2022."
|
||||
"shieldSpecialWinter2022HealerNotes": "Bien qu'il fonde dans votre main, le pouvoir de la glace élémentaire le reconstitue de l'intérieur. Augmente la constitution de <%= con %>. Équipement en édition limitée de l'hiver 2021-2022.",
|
||||
"weaponMystery202201Text": "Canon à confetti de minuit",
|
||||
"eyewearMystery202201Notes": "Fêtez la nouvelle année avec un air mystérieux avec ce masque à plumes stylé. Ne confère aucun bonus.Équipement d'abonnement de janvier 2022.",
|
||||
"weaponMystery202201Notes": "Déchaînez un nuage de paillettes d'or et d'argent lorsque l'horloge sonne minuit. Bonne année ! Qui va nettoyer ça, maintenant ? Ne confère aucun bonus.Équipement d'abonnement de janvier 2022.",
|
||||
"headSpecialNye2021Text": "Chapeau de fête aberrant",
|
||||
"headSpecialNye2021Notes": "Vous avez reçu un chapeau de fête aberrant ! Portez-le avec fierté en fêtant la nouvelle année ! Ne confère aucun bonus.",
|
||||
"eyewearMystery202201Text": "Masque de gaieté de cœur de minuit"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -29,5 +29,35 @@
|
|||
"achievementJustAddWaterText": "Teljesítette a Polip, a Csikóhal, a Tintahal, a Bálna, a Tengeri teknős, a Csupaszkopoltyús csiga, a Tengeri kígyó, valamint a Delfin kisállat kihívásokat.",
|
||||
"yourRewards": "Kitüntetéseid",
|
||||
"achievementJustAddWaterModalText": "Teljesítetted a Polip, a Csikóhal, a Tintahal, a Bálna, a Tengeri teknős, a Csupaszkopoltyús csiga, a Tengeri kígyó, valamint a Delfin kisállat kihívásokat!",
|
||||
"achievementBackToBasicsModalText": "Begyűjtötted az összes alap állatot!"
|
||||
"achievementBackToBasicsModalText": "Begyűjtötted az összes alap állatot!",
|
||||
"achievementAllYourBaseText": "Megszelidítette az összes alap hátast.",
|
||||
"achievementAllYourBaseModalText": "Megszelidítetted az összes alap hátast!",
|
||||
"achievementDustDevilText": "Begyűjtötte az összes sivatagi állatot.",
|
||||
"achievementAridAuthorityModalText": "Megszelidítetted az összes sivatagi hátast!",
|
||||
"achievementKickstarter2019": "Kitűző Kickstarter Támogató",
|
||||
"achievementKickstarter2019Text": "Támogatta a 2019-es Kitűző Kickstarter Projektet",
|
||||
"achievementMonsterMagusModalText": "Begyüjtötted az összes zombi állatot!",
|
||||
"achievementUndeadUndertakerText": "Megszelidítette az összes zombi hátast.",
|
||||
"achievementUndeadUndertakerModalText": "Megszelidítetted az összes zombi hátast!",
|
||||
"achievementCreatedTaskText": "Létrehozta az első feladatát.",
|
||||
"achievementCompletedTask": "Teljesíts egy feladatot",
|
||||
"achievementCompletedTaskText": "Teljesítette az első feladatát.",
|
||||
"achievementHatchedPetText": "Kikeltette az első állatát.",
|
||||
"achievementHatchedPetModalText": "Menj a tárgyaidhoz, és próbálj meg kombinálni egy keltetőfőzetet egy tojással",
|
||||
"achievementFedPet": "Etess meg egy állatot",
|
||||
"achievementFedPetText": "Megetette az első álltját.",
|
||||
"achievementFedPetModalText": "Sok különböző állateledel van, de az állatok néha válogatósak",
|
||||
"achievementPurchasedEquipment": "Vásárolj egy felszerelést",
|
||||
"achievementPurchasedEquipmentText": "Megvásárolta az első felszerelését.",
|
||||
"achievementHatchedPet": "Kelts ki egy állatot",
|
||||
"achievementPurchasedEquipmentModalText": "A felszerelésekkel személyre szabhatod a karaktered kinézetét, és növelheted a tulajdonságpontjait",
|
||||
"achievementAridAuthorityText": "Megszelidítette az összes sivatagi hátast.",
|
||||
"achievementDustDevilModalText": "Begyűjtötted az összes sivatagi állatot!",
|
||||
"achievementMonsterMagusText": "Begyüjtötte az összes zombi állatot.",
|
||||
"achievementDustDevil": "Porördög",
|
||||
"achievementCreatedTask": "Hozd létre az első feladatodat",
|
||||
"achievementCreatedTaskModalText": "Hozz létre egy feladatot, amit szeretnél ezen a héten teljesíteni",
|
||||
"achievementMonsterMagus": "Szörnymágus",
|
||||
"achievementCompletedTaskModalText": "Pipáld ki valamelyik feladatodat hogy jutalmakat kapj",
|
||||
"achievementPartyOn": "A csapatod 4 főre nőtt!"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2516,5 +2516,19 @@
|
|||
"weaponArmoireRegalSceptreText": "Scettro reale",
|
||||
"weaponArmoireRegalSceptreNotes": "Mostra tutta la tua autorità regale prendendo in mano questo scettro ingioiellato. Aumenta la percezione di <%= per %>. Scrigno Incantato. Set regale (Oggetto 2 di 2).",
|
||||
"headArmoireRegalCrownText": "Corona reale",
|
||||
"headArmoireRegalCrownNotes": "Qualsiasi monarca sarebbe fortunato ad avere una corona così maestosa ed elegante. Aumenta l'intelligenza di <%= int %>. Scrigno incantato: Set regale (oggetto 1 di 2)."
|
||||
"headArmoireRegalCrownNotes": "Qualsiasi monarca sarebbe fortunato ad avere una corona così maestosa ed elegante. Aumenta l'intelligenza di <%= int %>. Scrigno incantato: Set regale (oggetto 1 di 2).",
|
||||
"headSpecialNye2021Notes": "Hai ricevuto un cappello da festa assurdo! Indossalo con orgoglio mentre arriva il nuovo anno! Non conferisce alcun bonus.",
|
||||
"headSpecialNye2021Text": "Cappello da festa assurdo",
|
||||
"weaponMystery202201Text": "Cannone spara coriandoli di mezzanotte",
|
||||
"weaponMystery202201Notes": "Scatena una nuvola di glitter oro ed argento quando l'orologio suona la mezzanotte. Buon anno! Ora chi pulirà tutto questo? Non conferisce alcun bonus. Oggetto abbonati gennaio 2022.",
|
||||
"armorSpecialWinter2022RogueNotes": "Se vedono le stelle, non vedono te! Sì, usiamo questo. Aumenta la percezione di <%= per %>. Edizione limitata inverno 2021-2022.",
|
||||
"weaponSpecialWinter2022HealerNotes": "Tocca il collo di un amico con questo strumento d'acqua solida e salterà dalla sedia! Ma dopo si sentiranno meglio. Forse. Aumenta l'intelligenza di <%= int %>. Edizione limitata inverno 2021-2022.",
|
||||
"weaponSpecialWinter2022RogueNotes": "I ladri amano l'oro e l'argento, giusto? Questi sono perfettamente a tema. Aumenta la Forza di <%= str %>. Edizione limitata inverno 2021-2022.",
|
||||
"weaponSpecialWinter2022RogueText": "Stella filante",
|
||||
"weaponSpecialWinter2022WarriorText": "Spada di bastoncini di zucchero",
|
||||
"weaponSpecialWinter2022WarriorNotes": "Quante leccate ci vogliono per affilare questo bastoncino di zucchero in una spada perfetta? Aumenta la Forza di <%= str %>. Edizione limitata inverno 2021-2022.",
|
||||
"weaponSpecialWinter2022MageText": "Bastone Melograno",
|
||||
"weaponSpecialWinter2022MageNotes": "Le bacche di questo bastone racchiudono un'antica magia da esercitare in inverno. Aumenta l'intelligenza di <%= int %> e la percezione di <%= per %>. Edizione limitata inverno 2021-2022.",
|
||||
"weaponSpecialWinter2022HealerText": "Bacchetta di Ghiaccio Cristallino",
|
||||
"armorSpecialWinter2022RogueText": "Esplosione abbagliante"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 17 dicembre alle 14:00 ora italiana (13:00 UTC) e terminerà l'8 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 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.",
|
||||
"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",
|
||||
|
|
@ -210,5 +210,10 @@
|
|||
"fall2021HeadlessWarriorSet": "Senza testa (Guerriero)",
|
||||
"fall2021BrainEaterMageSet": "Mangiacervelli (mago)",
|
||||
"fall2021OozeRogueSet": "Melma (ladro)",
|
||||
"fall2021FlameSummonerHealerSet": "Fiammevocatore (Guaritore)"
|
||||
"fall2021FlameSummonerHealerSet": "Fiammevocatore (Guaritore)",
|
||||
"winter2022StockingWarriorSet": "Calze (Guerriero)",
|
||||
"winter2022IceCrystalHealerSet": "Cristallo di ghiaccio (Guaritore)",
|
||||
"januaryYYYY": "Gennaio <%= year %>",
|
||||
"winter2022FireworksRogueSet": "Fuochi d'artificio (Ladro)",
|
||||
"winter2022PomegranateMageSet": "Melograno (Mago)"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2508,11 +2508,11 @@
|
|||
"weaponArmoirePotionBlueNotes": "このわたあめブルーのたまごがえしの薬でわたあめブルーの動物を作ると人生は少しふわふわに、片っ端からブル-になります!知能が<%= int %>、体質が<%= con %>上がります。ラッキー宝箱:たまごがえしの薬セット(10個中9個目のアイテム)",
|
||||
"offHandCapitalized": "利き手と反対の手のアイテム",
|
||||
"armorMystery202112Text": "南極のウィディーネのしっぽ",
|
||||
"armorMystery202112Notes": "このほのかに光る尻尾で、凍った海を滑りましょう。風邪もひかなくなりますよ。効果なし。2020年12月の寄付会員アイテム。",
|
||||
"armorMystery202112Notes": "このほのかに光る尻尾で、凍った海を滑りましょう。風邪もひかなくなりますよ。効果なし。2021年12月の有料会員アイテム。",
|
||||
"weaponArmoirePotionGoldenText": "黄金のたまごがえしの薬の飾り",
|
||||
"weaponArmoirePotionGoldenNotes": "このたまごがえしの薬で、あなたのペットのハートは黄金になり(優しい心を持ち)ます……そして耳も黄金に……しっぽも黄金に……力と知能がそれぞれ<%= attrs %>上がります。ラッキー宝箱:たまごがえしの薬セット(10個中10個目のアイテム)",
|
||||
"headMystery202112Text": "南極のウィディーネのかんむり",
|
||||
"headMystery202112Notes": "この凍ったかんむりは、氷山の隠れた亀裂のようにかすかに光ります。効果なし。2020年12月の寄付会員アイテム。",
|
||||
"headMystery202112Notes": "この凍ったかんむりは、氷山の隠れた亀裂のようにかすかに光ります。効果なし。2021年12月の有料会員アイテム。",
|
||||
"weaponArmoireRegalSceptreText": "王錫",
|
||||
"weaponArmoireRegalSceptreNotes": "この宝石で飾られた杖を手に持って、あなたの王者としての威厳を示しましょう。知覚が<%= per %>上がります。ラッキー宝箱:王者セット(2個中2個目のアイテム)。",
|
||||
"headArmoireRegalCrownText": "王者の冠",
|
||||
|
|
@ -2540,5 +2540,15 @@
|
|||
"headSpecialWinter2022MageText": "ザクロのかぶと",
|
||||
"headSpecialWinter2022MageNotes": "厚い殻のおかげで、このお祝いのフルーティーなかぶとは、\"ベリー\"ストロングです。知覚が<%= per %>上がります。2021年-2022年冬の限定装備。",
|
||||
"headSpecialWinter2022HealerText": "氷の結晶のかんむり",
|
||||
"headSpecialWinter2022HealerNotes": "極めて小さな欠陥と不純物が、この頭飾りの腕を予測できない方向に枝分かれさせます。象徴的ですね!そして、この頭飾りはとってもとっても綺麗です!知能が<%= int %>上がります。2021年-2022年冬の限定装備。"
|
||||
"headSpecialWinter2022HealerNotes": "極めて小さな欠陥と不純物が、この頭飾りの腕を予測できない方向に枝分かれさせます。象徴的ですね!そして、この頭飾りはとってもとっても綺麗です!知能が<%= int %>上がります。2021年-2022年冬の限定装備。",
|
||||
"shieldSpecialWinter2022WarriorText": "ジングルベルシールド",
|
||||
"shieldSpecialWinter2022WarriorNotes": "ジングルベル、ジングルベル、ジングルベルシールド。ジングルベルで守り、ジングルベルで受け流します。体質が<%= con %>上がります。2021年-2022年冬の限定装備。",
|
||||
"shieldSpecialWinter2022HealerText": "溶けない氷の結晶",
|
||||
"shieldSpecialWinter2022HealerNotes": "手の中で溶けても、内側からの氷のエレメントの力で再生します。体質が<%= con %>上がります。2021年-2022年冬の限定装備。",
|
||||
"headSpecialNye2021Notes": "じつにばかげたパーティハットをもらいました! 新年を告げる鐘を聞きながら、誇りをもってかぶりましょう! 効果なし。",
|
||||
"headSpecialNye2021Text": "じつにばかげたパーティーハット",
|
||||
"weaponMystery202201Text": "真夜中のクラッカー",
|
||||
"weaponMystery202201Notes": "時計がの針が12時を刺した瞬間に金や銀のキラキラを人々にあびせましょう。明けましておめでとう!そんで、後片付けは誰がすんの?効果なし。2022年1月の有料会員アイテム。",
|
||||
"eyewearMystery202201Text": "真夜中にはしゃぐ人のためのマスク",
|
||||
"eyewearMystery202201Notes": "このしゃれた羽根つきのマスクをつけて、鐘を鳴らして新年を迎えましょう。効果なし。2022年1月の有料会員アイテム。"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -209,5 +209,9 @@
|
|||
"reportSent": "バグの報告を送信しました!",
|
||||
"reportDescriptionPlaceholder": "以下にバグの詳細を記入してください",
|
||||
"reportEmailError": "有効なメールアドレスをご入力ください",
|
||||
"reportEmailPlaceholder": "あなたのメールアドレス"
|
||||
"reportEmailPlaceholder": "あなたのメールアドレス",
|
||||
"reportEmailText": "バグの報告に関してのみ使用してください。",
|
||||
"reportDescriptionText": "役に立つ場合は、スクリーンショットやコンソールによるJavascriptのエラー表示も添付してください。",
|
||||
"emptyReportBugMessage": "バグ報告のメッセージがありません",
|
||||
"reportSentDescription": "問題を報告していただきありがとうございます。いったん運営で問題を調査して、あなたに再度連絡をします。"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2516,5 +2516,33 @@
|
|||
"weaponArmoireRegalSceptreText": "Королевский скипетр",
|
||||
"headArmoireRegalCrownText": "Королевская корона",
|
||||
"weaponArmoireRegalSceptreNotes": "Продемонстрируйте свою королевскую власть, взяв в руки этот посох, украшенный драгоценными камнями. Увеличивает восприятие на <%= per %>. Зачарованный сундук: Королевский набор (предмет 2 из 2).",
|
||||
"headArmoireRegalCrownNotes": "Любой правитель был бы удачлив, имея такую величественную, шикарную корону. Увеличивает интеллект на <%= int %>. Зачарованный сундук: Королевский набор (предмет 1 из 2)."
|
||||
"headArmoireRegalCrownNotes": "Любой правитель был бы удачлив, имея такую величественную, шикарную корону. Увеличивает интеллект на <%= int %>. Зачарованный сундук: Королевский набор (предмет 1 из 2).",
|
||||
"weaponSpecialWinter2022RogueText": "Фейерверк падающая звезда",
|
||||
"weaponSpecialWinter2022RogueNotes": "Серебро да золото любят разбойники, не так ли? Эти точно соответствуют теме. Увеличивает силу на <%= str %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"weaponSpecialWinter2022WarriorText": "Меч из леденцовой трости",
|
||||
"weaponSpecialWinter2022WarriorNotes": "Сколько облизываний требуется, чтобы заточить эту леденцовую трость в идеальный меч? Увеличивает силу на <%= str %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"weaponSpecialWinter2022MageText": "Гранатовый посох",
|
||||
"weaponSpecialWinter2022MageNotes": "Ягоды на посохе содержат древнюю магию, что можно пользоваться зимой. Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"weaponSpecialWinter2022HealerText": "Кристаллическая ледяная палочка",
|
||||
"weaponSpecialWinter2022HealerNotes": "Прикоснитесь этим твёрдоводным орудием к шее друга, и он вскочит со стула! Но позже почувствует себя лучше. Надеюсь. Увеличивает интеллект на <%= int %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"armorSpecialWinter2022WarriorText": "Пушистый чулок",
|
||||
"armorSpecialWinter2022MageText": "Гранатовая защита",
|
||||
"armorSpecialWinter2022HealerText": "Кристаллическая ледяная броня",
|
||||
"armorSpecialWinter2022RogueText": "Ослепительный взрыв",
|
||||
"armorSpecialWinter2022RogueNotes": "Если видят звёзды, то не видят вас! Да, пусть будет так. Увеличивает восприятие на <%= per %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"armorSpecialWinter2022WarriorNotes": "Кто сказал, что вы не можете находиться в укромном и уютном месте, выполняя повседневные задания? Увеличивает телосложение на <%= con %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"armorSpecialWinter2022MageNotes": "Враги должны остерегаться пятен фруктового сока, когда вы приближаетесь! Увеличивает интеллект на <%= int %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"armorSpecialWinter2022HealerNotes": "Скользите, будто на коньках, прямо над землей, сияющая неземная фигура принесет прохладу и спокойствие. Увеличивает телосложение на <%= con %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"headSpecialWinter2022RogueText": "Оглушительный финал",
|
||||
"headSpecialWinter2022RogueNotes": "Что? А? Разбойник где? Простите, я ничего не слышу из-за этих фейерверков! Увеличивает восприятие на <%= per %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"headSpecialWinter2022WarriorText": "Пушистая шапочка для чулок",
|
||||
"headSpecialWinter2022MageText": "Гранатовый шлем",
|
||||
"headSpecialWinter2022MageNotes": "Благодаря своей толстой оболочке, этот праздничный фруктовый шлем ягодно-крепок. Увеличивает восприятие на <%= per %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"headSpecialWinter2022WarriorNotes": "Празднично зеленая с мягкой красной отделкой, эта шапочка будет держать вас в тепле всю зиму. Увеличивает силу на <%= str %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"shieldSpecialWinter2022WarriorNotes": "Это звенящий бубенчик, звенящий щит-бубенчик. Его звон защищает и отражает. Увеличивает телосложение на <%= con %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"shieldSpecialWinter2022HealerNotes": "Хотя он тает в ваших руках, сила стихийного льда восстанавливает его изнутри. Увеличивает телосложение на <%= con %>. Ограниченный выпуск зимы 2021-2022.",
|
||||
"shieldSpecialWinter2022WarriorText": "Щит-бубенчик",
|
||||
"headSpecialWinter2022HealerText": "Кристаллическая ледяная корона",
|
||||
"shieldSpecialWinter2022HealerText": "Прочный ледяной кристалл",
|
||||
"headSpecialWinter2022HealerNotes": "Мельчайшие недостатки и примеси заставляют этот головной убор разветвляться в непредсказуемые направления. Символично! А еще очень-очень симпатично. Увеличивает интеллект на <%= int %>. Ограниченный выпуск зимы 2021-2022."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -197,7 +197,7 @@
|
|||
"winter2021IceFishingWarriorSet": "Рыбак на льду (Воин)",
|
||||
"g1g1Returning": "В честь праздничного сезона мы запускаем специальное предложение. Если вы подарите подписку своему другу, то получите точно такую же бесплатно!",
|
||||
"septemberYYYY": "Сентябрь <%= year %>",
|
||||
"g1g1Limitations": "Это предложение начнет действовать 17 декабря в 8:00 (13:00 UTC) и завершится 7 января в 20:00 (1:00 UTC). Акция будет действовать только в том случае, если вы дарите подписку другому пользователю Habitica. Если у вас или у получателя подарка уже есть подписка, то подаренная подписка добавится к текущей и будет использоваться только после того, как текущая подписка будет отменена, или истечет ее срок действия.",
|
||||
"g1g1Limitations": "Это предложение начнет действовать 16 декабря в 8:00 (13:00 UTC) и завершится 6 января в 20:00 (1:00 UTC). Акция будет действовать только в том случае, если вы дарите подписку другому пользователю Habitica. Если у вас или у получателя подарка уже есть подписка, то подаренная подписка добавится к текущей и будет использоваться только после того, как текущая подписка будет отменена, или истечет ее срок действия.",
|
||||
"g1g1HowItWorks": "Введите имя пользователя, которому вы хотите сделать подарок. Далее выберите подписку, которую вы хотите подарить, и оплатите заказ. Вы получите автоматически точно такую же подписку, которую вы только что подарили.",
|
||||
"spring2021TwinFlowerRogueSet": "Сдвоенный цветок (Разбойник)",
|
||||
"spring2021WillowHealerSet": "Ива (Целитель)",
|
||||
|
|
@ -211,5 +211,10 @@
|
|||
"fall2021HeadlessWarriorSet": "Безголовый (Воин)",
|
||||
"fall2021FlameSummonerHealerSet": "Призыватель пламени (Целитель)",
|
||||
"summer2021NautilusMageSet": "Наутилус (Маг)",
|
||||
"fall2021BrainEaterMageSet": "Пожиратель мозгов (Маг)"
|
||||
"fall2021BrainEaterMageSet": "Пожиратель мозгов (Маг)",
|
||||
"winter2022FireworksRogueSet": "Фейерверк (Разбойник)",
|
||||
"winter2022StockingWarriorSet": "Чулок (Воин)",
|
||||
"winter2022PomegranateMageSet": "Гранат (Маг)",
|
||||
"winter2022IceCrystalHealerSet": "Ледяной кристалл (Целитель)",
|
||||
"januaryYYYY": "Январь <%= year %>"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -93,24 +93,24 @@
|
|||
"dateFormat": "Формат дати",
|
||||
"achievementStressbeast": "Спаситель Стойкальма",
|
||||
"achievementStressbeastText": "Допоміг перемогти огидного Стресозвіра під час події Winter Wonderland в 2014 році!",
|
||||
"achievementBurnout": "Savior of the Flourishing Fields",
|
||||
"achievementBurnoutText": "Helped defeat Burnout and restore the Exhaust Spirits during the 2015 Fall Festival Event!",
|
||||
"achievementBewilder": "Savior of Mistiflying",
|
||||
"achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!",
|
||||
"achievementDysheartener": "Savior of the Shattered",
|
||||
"achievementDysheartenerText": "Helped defeat the Dysheartener during the 2018 Valentine's Event!",
|
||||
"achievementBurnout": "Рятівник квітучих полів",
|
||||
"achievementBurnoutText": "Допоміг перемогти Вигорання та відновити Духів Виснаження під час Осіннього фестивалю 2015 року!",
|
||||
"achievementBewilder": "Рятівник Містіфлаїнга",
|
||||
"achievementBewilderText": "Допомігли перемогти Забудівника під час Весняного Летючого Івенту 2016!",
|
||||
"achievementDysheartener": "Рятівник розбитих серцем",
|
||||
"achievementDysheartenerText": "Допомогли перемогти Серцеїда під час подій до Дня святого Валентина у 2018 році!",
|
||||
"cards": "Картки",
|
||||
"sentCardToUser": "You sent a card to <%= profileName %>",
|
||||
"cardReceived": "You received a <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||
"sentCardToUser": "Ви надіслали листівку <%= profileName %>",
|
||||
"cardReceived": "Ви отримали <span class=\"notification-bold-blue\"><%= card %></span>",
|
||||
"greetingCard": "Вітальна листівка",
|
||||
"greetingCardExplanation": "You both receive the Cheery Chum achievement!",
|
||||
"greetingCardNotes": "Send a greeting card to a party member.",
|
||||
"greetingCardExplanation": "Ви обидвоє отримали досягнення \"Веселун\"!",
|
||||
"greetingCardNotes": "Надішліть вітальну листівку члену своєї команди.",
|
||||
"greeting0": "Привіт!",
|
||||
"greeting1": "Вирішив привітатися :)",
|
||||
"greeting2": "`waves frantically`",
|
||||
"greeting3": "Hey you!",
|
||||
"greetingCardAchievementTitle": "Cheery Chum",
|
||||
"greetingCardAchievementText": "Hey! Hi! Hello! Sent or received <%= count %> greeting cards.",
|
||||
"greeting2": "`енергійно махає рукою`",
|
||||
"greeting3": "Агов!",
|
||||
"greetingCardAchievementTitle": "Веселун",
|
||||
"greetingCardAchievementText": "Хей! Агов! Привіт! Надіслано або отримано <%= count %> вітальних листівок.",
|
||||
"thankyouCard": "Листівка-подяка",
|
||||
"thankyouCardExplanation": "You both receive the Greatly Grateful achievement!",
|
||||
"thankyouCardNotes": "Send a Thank-You card to a party member.",
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
"contributing": "Contributing",
|
||||
"faq": "FAQ",
|
||||
"tutorial": "Навчання",
|
||||
"glossary": "<a target='_blank' href='http://habitica.fandom.com/wiki/Glossary'>Glossary</a>",
|
||||
"glossary": "<a target='_blank' href='https://habitica.fandom.com/wiki/Glossary'>Словник</a>",
|
||||
"wiki": "Wiki",
|
||||
"requestAF": "Задіяти особливості",
|
||||
"dataTool": "Інструмент відображення даних",
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
"bannedWordUsed": "Oops! Looks like this post contains a swearword, religious oath, or reference to an addictive substance or adult topic (<%= swearWordsUsed %>). Habitica has users from all backgrounds, so we keep our chat very clean. Feel free to edit your message so you can post it!",
|
||||
"bannedSlurUsed": "Your post contained inappropriate language, and your chat privileges have been revoked.",
|
||||
"party": "Команда",
|
||||
"usernameCopied": "Username copied to clipboard.",
|
||||
"usernameCopied": "Ім'я користувача скопійовано в буфер обміну.",
|
||||
"createGroupPlan": "Створити",
|
||||
"create": "Створити",
|
||||
"userId": "ID гравця",
|
||||
|
|
@ -106,13 +106,13 @@
|
|||
"needsTextPlaceholder": "Напишіть ваше повідомлення тут.",
|
||||
"copyMessageAsToDo": "Копіювання повідомлення як завдання",
|
||||
"copyAsTodo": "Скопіювати як завдання",
|
||||
"messageAddedAsToDo": "Message copied as To-Do.",
|
||||
"messageAddedAsToDo": "Повідомлення скопійовано як завдання.",
|
||||
"leaderOnlyChallenges": "Тільки лідер команди може створювати випробування",
|
||||
"sendGift": "Відправити подарунок",
|
||||
"inviteFriends": "Запросити друзів",
|
||||
"inviteByEmail": "Запросити через Email",
|
||||
"inviteMembersHowTo": "Invite people via a valid email or 36-digit User ID. If an email isn't registered yet, we'll invite them to join Habitica.",
|
||||
"sendInvitations": "Send Invites",
|
||||
"sendInvitations": "Надіслати запрошення",
|
||||
"invitationsSent": "Запрошення надіслано!",
|
||||
"invitationSent": "Запрошення надіслано!",
|
||||
"invitedFriend": "Запросити друга",
|
||||
|
|
@ -141,7 +141,7 @@
|
|||
"memberCannotRemoveYourself": "Ви не можете видалити себе!",
|
||||
"groupMemberNotFound": "Користувач не знайдений серед учасників групи",
|
||||
"mustBeGroupMember": "Повинен бути учасником групи.",
|
||||
"canOnlyInviteEmailUuid": "Can only invite using user IDs, emails, or usernames.",
|
||||
"canOnlyInviteEmailUuid": "Можна запросити тільки за допомогою ID користувача, eмейлу, або ж імені користувача.",
|
||||
"inviteMissingEmail": "Missing email address in invite.",
|
||||
"inviteMustNotBeEmpty": "Запрошення не повинні бути пустими.",
|
||||
"partyMustbePrivate": "Команди повинні бути приватними",
|
||||
|
|
@ -150,7 +150,7 @@
|
|||
"cannotInviteSelfToGroup": "Ви не можете запросити себе до групи.",
|
||||
"userAlreadyInvitedToGroup": "UserID: <%= userId %>, User \"<%= username %>\" already invited to that group.",
|
||||
"userAlreadyPendingInvitation": "UserID: <%= userId %>, User \"<%= username %>\" already pending invitation.",
|
||||
"userAlreadyInAParty": "UserID: <%= userId %>, User \"<%= username %>\" already in a party.",
|
||||
"userAlreadyInAParty": "ID: <%= userId %>, користувач \"<%= username %>\" вже в команді.",
|
||||
"userWithIDNotFound": "User with id \"<%= userId %>\" not found.",
|
||||
"userWithUsernameNotFound": "User with username \"<%= username %>\" not found.",
|
||||
"userHasNoLocalRegistration": "User does not have a local registration (username, email, password).",
|
||||
|
|
@ -162,27 +162,27 @@
|
|||
"onlyCreatorOrAdminCanDeleteChat": "У вас немає прав для видалення цього повідомлення!",
|
||||
"onlyGroupLeaderCanEditTasks": "У вас немає прав для управління задачами!",
|
||||
"onlyGroupTasksCanBeAssigned": "Only group tasks can be assigned",
|
||||
"assignedTo": "Assigned To",
|
||||
"assignedToUser": "Assigned to <strong><%- userName %></strong>",
|
||||
"assignedToMembers": "Assigned to <%= userCount %> members",
|
||||
"assignedToYouAndMembers": "Assigned to you and <%= userCount %> members",
|
||||
"youAreAssigned": "Ви назначені на цю задачу",
|
||||
"assignedTo": "Доручити",
|
||||
"assignedToUser": "Покладено на <strong><%- userName %></strong>",
|
||||
"assignedToMembers": "Доручено <strong><%= userCount %> членам</strong>",
|
||||
"assignedToYouAndMembers": "Доручено Вам та <strong><%= userCount %> членам</strong>",
|
||||
"youAreAssigned": "Доручено Вам",
|
||||
"taskIsUnassigned": "Задача не назначена",
|
||||
"confirmUnClaim": "Are you sure you want to unclaim this task?",
|
||||
"confirmNeedsWork": "Are you sure you want to mark this task as needing work?",
|
||||
"userRequestsApproval": "<%- userName %> requests approval",
|
||||
"userCountRequestsApproval": "<%= userCount %> members request approval",
|
||||
"userRequestsApproval": "<%- userName %> запитує схвалення",
|
||||
"userCountRequestsApproval": "<strong><%= userCount %> учасників</strong> запитують схвалення",
|
||||
"youAreRequestingApproval": "Ви запрошуєте одобрення",
|
||||
"chatPrivilegesRevoked": "You cannot do that because your chat privileges have been revoked.",
|
||||
"chatPrivilegesRevoked": "Ви не можете цього зробити, оскільки ваші привілеї чату видалено. Щоб дізнатися більше або запитати, чи можна повернути ваші привілеї, напишіть нашому менеджеру спільноти на адресу admin@habitica.com або попросіть своїх батьків або опікуна надіслати їм електронний лист. Будь ласка, вкажіть ім'я користувача (@username) в електронному листі. Якщо модератор уже сказав Вам, що блокування вашого чату тимчасове, Вам не потрібно надсилати електронний лист.",
|
||||
"cannotCreatePublicGuildWhenMuted": "You cannot create a public guild because your chat privileges have been revoked.",
|
||||
"cannotInviteWhenMuted": "You cannot invite anyone to a guild or party because your chat privileges have been revoked.",
|
||||
"to": "До:",
|
||||
"from": "Від:",
|
||||
"assignTask": "Назначити задачу",
|
||||
"claim": "Присвоїти",
|
||||
"claim": "Вимагати доручення завдання",
|
||||
"removeClaim": "Відмінити присвоєння",
|
||||
"onlyGroupLeaderCanManageSubscription": "Тільки лідер групи може управляти підпискою групи",
|
||||
"yourTaskHasBeenApproved": "Ваша задача <span class=\"notification-green\"><%- taskText %></span> була схвалена.",
|
||||
"yourTaskHasBeenApproved": "Ваша задача <span class=\"notification-green notification-bold\"><%- taskText %></span> була схвалена.",
|
||||
"taskNeedsWork": "<span class=\"notification-bold\"><%- managerName %></span> позначена <span class=\"notification-bold\"><%- taskText %></span> як потребуюча доробки.",
|
||||
"userHasRequestedTaskApproval": "<span class=\"notification-bold\"><%- user %></span> запрошує підтвердження для <span class=\"notification-bold\"><%- taskName %></span>",
|
||||
"approve": "Підтвердити",
|
||||
|
|
@ -204,10 +204,10 @@
|
|||
"aboutToJoinCancelledGroupPlan": "You are about to join a group with a canceled plan. You will NOT receive a free subscription.",
|
||||
"cannotChangeLeaderWithActiveGroupPlan": "You can not change the leader while the group has an active plan.",
|
||||
"leaderCannotLeaveGroupWithActiveGroup": "A leader can not leave a group while the group has an active plan",
|
||||
"youHaveGroupPlan": "You have a free subscription because you are a member of a group that has a Group Plan. This will end when you are no longer in the group that has a Group Plan. Any months of extra subscription credit you have will be applied at the end of the Group Plan.",
|
||||
"youHaveGroupPlan": "У вас є безкоштовна підписка, оскільки ви є учасником групового плану. Ваша підписка закінчиться, коли ви більше не будете учасником групового плану.",
|
||||
"cancelGroupSub": "Закінчити груповий план",
|
||||
"confirmCancelGroupPlan": "Ви впевнені що хочете завершити груповий план? Всі учасники групи втратять свої підписки та переваги.",
|
||||
"canceledGroupPlan": "Закінченний груповий план",
|
||||
"canceledGroupPlan": "Груповий план скасовано",
|
||||
"groupPlanCanceled": "Груповий план стане неактивним",
|
||||
"purchasedGroupPlanPlanExtraMonths": "You have <%= months %> months of extra group plan credit.",
|
||||
"addManager": "Assign Manager",
|
||||
|
|
@ -230,9 +230,9 @@
|
|||
"liked": "Сподобалось",
|
||||
"inviteToGuild": "Invite to Guild",
|
||||
"inviteToParty": "Запросити в команду",
|
||||
"inviteEmailUsername": "Invite via Email or Username",
|
||||
"inviteEmailUsername": "Запросити через email або ж за ім'ям користувача",
|
||||
"inviteEmailUsernameInfo": "Invite users via a valid email or username. If an email isn't registered yet, we'll invite them to join.",
|
||||
"emailOrUsernameInvite": "Email address or username",
|
||||
"emailOrUsernameInvite": "Email або ж ім'я користувача",
|
||||
"messageGuildLeader": "Message Guild Leader",
|
||||
"donateGems": "Donate Gems",
|
||||
"updateGuild": "Update Guild",
|
||||
|
|
@ -257,7 +257,7 @@
|
|||
"guildSummaryPlaceholder": "Write a short description advertising your Guild to other Habiticans. What is the main purpose of your Guild and why should people join it? Try to include useful keywords in the summary so that Habiticans can easily find it when they search!",
|
||||
"groupDescription": "Description",
|
||||
"guildDescriptionPlaceholder": "Use this section to go into more detail about everything that Guild members should know about your Guild. Useful tips, helpful links, and encouraging statements all go here!",
|
||||
"markdownFormattingHelp": "[Markdown formatting help](http://habitica.fandom.com/wiki/Markdown_Cheat_Sheet)",
|
||||
"markdownFormattingHelp": "[Довідка форматування](https://habitica.fandom.com/wiki/Markdown_Cheat_Sheet)",
|
||||
"partyDescriptionPlaceholder": "This is our Party's description. It describes what we do in this Party. If you want to learn more about what we do in this Party, read the description. Party on.",
|
||||
"guildGemCostInfo": "A Gem cost promotes high quality Guilds and is transferred into your Guild's bank.",
|
||||
"noGuildsTitle": "You aren't a member of any Guilds.",
|
||||
|
|
@ -290,9 +290,9 @@
|
|||
"participantDesc": "Once all members have either accepted or declined, the Quest begins. Only those who clicked 'accept' will be able to participate in the Quest and receive the rewards.",
|
||||
"groupGems": "Group Gems",
|
||||
"groupGemsDesc": "Guild Gems can be spent to make Challenges! In the future, you will be able to add more Guild Gems.",
|
||||
"groupTaskBoard": "Task Board",
|
||||
"groupInformation": "Group Information",
|
||||
"groupBilling": "Group Billing",
|
||||
"groupTaskBoard": "Дошка завдань",
|
||||
"groupInformation": "Деталі спільноти",
|
||||
"groupBilling": "Рахунки спільноти",
|
||||
"wouldYouParticipate": "Would you like to participate?",
|
||||
"managerAdded": "Manager added successfully",
|
||||
"managerRemoved": "Manager removed successfully",
|
||||
|
|
@ -335,7 +335,7 @@
|
|||
"whatIsGroupManager": "What is a Group Manager?",
|
||||
"whatIsGroupManagerDesc": "A Group Manager is a user role that do not have access to the group's billing details, but can create, assign, and approve shared Tasks for the Group's members. Promote Group Managers from the Group’s member list.",
|
||||
"goToTaskBoard": "Go to Task Board",
|
||||
"sharedCompletion": "Shared Completion",
|
||||
"sharedCompletion": "Умова виконання",
|
||||
"recurringCompletion": "None - Group task does not complete",
|
||||
"singleCompletion": "Single - Completes when any assigned user finishes",
|
||||
"allAssignedCompletion": "All - Completes when all assigned users finish",
|
||||
|
|
@ -350,5 +350,33 @@
|
|||
"joinGuild": "Приєднатись до гільдії",
|
||||
"editGuild": "Редагувати гільдію",
|
||||
"viewDetails": "Переглянути деталі",
|
||||
"messagePartyLeader": "Написати лідеру команди"
|
||||
"messagePartyLeader": "Написати лідеру команди",
|
||||
"blockYourself": "Ви не можете заблокувати себе",
|
||||
"unassigned": "Не назначено",
|
||||
"pmReported": "Спасибі, що повідомили про проблему з цим повідомленням.",
|
||||
"PMUnblockUserToSendMessages": "Розблокуйте цього користувача, щоб продовжити надсилати та отримувати повідомлення.",
|
||||
"blockedToSendToThisUser": "Ви не можете писати цьому користувачу, бо Ви його заблокували.",
|
||||
"selectGift": "Вибрати подарунок",
|
||||
"selectSubscription": "Вибрати підписку",
|
||||
"sendGiftToWhom": "Кому Ви б хотіли надіслати подарунок?",
|
||||
"giftMessageTooLong": "Максимальна довжина привітального повідомлення <%= maxGiftMessageLength %> знаків.",
|
||||
"cannotRemoveQuestOwner": "Ви не можете видалити власника квесту. Скасуйте для початку квест.",
|
||||
"usernameOrUserId": "Введіть @ім'я або ж ID користувача",
|
||||
"userWithUsernameOrUserIdNotFound": "Ім'я або ж ID користувача не знайдено.",
|
||||
"chooseTeamMember": "Виберіть члена команди",
|
||||
"onlyPrivateGuildsCanUpgrade": "Тільки приватні ґільдії можуть бути покращені до групи.",
|
||||
"bannedWordsAllowed": "Дозволити заборонені слова",
|
||||
"bannedWordsAllowedDetail": "Якщо вибрано цю опцію, використання заборонених слів у цій ґільдії буде дозволено.",
|
||||
"claimRewards": "Отримати нагороду",
|
||||
"youHaveBeenAssignedTask": "<%- managerName %> доручив Вам завдання <span class=\"notification-bold\"><%- taskText %></span>.",
|
||||
"thisTaskApproved": "Це завдання було схвалено",
|
||||
"taskClaimed": "<%- userName %> вимагає доручення завдання <span class=\"notification-bold\"><%- taskText %></span>.",
|
||||
"languageSettings": "Налаштування мови",
|
||||
"upgradeToGroup": "Підняти до спільноти",
|
||||
"invitedToThisQuest": "Вас запросили до квесту!",
|
||||
"suggestedGroup": "Запропоновано, бо Ви новачок в Habitica.",
|
||||
"groupActivityNotificationTitle": "<%= user %> опублікував в <%= group %>",
|
||||
"managerNotes": "Нотатки менеджера",
|
||||
"assignedDateOnly": "Назначено на <strong><%= date %></strong>",
|
||||
"assignedDateAndUser": "Назначено <strong>@<%- username %></strong> на <strong><%= date %></strong>"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@
|
|||
"dropsExplanation": "Get these items faster with Gems if you don't want to wait for them to drop when completing a task. <a href=\"http://habitica.fandom.com/wiki/Drops\">Learn more about the drop system.</a>",
|
||||
"dropsExplanationEggs": "Spend Gems to get eggs more quickly, if you don't want to wait for standard eggs to drop, or to repeat Quests to earn Quest eggs. <a href=\"http://habitica.fandom.com/wiki/Drops\">Learn more about the drop system.</a>",
|
||||
"premiumPotionNoDropExplanation": "Magic Hatching Potions cannot be used on eggs received from Quests. The only way to get Magic Hatching Potions is by buying them below, not from random drops.",
|
||||
"beastMasterProgress": "Прогрес Володару Звірів",
|
||||
"beastMasterProgress": "Прогрес Володаря звірів",
|
||||
"beastAchievement": "Ви здобули досягнення „Звіролов“ за збір усіх улюбленців!",
|
||||
"beastMasterName": "Володар Звірів",
|
||||
"beastMasterText": "Зібрав усіх 90 улюбленців (шалено важко, привітайте цього гравця!)",
|
||||
|
|
@ -108,5 +108,10 @@
|
|||
"notEnoughPets": "You have not collected enough pets",
|
||||
"notEnoughMounts": "You have not collected enough mounts",
|
||||
"notEnoughPetsMounts": "You have not collected enough pets and mounts",
|
||||
"wackyPets": "Дивакуваті Улюбленці"
|
||||
"wackyPets": "Дивакуваті Улюбленці",
|
||||
"tooMuchFood": "Ви намагаєтеся згодувати своєму улюбленцю занадто багато їжі, дію скасовано",
|
||||
"invalidAmount": "Недійсна кількість їжі, має бути цілим додатним числом",
|
||||
"notEnoughFood": "У Вас немає достатньо їжі",
|
||||
"gryphatrice": "Грифолиск",
|
||||
"filterByWacky": "Дивакуваті"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@
|
|||
"spellWizardEarthText": "Землетрус",
|
||||
"spellWizardEarthNotes": "Your mental power shakes the earth and buffs your Party's Intelligence! (Based on: Unbuffed INT)",
|
||||
"spellWizardFrostText": "Лютий мороз",
|
||||
"spellWizardFrostNotes": "With one cast, ice freezes all your streaks so they won't reset to zero tomorrow!",
|
||||
"spellWizardFrostNotes": "Лід моментально заморожує всі ваші серії, щоб завтра вони не скидались до нуля!",
|
||||
"spellWizardFrostAlreadyCast": "You have already cast this today. Your streaks are frozen, and there's no need to cast this again.",
|
||||
"spellWarriorSmashText": "Brutal Smash",
|
||||
"spellWarriorSmashNotes": "You make a task more blue/less red and deal extra damage to Bosses! (Based on: STR)",
|
||||
"spellWarriorSmashText": "Брутальний удар",
|
||||
"spellWarriorSmashNotes": "Ви робите завдання більш синім/менш червоним і завдаєте додаткової шкоди босам! (На основі: СИЛ)",
|
||||
"spellWarriorDefensiveStanceText": "Оборонна стійка",
|
||||
"spellWarriorDefensiveStanceNotes": "You crouch low and gain a buff to Constitution! (Based on: Unbuffed CON)",
|
||||
"spellWarriorValorousPresenceText": "Присутність доблесті",
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
"spellRogueToolsOfTradeNotes": "Your tricky talents buff your whole Party's Perception! (Based on: Unbuffed PER)",
|
||||
"spellRogueStealthText": "Потайливість",
|
||||
"spellRogueStealthNotes": "With each cast, a few of your undone Dailies won't cause damage tonight. Their streaks and colors won't change. (Based on: PER)",
|
||||
"spellRogueStealthDaliesAvoided": "<%= originalText %> Number of dailies that will be avoided: <%= number %>.",
|
||||
"spellRogueStealthDaliesAvoided": "<%= originalText %> Кількість регулярок, які будуть пропущені: <%= number %>.",
|
||||
"spellRogueStealthMaxedOut": "You have already avoided all your dailies; there's no need to cast this again.",
|
||||
"spellHealerHealText": "Цілюще світло",
|
||||
"spellHealerHealNotes": "Shining light restores your health! (Based on: CON and INT)",
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
"spellSpecialSnowballAuraText": "Сніжка",
|
||||
"spellSpecialSnowballAuraNotes": "Turn a friend into a frosty snowman!",
|
||||
"spellSpecialSaltText": "Сіль",
|
||||
"spellSpecialSaltNotes": "Reverse the spell that made you a snowman.",
|
||||
"spellSpecialSaltNotes": "Знімає закляття, яке перетворило Вас у сніговика.",
|
||||
"spellSpecialSpookySparklesText": "Spooky Sparkles",
|
||||
"spellSpecialSpookySparklesNotes": "Turn your friend into a transparent pal!",
|
||||
"spellSpecialOpaquePotionText": "Непрозоре Зілля",
|
||||
|
|
@ -55,5 +55,6 @@
|
|||
"challengeTasksNoCast": "Casting a skill on challenge tasks is not allowed.",
|
||||
"groupTasksNoCast": "Casting a skill on group tasks is not allowed.",
|
||||
"spellNotOwned": "You don't own this skill.",
|
||||
"spellLevelTooHigh": "You must be level <%= level %> to use this skill."
|
||||
"spellLevelTooHigh": "You must be level <%= level %> to use this skill.",
|
||||
"spellAlreadyCast": "Застосування цього навику не матиме жодного ефекту."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,12 +12,12 @@
|
|||
"commGuideList02B": "<strong>Tuân theo tất cả<a href='/static/terms' target='_blank'> những Điều khoản và Điều kiện</a></strong> trong khu vực chung cả khu vực riêng.",
|
||||
"commGuideList02C": "<strong> Đừng đăng lên những hình ảnh hay từ ngữ mang tính chất bạo lực, đe dọa, khiêu gợi, gợi cảm, mang tính chất cổ súy sự phân biệt chủng tộc, đức tin, tôn giáo, giới tính, quấy rối hoặc đe dọa bất cứ cá nhân hay nhóm nào. </strong> Thậm chí chỉ là nói đùa. Điều này quy định cho cả những từ ngữ hay câu. Không phải ai cũng có khiếu hài hước nhau nhau, và vì vậy chuyện bạn cho là chuyện đùa lại có thể khiến người khác tổn thương.",
|
||||
"commGuideList02D": "<strong>Giữ những cuộc thảo luận phù hợp với mọi lứa tuổi</strong>. Điều này có nghĩa là tránh những chủ đề người lớn ở những không gian chung. Chúng ta có rất nhiều Habitican trẻ tuổi ở đây, và mọi người đến từ tất cả tầng lớp xã hội. Chúng tôi muốn giữ cộng đồng của chúng ta thoải mái và bao quát nhất có thể.",
|
||||
"commGuideList02E": "<strong>Tránh nói tục. Việc này bao gồm những lời nói đơn giản về tôn giáo có thể được chấp nhận ở nơi khác</strong>. Chúng ta có thành viên đến từ tất cả tôn giáo và nền văn hóa khác nhau, và chúng tôi muốn chắc chắn rằng tất cả mọi người đều cảm thấy thoải mái ở không gian công cộng. <strong> Nếu một Điều hành viên hay Quản trị viên nói với bạn rằng có một cụm từ nào đó không được chấp nhận ở Habitica, kể cả khi đó là một cụm từ bạn nghĩ không có vấn đề gì, thì quyết định của họ là quyết định cuối cùng</strong>. Thêm vào đó, nói xấu người khác sẽ bị xử lí nặng, vì chúng đồng thời còn vi phạm Điều khoản Sử dụng dịch vụ.",
|
||||
"commGuideList02F": "<strong>Tránh mở rộng chủ đề nói chuyện về một vấn đề riêng nào đó trong Quán Trọ và đó là nơi mà nó sẽ bị lạc đề</strong>. Nếu bạn cảm thấy ai đó đã nói điều gì thô lỗ hay tổn thương bạn, đừng đáp trả lại họ. Nếu ai đó nhắc tới điều gì đó được cho phép bởi Nội quy nhưng lại làm bạn tổn thương, thì bạn có thể lịch sự nói với người đó biết điều đó. Nếu nó vi phạm Nội quy hay Điều khoản Sử dụng dịch vụ, bạn nên gắn cờ nó và để cho một Điều hành viên trả lời. Khi nghi ngờ, gắn cờ bài viết.",
|
||||
"commGuideList02E": "<strong>Tránh nói tục. Việc này bao gồm những lời nói đơn giản về tôn giáo có thể được chấp nhận ở nơi khác và những cụm từ nói tục được viết tắt hay ám chỉ.</strong> Chúng ta có thành viên đến từ tất cả tôn giáo và nền văn hóa khác nhau, và chúng tôi muốn chắc chắn rằng tất cả mọi người đều cảm thấy thoải mái ở không gian công cộng. <strong> Nếu một Điều hành viên hay Quản trị viên nói với bạn rằng có một cụm từ nào đó không được chấp nhận ở Habitica, kể cả khi đó là một cụm từ bạn nghĩ không có vấn đề gì, thì quyết định của họ là quyết định cuối cùng.</strong> Thêm vào đó, nói xấu người khác sẽ bị xử lí nặng, vì chúng đồng thời còn vi phạm Điều khoản Sử dụng dịch vụ.",
|
||||
"commGuideList02F": "Tránh mở rộng chủ đề nói chuyện về một vấn đề riêng nào đó trong Quán Trọ và đó là nơi mà nó sẽ bị lạc đề. Nếu bạn cảm thấy ai đó đã nói điều gì được cho phép bởi Nội quy nhưng lại tổn thương tới bạn, thì bạn có thể lịch sự nói với người đó biết điều đó. Nếu ai đó nói với bạn rằng bạn làm họ cảm thấy không thoải mái, hãy bỏ thời gian ra suy ngẫm thay vì trả lời trong giận dữ. Nhưng nếu bạn cảm thấy cuộc trò chuyện đang bị nóng lên, quá bức xúc, hoặc tổn thương, <strong>ngừng tiếp tục. Thay vào đó, báo cáo những bài đó để chúng tôi được biết về nó.</strong> Điều hành viên sẽ trả lời nhanh nhất có thể. Bạn cũng có thể gửi email <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> và bao gồm hình chụp màn hình nếu chúng có thể có ích.",
|
||||
"commGuideList02G": "<strong>Thực hiện ngay lập tức với bất kỳ yêu cầu nào của Điều hành viên.</strong> Điều này có thể bao gồm, nhưng không giới hạn, yêu cầu bạn giới hạn bài viết của mình trong một không gian cụ thể, chỉnh sửa hồ sơ của bạn để bỏ đi nội dung không phù hợp, di chuyển cuộc đối thoại của mình tới một không gian thích hợp hơn, v.v. Đừng cãi luận với Điều hành viên. Nếu bạn có thắc mắc hoặc nhận xét gì về việc kiểm duyệt, hãy gửi email tới <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> để liên hệ với Người quản lý Cộng đồng của chúng tôi.",
|
||||
"commGuideList02J": "<strong>Không spam</strong>. Spam có thể bao gồm, nhưng không giới hạn số hành động như sau: đăng những bình luận hoặc câu hỏi giống nhau ở nhiều nơi, đăng đường dẫn mà không có lời giải thích hay nội dung, năm những tin nhắn vô nghĩa, đăng nhiều tin nhắn quảng cáo về một Bang hội, Tổ đội hoặc Thử thách, hoặc đăng nhiều tin nhắn cùng lúc. Xin Gem hoặc một gói Thành viên cao cấp vào bất kỳ không gian trò chuyện hay bằng Tin nhắn Riêng tư đều có thể coi là spam. Nếu mọi người bấm vào đường dẫn có kết quả sẽ mang lại lợi ích cho bạn, bạn cần phải tiết lộ điều đó trong tin nhắn của mình hoặc đó sẽ bị coi là spam.<br/><br/>Mọi thứ đều phụ thuộc vào các Điều hành viên có quyết định xem đó có phải là spam hoặc là thứ dẫn tới spam hay không, kể cả khi bạn không cảm thấy rằng mình đã spam. Ví dụ, quảng cáo một Bang hội chỉ có thể chấp nhận một, hai lần, nhưng nhiều bài viết trong một ngày sẽ có thể coi là spam, cho dù cái Bang hội đó hữu ích tới mức nào!",
|
||||
"commGuideList02J": "<strong>Không spam</strong>. Spam có thể bao gồm, nhưng không giới hạn số hành động như sau: đăng những bình luận hoặc câu hỏi giống nhau ở nhiều nơi, <strong>đăng đường dẫn mà không có lời giải thích hay nội dung</strong>, đăng những tin nhắn vô nghĩa, đăng nhiều tin nhắn quảng cáo về một Bang hội, Tổ đội hoặc Thử thách, hoặc đăng nhiều tin nhắn cùng lúc. Nếu mọi người nhấp vào một đường link mà sẽ có lợi cho bạn, bạn cần phải cho biết trước ở bài viết của bạn hoặc đó cũng sẽ được coi là spam. Điều hành viên có thể sẽ quyết định những gì là spam theo quyết định của họ.",
|
||||
"commGuideList02K": "<strong>Tránh đăng tiêu đề văn bản lớn trong không gian nói chuyện công cộng, đặc biệt là Quán Trọ</strong>. Hoặc như IN HOA HẾT, nó sẽ bị đọc như là bạn đang hét vào mặt người ta vậy, điều đó sẽ làm cản trở không khí thoải mái.",
|
||||
"commGuideList02L": "<strong>Chúng tôi đặc biệt không khuyến khích việc trao đổi thông tin cá nhân -- đặc biệt là những thông tin có thể nhận dạng bạn -- trong không gian nói chuyện riêng tư</strong>. Nhận dạng thông tin có thể bao gồm nhưng không giới hạn trong: địa chỉ nhà bạn, địa chỉ email của bạn, và mã API/mật khẩu của bạn. Đây là vì sự an toàn của bạn! Nhân viên hay những Điều hành viên có thể xóa bỏ những bài viết như thế theo quyết định của họ. Nếu bạn được hỏi thông tin cá nhân ở trong một Bang Hội kín, Tổ đội hay Tin nhắn trực tiếp, chúng tôi khuyến khích bạn nên từ chối lịch sự và thông báo với Nhân viên và những Điều hành viên bằng 1) gắn cờ tin nhắn nếu nó ở trong một Tổ đội hay Bang hội kín, hay 2) điền vào <a href='http://contact.habitica.com/' target='_blank'>Biểu mẫu Liên lạc với Điều hành viên</a>và bao gồm cả ảnh chụp màn hình.",
|
||||
"commGuideList02L": "<strong>Chúng tôi đặc biệt không khuyến khích việc trao đổi thông tin cá nhân -- đặc biệt là những thông tin có thể nhận dạng bạn -- trong không gian nói chuyện cộng đồng</strong>. Nhận dạng thông tin có thể bao gồm nhưng không giới hạn trong: địa chỉ nhà bạn, địa chỉ email của bạn, và mã API/mật khẩu của bạn. Đây là vì sự an toàn của bạn! Nhân viên hay những Điều hành viên có thể xóa bỏ những bài viết như thế theo quyết định của họ. Nếu bạn được hỏi thông tin cá nhân ở trong một Bang Hội kín, Tổ đội hay Tin nhắn trực tiếp, chúng tôi khuyến khích bạn nên từ chối lịch sự và thông báo với Nhân viên và những Điều hành viên bằng 1) gắn cờ tin nhắn nếu nó ở trong một Tổ đội hay Bang hội kín, hay 2) gửi email tới <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> và bao gồm hình chụp màn hình.",
|
||||
"commGuidePara019": "<strong>Trong những không gian riêng tư</strong>, người dùng có thể thảo luận tự do hơn về bất kỳ chủ đề nào mà họ thích, nhưng họ vẫn không thể vi phạm các Điều khoản, bao gồm việc đăng bất kỳ tin nhắn bạo lực, phân biệt chủng tộc hay có nội dung nguy hiểm. Lưu ý rằng, bởi vì tên của thử thách xuất hiện trong hồ sơ công khai, TẤT CẢ tên của Thử thách phải tuân thủ Nội quy Cộng đồng, kể cả khi nó xuất hiện trong một không gian riêng tư.",
|
||||
"commGuidePara020": "<strong> Tin nhắn trực tiếp (PMs) </strong> có một số điều khoản thêm. Nếu ai đó chặn bạn, thì đừng liên lạc với họ ở nơi khác để xin họ bỏ chặn bạn. Đồng thời. bạn không nên gửi tin nhắn trực tiếp đến người khác dể xin hỗ trợ ( bởi vì những câu trả lời công khai cho những câu hỏi hỗ trợ đó rất có ích đối với cộng đồng ). Cuối cùng, làm ơn đừng gửi tin nhắn trực tiếp tới ai đó để xin họ tặng Đá quý hoặc theo dõi bạn, vì đây sẽ được coi là hành động spam.",
|
||||
"commGuidePara020A": "<strong>Nếu bạn thấy một bài viết mà bạn tin rằng là đã vi phạm Nội quy Cộng đồng được nêu ra ở trên đây, hoặc bạn thấy một bài viết có liên quan tới bạn hoặc làm bạn không thoải mái, bạn có thể đưa nó tới tầm mắt của những Điều hành viên và Nhân viên bằng cách bấm vào nút lá cờ để báo cáo nó</strong>. Một Nhân viên hoặc Điều hành viên sẽ trả lời vấn đề nhanh nhất có thể. Vui lòng lưu ý rằng cố ý báo cáo bài viết bình thường là một sự vi phạm trong các Quy định (xem phần dưới trong \"Những Hành vi Vi phạm\"). Bạn cũng có thể liên lạc với Điều hành viên bằng <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> Bạn có thể muốn làm việc này nếu có nhiều bài viết có vấn đề được tạo bởi cùng một người trong những Bang hội khác nhau, hoặc nếu vấn đề cần giải thích. Bạn có thể liên lạc với chúng tôi bằng ngôn ngữ mẹ đẻ của mình nếu như điều đó dễ dàng hơn với bạn: chúng tôi có thể phải dùng Google Dịch, nhưng chúng tôi muốn bạn cảm thấy thoải mái về việc liên lạc với chúng tôi nếu bạn có vấn đề.",
|
||||
|
|
@ -126,5 +126,6 @@
|
|||
"commGuideList01B": "Cấm: Bất kỳ thông tin liên lạc nào có tính chất bạo lực, đe dọa, cổ súy kỳ thị đối xử, v.v., bao gồm meme, hình ảnh và trò đùa.",
|
||||
"commGuideList01A": "Những Điều khoản và Điều kiện áp dụng trên tất cả các không gian trên Habitica, bao gồm cả bang hội riêng, phòng chat tổ đội và tin nhắn.",
|
||||
"commGuideList01E": "Đừng xúi giục hoặc tham gia vào các cuộc đối thoại gây tranh cãi trong Quán Trọ.",
|
||||
"commGuideList01F": "Không được xin cho vật phẩm được trả phí, hoặc gửi spam hay văn bản tiêu đề lớn/viết hoa tất cả."
|
||||
"commGuideList01F": "Không được xin cho vật phẩm được trả phí, hoặc gửi spam hay văn bản tiêu đề lớn/viết hoa tất cả.",
|
||||
"commGuideList02M": "Không được yêu cầu hay xin Gem, gói đăng kí hay thành viên trong Gói đăng kí Nhóm. Điều này không được cho phép ở trong Quán trọ, không gian công cộng hay riêng tư, hoặc trong tin nhắn cá nhân. Nếu bạn nhận tin nhắn yêu cầu những vật phẩm phải trả tiền, vui lòng báo cáo họ bằng cách cắm cờ. Hành vi xin gem hoặc gói đăng kí lặp lại nhiều lần, đặc biệt là sau cảnh cáo, có thể dẫn tới việc bị cấm tài khoản."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1799,5 +1799,7 @@
|
|||
"weaponSpecialWinter2021WarriorText": "Cần Câu Mạnh Mẽ",
|
||||
"weaponSpecialSpring2021MageText": "Lông Thiên Nga",
|
||||
"weaponSpecialFall2020WarriorText": "Thanh Kiếm Bóng Ma",
|
||||
"headSpecialNye2020Text": "Nón Lộng Lẫy"
|
||||
"headSpecialNye2020Text": "Nón Lộng Lẫy",
|
||||
"weaponSpecialFall2020RogueText": "Dao găm Sắc bén",
|
||||
"weaponSpecialFall2020RogueNotes": "Đâm kẻ thù của bạn bằng một đòn tấn công sắc nét! Ngay cả bộ giáp dày nhất cũng sẽ nhường chỗ cho lưỡi kiếm của bạn. Tăng Sức mạnh thêm <% = str%>. Phiên bản giới hạn 2020 Autumn Gear."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -175,16 +175,16 @@
|
|||
"editProfile": "编辑角色信息",
|
||||
"challengesWon": "赢得的奖励",
|
||||
"questsCompleted": "已完成的副本",
|
||||
"headAccess": "头部挂件",
|
||||
"backAccess": "背部挂件",
|
||||
"bodyAccess": "身体挂件",
|
||||
"headAccess": "头部饰品",
|
||||
"backAccess": "背部饰品",
|
||||
"bodyAccess": "身体饰品",
|
||||
"mainHand": "主手",
|
||||
"offHand": "副手",
|
||||
"statPoints": "属性点",
|
||||
"pts": "点数",
|
||||
"chatCastSpellUser": "<%= username %>对<%= target %>使用了<%= spell %>。",
|
||||
"chatCastSpellParty": "<%= username %>对队伍使用了<%= spell %>。",
|
||||
"purchasePetItemConfirm": "这次消费会超出你需要用来孵化所有可能<%= itemText %>宠物的物品数。你确定要这样做嘛?",
|
||||
"purchasePetItemConfirm": "这次消费会超出你需要用来孵化所有可能<%= itemText %>宠物的物品数。你确定要这样做吗?",
|
||||
"purchaseForGold": "花费<%= cost %> 个金币购买?",
|
||||
"notEnoughGold": "没有足够金币。"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
"commGuideList02C": "<strong>不要发布任何包含有暴力、恐吓,或明显/隐晦的有关性的内容;禁止发布宣扬对任何个人或团体的歧视、偏见、种族主义、性别歧视,及仇恨性、骚扰性、伤害性的文字或者图片</strong> ,包括污蔑以及声明。这些内容即使是玩笑或表情包也不合适。不是每一个人都有同样的幽默感,所以某些你认为是玩笑的话可能对他人会造成伤害。",
|
||||
"commGuideList02D": "<strong>所有讨论必须对所有年龄段人群适用。</strong> 请避免在公共区域讨论成人话题。Habitica居民来自各行各业,还有许多年轻的Habitica居民在使用这个网站。我们希望我们的社区能尽可能地舒适和包容。",
|
||||
"commGuideList02E": "<strong>避免亵渎言论。这包括可能在别的网站能够接受的,轻微的,对宗教的秽语</strong>。这里的人们有着各种各样的宗教和文化背景,我们希望保证他们能在公共空间感觉到自在。<strong>如果一位版主或工作人员告知你某个词语不被Habitica接受,那么就算你不理解为什么,也要遵守这个规则</strong>。另外,侮辱别人将会受到严重的处罚,因为这种行为也同时违反了服务条款。",
|
||||
"commGuideList02F": "请避免在酒馆和别的无关场所中对引起分裂的话题进行讨论。如果有人提到了准则允许但对你有害的事情,可以礼貌地让别人知道这一点。如果你觉得有人说了粗鲁或有害的事情,不要接触他们。如果有人告诉你你让他们感到不舒服,反思一下自己而不是愤怒地回答。但是如果你感到一个谈论变的过热,过于感情化,或有伤害性,<strong>不要再参与,并把该帖子举报,让我们知道。</strong>版主会尽快回应。你也可以发电子邮件给<a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>并且包括截屏如果它们有用的话。",
|
||||
"commGuideList02F": "请避免在酒馆和别的无关场所中对引起分裂的话题进行讨论。如果有人提到了准则允许但对你有害的事情,可以礼貌地让别人知道这一点。如果你觉得有人说了粗鲁或有害的事情,不要接触他们。如果有人告诉你你让他们感到不舒服,反思一下自己而不是愤怒地回答。但是如果你感到一个谈论变的过热,过于情绪化,或有伤害性,<strong>不要再参与,并把该帖子举报,让我们知道。</strong>版主会尽快回应。你也可以发电子邮件给<a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>并且包括截屏如果它们有用的话。",
|
||||
"commGuideList02G": "<strong>请立即遵守任何版主的要求</strong>这可能包括但不限于,限制你的发帖地点,编辑你的个人资料以删除不合适的内容,将讨论移至更合适的地方等等。不要与版主争论。如果你对版主审核的结果存在疑虑或意见,请发送电子邮箱 <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a> 来联系我们的社区管理员。",
|
||||
"commGuideList02J": "<strong>请勿发送垃圾消息</strong>。垃圾消息包括但不限于:在多个地方发布相同的评论或询问,<strong>发布没有说明和上下文的链接,</strong>发布无意义的消息,重复宣传某个公会、队伍或挑战,或一次发送多条消息。如果用户点击某个链接会给你带来任何利益,你需要在消息中告知该信息,否则这些消息也将被视为垃圾消息。版主有权界定垃圾信息的范围。",
|
||||
"commGuideList02K": "<strong>请不要在公共聊天场合张贴大标题文本,尤其是在酒馆。</strong>比如说,全部大写的英文字母会让你看起来像是在叫喊,这会干扰舒适的气氛。",
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
"commGuidePara031": "一些公开的公会可能包含敏感话题,比如关于抑郁、宗教或政治的话题。只要不违反条款与条件,以及公共空间准则,并将讨论限制在话题范围内,这些讨论是不被限制的。",
|
||||
"commGuidePara033": "<strong> 公开公会不能含有18禁内容。如果打算在里面定期地讨论这些敏感内容,应该在公会名称上标明。</strong> 这条规定是为了让所有玩家安全舒适的进行游戏。",
|
||||
"commGuidePara035": "<strong>如果一个可疑的公会里包含了不同种类的敏感议题,请尊重你的小伙伴,在警告后面加以注明(例如“警告:里面含有自残内容”)</strong>。这些将会被定性为触发警告或是有备注的内容,除了既定的规则之外管理者可以定制自己的规则。如果可以的话,请使用 <a href='https://habitica.fandom.com/zh/wiki/Markdown格式帮助' target='_blank'>Markdown语法</a> 来隐藏换行符下的潜在敏感内容,以便那些希望避免阅读该内容的人不会在滚动阅读时看见该内容。Habitica工作人员和管理员可以自行决定保留或移除这些内容。",
|
||||
"commGuidePara036": "另外,敏感成份必须和主题有关——在对抗抑郁症的公会里谈到自残是可理解的,但在音乐公会里谈就不适当了。如果你看到有人一直违反社区准则,屡劝不听的话,请举报该帖子并且通过 <a href='mailto:admin@habitica.com' target='_blank'>admin@habitica.com</a>联系我们的社区管理员。",
|
||||
"commGuidePara036": "另外,敏感成份必须和主题有关——在对抗抑郁症的公会里谈及自残,是可以理解的;但在一个音乐公会里说这个可能就不太合适了。如果你看到某人一直违反社区准则且屡劝不听,请举报那些言论。",
|
||||
"commGuidePara037": "<strong> 不应该建立任何用于攻击任何团体或个人的公会,不论是公开或是私人</strong>。建立这样的公会将会被立刻封禁。对抗坏习惯,而不是你的冒险者小伙伴!",
|
||||
"commGuidePara038": "<strong> 所有的酒馆挑战和公共公会的挑战也必须遵守这些规则 </strong>。",
|
||||
"commGuideHeadingInfractionsEtc": "违规,后果和恢复",
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"armoireText": "魔法衣橱",
|
||||
"armoireNotesFull": "拉开魔法衣橱来获得随机的特殊装备,经验或者食物!剩余的装备:",
|
||||
"armoireLastItem": "您在魔法衣橱里找到了最后一件 稀有装备。",
|
||||
"armoireNotesEmpty": "衣橱在每个月的第一个星期都有装备上新。在此之前,点击魔法衣橱也将会获得经验和宠物食品!",
|
||||
"armoireNotesEmpty": "衣橱在每个月的第一个星期都有装备上新。在此之前,点击魔法衣橱也将会获得经验和宠物食物!",
|
||||
"dropEggWolfText": "狼",
|
||||
"dropEggWolfMountText": "狼",
|
||||
"dropEggWolfAdjective": "一只忠诚的",
|
||||
|
|
|
|||
|
|
@ -269,7 +269,7 @@
|
|||
"removeMember": "移除成员",
|
||||
"sendMessage": "发送私信",
|
||||
"promoteToLeader": "转让所有权",
|
||||
"inviteFriendsParty": "邀请朋友加入你的队伍,你将获得独家<br/>副本卷轴,与他们一起挑战基础列表!",
|
||||
"inviteFriendsParty": "邀请朋友加入你的队伍,你将获得独家<br/>副本卷轴,与他们一起挑战普通的清单魔蛇!",
|
||||
"createParty": "创建一个队伍",
|
||||
"inviteMembersNow": "你想现在邀请成员吗?",
|
||||
"playInPartyTitle": "加入一个队伍来一起玩Habitica吧!",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"noItemsAvailableForType": "你没有<%= type %>。",
|
||||
"foodItemType": "宠物食品",
|
||||
"foodItemType": "宠物食物",
|
||||
"eggsItemType": "蛋",
|
||||
"hatchingPotionsItemType": "孵化药水",
|
||||
"specialItemType": "特殊物品",
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@
|
|||
"twoOfAllPetEggs": "每种标准宠物蛋各两个",
|
||||
"threeOfAllPetEggs": "每种标准宠物蛋各三个",
|
||||
"oneOfAllHatchingPotions": "每种标准孵化药水各一个",
|
||||
"threeOfEachFood": "每种标准宠物食品各三个",
|
||||
"fourOfEachFood": "每种标准宠物食品各四个",
|
||||
"threeOfEachFood": "每种标准宠物食物各三个",
|
||||
"fourOfEachFood": "每种标准宠物食物各四个",
|
||||
"twoSaddles": "两个鞍",
|
||||
"threeSaddles": "三个鞍",
|
||||
"incentiveAchievement": "忠实信徒成就",
|
||||
|
|
|
|||
|
|
@ -14,12 +14,12 @@
|
|||
"next": "继续",
|
||||
"randomize": "随机化",
|
||||
"mattBoch": "Matt Boch",
|
||||
"mattBochText1": "欢迎来到马厩!我是Matt,驯兽师。每当你完成任务,你会有机会获得宠物蛋和孵化药水,以此来孵化宠物。当你在市场上购买了宠物蛋,它会出现在这里!点击一只宠物,它会显示在你的角色形象中。如果你喂它们你找的宠物食品,它们就会成长为更有力量的坐骑。",
|
||||
"mattBochText1": "欢迎来到马厩!我是驯兽师Matt。每当你完成任务,你会有机会获得宠物蛋和孵化药水,以此来孵化宠物。当你在市场上购买了宠物蛋,它会出现在这里!点击一只宠物,它会显示在你的角色形象中。如果你喂它们你找的宠物食物,它们就会成长为更有力量的坐骑。",
|
||||
"welcomeToTavern": "欢迎来到酒馆!",
|
||||
"sleepDescription": "需要休息吗?来逛逛Daniel的酒店,当你遇到困难时,能暂停Habitica的游戏机制:",
|
||||
"sleepBullet1": "错过每日任务不会对你造成伤害",
|
||||
"sleepBullet2": "任务不会失去连击数",
|
||||
"sleepBullet3": "Boss不会因你错过每日而任务造成伤害",
|
||||
"sleepBullet3": "Boss不会因你错过每日任务而造成伤害",
|
||||
"sleepBullet4": "结算前这里会预测你对boss造成的伤害以及收集到的物品数量",
|
||||
"pauseDailies": "暂停伤害",
|
||||
"unpauseDailies": "解除暂停",
|
||||
|
|
@ -101,9 +101,9 @@
|
|||
"tourPartyPage": "你的队伍会使你保持责任心。邀请朋友来解锁副本卷轴!",
|
||||
"tourGuildsPage": "公会是勇士们创造来讨论共同兴趣的聊天组。浏览公会目录并选择你感兴趣的加入吧~!务必查看受欢迎的The Newbies公会,在那里所有人都可以询问关于Habitica的一切!",
|
||||
"tourChallengesPage": "挑战是一些玩家创建的“任务列表”,接受挑战就意味着把这些任务列表复制到你自己的清单上。和其他用户竞争比赛,赢得挑战就可以获得宝石!",
|
||||
"tourMarketPage": "当你完成任务后,会随机掉落蛋、孵化药水或宠物食品。你也可以在市场购买这些物品。",
|
||||
"tourMarketPage": "当你完成任务后,会随机掉落蛋、孵化药水或宠物食物。你也可以在市场购买这些物品。",
|
||||
"tourHallPage": "这里是英雄殿堂,纪念在开源项目中对Habitica做出贡献的人们。无论是代码、图画、音乐、剧本,甚至只是一些帮助,他们获得了宝石、专有装备以及尊贵头衔。你也可以对Habitica做出贡献!",
|
||||
"tourPetsPage": "这里是马厩!完成任务时就会有概率获得随机宠物蛋和随机孵化药水。孵化出宠物后,它会被传送到这里~!点击一只宠物后,它就会出现在你的角色身边。如果你喂它们你找的宠物食品,它们就会成长为更有力量的坐骑。",
|
||||
"tourPetsPage": "这里是马厩!完成任务时就会有概率获得随机宠物蛋和随机孵化药水。孵化出宠物后,它会被传送到这里~!点击一只宠物后,它就会出现在你的角色身边。如果你喂它们你找的宠物食物,它们就会成长为更有力量的坐骑。",
|
||||
"tourMountsPage": "一旦你给一只宠物喂了足够的食物,当它成长为坐骑时,它就会出现在这里。点击一只坐骑乘上吧!",
|
||||
"tourEquipmentPage": "这里是你的装备库!你的战斗装备会影响你的属性点。如果你仅仅只是想当作装饰挂件穿上,点击“启用服装”",
|
||||
"equipmentAlreadyOwned": "你已经拥有那件装备",
|
||||
|
|
|
|||
|
|
@ -5,6 +5,6 @@
|
|||
"step2": "第二步:完成现实生活中的任务以获取经验值",
|
||||
"webStep2Text": "现在开始解决你列表中的目标!你在Habitica中完成了任务后会获得能让你升级的[经验](https://habitica.fandom.com/zh/wiki/经验值)和能用于购买奖励的[金币](https://habitica.fandom.com/zh/wiki/金币)。如果你有了坏习惯或者没有完成每日任务,你会失去[生命](https://habitica.fandom.com/zh/wiki/生命值)。以这种方式,Habitica的经验条和生命条就会像指示器一样显示出你完成目标的进度。你就能通过你的游戏角色看见你在现实生活中的提升。",
|
||||
"step3": "第三步:自定义和探索Habitica",
|
||||
"webStep3Text": "当你熟悉了基本使用方法后,你就可以在下面完成进阶目标:\n * 给你的任务标上[标签](https://habitica.fandom.com/zh/wiki/标签)(编辑一个任务来添加)。\n * 自定义你的[角色形象](https://habitica.fandom.com/zh/wiki/角色形象),点击最顶上右边的用户图标。\n * 在奖励区购买你的[装备](https://habitica.fandom.com/zh/wiki/装备)或者在[商店](<%= shopUrl %>)也行,在这里装备上[物品 > 装备](<%= equipUrl %>)。\n * 和其他玩家在[酒馆](https://habitica.fandom.com/zh/wiki/酒馆)聊天。\n * 孵化[宠物](https://habitica.fandom.com/zh/wiki/宠物)通过收集[宠物蛋](https://habitica.fandom.com/zh/wiki/蛋)以及[孵化药水](https://habitica.fandom.com/zh/wiki/孵化药水)。[喂](https://habitica.fandom.com/zh/wiki/食物)你的宠物食品来让他们成为[坐骑](https://habitica.fandom.com/zh/wiki/坐骑)。\n * 达到等级10后:选择一个特定的[职业](https://habitica.fandom.com/zh/wiki/职业)并且使用职业专属[技能](https://habitica.fandom.com/zh/wiki/技能)(等级11-14)。\n * 和朋友一起创建队伍(点击导航栏的[队伍](<%= partyUrl %>))来保持联系和赢得奖励。\n * 在[副本](https://habitica.fandom.com/zh/wiki/副本)中击败怪物并且收集掉落物品(达到15级时你会得到一个副本)。",
|
||||
"webStep3Text": "当你熟悉了基本使用方法后,你就可以在下面完成进阶目标:\n * 给你的任务标上[标签](https://habitica.fandom.com/zh/wiki/标签)(编辑一个任务来添加)。\n * 自定义你的[角色形象](https://habitica.fandom.com/zh/wiki/角色形象),点击最顶上右边的用户图标。\n * 在奖励区购买你的[装备](https://habitica.fandom.com/zh/wiki/装备)或者在[商店](<%= shopUrl %>)也行,在这里装备上[物品 > 装备](<%= equipUrl %>)。\n * 和其他玩家在[酒馆](https://habitica.fandom.com/zh/wiki/酒馆)聊天。\n * 孵化[宠物](https://habitica.fandom.com/zh/wiki/宠物)通过收集[宠物蛋](https://habitica.fandom.com/zh/wiki/蛋)以及[孵化药水](https://habitica.fandom.com/zh/wiki/孵化药水)。[喂](https://habitica.fandom.com/zh/wiki/食物)你的宠物食物来让他们成为[坐骑](https://habitica.fandom.com/zh/wiki/坐骑)。\n * 达到等级10后:选择一个特定的[职业](https://habitica.fandom.com/zh/wiki/职业)并且使用职业专属[技能](https://habitica.fandom.com/zh/wiki/技能)(等级11-14)。\n * 和朋友一起创建队伍(点击导航栏的[队伍](<%= partyUrl %>))来保持联系和赢得奖励。\n * 在[副本](https://habitica.fandom.com/zh/wiki/副本)中击败怪物并且收集掉落物品(达到15级时你会得到一个副本)。",
|
||||
"overviewQuestions": "如有任何疑问,请查看我们的[FAQ](<%= faqUrl %>)! 如果您的问题没有被列出,您可以在[Habitica Help Guild](<%= helpGuildUrl %>)中寻求帮助。\n\n祝您好运!"
|
||||
}
|
||||
|
|
|
|||