mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-05-17 19:28:42 +00:00
Merge branch 'develop' into sabrecat/usernames-master
This commit is contained in:
commit
7484ecf729
59 changed files with 367 additions and 181 deletions
109
migrations/archive/2018/20181108_username_email.js
Normal file
109
migrations/archive/2018/20181108_username_email.js
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
const MIGRATION_NAME = '20181108_username_email.js';
|
||||
const AUTHOR_NAME = 'Sabe'; // in case script author needs to know when their ...
|
||||
const AUTHOR_UUID = '7f14ed62-5408-4e1b-be83-ada62d504931'; // ... own data is done
|
||||
|
||||
/*
|
||||
* Send emails to eligible users announcing upcoming username changes
|
||||
*/
|
||||
|
||||
import monk from 'monk';
|
||||
import nconf from 'nconf';
|
||||
import { sendTxn } from '../../../website/server/libs/email';
|
||||
const CONNECTION_STRING = nconf.get('MIGRATION_CONNECT_STRING');
|
||||
const BASE_URL = nconf.get('BASE_URL');
|
||||
let dbUsers = monk(CONNECTION_STRING).get('users', { castIds: false });
|
||||
|
||||
function processUsers (lastId) {
|
||||
// specify a query to limit the affected users (empty for all users):
|
||||
let query = {
|
||||
migration: {$ne: MIGRATION_NAME},
|
||||
'flags.verifiedUsername': {$ne: true},
|
||||
'auth.timestamps.loggedin': {$gt: new Date('2018-10-25')},
|
||||
};
|
||||
|
||||
if (lastId) {
|
||||
query._id = {
|
||||
$gt: lastId,
|
||||
};
|
||||
}
|
||||
|
||||
dbUsers.find(query, {
|
||||
sort: {_id: 1},
|
||||
limit: 100,
|
||||
fields: [
|
||||
'_id',
|
||||
'auth',
|
||||
'preferences',
|
||||
'profile',
|
||||
], // specify fields we are interested in to limit retrieved data (empty if we're not reading data):
|
||||
})
|
||||
.then(updateUsers)
|
||||
.catch((err) => {
|
||||
console.log(err);
|
||||
return exiting(1, `ERROR! ${ err}`);
|
||||
});
|
||||
}
|
||||
|
||||
let progressCount = 1000;
|
||||
let count = 0;
|
||||
|
||||
function updateUsers (users) {
|
||||
if (!users || users.length === 0) {
|
||||
console.warn('All appropriate users found and modified.');
|
||||
displayData();
|
||||
return;
|
||||
}
|
||||
|
||||
let userPromises = users.map(updateUser);
|
||||
let lastUser = users[users.length - 1];
|
||||
|
||||
return Promise.all(userPromises)
|
||||
.then(() => delay(7000))
|
||||
.then(() => {
|
||||
processUsers(lastUser._id);
|
||||
});
|
||||
}
|
||||
|
||||
function updateUser (user) {
|
||||
count++;
|
||||
|
||||
dbUsers.update({_id: user._id}, {$set: {migration: MIGRATION_NAME}});
|
||||
|
||||
sendTxn(
|
||||
user,
|
||||
'username-change-follow-up',
|
||||
[{name: 'LOGIN_NAME', content: user.auth.local.username},
|
||||
{name: 'BASE_URL', content: BASE_URL}]
|
||||
);
|
||||
|
||||
if (count % progressCount === 0) console.warn(`${count} ${user._id}`);
|
||||
if (user._id === AUTHOR_UUID) console.warn(`${AUTHOR_NAME} processed`);
|
||||
}
|
||||
|
||||
function displayData () {
|
||||
console.warn(`\n${count} users processed\n`);
|
||||
return exiting(0);
|
||||
}
|
||||
|
||||
function delay (t, v) {
|
||||
return new Promise(function batchPause (resolve) {
|
||||
setTimeout(resolve.bind(null, v), t);
|
||||
});
|
||||
}
|
||||
|
||||
function exiting (code, msg) {
|
||||
code = code || 0; // 0 = success
|
||||
if (code && !msg) {
|
||||
msg = 'ERROR!';
|
||||
}
|
||||
if (msg) {
|
||||
if (code) {
|
||||
console.error(msg);
|
||||
} else {
|
||||
console.log(msg);
|
||||
}
|
||||
}
|
||||
process.exit(code);
|
||||
}
|
||||
|
||||
module.exports = processUsers;
|
||||
14
package-lock.json
generated
14
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "habitica",
|
||||
"version": "4.69.1",
|
||||
"version": "4.69.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
@ -12895,15 +12895,15 @@
|
|||
}
|
||||
},
|
||||
"http-proxy-middleware": {
|
||||
"version": "0.18.0",
|
||||
"resolved": "http://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz",
|
||||
"integrity": "sha512-Fs25KVMPAIIcgjMZkVHJoKg9VcXcC1C8yb9JUgeDvVXY0S/zgVIhMb+qVswDIgtJe2DfckMSY2d6TuTEutlk6Q==",
|
||||
"version": "0.19.0",
|
||||
"resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.0.tgz",
|
||||
"integrity": "sha512-Ab/zKDy2B0404mz83bgki0HHv/xqpYKAyFXhopAiJaVAUSJfLYrpBYynTl4ZSUJ7TqrAgjarTsxdX5yBb4unRQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"http-proxy": "^1.16.2",
|
||||
"http-proxy": "^1.17.0",
|
||||
"is-glob": "^4.0.0",
|
||||
"lodash": "^4.17.5",
|
||||
"micromatch": "^3.1.9"
|
||||
"lodash": "^4.17.10",
|
||||
"micromatch": "^3.1.10"
|
||||
}
|
||||
},
|
||||
"http-signature": {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "habitica",
|
||||
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
|
||||
"version": "4.69.1",
|
||||
"version": "4.69.2",
|
||||
"main": "./website/server/index.js",
|
||||
"dependencies": {
|
||||
"@slack/client": "^3.8.1",
|
||||
|
|
@ -162,7 +162,7 @@
|
|||
"eslint-plugin-mocha": "^5.0.0",
|
||||
"eventsource-polyfill": "^0.9.6",
|
||||
"expect.js": "^0.3.1",
|
||||
"http-proxy-middleware": "^0.18.0",
|
||||
"http-proxy-middleware": "^0.19.0",
|
||||
"istanbul": "^1.1.0-alpha.1",
|
||||
"karma": "^3.0.0",
|
||||
"karma-babel-preprocessor": "^7.0.0",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
.achievement-costumeContest6x {
|
||||
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
|
||||
background-position: -142px -727px;
|
||||
background-position: -437px -727px;
|
||||
width: 144px;
|
||||
height: 156px;
|
||||
}
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
}
|
||||
.promo_mystery_201810 {
|
||||
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
|
||||
background-position: -958px -428px;
|
||||
background-position: -142px -727px;
|
||||
width: 294px;
|
||||
height: 168px;
|
||||
}
|
||||
|
|
@ -48,10 +48,16 @@
|
|||
}
|
||||
.promo_veteran_pets {
|
||||
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
|
||||
background-position: -958px -286px;
|
||||
background-position: -958px -563px;
|
||||
width: 363px;
|
||||
height: 141px;
|
||||
}
|
||||
.scene_dailies {
|
||||
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
|
||||
background-position: -958px -286px;
|
||||
width: 327px;
|
||||
height: 276px;
|
||||
}
|
||||
.scene_nametag {
|
||||
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
|
||||
background-position: -376px -365px;
|
||||
|
|
@ -66,7 +72,7 @@
|
|||
}
|
||||
.scene_veteran_pets {
|
||||
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
|
||||
background-position: -958px -597px;
|
||||
background-position: -582px -727px;
|
||||
width: 242px;
|
||||
height: 62px;
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 189 KiB After Width: | Height: | Size: 193 KiB |
|
|
@ -59,6 +59,7 @@ export default {
|
|||
'importantAnnouncements',
|
||||
'weeklyRecaps',
|
||||
'onboarding',
|
||||
'majorUpdates',
|
||||
]),
|
||||
// list of email-only notifications
|
||||
onlyEmailsIds: Object.freeze([
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
|
||||
import content from 'common/script/content';
|
||||
|
||||
const specialPets = Object.keys(content.specialPets);
|
||||
|
||||
function getText (textOrFunction) {
|
||||
if (textOrFunction instanceof Function) {
|
||||
return textOrFunction();
|
||||
|
|
@ -18,10 +22,12 @@ export function isHatchable (animal, userItems) {
|
|||
}
|
||||
|
||||
export function isAllowedToFeed (animal, userItems) {
|
||||
return isOwned('pet', animal, userItems) && !isOwned('mount', animal, userItems);
|
||||
return !specialPets.includes(animal.key) &&
|
||||
isOwned('pet', animal, userItems) &&
|
||||
!isOwned('mount', animal, userItems);
|
||||
}
|
||||
|
||||
export function createAnimal (egg, potion, type, content, userItems) {
|
||||
export function createAnimal (egg, potion, type, _content, userItems) {
|
||||
let animalKey = `${egg.key}-${potion.key}`;
|
||||
|
||||
return {
|
||||
|
|
@ -31,7 +37,7 @@ export function createAnimal (egg, potion, type, content, userItems) {
|
|||
eggName: getText(egg.text),
|
||||
potionKey: potion.key,
|
||||
potionName: getText(potion.text),
|
||||
name: content[`${type}Info`][animalKey].text(),
|
||||
name: _content[`${type}Info`][animalKey].text(),
|
||||
isOwned () {
|
||||
return isOwned(type, this, userItems);
|
||||
},
|
||||
|
|
@ -46,3 +52,4 @@ export function createAnimal (egg, potion, type, content, userItems) {
|
|||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -388,11 +388,11 @@
|
|||
"backgroundCreepyCastleNotes": "Осмелете се да се приближите до страховит замък.",
|
||||
"backgroundDungeonText": "Тъмница",
|
||||
"backgroundDungeonNotes": "Спасете затворниците от зловеща тъмница.",
|
||||
"backgrounds112018": "SET 54: Released November 2018",
|
||||
"backgroundBackAlleyText": "Back Alley",
|
||||
"backgroundBackAlleyNotes": "Look shady loitering in a Back Alley.",
|
||||
"backgroundGlowingMushroomCaveText": "Glowing Mushroom Cave",
|
||||
"backgroundGlowingMushroomCaveNotes": "Stare in awe at a Glowing Mushroom Cave.",
|
||||
"backgroundCozyBedroomText": "Cozy Bedroom",
|
||||
"backgroundCozyBedroomNotes": "Curl up in a Cozy Bedroom."
|
||||
"backgrounds112018": "КОМПЛЕКТ 54: Ноември 2018 г.",
|
||||
"backgroundBackAlleyText": "Тясна уличка",
|
||||
"backgroundBackAlleyNotes": "Изглеждайте загадъчно като се размотавате в тясна уличка",
|
||||
"backgroundGlowingMushroomCaveText": "Пещера на светещите гъби",
|
||||
"backgroundGlowingMushroomCaveNotes": "Възхищавайте се на пещера на светещите гъби.",
|
||||
"backgroundCozyBedroomText": "Уютна спалня",
|
||||
"backgroundCozyBedroomNotes": "Полегнете в уютна спалня."
|
||||
}
|
||||
|
|
@ -784,8 +784,8 @@
|
|||
"armorArmoireCoverallsOfBookbindingNotes": "Всичко, от което се нуждае една униформа, включително джобове за всичко. Чифт очила, дребни монети, златен пръстен… Увеличава якостта с <%= con %> и усета с <%= per %>. Омагьосан гардероб: Подвързачески комплект (предмет 2 от 4).",
|
||||
"armorArmoireRobeOfSpadesText": "Одежди — пика",
|
||||
"armorArmoireRobeOfSpadesNotes": "Тези изтупани одежди имат скрити джобове за съкровища или оръжия – Вие решавате! Увеличава силата с <%= str %>. Омагьосан гардероб: комплект „Асо пика“ (предмет 2 от 3).",
|
||||
"armorArmoireSoftBlueSuitText": "Soft Blue Suit",
|
||||
"armorArmoireSoftBlueSuitNotes": "Blue is a calming colour. So calming, some even wear this soft outfit to sleep... zZz. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Blue Loungewear Set (Item 2 of 3).",
|
||||
"armorArmoireSoftBlueSuitText": "Мек син костюм",
|
||||
"armorArmoireSoftBlueSuitNotes": "Синият цвят успокоява. Толкова много, че някои носят този мек костюм докато спят… хрр. Увеличава интелигентността с <%= int %> и усета с <%= per %>. Омагьосан гардероб: Син домашен комплект (предмет 2 от 3).",
|
||||
"headgear": "шлем",
|
||||
"headgearCapitalized": "Защита за главата",
|
||||
"headBase0Text": "Няма защита за главата",
|
||||
|
|
@ -1153,7 +1153,7 @@
|
|||
"headArmoireOrangeCatText": "Оранжева котешка шапка",
|
||||
"headArmoireOrangeCatNotes": "Тази оранжева шапка… мърка. И си върти опашката. И диша? Ами да, просто имате спяща котка на главата си. Увеличава силата и якостта с по <%= attrs %>. Омагьосан гардероб: Независим предмет.",
|
||||
"headArmoireBlueFloppyHatText": "Широка синя шапка",
|
||||
"headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Blue Loungewear Set (Item 1 of 3).",
|
||||
"headArmoireBlueFloppyHatNotes": "Много заклинания са втъкани в тази простовата шапка, придавайки ѝ блестящ син цвят. Увеличава якостта, интелигентността и усета с по <%= attrs %>. Омагьосан гардероб: Син домашен комплект (предмет 1 от 3).",
|
||||
"headArmoireShepherdHeaddressText": "Овчарски воал",
|
||||
"headArmoireShepherdHeaddressNotes": "Грифоните, които водите, понякога обичат да дъвчат този воал, но въпреки това имате по-интелигентен вид. Увеличава интелигентността с <%= int %>. Омагьосан гардероб: Овчарски комплект (предмет 3 от 3).",
|
||||
"headArmoireCrystalCrescentHatText": "Шапка с кристален полумесец",
|
||||
|
|
@ -1446,8 +1446,8 @@
|
|||
"shieldArmoirePiraticalSkullShieldNotes": "Този омагьосан щит шепне къде са местата, където враговете Ви са заровили тайните си съкровища. Слушайте внимателно! Увеличава усета и интелигентността с по <%= attrs %>. Омагьосан гардероб: комплект „Пиратска принцеса“ (предмет 4 от 4).",
|
||||
"shieldArmoireUnfinishedTomeText": "Незавършен том",
|
||||
"shieldArmoireUnfinishedTomeNotes": "Няма как да протакате, когато държите това! Подвързията трябва да бъде завършена, за да могат хората да прочетат книгата! Увеличава интелигентността с <%= int %>. Омагьосан гардероб: Подвързачески комплект (предмет 4 от 4).",
|
||||
"shieldArmoireSoftBluePillowText": "Soft Blue Pillow",
|
||||
"shieldArmoireSoftBluePillowNotes": "The sensible warrior packs a pillow for any expedition. Shield yourself from sharp tasks... even while you nap. Increases Constitution by <%= con %>. Enchanted Armoire: Blue Loungewear Set (Item 3 of 3).",
|
||||
"shieldArmoireSoftBluePillowText": "Мека синя възглавница",
|
||||
"shieldArmoireSoftBluePillowNotes": "Предвидливият воин си взема възглавница при всяко пътешествие. Защитете се от острите задачи… дори когато си подремвате. Увеличава якостта с <%= con %>. Омагьосан гардероб: Син домашен комплект (предмет 3 от 3).",
|
||||
"back": "Аксесоар за гръб",
|
||||
"backCapitalized": "Аксесоар за гръб",
|
||||
"backBase0Text": "Няма аксесоар за гръб",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Напомняния да влезете, за да завършите задачите си и да получите награди",
|
||||
"weeklyRecaps": "Информация относно дейността на профила Ви през последната седмица. (Забележка: в момента това е изключено поради проблеми с производителността, но се надяваме да го включим отново скоро!)",
|
||||
"onboarding": "Насоки за настройка на Вашия профил в Хабитика.",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Мисията Ви започна",
|
||||
"invitedQuest": "Покана за мисия",
|
||||
"kickedGroup": "Изритан от групата",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Създаване",
|
||||
"getCodes": "Получаване на кодове",
|
||||
"webhooks": "Уеб-куки",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Включено",
|
||||
"webhookURL": "Адрес на уеб-куката",
|
||||
"invalidUrl": "грешен адрес",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
|
||||
"weeklyRecaps": "Shrnutí aktivity tvého účtu za poslední týden (Poznámka: momentálně vypnuto kvůli problémům s výkonem, ale doufáme že se to vyřeší a budeme brzy znovu posílat e-maily!)",
|
||||
"onboarding": "Guidance with setting up your Habitica account",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Tvá výprava započla",
|
||||
"invitedQuest": "Pozván na Výpravu",
|
||||
"kickedGroup": "Vykopnut z družiny",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generovat",
|
||||
"getCodes": "Získat kódy",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Povoleno",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "Neplatné url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Påmindelser om check ind for at fuldføre opgaver og modtage belønninger",
|
||||
"weeklyRecaps": "Oversigt over aktiviteter på din konto den sidste uge (Bemærk: dette er midlertidigt slået fra grundet ydelsesproblemer, men vi håber snarest at have det oppe at køre og sende emails igen!)",
|
||||
"onboarding": "Hjælp til opsætning af din Habitica-konto",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Jeres Quest er Begyndt",
|
||||
"invitedQuest": "Inviteret til Quest",
|
||||
"kickedGroup": "Fjernet fra gruppe",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generér",
|
||||
"getCodes": "Hent Koder",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Aktiveret",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "ugyldig url",
|
||||
|
|
|
|||
|
|
@ -388,11 +388,11 @@
|
|||
"backgroundCreepyCastleNotes": "Wage Dich in die Nähe der unheimlichen Burg.",
|
||||
"backgroundDungeonText": "Kerker",
|
||||
"backgroundDungeonNotes": "Befreie die Insassen eines gespenstischen Kerkers.",
|
||||
"backgrounds112018": "SET 54: Released November 2018",
|
||||
"backgroundBackAlleyText": "Back Alley",
|
||||
"backgroundBackAlleyNotes": "Look shady loitering in a Back Alley.",
|
||||
"backgroundGlowingMushroomCaveText": "Glowing Mushroom Cave",
|
||||
"backgroundGlowingMushroomCaveNotes": "Stare in awe at a Glowing Mushroom Cave.",
|
||||
"backgroundCozyBedroomText": "Cozy Bedroom",
|
||||
"backgroundCozyBedroomNotes": "Curl up in a Cozy Bedroom."
|
||||
"backgrounds112018": "Set 54: Veröffentlicht im November 2018",
|
||||
"backgroundBackAlleyText": "Seitengasse",
|
||||
"backgroundBackAlleyNotes": "Lungere dubios ein einer Seitengasse herum.",
|
||||
"backgroundGlowingMushroomCaveText": "Leuchtpilz-Höhle",
|
||||
"backgroundGlowingMushroomCaveNotes": "Bestaune die Leuchtpilz-Höhle.",
|
||||
"backgroundCozyBedroomText": "Kuscheliges Schlafzimmer",
|
||||
"backgroundCozyBedroomNotes": "Rolle Dich in einem gemütlichen Schlafzimmer zusammen."
|
||||
}
|
||||
|
|
@ -178,7 +178,7 @@
|
|||
"questEggKangarooAdjective": "ein eifriges",
|
||||
"questEggAlligatorText": "Alligator",
|
||||
"questEggAlligatorMountText": "Alligator",
|
||||
"questEggAlligatorAdjective": "a cunning",
|
||||
"questEggAlligatorAdjective": "gerissener",
|
||||
"eggNotes": "Finde ein Schlüpfelixier, das Du über dieses Ei gießen kannst, damit ein <%= eggAdjective(locale) %> <%= eggText(locale) %> schlüpfen kann.",
|
||||
"hatchingPotionBase": "Normales",
|
||||
"hatchingPotionWhite": "Weißes",
|
||||
|
|
|
|||
|
|
@ -41,8 +41,8 @@
|
|||
"androidFaqAnswer9": "Zuerst musst Du eine Gruppe gründen oder einer Gruppe beitreten (unter Soziales > Gruppe). Obwohl Du Monster auch alleine bekämpfen kannst, empfehlen wir in einer Gruppe mit anderen Mitspielern zu spielen, da dies die Quests viel einfacher macht. Zusätzlich ist es sehr motivierend einen Freund zu haben, der einen anspornt seine Aufgaben zu erledigen.\n\nAls nächstes benötigst Du eine Questrolle, welche unter Inventar > Quests gelagert werden. Es gibt drei Möglichkeiten an Schriftrollen zu kommen: \n\n- Bei Erreichen von Level 15 erhältst Du eine Questreihe, d.h. drei zusammenhängende Quests. Weitere Questreihen werden bei den Leveln 30, 40 und 60 freigeschaltet. \n- Wenn Du Leute in Deine Gruppe einlädst, bekommst Du als Belohnung die Basi-List-Schriftrolle!\n- Du kannst Quests auf der Quest-Seite der Website für Gold und Edelsteine kaufen.\n\nUm den Boss zu bekämpfen oder Gegenstände bei einer Sammelquest zu sammeln, musst Du einfach Deine Aufgaben normal erledigen und sie werden über Nacht in Schaden umgerechnet. (Möglicherweise ist es erforderlich die Seite neu zu laden, um den Effekt auf den Lebensbalken des Bosses zu sehen.) Wenn Du einen Boss bekämpfst und tägliche Aufgaben nicht erledigst, wird der Boss eurer Gruppe zur gleichen Zeit Schaden zufügen wie ihr dem Boss.\n\nAb Level 11 erhalten Magier und Krieger Fähigkeiten, welche dem Boss zusätzlichen Schaden zufügen, also sind dies auf Level 10 ausgezeichnete Klassen zu wählen, wenn ihr großen Schaden anrichten wollt.",
|
||||
"webFaqAnswer9": "First, you need to join or start a Party by clicking \"Party\" in the navigation bar. Although you can battle monsters alone, we recommend playing in a group, because this will make quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating! Next, you need a Quest Scroll, which are stored under Inventory > Quests. There are four ways to get a scroll:\n * When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n * At level 15, you get a Quest-line, i.e., three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively.\n * You can buy Quests from the Quests Shop (Shops > Quests) for Gold and Gems.\n * When you check in to Habitica a certain number of times, you'll be rewarded with Quest Scrolls. You earn a Scroll during your 1st, 7th, 22nd, and 40th check-ins.\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading may be required to see the Boss's Health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.",
|
||||
"faqQuestion10": "Was sind Edelsteine und wie bekomme ich welche?",
|
||||
"iosFaqAnswer10": "Gems are purchased with real money by tapping on the Gem icon in the header. When people buy Gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying Gems directly, there are three other ways players can gain Gems:\n\n * Win a Challenge that has been set up by another player. Go to Social > Challenges to join some.\n * Subscribe and unlock the ability to buy a certain number of Gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the app without them!",
|
||||
"androidFaqAnswer10": "Gems are purchased with real money by tapping on the Gem icon in the header. When people buy Gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying Gems directly, there are three other ways players can gain Gems:\n\n * Win a Challenge that has been set up by another player. Go to Social > Challenges to join some.\n * Subscribe and unlock the ability to buy a certain number of Gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the app without them!",
|
||||
"iosFaqAnswer10": "Edelsteine können mit echtem Geld gekauft werden, indem man auf das Edelstein-Symbol oben in der Kopfzeile klickt. Wenn Leute Edelsteine kaufen, helfen sie uns, die Webseite zu unterhalten. Wir sind sehr dankbar für ihre Unterstützung!\n\nAlternativ zum direkten Kauf von Edelsteinen gibt es drei andere Möglichkeiten, Edelsteine zu erhalten:\n\n* Gewinne einen Wettbewerb eines anderen Spielers. Gehe zu Soziales > Wettbewerbe um an einigen teilzunehmen.\n* Kaufe ein Abo und schalte damit die Fähigkeit frei, eine bestimmte Anzahl von Edelsteinen pro Monat zu kaufen.\n* Trage mit Deinen Fähigkeiten zum Habitica Projekt bei. Für mehr Informationen sieh im Wiki nach: [An Habitica mitarbeiten](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\nBeachte, dass Gegenstände, die mit Edelsteinen gekauft werden keine statistischen Vorteile bringen, sodass Spieler die Seite auch ohne sie benutzen können!",
|
||||
"androidFaqAnswer10": "Edelsteine können mit echtem Geld gekauft werden, indem man auf das Edelstein-Symbol oben in der Kopfzeile klickt. Wenn Leute Edelsteine kaufen, helfen sie uns, die Webseite zu unterhalten. Wir sind sehr dankbar für ihre Unterstützung!\n\nAlternativ zum direkten Kauf von Edelsteinen gibt es drei andere Möglichkeiten, Edelsteine zu erhalten:\n\n* Gewinne einen Wettbewerb eines anderen Spielers. Gehe zu Soziales > Wettbewerbe um an einigen teilzunehmen.\n* Kaufe ein Abo und schalte damit die Fähigkeit frei, eine bestimmte Anzahl von Edelsteinen pro Monat zu kaufen.\n* Trage mit Deinen Fähigkeiten zum Habitica Projekt bei. Für mehr Informationen sieh im Wiki nach: [An Habitica mitarbeiten](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\nBeachte, dass Gegenstände, die mit Edelsteinen gekauft werden keine statistischen Vorteile bringen, sodass Spieler die Seite auch ohne sie benutzen können!",
|
||||
"webFaqAnswer10": "Edelsteine werden mit echtem Geld gekauft, jedoch können [Abonnenten](https://habitica.com/user/settings/subscription) diese mit Gold erwerben. Wer Habitica abonniert oder Edelsteine kauft, hilft die Seite am Leben zu erhalten. Wir sind sehr dankbar für diese Unterstützung! Neben dem Kauf von Edelsteinen oder eines Abonnements kann ein Spieler auf zwei weitere Arten an Edelsteine kommen:\nGewinne einen Wettbewerb, der von einem anderen Spieler eingerichtet wurde. Gehe hierfür zu Wettbewerbe > Wettbewerbe Entdecken.\nTrage mit Deinen Fähigkeiten zum Projekt Habitica bei. Mehr Details findest Du auf dieser Wiki-Seite [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica). Beachte, dass mit Edelsteinen gekaufte Gegenstände keine statistischen Vorteile bringen, sodass Spieler die Seite auch ohne sie nutzen können!",
|
||||
"faqQuestion11": "Wie melde ich einen Fehler oder schlage ein Feature vor?",
|
||||
"iosFaqAnswer11": "Du kannst Fehler melden, ein Feature vorschlagen oder Feedback geben, indem Du Menü > Über > Einen Fehler melden oder Menü > Über > Feedback senden auswählst! Wir werden alles Mögliche tun, um Dir zu helfen.",
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@
|
|||
"pkQuestion1": "Was inspirierte Habitica? Wie hat es begonnen?",
|
||||
"pkAnswer1": "Wenn du jemals Zeit investiert hast, einen Charakter in einem Spiel aufzuleveln, hast du dich sicher auch schon mal gefragt, wie großartig dein Leben sein würde, wenn du all die Energie in eine Verbesserung deines echten Lebens gesteckt hättest, anstatt in deinen Avatar. Wir haben Habitica gegründet, um genau dieser Frage nachzugehen. <br /> Habitica startete offiziell 2013 mit einem Kickstarter, und die Idee hob richtig ab. Seitdem ist es zu einem riesigen Projekt herangewachsen, unterstützt von unseren großartigen open-source Freiwilligen und unseren großzügigen Benutzern.",
|
||||
"pkQuestion2": "Warum funktioniert Habitica?",
|
||||
"pkAnswer2": "Forming a new habit is hard because people really need that obvious, instant reward. For example, it’s tough to start flossing, because even though our dentist tells us that it's healthier in the long run, in the immediate moment it just makes your gums hurt. <br /> Habitica's gamification adds a sense of instant gratification to everyday objectives by rewarding a tough task with experience, gold… and maybe even a random prize, like a dragon egg! This helps keep people motivated even when the task itself doesn't have an intrinsic reward, and we've seen people turn their lives around as a result. You can check out success stories here: https://habitversary.tumblr.com",
|
||||
"pkAnswer2": "Eine neue Gewohnheit herauszubilden ist schwer, weil wir alle ein starkes Bedürfnis nach offensichtlicher, sofortiger Belohnung haben. Zum Beispiel ist es schwierig anzufangen, Zahnseide zu benutzen - denn obwohl unsere Zahnärztin uns sagt, dass es auf lange Sicht gesünder ist, tut es im augenblicklichen Moment ja nur unserem Zahnfleisch weh. <br /> Habiticas Gamification fügt den alltäglichen Zielen ein Gefühl von sofortiger Belohnung hinzu, indem sie eine schwere Aufgabe mit Erfahrung, Gold... und vielleicht sogar einem zufälligen Preis, wie einem Drachenei, belohnt. Das hilft dabei, motiviert zu bleiben, auch wenn die Aufgabe selbst keine intrinsische Belohnung hat, und wir haben schon dabei zugesehen, wie Leute ihrem Leben dadurch eine neue Richtung gegeben haben. Hier kannst du einige Erfolgsgeschichten finden: https://habitversary.tumblr.com",
|
||||
"pkQuestion3": "Weshalb wurden soziale Funktionen hinzugefügt?",
|
||||
"pkAnswer3": "Social pressure is a huge motivating factor for a lot of people, so we knew that we wanted to have a strong community that would hold each other accountable for their goals and cheer for their successes. Luckily, one of the things that multiplayer video games do best is foster a sense of community among their users! Habitica’s community structure borrows from these types of games; you can form a small Party of close friends, but you can also join a larger, shared-interest groups known as a Guild. Although some users choose to play solo, most decide to form a support network that encourages social accountability through features such as Quests, where Party members pool their productivity to battle monsters together.",
|
||||
"pkQuestion4": "Warum schadet das Überspringen von Aufgaben der Gesundheit Deines Avatars?",
|
||||
|
|
@ -211,8 +211,8 @@
|
|||
"unlockByline2": "Schalte neue, motivierende Werkzeuge frei, wie zum Beispiel Haustiere, zufällige Belohnungen, Zaubersprüche und mehr!",
|
||||
"unlockHeadline": "Je mehr Du tust, desto mehr neue Inhalte kannst Du freigeschalten!",
|
||||
"useUUID": "Benutze UUID / API Token (Für Facebook-Benutzer)",
|
||||
"username": "Username",
|
||||
"emailOrUsername": "Email or Username (case-sensitive)",
|
||||
"username": "Benutzername",
|
||||
"emailOrUsername": "E-Mail-Adresse oder Anmeldename (Groß- und Kleinschreibung beachten)",
|
||||
"watchVideos": "Sehen Sie sich die Videos an",
|
||||
"work": "Arbeit",
|
||||
"zelahQuote": "Mit [Habitica] kann ich mich davon überzeugen, rechtzeitig ins Bett zu gehen, denn wenn ich früh ins Bett gehe, verdiene ich Punkte und wenn ich zu lange aufbleibe, verliere ich Leben.",
|
||||
|
|
@ -220,7 +220,7 @@
|
|||
"reportCommunityIssues": "Melde Community-Probleme",
|
||||
"subscriptionPaymentIssues": "Abonnement- und Zahlungsschwierigkeiten",
|
||||
"generalQuestionsSite": "Generelle Fragen über die Webseite.",
|
||||
"businessInquiries": "Business/Marketing Inquiries",
|
||||
"businessInquiries": "Geschäfts-/Marketing-Anfragen.",
|
||||
"merchandiseInquiries": "Anfragen zu Fan-Artikeln (T-Shirts, Sticker)",
|
||||
"marketingInquiries": "Marketing-/Soziale Netzwerke-Anfragen",
|
||||
"tweet": "Tweet",
|
||||
|
|
@ -259,9 +259,9 @@
|
|||
"altAttrSlack": "Slack",
|
||||
"missingAuthHeaders": "Authentifizierungsheader fehlen.",
|
||||
"missingAuthParams": "Authentifizierungsparameter fehlen.",
|
||||
"missingUsernameEmail": "Missing username or email.",
|
||||
"missingUsernameEmail": "Fehlender Benutzername oder E-Mail.",
|
||||
"missingEmail": "Fehlende E-Mail.",
|
||||
"missingUsername": "Missing username.",
|
||||
"missingUsername": "Fehlender Benutzername.",
|
||||
"missingPassword": "Fehlendes Passwort.",
|
||||
"missingNewPassword": "Fehlendes neues Passwort.",
|
||||
"invalidEmailDomain": "Du kannst E-Mails mit den folgenden Domains nicht registrieren: <%= domains %>",
|
||||
|
|
@ -270,16 +270,16 @@
|
|||
"notAnEmail": "Ungültige E-Mail-Adresse.",
|
||||
"emailTaken": "Diese E-Mail-Adresse wird bereits von einem Konto verwendet.",
|
||||
"newEmailRequired": "Fehlende neue E-Mail-Adresse.",
|
||||
"usernameTime": "It's time to set your username!",
|
||||
"usernameTime": "Es ist Zeit, einen Benutzernamen zu wählen!",
|
||||
"usernameInfo": "Your display name hasn't changed, but your old login name will now become your public username. This username will be used for invitations, @mentions in chat, and messaging.<br><br>If you'd like to learn more about this change, visit the wiki's <a href='http://habitica.wikia.com/wiki/Player_Names' target='_blank'>Player Names</a> page.",
|
||||
"usernameTOSRequirements": "Usernames must conform to our Terms of Service and Community Guidelines. If you didn’t previously set a login name, your username was auto-generated.",
|
||||
"usernameTaken": "Username already taken.",
|
||||
"usernameWrongLength": "Username must be between 1 and 20 characters long.",
|
||||
"displayNameWrongLength": "Display names must be between 1 and 30 characters long.",
|
||||
"usernameBadCharacters": "Usernames can only contain letters a to z, numbers 0 to 9, hyphens, or underscores.",
|
||||
"nameBadWords": "Names cannot include any inappropriate words.",
|
||||
"confirmUsername": "Confirm Username",
|
||||
"usernameConfirmed": "Username Confirmed",
|
||||
"usernameTaken": "Benutzername bereits vergeben.",
|
||||
"usernameWrongLength": "Benutzernamen müssen zwischen 1 und 20 Zeichen haben.",
|
||||
"displayNameWrongLength": "Anzeigenamen müssen zwischen 1 und 30 Zeichen haben.",
|
||||
"usernameBadCharacters": "Benutzernamen dürfen nur Buchstaben von A bis Z, Ziffern von 0 bis 9, Bindstriche oder Unterstriche enthalten.",
|
||||
"nameBadWords": "Namen dürfen keine unangebrachte Sprache enthalten.",
|
||||
"confirmUsername": "Bestätige Deinen Benutzernamen!",
|
||||
"usernameConfirmed": "Benutzername bestätigt",
|
||||
"passwordConfirmationMatch": "Die Passwörter stimmen nicht überein.",
|
||||
"invalidLoginCredentials": "Falscher Benutzername und/oder E-Mail und/oder Passwort.",
|
||||
"passwordResetPage": "Passwort zurücksetzen",
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
"polarBearPup": "Eisbärenjunges",
|
||||
"jackolantern": "Halloweenkürbis",
|
||||
"ghostJackolantern": "Geister-Halloweenkürbis",
|
||||
"glowJackolantern": "Glow-in-the-Dark Jack-O-Lantern",
|
||||
"glowJackolantern": "Fluoreszierender Halloweenkürbis",
|
||||
"seasonalShop": "Jahreszeitenmarkt",
|
||||
"seasonalShopClosedTitle": "<%= linkStart %>Leslie<%= linkEnd %>",
|
||||
"seasonalShopTitle": "<%= linkStart %>Saisonzauberin<%= linkEnd %>",
|
||||
|
|
@ -126,10 +126,10 @@
|
|||
"summer2018LionfishMageSet": "Feuerfisch-Magier (Magier)",
|
||||
"summer2018MerfolkMonarchSet": "Meervolk-Monarch (Heiler)",
|
||||
"summer2018FisherRogueSet": "Fischdieb (Schurke)",
|
||||
"fall2018MinotaurWarriorSet": "Minotaur (Warrior)",
|
||||
"fall2018CandymancerMageSet": "Candymancer (Mage)",
|
||||
"fall2018CarnivorousPlantSet": "Carnivorous Plant (Healer)",
|
||||
"fall2018AlterEgoSet": "Alter Ego (Rogue)",
|
||||
"fall2018MinotaurWarriorSet": "Minotaurus (Krieger)",
|
||||
"fall2018CandymancerMageSet": "Süssigkeitenbeschwörer (Magier)",
|
||||
"fall2018CarnivorousPlantSet": "Fleischfressende Pflanze (Heiler)",
|
||||
"fall2018AlterEgoSet": "Alter Ego (Schurke)",
|
||||
"eventAvailability": "Zum Kauf verfügbar bis zum <%= date(locale) %>.",
|
||||
"dateEndMarch": "30. April",
|
||||
"dateEndApril": "19. April",
|
||||
|
|
|
|||
|
|
@ -17,13 +17,13 @@
|
|||
"questGryphonDropGryphonEgg": "Greif (Ei)",
|
||||
"questGryphonUnlockText": "Ermöglicht den Kauf von Greifeneiern auf dem Marktplatz",
|
||||
"questHedgehogText": "Das Igelmonster",
|
||||
"questHedgehogNotes": "Hedgehogs are a funny group of animals. They are some of the most affectionate pets a Habiteer could own. But rumor has it, if you feed them milk after midnight, they grow quite irritable. And fifty times their size. And <strong>InspectorCaracal</strong> did just that. Oops.",
|
||||
"questHedgehogNotes": "Igel gehören einer kuriosen Gruppe von Tieren an. Zwar sind sie die liebevollsten Haustiere, die sich ein Habiticaner wünschen kann, aber es gibt ein Gerücht wonach sie, wenn man sie nach Mitternacht mit Milch füttert, ein wenig gereizt werden. Und fünfzig mal größer. Und <strong>InspectorCaracal</strong> hat genau das gemacht - Hoppla.",
|
||||
"questHedgehogCompletion": "Eure Gruppe hat das Igelweibchen beruhigt! Es hoppelt zurück zu seinen Eiern, nachdem es auf seine normale Größe geschrumpft ist. Quietschend kehrt es mit einigen Eiern zurück und stupst sie vorsichtig in eure Richtung. Hoffentlich mögen Igel Milch!",
|
||||
"questHedgehogBoss": "Igelmonster",
|
||||
"questHedgehogDropHedgehogEgg": "Igel (Ei)",
|
||||
"questHedgehogUnlockText": "Ermöglicht den Kauf von Igeleiern auf dem Marktplatz",
|
||||
"questGhostStagText": "Die Seele des Frühlings",
|
||||
"questGhostStagNotes": "Ahh, Spring. The time of year when color once again begins to fill the landscape. Gone are the cold, snowy mounds of winter. Where frost once stood, vibrant plant life takes its place. Luscious green leaves fill in the trees, grass returns to its former vivid hue, a rainbow of flowers rise along the plains, and a white mystical fog covers the land! ... Wait. Mystical fog? \"Oh no,\" <strong>InspectorCaracal</strong> says apprehensively, \"It would appear that some kind of spirit is the cause of this fog. Oh, and it is charging right at you.\"",
|
||||
"questGhostStagNotes": "Ahh, Frühling. Die Zeit des Jahres, wenn die Landschaft wieder Farbe annimmt. Hinfort sind die Kälte, Schneeberge und Winter. Wo einst Frost war blüht jetzt neues Leben. Die Bäume schmücken sich mit sattem Grün, das Gras kehrt zu seiner gesunden Farbe zurück, ein wahrer Regenbogen von Blumen breitet sich über die Wiesen und Felder und ein mystischer weißer Nebel legt sich übers Land! ... Moment ... Mystischer Nebel? \"Oh nein\", lässt <strong>InspectorCaracal</strong> verlauten, \"Es scheint als wäre eine Art Geist die Ursache für diesen Nebel. Oh, und derselbe scheint gerade auf Dich loszugehen.\"",
|
||||
"questGhostStagCompletion": "Der Geist, scheinbar unverwundet, senkt seine Nase bis zur Erde hinab. Eine ruhige Stimme umfängt Deine Gruppe. \"Ich entschuldige mich für mein Benehmen. Ich bin gerade erst aus dem Winterschlaf erwacht und es scheint, ich bin noch etwas verwirrt. Bitte nehmt dieses Zeichen meiner Entschuldigung an.\" Ein paar Eier materialisieren sich vor dem Geist im Gras. Ohne ein weiteres Wort zu sagen, verschwindet der Geist in den Wald, eine Spur aus Blumen hinterlassend.",
|
||||
"questGhostStagBoss": "Geisterhirsch",
|
||||
"questGhostStagDropDeerEgg": "Hirsch (Ei)",
|
||||
|
|
@ -62,10 +62,10 @@
|
|||
"questVice1Text": "Laster, Teil 1: Befreie Dich vom Einfluss des Drachen",
|
||||
"questVice1Notes": "<p>Man sagt, dass ein schreckliches Unheil in den Höhlen von Mt. Habitica lauert. Ein Monster, dessen bloße Anwesenheit den Willen der stärksten Helden des Landes so verdreht, dass sie von ihren schlechten Gewohnheiten und ihrer Faulheit überkommen werden. Diese Bestie ist ein gewaltiger, aus Schatten bestehender Drache: Vice, der heimtückische Schatten-Wyrm. Mutige Habiticaner, erhebt Euch und bezwingt diese verdorbene Bestie ein für alle Mal, aber nur, wenn ihr daran glaubt, gegen seine immense Kraft bestehen zu können. </p><h3>Laster Teil 1: </h3><p> Wie kannst Du erwarten gegen ein Biest zu kämpfen, wenn es Dich bereits unter Kontrolle hat? Falle Deiner Faulheit und Deinen Lastern nicht zum Opfer! Arbeite hart gegen den finsteren Einfluss des Drachens und vertreibe seine Macht über Dich!</p>",
|
||||
"questVice1Boss": "Lasters Schatten",
|
||||
"questVice1Completion": "With Vice's influence over you dispelled, you feel a surge of strength you didn't know you had return to you. Congratulations! But a more frightening foe awaits...",
|
||||
"questVice1Completion": "Mit dem abgeschüttelten Einfluss des Lasters spürt Ihr eine Kraft zurückkehren die Ihr lange vergeßen hattet. Gratulation! Jedoch erwartet Euch ein noch schrecklicherer Gegner...",
|
||||
"questVice1DropVice2Quest": "Laster Teil 2 (Schriftrolle)",
|
||||
"questVice2Text": "Laster, Teil 2: Finde den Hort des Wyrmes",
|
||||
"questVice2Notes": "Confident in yourselves and your ability to withstand the influence of Vice the Shadow Wyrm, your Party makes its way to Mt. Habitica. You approach the entrance to the mountain's caverns and pause. Swells of shadows, almost like fog, wisp out from the opening. It is near impossible to see anything in front of you. The light from your lanterns seem to end abruptly where the shadows begin. It is said that only magical light can pierce the dragon's infernal haze. If you can find enough light crystals, you could make your way to the dragon.",
|
||||
"questVice2Notes": "Vertrauend auf Eure Fähigkeit dem Einfluss von Laster, dem schattigen Wyrm zu widerstehen macht Ihr Euch auf den Weg zu Mount Habitica. Ihr nähert Euch dem Eingang der Höhle und stoppt. Ein Schwall von Schatten, nebelgleich, quillt aus der Felsöffnung. Es ist fast unmöglich irgendetwas zu sehen. Das Licht Eurer Laterne scheint auf eine Wand von Schatten zu treffen. Es heißt, dass nur magisches Licht den höllischen Dunstkreis des Drachen durchdringen kann. Nur wenn Ihr genügend Lichtkristalle findet, könnt ihr es bis zu dem Drachen selbst schaffen.",
|
||||
"questVice2CollectLightCrystal": "Lichtkristalle",
|
||||
"questVice2Completion": "Als Du den letzten Kristall hochhebst, werden die Schatten gebannt und der Weg nach vorn ist frei. Mit beflügeltem Herzschlag betrittst Du die Höhle.",
|
||||
"questVice2DropVice3Quest": "Laster Teil 3 (Schriftrolle)",
|
||||
|
|
@ -83,12 +83,12 @@
|
|||
"questMoonstone1Completion": "At last, you manage to pull the final moonstone from the swampy sludge. It’s time to go fashion your collection into a weapon that can finally defeat Recidivate!",
|
||||
"questMoonstone1DropMoonstone2Quest": "Recidivate, Teil 2: Die Totenbeschwörerin Recidivate (Schriftrolle)",
|
||||
"questMoonstone2Text": "Recidivate, Teil 2: Die Totenbeschwörerin Recidivate",
|
||||
"questMoonstone2Notes": "The brave weaponsmith @InspectorCaracal helps you fashion the enchanted moonstones into a chain. You’re ready to confront Recidivate at last, but as you enter the Swamps of Stagnation, a terrible chill sweeps over you.<br><br>Rotting breath whispers in your ear. \"Back again? How delightful...\" You spin and lunge, and under the light of the moonstone chain, your weapon strikes solid flesh. \"You may have bound me to the world once more,\" Recidivate snarls, \"but now it is time for you to leave it!\"",
|
||||
"questMoonstone2Notes": "Der tapfere Waffenschmied @InspectorCaracal hilft Dir, aus den verzauberten Mondsteinen eine Kette zu formen. Du bist endlich bereit, Recidivate entgegenzutreten, aber kaum, dass Du die Sümpfe der Stagnation betrittst, läuft Dir ein fürchterlicher Schauer über den Rücken.<br><br> Verrottetes Fleisch flüstert in Dein Ohr. \"Wieder zurückgekehrt? Wie entzückend ... \" Du drehst Dich und schlägst zu, und im Licht der Mondsteinkette trifft Deine Waffe auf festes Fleisch. \"Du magst mich einmal mehr an diese Welt gebunden haben,\" knurrt Recidivate, \"aber jetzt ist Deine Zeit gekommen, sie zu verlassen!\"",
|
||||
"questMoonstone2Boss": "Die Totenbeschwörerin",
|
||||
"questMoonstone2Completion": "Recidivate staggers backwards under your final blow, and for a moment, your heart brightens – but then she throws back her head and lets out a horrible laugh. What’s happening?",
|
||||
"questMoonstone2DropMoonstone3Quest": "Recidivate, Teil 3: Recidivate verwandelt (Schriftrolle)",
|
||||
"questMoonstone3Text": "Recidivate, Teil 3: Recidivate verwandelt",
|
||||
"questMoonstone3Notes": "Laughing wickedly, Recidivate crumples to the ground, and you strike at her again with the moonstone chain. To your horror, Recidivate seizes the gems, eyes burning with triumph.<br><br>\"Foolish creature of flesh!\" she shouts. \"These moonstones will restore me to a physical form, true, but not as you imagined. As the full moon waxes from the dark, so too does my power flourish, and from the shadows I summon the specter of your most feared foe!\"<br><br>A sickly green fog rises from the swamp, and Recidivate’s body writhes and contorts into a shape that fills you with dread – the undead body of Vice, horribly reborn.",
|
||||
"questMoonstone3Notes": "Bösartig lachend fällt Recidivate zu Boden und Du schlägst mit der Mondsteinkette nach ihr. Zu deinem Entsetzen reißt Recidivate die Steine an sich und ihre Augen leuchten vor Triumph. <br><br>\"Törichte Kreatur des Fleisches!\", schreit sie. \"Es ist wahr, die Mondsteine werden mich wieder in eine körperliche Form zurückversetzen, aber anders, als Du dir vorgestellt hast. Wenn der volle Mond zunimmt, wächst auch meine Macht, und aus den Schatten rufe ich deinen gefürchtetsten Feind hervor!\" <br><br>Ein übler grüner Nebel steigt aus dem Sumpf auf und Recidivate's Körper windet und dreht sich und verzerrt sich in eine Form, die dich mit Schrecken erfüllt - der untote Körper von Laster, wiederauferstanden.",
|
||||
"questMoonstone3Completion": "Du atmest schwer und Schweiß brennt in Deinen Augen, als der untote Wyrm zusammenbricht und Recidivates Überreste sich in einen dünnen, grauen Nebel auflösen, den eine frische Brise bald zerstreut. In der Ferne hörst Du die Schlachtrufe von Habiticanern, die ihre schlechten Gewohnheiten ein für allemal besiegt haben. <br><br>@Baconsaur, der Herr aller Bestien, landet mit seinem Greif neben Dir. \"Ich habe das Ende Deines Kampfes vom Himmel aus beobachtet und es hat mich sehr berührt. Bitte nimm diese verzauberte Tunika – Deine Tapferkeit zeugt von einem edlen Herzen und ich glaube, dass Du dazu bestimmt bist, sie zu tragen.\"",
|
||||
"questMoonstone3Boss": "Nekro-Laster",
|
||||
"questMoonstone3DropRottenMeat": "Verrottetes Fleisch (Futter)",
|
||||
|
|
@ -295,7 +295,7 @@
|
|||
"questUnicornDropUnicornEgg": "Einhorn (Ei)",
|
||||
"questUnicornUnlockText": "Ermöglicht den Kauf von Einhorneier auf dem Marktplatz",
|
||||
"questSabretoothText": "Der Säbelzahntiger",
|
||||
"questSabretoothNotes": "A roaring monster is terrorizing Habitica! The creature stalks through the wilds and woods, then bursts forth to attack before vanishing again. It's been hunting innocent pandas and frightening the flying pigs into fleeing their pens to roost in the trees. @InspectorCaracal and @icefelis explain that the Zombie Sabre Cat was set free while they were excavating in the ancient, untouched ice-fields of the Stoïkalm Steppes. \"It was perfectly friendly at first – I don't know what happened. Please, you have to help us recapture it! Only a champion of Habitica can subdue this prehistoric beast!\"",
|
||||
"questSabretoothNotes": "Ein brüllendes Monster terrorisiert Habitica! Die Kreatur pirscht durch Wildnis und Wälder, greift blitzschnell an und verschwindet so schnell wie sie gekommen ist wieder. Sie hat unschuldige Pandas gejagt und die Flugkeiler erschreckt, sodass sie geflohen sind und sich in den Bäumen verstecken. @InspectorCaracal und @icefelis erklären, dass der Zombie-Säbelzahntiger freigelassen wurde, als sie in den alten, unberührten Eisfeldern der Stoistillen Steppe gruben. \"Er war zuerst sehr freundlich – Ich weiß nicht, was passiert ist. Bitte hilf uns, ihn wieder einzufangen! Nur ein Meister von Habitica kann dieses prähistorische Biest bändigen!\"",
|
||||
"questSabretoothCompletion": "Nach einem langen und ermüdenden Kampf, ringst Du den Zombie-Säbelzahntiger zu Boden. Als Du endlich in der Lage bist heranzutreten, bemerkst Du ein scheußliches Loch in einem seiner Zähne. Nun erkennst Du den wahren Grund für den Zorn des Tigers, füllst das Loch mit @Fandekasp und rätst allen, ihre Freunde in Zukunft nicht länger mit Süßigkeiten zu füttern. Der Säbelzahntiger blüht auf und aus Dankbarkeit senden Dir seine Dompteure eine großzügige Belohnung - einen Haufen Säbelzahntigereier!",
|
||||
"questSabretoothBoss": "Zombie-Säbelzahntiger",
|
||||
"questSabretoothDropSabretoothEgg": "Säbelzahntiger (Ei)",
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@
|
|||
"dailyDueDefaultView": "Setze Standardansicht der täglichen Aufgaben auf \"Fällig\"",
|
||||
"dailyDueDefaultViewPop": "Mit dieser Option änderst Du die Standardansicht der täglichen Aufgaben zu \"Fällig\" statt zu \"Alle\"",
|
||||
"reverseChatOrder": "Zeige die Chat-Nachrichten in umgekehrter Reihenfolge",
|
||||
"startAdvCollapsed": "Advanced Settings in tasks start collapsed",
|
||||
"startAdvCollapsedPop": "With this option set, Advanced Settings will be hidden when you first open a task for editing.",
|
||||
"startAdvCollapsed": "Erweiterte Optionen standardmäßig verdecken",
|
||||
"startAdvCollapsedPop": "Mit dieser Option werden erweiterte Optionen ausgeblendet, wenn Du eine Aufgabe das erste mal bearbeitest.",
|
||||
"dontShowAgain": "Nicht mehr anzeigen",
|
||||
"suppressLevelUpModal": "Beim Levelaufstieg kein Popup anzeigen",
|
||||
"suppressHatchPetModal": "Beim Schlüpfen eines Haustiers kein Popup anzeigen",
|
||||
|
|
@ -54,13 +54,13 @@
|
|||
"misc": "Verschiedenes",
|
||||
"showHeader": "Header anzeigen",
|
||||
"changePass": "Passwort ändern",
|
||||
"changeUsername": "Change Username",
|
||||
"changeUsername": "Benutzername ändern",
|
||||
"changeEmail": "E-Mail-Adresse ändern",
|
||||
"newEmail": "Neue E-Mail-Adresse",
|
||||
"oldPass": "Altes Passwort",
|
||||
"newPass": "Neues Passwort",
|
||||
"confirmPass": "Neues Passwort bestätigen",
|
||||
"newUsername": "New Username",
|
||||
"newUsername": "Neuer Benutzername",
|
||||
"dangerZone": "Gefahrenzone",
|
||||
"resetText1": "WARNUNG! Es werden große Teile Deines Accounts zurückgesetzt. Wir raten dringend davon ab. Jedoch finden einige Spieler diese Funktion sinnvoll, um nach einem anfänglichen Testen der Seite neu beginnen zu können.",
|
||||
"resetText2": "Du verlierst alle Deine Level, Gold- und Erfahrungspunkte. Alle Deine Aufgaben (außer Wettbewerbsaufgaben) werden permanent gelöscht inklusive ihrer historischen Daten. Du verlierst Deine gesamte Ausrüstung, kannst sie aber zurück kaufen, inklusive der limitierten Ausgaben oder der mysteriösen Abonnenten-Gegenstände, die Du bereits besitzt (allerdings musst Du für klassenspezifische Ausrüstung der richtigen Klasse angehören, um sie zurückzukaufen). Du behältst Deine aktuelle Klasse und Deine Haus- und Reittiere. Möglicherweise möchtest Du lieber eine Sphäre der Wiedergeburt nutzen, die eine weit sicherere Option darstellt und Deine Aufgaben und Ausrüstung beibehält.",
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
"resetComplete": "Zurückgesetzt!",
|
||||
"fixValues": "Werte reparieren",
|
||||
"fixValuesText1": "Wenn Du Opfer eines Bugs geworden bist oder einen Fehler gemacht hast, der Deinen Charakter unfair beeinflusst hat (Schaden, den Du nicht hättest nehmen dürfen, Gold das Du nicht verdient hast, usw.), dann kannst Du das hier manuell korrigieren. Ja, das eröffnet die Möglichkeit zu cheaten: Verwende dieses Feature mit Bedacht, oder Du verdirbst Dir das Ausbilden Deiner Gewohnheiten! ",
|
||||
"fixValuesText2": "Note that you cannot restore Streaks on individual tasks here. To do that, edit the Daily and go to Advanced Settings, where you will find a Restore Streak field.",
|
||||
"fixValuesText2": "Beachte, dass Du hier keine Strähnen einzelner Aufgaben wiederherstellen kannst. Um das zu tun, bearbeite eine tägliche Aufgabe unter erweiterte Optionen. Dort wirst Du ein \"Strähne wiederherstellen\"-Feld finden.",
|
||||
"disabledWinterEvent": "Während des Winter-Wunderland-Events Teil 4 geschlossen (Weil die Belohnungen mit Gold erworben werden).",
|
||||
"fix21Streaks": "21-Tage-Strähnen",
|
||||
"discardChanges": "Änderungen verwerfen",
|
||||
|
|
@ -95,15 +95,15 @@
|
|||
"invalidPasswordResetCode": "Der übermittelte Passwort-Reset-Code ist ungültig oder abgelaufen.",
|
||||
"passwordChangeSuccess": "Dein Passwort wurde erfolgreich geändert. Du kannst das Passwort jetzt nutzen, um auf Deinen Account zuzugreifen.",
|
||||
"passwordSuccess": "Das Passwort wurde erfolgreich geändert",
|
||||
"usernameSuccess": "Username successfully changed",
|
||||
"displayNameSuccess": "Display name successfully changed",
|
||||
"usernameSuccess": "Benutzername erfolgreich geändert",
|
||||
"displayNameSuccess": "Anzeigename erfolgreich geändert",
|
||||
"emailSuccess": "Die E-Mail-Adresse wurde erfolgreich geändert",
|
||||
"detachSocial": "<%= network %> trennen",
|
||||
"detachedSocial": "Erfolgreich die Verbindung zu <%= network %> getrennt",
|
||||
"addedLocalAuth": "Lokale Authentifizierung erfolgreich hinzugefügt",
|
||||
"data": "Daten",
|
||||
"exportData": "Daten exportieren",
|
||||
"usernameOrEmail": "Username or Email",
|
||||
"usernameOrEmail": "Benutzername oder E-Mail-Adresse",
|
||||
"email": "E-Mail",
|
||||
"registerWithSocial": "Mit <%= network %> verbinden",
|
||||
"registeredWithSocial": "Mit <%= network %> verbunden",
|
||||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Erinnerungen zur Anmeldung, um Aufgaben zu komplettieren und Preise zu erhalten",
|
||||
"weeklyRecaps": "Zusammenfassung Deiner Account-Aktivitäten in dieser Woche (Notiz: Ist zurzeit wegen Performance-Problemen deaktiviert. Wir hoffen, dass es bald wieder zurück ist und werden demnächst wieder E-Mails verschicken!)",
|
||||
"onboarding": "Hilfe, um dein Habitica-Konto einzurichten",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Dein Quest hat begonnen",
|
||||
"invitedQuest": "Zu einem Quest eingeladen",
|
||||
"kickedGroup": "Aus Gruppe entfernt.",
|
||||
|
|
@ -151,11 +152,12 @@
|
|||
"displayInviteToPartyWhenPartyIs1": "Zeige \"In Gruppe einladen\"-Schaltfläche an, wenn die Gruppe nur 1 Mitglied hat.",
|
||||
"saveCustomDayStart": "Speichere den Tageswechsel",
|
||||
"registration": "Registrierung",
|
||||
"addLocalAuth": "Add Email and Password Login",
|
||||
"addLocalAuth": "E-Mail- und Passwort-Login hinzufügen",
|
||||
"generateCodes": "Erstelle Codes",
|
||||
"generate": "Erstelle",
|
||||
"getCodes": "Codes erhalten!",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Aktiviert",
|
||||
"webhookURL": "Webhook-URL",
|
||||
"invalidUrl": "Ungültige Url",
|
||||
|
|
@ -184,23 +186,23 @@
|
|||
"mysticHourglassesTooltip": "Mystische Sanduhren",
|
||||
"paypal": "PayPal",
|
||||
"amazonPayments": "Amazon-Zahlungen",
|
||||
"amazonPaymentsRecurring": "Ticking the checkbox below is necessary for your subscription to be created. It allows your Amazon account to be used for ongoing payments for <strong>this</strong> subscription. It will not cause your Amazon account to be automatically used for any future purchases.",
|
||||
"amazonPaymentsRecurring": "Die untenstehende Checkbox muss abgehakt werden, um Dein Abo zu erstellen. Dies ermöglicht, Deinen Amazon-Account für wiederkehrende Zahlungen für <strong>dieses</strong> Abo zu benutzen. Es führt nicht dazu, dass Dein Amazon-Account automatisch auch für zukünftige Einkäufe benutzt wird.",
|
||||
"timezone": "Zeitzone",
|
||||
"timezoneUTC": "Habitica verwendet die Zeitzone, welche an Deinem PC eingestellt ist: <strong><%= utc %></strong>",
|
||||
"timezoneInfo": "Wenn diese Zeitzone falsch ist, lade die Seite mit Hilfe Deines Browsers erneut, um sicherzustellen, dass Habitica die aktuellen Informationen darstellt. Ist diese immernoch falsch, passe die Zeitzone Deines PCs an und lade die Seite erneut.<br><br> <strong>Wenn Du Habitica auf anderen PCs oder Mobilgeräten verwendest, muss die Zeitzone auf allen übereinstimmen.</strong> Wenn Deine täglichen Aufgaben zur falschen Zeit zurückgesetzt werden, wiederhole diese Prüfung auf allen anderen PCs und in einem Browser Deiner Mobilgeräte.",
|
||||
"push": "Push",
|
||||
"about": "Über",
|
||||
"setUsernameNotificationTitle": "Confirm your username!",
|
||||
"setUsernameNotificationBody": "We will be transitioning login names to unique, public usernames soon. This username will be used for invitations, @mentions in chat, and messaging.",
|
||||
"usernameIssueSlur": "Usernames may not contain inappropriate language.",
|
||||
"usernameIssueForbidden": "Usernames may not contain restricted words.",
|
||||
"usernameIssueLength": "Usernames must be between 1 and 20 characters.",
|
||||
"usernameIssueInvalidCharacters": "Usernames can only contain letters a to z, numbers 0 to 9, hyphens, or underscores.",
|
||||
"currentUsername": "Current username:",
|
||||
"displaynameIssueLength": "Display Names must be between 1 and 30 characters.",
|
||||
"displaynameIssueSlur": "Display Names may not contain inappropriate language",
|
||||
"goToSettings": "Go to Settings",
|
||||
"usernameVerifiedConfirmation": "Your username, <%= username %>, is confirmed!",
|
||||
"usernameNotVerified": "Please confirm your username.",
|
||||
"changeUsernameDisclaimer": "We will be transitioning login names to unique, public usernames soon. This username will be used for invitations, @mentions in chat, and messaging."
|
||||
"setUsernameNotificationTitle": "Bestätige Deinen Benutzernamen!",
|
||||
"setUsernameNotificationBody": "Wir werden bald die Login-Namen zu eindeutigen, öffentlichen Benutzernamen umstellen. Dieser Benutzername wird für Einladungen, @Erwähnungen im Chat und Nachrichten verwendet werden.",
|
||||
"usernameIssueSlur": "Benutzernamen dürfen keine unangebrachte Sprache enthalten.",
|
||||
"usernameIssueForbidden": "Benutzernamen dürfen keine verbotenen Wörter enthalten.",
|
||||
"usernameIssueLength": "Benutzernamen müssen zwischen 1 und 20 Zeichen haben.",
|
||||
"usernameIssueInvalidCharacters": "Benutzernamen dürfen nur Buchstaben von A bis Z, Ziffern von 0 bis 9, Bindstriche oder Unterstriche enthalten.",
|
||||
"currentUsername": "Aktueller Benutzername:",
|
||||
"displaynameIssueLength": "Anzeigenamen müssen zwischen 1 und 30 Zeichen haben.",
|
||||
"displaynameIssueSlur": "Anzeigenamen dürfen keine unangebrachte Sprache enthalten.",
|
||||
"goToSettings": "Gehe zu Einstellungen",
|
||||
"usernameVerifiedConfirmation": "Dein Benutzername, <%= username %>, ist bestätigt!",
|
||||
"usernameNotVerified": "Bitte bestätige Deinen Benutzernamen.",
|
||||
"changeUsernameDisclaimer": "Wir werden bald die Login-Namen zu eindeutigen, öffentlichen Benutzernamen umstellen. Dieser Benutzername wird für Einladungen, @Erwähnungen im Chat und Nachrichten verwendet werden."
|
||||
}
|
||||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
|
||||
"weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)",
|
||||
"onboarding": "Guidance with setting up your Habitica account",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Your Quest has Begun",
|
||||
"invitedQuest": "Invited to Quest",
|
||||
"kickedGroup": "Kicked from group",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
|
||||
"weeklyRecaps": "Summaries o' ye account activity in th' past week (Note: this be currently disabled due t' performance issues, but we hope t' have this back up an' sendin' e-mails again soon!)",
|
||||
"onboarding": "Guidance with setting up your Habitica account",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Yer Quest has Begun",
|
||||
"invitedQuest": "Invited t' Quest",
|
||||
"kickedGroup": "Kicked from group",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generate",
|
||||
"getCodes": "Get Codes",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Enabled",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "invalid url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
|
||||
"weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)",
|
||||
"onboarding": "Guidance with setting up your Habitica account",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Your Quest has Begun",
|
||||
"invitedQuest": "Invited to Quest",
|
||||
"kickedGroup": "Kicked from group",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generate",
|
||||
"getCodes": "Get Codes",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Enabled",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "invalid URL",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Recordatorios para entrar en Habitica, completar tareas y recibir premios",
|
||||
"weeklyRecaps": "Resumen de la actividad de tu cuenta durante la última semana. (Nota: Esta función está deshabilitada en estos momentos por problemas de rendimiento, pero esperamos poder restablecerla y enviar correos de nuevo muy pronto).",
|
||||
"onboarding": "Pautas para configurar tu cuenta de Habitica",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Tu Misión ha Comenzado",
|
||||
"invitedQuest": "Invitado a Misión",
|
||||
"kickedGroup": "Expulsado del grupo",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generar",
|
||||
"getCodes": "Obtener Códigos",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Habilitado",
|
||||
"webhookURL": "URL del Webhook",
|
||||
"invalidUrl": "Url no válida",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Recordatorios para ingresar a completar tareas y recibir premios",
|
||||
"weeklyRecaps": "Resúmenes de la actividad de tu cuenta en la última semana (Nota: esta función está deshabilitada en este momento debido a problemas con el funcionamiento, ¡pero esperamos tenerla de vuelta pronto!)",
|
||||
"onboarding": "Guía para configurar tu cuenta de Habitica",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Tu Misión ha comenzado",
|
||||
"invitedQuest": "Invitado a la Misión",
|
||||
"kickedGroup": "Expulsado del grupo",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generar",
|
||||
"getCodes": "Obtener códigos",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Activado",
|
||||
"webhookURL": "URL del Webhook",
|
||||
"invalidUrl": "Url invalida",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Rappels de connexion pour terminer des tâches et recevoir des récompenses",
|
||||
"weeklyRecaps": "Résumés de l'activité de votre compte durant la semaine passée (N.B. : ceci est actuellement désactivé suite à des problèmes de performance, mais nous espérons pouvoir rétablir bientôt l'envoi des courriels !)",
|
||||
"onboarding": "Aide à la configuration de votre compte Habitica",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Votre quête a commencé",
|
||||
"invitedQuest": "Invitation à une quête",
|
||||
"kickedGroup": "Éjecté·e du groupe",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Générer",
|
||||
"getCodes": "Obtenir les Codes",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Activé",
|
||||
"webhookURL": "URL du webhook",
|
||||
"invalidUrl": "URL invalide",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
|
||||
"weeklyRecaps": "סיכומים של פעילות החשבון שלכם בשבוע האחרון (שימו לב: כרגע אינו מאופשר בעקבות בעיות ביצועים, אך בכוונתנו להחזיר מיילים אלו בקרוב!)",
|
||||
"onboarding": "Guidance with setting up your Habitica account",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "ההרפתקה שלך החלה",
|
||||
"invitedQuest": "הוזמנת להרפתקה",
|
||||
"kickedGroup": "הוצאתם מקבוצה",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "ייצר",
|
||||
"getCodes": "קבלו קודים",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "מאופשר",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "URL לא תקין",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Emlékeztető hogy jelentkezz be és végezd el feladataidat jutalmakért",
|
||||
"weeklyRecaps": "Összefoglaló az elmúlt heti aktivitásodról (Megjegyzés: ez a funkció jelenleg le van tiltva teljesítménybeli problémák miatt, de reméljük hogy hamarosan újra tudjuk indítani!)",
|
||||
"onboarding": "Segítség fiókod felállításához",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "A küldetésed elkezdődött",
|
||||
"invitedQuest": "Meghívva egy küldetésre",
|
||||
"kickedGroup": "Kirúgtak a csoportból",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generálás",
|
||||
"getCodes": "Kódok megszerzése",
|
||||
"webhooks": "Webkampók",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Engedélyezve",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "érvénytelen url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Pengingat untuk masuk untuk menyelesaikan tugas dan menerima hadiah",
|
||||
"weeklyRecaps": "Ringkasan aktivitas akun kamu seminggu terakhir (Catatan: fitur ini sedang dinonaktifkan karena isu performa, tapi kami harap dapat menyelesaikannya dan mengirim email kembali secepatnya!)",
|
||||
"onboarding": "Panduan dalam menyetel akun Habitica kamu",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Misimu Telah Dimulai",
|
||||
"invitedQuest": "Diundang untuk mengikuti Misi",
|
||||
"kickedGroup": "Dikeluarkan dari grup",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Buat",
|
||||
"getCodes": "Dapatkan Kode",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Diaktifkan",
|
||||
"webhookURL": "URL Webhook",
|
||||
"invalidUrl": "url tidak valid",
|
||||
|
|
|
|||
|
|
@ -389,10 +389,10 @@
|
|||
"backgroundDungeonText": "Sotterraneo",
|
||||
"backgroundDungeonNotes": "Salvando i prigionieri da un Sotterraneo spaventoso",
|
||||
"backgrounds112018": "SET 54: Released November 2018",
|
||||
"backgroundBackAlleyText": "Back Alley",
|
||||
"backgroundBackAlleyNotes": "Look shady loitering in a Back Alley.",
|
||||
"backgroundGlowingMushroomCaveText": "Glowing Mushroom Cave",
|
||||
"backgroundGlowingMushroomCaveNotes": "Stare in awe at a Glowing Mushroom Cave.",
|
||||
"backgroundCozyBedroomText": "Cozy Bedroom",
|
||||
"backgroundCozyBedroomNotes": "Curl up in a Cozy Bedroom."
|
||||
"backgroundBackAlleyText": "Vicolo",
|
||||
"backgroundBackAlleyNotes": "Sii sospetto gironzolando in un Vicolo.",
|
||||
"backgroundGlowingMushroomCaveText": "Grotta Funghesca Lucente",
|
||||
"backgroundGlowingMushroomCaveNotes": "Rimira con ammirazione una Grotta Funghesca Lucente.",
|
||||
"backgroundCozyBedroomText": "Stanza Da Letto Accogliente",
|
||||
"backgroundCozyBedroomNotes": "Accoccolati in una Stanza Da Letto Accogliente."
|
||||
}
|
||||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Promemoria per l'accesso, per completare attività e ricevere premi",
|
||||
"weeklyRecaps": "Riassunto delle attività del tuo account nell'ultima settimana (Nota: questa funzionalità al momento è stata disattivata a causa di problemi di prestazioni, ma speriamo di riattivarla e fare in modo che invii nuovamente e-mail al più presto!)",
|
||||
"onboarding": "Guida per iniziare con il tuo account su Habitica",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "La tua missione è cominciata",
|
||||
"invitedQuest": "Invito ad unirti ad una missione",
|
||||
"kickedGroup": "Espulsione da un gruppo",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Genera",
|
||||
"getCodes": "Ottieni codici",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Abilitato",
|
||||
"webhookURL": "URL Webhook",
|
||||
"invalidUrl": "URL non valido",
|
||||
|
|
|
|||
|
|
@ -388,11 +388,11 @@
|
|||
"backgroundCreepyCastleNotes": "気味の悪い城にあえて近づいてみましょう。",
|
||||
"backgroundDungeonText": "地下牢",
|
||||
"backgroundDungeonNotes": "不気味な地下牢に囚われた人々を救い出しましょう。",
|
||||
"backgrounds112018": "SET 54: Released November 2018",
|
||||
"backgroundBackAlleyText": "Back Alley",
|
||||
"backgroundBackAlleyNotes": "Look shady loitering in a Back Alley.",
|
||||
"backgroundGlowingMushroomCaveText": "Glowing Mushroom Cave",
|
||||
"backgroundGlowingMushroomCaveNotes": "Stare in awe at a Glowing Mushroom Cave.",
|
||||
"backgroundCozyBedroomText": "Cozy Bedroom",
|
||||
"backgroundCozyBedroomNotes": "Curl up in a Cozy Bedroom."
|
||||
"backgrounds112018": "セット54: 2018年11月リリース",
|
||||
"backgroundBackAlleyText": "裏通り",
|
||||
"backgroundBackAlleyNotes": "裏通りで怪しげな徘徊を眺めましょう",
|
||||
"backgroundGlowingMushroomCaveText": "輝くキノコの洞窟",
|
||||
"backgroundGlowingMushroomCaveNotes": "驚嘆の目で輝くキノコの洞窟を見ましょう",
|
||||
"backgroundCozyBedroomText": "快適な寝室",
|
||||
"backgroundCozyBedroomNotes": "快適な寝室で丸くなって寝ましょう"
|
||||
}
|
||||
|
|
@ -784,8 +784,8 @@
|
|||
"armorArmoireCoverallsOfBookbindingNotes": "カバーオールのセットには、あなたが必要なものが全部あります。ゴーグル、小銭、黄金のリング… 全てを入れるポケットも含めてね。体質が <%= con %> 、知覚が <%= per %> 上がります。ラッキー宝箱 : 製本屋さんセット ( 4 個中 2 個目のアイテム)。",
|
||||
"armorArmoireRobeOfSpadesText": "スペードのローブ",
|
||||
"armorArmoireRobeOfSpadesNotes": "この豪華なローブには、秘密のポケットが隠れています。財宝でも武器でも――あなたのお好みで隠せますよ! 力が <%= str %> 上がります。ラッキー宝箱 : スペードのエースセット ( 2 個中 3 個目のアイテム)。",
|
||||
"armorArmoireSoftBlueSuitText": "Soft Blue Suit",
|
||||
"armorArmoireSoftBlueSuitNotes": "Blue is a calming colour. So calming, some even wear this soft outfit to sleep... zZz. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Blue Loungewear Set (Item 2 of 3).",
|
||||
"armorArmoireSoftBlueSuitText": "柔らかな青いスーツ",
|
||||
"armorArmoireSoftBlueSuitNotes": "青は心を穏やかにする色です。本当に穏やかで、寝るときにこの柔らかな服を着る人さえいます…すやすや…。知能が<%= int %>、知覚が<%= per %> 上がります。ラッキー宝箱 : 青い部屋着セット ( 3 個中 2 個目のアイテム)。",
|
||||
"headgear": "帽子・兜",
|
||||
"headgearCapitalized": "帽子・ヘルメット",
|
||||
"headBase0Text": "頭装備なし",
|
||||
|
|
@ -1153,7 +1153,7 @@
|
|||
"headArmoireOrangeCatText": "オレンジの猫の帽子",
|
||||
"headArmoireOrangeCatNotes": "このオレンジの帽子…ごろごろ鳴いてる? それにしっぽ振ってる? それと息してませんか? その通り。あなたの頭の上で猫が眠っています。力と体質が <%= attrs %> ずつ上がります。ラッキー宝箱 : 個別のアイテム。",
|
||||
"headArmoireBlueFloppyHatText": "青いチューリップハット",
|
||||
"headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Blue Loungewear Set (Item 1 of 3).",
|
||||
"headArmoireBlueFloppyHatNotes": "このシンプルな帽子にはたくさんの呪文が縫い込まれており、それがこの素晴らしい青をもたらしているのです。体質と知能、そして知覚が <%= attrs %> ずつ上がります。ラッキー宝箱 : 青い部屋着セット ( 3 個中 1 個目のアイテム)。",
|
||||
"headArmoireShepherdHeaddressText": "羊飼いのヘッドドレス",
|
||||
"headArmoireShepherdHeaddressNotes": "もしかしたらあなたの飼いグリフォンはこの頭飾りを好んでかみかみするかもしれませんが、それにも関わらずあなたは賢く見えるでしょう。知能が <%= int %> 上がります。ラッキー宝箱 : 羊飼いセット ( 3 個中 3 個目のアイテム ) 。",
|
||||
"headArmoireCrystalCrescentHatText": "水晶の三日月の帽子",
|
||||
|
|
@ -1446,8 +1446,8 @@
|
|||
"shieldArmoirePiraticalSkullShieldNotes": "この魅惑の盾は、敵の財宝がある秘密の場所をささやくでしょう。――よく聞きなさい! 知覚と知能が <%= attrs %> ずつ上がります。ラッキー宝箱 : 海賊姫セット ( 4 個中 4 個目のアイテム)。",
|
||||
"shieldArmoireUnfinishedTomeText": "未完成の本",
|
||||
"shieldArmoireUnfinishedTomeNotes": "あなたはこれを持っているとき、簡単には先延ばしができません! 人々がその本を読むためには、製本を終わらせる必要があるのですから! 知能が <%= int %> 上がります。ラッキー宝箱 : 製本屋さんセット ( 4 個中 4 個目のアイテム ) 。",
|
||||
"shieldArmoireSoftBluePillowText": "Soft Blue Pillow",
|
||||
"shieldArmoireSoftBluePillowNotes": "The sensible warrior packs a pillow for any expedition. Shield yourself from sharp tasks... even while you nap. Increases Constitution by <%= con %>. Enchanted Armoire: Blue Loungewear Set (Item 3 of 3).",
|
||||
"shieldArmoireSoftBluePillowText": "柔らかな青いまくら",
|
||||
"shieldArmoireSoftBluePillowNotes": "賢明な戦士は、冒険のためにまくらを持っていきます。厳しいタスクからあなた自身を守るのです… うたた寝しているときでさえ。体質が <%= con %> 上がります。ラッキー宝箱 : 青い部屋着セット ( 3 個中 3 個目のアイテム)。",
|
||||
"back": "背中のアクセサリー",
|
||||
"backCapitalized": "背のアクセサリー",
|
||||
"backBase0Text": "背のアクセサリーなし",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "タスクの完了し、賞を受けるために、チェックインを通知します。",
|
||||
"weeklyRecaps": "先週の活動概要 (注 : この機能は、現在パフォーマンスの問題が発生し無効になっています。しかし、なるべく早くこの問題を解決し、メールが送れることを願っています!)",
|
||||
"onboarding": "あなたのHabiticaアカウントの設定の手引き",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "あなたのクエストがはじまりました",
|
||||
"invitedQuest": "クエストへ招待されました",
|
||||
"kickedGroup": "グループから追い出されました",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "生成する",
|
||||
"getCodes": "コードを取得する",
|
||||
"webhooks": "Webhook",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "有効",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "無効な Url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Herinnering om in te checken om taken te voltooien en prijzen te ontvangen.",
|
||||
"weeklyRecaps": "Samenvatting van je account-activiteit van de afgelopen week (Opmerking: dit is tijdelijk uitgeschakeld vanwege prestatieproblemen, maar we hopen dit snel weer online te hebben en e-mails kunnen sturen!)",
|
||||
"onboarding": "Hulp bij het opzetten van je Habitica account",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Je queeste is begonnen",
|
||||
"invitedQuest": "Uitgenodigd voor queeste",
|
||||
"kickedGroup": "Uit de groep gezet",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Genereren",
|
||||
"getCodes": "Codes verkrijgen",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Ingeschakeld",
|
||||
"webhookURL": "Webhook-URL",
|
||||
"invalidUrl": "ongeldige url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Przypomnienia o meldowaniu, aby wykonywać zadania i otrzymywać nagrody.",
|
||||
"weeklyRecaps": "Podsumowanie aktywności na koncie w ostatnim tygodniu (Uwaga: z powodów wydajnościowych ta opcja jest aktualnie wyłączona, ale mamy nadzieję przywrócić ją do działania już niedługo!)",
|
||||
"onboarding": "Wskazówki dot. zakładania konta Habitiki",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Twoje zadanie rozpoczęło się",
|
||||
"invitedQuest": "Zostałeś zaproszony do zadania",
|
||||
"kickedGroup": "Wyrzucono z grupy",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generuj",
|
||||
"getCodes": "Zdobądź kody",
|
||||
"webhooks": "Webhooki",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Włączone",
|
||||
"webhookURL": "Link do webhooka",
|
||||
"invalidUrl": "Nieprawidłowy url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Lembretes para completar tarefas e receber prémios",
|
||||
"weeklyRecaps": "Resumos de atividades da sua conta na semana passada ( Nota: Atualmente está desativado devido a problemas de desempenho, mas esperamos ter isto novamente e enviar e-mails em breve! )",
|
||||
"onboarding": "Guia acerca de como criar a sua conta de Habitica",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Sua Missão começou",
|
||||
"invitedQuest": "Convidado para Missão",
|
||||
"kickedGroup": "Expulso do grupo",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Gerar",
|
||||
"getCodes": "Obter Códigos",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Habilitado",
|
||||
"webhookURL": "URL do Webhook",
|
||||
"invalidUrl": "url inválida",
|
||||
|
|
|
|||
|
|
@ -388,11 +388,11 @@
|
|||
"backgroundCreepyCastleNotes": "Atreva-se a se aproximar de um Castelo Assustador.",
|
||||
"backgroundDungeonText": "Masmorra",
|
||||
"backgroundDungeonNotes": "Resgate os prisioneiros de um calabouço assustador",
|
||||
"backgrounds112018": "SET 54: Released November 2018",
|
||||
"backgroundBackAlleyText": "Back Alley",
|
||||
"backgroundBackAlleyNotes": "Look shady loitering in a Back Alley.",
|
||||
"backgroundGlowingMushroomCaveText": "Glowing Mushroom Cave",
|
||||
"backgroundGlowingMushroomCaveNotes": "Stare in awe at a Glowing Mushroom Cave.",
|
||||
"backgroundCozyBedroomText": "Cozy Bedroom",
|
||||
"backgroundCozyBedroomNotes": "Curl up in a Cozy Bedroom."
|
||||
"backgrounds112018": "CONJUNTO 54: Lançado em Novembro de 2018",
|
||||
"backgroundBackAlleyText": "Viela",
|
||||
"backgroundBackAlleyNotes": "Pareça suspeito em um beco sem saída.",
|
||||
"backgroundGlowingMushroomCaveText": "Caverna de Cogumelos Brilhantes",
|
||||
"backgroundGlowingMushroomCaveNotes": "Encare receoso uma Caverna de Cogumelos Brilhantes.",
|
||||
"backgroundCozyBedroomText": "Quarto Aconchegante",
|
||||
"backgroundCozyBedroomNotes": "Envolva-se com um Quarto Aconchegante"
|
||||
}
|
||||
|
|
@ -784,8 +784,8 @@
|
|||
"armorArmoireCoverallsOfBookbindingNotes": "Tudo que você precisa em um Conjunto de Macacão, incluindo bolsos para tudo. Um par de óculos de proteção, troco solto, um anel de ouro... Aumenta Constituição em <%= con %> e Percepção em <%= per %>. Armário Encantado: Conjunto do Encadernador (Item 2 de 4).",
|
||||
"armorArmoireRobeOfSpadesText": "Túnica de Espadas",
|
||||
"armorArmoireRobeOfSpadesNotes": "Estas vestes exuberantes escondem bolsos ocultos para guardar tesouros ou armas - a escolha é sua! Aumenta Força em <%= str %>. Armário Encantado: Conjunto Ás de Espadas (Item 2 de 3).",
|
||||
"armorArmoireSoftBlueSuitText": "Soft Blue Suit",
|
||||
"armorArmoireSoftBlueSuitNotes": "Blue is a calming colour. So calming, some even wear this soft outfit to sleep... zZz. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Blue Loungewear Set (Item 2 of 3).",
|
||||
"armorArmoireSoftBlueSuitText": "Traje Azul Suave",
|
||||
"armorArmoireSoftBlueSuitNotes": "Azul é uma cor relaxante. Tão calmante que alguns até usam essa roupa macia para dormir... zZz. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Armário Encantado: Conjunto Loungewear Azul (Item 2 de 3).",
|
||||
"headgear": "Elmo",
|
||||
"headgearCapitalized": "Equipamento De Cabeça",
|
||||
"headBase0Text": "Sem Equipamento de Cabeça",
|
||||
|
|
@ -1153,7 +1153,7 @@
|
|||
"headArmoireOrangeCatText": "Chapéu de Gato Laranja",
|
||||
"headArmoireOrangeCatNotes": "Este chapéu laranja está... ronronando. E balançando seu rabo. E respirando? É, você tem um gato dormindo na sua cabeça. Aumenta Força e Constituição em <%= attrs %> cada. Armário Encantado: Item Independente.",
|
||||
"headArmoireBlueFloppyHatText": "Chapéu Macio Azul",
|
||||
"headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Blue Loungewear Set (Item 1 of 3).",
|
||||
"headArmoireBlueFloppyHatNotes": "Muitos feitiços foram costurados neste chapéu simples, dando-lhes uma brilhante cor azul. Aumenta Constituição, Inteligência e Percepção em <%= attrs %> cada. Armário Encantado: Conjunto Loungewear Azul (Item 1 de 3).",
|
||||
"headArmoireShepherdHeaddressText": "Touca de Pastor",
|
||||
"headArmoireShepherdHeaddressNotes": "Algumas vezes os grifos que você arrebanha gostam de mastigar essa touca, mas isso só faz você parecer mais inteligente. Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto de Pastor (Item 3 de 3).",
|
||||
"headArmoireCrystalCrescentHatText": "Chapéu de Cristal Crescente",
|
||||
|
|
@ -1446,8 +1446,8 @@
|
|||
"shieldArmoirePiraticalSkullShieldNotes": "Este escudo encantado sussurrará as localizações secretas dos tesouros dos seus inimigos- ouça atentamente! Aumenta Percepção e Inteligência em <%= attrs %>cada. Armário Encantado: Conjunto da Princesa Pirática (Item 4 de 4).",
|
||||
"shieldArmoireUnfinishedTomeText": "Livro inacabado",
|
||||
"shieldArmoireUnfinishedTomeNotes": "Você não pode simplesmente procrastinar quando está segurando isto! A encadernaçao precisa ser concluída para que as pessoas possam ler o livro! Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto do Encadernador (Item 4 de 4).",
|
||||
"shieldArmoireSoftBluePillowText": "Soft Blue Pillow",
|
||||
"shieldArmoireSoftBluePillowNotes": "The sensible warrior packs a pillow for any expedition. Shield yourself from sharp tasks... even while you nap. Increases Constitution by <%= con %>. Enchanted Armoire: Blue Loungewear Set (Item 3 of 3).",
|
||||
"shieldArmoireSoftBluePillowText": "Almofada Azul Suave",
|
||||
"shieldArmoireSoftBluePillowNotes": "O guerreiro sensato embala um travesseiro para qualquer expedição. escudo. Proteja-se das tarefas afiadas... mesmo enquanto você cochila. Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto Loungewear Azul (Item 3 de 3).",
|
||||
"back": "Acessório de Fundo",
|
||||
"backCapitalized": "Acessório para costas",
|
||||
"backBase0Text": "Sem Acessório de Fundo",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Lembretes de fazer check-in para completar tarefas e receber recompensas",
|
||||
"weeklyRecaps": "Resumos de atividades da sua conta na semana passada (Nota: Atualmente está desativado devido a problemas de desempenho, mas esperamos ter isto funcionando e enviando e-mails novamente em breve!)",
|
||||
"onboarding": "Orientações em como preparar sua conta no Habitica",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Sua Missão começou",
|
||||
"invitedQuest": "Convidado para Missão",
|
||||
"kickedGroup": "Expulso do grupo",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Gerar",
|
||||
"getCodes": "Obter Códigos",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Habilitado",
|
||||
"webhookURL": "URL do Webhook",
|
||||
"invalidUrl": "url inválida",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Memento de intrare și completare a sarcinilor, și primire a premiilor",
|
||||
"weeklyRecaps": "Rezumate ale activității din contul tău în ultima săptămână (Notă: această opțiune este momentan dezactivată din cauza unor probleme legate de performanță, dar sperăm să avem opțiunea disponibilă din nou în curând, la și vom trimite din nou email-uri nu peste mult timp!)",
|
||||
"onboarding": "Ghid pentru setarea contului tău Habitica",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Your Quest has Begun",
|
||||
"invitedQuest": "Invited to Quest",
|
||||
"kickedGroup": "Kicked from group",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generează",
|
||||
"getCodes": "Primește Coduri",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Activat",
|
||||
"webhookURL": "URL Webhook",
|
||||
"invalidUrl": "Legătură invalidă",
|
||||
|
|
|
|||
|
|
@ -388,11 +388,11 @@
|
|||
"backgroundCreepyCastleNotes": "Робко приблизиться к Пугающему Замку.",
|
||||
"backgroundDungeonText": "Подземелье",
|
||||
"backgroundDungeonNotes": "Спасти заключенных из страшного Подземелья.",
|
||||
"backgrounds112018": "SET 54: Released November 2018",
|
||||
"backgroundBackAlleyText": "Back Alley",
|
||||
"backgroundBackAlleyNotes": "Look shady loitering in a Back Alley.",
|
||||
"backgroundGlowingMushroomCaveText": "Glowing Mushroom Cave",
|
||||
"backgroundGlowingMushroomCaveNotes": "Stare in awe at a Glowing Mushroom Cave.",
|
||||
"backgroundCozyBedroomText": "Cozy Bedroom",
|
||||
"backgroundCozyBedroomNotes": "Curl up in a Cozy Bedroom."
|
||||
"backgrounds112018": "Набор 54: Выпущен в ноябре 2018",
|
||||
"backgroundBackAlleyText": "Глухой переулок",
|
||||
"backgroundBackAlleyNotes": "Выглядите подозрительно, шатаясь по глухому переулку.",
|
||||
"backgroundGlowingMushroomCaveText": "Сияющая грибная пещера",
|
||||
"backgroundGlowingMushroomCaveNotes": "Восхищенно рассмотрите сияющую грибную пещеру.",
|
||||
"backgroundCozyBedroomText": "Уютная спальня",
|
||||
"backgroundCozyBedroomNotes": "Свернитесь калачиком в уютной спальне."
|
||||
}
|
||||
|
|
@ -784,8 +784,8 @@
|
|||
"armorArmoireCoverallsOfBookbindingNotes": "В рабочей одежде есть все необходимое, включая многофункциональные карманы. Очки, сменка, золотое кольцо ... Увеличивает телосложения на <%= con %> и восприятие на <%= per %>. Зачарованный сундук: Набор Переплетчика (предмет 2 из 4).",
|
||||
"armorArmoireRobeOfSpadesText": "Тузовая мантия",
|
||||
"armorArmoireRobeOfSpadesNotes": "Эта свободная мантия скрывает потайные карманы с драгоценностями или оружиями - на ваш выбор! Увеличивает Силу на <%= str %>. Зачарованный сундук: Набор Тузов Пик (Предмет 2 из 3).",
|
||||
"armorArmoireSoftBlueSuitText": "Soft Blue Suit",
|
||||
"armorArmoireSoftBlueSuitNotes": "Blue is a calming colour. So calming, some even wear this soft outfit to sleep... zZz. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Blue Loungewear Set (Item 2 of 3).",
|
||||
"armorArmoireSoftBlueSuitText": "Мягкая синяя пижама",
|
||||
"armorArmoireSoftBlueSuitNotes": "Синий цвет - такой убаюкивающий. Настолько, что некоторые даже носят этот мягкий наряд, чтобы провалиться в... сон. Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Зачарованный сундук: Набор Синей домашней одежды (предмет 2 из 3).",
|
||||
"headgear": "Головной убор",
|
||||
"headgearCapitalized": "Головной убор",
|
||||
"headBase0Text": "Нет шлема",
|
||||
|
|
@ -1153,7 +1153,7 @@
|
|||
"headArmoireOrangeCatText": "Шапка оранжевого кота",
|
||||
"headArmoireOrangeCatNotes": "Эта оранжевая шляпа... мурлыкает. И подёргивает хвостом. И дышит? Ага, на вашей голове просто спит кот. Увеличивает силу и телосложение на <%= attrs %>. Зачарованный сундук: Независимый предмет.",
|
||||
"headArmoireBlueFloppyHatText": "Синяя широкополая шляпа",
|
||||
"headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Blue Loungewear Set (Item 1 of 3).",
|
||||
"headArmoireBlueFloppyHatNotes": "Множество заклинаний было вплетено в эту простенькую шляпу, придавая ей искрящийся синий цвет. Увеличивает телосложение, интеллект и восприятие на <%= attrs %>. Зачарованный сундук: Набор Синей домашней одежды (предмет 1 из 3).",
|
||||
"headArmoireShepherdHeaddressText": "Головной убор пастуха",
|
||||
"headArmoireShepherdHeaddressNotes": "Иногда грифоны, которых вы пасёте, грызут этот головной убор, но несмотря на это, он придаёт вам умный вид. Увеличивает интеллект на <%= int %>. Зачарованный сундук: Набор Пастуха (предмет 3 из 3).",
|
||||
"headArmoireCrystalCrescentHatText": "Шляпа хрустального полумесяца",
|
||||
|
|
@ -1446,8 +1446,8 @@
|
|||
"shieldArmoirePiraticalSkullShieldNotes": "Этот зачарованный щит прошепчет вам потайные места вражеских сокровищ- слушайте внимательно! Увеличивает телосложение и интеллект на <%= attrs %>. Зачарованный сундук: Набор пиратской принцессы (предмет 4 из 4).",
|
||||
"shieldArmoireUnfinishedTomeText": "Незаконченная книга",
|
||||
"shieldArmoireUnfinishedTomeNotes": "Вы просто не можете прокрастинировать, держа в руках это! Нужно закончить переплет, чтобы люди могли читать книгу! Увеличивает интеллект на <%= int %>. Зачарованный сундук: Набор Переплетчика (предмет 4 из 4).",
|
||||
"shieldArmoireSoftBluePillowText": "Soft Blue Pillow",
|
||||
"shieldArmoireSoftBluePillowNotes": "The sensible warrior packs a pillow for any expedition. Shield yourself from sharp tasks... even while you nap. Increases Constitution by <%= con %>. Enchanted Armoire: Blue Loungewear Set (Item 3 of 3).",
|
||||
"shieldArmoireSoftBluePillowText": "Мягкая синяя подушка",
|
||||
"shieldArmoireSoftBluePillowNotes": "Здравомыслящий воин всегда берет подушку в поход. Защитите себя от острых задач... даже когда вы дремлете. Увеличивает телосложение на <%= con %>. Зачарованный сундук: Набор Синей домашней одежды (предмет 3 из 3).",
|
||||
"back": "Аксессуар на спину",
|
||||
"backCapitalized": "Аксессуар на спину",
|
||||
"backBase0Text": "Нет аксессуаров на спине",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Напоминания о ежедневном входе для выполнения заданий и получения призов",
|
||||
"weeklyRecaps": "Обзоры действий с вашего аккаунта за последние недели (Замечание: временно недоступно из-за проблем с производительностью, но мы надеемся, что скоро сможем вернуть все назад и отправлять письма снова!)",
|
||||
"onboarding": "Руководство о создании вашего аккаунта в Habitica",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Ваш Квест начался",
|
||||
"invitedQuest": "Приглашен в квест",
|
||||
"kickedGroup": "Исключен из группы",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Сгенерировать",
|
||||
"getCodes": "Получить коды",
|
||||
"webhooks": "Веб-хуки",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Включено",
|
||||
"webhookURL": "Ссылка на веб-хук",
|
||||
"invalidUrl": "неверный url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
|
||||
"weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)",
|
||||
"onboarding": "Guidance with setting up your Habitica account",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Tvoja výprava sa začala",
|
||||
"invitedQuest": "Pozvaný na výpravu",
|
||||
"kickedGroup": "Vyhodený z družiny",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generate",
|
||||
"getCodes": "Get Codes",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Povolené",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "neplatná url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
|
||||
"weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)",
|
||||
"onboarding": "Guidance with setting up your Habitica account",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Vaša misija je počela",
|
||||
"invitedQuest": "Pozvati u misiju",
|
||||
"kickedGroup": "Izbačen iz grupe",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generate",
|
||||
"getCodes": "Get Codes",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Enabled",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "invalid url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
|
||||
"weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)",
|
||||
"onboarding": "Vägledning med att sätta upp ditt Habitica konto",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Ditt uppdrag har startat",
|
||||
"invitedQuest": "Inbjuden till uppdrag",
|
||||
"kickedGroup": "Avfärdad från grupp",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generera",
|
||||
"getCodes": "Få koder",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Aktiverad",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "ogiltig URL",
|
||||
|
|
|
|||
|
|
@ -382,17 +382,17 @@
|
|||
"backgroundCozyBarnText": "Sıcak Ahır",
|
||||
"backgroundCozyBarnNotes": "Hayvanlarınla ve bineklerinle Sıcak Ahırda dinlen.",
|
||||
"backgrounds102018": "SET 53: Ekim 2018'de yayımlandı",
|
||||
"backgroundBayouText": "Bayou",
|
||||
"backgroundBayouNotes": "Bask in the fireflies' glow on the misty Bayou.",
|
||||
"backgroundCreepyCastleText": "Creepy Castle",
|
||||
"backgroundCreepyCastleNotes": "Dare to approach a Creepy Castle.",
|
||||
"backgroundDungeonText": "Dungeon",
|
||||
"backgroundDungeonNotes": "Rescue the prisoners of a spooky Dungeon.",
|
||||
"backgrounds112018": "SET 54: Released November 2018",
|
||||
"backgroundBackAlleyText": "Back Alley",
|
||||
"backgroundBackAlleyNotes": "Look shady loitering in a Back Alley.",
|
||||
"backgroundGlowingMushroomCaveText": "Glowing Mushroom Cave",
|
||||
"backgroundGlowingMushroomCaveNotes": "Stare in awe at a Glowing Mushroom Cave.",
|
||||
"backgroundCozyBedroomText": "Cozy Bedroom",
|
||||
"backgroundCozyBedroomNotes": "Curl up in a Cozy Bedroom."
|
||||
"backgroundBayouText": "Nehir",
|
||||
"backgroundBayouNotes": "Ateş böceklerinin, puslu Nehrin yüzeyine yansıyan ışıltılarının tadını çıkar.",
|
||||
"backgroundCreepyCastleText": "Ürkünç Şato",
|
||||
"backgroundCreepyCastleNotes": "Ürkünç Şatoya yaklaşmaya cüret et.",
|
||||
"backgroundDungeonText": "Zindan",
|
||||
"backgroundDungeonNotes": "Korkunç Zindanın mahkumlarını kurtar.",
|
||||
"backgrounds112018": "SET 54: Kasım 2018'de yayımlandı",
|
||||
"backgroundBackAlleyText": "Arka Sokak",
|
||||
"backgroundBackAlleyNotes": "Bir Arka Sokakta boş boş dolaşırken şaibeli görün.",
|
||||
"backgroundGlowingMushroomCaveText": "Işıldayan Mantar Mağarası",
|
||||
"backgroundGlowingMushroomCaveNotes": "Bir Işıldayan Mantar Mağarasına haşyetle bak.",
|
||||
"backgroundCozyBedroomText": "Rahat Yatak Odası",
|
||||
"backgroundCozyBedroomNotes": "Rahat Yatak Odasında keyfine bak."
|
||||
}
|
||||
|
|
@ -272,14 +272,14 @@
|
|||
"newEmailRequired": "Yeni e-posta adresi eksik.",
|
||||
"usernameTime": "Kullanıcı adını ayarlama vakti!",
|
||||
"usernameInfo": "Your display name hasn't changed, but your old login name will now become your public username. This username will be used for invitations, @mentions in chat, and messaging.<br><br>If you'd like to learn more about this change, visit the wiki's <a href='http://habitica.wikia.com/wiki/Player_Names' target='_blank'>Player Names</a> page.",
|
||||
"usernameTOSRequirements": "Usernames must conform to our Terms of Service and Community Guidelines. If you didn’t previously set a login name, your username was auto-generated.",
|
||||
"usernameTaken": "Username already taken.",
|
||||
"usernameTOSRequirements": "Kullanıcı adları Hizmet Koşulları'mıza ve Topluluk İlkeleri'mize uygun olmalı. Eğer daha önce bir giriş adı belirlemediysen, kullanıcı adın otomatik olarak oluşturulmuştur.",
|
||||
"usernameTaken": "Kullanıcı Adı başkası tarafından kullanılıyor.",
|
||||
"usernameWrongLength": "Username must be between 1 and 20 characters long.",
|
||||
"displayNameWrongLength": "Display names must be between 1 and 30 characters long.",
|
||||
"usernameBadCharacters": "Usernames can only contain letters a to z, numbers 0 to 9, hyphens, or underscores.",
|
||||
"nameBadWords": "Names cannot include any inappropriate words.",
|
||||
"confirmUsername": "Confirm Username",
|
||||
"usernameConfirmed": "Username Confirmed",
|
||||
"nameBadWords": "Kullanıcı adı uygunsuz kelimeler içeremez.",
|
||||
"confirmUsername": "Kullanıcı Adını Onayla",
|
||||
"usernameConfirmed": "Kullanıcı Adı Onaylandı",
|
||||
"passwordConfirmationMatch": "Şifre onayı şifreyle uyuşmuyor.",
|
||||
"invalidLoginCredentials": "Kullanıcı adı ve/veya e-posta ve/veya şifre yanlış.",
|
||||
"passwordResetPage": "Şifre Sıfırla",
|
||||
|
|
|
|||
|
|
@ -271,9 +271,9 @@
|
|||
"weaponSpecialFall2018WarriorText": "Minos'un Kırbacı",
|
||||
"weaponSpecialFall2018WarriorNotes": "Not quite long enough to unwind behind you for keeping your bearings in a maze. Well, maybe a very small maze. Increases Strength by <%= str %>. Limited Edition 2018 Autumn Gear.",
|
||||
"weaponSpecialFall2018MageText": "Tatlılık Asası",
|
||||
"weaponSpecialFall2018MageNotes": "This is no ordinary lollipop! The glowing orb of magic sugar atop this staff has the power to make good habits stick to you. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Autumn Gear. Two-handed item.",
|
||||
"weaponSpecialFall2018MageNotes": "Bu sıradan bir lolipop değil! Bu asanın üstündeki parıldayan sihirli şeker topu, iyi alışkanlıkları sana yapıştırma gücüne sahiptir. Zekayı <%= int %> ve Sezgiyi <%= per %> puan arttırır. Sınırlı Sürüm 2018 Güz Ekipmanı. Çift elli eşya.",
|
||||
"weaponSpecialFall2018HealerText": "Çok Aç Asa",
|
||||
"weaponSpecialFall2018HealerNotes": "Just keep this staff fed, and it will bestow Blessings. If you forget to feed it, keep your fingers out of reach. Increases Intelligence by <%= int %>. Limited Edition 2018 Autumn Gear.",
|
||||
"weaponSpecialFall2018HealerNotes": "Bu asayı tok tutarsan sana Kutsamalar bağışlar. Eğer beslemeyi unutursan, parmaklarını yakınlarında tutmasan iyi olur. Zekayı <%= int %> puan arttırır. Sınırlı Sürüm 2018 Güz Ekipmanı.",
|
||||
"weaponMystery201411Text": "Hasat Tırmığı",
|
||||
"weaponMystery201411Notes": "Düşmanlarına saplamak ya da favori yiyeceklerine yumulmak - bu çok kullanışlı tırmık ile hepsini yapabilirsin! Bir fayda sağlamaz. Kasım 2014 Abone Eşyası.",
|
||||
"weaponMystery201502Text": "Aşkın ve Aynı Zamanda Dürüstlüğün Parıltılı, Kanatlı Asası",
|
||||
|
|
@ -358,10 +358,10 @@
|
|||
"weaponArmoirePoisonedGobletNotes": "Iocane tozu ve daha başka nice inanılmaz tehlikeli zehre karşı direnç oluşturmak için bunu kullan. Zekayı <%= int %> puan arttırır. Efsunlu Gardırop: Korsani Prenses Seti (4 Eşyadan 3'üncüsü).",
|
||||
"weaponArmoireJeweledArcherBowText": "Mücehverli Okçu Yayı",
|
||||
"weaponArmoireJeweledArcherBowNotes": "Altın ve Elmaslardan oluşan bu yay, oklarını hedeflerine inanılmaz bir hızla atar. Zekayı<%= int %> arttırır. Efsunlu Gardırop: Mücehverli Okçu Seti (3 eşyadan 3'üncüsü)",
|
||||
"weaponArmoireNeedleOfBookbindingText": "Kitap Bağlama İğnesi",
|
||||
"weaponArmoireNeedleOfBookbindingNotes": "You'd be surprised at how tough books can be. This needle can pierce right to the heart of your chores. Increases Strength by <%= str %>. Enchanted Armoire: Bookbinder Set (Item 3 of 4).",
|
||||
"weaponArmoireSpearOfSpadesText": "Spear of Spades",
|
||||
"weaponArmoireSpearOfSpadesNotes": "This knightly lance is perfect for attacking your reddest Habits and Dailies. Increases Constitution by <%= con %>. Enchanted Armoire: Ace of Spades Set (Item 3 of 3).",
|
||||
"weaponArmoireNeedleOfBookbindingText": "Ciltleme İğnesi",
|
||||
"weaponArmoireNeedleOfBookbindingNotes": "Kitapların ne kadar sağlam olabildiklerini gördüğünde şaşıracaksın. Bu iğne ise işlerinin tam kalbine kadar delebilir. Gücü <%= str %> puan arttırır. Efsunlu Gardırop: Ciltçi Seti (4 Eşyadan 3'üncüsü).",
|
||||
"weaponArmoireSpearOfSpadesText": "Maça Mızrağı",
|
||||
"weaponArmoireSpearOfSpadesNotes": "Bu şövalye mızrağı en kırmızı Alışkanlıklarına ve Günlük İşlerine saldırmak için idealdir. Bünyeyi <%= con %> puan arttırır. Efsunlu Gardırop: Maça Ası Seti (3 Eşyadan 3'üncüsü).",
|
||||
"armor": "zırh",
|
||||
"armorCapitalized": "Zırh",
|
||||
"armorBase0Text": "Sade Giysi",
|
||||
|
|
@ -1377,11 +1377,11 @@
|
|||
"shieldSpecialSummer2018HealerText": "Denizhalkı Hükümdarı Amblemi",
|
||||
"shieldSpecialSummer2018HealerNotes": "Bu kalkan, sulu diyarlarını ziyaret eden karada yaşayan ziyaretçilerinin faydalanması için bir hava kubbesi oluşturabilir. Bünyeyi <%= con %> puan arttırır. Sınırlı Sürüm 2018 Yaz Ekipmanı.",
|
||||
"shieldSpecialFall2018RogueText": "Cezbetme Şişesi",
|
||||
"shieldSpecialFall2018RogueNotes": "This bottle represents all the distractions and troubles that keep you from being your best self. Resist! We're cheering for you! Increases Strength by <%= str %>. Limited Edition 2018 Autumn Gear.",
|
||||
"shieldSpecialFall2018WarriorText": "Brilliant Shield",
|
||||
"shieldSpecialFall2018WarriorNotes": "Super shiny to dissuade any troublesome Gorgons from playing peek-a-boo around the corners! Increases Constitution by <%= con %>. Limited Edition 2018 Autumn Gear.",
|
||||
"shieldSpecialFall2018RogueNotes": "Bu şişe, seni en üst noktana çıkmaktan alıkoyan tüm dikkat dağıtıcı unsurları ve zahmetleri temsil eder. Diren! Senin için tezahürat yapıyoruz! Gücü <%= str %> puan arttırır. Sınırlı Sürüm 2018 Güz Ekipmanı.",
|
||||
"shieldSpecialFall2018WarriorText": "Şaşaalı Kalkan",
|
||||
"shieldSpecialFall2018WarriorNotes": "Köşe bucakta saklambaç oynayan her türlü Gorgonu caydırmak için süper parlaktır! Bünyeyi <%= con %> puan arttırır. Sınırlı Sürüm 2018 Güz Ekipmanı.",
|
||||
"shieldSpecialFall2018HealerText": "Aç Kalkan",
|
||||
"shieldSpecialFall2018HealerNotes": "With its wide-open maw, this shield will absorb all your enemies' blows. Increases Constitution by <%= con %>. Limited Edition 2018 Autumn Gear.",
|
||||
"shieldSpecialFall2018HealerNotes": "Genişçe açtığı ağzıyla birlikte bu kalkan, düşmanlarından gelen tüm darbeleri emecektir. Bünyeyi <%= con %> puan arttırır. Sınırlı Sürüm 2018 Güz Ekipmanı.",
|
||||
"shieldMystery201601Text": "Çözüm Katledicisi",
|
||||
"shieldMystery201601Notes": "Bu pala, tüm dikkat dağınıklığını bertaraf etmekte kullanılabilir. Bir fayda sağlamaz. Ocak 2016 Abone Eşyası.",
|
||||
"shieldMystery201701Text": "Zaman Dondurucu Kalkan",
|
||||
|
|
@ -1444,10 +1444,10 @@
|
|||
"shieldArmoireFancyBlownGlassVaseNotes": "Ne kadar da gösterişli bir vazo yaptın! İçine ne koyacaksın? Zekayı <%= int %> puan arttırır. Efsunlu Gardırop: Cam Üfleyicisi Seti (4 Eşyadan 4'üncüsü).",
|
||||
"shieldArmoirePiraticalSkullShieldText": "Korsani Kafatası Kalkanı",
|
||||
"shieldArmoirePiraticalSkullShieldNotes": "Bu sihirli kalkan, düşmanlarının ganimetlerinin yerlerini sana fısıldar - iyi dinle! Sezgiyi ve Zekayı <%= attrs %> puan arttırır. Efsunlu Gardırop: Korsani Prenses Seti (4 Eşyadan 4'üncüsü).",
|
||||
"shieldArmoireUnfinishedTomeText": "Unfinished Tome",
|
||||
"shieldArmoireUnfinishedTomeNotes": "You simply can't procrastinate when you're holding this! The binding needs to be finished so people can read the book! Increases Intelligence by <%= int %>. Enchanted Armoire: Bookbinder Set (Item 4 of 4).",
|
||||
"shieldArmoireSoftBluePillowText": "Soft Blue Pillow",
|
||||
"shieldArmoireSoftBluePillowNotes": "The sensible warrior packs a pillow for any expedition. Shield yourself from sharp tasks... even while you nap. Increases Constitution by <%= con %>. Enchanted Armoire: Blue Loungewear Set (Item 3 of 3).",
|
||||
"shieldArmoireUnfinishedTomeText": "Tamamlanmamış Cilt",
|
||||
"shieldArmoireUnfinishedTomeNotes": "Bunu tutarken işleri ertelemenin imkanı yok! Cildin dikişlerini tamamlaman gerek ki insanlar kitabı okuyabilsinler! Zekayı <%= int %> puan arttırır. Efsunlu Gardırop: Ciltçi Seti (4. Eşyadan 4'üncüsü).",
|
||||
"shieldArmoireSoftBluePillowText": "Yumuşak Mavi Yastık",
|
||||
"shieldArmoireSoftBluePillowNotes": "Aklı başında savaşçılar, seferleri için yanlarına birer yastık alırlar. Keskin işlerden kendini koru... şekerleme yaparken bile. Bünyeyi <%= con %> puan arttırır. Efsunlu Gardırop: Mavi Pijama Seti (3 Eşyadan 3'üncüsü).",
|
||||
"back": "Sırt Aksesuarı",
|
||||
"backCapitalized": "Sırt Aksesuarı",
|
||||
"backBase0Text": "Sırt Aksesuarı Yok",
|
||||
|
|
@ -1635,8 +1635,8 @@
|
|||
"headAccessoryMystery301405Notes": "\"Gözlükler gözler içindir,\" dediler. \"Kimse sadece kafasına takabileceği gözlükler istemez,\" dediler. Hah! Gözlerine soktuğuna emin ol! Bir fayda sağlamaz. Ağustos 3015 Abone Eşyası.",
|
||||
"headAccessoryArmoireComicalArrowText": "Esprili Ok",
|
||||
"headAccessoryArmoireComicalArrowNotes": "Bu şakacı eşya etraftakileri güldürmekte başarılıdır! Gücü <%= str %> puan arttırır. Efsunlu Gardırop: Bağımsız Eşya.",
|
||||
"headAccessoryArmoireGogglesOfBookbindingText": "Goggles of Bookbinding",
|
||||
"headAccessoryArmoireGogglesOfBookbindingNotes": "These goggles will help you zero in on any task, large or small! Increases Perception by <%= per %>. Enchanted Armoire: Bookbinder Set (Item 1 of 4).",
|
||||
"headAccessoryArmoireGogglesOfBookbindingText": "Ciltçilik Gözlükleri",
|
||||
"headAccessoryArmoireGogglesOfBookbindingNotes": "Bu gözlükler büyük küçük, tüm işlerine on ikiden hedef almana yardım edecek! Sezgiyi <%= per %> puan arttırır. Efsunlu Gardırop: Ciltçi Seti (4 Eşyadan 1'incisi).",
|
||||
"eyewear": "Gözlük",
|
||||
"eyewearCapitalized": "Gözlük",
|
||||
"eyewearBase0Text": "Gözlük Yok",
|
||||
|
|
|
|||
|
|
@ -392,7 +392,7 @@
|
|||
"noGuildsTitle": "Hiç bir Loncaya üye değilsin.",
|
||||
"noGuildsParagraph1": "Loncalar diğer kullanıcılar tarafından oluşturulmuş; destek, sorumluluk ve teşvik edici bir sohbet ortamı sağlayan sosyal topluluklardır.",
|
||||
"noGuildsParagraph2": "İlgi alanlarına uygun olarak önerilen Loncaları bulmak, Habitica'nın umumi Loncalarını incelemek veya kendi Loncanı oluşturmak için Keşfet sekmesine tıkla.",
|
||||
"noGuildsMatchFilters": "We couldn't find any matching Guilds.",
|
||||
"noGuildsMatchFilters": "Uygun herhangi bir Lonca bulamadık.",
|
||||
"privateDescription": "Özel Loncalar Habitica'nın Lonca rehberine görüntülenmez. Yeni üyeler yalnızca davet yoluyla eklenebilir.",
|
||||
"removeInvite": "Daveti Kaldır",
|
||||
"removeMember": "Üyeyi Çıkar",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Tamamlanmış işleri işaretlemen ve ödüller kazanman için hatırlatmalar",
|
||||
"weeklyRecaps": "Geçen haftaki hesap aktivitenin özeti (Not: performans sebeplerinden ötürü şu anda devre dışıdır ancak yakında tekrar yürürlüğe koymayı ve e-postalar göndermeyi umuyoruz!)",
|
||||
"onboarding": "Habitica hesabını ayarlaman için rehberler",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Görevin Başladı",
|
||||
"invitedQuest": "Göreve Davet Edildin",
|
||||
"kickedGroup": "Gruptan atıldın",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Üret",
|
||||
"getCodes": "Kod Al",
|
||||
"webhooks": "Webhook'lar",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Aktif",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "geçersiz url",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"achievement": "Achievement",
|
||||
"achievement": "Досягнення",
|
||||
"share": "Поділитись",
|
||||
"onwards": "Вперед!",
|
||||
"levelup": "Завдяки досягненню цілей у реальному житті ваш рівень підвищився та персонаж був зцілений!",
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
"challengeWinner": "Подолав такі випробування",
|
||||
"challenges": "Випробування",
|
||||
"challengesLink": "<a href='http://habitica.wikia.com/wiki/Challenges' target='_blank'>Випробування</a>",
|
||||
"challengePrize": "Challenge Prize",
|
||||
"challengePrize": "Нагорода за Випробування ",
|
||||
"endDate": "Ends",
|
||||
"noChallenges": "Ще немає випробувань, відвідайте",
|
||||
"toCreate": "аби створити одне.",
|
||||
|
|
@ -25,9 +25,9 @@
|
|||
"filter": "Вибірка",
|
||||
"groups": "Ватагами",
|
||||
"noNone": "Жодного",
|
||||
"category": "Category",
|
||||
"category": "Категорія",
|
||||
"membership": "Членство",
|
||||
"ownership": "Ownership",
|
||||
"ownership": "Власність",
|
||||
"participating": "Бере участь",
|
||||
"notParticipating": "Не бере участь",
|
||||
"either": "Будь-хто",
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
"noChallengeTitle": "Ви не маєте жодного випробування.",
|
||||
"challengeDescription1": "Випробування - це спільна подія, в якій гравці змагаються та заробляють призи, виконуючи групу пов'язаних між собою завдань.",
|
||||
"challengeDescription2": "Знайдіть рекомендовані Випробування на основі ваших інтересів, перегляньте публічні Випробування Habitica або створіть власні Випробуваня.",
|
||||
"noChallengeMatchFilters": "We couldn't find any matching Challenges.",
|
||||
"noChallengeMatchFilters": "Не знайдені відповідні випробування.",
|
||||
"createdBy": "Створено",
|
||||
"joinChallenge": "Приєднатися до випробування",
|
||||
"leaveChallenge": "Покинути випробування",
|
||||
|
|
@ -112,13 +112,13 @@
|
|||
"deleteChallenge": "Видалити випробування",
|
||||
"challengeNamePlaceholder": "Як назвеш своє випробування?",
|
||||
"challengeSummary": "Резюме",
|
||||
"challengeSummaryPlaceholder": "Write a short description advertising your Challenge to other Habiticans. What is the main purpose of your Challenge and why should people join it? Try to include useful keywords in the description so that Habiticans can easily find it when they search!",
|
||||
"challengeDescriptionPlaceholder": "Use this section to go into more detail about everything that Challenge participants should know about your Challenge.",
|
||||
"challengeSummaryPlaceholder": "Напишіть короткий опис вашого випробування для інших жителів Habitica. Яка головна мета вашого випробування і чому люди повинні приєднатися до нього? Старайтесь використовувати ключові слова в описі, щоб жителі Habitica могли легко знайти його при пошуку. ",
|
||||
"challengeDescriptionPlaceholder": "Використовуйте цей блок задля докладного опису всього, що учасникам випробування слід знати про ваше випробування. ",
|
||||
"challengeGuild": "Додати до",
|
||||
"challengeMinimum": "Minimum 1 Gem for public Challenges (helps prevent spam, it really does).",
|
||||
"challengeMinimum": "Щонайменше 1 самоцвіт для відкритих випробувань (допомагає запобігти спаму, справді)",
|
||||
"participantsTitle": "Учасники",
|
||||
"shortName": "Коротка Назва",
|
||||
"shortNamePlaceholder": "What short tag should be used to identify your Challenge?",
|
||||
"shortNamePlaceholder": "Яку коротку мітку слід використовувати для вашого випробування?",
|
||||
"updateChallenge": "Оновити Випробування",
|
||||
"haveNoChallenges": "Ця группа не має Випробувань",
|
||||
"loadMore": "Докладніше",
|
||||
|
|
@ -129,10 +129,10 @@
|
|||
"summaryRequired": "Необхідне резюме",
|
||||
"summaryTooLong": "Резюме занадто коротке",
|
||||
"descriptionRequired": "Необхідний опис",
|
||||
"locationRequired": "Location of challenge is required ('Add to')",
|
||||
"locationRequired": "Потрібно місцезнаходження випробування ('Додати')",
|
||||
"categoiresRequired": "Потрібно вибрати одну чи більше категорій",
|
||||
"viewProgressOf": "Подивитися прогрес учасника",
|
||||
"viewProgress": "View Progress",
|
||||
"viewProgress": "Показати прогерс",
|
||||
"selectMember": "Вибрати учасника",
|
||||
"confirmKeepChallengeTasks": "Чи бажаєте залишити задачі цього Випробування?",
|
||||
"selectParticipant": "Вибрати Учасника"
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
|
||||
"weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)",
|
||||
"onboarding": "Guidance with setting up your Habitica account",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "Your Quest has Begun",
|
||||
"invitedQuest": "Invited to Quest",
|
||||
"kickedGroup": "Kicked from group",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "Generate",
|
||||
"getCodes": "Отримати коди",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "Enabled",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "invalid url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "提醒:别忘记来签到完成任务并得到奖励!",
|
||||
"weeklyRecaps": "过去一周内你的活跃账号总结 (注意: 由于性能的问题,当前不可用,但我们希望有一个备份并很快再次发送电子邮件!)",
|
||||
"onboarding": "设置你的habitica账户",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "你的任务已经开始",
|
||||
"invitedQuest": "任务邀请",
|
||||
"kickedGroup": "从小组踢出",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "生成",
|
||||
"getCodes": "获取代码",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "已启用",
|
||||
"webhookURL": "Webhook链接",
|
||||
"invalidUrl": "无效的url",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
"importantAnnouncements": "提醒:登入以完成任務以及獲得獎勵",
|
||||
"weeklyRecaps": "上個星期你的帳戶活動彙整 (注意:這個彙整可能會因為系統效能而關閉,但是我們會快點回復並且趕快寄給你!)",
|
||||
"onboarding": "指引設定你的Habitica帳號",
|
||||
"majorUpdates": "Important announcements",
|
||||
"questStarted": "你的任務開始了",
|
||||
"invitedQuest": "受邀參與任務",
|
||||
"kickedGroup": "從群組中剔除",
|
||||
|
|
@ -156,6 +157,7 @@
|
|||
"generate": "產生",
|
||||
"getCodes": "得到驗證碼",
|
||||
"webhooks": "Webhooks",
|
||||
"webhooksInfo": "Habitica provides webhooks so that when certain actions occur in your account, information can be sent to a script on another website. You can specify those scripts here. Be careful with this feature because specifying an incorrect URL can cause errors or slowness in Habitica. For more information, see the wiki's <a target=\"_blank\" href=\"https://habitica.wikia.com/wiki/Webhooks\">Webhooks</a> page.",
|
||||
"enabled": "啟用",
|
||||
"webhookURL": "Webhook URL",
|
||||
"invalidUrl": "無效的網址",
|
||||
|
|
|
|||
BIN
website/raw_sprites/spritesmith_large/scene_dailies.png
Normal file
BIN
website/raw_sprites/spritesmith_large/scene_dailies.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.4 KiB |
|
|
@ -3,7 +3,7 @@ import { authWithHeaders } from '../../middlewares/auth';
|
|||
let api = {};
|
||||
|
||||
// @TODO export this const, cannot export it from here because only routes are exported from controllers
|
||||
const LAST_ANNOUNCEMENT_TITLE = 'NOVEMBER BACKGROUNDS AND ARMOIRE ITEMS';
|
||||
const LAST_ANNOUNCEMENT_TITLE = 'FEATURED WIKI: MAGE’S TOWER; UNIQUE USERNAMES COMING SOON!';
|
||||
const worldDmg = { // @TODO
|
||||
bailey: false,
|
||||
};
|
||||
|
|
@ -30,14 +30,20 @@ api.getNews = {
|
|||
<div class="mr-3 ${baileyClass}"></div>
|
||||
<div class="media-body">
|
||||
<h1 class="align-self-center">${res.t('newStuff')}</h1>
|
||||
<h2>11/6/2018 - ${LAST_ANNOUNCEMENT_TITLE}</h2>
|
||||
<h2>11/8/2018 - ${LAST_ANNOUNCEMENT_TITLE}</h2>
|
||||
</div>
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="promo_armoire_backgrounds_201811 center-block"></div>
|
||||
<p>We’ve added three new backgrounds to the Background Shop! Now your avatar can look shady in a Back Alley, stare in awe at a Glowing Mushroom Cave, or curl up in a Cozy Bedroom. Check them out under User Icon > Backgrounds!</p>
|
||||
<p>Plus, there’s new gold-purchasable equipment in the Enchanted Armoire, including the Blue Loungewear Set. Better work hard on your real-life tasks to earn all the pieces! Enjoy :)</p>
|
||||
<div class="small mb-3">by Leephon, FirozTaverbi, GeraldThePixel, Vampitch, Mewrose, eyenne, shanaqui, and SabreCat</div>
|
||||
<h3>Blog Post: The Mage's Tower</h3>
|
||||
<p>This month's <a href='https://habitica.wordpress.com/2018/11/07/the-mages-tower/' target='_blank'>featured Wiki article</a> is about The Mage's Tower! We hope that it will help you as customize Habitica to fit your goals and needs. Be sure to check it out, and let us know what you think by reaching out on <a href='https://twitter.com/habitica' target='_blank'>Twitter</a>, <a href='http://blog.habitrpg.com' target='_blank'>Tumblr</a>, and <a href='https://facebook.com/habitica' target='_blank'>Facebook</a>.</p>
|
||||
<div class="small mb-3">by shanaqui and the Wiki Wizards</div>
|
||||
<div class="scene_dailies center-block"></div>
|
||||
<h3>Unique Usernames are Coming!</h3>
|
||||
<p>Hello Habiticans! Next week, we will complete the transition from login names to unique usernames. We're making this change so it’s easier to find and invite your friends to Parties, Guilds, and Challenges, mention people in chat, and so that we can introduce even more useful social features in the future.</p>
|
||||
<p>You can check and confirm (or change) your current Username in <a href='/user/settings/site' target='_blank'>Settings</a>.</p>
|
||||
<p>Once you’ve confirmed, you’ll receive a special veteran pet as a reward! If you’d like to learn more about this change, this <a href='https://habitica.wikia.com/wiki/Player_Names' target='_blank'>Wiki page</a> has more detailed information. Thanks again for being part of our community!</p>
|
||||
<div class="small mb-3">by Beffymaroo, SabreCat, Apollo, Piyo, viirus, Paglias, and TheHollidayInn</div>
|
||||
<div class="promo_veteran_pets center-block"></div>
|
||||
</div>
|
||||
`,
|
||||
});
|
||||
|
|
|
|||
|
|
@ -481,6 +481,7 @@ let schema = new Schema({
|
|||
importantAnnouncements: {$type: Boolean, default: true},
|
||||
weeklyRecaps: {$type: Boolean, default: true},
|
||||
onboarding: {$type: Boolean, default: true},
|
||||
majorUpdates: {$type: Boolean, default: true},
|
||||
},
|
||||
pushNotifications: {
|
||||
unsubscribeFromAll: {$type: Boolean, default: false},
|
||||
|
|
@ -492,6 +493,7 @@ let schema = new Schema({
|
|||
invitedGuild: {$type: Boolean, default: true},
|
||||
questStarted: {$type: Boolean, default: true},
|
||||
invitedQuest: {$type: Boolean, default: true},
|
||||
majorUpdates: {$type: Boolean, default: true},
|
||||
},
|
||||
suppressModals: {
|
||||
levelUp: {$type: Boolean, default: false},
|
||||
|
|
|
|||
Loading…
Reference in a new issue