+
+
+
-
-
-
-
- {{ $t('addTask') }}
-
@@ -211,6 +217,7 @@
:search-text="searchTextThrottled"
:selected-tags="selectedTags"
@editTask="editTask"
+ @taskSummary="taskSummary"
@openBuyDialog="openBuyDialog($event)"
/>
@@ -345,7 +352,7 @@
}
.create-task-area {
- top: -2.5rem;
+ top: 1px;
}
.drag {
@@ -381,6 +388,7 @@ import cloneDeep from 'lodash/cloneDeep';
import draggable from 'vuedraggable';
import TaskColumn from './column';
import TaskModal from './taskModal';
+import TaskSummary from './taskSummary';
import spells from './spells';
import markdown from '@/directives/markdown';
@@ -401,6 +409,7 @@ export default {
components: {
TaskColumn,
TaskModal,
+ TaskSummary,
spells,
brokenTaskModal,
draggable,
@@ -524,13 +533,19 @@ export default {
};
this.newTag = null;
},
+ // Need Vue.nextTick() otherwise the first time the modal is not rendered
editTask (task) {
this.editingTask = cloneDeep(task);
- // Necessary otherwise the first time the modal is not rendered
Vue.nextTick(() => {
this.$root.$emit('bv::show::modal', 'task-modal');
});
},
+ taskSummary (task) {
+ this.editingTask = cloneDeep(task);
+ Vue.nextTick(() => {
+ this.$root.$emit('bv::show::modal', 'task-summary');
+ });
+ },
createTask (type) {
this.openCreateBtn = false;
this.creatingTask = taskDefaults({ type, text: '' }, this.user);
diff --git a/website/client/src/components/tasks/yesterdailyModal.vue b/website/client/src/components/tasks/yesterdailyModal.vue
index 0a24fbac8a..1c12e39fb8 100644
--- a/website/client/src/components/tasks/yesterdailyModal.vue
+++ b/website/client/src/components/tasks/yesterdailyModal.vue
@@ -84,6 +84,7 @@
import moment from 'moment';
import { mapState } from '@/libs/store';
import scoreTask from '@/mixins/scoreTask';
+import sync from '@/mixins/sync';
import Task from './task';
import LoadingSpinner from '../ui/loadingSpinner';
@@ -92,7 +93,7 @@ export default {
Task,
LoadingSpinner,
},
- mixins: [scoreTask],
+ mixins: [scoreTask, sync],
props: {
yesterDailies: {
type: Array,
@@ -180,6 +181,7 @@ export default {
this.isLoading = false;
this.$root.$emit('bv::hide::modal', 'yesterdaily');
+ if (this.$route.fullPath.indexOf('task-information') !== -1) this.sync();
},
},
};
diff --git a/website/client/src/libs/staffList.js b/website/client/src/libs/staffList.js
index 50513e8a68..8f96e907eb 100644
--- a/website/client/src/libs/staffList.js
+++ b/website/client/src/libs/staffList.js
@@ -29,6 +29,11 @@ export default [
type: 'Staff',
uuid: '61b2c855-0a30-444c-bcc6-1cac876460b0',
},
+ {
+ name: 'heyeilatan',
+ type: 'Staff',
+ uuid: 'f4e5c6da-0617-48bf-b3bd-9f97636774a8',
+ },
{
name: 'Alys',
type: 'Moderator',
diff --git a/website/client/src/mixins/scoreTask.js b/website/client/src/mixins/scoreTask.js
index 91cf72ea4d..fdd1377c71 100644
--- a/website/client/src/mixins/scoreTask.js
+++ b/website/client/src/mixins/scoreTask.js
@@ -15,24 +15,8 @@ export default {
}),
},
methods: {
- async beforeTaskScore (task) {
- const { user } = this;
- if (this.castingSpell) return false;
-
- if (task.group.approval.required && !task.group.approval.approved) {
- task.group.approval.requested = true;
- const { data: groupPlans } = await this.$store.dispatch('guilds:getGroupPlans');
- const groupPlan = groupPlans.find(g => g.id === task.group.id);
- if (groupPlan) {
- const managers = Object.keys(groupPlan.managers);
- managers.push(groupPlan.leader);
- if (managers.indexOf(user._id) !== -1) {
- task.group.approval.approved = true;
- }
- }
- }
-
- return true;
+ async beforeTaskScore () {
+ return (!this.castingSpell);
},
playTaskScoreSound (task, direction) {
switch (task.type) { // eslint-disable-line default-case
diff --git a/website/client/src/mixins/syncTask.js b/website/client/src/mixins/syncTask.js
new file mode 100644
index 0000000000..f4ab03239f
--- /dev/null
+++ b/website/client/src/mixins/syncTask.js
@@ -0,0 +1,32 @@
+import clone from 'lodash/clone';
+
+export default {
+ methods: {
+ async syncTask () {
+ if (this.groupId || this.task?.group.id) {
+ const members = await this.$store.dispatch('members:getGroupMembers', {
+ groupId: this.groupId || this.task?.group.id,
+ includeAllPublicFields: true,
+ });
+ this.members = members;
+ this.membersNameAndId = [];
+ this.members.forEach(member => {
+ this.membersNameAndId.push({
+ id: member._id,
+ name: member.profile.name,
+ addlText: `@${member.auth.local.username}`,
+ });
+ this.memberNamesById[member._id] = member.profile.name;
+ });
+ this.assignedMembers = [];
+ if (this.task?.group?.assignedUsers) {
+ this.assignedMembers = this.task.group.assignedUsers;
+ }
+ }
+
+ // @TODO: Task modal component is mutating a prop
+ // and that causes issues. We need to not copy the prop similar to group modals
+ if (this.task) this.checklist = clone(this.task.checklist);
+ },
+ },
+};
diff --git a/website/client/src/store/actions/tasks.js b/website/client/src/store/actions/tasks.js
index 863f137578..e6fe10e488 100644
--- a/website/client/src/store/actions/tasks.js
+++ b/website/client/src/store/actions/tasks.js
@@ -204,7 +204,7 @@ export async function createGroupTasks (store, payload) {
}
export async function assignTask (store, payload) {
- const response = await axios.post(`/api/v4/tasks/${payload.taskId}/assign/${payload.userId}`);
+ const response = await axios.post(`/api/v4/tasks/${payload.taskId}/assign`, payload.assignedUserIds);
return response.data.data;
}
diff --git a/website/client/src/store/getters/tasks.js b/website/client/src/store/getters/tasks.js
index 80038a1020..859201de84 100644
--- a/website/client/src/store/getters/tasks.js
+++ b/website/client/src/store/getters/tasks.js
@@ -84,7 +84,8 @@ export function canEdit (store) {
const user = store.state.user.data;
const userId = user.id || user._id;
- const isUserAdmin = user.permissions && user.permissions.challengeAdmin;
+ const isUserAdmin = user.permissions
+ && (user.permissions.challengeAdmin || user.permissions.fullAccess);
const isUserGroupLeader = group && (group.leader
&& group.leader._id === userId);
const isUserGroupManager = group && (group.managers
@@ -101,11 +102,7 @@ export function canEdit (store) {
}
break;
case 'group':
- if (!onUserDashboard) {
- isUserCanEditTask = isUserGroupLeader || isUserGroupManager || isUserAdmin;
- } else {
- isUserCanEditTask = true;
- }
+ isUserCanEditTask = isUserGroupLeader || isUserGroupManager || isUserAdmin;
break;
default:
break;
@@ -114,15 +111,20 @@ export function canEdit (store) {
};
}
-function _nonInteractive (task) {
- return (task.group && task.group.id && !task.userId)
- || (task.challenge && task.challenge.id && !task.userId)
- || (task.group && task.group.approval && task.group.approval.requested
- && task.type !== 'habit');
+function _nonInteractive (task, userId) {
+ if (task.userId) return false;
+ if (task.challenge && task.challenge.id) return true;
+ if (
+ task.group && task.group.assignedUsers
+ && task.group.assignedUsers.length > 0
+ && task.group.assignedUsers.indexOf(userId) === -1
+ ) return true;
+ return false;
}
export function getTaskClasses (store) {
const userPreferences = store.state.user.data.preferences;
+ const userId = store.state.user.data._id;
// Purpose can be one of the following strings:
// Edit Modal: edit-modal-bg, edit-modal-text, edit-modal-icon
@@ -169,9 +171,14 @@ export function getTaskClasses (store) {
case 'control':
if (type === 'todo' || type === 'daily') {
- if (task.completed || (!shouldDo(dueDate, task, userPreferences) && type === 'daily')) {
+ if (task.completed
+ || (!shouldDo(dueDate, task, userPreferences) && type === 'daily')
+ || (task.group && task.group.assignedUsersDetail
+ && task.group.assignedUsersDetail[userId]
+ && task.group.assignedUsersDetail[userId].completed)
+ ) {
return {
- bg: _nonInteractive(task) ? 'task-disabled-daily-todo-control-bg-noninteractive' : 'task-disabled-daily-todo-control-bg',
+ bg: _nonInteractive(task, userId) ? 'task-disabled-daily-todo-control-bg-noninteractive' : 'task-disabled-daily-todo-control-bg',
checkbox: 'task-disabled-daily-todo-control-checkbox',
inner: 'task-disabled-daily-todo-control-inner',
content: 'task-disabled-daily-todo-control-content',
@@ -179,28 +186,28 @@ export function getTaskClasses (store) {
}
return {
- bg: _nonInteractive(task) ? `task-${color}-control-bg-noninteractive` : `task-${color}-control-bg`,
+ bg: _nonInteractive(task, userId) ? `task-${color}-control-bg-noninteractive` : `task-${color}-control-bg`,
checkbox: `task-${color}-control-checkbox`,
inner: `task-${color}-control-inner-daily-todo`,
icon: `task-${color}-control-icon`,
};
} if (type === 'reward') {
return {
- bg: _nonInteractive(task) ? 'task-reward-control-bg-noninteractive' : 'task-reward-control-bg',
+ bg: _nonInteractive(task, userId) ? 'task-reward-control-bg-noninteractive' : 'task-reward-control-bg',
};
} if (type === 'habit') {
return {
up: task.up
? {
- bg: _nonInteractive(task) ? `task-${color}-control-bg-noninteractive` : `task-${color}-control-bg`,
- inner: _nonInteractive(task) ? `task-${color}-control-inner-habit-noninteractive` : `task-${color}-control-inner-habit`,
+ bg: _nonInteractive(task, userId) ? `task-${color}-control-bg-noninteractive` : `task-${color}-control-bg`,
+ inner: _nonInteractive(task, userId) ? `task-${color}-control-inner-habit-noninteractive` : `task-${color}-control-inner-habit`,
icon: `task-${color}-control-icon`,
}
: { bg: 'task-disabled-habit-control-bg', inner: 'task-disabled-habit-control-inner', icon: `task-${color}-control-icon` },
down: task.down
? {
- bg: _nonInteractive(task) ? `task-${color}-control-bg-noninteractive` : `task-${color}-control-bg`,
- inner: _nonInteractive(task) ? `task-${color}-control-inner-habit-noninteractive` : `task-${color}-control-inner-habit`,
+ bg: _nonInteractive(task, userId) ? `task-${color}-control-bg-noninteractive` : `task-${color}-control-bg`,
+ inner: _nonInteractive(task, userId) ? `task-${color}-control-inner-habit-noninteractive` : `task-${color}-control-inner-habit`,
icon: `task-${color}-control-icon`,
}
: { bg: 'task-disabled-habit-control-bg', inner: 'task-disabled-habit-control-inner', icon: `task-${color}-control-icon` },
diff --git a/website/client/tests/unit/store/getters/tasks/canEdit.spec.js b/website/client/tests/unit/store/getters/tasks/canEdit.spec.js
index e736a77493..15962b7030 100644
--- a/website/client/tests/unit/store/getters/tasks/canEdit.spec.js
+++ b/website/client/tests/unit/store/getters/tasks/canEdit.spec.js
@@ -35,7 +35,10 @@ describe('canEdit getter', () => {
});
it('can Edit task in own dashboard', () => {
expect(store.getters['tasks:canEdit'](task, 'challenge', true, null, challenge)).to.equal(true);
- expect(store.getters['tasks:canEdit'](task, 'group', true, group, null)).to.equal(true);
+ });
+
+ it('cannot Edit group task in own dashboard', () => {
+ expect(store.getters['tasks:canEdit'](task, 'group', true, group, null)).to.equal(false);
});
it('can Edit any challenge task if admin', () => {
diff --git a/website/client/tests/unit/store/getters/tasks/getTaskClasses.spec.js b/website/client/tests/unit/store/getters/tasks/getTaskClasses.spec.js
index 4782eafeac..ad05f73a6c 100644
--- a/website/client/tests/unit/store/getters/tasks/getTaskClasses.spec.js
+++ b/website/client/tests/unit/store/getters/tasks/getTaskClasses.spec.js
@@ -143,7 +143,14 @@ describe('getTaskClasses getter', () => {
});
it('returns noninteractive classes and padlock icons for group board tasks', () => {
- const task = { type: 'todo', value: 2, group: { id: 'group-id' } };
+ const task = {
+ type: 'todo',
+ value: 2,
+ group: {
+ id: 'group-id',
+ assignedUsers: ['not-me'],
+ },
+ };
expect(getTaskClasses(task, 'control')).to.deep.equal({
bg: 'task-good-control-bg-noninteractive',
checkbox: 'task-good-control-checkbox',
diff --git a/website/common/locales/ar/achievements.json b/website/common/locales/ar/achievements.json
index 4d8483c4f5..167271f253 100755
--- a/website/common/locales/ar/achievements.json
+++ b/website/common/locales/ar/achievements.json
@@ -119,5 +119,21 @@
"achievementDomesticatedText": "لقد فقس جميع الألوان القياسية للحيوانات الأليفة المستأنسة: النمس ، وخنزير غينيا ، والديك ، والخنزير الطائر ، والجرذ ، والأرنب ، والحصان ، والبقر!",
"achievementDomesticated": "ا-يا-ا-يا-يو",
"achievementBirdsOfAFeatherModalText": "تقوم بجمع كل الحيوانات الأليفة الطائرة!",
- "achievementZodiacZookeeperText": "لقد فقس جميع الألوان القياسية للحيوانات الأليفة في الأبراج: الجرذ ، البقرة ، الأرنب ، الأفعى ، الحصان ، الأغنام ، القرد ، الديك ، الذئب ، النمر ، الخنزير الطائر ، والتنين!"
+ "achievementZodiacZookeeperText": "لقد فقس جميع الألوان القياسية للحيوانات الأليفة في الأبراج: الجرذ ، البقرة ، الأرنب ، الأفعى ، الحصان ، الأغنام ، القرد ، الديك ، الذئب ، النمر ، الخنزير الطائر ، والتنين!",
+ "achievementGroupsBeta2022ModalText": "لقد ساعدت أنت ومجموعاتك Habitica من خلال الاختبار وتقديم التعليقات!",
+ "achievementGroupsBeta2022": "اختبار تجريبي تفاعلي",
+ "achievementGroupsBeta2022Text": "قدمت أنت ومجموعتك تعليقات لا تقدر بثمن لمساعدة Habitica في الاختبار.",
+ "achievementReptacularRumble": "الدمدمة الزاحفة",
+ "achievementReptacularRumbleModalText": "لقد جمعت كل الزواحف الأليفة!",
+ "achievementReptacularRumbleText": "لقد فقس جميع الألوان القياسية للحيوانات الأليفة الزواحف: التمساح ، الزاحف المجنح ، الأفعى ، ترايسيراتوبس ، السلحفاة ، التيرانوصور ريكس ، وفيلوسيرابتور!",
+ "achievementBirdsOfAFeather": "متشابهون",
+ "achievementZodiacZookeeper": "حارس حديقة الحيوانات الفلكية",
+ "achievementShadyCustomerText": "لقد جمع كل حيوانات الظل الأليفة.",
+ "achievementShadyCustomerModalText": "لقد قمت بتجميع كل حيوانات الظل الأليفة!",
+ "achievementZodiacZookeeperModalText": "لقد قمت بتجميع كل الحيوانات الفلكية الأليفة!",
+ "achievementBirdsOfAFeatherText": "لقد فقس جميع الألوان القياسية للحيوانات الأليفة الطائرة: الخنزير الطائر ، البومة ، الببغاء ، الزاحف المجنح ، الجريفون ، فالكون ، الطاووس ، والديك!",
+ "achievementShadeOfItAllModalText": "لقد قمت بترويض كل حيوانات الظل للركوب!",
+ "achievementShadyCustomer": "زبون الظل",
+ "achievementShadeOfItAll": "ظل كل شيء",
+ "achievementShadeOfItAllText": "لقد ربي كل حيوانات الظل للترويض."
}
diff --git a/website/common/locales/ar/backgrounds.json b/website/common/locales/ar/backgrounds.json
index dbe92ebcc8..07dce4ccfc 100755
--- a/website/common/locales/ar/backgrounds.json
+++ b/website/common/locales/ar/backgrounds.json
@@ -409,5 +409,18 @@
"backgroundArchaeologicalDigNotes": "Unearth secrets of the ancient past at an Archaeological Dig.",
"backgroundScribesWorkshopText": "Scribe's Workshop",
"backgroundScribesWorkshopNotes": "Write your next great scroll in a Scribe's Workshop.",
- "backgrounds022019": "مجموعة 57: تم إصدارها في فبراير 2019"
+ "backgrounds022019": "مجموعة 57: تم إصدارها في فبراير 2019",
+ "backgroundBirthdayPartyText": "حفلة عيد ميلاد",
+ "backgrounds012020": "مجموعة 68: تم طرحه في يناير 2020",
+ "backgroundMedievalKitchenText": "مطبخ القرون الوسطى",
+ "backgroundMedievalKitchenNotes": "اطبخ العاصفة في مطبخ القرون الوسطى.",
+ "backgroundBirthdayPartyNotes": "احتفل بعيد ميلاد ال Habitican المفضل لديك.",
+ "backgroundDuckPondText": "بركة بط",
+ "backgroundOldFashionedBakeryText": "مخبز قديم الطراز",
+ "backgroundValentinesDayFeastingHallText": "قاعة عيد الحب",
+ "backgroundOldFashionedBakeryNotes": "استمتع بالنكهات اللذيذة خارج مخبز قديم الطراز.",
+ "backgroundDuckPondNotes": "أطعم الطيور المائية في بركة البط.",
+ "backgroundValentinesDayFeastingHallNotes": "اشعر بالحب في قاعة احتفالات عيد الحب.",
+ "hideLockedBackgrounds": "إخفاء الخلفيات المقفلة",
+ "backgrounds032019": "SET 58: تم إصداره في مارس 2019"
}
diff --git a/website/common/locales/ar/challenge.json b/website/common/locales/ar/challenge.json
index f99193ced1..9a5931f029 100755
--- a/website/common/locales/ar/challenge.json
+++ b/website/common/locales/ar/challenge.json
@@ -103,5 +103,6 @@
"selectParticipant": "اختر مشارك",
"wonChallengeDesc": "<%= إسم التحدي %> إخترتك لتكون الفائز!تم تسجيل فوزك في \"إنجازاتك\".",
"yourReward": "مكافئاتك",
- "filters": "التصفيات"
+ "filters": "التصفيات",
+ "removeTasks": "إزالة المهام"
}
diff --git a/website/common/locales/ar/generic.json b/website/common/locales/ar/generic.json
index 87b2ff812d..92cd97ee04 100755
--- a/website/common/locales/ar/generic.json
+++ b/website/common/locales/ar/generic.json
@@ -2,7 +2,7 @@
"languageName": "العربية",
"stringNotFound": "سلسلة المحارف '<%= string %>' لم توجد.",
"habitica": "Habitica",
- "onward": "Onward!",
+ "onward": "إلي الأمام!",
"done": "Done",
"gotIt": "Got it!",
"titleTimeTravelers": "مسافرين عبر الزمن",
@@ -25,7 +25,7 @@
"user": "المستخدم",
"market": "المتجر",
"newSubscriberItem": "You have new
Mystery Items",
- "subscriberItemText": "كل شهر يحصل المشتركون على غرض غامض. عادةً يتم إصداره قبل نهاية الشهر بأسبوع. راجع صفحة الويكي \"الغرض الغامض\" للمزيد من المعلومات.",
+ "subscriberItemText": "كل شهر يحصل المشتركون على غرض غامض. عادةً يصبح متاحا في بداية الشهر. راجع صفحة الويكي \"الغرض الغامض\" للمزيد من المعلومات.",
"all": "الجميع",
"none": "لا شيء",
"more": "<%= count %> more",
@@ -190,10 +190,28 @@
"dismissAll": "Dismiss All",
"messages": "Messages",
"emptyMessagesLine1": "You don't have any messages",
- "emptyMessagesLine2": "Send a message to start a conversation!",
+ "emptyMessagesLine2": "يمكنك إرسال رسالة جديدة إلى مستخدم من خلال زيارة ملفه الشخصي والنقر على زر \"رسالة\".",
"userSentMessage": "
<%- user %> sent you a message",
"letsgo": "لنذهب!",
"selected": "Selected",
"howManyToBuy": "How many would you like to buy?",
- "contactForm": "Contact the Moderation Team"
+ "contactForm": "Contact the Moderation Team",
+ "congratulations": "تهانينا!",
+ "finish": "نهاية",
+ "onboardingAchievs": "إنجازات الإعداد",
+ "reportBugHeaderDescribe": "يُرجى وصف الخطأ الذي تواجهه وسيتواصل معك فريقنا.",
+ "reportEmailText": "سيتم استخدام هذا فقط للاتصال بك بخصوص تقرير الخطأ.",
+ "reportEmailPlaceholder": "عنوان بريدك الإلكتروني",
+ "reportEmailError": "يرجى تقديم عنوان بريد إلكتروني صالح",
+ "reportDescription": "الوصف",
+ "reportDescriptionText": "قم بتضمين لقطات الشاشة أو أخطاء وحدة التحكم بجافا سكريبت إذا كان ذلك مفيدًا.",
+ "reportDescriptionPlaceholder": "صف الخطأ بالتفصيل هنا",
+ "submitBugReport": "إرسال تقرير الخطأ",
+ "reportSent": "تم إرسال تقرير الخطأ!",
+ "askQuestion": "طرح سؤال",
+ "emptyReportBugMessage": "الإبلاغ عن رسالة خطأ مفقودة",
+ "loadEarlierMessages": "تحميل الرسائل السابقة",
+ "demo": "تجريبي",
+ "options": "الإعدادات",
+ "reportSentDescription": "سنعود إليك بمجرد أن تتاح الفرصة لفريقنا للتحقيق في الأمر. شكرا على الإبلاغ عن المشكلة."
}
diff --git a/website/common/locales/ar/inventory.json b/website/common/locales/ar/inventory.json
index 8bf3555ced..dc4c7420f2 100755
--- a/website/common/locales/ar/inventory.json
+++ b/website/common/locales/ar/inventory.json
@@ -4,5 +4,7 @@
"eggsItemType": "بيض",
"hatchingPotionsItemType": "جرعات الفقس",
"specialItemType": "حاجات خاصة",
- "lockedItem": "حاجة مقفلة"
+ "lockedItem": "حاجة مقفلة",
+ "petAndMount": "حيوان أليف وحيوان للركوب",
+ "allItems": "كل العناصر"
}
diff --git a/website/common/locales/ar/overview.json b/website/common/locales/ar/overview.json
index 1f048b9357..70e5736afd 100755
--- a/website/common/locales/ar/overview.json
+++ b/website/common/locales/ar/overview.json
@@ -1,10 +1,10 @@
{
"needTips": "تحتاج بعض النصائح حول كيفية البدء؟ هنا دليل مباشر!",
"step1": "الخطوة ١: أدخل المهام",
- "webStep1Text": "Habitica لا شيء بدون أهداف حقيقية، لذا أدخل بعض المهام. يمكنك إضافة المزيد في وقت لاحق وأنت تفكر بهم! يمكن إضافة جميع المهام عن طريق النقر على الزر \"إنشاء\" باللون الأخضر.\n* ** إعداد [المهام](http://habitica.wikia.com/wiki/To-Dos): ** أدخل المهام التي تقوم بها مرة واحدة أو نادراً ما في عمود المهام، كل مهمة على حدة. يمكنك أيضاً الضغط على المهام لتحريرها وإضافة قوائم المراجعة وتواريخ الاستحقاق والمزيد!\n* ** إعداد [اليوميات](http://habitica.wikia.com/wiki/Dailies): ** أدخل الأنشطة التي تحتاج فعلها يوميًا أو في يوم معين من الأسبوع أو الشهر أو السنة في عمود اليوميات. انقر على المهمة اليومية لتعديل موعد استحقاقها و/أو تحديد تاريخ البدء. يمكنك أيضًا جعلها مستحقة على أساس متكرر، على سبيل المثال، كل 3 أيام.\n* ** إعداد [العادات](http://habitica.wikia.com/wiki/Habits): ** أدخل العادات التي تريد إقامتها في عمود العادات. يمكنك تحرير العادة لتغييرها إلى عادة جيدة :heavy_plus_sign: أو عادة سيئة :heavy_minus_sign:\n* ** إعداد [المكافآت](http://habitica.wikia.com/wiki/Rewards): ** بالإضافة إلى المكافآت المقدمة في اللعبة، أضف الأنشطة أو الأشياء التي تريد استخدامها كدافع إلى عمود المكافآت. من المهم أن تمنح نفسك فترة راحة أو تسمح ببعض التساهل باعتدال!\n* إذا كنت بحاجة إلى إلهام للمهام التي يمكنك إضافتها، يمكنك الاطلاع على صفحات الويكي عن [نموذج عادات](http://habitica.wikia.com/wiki/Sample_Habits)، و[نموذج يوميات](http://habitica.wikia.com/wiki/Sample_Dailies)، و[نموذج مهام](http://habitica.wikia.com/wiki/Sample_To-Dos)، و[نموذج مكافآت](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).",
+ "webStep1Text": "Habitica لا شيء بدون أهداف حقيقية، لذا أدخل بعض المهام. يمكنك إضافة المزيد في وقت لاحق وأنت تفكر بهم! يمكن إضافة جميع المهام عن طريق النقر على الزر \"إنشاء\" باللون الأخضر.\n* ** إعداد [المهام](https://habitica.wikia.com/wiki/To-Dos): ** أدخل المهام التي تقوم بها مرة واحدة أو نادراً ما في عمود المهام، كل مهمة على حدة. يمكنك أيضاً الضغط على المهام لتحريرها وإضافة قوائم المراجعة وتواريخ الاستحقاق والمزيد!\n* ** إعداد [اليوميات](https://habitica.wikia.com/wiki/Dailies): ** أدخل الأنشطة التي تحتاج فعلها يوميًا أو في يوم معين من الأسبوع أو الشهر أو السنة في عمود اليوميات. انقر على المهمة اليومية لتعديل موعد استحقاقها و/أو تحديد تاريخ البدء. يمكنك أيضًا جعلها مستحقة على أساس متكرر، على سبيل المثال، كل 3 أيام.\n* ** إعداد [العادات](https://habitica.wikia.com/wiki/Habits): ** أدخل العادات التي تريد إقامتها في عمود العادات. يمكنك تحرير العادة لتغييرها إلى عادة جيدة :heavy_plus_sign: أو عادة سيئة :heavy_minus_sign:\n* ** إعداد [المكافآت](https://habitica.wikia.com/wiki/Rewards): ** بالإضافة إلى المكافآت المقدمة في اللعبة، أضف الأنشطة أو الأشياء التي تريد استخدامها كدافع إلى عمود المكافآت. من المهم أن تمنح نفسك فترة راحة أو تسمح ببعض التساهل باعتدال!\n* إذا كنت بحاجة إلى إلهام للمهام التي يمكنك إضافتها، يمكنك الاطلاع على صفحات الويكي عن [نموذج عادات](https://habitica.wikia.com/wiki/Sample_Habits)، و[نموذج يوميات](http://habitica.wikia.com/wiki/Sample_Dailies)، و[نsموذج مهام](https://habitica.wikia.com/wiki/Sample_To-Dos)، و[نموذج مكافآت](https://habitica.wikia.com/wiki/Sample_Custom_Rewards).",
"step2": "الخطوة 2: اكسب نقاط عن طريق القيام بأشياء في الحياة الحقيقية",
- "webStep2Text": "مستوى",
+ "webStep2Text": "الآن ، ابدأ في معالجة أهدافك من القائمة! عندما تكمل المهام وتحقق منها في Habitica ، ستحصل على [الخبرة] (https://habitica.fandom.com/wiki/Experience_Points) ، مما يساعدك على الارتقاء إلى المستوى الأعلى ، و [الذهب] (https: // Habitica. fandom.com/wiki/Gold_Points) ، والذي يسمح لك بشراء مكافأت. إذا وقعت في عادات سيئة أو فاتتك يومياتك ، فستفقد [الصحة] (https://habitica.fandom.com/wiki/Health_Points). بهذه الطريقة ، تعمل أشرطة Habiticaالخبرة والصحة كمؤشر ممتع لتقدمك نحو أهدافك. ستبدأ في رؤية حياتك الحقيقية تتحسن مع تقدم شخصيتك في اللعبة.",
"step3": "الخطوة ٣: كيّف واستكشف Habitica",
- "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with [tags](http://habitica.wikia.com/wiki/Tags) (edit a task to add them).\n * Customize your [avatar](http://habitica.wikia.com/wiki/Avatar) by clicking the user icon in the upper-right corner.\n * Buy your [Equipment](http://habitica.wikia.com/wiki/Equipment) under Rewards or from the [Shops](<%= shopUrl %>), and change it under [Inventory > Equipment](<%= equipUrl %>).\n * Connect with other users via the [Tavern](http://habitica.wikia.com/wiki/Tavern).\n * Starting at Level 3, hatch [Pets](http://habitica.wikia.com/wiki/Pets) by collecting [eggs](http://habitica.wikia.com/wiki/Eggs) and [hatching potions](http://habitica.wikia.com/wiki/Hatching_Potions). [Feed](http://habitica.wikia.com/wiki/Food) them to create [Mounts](http://habitica.wikia.com/wiki/Mounts).\n * At level 10: Choose a particular [class](http://habitica.wikia.com/wiki/Class_System) and then use class-specific [skills](http://habitica.wikia.com/wiki/Skills) (levels 11 to 14).\n * Form a party with your friends (by clicking [Party](<%= partyUrl %>) in the navigation bar) to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [quests](http://habitica.wikia.com/wiki/Quests) (you will be given a quest at level 15).",
+ "webStep3Text": "بمجرد أن تتعرف على الأساسيات ، يمكنك الحصول على المزيد من Habitica بهذه الميزات الرائعة:\n * تنظيم المهام باستخدام [العلامات] (https://habitica.fandom.com/wiki/Tags) (قم بتحرير مهمة لإضافتها).\n * قم بتخصيص [الشخصية] الخاص بك (https://habitica.fandom.com/wiki/Avatar) بالنقر فوق رمز المستخدم في الزاوية العلوية اليمنى.\n * اشتر [المعدات] (https://habitica.fandom.com/wiki/Equipment) بموجب المكافآت أو من [المتاجر] (<٪ = shopUrl٪>) ، وقم بتغييرها ضمن [المخزون> المعدات] (<٪ = equipUrl٪>).\n * تواصل مع مستخدمين آخرين عبر [المطعم] (https://habitica.fandom.com/wiki/Tavern).\n * افقس[الحيوانات الأليفة] (https://habitica.fandom.com/wiki/ Pets) من خلال جمع [البيض] (https://habitica.fandom.com/wiki/Eggs) و [جرعات الفقس] (https: // Habitica.fandom.com/wiki/Hatching_Potions). [موجز] (https://habitica.fandom.com/wiki/Food) لإنشاء [حيوانات للركوب] (https://habitica.fandom.com/wiki/Mounts).\n * في المستوى 10: اختر [فئة] معينة (https://habitica.fandom.com/wiki/Class_System) ثم استخدم [مهارات] خاصة بالفصل (https://habitica.fandom.com/wiki/Skills) (المستويات من 11 إلى 14).\n * كوّن مجموعة مع أصدقائك (بالنقر فوق [حفلة] (<٪ = partyUrl٪>) في شريط التنقل) للبقاء مسؤولاً وكسب تمرير المهام.\n * اهزم الوحوش وجمع الأشياء في [المهام] (https://habitica.fandom.com/wiki/Quests) (ستحصل على مهمة في المستوى 15).",
"overviewQuestions": "Have questions? Check out the [FAQ](<%= faqUrl %>)! If your question isn't mentioned there, you can ask for further help in the [Habitica Help guild](<%= helpGuildUrl %>).\n\nGood luck with your tasks!"
}
diff --git a/website/common/locales/ar/pets.json b/website/common/locales/ar/pets.json
index 291df777c2..df95936289 100644
--- a/website/common/locales/ar/pets.json
+++ b/website/common/locales/ar/pets.json
@@ -25,8 +25,8 @@
"beastAchievement": "لقد ربحت \"وحش رئيسي \" إنجاز جمع كل الحيوانات الأليفة!",
"beastMasterProgress": "تقدم الوحش الرئيسي",
"premiumPotionNoDropExplanation": "لا يمكن استخدام جرعات التفقيس السحرية على البيض المستلم من المهام.الطريقة الوحيدة للحصول على جرعات التفقيس السحرية هي عن طريق شراؤهم بالأسفل.ليس من المقطورات العشوائية.",
- "dropsExplanationEggs": "أنفق الجواهر لتحصل على المزيد من البيض بسرهة,إذا كنت لاتريد أن تنتظر البيض الأساسي أسقطه, أو كررالتنقيب لإدخارالبيض المنقب
Learn more about the drop system.",
- "dropsExplanation": "احصل على هذه العناصر بشكل أسرع مع الجواهر إذا كنت لا ترغب في انتظار إسقاطها عند إكمال مهمة.
تعرف على المزيد حول نظام الإفلات. ",
+ "dropsExplanationEggs": "أنفق الجواهر لتحصل على المزيد من البيض بسرهة,إذا كنت لاتريد أن تنتظر البيض الأساسي أسقطه, أو كررالتنقيب لإدخارالبيض المنقب
Learn more about the drop system.",
+ "dropsExplanation": "احصل على هذه العناصر بشكل أسرع مع الجواهر إذا كنت لا ترغب في انتظار إسقاطها عند إكمال مهمة.
تعرف على المزيد حول نظام الإفلات. ",
"veteranTiger": "النمر المحارب",
"veteranWolf": "الذئب المحارب",
"etherealLion": "الأسد السماوي",
@@ -77,5 +77,26 @@
"keyToMountsDesc": "حرر جميع العينات القياسية حتى تتمكن من جمعها مرة أخرى. (لا تتأثر عمليات تثبيت المهام وعمليات التثبيت النادرة.)",
"keyToBoth": "مفاتيح رئيسية لبيوت الكلاب",
"releasePetsSuccess": "تم إطلاق حيوانك الأليف القياسي!",
- "mountName": "<%= mount(locale) %> <%= potion(locale) %>"
+ "mountName": "<%= mount(locale) %> <%= potion(locale) %>",
+ "filterByWacky": "أحمق",
+ "sortByColor": "لون",
+ "filterByMagicPotion": "مشروب سحري",
+ "releaseBothSuccess": "لقد تم إطلاق كل حيواناتك الأليفة وحيوانات الركوب القياسية!",
+ "welcomeStable": "مرحبا بكم في الاسطبل!",
+ "mountsReleased": "تم إطلاق حيوانات الركوب القياسية",
+ "hatch": "فقس!",
+ "sortByHatchable": "قابل للفقس",
+ "filterByStandard": "أساسي",
+ "foodTitle": "طعام الحيوانات الاليفة",
+ "welcomeStableText": "مرحبا بكم في الاسطبل! أنا مات ، صاحب الوحش. في كل مرة تكمل فيها مهمة ، سيكون لديك فرصة عشوائية لتلقي بيضة أو جرعة تفقيس لتفقيس الحيوانات الأليفة. عندما تفقس حيوانًا أليفًا ، سيظهر هنا! انقر فوق صورة حيوان أليف لإضافتها إلى صورتك الرمزية. أطعمهم بأطعمة الحيوانات الأليفة التي تجدها وستنمو لتصبح حيوانات ركوب صلبة.",
+ "dragThisFood": "اسحب هذا <%= foodName %> إالي الحيوات وشاهده ينمو!",
+ "filterByQuest": "مغامرة",
+ "standard": "أساسي",
+ "releaseMountsConfirm": "هل أنت متأكد أنك تريد إطلاق كل الحيوانات الأليفة القياسية؟",
+ "releaseMountsSuccess": "لقد تم إطلاق كل حيوانات الركوب القياسية!",
+ "petLikeToEat": "ماذا يحب حيواني الأليف أن يأكل؟",
+ "keyToBothDesc": "حرر جميع الحيوانات الأليفة وحيوانات الركوب القياسية حتى تتمكن من جمعها مرة أخرى. (لا تتأثر Quest Pets / Mounts والحيوانات الأليفة النادرة /حيوانات الركوب.)",
+ "releaseBothConfirm": "هل أنت متأكد من إطلاق حيواناتك الأليفة وحيوانات الركوب القياسية؟",
+ "mountsAndPetsReleased": "الحيوانات الأليفة وحيوانات الركوب القياسية تم إطلاقها",
+ "petLikeToEatText": "ستنمو الحيوانات الأليفة بغض النظر عما تطعمه ، لكنها ستنمو بشكل أسرع إذا أطعمتها طعام الحيوانات الأليفة الذي تفضله أكثر. جرب لمعرفة النمط ، أو شاهد الإجابات هنا:
https: //habitica.fandom. com / wiki / Food_Preferences "
}
diff --git a/website/common/locales/ar/rebirth.json b/website/common/locales/ar/rebirth.json
index 92f9ffd8e0..007fc9df25 100755
--- a/website/common/locales/ar/rebirth.json
+++ b/website/common/locales/ar/rebirth.json
@@ -8,7 +8,8 @@
"rebirthOrb": "Used an Orb of Rebirth to start over after attaining Level <%= level %>.",
"rebirthOrb100": "Used an Orb of Rebirth to start over after attaining Level 100 or higher.",
"rebirthOrbNoLevel": "Used an Orb of Rebirth to start over.",
- "rebirthPop": "Instantly restart your character as a Level 1 Warrior while retaining achievements, collectibles, and equipment. Your tasks and their history will remain but they will be reset to yellow. Your streaks will be removed except from challenge tasks. Your Gold, Experience, Mana, and the effects of all Skills will be removed. All of this will take effect immediately. For more information, see the wiki's
Orb of Rebirth page.",
+ "rebirthPop": "أعد شخصيتك على الفور كمحارب من المستوى 1 مع الاحتفاظ بالإنجازات والمقتنيات والمعدات. ستبقى مهامك ومحفوظاتهم ولكن ستتم إعادة تعيينهم إلى اللون الأصفر. ستتم إزالة عدد سلاسلك المستمرة باستثناء المهام التي تنتمي إلى التحديات وخطط المجموعة. ستتم إزالة الذهب ، والخبرة ، ومانا ، وتأثيرات جميع المهارات. كل هذا سيصبح ساري المفعول على الفور. لمزيد من المعلومات ، راجع صفحة ويكي
Orb of Rebirth .",
"rebirthName": "Orb of Rebirth",
- "rebirthComplete": "You have been reborn!"
+ "rebirthComplete": "You have been reborn!",
+ "nextFreeRebirth": "
<%= الأيام%> days until
FREEنجم إعادة الميلاد"
}
diff --git a/website/common/locales/ar/spells.json b/website/common/locales/ar/spells.json
index 9aa82fe883..ef315e6674 100755
--- a/website/common/locales/ar/spells.json
+++ b/website/common/locales/ar/spells.json
@@ -6,7 +6,7 @@
"spellWizardEarthText": "زلزال",
"spellWizardEarthNotes": "Your mental power shakes the earth and buffs your Party's Intelligence! (Based on: Unbuffed INT)",
"spellWizardFrostText": "صقيع مقشعر",
- "spellWizardFrostNotes": "With one cast, ice freezes all your streaks so they won't reset to zero tomorrow!",
+ "spellWizardFrostNotes": "عن طريق إطلاق تعويذة واحدة، يقوم الجليد بتجميد كل سلاسل تقدمك حتى لا يتم إعادة تعيينها إلى الصفر غدًا!",
"spellWizardFrostAlreadyCast": "You have already cast this today. Your streaks are frozen, and there's no need to cast this again.",
"spellWarriorSmashText": "سحقة متوحشة",
"spellWarriorSmashNotes": "You make a task more blue/less red and deal extra damage to Bosses! (Based on: STR)",
@@ -24,7 +24,7 @@
"spellRogueToolsOfTradeNotes": "Your tricky talents buff your whole Party's Perception! (Based on: Unbuffed PER)",
"spellRogueStealthText": "تسلل",
"spellRogueStealthNotes": "With each cast, a few of your undone Dailies won't cause damage tonight. Their streaks and colors won't change. (Based on: PER)",
- "spellRogueStealthDaliesAvoided": "<%= originalText %> Number of dailies avoided: <%= number %>.",
+ "spellRogueStealthDaliesAvoided": "<%= originalText %> عدد المهام اليومية التي سيتم تجنبها: <%= number %>.",
"spellRogueStealthMaxedOut": "You have already avoided all your dailies; there's no need to cast this again.",
"spellHealerHealText": "الضوء المعالج",
"spellHealerHealNotes": "Shining light restores your health! (Based on: CON and INT)",
@@ -55,5 +55,6 @@
"challengeTasksNoCast": "Casting a skill on challenge tasks is not allowed.",
"groupTasksNoCast": "Casting a skill on group tasks is not allowed.",
"spellNotOwned": "You don't own this skill.",
- "spellLevelTooHigh": "You must be level <%= level %> to use this skill."
-}
\ No newline at end of file
+ "spellLevelTooHigh": "You must be level <%= level %> to use this skill.",
+ "spellAlreadyCast": "لن يكون لاستخدام هذه المهارة أي تأثير إضافي."
+}
diff --git a/website/common/locales/ar/tasks.json b/website/common/locales/ar/tasks.json
index 5ef830470f..c518f33fd9 100755
--- a/website/common/locales/ar/tasks.json
+++ b/website/common/locales/ar/tasks.json
@@ -1,10 +1,10 @@
{
"clearCompleted": "إكتمل الحذف",
- "clearCompletedDescription": "يتم حذف المهام التي تم إكمالها بعد ٣٠ يومًا لغير المشتركين وبعد ٩٠ يومًا للمشتركين.",
- "clearCompletedConfirm": "هل أنت متأكد من أنك تريد حذف المهام التي أنجزتها؟",
+ "clearCompletedDescription": "المهام المكتملة يتم حذفها بعد ٣٠ يومًا لغير المشتركين وبعد ٩٠ يومًا للمشتركين.",
+ "clearCompletedConfirm": "هل أنت متأكد من حذف المهام التي أنجزتها؟",
"addMultipleTip": "
نصيحة: لإضافة عدة <%= taskType %>، افصل كل منها باستخدام فاصل أسطر (Shift + Enter) ثم اضغط على \"Enter\".",
"addATask": "اضف <%= type %>",
- "editATask": "حرر <%= type %>",
+ "editATask": "عدل<%= type %>",
"createTask": "أنشئ <%= type %>",
"addTaskToUser": "اضف مهمة",
"scheduled": "مجدولة",
@@ -27,7 +27,7 @@
"notes": "الملاحظات",
"advancedSettings": "إعدادات متقدمة",
"difficulty": "الصعوبة",
- "difficultyHelp": "Difficulty describes how challenging a Habit, Daily, or To-Do is for you to complete. A higher difficulty results in greater rewards when a Task is completed, but also greater damage when a Daily is missed or a negative Habit is clicked.",
+ "difficultyHelp": "تصف الصعوبة مدى صعوبة إكمال العادة أو المهام اليومية أو المهام التي يتعين عليك القيام بها. تؤدي الصعوبة الأعلى إلى الحصول على مكافآت أكبر عند اكتمال المهمة ، ولكن أيضًا الضرر الأكبر عند فقد مهام يومية أو النقر فوق العادة السلبية.",
"trivial": "تافه",
"easy": "سهل",
"medium": "متوسط",
@@ -48,7 +48,7 @@
"resetStreak": "Reset Streak",
"todo": "المهمة",
"todos": "المهام",
- "todosDesc": "تُنجَز المهام مرة واحدة فقط. أضف قوائم إلى المهام الخصة بك لتزيد قيمتها.",
+ "todosDesc": "تُنجَز المهام مرة واحدة فقط. أضف قوائم إلى المهام الخاصة بك لتزيد قيمتها.",
"dueDate": "تاريخ الاستحقاق",
"remaining": "متبقية",
"complete": "منجزة",
@@ -95,7 +95,7 @@
"invalidTasksType": "يجب أن يكون نوع المهمة واحدًا من \"العادات\" أو \"اليوميات\" أو \"المهام\" أو \"المكافآت\".",
"invalidTasksTypeExtra": "يجب أن يكون نوع المهمة واحدًا من \"العادات\" أو \"اليوميات\" أو \"المهام\" أو \"المكافآت\" أو \"المهام التي تم إكمالها\".",
"cantDeleteChallengeTasks": "لا يمكن حذف المهمة التي تنتمي إلى التحدي.",
- "checklistOnlyDailyTodo": "Checklists are supported only on Dailies and To-Dos",
+ "checklistOnlyDailyTodo": "القوائم مدعومة فقط في المهام اليومية والمهام",
"checklistItemNotFound": "No checklist item was found with given id.",
"itemIdRequired": "\"itemId\" must be a valid UUID.",
"tagNotFound": "No tag item was found with given id.",
@@ -129,5 +129,15 @@
"sessionOutdated": "Your session is outdated. Please refresh or sync.",
"errorTemporaryItem": "This item is temporary and cannot be pinned.",
"deleteTaskType": "احذف هذا/هذه <%= type %>",
- "sureDeleteType": "هل انت متأكد انك تريد حذف هذا/هذه <%= type %> ؟"
+ "sureDeleteType": "هل انت متأكد انك تريد حذف هذا/هذه <%= type %> ؟",
+ "addATitle": "أضف عنوان",
+ "enterTag": "أدخل علامة",
+ "addNotes": "أضف ملاحظات",
+ "counter": "عداد",
+ "resetCounter": "إعداة ضبط العداد",
+ "tomorrow": "غدا",
+ "editTagsText": "تعديل العلامات",
+ "adjustCounter": "تعديل العداد",
+ "addTags": "أضف علامات...",
+ "pressEnterToAddTag": "اضغط Enter لإضافة العلامة: '<%= tagName %>'"
}
diff --git a/website/common/locales/ceb/backgrounds.json b/website/common/locales/ceb/backgrounds.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/backgrounds.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/character.json b/website/common/locales/ceb/character.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/character.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/communityguidelines.json b/website/common/locales/ceb/communityguidelines.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/communityguidelines.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/content.json b/website/common/locales/ceb/content.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/content.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/contrib.json b/website/common/locales/ceb/contrib.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/contrib.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/death.json b/website/common/locales/ceb/death.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/death.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/defaulttasks.json b/website/common/locales/ceb/defaulttasks.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/defaulttasks.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/faq.json b/website/common/locales/ceb/faq.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/faq.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/front.json b/website/common/locales/ceb/front.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/front.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/gear.json b/website/common/locales/ceb/gear.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/gear.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/generic.json b/website/common/locales/ceb/generic.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/generic.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/groups.json b/website/common/locales/ceb/groups.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/groups.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/inventory.json b/website/common/locales/ceb/inventory.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/inventory.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/limited.json b/website/common/locales/ceb/limited.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/limited.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/loginincentives.json b/website/common/locales/ceb/loginincentives.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/loginincentives.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/messages.json b/website/common/locales/ceb/messages.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/messages.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/npc.json b/website/common/locales/ceb/npc.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/npc.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/overview.json b/website/common/locales/ceb/overview.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/overview.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/pets.json b/website/common/locales/ceb/pets.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/pets.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/quests.json b/website/common/locales/ceb/quests.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/quests.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/questscontent.json b/website/common/locales/ceb/questscontent.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/questscontent.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/rebirth.json b/website/common/locales/ceb/rebirth.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/rebirth.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/spells.json b/website/common/locales/ceb/spells.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/spells.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/subscriber.json b/website/common/locales/ceb/subscriber.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/subscriber.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/ceb/tasks.json b/website/common/locales/ceb/tasks.json
new file mode 100644
index 0000000000..0967ef424b
--- /dev/null
+++ b/website/common/locales/ceb/tasks.json
@@ -0,0 +1 @@
+{}
diff --git a/website/common/locales/cs/gear.json b/website/common/locales/cs/gear.json
index 6ae32c6abe..4706d78a71 100644
--- a/website/common/locales/cs/gear.json
+++ b/website/common/locales/cs/gear.json
@@ -1969,5 +1969,50 @@
"weaponSpecialWinter2021MageText": "Kouzelný měsíční phaser",
"weaponSpecialWinter2021MageNotes": "Tato mocná zbraň je rozhodně víc než jen phaser. Usměrni svou energii, zaměř se na průběh měsíce a studuj časoprostor. Zvyšuje inteligenci o <%= int %> a vnímání o <%= per %>. Výzbroj z limitované edice pro zimu 2020-2021.",
"weaponSpecialSpring2021MageNotes": "Hoď, poraž, šlapej, odpočívej! Pírko sviští časem, aby dirigovalo hudbu tvých kouzel. Zvyšuje inteligenci o <%= int %> a vnímání o <%= per %>. Výzbroj z limitované edice pro jaro 2021.",
- "weaponSpecialSpring2021HealerNotes": "Kůra a listy této čerstvě uříznuté větve jsou známy pro jejich schopnost zmírnění bolesti. Nebo můžeš větev zasadit a dívat se, jak roste! Zvyšuje inteligenci o <%= int %>. Výzbroj z limitované edice pro jaro 2021."
+ "weaponSpecialSpring2021HealerNotes": "Kůra a listy této čerstvě uříznuté větve jsou známy pro jejich schopnost zmírnění bolesti. Nebo můžeš větev zasadit a dívat se, jak roste! Zvyšuje inteligenci o <%= int %>. Výzbroj z limitované edice pro jaro 2021.",
+ "weaponSpecialSummer2021RogueNotes": "Jakékoliv dravé monstrum jenž se opováží přiblížit pocítí bodnutí tvých ochranných přátel. Zvyšuje sílu o <%= str %>. Limitovaná edice letní výzbroj 2021.",
+ "weaponSpecialSummer2021WarriorText": "Vodní čepel",
+ "weaponSpecialSummer2022RogueNotes": "Pokud jsi v nouzi, neváhej ukázat tato hrůzostrašná klepeta! Zvyšuje sílu o <%= str %>. Limitovaná edice zimní výzbroj 2022.",
+ "weaponSpecialSummer2022WarriorNotes": "Točí se to! Mění to směr! A přináší to bouři! Zvyšuje sílu o <%= str %>. Limitovaná edice letní výzbroj 2022.",
+ "weaponSpecialSummer2022MageText": "Hůl Manty obrovské",
+ "weaponSpecialSummer2022MageNotes": "Magicky vyčisti vodu před tebou jedním mávnutím touto hůlkou. Zvyšuje inteligenci o <%= int %> a vnímání o <%= per %>. Limitovaná edice 2022 letní výzbroj.",
+ "weaponSpecialSummer2022HealerNotes": "Tyto bubliny uvolňují do vody léčivou magii s uspokojujícím praskáním. Zvyšuje inteligenci o <%= int %>. Limitovaná edice letní výzbroj 2022.",
+ "weaponSpecialFall2021MageNotes": "Znalosti hledají znalosti. Tato hrůzostrašná ruka, vytvořená ze vzpomínek a tužeb, se snaží získat víc. Zvyšuje inteligenci o <%= int %> a vnímání o <%= per %>. Limitovaná edice podzimní výzbroj 2021.",
+ "weaponSpecialSummer2022RogueText": "Krabí klepeto",
+ "weaponSpecialWinter2022HealerNotes": "Dotkni se tímto vodním náčiním krku přátel a oni vyskočí ze židle! Pak se však budou cítit lépe. Doufejme. Zvyšuje inteligenci o <%= int %>. Limitovaná edice zimní výzbroj 2021-2022.",
+ "weaponSpecialWinter2022RogueNotes": "Stříbrňáky a zlaťáky zloději milují, že? Tyto zbraně jsou tedy zcela namístě. Zvyšuje sílu o <%= str %>. Limitovaná edice zimní výzbroj 2021-2022.",
+ "weaponSpecialSummer2022WarriorText": "Vířivá cyklóna",
+ "weaponSpecialSummer2022HealerText": "Blahodárné bubliny",
+ "weaponSpecialWinter2022MageNotes": "Bobule na této hůlce obsahují starodávné kouzlo, jenž lze ovládat v zimě. Zvyšuje inteligenci o <%= int %> a vnímání o <%= per %>. Limitovaná edice zimní výzbroj 2021-2022.",
+ "weaponSpecialSummer2021WarriorNotes": "Tato třpytivá čepel dokáže plynout jako voda, nicméně dokáže i proříznout do jádra těch nejzáludnějších problémů. Zvyšuje sílu o <%= str %>. Limitovaná edice letní výzbroj 2021.",
+ "weaponSpecialSummer2021MageText": "Nautiloidní hůl",
+ "weaponSpecialSummer2021MageNotes": "Nezáleží zda tvé magické ambice sahají do nesmírné hloubky nebo zda se chceš pouze nořit v mělčinách magie. Tento zářivý nástroj ti v obou případech dobře poslouží. Zvyšuje inteligenci o <%= int %> a vnímavost o <%= per %>. Limitovaná edice letní výzbroj 2021.",
+ "weaponSpecialSummer2021HealerText": "Kukuřičná hůl",
+ "weaponSpecialWinter2022RogueText": "Ohňostroj padající hvězdy",
+ "weaponSpecialWinter2022WarriorText": "Meč z cukrové třtiny",
+ "weaponSpecialWinter2022WarriorNotes": "Kolik líznutí je potřeba k nabroušení této cukrové třtiny do perfektního meče? Zvyšuje sílu o <%= str %>. Limitovaná edice zimní výzbroj 2021-2022.",
+ "weaponSpecialWinter2022MageText": "Hůl z granátového jablka",
+ "weaponSpecialWinter2022HealerText": "Hůl z ledového krystalu",
+ "weaponSpecialFall2021RogueText": "Kapající sliz",
+ "weaponSpecialFall2021RogueNotes": "Do čeho jsi se to proboha dostal? Když se říká že zloději mají lepkavé prsty, tohle se tím nemyslí! Zvyšuje sílu o <%= str %>. Limitovaná edice podzimní výzbroj 2021.",
+ "weaponSpecialFall2021WarriorText": "Sekera jezdce na koni",
+ "weaponSpecialFall2021WarriorNotes": "Tato stylová jednočepelová sekera je ideální na sekání.. dýní! Zvyšuje sílu o <%= str %>. Limitovaná edice podzimní výzbroj 2021.",
+ "weaponSpecialFall2021MageText": "Hůl čisté myšlenky",
+ "weaponSpecialFall2021HealerText": "Hůl přivolávání",
+ "weaponSpecialFall2021HealerNotes": "Využij tuto hůl k přivolání léčivých plamenů a duchů, jenž ti pomohou. Zvyšuje inteligenci o <%= int %>. Limitovaná edice podzimní výbava 2021.",
+ "weaponSpecialSpring2022WarriorNotes": "Jejda! Hádám že ten vítr byl trošku silnější než jsi si myslel, že? Zvyšuje sílu o <%= str %>. Limitovaná edice jarní výzbroj 2022.",
+ "weaponSpecialSpring2022MageText": "Zlaticová hůl",
+ "weaponSpecialSpring2022MageNotes": "Tyto zářivě žluté zvonky jsou připraveny nasměrovat tvoji mocnou jarní magii. Zvyšuje inteligenci o <%= int %> a vnímání o <%= per %>. Limitovaná edice jarní výzbroj 2022.",
+ "weaponSpecialSpring2022HealerNotes": "Použij tuto hůlku k využití léčivých vlastností periodotu, ať už to má přinést klid, pozitivitu nebo laskavost. Zvyšuje inteligenci o <%= int %>. Limitovaná edice jarní výzbroj 2022.",
+ "weaponSpecialSpring2022RogueText": "Obrovský narozeninový puzet",
+ "weaponSpecialSpring2022RogueNotes": "Lesk! Je tak lesklá a třpytivá a hezká a krásná a celá tvoje! Zvyšuje sílu o <%= str %>. Limitovaná edice jarní výzbroj 2022.",
+ "weaponSpecialSpring2022WarriorText": "Deštník naruby",
+ "weaponSpecialSpring2022HealerText": "Peridotová hůlka",
+ "headSpecialNye2021Notes": "Obdržel jsi Absurdní party čepici! Nasaď si ji s pýchou zatímco odbíjí Nový rok. Nepřináší žádné výhody.",
+ "headSpecialNye2021Text": "Absurdní party čepice",
+ "weaponSpecialWinter2021HealerNotes": "Vyraž do bitev s fanfárou a závanem větru! Zvyšuje inteligenci o <%= int %>. Limitovaná edice zimní výzbroj 2020-2021.",
+ "weaponMystery202102Notes": "Zářivý růžový drahokem v této hůlce dokáže šířit radost a přátelství všude možně! Nepřináší žádné výhody. Předmět pro předplatitele, únor 2021.",
+ "weaponMystery202104Notes": "Tvoji nepřátele by si měli dávat pozor - máš totiž mocnou a pichlavou obranu! Nepřináší žádné výhody. Předmět pro předplatitele duben 2021.",
+ "weaponMystery202102Text": "Okouzlující hůlka",
+ "weaponMystery202104Text": "Hůl trnitého bodláku"
}
diff --git a/website/common/locales/da/achievements.json b/website/common/locales/da/achievements.json
index 3ae6286c13..65ffa62e69 100644
--- a/website/common/locales/da/achievements.json
+++ b/website/common/locales/da/achievements.json
@@ -118,11 +118,24 @@
"achievementDomesticatedText": "Har udklækket følgende tæmmede kæledyr i alle standardfarver: Fritte, Marsvin, Hane, Flyvende Gris, Rotte, Kanin, Hest, og Ko!",
"achievementDomesticated": "E-I-E-I-O",
"achievementDomesticatedModalText": "Du har indsamlet alle tæmmede kæledyr!",
- "achievementZodiacZookeeperText": "Har udklækket alle kæledyr, der er et kinesisk stjernetegn: Rotte, Ko, Kanin, Slange, Hest, Får, Abe, Hane, Ulv, Tiger, Flyvende Gris, og Drage!",
+ "achievementZodiacZookeeperText": "Har udklækket alle kæledyr, der er et kinesisk stjernetegn, i alle standardfarver: Rotte, Ko, Kanin, Slange, Hest, Får, Abe, Hane, Ulv, Tiger, Flyvende Gris, og Drage!",
"achievementZodiacZookeeperModalText": "Du har samlet alle dyr, der er et stjernetegn!",
"achievementShadyCustomerText": "Har samlet alle Skyggekæledyr.",
"achievementShadeOfItAllText": "Har tæmmet alle Skyggeridedyr.",
"achievementShadeOfItAllModalText": "Du har tæmmet alle Skyggeridedyr!",
"achievementShadyCustomer": "Lyssky kunde",
- "achievementShadyCustomerModalText": "Du har indsamlet alle Skygge Dyr!"
+ "achievementShadyCustomerModalText": "Du har indsamlet alle Skygge Dyr!",
+ "achievementGroupsBeta2022ModalText": "Du og dine grupper hjalp Habitica ved at teste funktioner og komme med feedback!",
+ "achievementGroupsBeta2022": "Interaktiv betatester",
+ "achievementGroupsBeta2022Text": "Du og din gruppe kom med uvurderlig feedback under en test af Habitica.",
+ "achievementWoodlandWizard": "Skovheks",
+ "achievementWoodlandWizardText": "Har udklækket alle skovens dyr i alle standardfarver: Grævling, Bjørn, Hjort, Ræv, Frø, Pindsvin, Ugle, Snegl, Egern og Træling!",
+ "achievementWoodlandWizardModalText": "Du har samlet alle skovkæledyr!",
+ "achievementReptacularRumbleText": "Has udklækket alle reptilkæledyr i alle standardfarver: Alligator, Flyveøgle, Slange, Triceratops, Skildpadde, Tyrannosaurus Rex og Velociraptor!",
+ "achievementReptacularRumbleModalText": "Du har samlet alle reptilkæledyr!",
+ "achievementBirdsOfAFeather": "Én fjer, fem høns",
+ "achievementBirdsOfAFeatherModalText": "Du har samlet alle de flyvende kæledyr!",
+ "achievementBirdsOfAFeatherText": "Har udklækket alle flyvende kæledyr i alle standardfarver: Flyvende Gris, Ugle, Papegøje, Flyveøgle, Grif, Falk, Påfugl og Hane!",
+ "achievementZodiacZookeeper": "Dyrekredsens dyretæmmer",
+ "achievementShadeOfItAll": "Skyggen af det hele"
}
diff --git a/website/common/locales/da/backgrounds.json b/website/common/locales/da/backgrounds.json
index 248204ea8c..23b0eea03c 100644
--- a/website/common/locales/da/backgrounds.json
+++ b/website/common/locales/da/backgrounds.json
@@ -492,5 +492,6 @@
"backgroundParkWithStatueText": "Park med Statue",
"backgroundDojoNotes": "Lær nye teknikker i en Dojo.",
"backgroundDojoText": "Dojo",
- "backgrounds052019": "SET 60: Frigivet Maj 2019"
+ "backgrounds052019": "SET 60: Frigivet Maj 2019",
+ "hideLockedBackgrounds": "Skjul låste baggrunde"
}
diff --git a/website/common/locales/da/challenge.json b/website/common/locales/da/challenge.json
index 485c28ec48..0067022823 100644
--- a/website/common/locales/da/challenge.json
+++ b/website/common/locales/da/challenge.json
@@ -103,5 +103,6 @@
"selectParticipant": "Vælg en deltager",
"filters": "Filtre",
"wonChallengeDesc": "<%= challengeName %> udvalgte dig som vinder! Din sejr er noteret i dine Præstationer.",
- "yourReward": "Din Belønning"
+ "yourReward": "Din Belønning",
+ "removeTasks": "Fjern opgaver"
}
diff --git a/website/common/locales/da/communityguidelines.json b/website/common/locales/da/communityguidelines.json
index 8e4bb8ce29..60d0198d4a 100644
--- a/website/common/locales/da/communityguidelines.json
+++ b/website/common/locales/da/communityguidelines.json
@@ -2,25 +2,25 @@
"tavernCommunityGuidelinesPlaceholder": "Venlig påmindelse: Det her er en chat for alle aldre, så hold venligst en passende tone og vær opmærksom på indholdet af dine beskeder! Læs Retningslinjer for fællesskabet i sidepanelet, hvis du har spørgsmål.",
"lastUpdated": "Sidst opdateret:",
"commGuideHeadingWelcome": "Velkommen til Habitica!",
- "commGuidePara001": "Vær hilset, eventyrer! Velkommen til Habitica, et land af produktivitet, sund levemåde, og til tider en enkelt hærgende grif. Vi er et muntert fællesskab fuld af hjælpsomme folk der støtter op om hinanden på deres vej til at forbedre sig selv. For at passe ind har du kun brug for en positiv attitude, respektfuld opførsel, og forståelse for at alle har forskellige evner of begrænsninger -- inklusiv dig! Habiticanere er tålmodige med hinanden og forsøger at hjælpe hvor de kan.",
- "commGuidePara002": "For at sikre at alle er trygge, glade, og produktive i vores fællesskab, har vi nogle retningslinjer. Vi har omhyggeligt konstrueret dem så de er så venlige og letlæselige som muligt. Brug venligt et øjeblik på at læse dem inden du begynder at chatte.",
- "commGuidePara003": "Disse regler gælder alle de sociale områder vi bruger, inklusiv (men ikke nødvendigvis begrænset til) Trello, GitHub, Weblate og Wikia (wiki'en). Sommetider vil der opstå uforudsete situationer, eksempelvis en ny kilde til konflikt eller en ondskabsfuld åndemaner. Når det sker, kan moderatorer reagere ved at ændre disse retningslinjer for at beskytte fællesskabet mod ny trusler. Frygt ikke: Du vil blive gjort opmærksom på ændringer i retningslinjerne via en påmindelse fra Bailey.",
+ "commGuidePara001": "Vær hilset, eventyrer! Velkommen til Habitica, et land af produktivitet, sund levemåde, og til tider en enkelt hærgende grif. Vi er et muntert fællesskab fuld af hjælpsomme folk der støtter op om hinanden på deres vej til at forbedre sig selv. For at passe ind har du kun brug for en positiv attitude, respektfuld opførsel, og forståelse for at alle har forskellige evner of begrænsninger - inklusiv dig! Habiticanere er tålmodige med hinanden og forsøger at hjælpe hvor de kan.",
+ "commGuidePara002": "For at sikre at alle er trygge, glade, og produktive i vores fællesskab, har vi nogle retningslinjer. Vi har omhyggeligt konstrueret dem så de er så venlige og letlæselige som muligt. Brug venligst et øjeblik på at læse dem inden du begynder at chatte.",
+ "commGuidePara003": "Disse regler gælder alle de sociale områder vi bruger, inklusiv (men ikke nødvendigvis begrænset til) Trello, GitHub, Weblate og Habitica wiki'en på fandom.com. Efterhånden som Habitica vokser og forandres, kan det ske at vores regler bliver ændret. Når der er sket bemærkelsesværdige ændringer af retningslinjerne for fællesskabet, vil du kunne høre om det i en meddelelse fra Bailey og/eller på vores sociale medier!",
"commGuideHeadingInteractions": "Interaktioner i Habitica",
- "commGuidePara015": "Habitica har to slags sociale rum: offentlige og private. Offentlige rum inkluderer Værtshuset, Offentlige klaner, GitHub, Trello og Wiki'en. Private rum er Private klaner, Holdchatten og Private beskeder. Alle display names skal følge retningslinjerne for offentlige rum. Gå til Bruger > Indstillinger > Side for at ændre dit brugernavn.",
- "commGuidePara016": "Når du navigerer rundt i de offentlige steder af Habitica, er der nogle generelle regler for at sørge for, at alle er sikre og glade. De burde være lette for eventyrere som dig!",
- "commGuideList02A": "
Respekter hinanden. Vær høflig, venlig og hjælpsom. Husk: Habiticanere kommer fra alle baggrunde og har haft vildt skiftende oplevelser og erfaringer. Det er en del af det, der gør Habitica så cool! At bygge et fællesskab betyder at vi respekterer og fejrer vores forskelle såvel som vores ligheder. Her er nogle nemme måder at vise respekt for hinanden på:",
- "commGuideList02B": "
Adlyd alt i Vilkår og betingelser.",
- "commGuideList02C": "
Læg ikke billeder eller tekst op, der er voldeligt, truende eller seksuelt eksplicit/antydende, eller som promoverer diskrimination, fordomme, racisme, sexisme, had, chikane eller skade mod et individ eller en gruppe. Ikke engang som en joke. Dette inkluderer skældsord såvel som udtalelser. Ikke alle har den samme form for humor, så noget du anser som en joke er muligvis sårende for en anden. Angrib jeres Daglige opgaver, ikke hinanden.",
- "commGuideList02D": "
Hold diskussioner passende for alle aldre. Vi har mange unge Habiticanere der bruger hjemmesiden! Lad os ikke genere nogen uskyldige eller forhindre nogen Habiticanere i at opnår deres mål.",
- "commGuideList02E": "
Undgå bandeord. Dette inkluderer mildere, religiøst baserede bandeord der kan være acceptable andre steder. Vi har folk fra alle religiøse og kulturelle baggrunde, og vi vil gerne sørge for at de alle føler sig trygge i offentlige rum.
Hvis en moderator eller medarbejder fortæller dig at et udtryk ikke er tilladt i Habitica, selvom det er et udtryk, du ikke vidste var problematisk, er den beslutning endegyldig. Der vil blive slået særlig hårdt ned på skældsord, da de også går imod vores Vilkår og betingelser.",
- "commGuideList02F": "
Undgå lange diskussioner af opsplittende emner i Værtshuset og hvor det ellers ikke ville være et passende emne. Hvis du føler nogen har sagt noget uhøfligt eller sårende, så svar dem ikke. Hvis nogen nævner noget der er tilladt ifølge retningslinjerne, men sårende for dig, er det okay høfligt at sige det til dem. Hvis det er imod retningslinjerne eller Vilkår og betingelser, så rapporter det og lad en moderator håndtere det. Hvis du er i tvivl, så rapporter beskeden.",
- "commGuideList02G": "
Overhold omgående enhver anmodning fra en Moderator.. Dette kan inkludere, men er ikke begrænset til, at bede dig begrænse antallet af dine beskeder i et bestemt rum, at fjerne upassende indhold fra din profil, at bede dig om at tage din diskussion et mere passende sted osv.",
- "commGuideList02J": "
Spam ikke. Spam inkluderer, men er ikke begrænset til: at skrive den samme kommentar eller spørgsmål flere steder, at lægge links op uden forklaring eller kontekst, at skrive meningsløse beskeder, at skrive adskillige promoverende beskeder om en Klan, Hold eller Udfordring, eller at skrive mange beskeder på én gang. At tigge om ædelsten eller et abonnement i ethvert chatrum eller via Privatbesked betragtes også som spam.
Det er op til moderatorerne at beslutte om noget er spam eller kan føre til spam, selv hvis du ikke mener du har spammet. For eksempel er det i orden at reklamere for en Klan en enkelt eller to gange, men adskillige beskeder samme da ville sikkert blive betragtet som spam, uanset hvor nyttig Klanen er!",
+ "commGuidePara015": "Habitica har to slags sociale rum: offentlige og private. Offentlige rum inkluderer Værtshuset, offentlige klaner, GitHub, Trello og wiki'en. Private rum tæller private klaner, Holdchatten og private beskeder. Alle displaynavne og @brugernavne skal følge retningslinjerne for offentlige rum. Gå til Menu > Indstillinger > Profil for at ændre dit displaynavn eller @brugernavn i app'en. På Habiticas hjemmeside skal du gå til Bruger > Indstillinger.",
+ "commGuidePara016": "Når du navigerer rundt i de offentlige rum af Habitica, er der nogle generelle regler for at sørge for, at alle er sikre og glade.",
+ "commGuideList02A": "
Respekter hinanden. Vær høflig, venlig og hjælpsom. Husk: Habiticanere kommer fra alle baggrunde og har haft vildt skiftende oplevelser og erfaringer. Det er en del af det, der gør Habitica så cool! At bygge et fællesskab betyder at vi respekterer og fejrer vores forskelle såvel som vores ligheder.",
+ "commGuideList02B": "
Adlyd alt i Vilkår og betingelser i både offentlige og private rum.",
+ "commGuideList02C": "
Læg ikke billeder eller tekst op, der er voldeligt, truende eller seksuelt eksplicit/antydende, eller som promoverer diskrimination, fordomme, racisme, sexisme, had, chikane eller skade mod et individ eller en gruppe. Ikke engang som en joke. Dette inkluderer skældsord såvel som udtalelser. Ikke alle har den samme form for humor, så noget du anser som en joke er muligvis sårende for en anden.",
+ "commGuideList02D": "
Hold diskussioner passende for alle aldre. Dette betyder at 18+ emner ikke bør diskuteres i offentlige rum. Vi har mange unge Habiticanere der bruger hjemmesiden, og vores brugere kommer fra mange steder i verden. Vi vil gerne have, at Habitica er så rart og inkluderende et sted som muligt.",
+ "commGuideList02E": "
Undgå bandeord. Dette inkluderer mildere, religiøst baserede bandeord der kan være acceptable andre steder, og forkortede eller forklædte bandeord. Vi har folk fra alle religiøse og kulturelle baggrunde, og vi vil gerne sørge for at de alle føler sig trygge i offentlige rum.
Hvis en moderator eller medarbejder fortæller dig at et udtryk ikke er tilladt i Habitica, selvom det er et udtryk, du ikke vidste var problematisk, er den beslutning endegyldig. Der vil blive slået særlig hårdt ned på skældsord, da de også går imod vores Vilkår og betingelser.",
+ "commGuideList02F": "Undgå lange diskussioner af opsplittende emner i Værtshuset og hvor det ellers ikke ville være et passende emne. Hvis nogen siger noget der er tilladt under vores retningslinjer, men som er sårende for dig, er det okay høfligt at sige det til dem. Hvis nogen siger til dig, at du har gjort dem ubehageligt til mode, så tag et øjeblik til at tænke over dine ord frem for at svare i vrede. Hvis du føler, at en samtale er ved at blive overophedet, følelsesladet eller sårende,
så hold op med at svare. Rapportér i stedet de relevante beskeder for at sende besked til os. Moderatorerne vil se på det, så hurtigt de kan. Du kan også sende en email til
admin@habitica.com og er velkommen til at sende screenshots, hvis det ville hjælpe os med at forstå sagen.",
+ "commGuideList02G": "
Overhold omgående enhver anmodning fra en Moderator. Dette kan inkludere, men er ikke begrænset til, at bede dig begrænse antallet af dine beskeder i et bestemt rum, at fjerne upassende indhold fra din profil, at bede dig om at tage din diskussion et mere passende sted osv. Begynd ikke at diskutere med moderatorerne. Hvis du har kommentarer til Habiticas moderering, så send en email til
admin@habitica.com for at komme i kontakt med vores community manager.",
+ "commGuideList02J": "
Spam ikke. Spam inkluderer, men er ikke begrænset til: at skrive den samme kommentar eller spørgsmål flere steder,
at lægge links op uden forklaring eller kontekst, at skrive meningsløse beskeder, at skrive adskillige promoverende beskeder om en Klan, Hold eller Udfordring, eller at skrive mange beskeder på én gang. Hvis det at andre brugere følger et link vil give nogen form for afkast eller fordel til dig, skal det stå i beskeden, ellers vil det også blive regnet for spam. Det er op til moderatorerne at beslutte om noget er spam.",
"commGuideList02K": "
Undgå at skrive store overskrifter i offentlige chatrum, især Værtshuset. Ligesom ALL CAPS læses det som om du råber, og forstyrrer den behagelige stemning.",
- "commGuideList02L": "
Vi fraråder kraftigt deling af personlig information -- især information der kan bruges til at identificere dig - i offentlige chatrum. Identificerende personlig information inkluderer, men er ikke begrænset til: din adresse, emailadresse og din API token/password. Det er for din sikkerheds skyld! Medarbejdere eller moderatorer kan fjerne sådanne beskeder efter forgodtbefindende. Hvis du bliver bedt om personlig information i en privat Klan, Hold eller Besked, anbefaler vi kraftigt at du høfligt afviser og gør medarbejderne og moderatorerne opmærksomme ved enten 1) at rapportere beskeden hvis det er i chatten tilhørende et Hold eller privat Klan, eller 2) at udfylde
Moderatorkontaktformularen og vedlægger screenshots.",
+ "commGuideList02L": "
Vi fraråder kraftigt deling af personlig information -- især information der kan bruges til at identificere dig - i offentlige chatrum. Identificerende personlig information inkluderer, men er ikke begrænset til: din adresse, emailadresse og din API token/password. Det er for din sikkerheds skyld! Medarbejdere eller moderatorer kan fjerne sådanne beskeder efter forgodtbefindende. Hvis du bliver bedt om personlig information i en privat Klan, Hold eller Besked, anbefaler vi kraftigt at du høfligt afviser og gør medarbejderne og moderatorerne opmærksomme ved enten 1) at rapportere beskeden, eller 2) at sende en email til
admin@habitica.com og vedhæfte screenshots.",
"commGuidePara019": "
I private rum har brugere mere frihed til at diskutere hvilke emner de har lyst til, men de må stadig ikke gå imod Vilkår og betingelser, inklusiv at skrive nedværdigende skældsord eller noget diskriminerende, voldeligt eller truende indhold. Bemærk, at fordi navne på Udfordringer kan ses i vinderens offentlige profil skal ALLE navne på Udfrodringer adlyde retningslinjerne for offentlige rum, selv hvis de foregår i et privat rum.",
- "commGuidePara020": "
Privatbeskeder har nogle ekstra retningslinjer. Hvis nogen har blokeret dig må du ikke kontakte dem på andre måder for at bede dem om at fjerne blokeringen. Derudover må du ikke sende privatbeskeder til andre for at bede om hjælp (fordi offentlige svar til spørgsmål om hjælp også kan hjælpe resten af fællesskabet). Sidst men ikke mindst må du ikke sende privatbeskeder til nogen for at tigge om ædelsten eller et abonnement, da dette kan anses som spamming.",
- "commGuidePara020A": "
Hvis du ser et indlæg eller en privatbesked, du mener går imod retningslinjerne for offenlige rum, beskrevet ovenfor, eller hvis du ser indlæg eller privatbeskeder, der bekymrer dig eller gør dig utryg, kan du gøre Moderatorer og Medarbejdere opmærksomme på den ved at klikke på flag-ikonet for at rapportere det. En Medarbejder eller Moderator vil tage sig af situationen, så snart de kan. Bemærk venligst, at det at rapportere uskyldige indlæg går imod disse Retningslinjer (se \"Overtrædelser\" nedenunder). Du kan også kontakte Moderatorerne via formularen “
Kontakt Moderatorerne.” Det kan være det bedste at gøre dette hvis der er flere problematiske indlæg af den samme person i forskellige Klaner, eller hvis situationen kræver en forklaring. Du kan kontakte os på dit eget sprog hvis det er lettere for dig. Vi bliver muligvis nødt til at bruge Google Translate, men vi vil gerne have at du føler dig tryg ved at tage kontakt til os, hvis du har et problem.",
+ "commGuidePara020": "
Privatbeskeder har nogle ekstra retningslinjer. Hvis nogen har blokeret dig må du ikke kontakte dem på andre måder for at bede dem om at fjerne blokeringen. Derudover må du ikke sende privatbeskeder til andre for at bede om hjælp (fordi offentlige svar til spørgsmål om hjælp også kan hjælpe resten af fællesskabet). Sidst men ikke mindst må du ikke sende privatbeskeder til nogen for at tigge om nogen form for service, der koster rigtige penge.",
+ "commGuidePara020A": "
Hvis du ser et indlæg eller en privatbesked, du mener går imod retningslinjerne for offentlige rum, beskrevet ovenfor, eller hvis du ser indlæg eller privatbeskeder, der bekymrer dig eller gør dig utryg, kan du gøre Moderatorer og Medarbejdere opmærksomme på den ved at klikke på flag-ikonet for at rapportere det. En Medarbejder eller Moderator vil tage sig af situationen, så snart de kan. Bemærk venligst, at det at rapportere uskyldige indlæg går imod disse retningslinjer (se \"Overtrædelser\" nedenunder). Du kan også kontakte Moderatorerne ved at emaile
admin@habitica.com. Det kan være det bedste at gøre dette, hvis der er flere problematiske indlæg af den samme person i forskellige Klaner, eller hvis situationen kræver en forklaring. Du kan kontakte os på dit eget sprog hvis det er lettere for dig. Vi bliver muligvis nødt til at bruge Google Translate, men vi vil gerne have at du føler dig tryg ved at tage kontakt til os, hvis du har et problem.",
"commGuidePara021": "Herudover har nogen offentlige steder i Habitica ekstra retningslinjer.",
"commGuideHeadingTavern": "Værtshuset",
"commGuidePara022": "Værtshuset er det primære sted Habiticanere hænger ud. Kroværten Daniel holder stedet funklende rent, og Lemoness vil med glæde fremtrylle dig et glas lemonade mens du sidder og snakker. Bare husk…",
@@ -31,8 +31,8 @@
"commGuidePara029": "
Offentlige Klaner er meget ligesom Værtshuset, bortset fra at de i stedet for at være til generelle samtaler har et bestemt tema. Chat i offentlige Klaner bør have fokus på dette tema. For eksempel ville medlemmer af Klanen Wordsmiths måske blive fornærmede, hvis samtalen pludselig handler om havearbejde, og Klanen for Dragefans har nok ikke meget interesse i at tyde oldtidens runer. Nogle Klaner er meget afslappede om dette end andre, men forsøg generelt
at holde dig til emnet!",
"commGuidePara031": "I nogle offentlige Klaner omtales der følsomme emner som depression, religion, politik osv. Dette er helt i orden, så længe samtalerne i Klanen ikke bryder nogle Vilkår og betingelser eller Regler for offentlige rum, og så længe de holder sig til Klanens emne.",
"commGuidePara033": "
Offentlige Klaner må IKKE indeholde indhold for aldersgruppen 18+. Hvis de planlægger jævnligt at diskutere følsomt indhold, skal dette stå i Klanens beskrivelse. Dette er for at holde Habitica sikkert of trygt for alle.",
- "commGuidePara035": "
Hvis en Klan omhandler flere forskellige følsomme emner, er det hensynsfuldt over for dine med-Habiticanere at skrive din kommentar efter en advarsel (fx \"Advarsel: Omtaler selvskade\"). Disse kan karakteriseres som trigger warnings og/eller noter om indholdet, og Klaner kan have deres egne regler om disse udover dem, der er givet her. Hvis det er muligt, så brug venligst
markdown for at gemme det potentielt følsomme indhold under flere linjeskift, så de, der ikke ønsker at læse det, kan scrolle forbi uden at se indholdet. Habiticas medarbejdere og moderatorer kan stadig fjerne dette indhold efter eget skøn.",
- "commGuidePara036": "Desuden bør følsomt indhold stadig være aktuelt for Klanens emne - at tale om selvskade i en Klan hvor fokus er på at kæmpe mod depression giver mening, men er mindre passende i en Klan for musik. Hvis du ser nogen, som gentagne gange går imod denne retningslinje, især efter at være blevet bedt om at stoppe flere gange, så rapportér venligst deres indlæg og gør moderatorerne opmærksom på dette via
Moderatorkontaktformularen.",
+ "commGuidePara035": "
Hvis en Klan omhandler flere forskellige følsomme emner, er det hensynsfuldt over for dine med-Habiticanere at skrive din kommentar efter en advarsel (fx \"Advarsel: Omtaler selvskade\"). Disse kan karakteriseres som trigger warnings og/eller noter om indholdet, og Klaner kan have deres egne regler om disse udover dem, der er givet her. Hvis det er muligt, så brug venligst
markdown for at gemme det potentielt følsomme indhold under flere linjeskift, så de, der ikke ønsker at læse det, kan scrolle forbi uden at se indholdet. Habiticas medarbejdere og moderatorer kan stadig fjerne dette indhold efter eget skøn.",
+ "commGuidePara036": "Desuden bør følsomt indhold stadig være aktuelt for Klanens emne - at tale om selvskade i en Klan hvor fokus er på at kæmpe mod depression giver mening, men er mindre passende i en Klan for musik. Hvis du ser nogen, som gentagne gange går imod denne retningslinje, især efter at være blevet bedt om at stoppe flere gange, så rapportér deres beskeder.",
"commGuidePara037": "
Ingen Klaner, hverken Offentlige eller Private, bør oprettes med det formål at angribe en gruppe eller et individ. At oprette en sådan Klan er grundlæg for øjeblikkelig bortvisning fra Habitica. Nedkæmp dårlige vaner, ikke dine med-eventyrere!",
"commGuidePara038": "
Alle Udfordringer i Værtshuset og Offentlige Klaner skal også følge disse regler.",
"commGuideHeadingInfractionsEtc": "Overtrædelser, Konsekvenser og Genskabelse",
@@ -44,24 +44,24 @@
"commGuidePara053": "De følgende er eksempler på større overtrædelser. Listen er ikke fyldestgørende.",
"commGuideList05A": "Brud på Betingelser og Vilkår",
"commGuideList05B": "Hadtale/billeder, Chikane/stalking, Cyber-mobning, Flaming og Trolling",
- "commGuideList05C": "Brud på Prøvetid",
- "commGuideList05D": "At udgive sig for at være Ansat eller Moderator",
- "commGuideList05E": "Gentagne Moderate Overtrædelser",
+ "commGuideList05C": "Brud på prøvetid",
+ "commGuideList05D": "At udgive sig for at være Ansat eller Moderator - dette inkluderer at påstå, at brugerskabte platforme, der ikke at associerede med Habitica, er officielle og/eller modereret af Habitica eller deres mods/medarbejdere",
+ "commGuideList05E": "Gentagne moderate overtrædelser",
"commGuideList05F": "Oprettelse af en ekstra konto for at undgå konsekvenser (for eksempel at oprette en ny konto til at chatte med, efter at have fået frataget ens chat-privilegier)",
"commGuideList05G": "Bevidst bedrag af Ansatte eller Moderatorer med det formål at undgå konsekvenser eller bringe en anden bruger i vanskeligheder",
- "commGuideHeadingModerateInfractions": "Moderate Overtrædelser",
+ "commGuideHeadingModerateInfractions": "Moderate overtrædelser",
"commGuidePara054": "Moderate overtrædelser gør ikke fællesskabet usikkert, men de gør det ubehageligt. Disse overtrædelser har moderate konsekvenser. Når de står sammen med andre overtrædelser, kan konsekvenserne blive større.",
- "commGuidePara055": "De følgende er eksempler på Moderate Overtrædelser. Listen er ikke endelig.",
+ "commGuidePara055": "De følgende er eksempler på moderate overtrædelser. Listen er ikke fyldestgørende.",
"commGuideList06A": "At ignorere, opføre respektløst overfor, eller skændes med en Moderator. Dette inkluderer offentlige at klage over moderatorer eller andre brugere, offentligt at forherlige eller forsvare bortviste brugere, eller at debatterer hvorvidt en moderators handlinger var passende. Hvis du er bekymret om en af reglerne eller en Moderators opførsel, så kontakt venligst de ansatte via email (
admin@habitica.com).",
"commGuideList06B": "Backseat Modding. For at tydeliggøre en relevant pointe: En venlig påmindelse om reglerne er helt fint. Backseat modding består i at fortælle, kræve, og/eller stærkt antyde at nogen bør gøre som du siger for at rette op på en fejl. Du kan gøre nogen opmærksom på at de har begået en overtrædelse, men forlang venligst ikke at de skal gøre noget - for eksempel er det bedre at sige \"Bare så du ved det er det ikke så godt at bande i Værtshuset, så det kan være du skulle slette det\" end \"Jeg er nødt til at bede dig slette det indlæg.\"",
"commGuideList06C": "At rapportere uskyldige indlæg med vilje.",
"commGuideList06D": "Gentagne gange at bryde Retningslinjerne for offentlige rum",
"commGuideList06E": "Gentagne gange at begå mindre overtrædelser",
- "commGuideHeadingMinorInfractions": "Mindre Overtrædelser",
+ "commGuideHeadingMinorInfractions": "Mindre overtrædelser",
"commGuidePara056": "Mindre overtrædelser har kun mindre konsekvenser, men er stadig ikke anbefalede. Hvis de sker gentagne gange kan det føre til større konsekvenser.",
- "commGuidePara057": "De følgende er eksempler på Mindre Overtrædelser. Listen er ikke fyldestgørende.",
+ "commGuidePara057": "De følgende er eksempler på mindre overtrædelser. Listen er ikke fyldestgørende.",
"commGuideList07A": "Førstegangsbrud på Retningslinjer for Offentlige Steder",
- "commGuideList07B": "Alle udsagn eller handlinger, som udløser et \"Lad venligst være\". Når en Moderator er nødt til at sige \"Lad venligst være med det\" til en bruger, kan det tælle som en meget lille overtrædelse for den bruger. Et eksempel kunne være \"Lad venligst være med at blive ved med at argumentere for indførslen af den funktion, når vi har sgat til dig adskillige gange at det ikke kan lade sig gøre.\" I mange tilfælde vil 'Lad venligst være' blot være konsekvensen af overtrædelsen, men hvis Moderatorerne er nødt til at bede den samme bruger flere gange om at holde op, vil de Mindre Overtrædelser begynde at tælle som Moderate Overtrædelser.",
+ "commGuideList07B": "Alle udsagn eller handlinger, som udløser et \"lad venligst være\" fra en moderator. Når du offentligt bliver bedt om at stoppe en handling, kan dette i sig selv tælle som en mindre overtrædelse. Hvis mods er nødt til gentagne gange at irettesætte den samme person, kan det komme til at tælle som en grovere overtrædelse",
"commGuidePara057A": "Nogle indlæg kan blive skjult fordi de indeholder følsom information eller kan give folk det forkerte indtryk. Typisk gælder dette ikke som en overtrædelser, især ikke den første gang det sker!",
"commGuideHeadingConsequences": "Konsekvenser",
"commGuidePara058": "I Habitica - som i virkeligheden - har alle handlinger også konsekvenser, hvad enten det er at komme i bedre form fordi du har løbet, få huller i tænderne fordi du har spist for meget sukker, eller bestå et fag fordi du har studeret.",
@@ -71,53 +71,63 @@
"commGuideList08B": "hvad konsekvensen er",
"commGuideList08C": "hvad der skal til for at rette fejlen og genoprette din status, hvis muligt.",
"commGuidePara060A": "Hvis situationen påkræver det kan du også modtage en PM eller email plus et indlæg i det forum, hvor overtrædelsen blev begået. I nogle tilfælde bliver du slet ikke irettesat offentligt.",
- "commGuidePara060B": "Hvis din konto bortvises (en alvorlig konsekvens), vil du ikke være i stand til at logge på Habitica, og vil få en fejl-besked når du prøver.
Hvis du ønsker at undskylde eller argumentere for genoprettelse af din konto, så skriv venligst en email til de ansatte på admin@habitica.com med dit UUID (unikke bruger-ID) (som vil blive oplyst i fejl-beskeden). Det er
dit ansvar at tage kontakt, hvis du ønsker en genovervejelse af situationen, eller genoprettelse.",
- "commGuideHeadingSevereConsequences": "Eksempler på Større Konsekvenser",
+ "commGuidePara060B": "Hvis din konto bortvises (en alvorlig konsekvens), vil du ikke være i stand til at logge på Habitica, og vil få en fejl-besked når du prøver.
Hvis du ønsker at undskylde eller argumentere for genoprettelse af din konto, så skriv venligst en email til de ansatte på admin@habitica.com med dit bruger-ID (som vil blive oplyst i fejlbeskeden) eller @brugernavn. Det er
dit ansvar at tage kontakt, hvis du ønsker en genovervejelse af situationen, eller genoprettelse.",
+ "commGuideHeadingSevereConsequences": "Eksempler på større konsekvenser",
"commGuideList09A": "Kontoudelukkelser (se ovenstående)",
"commGuideList09C": "Permanent deaktivering (\"indefrysning\") af fremskridt i Bidragsyder-niveauer",
- "commGuideHeadingModerateConsequences": "Eksempler på Moderate Konsekvenser",
+ "commGuideHeadingModerateConsequences": "Eksempler på moderate konsekvenser",
"commGuideList10A": "Begrænsede offentlige og/eller private chatprivilegier",
- "commGuideList10A1": "Hvis dine handlinger resulterer i fradragelse af dine rettigheder til chatten, vil en Moderator eller Ansat sende dig en privatbesked og/eller et indlæg i det forum du blev suspenderet fra for at fortælle dig grunden til og længden af din suspendering. Efter denne periode vil du få dine chatrettigheder tilbage, forudsat at du er villig til at ændre ved den opførsel du blev suspenderet for og overholde Fællesskabets Retningslinjer.",
+ "commGuideList10A1": "Hvis dine handlinger resulterer i fradragelse af dine rettigheder til chatten, vil en Moderator eller Ansat sende dig en privatbesked og/eller et indlæg i det forum du blev suspenderet fra for at fortælle dig grunden til og længden af din suspendering, og/eller hvad du skal gøre for at få dine chatprivilegier tilbage. Du vil få dem igen, hvis du høfligt følger de anvisninger du får, og erklærer dig villig til at følge vores Retningslinjer for Fællesskabet og Betingelser & Vilkår",
"commGuideList10C": "Begrænsede Klan/Udfordringsoprettelsesprivilegier",
"commGuideList10D": "Midlertidig deaktivering (\"indefrysning\") af fremskridt i Bidragsyder-niveauer",
"commGuideList10E": "Degradering af Bidragsyder-niveauer",
- "commGuideList10F": "Sætte brugere på \"Prøvetid\"",
- "commGuideHeadingMinorConsequences": "Eksempler på Mindre Konsekvenser",
+ "commGuideList10F": "At sætte brugere på \"prøvetid\"",
+ "commGuideHeadingMinorConsequences": "Eksempler på mindre konsekvenser",
"commGuideList11A": "Påmindelser om Retningslinjer for Offentlige Steder",
"commGuideList11B": "Advarsler",
"commGuideList11C": "Anmodninger",
"commGuideList11D": "Slettelser (Moderatorer/Ansatte kan slette problematisk indhold)",
- "commGuideList11E": "Rettelser (Moderatorer/Ansatte kan slette problematisk indhold)",
+ "commGuideList11E": "Rettelser (Moderatorer/Ansatte kan redigere problematisk indhold)",
"commGuideHeadingRestoration": "Genoprettelse",
"commGuidePara061": "Habitica er en land dedikeret til forbedring, og vi tror på at give en chance til
Hvis du begår en overtrædelse og bliver udsat for en konsekvens som følge, så se det som en mulighed for at evaluere dine handlinger og forbedre din opførsel som medlem af fællesskabet.",
"commGuidePara062": "Den bekendtgørelse, besked og/eller email du modtager, der forklarer konsekvenserne af dine handlinger, er en god kilde til information. Hold dig til de begrænsninger der er blevet påført, og bestræb dig på at møde de krav, der kan få eventuelle straffe ophævet.",
"commGuidePara063": "Hvis du ikke forstår konsekvenserne eller arten af din overtrædelse, så bed Medarbejderne/Moderatorerne om hjælp, så du kan undgå at begå overtrædelser i fremtiden. Hvis du føler at en bestemt beslutning var uretfærdig, kan du kontakte de ansatte for at diskutere det på
admin@habitica.com.",
"commGuideHeadingMeet": "Mød de Ansatte og Moderatorerne!",
- "commGuidePara006": "Habitica har nogle utrættelige omvandrende riddere, der kæmper sammen med de ansatta for at holde fællesskabet roligt, tilfreds, og frit for trolde. Hver har et specifikt domæne, men vil sommetider blive kaldt ind for at hjælpe i andre sociale sfærer.",
+ "commGuidePara006": "Habitica har nogle utrættelige omvandrende riddere, der kæmper sammen med de ansatte for at holde fællesskabet roligt, tilfreds, og frit for trolde. Hver har et specifikt domæne, men vil sommetider blive kaldt ind for at hjælpe i andre sociale sfærer.",
"commGuidePara007": "Ansatte har lilla tags markeret med kroner. Deres titel er \"Heltemodig\".",
- "commGuidePara008": "Moderatorer har mørkeblå tags markeret med stjerner. Deres titel er \"Beskytter\". Den eneste undtagelse er Bailey, der som NPC har et sort og grønt tag markeret med en stjerne.",
- "commGuidePara009": "De nuværende Ansatte er (fra venstre mod højre):",
- "commGuideAKA": "<%= habitName %> aka <%= realName %>",
+ "commGuidePara008": "Moderatorer har mørkeblå tags markeret med stjerner. Deres titel er \"Beskytter\".",
+ "commGuidePara009": "De nuværende ansatte er (fra venstre mod højre):",
+ "commGuideAKA": "<%= habitName %>, aka <%= realName %>",
"commGuideOnTrello": "<%= trelloName %> på Trello",
"commGuideOnGitHub": "<%= gitHubName %> på GitHub",
"commGuidePara010": "Der er også flere Moderatorer, der hjælper de ansatte. Disse er omhyggeligt udvalgt, så vis dem respekt og lyt til deres forslag.",
- "commGuidePara011": "De nuværende Moderatorer er (fra venstre mod højre):",
- "commGuidePara011b": "På GitHub/Wikia",
- "commGuidePara011c": "på Wikia",
+ "commGuidePara011": "De nuværende moderatorer er (fra venstre mod højre):",
+ "commGuidePara011b": "på GitHub/Fandom",
+ "commGuidePara011c": "på wiki'en",
"commGuidePara011d": "på GitHub",
"commGuidePara012": "Hvis du har et problem eller bekymring, der drejer sig om en bestemt Moderator, så send venligst en email til vores Medarbejdere (
admin@habitica.com).",
"commGuidePara013": "Brugere kommer og går i et fællesskab så stort som Habitica. Sommetider bliver en medarbejder eller moderator nødt til at fralægge sig deres ædle kappe, og slappe lidt af. De følgende er Ansatte og Moderatorer Emeritus. De løfter ikke længere et ansvar som Ansat eller Moderator, men vi vil stadig gerne mindes deres indsats!",
- "commGuidePara014": "Ansatte og Moderatorer Emeritus:",
- "commGuideHeadingFinal": "Den Sidste Sektion",
- "commGuidePara067": "Det var så det, modige Habiticaner - Retningslinjerne for fællesskabet! Tør sveden af panden og giv dig selv nogle Erfaringpoint for at læse det hele. Hvis du har nogle spørgsmål om disse Retningslinjer for fællesskabet, så tag venligst fat i os via
Moderatorkontaktformularen, og vi vil med glæde forsøge at gøre tingene klart for dig.",
- "commGuidePara068": "Tag afsted, modige eventyrer, og bekæmp nogle Daglige!",
+ "commGuidePara014": "Ansatte og Moderatorer emeritus:",
+ "commGuideHeadingFinal": "Den sidste sektion",
+ "commGuidePara067": "Det var så det, modige Habiticaner - Retningslinjerne for fællesskabet! Tør sveden af panden og giv dig selv nogle Erfaringpoint for at læse det hele. Hvis du har nogle spørgsmål om disse Retningslinjer for fællesskabet, så tag venligst fat i os via
admin@habitica.com, og vi vil med glæde forsøge at gøre tingene klart for dig.",
+ "commGuidePara068": "Tag afsted, modige eventyrer, og nedkæmp nogle Daglige!",
"commGuideHeadingLinks": "Nyttige links",
"commGuideLink01": "
Habitica Help: Ask a Question: en Klan hvor brugere kan stille spørgsmål!",
- "commGuideLink02": "
Wiki'en: den største samling af information om Habitica.",
- "commGuideLink03": "
GitHub: til bug-rapporter eller hjælp med kodning!",
+ "commGuideLink02": "
Wiki'en: den største samling af information om Habitica.",
+ "commGuideLink03": "
GitHub: for at hjælpe med kodning!",
"commGuideLink04": "
Feedbackformularen: til forslag til hjemmesiden og app'en.",
"commGuideLink05": "
Den mobile Trello: til at bede om funktioner til vores apps.",
"commGuideLink06": "
Kunst-Trello: til at indsende pixel art.",
"commGuideLink07": "
Quest-Trello: til at indsende tekst til quests.",
- "commGuidePara069": "Følgende talentfulde kunstnere har bidraget med disse illustrationer:"
+ "commGuidePara069": "Følgende talentfulde kunstnere har bidraget med disse illustrationer:",
+ "commGuidePara017": "Her er den hurtige version, men vi opfordrer dig til at læse den mere detaljerede udgave nedenunder:",
+ "commGuideList01A": "Vores Betingelser & Vilkår gælder alle steder i Habitica, inklusiv private klaner, holdchatten og private beskeder.",
+ "commGuideList02M": "Bed eller tig ikke andre om at give dig ædelsten, et abonnement eller medlemskab i gruppeplaner. Dette er ikke tilladt at gøre i hverken Værtshuset, offentlige eller private rum, eller i privatbeskeder. Hvis du får en besked med en anmodning om ting, der koster rigtige penge, så rapportér dem venligst. Gentaget eller groft tiggeri, især efter en advarsel er blevet udstedt, kan resulterer i en blokering af din konto.",
+ "commGuideList01B": "Forbudt: Al kommunikation der er voldeligt, truende, opfordrer til diskrimination osv., inklusiv memes, billeder og jokes.",
+ "commGuideList01C": "Al samtale skal være passende for enhver aldersgruppe og ikke indeholde skælds- ellers bandeord.",
+ "commGuideList01D": "Følg venligst moderatorernes anvisninger.",
+ "commGuideList01E": "Start og deltag ikke i diskussioner i Værtshuset, der kan føre til skænderier.",
+ "commGuideList01F": "Bed ikke andre om at give dig ting der koster rigtige penge, spam ikke, og skriv ikke beskeder i all caps eller stor overskriftstekst.",
+ "commGuideList05H": "Grove eller gentagne forsøg på at bedrage eller presse andre spillere til at give dig genstande/services, der koster rigtige penge",
+ "commGuideList09D": "Fjernelse af Bidragsyder-niveauer"
}
diff --git a/website/common/locales/da/content.json b/website/common/locales/da/content.json
index 5b5acebd8a..24dc9bd63e 100644
--- a/website/common/locales/da/content.json
+++ b/website/common/locales/da/content.json
@@ -38,8 +38,8 @@
"questEggHedgehogText": "Pindsvin",
"questEggHedgehogMountText": "Pindsvin",
"questEggHedgehogAdjective": "et stikkende",
- "questEggDeerText": "Rådyr",
- "questEggDeerMountText": "Rådyr",
+ "questEggDeerText": "Hjort",
+ "questEggDeerMountText": "Hjort",
"questEggDeerAdjective": "et elegant",
"questEggEggText": "Æg",
"questEggEggMountText": "Æggekurv",
@@ -200,7 +200,7 @@
"hatchingPotionEmber": "Glødende",
"hatchingPotionThunderstorm": "Tordenvejr",
"hatchingPotionGhost": "Spøgelse",
- "hatchingPotionRoyalPurple": "Royal lilla",
+ "hatchingPotionRoyalPurple": "Purpur",
"hatchingPotionHolly": "Kristtorn",
"hatchingPotionCupid": "Amor",
"hatchingPotionShimmer": "Glimmer",
@@ -365,5 +365,12 @@
"questEggDolphinAdjective": "en munter",
"questEggDolphinMountText": "Delfin",
"questEggDolphinText": "Delfin",
- "hatchingPotionDessert": "Konfekt"
+ "hatchingPotionDessert": "Konfekt",
+ "hatchingPotionFluorite": "Fluorid",
+ "hatchingPotionSunset": "Solnedgangs",
+ "hatchingPotionMoonglow": "Månelys",
+ "hatchingPotionSolarSystem": "Solsystems",
+ "hatchingPotionOnyx": "Onyks",
+ "hatchingPotionPorcelain": "Porcelæns",
+ "hatchingPotionVirtualPet": "Virtuelt kæledyrs"
}
diff --git a/website/common/locales/da/contrib.json b/website/common/locales/da/contrib.json
index 61d0a1d553..e858d56429 100644
--- a/website/common/locales/da/contrib.json
+++ b/website/common/locales/da/contrib.json
@@ -49,9 +49,10 @@
"balance": "Balance",
"playerTiers": "Spillertrin",
"tier": "Trin",
- "conRewardsURL": "http://habitica.fandom.com/wiki/Contributor_Rewards",
+ "conRewardsURL": "https://habitica.fandom.com/wiki/Contributor_Rewards",
"surveysSingle": "Hjalp Habitica med at vokse ved at udfylde et spørgeskema eller var en stor hjælp ved test. Tusind tak!",
"surveysMultiple": "Hjalp Habitica med at vokse ved <%= count %> lejligheder, enten ved at udfylde et spørgeskema eller hjalp med et større test-arbejde. Tusind tak!",
"blurbHallPatrons": "Dette er Protektorernes Sal, hvor vi ærer de ædle eventyrere, der støttede Habiticas originale Kickstarter. Vi takker dem for at hjælpe os med at vække Habitica til live!",
- "blurbHallContributors": "Dette er Bidragsydernes Sal, hvor dem, der har bidraget med open-source materiale til Habitica, bliver æret. Om det er gennem kode, grafik, musik, tekst eller bare generel hjælpsomhed, har de modtaget
ædelsten, eksklusivt udstyr, og
prestigefyldte titler. Du kan også bidrage til Habitica!
Find ud af mere her. "
+ "blurbHallContributors": "Dette er Bidragsydernes Sal, hvor dem, der har bidraget med open-source materiale til Habitica, bliver æret. Om det er gennem kode, grafik, musik, tekst eller bare generel hjælpsomhed, har de modtaget
ædelsten, eksklusivt udstyr, og
prestigefyldte titler. Du kan også bidrage til Habitica!
Find ud af mere her. ",
+ "noPrivAccess": "Du har ikke de påkrævede rettigheder."
}
diff --git a/website/common/locales/da/death.json b/website/common/locales/da/death.json
index b24a8ac49b..eeadc8213f 100644
--- a/website/common/locales/da/death.json
+++ b/website/common/locales/da/death.json
@@ -3,7 +3,7 @@
"dontDespair": "Bare rolig!",
"deathPenaltyDetails": "Du mistede et Niveau, dit Guld og et stykke Udstyr, men du kan få det hele igen med hårdt arbejde! Held og lykke - du skal nok klare den.",
"refillHealthTryAgain": "Genfyld Liv og Prøv Igen",
- "dyingOftenTips": "Sker dette ofte?
Her er nogle fif!",
+ "dyingOftenTips": "Sker dette ofte?
Her er nogle fif!",
"losingHealthWarning": "Pas på - du mister Liv!",
"losingHealthWarning2": "Lad ikke dit Liv falde til nul! Hvis du gør det vil du tabe et niveau, alt dit guld og et stykke udstyr.",
"toRegainHealth": "For at genopfylde Liv:",
@@ -14,4 +14,4 @@
"lowHealthTips4": "Hvis en Daglig ikke er forfalden på en given dag, kan du deaktivere den ved at klikke på blyanten.",
"goodLuck": "Held og lykke!",
"cannotRevive": "Du kan ikke genoplive hvis du ikke er død"
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/da/defaulttasks.json b/website/common/locales/da/defaulttasks.json
index d51a9c3a14..4c09693337 100644
--- a/website/common/locales/da/defaulttasks.json
+++ b/website/common/locales/da/defaulttasks.json
@@ -3,9 +3,9 @@
"defaultHabit2Text": "Spis junk food (Klik på blyanten for at redigere)",
"defaultHabit3Text": "Tag trapperne/elevatoren (Klik på blyanten for at redigere)",
"defaultHabit4Text": "Tilføj en opgave til Habitica",
- "defaultHabit4Notes": "Enten en Vane, en Daglig eller en To-Do",
+ "defaultHabit4Notes": "Enten en Vane, en Daglig eller en To Do",
"defaultTodo1Text": "Begynd at bruge Habitica (Markér mig som færdig!)",
- "defaultTodoNotes": "Du kan enten færdiggøre denne To-Do, ændre den, eller fjerne den.",
+ "defaultTodoNotes": "Du kan enten færdiggøre denne To Do, ændre den eller fjerne den.",
"defaultReward1Text": "15 minutters pause",
"defaultReward2Text": "Beløn dig selv",
"defaultReward2Notes": "Se fjernsyn, spil et spil, spis noget guf, det er op til dig!",
diff --git a/website/common/locales/da/faq.json b/website/common/locales/da/faq.json
index 3bbf684819..7fd793e1d0 100644
--- a/website/common/locales/da/faq.json
+++ b/website/common/locales/da/faq.json
@@ -9,9 +9,9 @@
"androidFaqAnswer1": "Gode vaner (med et +) er opgaver du kan gøre mange gange om dagen, som for eksempel at spise grøntsager. Dårlige vaner (med et -) er opgaver du bør undgå, som for eksempel at bide negle. Vaner med både + og - involverer et godt og et dårligt valg, som for eksempel at tage trappen vs. at tage elevatoren. Gode vaner belønner dig med erfaring og guld. Dårlige vaner trækker fra dit Helbred (HP).\n\n Daglige er opgaver du skal gøre hver dag, såsom at børste dine tænder eller tjekke din email. Du kan justere de dage du skal udføre en Daglig opgave ved at trykke let for at redigere den. Hvis du springer en Daglig opgave over, som du skulle have udført, tager din karakter skade i løbet af natten. Vær forsigtig ikke at tilføje for mange Daglige opgaver ad gangen!\n\n To Do's er din To Do liste. At gennemføre en To Do giver guld og erfaring. Du mister aldrig Helbred ved ikke at udføre en To Do. Du kan tilføje en dato, hvor du skal have udført din To Do ved at trykke let for at redigere den.",
"webFaqAnswer1": "* Gode Vaner (the ones with a :heavy_plus_sign:) er opgaver du kan gøre flere gange om dagen, såsom at spise grøntsager. Dårlige Vaner (the ones with a :heavy_minus_sign:) er opgaver du bør undgå, såsom at bide negle. Vaner med både et :heavy_plus_sign: og et :heavy_minus_sign: har et godt og et skidt valg, som fx at tage trappen VS at tage elevatoren. Gode Vaner belønner dig med Erfaring og Guld. Dårlige Vaner trækker fra dit Helbred (HP).\n* Daglige er opgaver du skal gøre hver dag, såsom at børste tænder eller checke din email. Du kan justere de dage, en Daglig er forfalden på, ved at klikke på blyantsikonet for at redigere opgaven. Hvis du skipper en Daglig, der er fordalden, vil din avatar tage skade i løbet af natten. Tilføj ikke for mange Daglige af gangen!\n* To Do's er din To Doliste. At fuldføre en To Do giver dig Guld og Erfaring. Du vil aldrig miste Liv fra To Do's. Du kan give en To Do en forfaldsdato, ved at klikke på blyantsikonet for at redigere den.",
"faqQuestion2": "Har I nogle eksempler på opgaver?",
- "iosFaqAnswer2": "Wiki'en har fire lister med eksempler på opgaver, der kan bruges som inspiration. Habitica Wiki'en er endnu ikke oversat til dansk.\n\n* [Eksempler på Vaner](https://habitica.fandom.com/wiki/Sample_Habits)\n* [Eksempler på Daglige opgaver](https://habitica.fandom.com/wiki/Sample_Dailies)\n* [Eksempler på To Do's](https://habitica.fandom.com/wiki/Sample_To-Dos)\n* [Eksempler på Belønninger](https://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
- "androidFaqAnswer2": "Wiki'en har fire lister med eksempler på opgaver, der kan bruges som inspiration. Habitica Wiki'en er endnu ikke oversat til dansk.\n\n* [Eksempler på Vaner](https://habitica.fandom.com/wiki/Sample_Habits)\n* [Eksempler på Daglige opgaver](https://habitica.fandom.com/wiki/Sample_Dailies)\n* [Eksempler på To Do's](https://habitica.fandom.com/wiki/Sample_To-Dos)\n* [Eksempler på Belønninger](https://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
- "webFaqAnswer2": "Wiki'en har fire lister med eksempler på opgaver, der kan bruges som inspiration. Habitica Wiki'en er endnu ikke oversat til dansk.\n\n* [Eksempler på Vaner](https://habitica.fandom.com/wiki/Sample_Habits)\n* [Eksempler på Daglige opgaver](https://habitica.fandom.com/wiki/Sample_Dailies)\n* [Eksempler på To Do's](https://habitica.fandom.com/wiki/Sample_To-Dos)\n* [Eksempler på Belønninger](https://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
+ "iosFaqAnswer2": "Wiki'en har fire lister med eksempler på opgaver, der kan bruges som inspiration. Habitica Wiki'en er endnu ikke oversat til dansk.\n\n* [Eksempler på Vaner](https://habitica.fandom.com/wiki/Sample_Habits)\n* [Eksempler på Daglige opgaver](https://habitica.fandom.com/wiki/Sample_Dailies)\n* [Eksempler på To Do's](https://habitica.fandom.com/wiki/Sample_To_Do%27s)\n* [Eksempler på Belønninger](https://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
+ "androidFaqAnswer2": "Wiki'en har fire lister med eksempler på opgaver, der kan bruges som inspiration. Habitica Wiki'en er endnu ikke oversat til dansk.\n\n* [Eksempler på Vaner](https://habitica.fandom.com/wiki/Sample_Habits)\n* [Eksempler på Daglige opgaver](https://habitica.fandom.com/wiki/Sample_Dailies)\n* [Eksempler på To Do's](https://habitica.fandom.com/wiki/Sample_To_Do%27s)\n* [Eksempler på Belønninger](https://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
+ "webFaqAnswer2": "Wiki'en har fire lister med eksempler på opgaver, der kan bruges som inspiration. Habitica Wiki'en er endnu ikke oversat til dansk.\n\n* [Eksempler på Vaner](https://habitica.fandom.com/wiki/Sample_Habits)\n* [Eksempler på Daglige opgaver](https://habitica.fandom.com/wiki/Sample_Dailies)\n* [Eksempler på To Do's](https://habitica.fandom.com/wiki/Sample_To_Do%27s)\n* [Eksempler på Belønninger](https://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
"faqQuestion3": "Hvorfor skifter mine opgaver farve?",
"iosFaqAnswer3": "Dine opgaver ændrer farve baseret på hvor godt du klarer dig i øjeblikket! Hver ny opgave begynder som neutral gul. Udfør Daglige opgaver eller gode Vaner oftere, og de vil begynde at ændre sig til blå. Undlad at udføre en daglig opgave, eller buk under for en dårlig vane, og opgaven vil ændre sig til rød. Jo rødere en opgave er, jo større er belønningen for at udføre den, men hvis det er en daglig opgave eller en dårlig vane, jo mere vil den skade dit helbred! Dette hjælper med at motivere dig til at udføre de opgaver, der ellers giver dig problemer.",
"androidFaqAnswer3": "Dine opgaver ændrer farve baseret på hvor godt du klarer dig i øjeblikket! Hver ny opgave begynder som neutral gul. Udfør Daglige opgaver eller gode Vaner oftere, og de vil begynde at ændre sig til blå. Undlad at udføre en daglig opgave, eller buk under for en dårlig vane, og opgaven vil ændre sig til rød. Jo rødere en opgave er, jo større er belønningen for at udføre den, men hvis det er en daglig opgave eller en dårlig vane, jo mere vil den skade dit helbred! Dette hjælper med at motivere dig til at udføre de opgaver, der ellers giver dig problemer.",
@@ -22,12 +22,12 @@
"webFaqAnswer4": "Der er adskillige ting, der kan få dig til at miste HP. For det første, hvis du undlod at sætte mærke ved Daglige opgaver i løbet af natten, og heller ikke satte mærke ved dem i pop-up vinduet næste morgen, vil de uudførte Daglige skade dig. For det andet vil du tage skade, hvis du klikker på en dårlig Vane. Til slut vil du, hvis du er ved at kæmpe mod en Boss med dit Hold, og et af dine Holdmedlemmer ikke udfører alle deres daglige, blive angrebet af Bossen og tage skade. Den primære måde at få Helbred tilbage er ved at stige i niveau, hvilket giver dig fuldt HP igen. Du kan også købe en Livseliksir med guld fra kolonnen 'Belønninger'. Desuden kan du, fra niveau 10 og opefter, vælge at blive en Helbreder, og du vil da lære helende Evner. Hvis du er på Hold med en Helbreder, kan de også hele dig. Lær mere ved at trykke på \"Hold\" i navigationen.",
"faqQuestion5": "Hvordan spiller jeg Habitica med mine venner?",
"iosFaqAnswer5": "Den bedste måde at gøre det på er ved at invitere dem til dit Hold! Hold kan gå på Quests, slås mod monstre, og bruge Evner for at støtte hinanden.\n\nHvis du vil starte dit eget Hold, så gå til Menu > [Hold](https://habitica.com/party) og tap Opret nyt Hold\". Bagefter scroller du ned og finder \"Inviter et Medlem\" for at invitere dine venner ved at indtaste deres @brugernavn. Hvis du hellere vil være med på en andens Hold, så bare giv dem dit @brugernavn, og så kan de invitere dig!\n\nDu og dine venner kan også være med i Klaner, som er offentlige chatrum der bringer folk sammen baseret på fælles interesser! Der er mange hjælpsomme og sjove fællesskaber at opdage.\n\nHvis du føler dig mere konkurrencelysten, kan du og dine venner lave eller deltage i Udfordringer for at tackle et bestemt sæt opgaver. Der er alle mulige slags offentlige Udfordringer for en bred vifte af interesser og mål. Nogle offentlige Udfordringer har endda en belønning i form af Ædelsten, hvis du bliver den endelige vinder.",
- "androidFaqAnswer5": "Den bedste måde at gøre det på er ved at invitere dem til dit hold! Hold kan lave quests, kæmpe mod monstre, og kaste evner for at hjælpe hinanden. Gå til [websitet](https://habitica.com) for at oprette et, hvis du ikke allerede har et hold. I kan også melde jer ind i Klaner sammen (Social > Klaner). Klaner er chatrum med fokus på en bestemt interesse eller fælles mål, og kan være offentlige eller private. Du kan være med i så mange Klaner du har lyst, men kun et Hold.\n\n For mere detaljeret info, så læs wiki'en om [Hold](http://habitica.fandom.com/wiki/Party) og [Klaner](http://habitica.fandom.com/wiki/Guilds). Habitica wiki'en er endnu ikke oversat til dansk.",
- "webFaqAnswer5": "Den bedste måde at gøre det på er ved at invitere dem til dit hold sammen med dig ved at klikke på \"Hold\" i navigationen! Hold kan lave quests, kæmpe mod monstre, og kaste evner for at hjælpe hinanden. I kan også melde jer ind i Klaner sammen (klike på \"Klaner\" i navigationen). Klaner er chatrum med fokus på en bestemt interesse eller fælles mål, og kan være offentlige eller private. Du kan være med i så mange Klaner du har lyst, men kun et Hold. For mere detaljeret info, så læs wiki'en om [Hold](http://habitica.fandom.com/wiki/Party) og [Klaner](http://habitica.fandom.com/wiki/Guilds). Habitica wiki'en er endnu ikke oversat til dansk.",
+ "androidFaqAnswer5": "Den bedste måde at gøre det på er ved at invitere dem til dit hold! Hold kan lave quests, kæmpe mod monstre, og kaste evner for at hjælpe hinanden. Gå til [websitet](https://habitica.com) for at oprette et, hvis du ikke allerede har et hold. I kan også melde jer ind i Klaner sammen (Social > Klaner). Klaner er chatrum med fokus på en bestemt interesse eller fælles mål, og kan være offentlige eller private. Du kan være med i så mange Klaner du har lyst, men kun et Hold.\n\n For mere detaljeret info, så læs wiki'en om [Hold](https://habitica.fandom.com/wiki/Party) og [Klaner](https://habitica.fandom.com/wiki/Guilds). Habitica wiki'en er endnu ikke oversat til dansk.",
+ "webFaqAnswer5": "Den bedste måde at gøre det på er ved at invitere dem til dit hold sammen med dig ved at klikke på \"Hold\" i navigationen! Hold kan lave quests, kæmpe mod monstre, og kaste evner for at hjælpe hinanden. I kan også melde jer ind i Klaner sammen (klike på \"Klaner\" i navigationen). Klaner er chatrum med fokus på en bestemt interesse eller fælles mål, og kan være offentlige eller private. Du kan være med i så mange Klaner du har lyst, men kun et Hold. For mere detaljeret info, så læs wiki'en om [Hold](https://habitica.fandom.com/wiki/Party) og [Klaner](https://habitica.fandom.com/wiki/Guilds). Habitica wiki'en er endnu ikke oversat til dansk.",
"faqQuestion6": "Hvordan får jeg et kæledyr eller ridedyr?",
"iosFaqAnswer6": "Hver gang du fuldfører en opgave har du en tilfældig chance for at få et Kæledyrsæg, en Udrugningseliksir, eller et stykke Kæledyrsmad. Du kan finde dem alle under Menu > Genstande.\n\nFor at udklække et Kæledyr har du brug for et Æg og en Eliksir. Tryk på Ægget for at finde ud af, hvilken art du vil udklække, og vælg \"Udklæk Æg\". Vælg derefter en Udrugningseliksir for at vælge Kæledyrets farve! Få til Menu > Kæledyr og tryk på dit nye Kæledyr for at lade det følges med din avatar.\n\nDu kan også lade Kæledyr vokse til Rudedyr ved at fodre dem under Menu > Kæledyr. Tryk på dit Kæledyr og vælg \"Fodr Kæledyr\"!. Du er nødt til at fodre et Kæledyr mange gange før det bliver til et Ridedyr, men hvis du kan regne dets livret ud, vil det vokse hurtigere. Prøv dig frem eller [se svaret her](https://habitica.fandom.com/wiki/Food#Food_Preferences). Når du har et Ridedyr, så gå til Menu > Ridedyr og tryk på det for at lade det følges med din avatar.\n\nDu kan også få Æg af Questkæledyr ved at klare bestemte Quests (for at lære mere om Quests, se [Hvordan slås jeg mod monstre og deltager i Quests](https://habitica.com/static/faq/#monsters-quests)).",
"androidFaqAnswer6": "Ved niveau 3 aktiveres Dropsystemet. Hver gang du fuldfører en opgave, vil du have en tilfældig chance for at modtage et Æg, en Udrugningseleksir, eller et stykke Kæledyrsmad. De vil opbevares i Menu > Genstande.\n\n For at udruge et Kæledyr skal du bruge et Æg og en Udrugningseleksir. Klik på Ægget for at afklare hvilken art du vil udruge, og klik så på \"Udrug Æg\". Vælg derefter en Udrugningseleksir for at vælge dets farve! For at anvende et nyt Kæledyr skal du gå til Menu > Stald > Kæledyr, vælge en art, klikke på det Kæledyr du ønsker og vælge \"Brug\" (Din Avatar opdateres ikke med det nye valg).\n\n Du kan også opfostre dine Kæledyr til Ridedyr ved at fodre dem under Menu > Stald [ > Kæledyr ]. Tryk på et Kæledyr og vælg \"Fodr\"! Du skal fodre et Kæledyr mange gange før det bliver et Ridedyr, men hvis du kan regne ud hvilken slags mad det kan lide, vil det vokse langt hurtigere. Prøv dig frem, eller [se løsningen her](https://habitica.fandom.com/wiki/Food#Food_Preferences). For at tilføje dit Ridedyr skal du gå til Menu > Stald > Ridedyr, klikke på det Ridedyr du vil ønsker og vælge \"Brug\" (Din Avatar opdateres ikke med det nye valg).\n\n Du kan også få Æg til Questkæledyr ved at fuldføre visse Quests. (Se herunder for at få mere at vide om Quests.)",
- "webFaqAnswer6": "Ved niveau 3 aktiveres Dropsystemet. Hver gang du fuldfører en opgave, vil du have en tilfældig chance for at modtage et Æg, en Udrugningseleksir, eller et stykke Kæledyrsmad. De vil opbevares i Menu > Genstande. For at udruge et Kæledyr skal du bruge et Æg og en Udrugningseleksir. Når du har både et Æg og en Udrugningseliksir, så gå til Inventar > Stald for at udklække dit Kæledyr ved at klikke på dets billede. Når du har udklækket et Kæledyr, kan du tage det med dig ved at klikke på det. Du kan også opfostre dine Kæledyr til Ridedyr ved at fodre dem under Inventar > Stald. Træk et stykke mad fra den grå bar nederst på skærmen over på et Kæledyr for at fodre det! Du skal fodre et Kæledyr mange gange før det bliver et Ridedyr, men hvis du kan regne ud hvilken slags mad det bedst kan lide, vil det vokse langt hurtigere. Prøv dig frem, eller [se løsningen her](http://habitica.fandom.com/wiki/Food#Food_Preferences). Når du har et Ridedyr, så klik på den for at tilføje den til din avatar. Du kan også få Æg til Questkæledyr ved at gennemføre visse Quests. (Se herunder for at få mere at vide om Quests.)",
+ "webFaqAnswer6": "Ved niveau 3 aktiveres Dropsystemet. Hver gang du fuldfører en opgave, vil du have en tilfældig chance for at modtage et Æg, en Udrugningseleksir, eller et stykke Kæledyrsmad. De vil opbevares i Menu > Genstande. For at udruge et Kæledyr skal du bruge et Æg og en Udrugningseleksir. Når du har både et Æg og en Udrugningseliksir, så gå til Inventar > Stald for at udklække dit Kæledyr ved at klikke på dets billede. Når du har udklækket et Kæledyr, kan du tage det med dig ved at klikke på det. Du kan også opfostre dine Kæledyr til Ridedyr ved at fodre dem under Inventar > Stald. Træk et stykke mad fra den grå bar nederst på skærmen over på et Kæledyr for at fodre det! Du skal fodre et Kæledyr mange gange før det bliver et Ridedyr, men hvis du kan regne ud hvilken slags mad det bedst kan lide, vil det vokse langt hurtigere. Prøv dig frem, eller [se løsningen her](https://habitica.fandom.com/wiki/Food#Food_Preferences). Når du har et Ridedyr, så klik på den for at tilføje den til din avatar. Du kan også få Æg til Questkæledyr ved at gennemføre visse Quests. (Se herunder for at få mere at vide om Quests.)",
"faqQuestion7": "Hvordan bliver jeg en Kriger, Magiker, Slyngel eller Helbreder?",
"iosFaqAnswer7": "Når du når niveau 10, kan du vælge at blive en Kriger, Magiker, Slyngel eller Helbreder. (Alle spillere starter som Krigere.) Hver klasse har forskellige muligheder for udstyr, forskellige Evner de kan kaste efter niveau 11, og forskellige fordele. Krigere kan let gøre skade på bosser, tåle mere skade fra deres uudførte opgaver, og hjælpe med at gøre deres gruppe mere hårdføre. Magikere kan også let gøre skade på bosser, samt stige hurtigt i niveau og genskabe mana for deres gruppe. Slyngler er dem, der tjener mest guld og finder de fleste genstande, og de kan hjælpe deres Hold med at gøre det samme. Endelig kan Helbredere hele sig selv og deres holdmedlemmer.\n\nHvis du ikke vil vælge en klasse med det samme - hvis du for eksempel stadig er i gang med at købe alt udstyret til din nuværende klasse - kan du vælge \"Fravælg\" og vælge senere ved at åbne Menuen, derefter ikonet for Indstilliger, og så \"Vælg Klasse\".",
"androidFaqAnswer7": "Når du når niveau 10 kan du vælge at blive en Kriger, Magiker, Slyngel eller Helbreder. (Alle spillere starter som Krigere.) Hver klasse har forskellige muligheder for udstyr, forskellige Evner du kan kaste efter niveau 11, og forskellige fordele. Krigere kan let gøre skade på bosser, tåle mere skade fra deres u-udførte opgaver, og hjælpe med at gøre deres gruppe sejere. Magikere kan også let gøre skade på bosser, samt stige hurtigt i niveau og genskabe mana for deres gruppe. Slyngler er dem der tjener mest guld og finder de fleste genstande, og de kan hjælpe deres Hold med at gøre det samme. Endelig kan Helbredere hele sig selv og deres holdmedlemmer.\n\nHvis du ikke vil vælge en klasse med det samme - hvis du for eksempel stadig er i gang med at købe alt udstyret til din nuværende klasse -- an du vælge \"Fravælg\", og vælge senere ved at åbne Menuen, derefter ikonet for Indstilliger, og så \"Vælg Klasse\".",
@@ -41,18 +41,20 @@
"androidFaqAnswer9": "Først er du nødt til at starte eller blive en del af et Hold (se ovenfor). Selvom du kan kæmpe mod monstre alene, så anbefaler vi en gruppe, fordi det vil gøre Quests meget lettere. Desuden er det meget motiverende med en ven, som hepper på dig mens du klarer dine opgaver!\n\n Som det næste skal du bruge en Questskriftrulle, som findes under Menu > Items. Der er fire måder at få en skriftrulle på:\n\n - På niveau 15 får du en Questserie, altså tre sammenhængende quests. Der bliver låst op for flere questserier ved niveau 30, 40 og 60.\n - Når du inviterer folk til dit Hold, vil du blive belønnet med skriftrullen 'Basi-list'!\n - Du kan købe questskriftruller fra questbutikken for Guld og Ædelsten.\n - Når du checker ind i Habitica et bestemt antal gange, vil du blive belønnet med Questskriftruller. Du får en skriftrulle ved check-in nr. 1, 7, 22 og 40.\n\n For at kæmpe mod bossen, eller indsamle genstande til en indsamlingsquest, så udfør bare dine opgaver som normalt, og de vil blive talt med som skade i løbet af natten. (Det kan være nødvendigt at genindlæse data ved at trække ned på skærmen, for at se Bossens HP falde.) Hvis du kæmper mod en Boss og ikke udfører alle Daglige opgaver, vil Bossen skade dit Hold samtidig med at du skader bossen.\n\n Efter niveau 11 vil Krigere og Magikere få Evner, der tillader dem at påføre Bossen ekstra skade, så disse to er gode valg at tage på niveau 10, hvis du ønsker at være en, der slår hårdt!",
"webFaqAnswer9": "Først er du nødt til at starte eller blive en del af et Hold ved at klikke på \"Hold\" i navigationen. Selvom du kan kæmpe mod monstre alene, så anbefaler vi en gruppe, fordi det vil gøre Quests meget lettere. Desuden er det meget motiverende med en ven, som hepper på dig mens du klarer dine opgaver! Som det næste skal du bruge en Questskriftrulle, som findes under Inventar > Quests. Der er fire måder at få en skriftrulle på:\n * På niveau 15 får du en Questserie, altså tre sammenhængende quests. Der bliver låst op for flere questserier ved niveau 30, 40 og 60.\n * Når du inviterer folk til dit Hold, vil du blive belønnet med skriftrullen 'Basi-list'!\n * Du kan købe questskriftruller fra questbutikken for Guld og Ædelsten.\n * Når du checker ind i Habitica et bestemt antal gange, vil du blive belønnet med Questskriftruller. Du får en skriftrulle ved check-in nr. 1, 7, 22 og 40.\n For at kæmpe mod bossen, eller indsamle genstande til en indsamlingsquest, så udfør bare dine opgaver som normalt, og de vil blive talt med som skade i løbet af natten. (Det kan være nødvendigt at genindlæse siden for at se Bossens HP falde.) Hvis du kæmper mod en Boss og ikke udfører alle Daglige opgaver, vil Bossen skade dit Hold samtidig med at du skader bossen. Efter niveau 11 vil Krigere og Magikere få Evner, der tillader dem at påføre Bossen ekstra skade, så disse to er gode valg at tage på niveau 10, hvis du ønsker at være en, der slår hårdt!",
"faqQuestion10": "Hvad er Ædelsten, og hvordan får jeg fat i dem?",
- "iosFaqAnswer10": "Ædelsten købes for rigtige penge via Menu > Køb Ædelsten. Når du køber Ædelsten hjælper du os med at holde Habitica kørende. Vi er sætter stor pris på al mulig støtte!\n\n Udover at købe Ædelsten direkte er der tre andre måder spillere kan optjene Ædelsten på:\n\n * Vind en Udfordring der er blevet lavet af en anden spiller. Gå til Menu > Udfordringer for at finde nogen at deltage i.\n * Bliv abonnent og få adgang til at købe et begrænset antal Ædelsten med Guld hver måned.\n * Bidrag med dine egne færdigheder til Habitica! Se denne side for flere detaljer: [Bidrag til Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica) (engelsk).\n\nVær opmærksom på, at genstande der er købt med Ædelsten ikke giver nogle statistiske fordele, så spillere kan stadig bruge app'en uden dem!",
- "androidFaqAnswer10": "Ædelsten købes for rigtige penge via Menu > Køb Ædelsten. Når du køber Ædelsten hjælper du os med at holde Habitica kørende. Vi er sætter stor pris på al mulig støtte!\n\n Udover at købe Ædelsten direkte er der tre andre måder spillere kan optjene Ædelsten på:\n\n * Vind en Udfordring der er blevet lavet af en anden spiller. Gå til Menu > Udfordringer for at finde nogen at deltage i.\n * Bliv abonnent og få adgang til at købe et begrænset antal Ædelsten med Guld hver måned.\n * Bidrag med dine egne færdigheder til Habitica! Se denne side for flere detaljer: [Bidrag til Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica) (engelsk).\n\nVær opmærksom på, at genstande der er købt med Ædelsten ikke giver nogle statistiske fordele, så spillere kan stadig bruge app'en uden dem!",
- "webFaqAnswer10": "Ædelsten købes for rigtige penge, selvom [abonnenter](https://habitica.com/user/settings/subscription) can købe dem for Guld. Når folk abonnnerer eller køber Ædelsten, hjælper de os med at holde hjemmesiden kørende. Vi er meget taknemmelige for deres støtte! Udover at købe Ædelsten direkte, eller blive abonnent, er der to andre måder spillere kan optjene Ædelsten:\n* Vind en Udfordring oprette af en anden spiller. Gå til Udfordringer > Opdag udfordringer for at finde nogle at deltage i.\n * Bidrag med dine egne færdigheder til Habitica. Se denne side på wiki'en for flere detaljer: [Contributing to Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica). Vær opmærksom på, at genstande købt for Ædelsten ikke giver nogle statistiske fordele, så spillere kan stadig sagtens bruge hjemmesiden uden dem!",
+ "iosFaqAnswer10": "Ædelsten købes for rigtige penge via Menu > Køb Ædelsten. Når du køber Ædelsten hjælper du os med at holde Habitica kørende. Vi er sætter stor pris på al mulig støtte!\n\n Udover at købe Ædelsten direkte er der tre andre måder spillere kan optjene Ædelsten på:\n\n * Vind en Udfordring der er blevet lavet af en anden spiller. Gå til Menu > Udfordringer for at finde nogen at deltage i.\n * Bliv abonnent og få adgang til at købe et begrænset antal Ædelsten med Guld hver måned.\n * Bidrag med dine egne færdigheder til Habitica! Se denne side for flere detaljer: [Bidrag til Habitica](https://habitica.fandom.com/wiki/Contributing_to_Habitica) (engelsk).\n\nVær opmærksom på, at genstande der er købt med Ædelsten ikke giver nogle statistiske fordele, så spillere kan stadig bruge app'en uden dem!",
+ "androidFaqAnswer10": "Ædelsten købes for rigtige penge via Menu > Køb Ædelsten. Når du køber Ædelsten hjælper du os med at holde Habitica kørende. Vi er sætter stor pris på al mulig støtte!\n\n Udover at købe Ædelsten direkte er der tre andre måder spillere kan optjene Ædelsten på:\n\n * Vind en Udfordring der er blevet lavet af en anden spiller. Gå til Menu > Udfordringer for at finde nogen at deltage i.\n * Bliv abonnent og få adgang til at købe et begrænset antal Ædelsten med Guld hver måned.\n * Bidrag med dine egne færdigheder til Habitica! Se denne side for flere detaljer: [Bidrag til Habitica](https://habitica.fandom.com/wiki/Contributing_to_Habitica) (engelsk).\n\nVær opmærksom på, at genstande der er købt med Ædelsten ikke giver nogle statistiske fordele, så spillere kan stadig bruge app'en uden dem!",
+ "webFaqAnswer10": "Ædelsten købes for rigtige penge, selvom [abonnenter](https://habitica.com/user/settings/subscription) can købe dem for Guld. Når folk abonnnerer eller køber Ædelsten, hjælper de os med at holde hjemmesiden kørende. Vi er meget taknemmelige for deres støtte! Udover at købe Ædelsten direkte, eller blive abonnent, er der to andre måder spillere kan optjene Ædelsten:\n* Vind en Udfordring oprette af en anden spiller. Gå til Udfordringer > Opdag udfordringer for at finde nogle at deltage i.\n * Bidrag med dine egne færdigheder til Habitica. Se denne side på wiki'en for flere detaljer: [Contributing to Habitica](https://habitica.fandom.com/wiki/Contributing_to_Habitica). Vær opmærksom på, at genstande købt for Ædelsten ikke giver nogle statistiske fordele, så spillere kan stadig sagtens bruge hjemmesiden uden dem!",
"faqQuestion11": "Hvordan rapporterer jeg en fejl eller foreslår en ny funktion?",
"iosFaqAnswer11": "Hvis du mener du har fundet en fejl, så gå ind under Menu>Support>Get Help for at finde hurtige løsninger, kendte problemer, eller for at indrapportere fejlen til os. Vi vil gøre alt hvad vi kan for at hjælpe dig.\n\nFor at afgive feedback eller komme med forslag til en funktion, kan du finde vores feedback-formular fra Menu>Support>Submit Feedback. Hvis vi har nogle spørgsmål, vil vi kontakte dig for information.",
- "androidFaqAnswer11": "Hvis du mener du er stødt på en fejl, så gå til Menu>Hjælp>Rapportér en fejl for at finde hurtige løsninger, kendte fejl, eller anmelde fejlen til os. Vi vil gøre alt hvad vi kan for at hjælpe dig.\n\nFor at give feedback eller foreslå en funktion, kan du finde vores feedbackformular under Menu>Hjælp>Anmod om en funktion. Hvis vi har spørgsmål, vil vi tage kontakt til dig for at få mere information!",
- "webFaqAnswer11": "For at rapportere en fejl, så gå til [Hjælp > Rapporter en fejl](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) og læs punkterne over chatboksen. Hvis du er ude af stand til at logge på Habitica, så send din log-in information (ikke dit password!) til [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Der er ingen grund til bekymring, vi får snart rettet op på dig! Foreslag om funktioner bliver samlet på via en Google formular. Gå til [Hjælp > Foreslå en funktion](https://docs.google.com/forms/d/e/1FAIpQLScPhrwq_7P1C6PTrI3lbvTsvqGyTNnGzp1ugi1Ml0PFee_p5g/viewform?usp=sf_link) og følg instruktionerne. Ta-da!",
+ "androidFaqAnswer11": "Hvis du mener du er stødt på en fejl, så gå til Menu > Hjælp & FAQ > Få hjælp en fejl for at finde hurtige løsninger, se kendte fejl, eller anmelde fejlen til os. Vi vil gøre alt hvad vi kan for at hjælpe dig.\n\nFor at give feedback eller foreslå en funktion, kan du finde vores feedbackformular under Menu > Hjælp & FAQ > Anmod om funktion. Hvis vi har spørgsmål, vil vi tage kontakt til dig for at få mere information!",
+ "webFaqAnswer11": "For at rapportere en fejl, så gå til Hjælp > Rapporter en fejl for at sende os en email (det er muligt, at du skal undersøge om din browser støtter 'mailto' links). Hvis du er ude af stand til at logge på Habitica, så send din log-in information (ikke dit password!) til [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Der er ingen grund til bekymring, vi får snart rettet op på det! Foreslag om funktioner bliver samlet på via en Google-formular. Gå til [Hjælp > Foreslå en funktion](https://docs.google.com/forms/d/e/1FAIpQLScPhrwq_7P1C6PTrI3lbvTsvqGyTNnGzp1ugi1Ml0PFee_p5g/viewform?usp=sf_link) og følg instruktionerne. Ta-da!",
"faqQuestion12": "Hvordan bekæmper jeg en verdensboss?",
- "iosFaqAnswer12": "Verdensbosser er specielle monstre, der dukker op i Værtshuset. Alle aktive brugere kæmper automatisk mod Bossen, og deres opgaver og Evner vil skade Bossen som normalt.\n\n Du kan også være igang med en normal Quest samtidig. Dine opgaver og Evner vil tælle både mod Verdensbossen og Boss/Indsamlingsquesten for dit hold.\n\n En Verdensboss vil aldrig skade dig eller din konto på nogen måde. I stedet har den et Raseri-meter, der bliver fyldt op når brugere misser Daglige opgaver. Hvis dens Raseri-meter bliver fyldt helt op, vil den angribe en af NPCerne omkring websitet, og deres billede vil forandre sig.\n\n Du kan læse mere om [tidligere Verdensbosser](http://habitica.fandom.com/wiki/World_Bosses) på wiki'en (engelsk).",
- "androidFaqAnswer12": "Verdensbosser er specielle monstre, der dukker op i Værtshuset. Alle aktive brugere kæmper automatisk mod Bossen, og deres opgaver og Evner vil skade Bossen som normalt.\n\n Du kan også være igang med en normal Quest samtidig. Dine opgaver og Evner vil tælle både mod Verdensbossen og Boss/Indsamlingsquesten for dit hold.\n\n En Verdensboss vil aldrig skade dig eller din konto på nogen måde. I stedet har den et Raseri-meter, der bliver fyldt op når brugere misser Daglige opgaver. Hvis dens Raseri-meter bliver fyldt helt op, vil den angribe en af NPCerne omkring websitet, og deres billede vil forandre sig.\n\n Du kan læse mere om [tidligere Verdensbosser](http://habitica.fandom.com/wiki/World_Bosses) på wiki'en (engelsk).",
- "webFaqAnswer12": "Verdensbosser er specielle monstre, der dukker op i Værtshuset. Alle aktive brugere kæmper automatisk Bossen, og deres opgaver og Evner vil skade Bossen som normalt. Du kan også være igang med en normal Quest samtidig. Dine opgaver og Evner vil tælle både mod Verdensbossen og Boss/Indsamlingsquesten for dit hold. En Verdensboss vil aldrig skade dig eller din konto på nogen måde. I stedet har den et Raseri-meter, der bliver fyldt op når brugere misser Daglige opgaver. Hvis dens Raseri-meter bliver fyldt helt op, vil den angribe en af NPCerne omkring websitet, og deres billede vil forandre sig. Du kan læse mere om [tidligere Verdensbosser](http://habitica.fandom.com/wiki/World_Bosses) på wiki'en (engelsk).",
- "iosFaqStillNeedHelp": "Hvis du har et spørgsmål, der ikke er på listen eller i [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), så kom forbi og spørg i værtshuset under Social > Værtshus! Vi hjælper gerne.",
- "androidFaqStillNeedHelp": "Hvis du har et spørgsmål, der ikke er på listen eller i [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), så kom forbi og spørg i Værtshuschatten under Menu > Værtshus! Vi hjælper gerne.",
- "webFaqStillNeedHelp": "Hvis du har et spørgsmål, der ikke er på listen eller i [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), så kom forbi og spørg i Klanen [Habitica Help](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Vi hjælper gerne."
+ "iosFaqAnswer12": "Verdensbosser er specielle monstre, der dukker op i Værtshuset. Alle aktive brugere kæmper automatisk mod Bossen, og deres opgaver og Evner vil skade Bossen som normalt.\n\n Du kan også være igang med en normal Quest samtidig. Dine opgaver og Evner vil tælle både mod Verdensbossen og Boss/Indsamlingsquesten for dit hold.\n\n En Verdensboss vil aldrig skade dig eller din konto på nogen måde. I stedet har den et Raseri-meter, der bliver fyldt op når brugere misser Daglige opgaver. Hvis dens Raseri-meter bliver fyldt helt op, vil den angribe en af NPCerne omkring websitet, og deres billede vil forandre sig.\n\n Du kan læse mere om [tidligere Verdensbosser](https://habitica.fandom.com/wiki/World_Bosses) på wiki'en (engelsk).",
+ "androidFaqAnswer12": "Verdensbosser er specielle monstre, der dukker op i Værtshuset. Alle aktive brugere kæmper automatisk mod Bossen, og deres opgaver og Evner vil skade Bossen som normalt.\n\n Du kan også være igang med en normal Quest samtidig. Dine opgaver og Evner vil tælle både mod Verdensbossen og Boss/Indsamlingsquesten for dit hold.\n\n En Verdensboss vil aldrig skade dig eller din konto på nogen måde. I stedet har den et Raseri-meter, der bliver fyldt op når brugere misser Daglige opgaver. Hvis dens Raseri-meter bliver fyldt helt op, vil den angribe en af NPCerne omkring websitet, og deres billede vil forandre sig.\n\n Du kan læse mere om [tidligere Verdensbosser](https://habitica.fandom.com/wiki/World_Bosses) på wiki'en (engelsk).",
+ "webFaqAnswer12": "Verdensbosser er specielle monstre, der dukker op i Værtshuset. Alle aktive brugere kæmper automatisk Bossen, og deres opgaver og Evner vil skade Bossen som normalt. Du kan også være igang med en normal Quest samtidig. Dine opgaver og Evner vil tælle både mod Verdensbossen og Boss/Indsamlingsquesten for dit hold. En Verdensboss vil aldrig skade dig eller din konto på nogen måde. I stedet har den et Raseri-meter, der bliver fyldt op når brugere misser Daglige opgaver. Hvis dens Raseri-meter bliver fyldt helt op, vil den angribe en af NPCerne omkring websitet, og deres billede vil forandre sig. Du kan læse mere om [tidligere Verdensbosser](https://habitica.fandom.com/wiki/World_Bosses) på wiki'en (engelsk).",
+ "iosFaqStillNeedHelp": "Hvis du har et spørgsmål, der ikke er på listen eller i [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), så kom forbi og spørg i værtshuset under Menu > Værtshus! Vi hjælper gerne.",
+ "androidFaqStillNeedHelp": "Hvis du har et spørgsmål, der ikke er på listen eller i [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), så kom forbi og spørg i Værtshuschatten under Menu > Værtshus! Vi hjælper gerne.",
+ "webFaqStillNeedHelp": "Hvis du har et spørgsmål, der ikke er på listen eller i [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), så kom forbi og spørg i Klanen [Habitica Help](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Vi hjælper gerne.",
+ "faqQuestion13": "Hvad er en Gruppeplan?",
+ "webFaqAnswer13": "## Hvordan virker gruppeplaner?\n\nEn [gruppeplan](/group-plans) giver dit Hold eller Klan adgang til et delt dashboard med opgaver, der ligner dit eget! Det er en delt oplevelse på Habitica, hvor opgaver kan oprettes og markeres som færdige af alle i gruppen.\n\nDer er også andre funktioner, såsom medlemsroller, et statusoverblik og fordeling af opgaver, der giver dig en mere kontrolleret oplevelse. [Besøg vores wiki](https://habitica.fandom.com/wiki/Group_Plans) (EN) for at lære mere om Gruppeplanens funktioner!\n\n## Hvem har nytte af en gruppeplan?\n\nGruppeplaner virker bedst, når du har et mindre hold der gerne vil samarbejde. Vi anbefaler 2-5 medlemmer.\n\nGruppeplaner er geniale til familier, uanset om det er en forælder og et barn, eller dig selv og din partner. Delte mål, huslige opgaver eller ansvar er lette at holde styr på med ét dashboard.\n\nGruppeplaner kan også være nyttige for teams af kollegaer med fælles mål, eller managere der vil introducere deres ansatte til gamification.\n\n## Hurtige tips til at bruge grupper\n\nHer er nogle hurtige tips til dig, så du kan komme i gang med din nye Gruppe. Vi vil komme med flere detaljer i de følgende afsnit:\n\n* Gør et medlem til manager for at give dem evnen til at oprette og redigere opgaver\n* Lad opgaver ikke tilhøre nogen, hvis alle kan udføre den og det kun skal gøres én gang\n* Tildel en opgave til én person for at være sikker på, at ingen andre kan fuldføre den opgave\n* Tildel en opgave til flere personer, hvis de alle skal fuldføre den\n* Slå evnen til at se gruppeopgaver på dit personlige dashboard til, så du ikke går glip af noget\n* Du bliver belønnet for alle de opgaver du klarer, også hvis flere skal udføre dem\n* Belønninger for at fuldføre opgaver bliver ikke opsplittet eller delt mellem holdmedlemmer\n* Brug opgavernes farve på gruppens dashboard for at bedømme den gennemsnitlige færdiggørelsesrate\n* Gennemgå jævnligt opgaverne på gruppens dashboard for at sikre dig, at de stadig er relevante\n* Det vil ikke skade hverken dig eller din gruppe hvis du misser en Daglig, men den vil stadig skifte farve\n\n## Hvordan kan andre i gruppen oprette opgaver?\n\nKun gruppelederen og managere kan oprette opgaver. Hvis du gerne vil have at et gruppemedlem skal kunne gøre dette, skal du gøre dem til manager ved at gå til fanen Gruppeinformation, finde medlemslisten, og klikke på prik-ikonet ved deres navn.\n\n## How does assigning a task work?\n\nGroup Plans give you the unique ability to assign tasks to other group members. Assigning a task is great for delegating. If you assign a task to someone, then other members are prevented from completing it.\n\nYou can also assign a task to multiple people if it needs to be completed by more than one member. For example, if everyone has to brush their teeth, create a task and assign it to each group member. They will all be able to check it off and get their individual rewards for doing so. The main task will show as complete once everyone checks it off.\n\n## Hvordan virker opgaver, der ikke er tildelt nogen?\n\nOpgaver, der ikke tilhører nogen, kan fuldføres af alle i gruppen, for eksempel at gå ud med skraldet. Den der går ud med skraldet kan markere opgaven som fuldført, og den vil da være markeret som sådan for alle i gruppen.\n\n## Hvordan virker det synkroniserede starttidspunkt?\n\nDelte opgaver vil nulstille på samme tidspunkt for alle for at synkronisere gruppens dashboard. Dette tidspunkt kan ses på gruppens dashboard, og afhænger af lederens personlige starttidspunkt. Da delte opgaver nulstilles automatisk, vil du ikke få mulighed for at fuldføre gårsdagens delte Daglige, når du checker ind den følgende dag.\n\nDelte Daglige vil ikke skade dig hvis et holdmedlem ikke udfører dem, men de vil begynde at skifte til en rødere farve for at visualisere denne proces. Vi vil ikke have at den delte oplevelse bliver en dårlig en!\n\n## Hvordan bruger jeg min Gruppe på Habiticas apps?\n\nDe mobile apps understøtter endnu ikke alle de funktioner, der hører med i en gruppeplan. Dog kan du stadig udføre delte opgaver fra vores iOS og Android apps. Besøg din gruppes dashboard i browserversionen af Habitica, og slå funktionen 'kopiér opgaver' til. Nu vil alle åbne og tildelte opgaver være synlige på dit eget personlige dashboard på alle platforme.\n\n## Hvad er forskellen på en Gruppes delte opgaver, og Udfordringer?\n\nDe delte dashboards der hører til gruppeplaner er mere dynamiske end dem, der hører til udfordringer, da de konstant kan opdateres og interageres med. Udfordringer er gode, hvis du har ét sæt opgaver, der alle skal klares af flere mennesker.\n\nGruppeplaner koster også rigtige penge at benytte, mens udfordringer er gratis for alle.\n\nDu kan ikke tildele specifikke opgaver til nogen i udfordringer, og udfordringer har ikke et fælles tidspunkt, hvor opgaverne nulstilles. Generelt giver udfordringer ejeren mindre kontrol og direkte interaktion end gruppeplaner."
}
diff --git a/website/common/locales/da/front.json b/website/common/locales/da/front.json
index f6b8ee2785..bdb8030db4 100644
--- a/website/common/locales/da/front.json
+++ b/website/common/locales/da/front.json
@@ -5,7 +5,7 @@
"accept2Terms": "og",
"chores": "Pligter",
"clearBrowserData": "Ryd browserdata",
- "communityExtensions": "
Tilføjelser og udvidelser",
+ "communityExtensions": "
Tilføjelser og udvidelser",
"communityFacebook": "Facebook",
"companyAbout": "Hvordan det virker",
"companyBlog": "Blog",
@@ -13,7 +13,7 @@
"companyDonate": "Donér",
"forgotPassword": "Glemt kodeord?",
"emailNewPass": "E-mail et nulstillings-link til kodeord",
- "forgotPasswordSteps": "Skriv den e-mail adresse du benyttede til at registrere din Habitica-konto.",
+ "forgotPasswordSteps": "Skriv dit @brugernavn eller den e-mail adresse, du benyttede til at registrere din Habitica-konto.",
"sendLink": "Send link",
"featuredIn": "Omtalt i",
"footerDevs": "Udviklere",
@@ -44,7 +44,7 @@
"marketing3Header": "Apps og Udvidelser",
"marketing3Lead1": "**iPhone & Android** apps lader dig klare dine ting på farten. Vi ved, at det nogen gange er for meget at skulle logge ind på websiden for at klikke på knapper.",
"marketing3Lead2Title": "Integrationer",
- "marketing3Lead2": "Andre **tredjepartsværktøjer** kan binde Habitica sammen med andre dele af dit liv. Vores API muliggør integrationer som [Chrome Extension](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US), med hvilken du mister point ved at bruge unyttige hjemmesider, og optjener point når du browser de nyttige i stedet. [Se mere her](http://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
+ "marketing3Lead2": "Andre **tredjepartsværktøjer** kan binde Habitica sammen med andre dele af dit liv. Vores API muliggør integrationer som [Chrome Extension](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US), med hvilken du mister point ved at bruge unyttige hjemmesider, og optjener point når du browser de nyttige i stedet. [Se mere her](https://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
"marketing4Header": "Organisatorisk brug",
"marketing4Lead1": "Uddannelse er en af de bedste områder at bruge spilelementer. Vi ved alle, hvordan studerende nærmest er limet til deres telefon disse dage, så brug dette! Sæt dine elever til at kæmpe mod hinanden som hyggelig konkurrence. Beløn god opførsel med sjældne præmier. Se deres karakterer og opførsel blive forbedret.",
"marketing4Lead1Title": "Brug af Spilelementer i Undervisning",
@@ -184,5 +184,6 @@
"mobileApps": "Mobile apps",
"learnMore": "Lær mere",
"communityInstagram": "Instagram",
- "minPasswordLength": "Kodeord skal bestå af 8 eller flere tegn."
+ "minPasswordLength": "Kodeord skal bestå af 8 eller flere tegn.",
+ "enterHabitica": "Spil Habitica"
}
diff --git a/website/common/locales/da/gear.json b/website/common/locales/da/gear.json
index 55aa315903..b6c9a2b3c6 100644
--- a/website/common/locales/da/gear.json
+++ b/website/common/locales/da/gear.json
@@ -19,7 +19,7 @@
"sortByStr": "STY",
"sortByInt": "INT",
"weapon": "våben",
- "weaponCapitalized": "Main-Hand Item",
+ "weaponCapitalized": "Primær hånd",
"weaponBase0Text": "Intet våben",
"weaponBase0Notes": "Intet våben.",
"weaponWarrior0Text": "Træningssværd",
@@ -892,7 +892,7 @@
"headSpecialDandyHatNotes": "Sikke en herlig hat! Den vil klæde dig så nydeligt på en gåtur. Forøger Konstitution med <%= con %>.",
"headSpecialKabutoText": "Samuraihjelm",
"headSpecialKabutoNotes": "Denne hjelm er funktionel og smuk! Dine fjender vil være helt distraherede af den. Forøger Intelligens med <%= int %>.",
- "headSpecialNamingDay2017Text": "Royal lilla grifhjelm",
+ "headSpecialNamingDay2017Text": "Purpurfarvet grifhjelm",
"headSpecialNamingDay2017Notes": "Glædelig Navngivningsdag! Ifør dig denne truende og fjerklædte hjelm for at fejre Habitica. Giver ingen bonusser.",
"headSpecialTurkeyHelmBaseText": "Kalkunhjelm",
"headSpecialTurkeyHelmBaseNotes": "Dit Thanksgiving-look vil være fuldendt med denne næbbede hjelm! Giver ingen bonusser.",
@@ -1599,7 +1599,7 @@
"bodySpecialSummer2015MageNotes": "Dette spænde giver ingen krafter overhovedet, men det er pænt. Giver ingen bonusser. Specielt 2015 Sommerudstyr.",
"bodySpecialSummer2015HealerText": "Matrostørklæde",
"bodySpecialSummer2015HealerNotes": "Hiv Ohøj? Nej nej nej! Giver ingen bonusser. Specielt 2015 Sommerudstyr.",
- "bodySpecialNamingDay2018Text": "Royal Purple Gryphon Cloak",
+ "bodySpecialNamingDay2018Text": "Purpurfarvet grif-kappe",
"bodySpecialNamingDay2018Notes": "Happy Naming Day! Wear this fancy and feathery cloak as you celebrate Habitica. Confers no benefit.",
"bodyMystery201705Text": "Folded Feathered Fighter Wings",
"bodyMystery201705Notes": "These folded wings don't just look snazzy: they will give you the speed and agility of a gryphon! Confers no benefit. May 2017 Subscriber Item.",
@@ -1873,5 +1873,6 @@
"headSpecialNye2020Notes": "Du har modtaget en Ekstravagant Festhat! Bær den med stolthed imens du byder det nye år velkommen! Giver ingen fordele.",
"headSpecialNye2020Text": "Ekstravagant Festhat",
"weaponSpecialWinter2021MageNotes": "Dette mægtige våben er bestemt mere end en fase. Kanalisér din energi, fokusér på en måneds flow, og studér tid og rum. Øger Intelligens med <%= int %> og Opfattelse med <%= per %>. Begrænset 2020-2021 Vinterudstyr.",
- "weaponSpecialWinter2021MageText": "Magisk Måne-faser"
+ "weaponSpecialWinter2021MageText": "Magisk Måne-faser",
+ "backSpecialNamingDay2020Text": "Purpurfarvet grifhale"
}
diff --git a/website/common/locales/da/groups.json b/website/common/locales/da/groups.json
index 56ee92366f..818783f149 100644
--- a/website/common/locales/da/groups.json
+++ b/website/common/locales/da/groups.json
@@ -14,7 +14,7 @@
"contributing": "Sådan bidrager du",
"faq": "FAQ",
"tutorial": "Vejledning",
- "glossary": "
Ordliste (EN)",
+ "glossary": "
Ordliste (EN)",
"wiki": "Wiki",
"requestAF": "Anmod om en funktion",
"dataTool": "Datavisningsværktøj",
@@ -324,7 +324,7 @@
"gettingStarted": "Kom i gang",
"congratsOnGroupPlan": "Tillykke med oprettelsen af din nye Gruppe! Her er nogle svar på flere af de mest almindelige spørgsmål.",
"whatsIncludedGroup": "Hvad er inkluderet i abonnementet",
- "whatsIncludedGroupDesc": "Alle medlemmer af Gruppen får alle fordele ved et abonnement, inklusiv de månedlige abonnentgenstande, evnen til at købe Ædelsten for Guld, og det Royale Lilla Jackalope-ridedyr, som er en eksklusiv belønning for medlemmer af en Gruppeplan.",
+ "whatsIncludedGroupDesc": "Alle medlemmer af Gruppen får alle fordele ved et abonnement, inklusiv de månedlige abonnentgenstande, evnen til at købe Ædelsten for Guld, og det purpur Jackalope-ridedyr, som er en eksklusiv belønning for medlemmer af en Gruppeplan.",
"howDoesBillingWork": "Hvordan fungerer betalingen?",
"howDoesBillingWorkDesc": "Gruppeledere faktureres baseret på antallet af gruppemedlemmer på en månedlig basis. Regningen omfatter prisen for Gruppelederens abonnement ($9 USD) plus $3 USD for hvert ekstra gruppemedlem. Fx: En gruppe af fire brugere vil koste $18 USD om måneden, da gruppen består af 1 Gruppeleder + 3 gruppemedlemmer.",
"howToAssignTask": "Hvordan tildeler du en Opgave?",
@@ -339,5 +339,6 @@
"recurringCompletion": "Ingen - Gruppeopgave kan ikke udføres",
"singleCompletion": "Single - Completes when any assigned user finishes",
"allAssignedCompletion": "All - Completes when all assigned users finish",
- "pmReported": "Tak, fordi du rapporterede denne besked."
+ "pmReported": "Tak, fordi du rapporterede denne besked.",
+ "features": "Funktioner"
}
diff --git a/website/common/locales/da/limited.json b/website/common/locales/da/limited.json
index 8c121779b4..954dfbf998 100644
--- a/website/common/locales/da/limited.json
+++ b/website/common/locales/da/limited.json
@@ -27,10 +27,10 @@
"seasonalShopClosedTitle": "<%= linkStart %>Leslie<%= linkEnd %>",
"seasonalShopTitle": "<%= linkStart %>Sæson-heksen<%= linkEnd %>",
"seasonalShopClosedText": "Sæson-markedet er lukket lige nu!! Det er kun åbent under Habiticas fire Grandiøse Gallaer.",
- "seasonalShopSummerText": "Glædeligt Sommerplask!! Vil du købe nogle sjældne genstande? De vil kun være tilgængelige indtil 31. juli!",
- "seasonalShopFallText": "Glædelig Efterårsfestival!! Vil du købe nogle sjældne genstande? De vil kun være tilgængelige indtil 31. oktober!",
- "seasonalShopWinterText": "Velkommen til Vintereventyret!! Vil du købe nogle sjældne genstande? De vil kun være tilgængelige indtil 31. januar!",
- "seasonalShopSpringText": "Glædelig Forårsfest!! Vil du købe nogle sjældne genstande? De vil kun være tilgængelige indtil 30. april!",
+ "seasonalShopSummerText": "Glædeligt Sommerplask!! Vil du købe nogle sjældne genstande? Sørg for at købe dem før Gallaen slutter!",
+ "seasonalShopFallText": "Glædelig Efterårsfestival!! Vil du købe nogle sjældne genstande? Sørg for at købe dem før Gallaen slutter!",
+ "seasonalShopWinterText": "Velkommen til Vintereventyret!! Vil du købe nogle sjældne genstande? Sørg for at købe dem før Gallaen slutter!",
+ "seasonalShopSpringText": "Glædelig Forårsfest!! Vil du købe nogle sjældne genstande? Sørg for at købe dem før Gallaen slutter!",
"seasonalShopFallTextBroken": "Åh.... Velkommen til Sæson-markedet... Vi har efterårs-sæson varer, eller noget... Alting her kan købes under Efterårsfestival-eventet hvert år, men vi har kun åbent indtil den 31. oktober... Du burde nok købe ind nu, ellers vil du skulle vente... og vente... og vente...
*suk*",
"seasonalShopBrokenText": "Min pavillon!!!!!!! Mine dekorationer!!!! Åh, den Dysheartener har ødelagt det hele :( Hjælp med at bekæmpe den i Værtshuset, så jeg kan genopbygge!",
"seasonalShopRebirth": "Hvis du har købt noget af detteudstyr før, men ikke ejer det i øjeblikket, kan du genkøbe det i Belønningskolonnen. I starten vil du kun kunne købe de ting der passer til din nuværende klasse (Kriger som standard), men frygt ej, de andre klasse-specifikke varer bliver tilgængelige hvis du skifter til den klasse.",
@@ -45,7 +45,7 @@
"snowDaySet": "Snedagskriger (Kriger)",
"snowboardingSet": "Snowboardende Sortkunstner (Magiker)",
"festiveFairySet": "Festlig Fe (Helbreder)",
- "cocoaSet": "Kakao Slyngel (Slyngel)",
+ "cocoaSet": "Kakao (Slyngel)",
"toAndFromCard": "Til: <%= toName %>, Fra: <%= fromName %>",
"nyeCard": "Nytårskort",
"nyeCardExplanation": "Da I har fejret nytår sammen, modtager I begge \"Gammel Kending\"-emblemet!",
@@ -56,7 +56,7 @@
"nye0": "Godt Nytår! Må du overvinde mange dårlige Vaner.",
"nye1": "Godt Nytår! Må du modtage mange Belønninger.",
"nye2": "Godt Nytår! Må du udføre mange Perfekte Dage.",
- "nye3": "Godt Nytår! Må din To-Do-liste forblive kort og overskuelig.",
+ "nye3": "Godt nytår! Må din To-Do-liste forblive kort og overskuelig.",
"nye4": "Godt nytår! Må du undgå at blive angrebet af vrede Hippogriffer.",
"mightyBunnySet": "Kraftfuld Kanin (Kriger)",
"magicMouseSet": "Magisk Mus (Magiker)",
@@ -74,11 +74,11 @@
"magicianBunnySet": "Tryllekunstners Kanin (Magiker)",
"comfortingKittySet": "Trøstende Kat (Helbreder)",
"sneakySqueakerSet": "Pibende Sniger (Slyngel)",
- "sunfishWarriorSet": "Solfiskekriger (Kriger)",
+ "sunfishWarriorSet": "Solfisk (Kriger)",
"shipSoothsayerSet": "Skibs-sandsigerske (Magiker)",
"strappingSailorSet": "Spændstig Sømand (Helbreder)",
"reefRenegadeSet": "Røver på Revet (Slyngel)",
- "scarecrowWarriorSet": "Fægtende Fugleskræmsel (Kriger)",
+ "scarecrowWarriorSet": "Fugleskræmsel (Kriger)",
"stitchWitchSet": "Skrædderheks (Magiker)",
"potionerSet": "Eleksirmager (Helbreder)",
"battleRogueSet": "Flager-Fusker (Slyngel)",
@@ -86,40 +86,40 @@
"grandMalkinSet": "Mester-malkin (Magiker)",
"cleverDogSet": "Kløgtig Hund (Slyngel)",
"braveMouseSet": "Modig Mus (Kriger)",
- "summer2016SharkWarriorSet": "Hajkriger (Kriger)",
- "summer2016DolphinMageSet": "Delfinmagiker (Magiker)",
- "summer2016SeahorseHealerSet": "Søhesthelbreder (Helbreder)",
- "summer2016EelSet": "Åleslyngel (Slyngel)",
+ "summer2016SharkWarriorSet": "Haj (Kriger)",
+ "summer2016DolphinMageSet": "Delfin (Magiker)",
+ "summer2016SeahorseHealerSet": "Søhest (Helbreder)",
+ "summer2016EelSet": "Ål (Slyngel)",
"fall2016SwampThingSet": "Sump-ting (Kriger)",
"fall2016WickedSorcererSet": "Skummel Sortkunstner (Magiker)",
- "fall2016GorgonHealerSet": "Gorgon-helbreder (Helbreder)",
- "fall2016BlackWidowSet": "Sort Enke-slyngel (Slyngel)",
+ "fall2016GorgonHealerSet": "Gorgon (Helbreder)",
+ "fall2016BlackWidowSet": "Sort enke (Slyngel)",
"winter2017IceHockeySet": "Ishockey (Kriger)",
"winter2017WinterWolfSet": "Vinterulv (Magiker)",
- "winter2017SugarPlumSet": "Sukkerblomme-helbreder (Helbreder)",
- "winter2017FrostyRogueSet": "Sukkerslyngel (Slyngel)",
- "spring2017FelineWarriorSet": "Kattekriger (Kriger)",
+ "winter2017SugarPlumSet": "Sukkerblomme (Helbreder)",
+ "winter2017FrostyRogueSet": "Frost (Slyngel)",
+ "spring2017FelineWarriorSet": "Kattedyr (Kriger)",
"spring2017CanineConjurorSet": "Hundehekser (Magiker)",
"spring2017FloralMouseSet": "Blomstermus (Helbreder)",
"spring2017SneakyBunnySet": "Krybende Kanin (Slyngel)",
- "summer2017SandcastleWarriorSet": "Sandslotskriger (Kriger)",
- "summer2017WhirlpoolMageSet": "Malstrømsmagiker (Magiker)",
+ "summer2017SandcastleWarriorSet": "Sandslot (Kriger)",
+ "summer2017WhirlpoolMageSet": "Malstrøm(Magiker)",
"summer2017SeashellSeahealerSet": "Havmuslingehelbreder (Helbreder)",
"summer2017SeaDragonSet": "Sødrage (Slyngel)",
- "fall2017HabitoweenSet": "Habitoweenkriger (Kriger)",
- "fall2017MasqueradeSet": "Maskerademagiker (Magiker)",
- "fall2017HauntedHouseSet": "Spøgelseshuslæge (Helbreder)",
- "fall2017TrickOrTreatSet": "Ballademagerbandit (Slyngel)",
- "winter2018ConfettiSet": "Konfettimagiker (Magiker)",
- "winter2018GiftWrappedSet": "Indpakket Kriger (Kriger)",
- "winter2018MistletoeSet": "Misteltenshelbreder (Helbreder)",
- "winter2018ReindeerSet": "Rendsdyrslyngel (Slyngel)",
- "spring2018SunriseWarriorSet": "Solopgangskriger (Kriger)",
- "spring2018TulipMageSet": "Tulipanmagiker (Magiker)",
- "spring2018GarnetHealerSet": "Granatrød Helbreder (Helbreder)",
- "spring2018DucklingRogueSet": "Ællingeslyngel (Slyngel)",
- "summer2018BettaFishWarriorSet": "Kampfiskkriger (Kriger)",
- "summer2018LionfishMageSet": "Dragefiskmagiker (Magiker)",
+ "fall2017HabitoweenSet": "Habitoween (Kriger)",
+ "fall2017MasqueradeSet": "Maskerade(Magiker)",
+ "fall2017HauntedHouseSet": "Spøgelseshus (Helbreder)",
+ "fall2017TrickOrTreatSet": "Ballademager (Slyngel)",
+ "winter2018ConfettiSet": "Konfetti (Magiker)",
+ "winter2018GiftWrappedSet": "Gavepapir (Kriger)",
+ "winter2018MistletoeSet": "Mistelten (Helbreder)",
+ "winter2018ReindeerSet": "Rensdyr (Slyngel)",
+ "spring2018SunriseWarriorSet": "Solopgang (Kriger)",
+ "spring2018TulipMageSet": "Tulipan (Magiker)",
+ "spring2018GarnetHealerSet": "Granatrød (Helbreder)",
+ "spring2018DucklingRogueSet": "Ælling (Slyngel)",
+ "summer2018BettaFishWarriorSet": "Kampfisk (Kriger)",
+ "summer2018LionfishMageSet": "Dragefisk (Magiker)",
"summer2018MerfolkMonarchSet": "Havfruehertug(inde) (Helbreder)",
"summer2018FisherRogueSet": "Fiskerslyngel (Slyngel)",
"fall2018MinotaurWarriorSet": "Minotaur (Kriger)",
@@ -131,21 +131,98 @@
"winter2019WinterStarSet": "Vinterstjerne (Helbreder)",
"winter2019PoinsettiaSet": "Julestjerne (Slyngel)",
"eventAvailability": "Tilgændelig til køb indtil <%= date(locale) %>.",
- "dateEndMarch": "April 30",
- "dateEndApril": "19. april",
- "dateEndMay": "May 31",
- "dateEndJune": "Juni 14",
- "dateEndJuly": "July 31",
- "dateEndAugust": "August 31",
- "dateEndSeptember": "September 21",
- "dateEndOctober": "October 31",
- "dateEndNovember": "December 3",
- "dateEndJanuary": "January 31",
- "dateEndFebruary": "February 28",
- "winterPromoGiftHeader": "GIFT A SUBSCRIPTION AND GET ONE FREE!",
- "winterPromoGiftDetails1": "Til og med 15. januar vil du få det samme abonnement med til dig selv, når du køber et abonnement til nogen i gave!",
+ "dateEndMarch": "31. marts",
+ "dateEndApril": "30. april",
+ "dateEndMay": "31. maj",
+ "dateEndJune": "30. juni",
+ "dateEndJuly": "31. juli",
+ "dateEndAugust": "31. august",
+ "dateEndSeptember": "30. september",
+ "dateEndOctober": "31. oktober",
+ "dateEndNovember": "30. november",
+ "dateEndJanuary": "31. januar",
+ "dateEndFebruary": "28. februar",
+ "winterPromoGiftHeader": "GIV ET ABONNEMENT I GAVE, OG FÅ ET GRATIS!",
+ "winterPromoGiftDetails1": "Til og med 6. januar vil du få det samme abonnement med til dig selv, når du køber et abonnement til nogen i gave!",
"winterPromoGiftDetails2": "Bemærk venligst, at hvis du eller modtageren af din gave allerede har et tilbagevendende abonnement, vil gave-abonnementet kun starte efter det tilbagevendende er blevet opsagt eller er udløbet. Tusind tak for din støtte! <3",
"discountBundle": "pakke",
- "g1g1Announcement": "
Giv et abonnement, få et abonnement gratis! Tilbuddet gælder lige nu!",
- "g1g1Details": "Send et gave-abonnement til en ven fra deres profil, og du vil få det samme abonnement til dig selv gratis!"
+ "g1g1Announcement": "
Giv et abonnement og få et abonnement gratis! Tilbuddet gælder lige nu!",
+ "g1g1Details": "Send et gave-abonnement til en ven, og du vil få det samme abonnement til dig selv gratis!",
+ "g1g1": "Send et, få et",
+ "winter2020EvergreenSet": "Stedsegrøn (Kriger)",
+ "winter2020CarolOfTheMageSet": "Magisk julesang (Magiker)",
+ "winter2020WinterSpiceSet": "Vinterkrydderi (Helbreder)",
+ "spring2020IrisHealerSet": "Iris (Helbreder)",
+ "spring2019OrchidWarriorSet": "Orkidé (Kriger)",
+ "spring2019AmberMageSet": "Rav (Magiker)",
+ "summer2020OarfishMageSet": "Sildekonge (Magiker)",
+ "spring2019RobinHealerSet": "Rødhals (Helbreder)",
+ "summer2020SeaGlassHealerSet": "Havglas (Helbreder)",
+ "spring2019CloudRogueSet": "Sky (Slyngel)",
+ "fall2020DeathsHeadMothHealerSet": "Dødningehovednatsværmer (Helbreder)",
+ "summer2019SeaTurtleWarriorSet": "Havskildpadde (Kriger)",
+ "winter2021IceFishingWarriorSet": "Isfisker (Kriger)",
+ "summer2019WaterLilyMageSet": "Åkande (Magiker)",
+ "winter2021WinterMoonMageSet": "Vintermåne (Magiker)",
+ "summer2019ConchHealerSet": "Konkylie (Helbreder)",
+ "spring2021SwanMageSet": "Svane (Magiker)",
+ "summer2019HammerheadRogueSet": "Hammerhaj (Slyngel)",
+ "fall2019CyclopsSet": "Kyklop (Magiker)",
+ "summer2021NautilusMageSet": "Nautilus (Magiker)",
+ "summer2021ParrotHealerSet": "Papegøje (Helbreder)",
+ "summer2021ClownfishRogueSet": "Klovnefisk (Slyngel)",
+ "fall2020TwoHeadedRogueSet": "Tohovedet (Slyngel)",
+ "spring2020PuddleMageSet": "Vandpyt (Magiker)",
+ "fall2020WraithWarriorSet": "Genfærd (Kriger)",
+ "summer2021FlyingFishWarriorSet": "Flyvefisk (Kriger)",
+ "spring2021SunstoneWarriorSet": "Solsten (Kriger)",
+ "summer2020RainbowTroutWarriorSet": "Regnbueørred (Kriger)",
+ "fall2020ThirdEyeMageSet": "Treøjet (Magiker)",
+ "fall2019RavenSet": "Ravn (Kriger)",
+ "spring2021TwinFlowerRogueSet": "Kaprifolie (Slyngel)",
+ "spring2021WillowHealerSet": "Piletræ (Helbreder)",
+ "winter2020LanternSet": "Lanterne (Slyngel)",
+ "spring2020BeetleWarriorSet": "Næsehornsbille (Kriger)",
+ "summer2020CrocodileRogueSet": "Krokodille (Slyngel)",
+ "winter2021HollyIvyRogueSet": "Kristtjørn og vedbend (Slyngel)",
+ "winter2021ArcticExplorerHealerSet": "Arktisk udforsker (Helbreder)",
+ "spring2020LapisLazuliRogueSet": "Lapis lazuli (Slyngel)",
+ "fall2019OperaticSpecterSet": "Operaspøgelse (Slyngel)",
+ "g1g1Limitations": "Dette er et tidsbegrænset tilbud der begynder d. 16. december kl. 14:00 (UTC+1), og slutter d. 6. januar kl. 02:00 (UTC+1). Dette tilbud gælder kun, når du giver et gave-abonnement til en anden Habiticaner. Hvis du eller modtageren allerede har et abonnement, vil gave-abonnementet tilføje yderligere tid, der kun vil blive brugt så snart det nuværende abonnement opsiges eller udløber.",
+ "mayYYYY": "maj <%= year %>",
+ "limitations": "Begrænsninger",
+ "summer2022CrabRogueSet": "Krabbe (Slyngel)",
+ "summer2022WaterspoutWarriorSet": "Vandsøjle (Kriger)",
+ "summer2022MantaRayMageSet": "Djævlerokke (Magiker)",
+ "summer2022AngelfishHealerSet": "Englefisk (Helbreder)",
+ "dateEndDecember": "31. december",
+ "februaryYYYY": "februar <%= year %>",
+ "julyYYYY": "juli <%= year %>",
+ "octoberYYYY": "oktober <%= year %>",
+ "howItWorks": "Sådan virker det",
+ "noLongerAvailable": "Denne genstand er ikke længere tilgængelig.",
+ "spring2022MagpieRogueSet": "Skade (Slyngel)",
+ "spring2022RainstormWarriorSet": "Uvejr (Kriger)",
+ "spring2022ForsythiaMageSet": "Forsythia (Magiker)",
+ "g1g1HowItWorks": "Skriv brugernavnet på den konto, du vil sende gave-abonnementet til. Derefter skal du vælge længden på abonnementet, og så checke ud. Din konto vil automatisk få tildelt den samme type abonnement, du lige har givet en anden.",
+ "fall2021OozeRogueSet": "Slim (Slyngel)",
+ "fall2021HeadlessWarriorSet": "Hovedløs (Kriger)",
+ "fall2021BrainEaterMageSet": "Hjerneæder (Magiker)",
+ "fall2021FlameSummonerHealerSet": "Flammehidkalder (Helbreder)",
+ "eventAvailabilityReturning": "Kan købes indtil <%= availableDate(locale) %>. Denne eliksir var sidst tilgængelig <%= previousDate(locale) %>.",
+ "septemberYYYY": "september <%= year %>",
+ "marchYYYY": "marts <%= year %>",
+ "juneYYYY": "juni <%= year %>",
+ "novemberYYYY": "november <%= year %>",
+ "decemberYYYY": "december <%= year %>",
+ "augustYYYY": "august <%= year %>",
+ "winter2022FireworksRogueSet": "Fyrværkeri (Slyngel)",
+ "winter2022StockingWarriorSet": "Julesok (Kriger)",
+ "winter2022PomegranateMageSet": "Granatæble (Magiker)",
+ "winter2022IceCrystalHealerSet": "Iskrystal (Helbreder)",
+ "g1g1Event": "Send et, få et - tilbuddet gælder nu!",
+ "g1g1Returning": "For at fejre nytåret bringer vi et ganske særligt tilbud tilbage. Lige nu, når du køber et abonnement som gave, får du det samme abonnement selv!",
+ "januaryYYYY": "januar <%= year %>",
+ "aprilYYYY": "april <%= year %>",
+ "royalPurpleJackolantern": "Purpur Græskarlygte"
}
diff --git a/website/common/locales/da/npc.json b/website/common/locales/da/npc.json
index c5b9bc7695..034703225f 100644
--- a/website/common/locales/da/npc.json
+++ b/website/common/locales/da/npc.json
@@ -17,9 +17,9 @@
"mattBochText1": "Velkommen til Stalden! Jeg er Staldmesteren Matt. Hver gang du færdiggør en opgave, vil du have en chance for at modtage et tilfældigt Æg eller Udklækningseliksir til at udklække Kæledyr. Når du udruger et Kæledyr, vil det dukke op her! Klik på billedet af Kæledyret for at føje det til din Avatar. Giv dem det Dyrefoder du finder, og de vil vokse sig til kraftfulde Ridedyr.",
"welcomeToTavern": "Velkommen til Værtshuset!",
"sleepDescription": "Har du brug for en pause? Check ind i Daniels Værtshus for at sætte nogle af Habiticas svære elementer på pause:",
- "sleepBullet1": "Missede Daglige vil ikke skade dig",
- "sleepBullet2": "Opgavers stribe-præstation vil ikke blive tabt",
- "sleepBullet3": "Bosser vil ikke skade dig på grund af dine egne missede Daglige",
+ "sleepBullet1": "Dine missede Daglige vil ikke skade dig (bosser vil stadig kunne skade dig baseret på andre Holdmedlemmers missede Daglige)",
+ "sleepBullet2": "Dagliges stribe-præstation og Vanetæller vil ikke blive nulstillet",
+ "sleepBullet3": "Den skade, du vil påføre bossen, eller dine indsamlede questgenstande, vil først tælle med i questen, når du checker ud af Værtshuset",
"sleepBullet4": "Du vil beholde din afventende skade til bosser eller indsamlede questgenstande indtil du checker ud",
"pauseDailies": "Sæt skade på pause",
"unpauseDailies": "Skade er ikke længere på pause",
@@ -129,5 +129,6 @@
"cannotUnpinItem": "Denne genstand kan ikke frigøres.",
"nMonthsSubscriptionGift": "<%= nMonths %> Måned(ers) Abonnement (Gave)",
"nGemsGift": "<%= nGems %> Ædelsten (Gave)",
- "nGems": "<%= nGems %> Ædelsten"
+ "nGems": "<%= nGems %> Ædelsten",
+ "amountExp": "<%= amount %> Exp"
}
diff --git a/website/common/locales/da/overview.json b/website/common/locales/da/overview.json
index 5d029583e5..6900d74d9c 100644
--- a/website/common/locales/da/overview.json
+++ b/website/common/locales/da/overview.json
@@ -1,10 +1,10 @@
{
"needTips": "Brug for noget hjælp til at starte? Her er en enkel guide!",
"step1": "Trin 1: Indtast opgaver",
- "webStep1Text": "Habitica er intet uden mål i det virkelige liv, så opret et par opgaver. Du kan altid tilføje flere! Alle opgaver kan tilføjes ved at klikke på den grønne 'Opret' knap.\n* **Opret [To-Dos](http://habitica.fandom.com/wiki/To-Dos):** Tilføj opgaver, du kun skal gøre én gang, eller sjældent, i kolonnen 'To-Dos', en af gangen. Du kan klikke på opgaverne for at redigere dem og tilføje checklister, forfaldsdag og mere!\n* **Opret [Daglige](http://habitica.fandom.com/wiki/Dailies):** Tilføj aktiviteter, du skal klare hver dag, eller på en bestemt dag i ugen, måneden, eller året i kolonnen 'Daglige'. Klik på en opgaver for at ændre, hvornår den skal være forfalden og/eller fastsætte en startdato. Du kan også sætte den til at være forfalden med jævne mellemrum, for eksempel hver tredje dag.\n* **Opret [Vaner](http://habitica.fandom.com/wiki/Habits):** Tilføj vaner, du gerne vil tillægge dig, i kolonnen 'Vaner'. Du kan ændre Vanen for kun at gøre den til en god vane :heavy_plus_sign: eller en dårlig vane :heavy_minus_sign:\n* **Opret [Belønninger](http://habitica.fandom.com/wiki/Rewards):** Udover de Belønninger, der tilbydes i spillet, kan du tilføje aktiviteter eller små gaver/lækkerier, du kan bruge som motivation, i kolonnen 'Belønninger'. Det er vigtigt at give dig selv en pause eller tillade en lille luksus sommetider!\n* Hvis du har brug for inspiration til dine opgaver, kan du se [eksempler på Vaner](http://habitica.fandom.com/wiki/Sample_Habits), [eksempler på Daglige](http://habitica.fandom.com/wiki/Sample_Dailies), [eksempler på To-Dos](http://habitica.fandom.com/wiki/Sample_To-Dos), og [eksempler på Belønninger](http://habitica.fandom.com/wiki/Sample_Custom_Rewards) på wiki'en (engelsk).",
+ "webStep1Text": "Habitica er intet uden mål i det virkelige liv, så opret et par opgaver. Du kan altid tilføje flere! Alle opgaver kan tilføjes ved at klikke på den grønne 'Opret' knap.\n* **Opret [To Do's](https://habitica.fandom.com/wiki/To_Do%27s):** Tilføj opgaver, du kun skal gøre én gang, eller sjældent, i kolonnen To Do's, en af gangen. Du kan klikke på opgaverne for at redigere dem og tilføje checklister, forfaldsdag og mere!\n* **Opret [Daglige](https://habitica.fandom.com/wiki/Dailies):** Tilføj aktiviteter, du skal klare hver dag, eller på en bestemt dag i ugen, måneden, eller året i kolonnen 'Daglige'. Klik på en opgaver for at ændre, hvornår den skal være forfalden og/eller fastsætte en startdato. Du kan også sætte den til at være forfalden med jævne mellemrum, for eksempel hver tredje dag.\n* **Opret [Vaner](https://habitica.fandom.com/wiki/Habits):** Tilføj vaner, du gerne vil tillægge dig, i kolonnen 'Vaner'. Du kan ændre Vanen for kun at gøre den til en god vane :heavy_plus_sign: eller en dårlig vane :heavy_minus_sign:\n* **Opret [Belønninger](https://habitica.fandom.com/wiki/Rewards):** Udover de Belønninger, der tilbydes i spillet, kan du tilføje aktiviteter eller små gaver/lækkerier, du kan bruge som motivation, i kolonnen 'Belønninger'. Det er vigtigt at give dig selv en pause eller tillade en lille luksus sommetider!\n* Hvis du har brug for inspiration til dine opgaver, kan du se [eksempler på Vaner](https://habitica.fandom.com/wiki/Sample_Habits), [eksempler på Daglige](https://habitica.fandom.com/wiki/Sample_Dailies), [eksempler på To Do's](https://habitica.fandom.com/wiki/Sample_To_Do%27s), og [eksempler på Belønninger](https://habitica.fandom.com/wiki/Sample_Custom_Rewards) på wiki'en (engelsk).",
"step2": "Trin 2: Optjen Point ved at gøre ting i det virkelig liv",
- "webStep2Text": "Begynd nu på dine mål fra listen! Efterhånden som du fuldfører opgaver og krydser dem af i Habitica vil du få [Erfaring](http://habitica.fandom.com/wiki/Experience_Points), som vil lade dig stige i niveau, og [Guld](http://habitica.fandom.com/wiki/Gold_Points), som du kan købe Belønninger for. Hvis du giver efter for dårlige vaner eller misser dine Daglige, vil du miste [Liv](http://habitica.fandom.com/wiki/Health_Points). På denne måde vil Habiticas Erfarings- og Helbredsbjælker være en morsom indikater for fremskridt mod dine mål. Du vil begynde at se forbedringer i dit virkelige liv mens din karakter avancerer i spillet.",
+ "webStep2Text": "Begynd nu på dine mål fra listen! Efterhånden som du fuldfører opgaver og krydser dem af i Habitica vil du få [Erfaring](https://habitica.fandom.com/wiki/Experience_Points), som vil lade dig stige i niveau, og [Guld](https://habitica.fandom.com/wiki/Gold_Points), som du kan købe Belønninger for. Hvis du giver efter for dårlige vaner eller misser dine Daglige, vil du miste [Liv](https://habitica.fandom.com/wiki/Health_Points). På denne måde vil Habiticas Erfarings- og Helbredsbjælker være en morsom indikator for fremskridt mod dine mål. Du vil begynde at se forbedringer i dit virkelige liv, mens din karakter avancerer i spillet.",
"step3": "Trin 3: Brugerdefiner og udforsk Habitica",
- "webStep3Text": "Når du er blevet tryg ved nøglefunktionerne, kan du få endnu mere ud af Habitica med de følgende fikse detaljer:\n * Hold styr på dine opgaver med [tags](http://habitica.fandom.com/wiki/Tags) (rediger en opgave for at tilføje dem).\n * Tilpas din [avatar](http://habitica.fandom.com/wiki/Avatar) ved at klikke på brugerikonet i øverste højre hjørne.\n * Køb [Udstyr](http://habitica.fandom.com/wiki/Equipment) under Belønninger eller fra [Butikkerne](<%= shopUrl %>), og skift det ud under [Inventar > Udstyr](<%= equipUrl %>).\n * Sig hej til andre brugere i [Værtshuset](http://habitica.fandom.com/wiki/Tavern).\n * Fra niveau 3 kan du udklække [Kæledyr](http://habitica.fandom.com/wiki/Pets) ved at samle [æg](http://habitica.fandom.com/wiki/Eggs) og [udrugningseliksirer](http://habitica.fandom.com/wiki/Hatching_Potions). [Fodr](http://habitica.fandom.com/wiki/Food) dem for at få [Ridedyr](http://habitica.fandom.com/wiki/Mounts).\n * Fra niveau 10 kan du vælge en [klasse](http://habitica.fandom.com/wiki/Class_System), og får adgang til specielle [evner](http://habitica.fandom.com/wiki/Skills) (låses op fra niveau 11 til 14).\n * Lav et hold med dine venner (ved at klikke på [Hold](<%= partyUrl %>) i navigationsbarren), for at blive holdt ansvarlig og få en Questskriftrulle.\n * Du kan besejre monstre og indsamle genstande på [quests](http://habitica.fandom.com/wiki/Quests) (du vil få en quest på niveau 15).",
+ "webStep3Text": "Når du er blevet tryg ved nøglefunktionerne, kan du få endnu mere ud af Habitica med de følgende fikse detaljer:\n * Hold styr på dine opgaver med [tags](https://habitica.fandom.com/wiki/Tags) (rediger en opgave for at tilføje dem).\n * Tilpas din [avatar](https://habitica.fandom.com/wiki/Avatar) ved at klikke på brugerikonet i øverste højre hjørne.\n * Køb [udstyr](https://habitica.fandom.com/wiki/Equipment) under Belønninger eller fra [Butikkerne](<%= shopUrl %>), og skift det ud under [Inventar > Udstyr](<%= equipUrl %>).\n * Sig hej til andre brugere i [Værtshuset](https://habitica.fandom.com/wiki/Tavern).\n * Udklæk [kæledyr](https://habitica.fandom.com/wiki/Pets) ved at samle [æg](https://habitica.fandom.com/wiki/Eggs) og [udrugningseliksirer](https://habitica.fandom.com/wiki/Hatching_Potions). [Fodr](https://habitica.fandom.com/wiki/Food) dem for at få [ridedyr](https://habitica.fandom.com/wiki/Mounts).\n * Fra niveau 10 kan du vælge en [klasse](https://habitica.fandom.com/wiki/Class_System), og får adgang til specielle [evner](https://habitica.fandom.com/wiki/Skills) (låses op fra niveau 11 til 14).\n * Lav et hold med dine venner (ved at klikke på [Hold](<%= partyUrl %>) i navigationsbarren), for at blive holdt ansvarlig og få en Questskriftrulle.\n * Du kan besejre monstre og indsamle genstande på [quests](https://habitica.fandom.com/wiki/Quests) (du vil få en quest på niveau 15).",
"overviewQuestions": "Har du flere spørgsmål? Læs vores [FAQ](<%= faqUrl %>)! Hvis du ikke kan finde et svar der, kan du bede om hjælp i Klanen [Habitica Help](<%= helpGuildUrl %>).\n\nHeld og lykke med dine opgaver!"
}
diff --git a/website/common/locales/da/pets.json b/website/common/locales/da/pets.json
index ac4d09f3dd..8cfd7e1079 100644
--- a/website/common/locales/da/pets.json
+++ b/website/common/locales/da/pets.json
@@ -23,12 +23,12 @@
"mantisShrimp": "Knælerreje",
"mammoth": "Ulden mammut",
"orca": "Spækhugger",
- "royalPurpleGryphon": "Royal Lilla Grif",
+ "royalPurpleGryphon": "Purpur Grif",
"phoenix": "Føniks",
"magicalBee": "Magisk bi",
"hopefulHippogriffPet": "Håbefuld hippogrif",
"hopefulHippogriffMount": "Håbefuld hippogrif",
- "royalPurpleJackalope": "Royal Lilla Jackalope",
+ "royalPurpleJackalope": "Purpur Jackalope",
"invisibleAether": "Usynlig æter",
"potion": "<%= potionType %> eliksir",
"egg": "<%= eggType %> æg",
@@ -44,8 +44,8 @@
"noFoodAvailable": "Du har ikke noget Dyrefoder.",
"noSaddlesAvailable": "Du har ikke nogle sadler.",
"noFood": "Du har hverken mad eller sadler.",
- "dropsExplanation": "Du kan få fat i disse ting hurtigere med ædelsten, hvis du ikke længere vil vente på at finde dem når du gennemfører en opgave.
Lær mere om drop-systemet.",
- "dropsExplanationEggs": "Brug Ædelsten for hurtigere at få æg, hvis du ikke vil vente på at få standard-æg som drops, eller gentage Quests for at vinde Quest-æg.
Læs mere om dropsystemet her.",
+ "dropsExplanation": "Du kan få fat i disse ting hurtigere med ædelsten, hvis du ikke længere vil vente på at finde dem når du gennemfører en opgave.
Lær mere om drop-systemet.",
+ "dropsExplanationEggs": "Brug Ædelsten for hurtigere at få æg, hvis du ikke vil vente på at få standard-æg som drops, eller gentage Quests for at vinde Quest-æg.
Læs mere om dropsystemet her.",
"premiumPotionNoDropExplanation": "Magiske udrugningseliksirer kan ikke blive brugt på æg, der er modtaget fra quests. Den eneste måde at få en magisk udrugningseliksir på, er ved at købe dem nedenfor, ikke fra tilfældige drop.",
"beastMasterProgress": "Dyretæmmerfremskridt",
"beastAchievement": "Du har opnået \"Dyretæmmer\"-præstationen ved at samle alle kæledyr!",
diff --git a/website/common/locales/da/quests.json b/website/common/locales/da/quests.json
index bab7a48374..dc60cca6d3 100644
--- a/website/common/locales/da/quests.json
+++ b/website/common/locales/da/quests.json
@@ -35,9 +35,9 @@
"mustComplete": "Du skal færdiggøre <%= quest %> først.",
"mustLvlQuest": "Du skal være niveau <%= level %> for at købe denne quest!",
"unlockByQuesting": "For at låse op for denne quest, skal du fuldføre <%= title %>.",
- "questConfirm": "Er du sikker? Kun <%= questmembers %> af dine <%= totalmembers %> holdmedlemmer har valgt at deltage i denne quest! Quests begynder automatisk, når alle spillere enten har accepteret eller afvist invitationen.",
- "sureCancel": "Er du sikker på at du vil afbryde denne quest? Alle invitation-accepter vil gå tabt. Quest-lederen vil beholde quest-skriftrullen.",
- "sureAbort": "Er du sikker på at du vil afbryde missionen? Det vil afbryde den for alle i gruppen og al fremskridt vil gå tabt. Quest-skriftrullen vil blive returneret til quest-lederen.",
+ "questConfirm": "Er du sikker på at du vil starte denne quest? Ikke alle holdmedlemmer har accepteret invitationen. Quests begynder automatisk, når alle medlemmer har svaret.",
+ "sureCancel": "Er du sikker på at du vil afbryde denne quest? Hvis du afbryder, vil alle accepterede og åbne invitationer blive afvist. Quest-lederen vil få skriftrullen igen.",
+ "sureAbort": "Er du sikker på at du vil afbryde missionen? Al fremskridt vil gå tabt. Quest-lederen vil få skriftrullen igen.",
"doubleSureAbort": "Er du helt sikker? Tjek lige at de ikke vil hade dig for evigt!",
"bossRageTitle": "Vrede",
"bossRageDescription": "Når denne bar bliver fyldt vil bossen udføre et specielt angreb!",
@@ -85,5 +85,9 @@
"questAlreadyStarted": "Questen er allerede begyndt.",
"bossDamage": "Du har skadet bossen!",
"questInvitationNotificationInfo": "Du har fået en invitation til at deltage i en quest",
- "hatchingPotionQuests": "Magisk Udrugningseliksirquest"
+ "hatchingPotionQuests": "Magisk Udrugningseliksirquest",
+ "questItemsPending": "<%= amount %> genstande fundet",
+ "sureLeaveInactive": "Er du sikker på, du vil forlade questen? Du vil ikke kunne deltage igen.",
+ "selectQuest": "Vælg quest",
+ "yourPartyIsNotOnQuest": "Dit hold er ikke på en quest"
}
diff --git a/website/common/locales/da/questscontent.json b/website/common/locales/da/questscontent.json
index 2c99c63fb1..ecd07ba276 100644
--- a/website/common/locales/da/questscontent.json
+++ b/website/common/locales/da/questscontent.json
@@ -4,7 +4,7 @@
"questEvilSantaCompletion": "Pelsjægerjulemanden skriger i vrede og løber bort i natten. Den taknemmelige hunbjørn forsøger gennem brøl og knurren at fortælle dig noget. Du tager hende med tilbage til stalden hvor Matt Boch, Hviskeren, lytter til hendes historie med et rædselsslagent gisp. Hun har en unge! Han løb ud på issletterne da bjørnemor blev fanget. Hjælp med at redde hendes barn!",
"questEvilSantaBoss": "Pelsjægerjulemand",
"questEvilSantaDropBearCubPolarMount": "Isbjørn (Ridedyr)",
- "questEvilSanta2Text": "Find Bjørneungen",
+ "questEvilSanta2Text": "Find bjørneungen",
"questEvilSanta2Notes": "Da pelsjægeren fangede Isbjørneridedyret, løb hendes unge ud på issletterne. Du kan høre grene knække og sne knirke gennem den krystalklare lyd af skoven. Poteaftryk! I begynder begge at løbe for at følge sporet. Find alle sporene og de brækkede grene, og hent ungen!
Bemærk: “Find isbjørneungen” belønnes med en stackable quest-præstation, men giver et sjældent Kæledyr, som kun kan tilføjes til din Stald en enkelt gang.",
"questEvilSanta2Completion": "Du har fundet ungen! Den vil holde dig med selskab til evig tid.",
"questEvilSanta2CollectTracks": "Spor",
@@ -26,8 +26,8 @@
"questGhostStagNotes": "Ah, forår. Den tid på året, hvor farve atter fylder landskabet. Væk er de kolde, sneklædte vinterbakker. Spirer bryder frem, hvor frosten engang dækkede jorden. Frodige grønne blade dækker træerne, græs bliver igen dets sædvanlige lysende farve, en regnbue af blomster blomstrer op på sletterne, og en hvid, mystisk tåge deækker landet! ... Vent. Mystisk tåge? \"Åh nej,\" siger
InspectorCaracal ængsteligt. \"Det ser ud som om en eller anden slags ånd forårsager denne tåge. Åh, og den er på vej lige imod dig.\"",
"questGhostStagCompletion": "Ånden, der ser ud til at være uskadet, peger sin næse mod jorden. En beroligende stemme omgærder jeres hold. \"Jeg undskylder for min opførsel. Jeg er kun lige vågnet fra mit vinterhi, og det ser ud til at mine manerer ikke er vendt helt tilbage endnu. Modtag venligst dette som undskyldning.\" En samling æg viser sig på jorden foran ånden. Uden et ord løber ånden ind i skoven, med blomster dryssende efter sig.",
"questGhostStagBoss": "Spøgelseskronhjort",
- "questGhostStagDropDeerEgg": "Rådyr (Æg)",
- "questGhostStagUnlockText": "Åbner for køb af Rådyræg på Markedet",
+ "questGhostStagDropDeerEgg": "Hjort (Æg)",
+ "questGhostStagUnlockText": "Åbner for køb af Hjorteæg på Markedet",
"questRatText": "Rottekongen",
"questRatNotes": "Skrald! Kæmpe bunker af umarkerede Daglige ligger over hele Habitica. Problemet er nu så seriøst, at horder af rotter kan ses alle steder. Du lægger mærke til @Pandah, der kæler med en af bæsterne. Hun forklarer, at rotter er kærlige væsner, der lever af umarkerede daglige. Det virkelige problem er, at de Daglige er faldet i kloakken, og har skabt et stort hul, der skal ryddes. Som I begiver jer ned i kloaksystemet bliver I angrebet af en kæmperotte med blodrøde øjne og skæve gule tænder, der forsvarer dens horde. Løber I skrigende væk eller stiller op til kamp mod den frygtede Rottekonge?",
"questRatCompletion": "Da rotten får dødsstødet falmer farven i den store rottes øjne til en kedelig grå. Bæstet opløses til en masse små rotter, som løber bange væk. I lægger mærke til, at @Pandah står bag jer og ser på den engang så mægtige skabning. Hun forklarer, at indbyggerne i Habitica er blevet inspireret af jeres modighed og er nu travlt beskæftigede med at færdiggøre deres umarkerede Daglige. Hun advarer jer om, at I fortsat skal være på vagt, for hvis I slapper for meget af vil Rottekongen vende tilbage. Som betaling tilbyder @Pandah jer flere rotteæg. Da hun ser jeres usikre blik, smiler hun, \"De er vidunderlige kæledyr.\"",
diff --git a/website/common/locales/da/rebirth.json b/website/common/locales/da/rebirth.json
index 0a5900bf5a..58bcd67bc5 100644
--- a/website/common/locales/da/rebirth.json
+++ b/website/common/locales/da/rebirth.json
@@ -8,7 +8,7 @@
"rebirthOrb": "Brugte en Genfødselskugle til at starte forfra efter at have opnået Niveau <%= level %>.",
"rebirthOrb100": "Brugte en Genfødselskugle til at starte forfra efter at have opnået Niveau 100 eller mere.",
"rebirthOrbNoLevel": "Brugte en Genfødselskugle til at starte forfra.",
- "rebirthPop": "Genstart omgående din karakter som Niveau 1 Kriger, men behold præstationer, samlerobjekter og udstyr. Du vil beholde dine opgaver og deres historie, men de vil blive nulstillet til gul. Dine striber vil blive fjernet, bortset fra opgaver tilhørende aktive Udfordringer og Gruppeplaner. Dit Guld, Erfaring, Mana, og alle effekter fra Evner vil blive fjernet. Alt dette vil ske omgående. For mere information, se siden
Orb of Rebirth på wiki'en (engelsk).",
+ "rebirthPop": "Genstart omgående din karakter som Niveau 1 Kriger, men behold præstationer, samlerobjekter og udstyr. Du vil beholde dine opgaver og deres historie, men de vil blive nulstillet til gul. Dine striber vil blive fjernet, bortset fra opgaver tilhørende aktive Udfordringer og Gruppeplaner. Dit Guld, Erfaring, Mana, og alle effekter fra Evner vil blive fjernet. Alt dette vil ske omgående. For mere information, se siden
Orb of Rebirth på wiki'en (engelsk).",
"rebirthName": "Genfødselskugle",
"rebirthComplete": "Du er blevet genfødt!",
"nextFreeRebirth": "
<%= days %> dage til
GRATIS Genfødselskugle"
diff --git a/website/common/locales/da/settings.json b/website/common/locales/da/settings.json
index a68541c1c3..6960f86651 100644
--- a/website/common/locales/da/settings.json
+++ b/website/common/locales/da/settings.json
@@ -42,7 +42,7 @@
"sureChangeCustomDayStartTime": "Er du sikker på, at du vil ændre dit brugerdefinerede starttidspunkt? Dine Daglige vil blive opdateret næste gang du bruger Habitica efter <%= time %>. Vær sikker på, at du har udført dine Daglige før da!",
"customDayStartHasChanged": "Dit brugerdefinerede starttidspunkt er ændret.",
"nextCron": "Dine Daglige vil blive nulstillet første gang du bruger Habitica efter <%= time %>. Vær sikker på, at du har færdiggjort dine Daglige før dette tidspunkt!",
- "customDayStartInfo1": "Som udgangspunkt vil Habitica tjekke og nulstille dine Daglige ved midnat hver dag. Du kan ændre dette her.",
+ "customDayStartInfo1": "Habitica tjekke og nulstille dine Daglige ved midnat hver dag i din egen tidszone. Du kan ændre det til et andet tidspunkt efter midnat her.",
"misc": "Diverse",
"showHeader": "Vis sidehoved",
"changePass": "Skift kodeord",
@@ -55,7 +55,7 @@
"newUsername": "Nyt brugernavn",
"dangerZone": "Farezone",
"resetText1": "ADVARSEL! Dette nulstiller mange dele af din konto. Vi fraråder på det kraftigste dette, men nogen finder det brugbart i begyndelsen efter at have eksperimenteret med Habitica i et kort stykke tid.",
- "resetText2": "Du vil miste alle niveauer, Guld, og Erfaringspoint. Alle dine Opgaver (bortset fra dem fra Udfordringer) vil blive slettet permanent, og du vil miste al deres historik. Du vil miste alt dit udstyr, men du vil være i stand til at købe det hele igen, inklusiv tidsbegrænset udstyr eller Mystiske abonnentsgenstande, som du allerede ejer (du vil være nødt til at være den rigtige klasse for at kunne købe klasse-udstyr igen). Du vil beholde din nuværende klasse og dine kæle- og ridedyr. Du ville måske foretrække at bruge en Genfødselskugle i stedet. Det er en meget sikrere mulighed, og du vil beholde dine opgaver og udstyr.",
+ "resetText2": "Du vil miste alle niveauer, Guld, og Erfaringspoint. Alle dine Opgaver (bortset fra dem fra Udfordringer) vil blive slettet permanent, og du vil miste al deres historik. Du vil miste alt dit udstyr, undtagen gratis gave-udstyr eller Mystiske abonnentsgenstande. Du vil være i stand til at købe alle de mistede genstand igen, inklusiv tidsbegrænset udstyr (du skal være den korrekte klasse for at købe klasse-begrænset udstyr). Du vil beholde din nuværende klasse, præstationer og dine kæle- og ridedyr. Du ville måske foretrække at bruge en Genfødselskugle i stedet. Det er en meget sikrere mulighed, og du vil beholde dine opgaver og udstyr.",
"deleteLocalAccountText": "Er du sikker? Dette vil slette din konto for evigt, og den kan aldrig gendannes! Du skal registrere en ny konto for at kunne bruge Habitica igen. Ædelsten du har brugt eller har på lager vil ikke blive refunderet. Hvis du er fuldstændig sikker, så skriv dit kodeord i boksen herunder.",
"deleteSocialAccountText": "Er du sikker? Dette vil slette din brugerkonto for evigt, og den kan aldrig gendannes! Du vil være nødt til at oprette en ny konto for at bruge Habitica igen. Ædelsten i en Klanbank eller som er blevet brugt vil ikke blive refunderet. Hvis du virkelig er helt sikker, så indtast \"<%= magicWord %>\" i tekstboksen nedenunder.",
"API": "API",
@@ -189,5 +189,7 @@
"suggestMyUsername": "Foreslå mit brugernavn",
"mentioning": "Nævne",
"displaynameIssueNewline": "Displaynavne må ikke indeholde backslashes efterfulgt af bogstavet N.",
- "bannedWordUsedInProfile": "Dit Displaynavn eller Om-tekst indeholder upassende sprog."
+ "bannedWordUsedInProfile": "Dit Displaynavn eller Om-tekst indeholder upassende sprog.",
+ "adjustment": "Tilpasning",
+ "dayStartAdjustment": "Tilpasning af starttidspunkt"
}
diff --git a/website/common/locales/da/subscriber.json b/website/common/locales/da/subscriber.json
index 32b426ce8f..f666156b56 100644
--- a/website/common/locales/da/subscriber.json
+++ b/website/common/locales/da/subscriber.json
@@ -5,7 +5,7 @@
"buyGemsGold": "Køb Ædelsten med Guld",
"mustSubscribeToPurchaseGems": "Skal abonnere for at kunne købe ædelsten med GP",
"reachedGoldToGemCap": "Du har nået Guld => Ædelstens-maksimum <%= convCap %> for denne måned. Vi har dettee for at undgå misbrug/farming. Vekselmaksimummet nulstiller inden for de tre første dage af hver måned.",
- "reachedGoldToGemCapQuantity": "Det antal Ædelsten du har anmodet om, <%= quantity %>, overstiger Guld => Ædelstens-vekselmaksimummet <%= convCap %> for denne måned. Vi har denne begrænsning for at forhindre misbrug/farming. Begrænsningen nulstilles inden for de første tre dage i hver måned.",
+ "reachedGoldToGemCapQuantity": "Det antal Ædelsten du har anmodet om, <%= quantity %>, overstiger det antal du kan købe denne måned <%= convCap %>. Begrænsningen nulstilles inden for de første tre dage i hver måned. Tak, fordi du abonnerer!",
"mysteryItem": "Eksklusive månedlige genstande",
"mysteryItemText": "Hver måned modtager alle abonnenter en unik kosmetisk ting til deres avatar! Derudover vil de Mystiske Tidsrejsende give dig adgang til yderligere historisk (og futuristisk!) kosmetisk udstyr for hver tre måneders fortsat abonnement.",
"exclusiveJackalopePet": "Eksklusivt kæledyr",
@@ -15,7 +15,7 @@
"subscribe": "Abonnér",
"nowSubscribed": "Du abonnerer nu på Habitica!",
"cancelSub": "Opsig abonnement",
- "cancelSubInfoGroupPlan": "Fordi du har fået et gratis abonnement gennem en Gruppeplan, kan du ikke opsige det. Det vil ophøre, når du ikke længere er i Gruppen. Hvis du er Gruppelederen, og vil opsige hele Gruppeplanen, kan du gøre det fra fanen 'Betalingsoplysninger' på gruppens side.",
+ "cancelSubInfoGroupPlan": "Fordi du har fået et gratis abonnement gennem en Gruppeplan, kan du ikke opsige det. Det vil ophøre, når du ikke længere er medlem af Gruppeplanen. Hvis du er Gruppelederen, og vil opsige hele Gruppeplanen, kan du gøre det fra fanen 'Betaling' på gruppens side.",
"cancelingSubscription": "Annullerer abonnementet",
"contactUs": "Kontakt os",
"checkout": "Til kassen",
@@ -129,7 +129,7 @@
"subscriptionBenefit1": "Købmanden Alexander vil sælge dig Ædelsten for 20 Guld pr. styk!",
"subscriptionBenefit3": "Opdag flere genstande i Habitica med en fordoblet drop-cap.",
"subscriptionBenefit4": "Unikke, dekorative genstande til din avatar hver måned.",
- "subscriptionBenefit5": "Modtag det eksklusive royale lilla Jackalopekæledyr!",
+ "subscriptionBenefit5": "Modtag det purpur Jackalopekæledyr, når du bliver abonnenent.",
"subscriptionBenefit6": "Optjen mystiske timeglas du kan bruge på de Tidsrejsendes marked!",
"purchaseAll": "Køb sæt",
"gemsRemaining": "ædelsten tilbage",
@@ -151,5 +151,13 @@
"mysterySet201905": "Dramatisk dragesæt",
"mysterySet201904": "Overdådigt opalsæt",
"mysterySet201903": "Æg-cellent sæt",
- "mysterySet201902": "Kryptisk kærlighedssæt"
+ "mysterySet201902": "Kryptisk kærlighedssæt",
+ "organization": "Organisation",
+ "howManyGemsPurchase": "Hvor mange Ædelsten vil du gerne købe?",
+ "howManyGemsSend": "Hvor mange Ædelsten vil du gerne sende?",
+ "needToPurchaseGems": "Vil du købe Ædelsten som en gave til nogen?",
+ "wantToSendOwnGems": "Vil du sende dine egne Ædelsten?",
+ "giftASubscription": "Giv et abonnement",
+ "cancelSubInfoGoogle": "Gå venligst til sektionen Konto > Abonnementer i Google Play Store app'en for at afmelde dit abonnement, eller for at se hvornår det udløber, hvis du allerede har opsagt det. Denne skærm kan ikke fortælle dig, hvorvidt dit abonnement er blevet afmeldt.",
+ "cancelSubInfoApple": "Følg venligst
Apples officielle instruktioner for at opsige dit abonnement, eller for at se hvornår det udløber, hvis du allerede har afmeldt det. Denne skærm kan ikke vise dig, hvorvidt dit abonnement er blevet afmeldt."
}
diff --git a/website/common/locales/da/tasks.json b/website/common/locales/da/tasks.json
index 57abbe230c..72199761ee 100644
--- a/website/common/locales/da/tasks.json
+++ b/website/common/locales/da/tasks.json
@@ -1,10 +1,10 @@
{
"clearCompleted": "Slet færdiggjorte",
- "clearCompletedDescription": "Færdiggjorte To-Do's bliver slettet efter 30 dage for ikke-abonnenter og 90 dage for abonnenter.",
- "clearCompletedConfirm": "Er du sikker på, du vil slette dine færdiggjorte to-dos?",
+ "clearCompletedDescription": "Færdiggjorte To Do's bliver slettet efter 30 dage for ikke-abonnenter og 90 dage for abonnenter.",
+ "clearCompletedConfirm": "Er du sikker på, du vil slette dine færdiggjorte To Do's?",
"addMultipleTip": "
Tip: For at tilføje flere <%= taskType %>, så adskil dem ved at bruge linjeskift (Shift+Enter) og tryk enter igen, når du er klar.",
"addATask": "Tilføj en <%= type %>",
- "editATask": "Ret en <%= type %>",
+ "editATask": "Rediger <%= type %>",
"createTask": "Opret <%= type %>",
"addTaskToUser": "Tilføj opgave",
"scheduled": "Planlagt",
@@ -27,7 +27,7 @@
"notes": "Noter",
"advancedSettings": "Avancerede indstillinger",
"difficulty": "Sværhedsgrad",
- "difficultyHelp": "Sværhedsgraden beskriver, hvor udfordrende en Vane, Daglig eller To-Do er for dig at fuldføre. En højere sværhedsgrad resulterer i højere gevinster, når en opgave er fuldført, men det gør også højere skade når en Daglig opgave bliver sprunget over, eller hvis en negativ Vane udføres.",
+ "difficultyHelp": "Sværhedsgraden beskriver, hvor udfordrende en Vane, Daglig eller To Do er for dig at fuldføre. En højere sværhedsgrad resulterer i højere gevinster, når en opgave er fuldført, men det gør også højere skade når en Daglig opgave bliver sprunget over, eller hvis en negativ Vane udføres.",
"trivial": "Triviel",
"easy": "Let",
"medium": "Middel",
@@ -46,9 +46,9 @@
"days": "Dage",
"restoreStreak": "Ret stribe",
"resetStreak": "Nulstil stribe",
- "todo": "To-Do",
- "todos": "To-Dos",
- "todosDesc": "To-Do's skal kun færdiggøres en gang. Tilføje Tjeklister til dine To-Dos for at øge deres værdi.",
+ "todo": "To Do",
+ "todos": "To Do's",
+ "todosDesc": "To Do's skal kun færdiggøres en gang. Tilføje tjeklister til dine To Do's for at øge deres værdi.",
"dueDate": "Forfaldsdato",
"remaining": "Aktive",
"complete": "Færdige",
@@ -127,5 +127,11 @@
"checkOffYesterDailies": "Markér de daglige opgaver du udførte i går:",
"yesterDailiesCallToAction": "Start min nye dag!",
"sessionOutdated": "Din session er forældet. Genindlæs din browser eller synkronisér.",
- "errorTemporaryItem": "Denne genstand er midlertidig og kan ikke fastgøres."
+ "errorTemporaryItem": "Denne genstand er midlertidig og kan ikke fastgøres.",
+ "adjustCounter": "Justér tæller",
+ "addATitle": "Tilføj en titel",
+ "addNotes": "Tilføj noter",
+ "counter": "Tæller",
+ "resetCounter": "Nulstil tæller",
+ "tomorrow": "I morgen"
}
diff --git a/website/common/locales/de/achievements.json b/website/common/locales/de/achievements.json
index bbcbbdf220..6cdb3460ea 100644
--- a/website/common/locales/de/achievements.json
+++ b/website/common/locales/de/achievements.json
@@ -135,5 +135,8 @@
"achievementReptacularRumble": "Reptilisches Rumpeln",
"achievementGroupsBeta2022": "Interaktive Beta Testperson",
"achievementGroupsBeta2022Text": "Deine Gruppe und Du habt unschätzbar wertvolles Feedback beigesteuert, um Habitica beim Testen zu unterstützen.",
- "achievementGroupsBeta2022ModalText": "Du hast mit Deinen Gruppen Habitica geholfen, indem ihr getestet und Feedback geschrieben habt!"
+ "achievementGroupsBeta2022ModalText": "Du hast mit Deinen Gruppen Habitica geholfen, indem ihr getestet und Feedback geschrieben habt!",
+ "achievementWoodlandWizardModalText": "Du hast alle Wald-Tiere gesammelt!",
+ "achievementWoodlandWizard": "Wald-Magier",
+ "achievementWoodlandWizardText": "Du hast alle Standard-Farben der Waldkreaturen ausgebrütet: Dachs, Bär, Hirsch, Fuchs, Frosch, Igel, Eule, Schlange, Eichhörnchen und Bäumling!"
}
diff --git a/website/common/locales/de/backgrounds.json b/website/common/locales/de/backgrounds.json
index bf3cd11302..2385432b05 100644
--- a/website/common/locales/de/backgrounds.json
+++ b/website/common/locales/de/backgrounds.json
@@ -707,5 +707,19 @@
"backgroundMountainWaterfallText": "Wasserfall in den Bergen",
"backgroundMountainWaterfallNotes": "Bewundere einen Wasserfall in den Bergen.",
"backgroundSailboatAtSunsetText": "Segelboot bei Sonnenuntergang",
- "backgroundSailboatAtSunsetNotes": "Geniesse ein Segelboot im Sonnenuntergang."
+ "backgroundSailboatAtSunsetNotes": "Geniesse ein Segelboot im Sonnenuntergang.",
+ "backgroundBioluminescentWavesText": "Biolumineszierende Wellen",
+ "backgroundBioluminescentWavesNotes": "Bewundere das Glimmen der Biolumineszierenden Wellen.",
+ "backgroundUnderwaterCaveText": "Unterwasserhöhle",
+ "backgroundUnderwaterCaveNotes": "Erkunde eine Unterwasserhöhle.",
+ "backgroundUnderwaterStatuesText": "Statuen Unterwassergarten",
+ "backgrounds072022": "Set 98: Veröffentlicht im July 2022",
+ "backgroundUnderwaterStatuesNotes": "Versuche nicht zu blinzeln in einem Statuen Unterwassergarten.",
+ "backgroundRainbowEucalyptusText": "Regenbogen-Eukalyptus",
+ "backgroundByACampfireText": "An einem Lagerfeuer",
+ "backgroundByACampfireNotes": "Sonne dich im Schein eines Lagerfeuers.",
+ "backgrounds082022": "Set 99: Veröffentlicht im August 2022",
+ "backgroundMessyRoomText": "Unordentlicher Raum",
+ "backgroundMessyRoomNotes": "Reinige einen unordentlichen Raum.",
+ "backgroundRainbowEucalyptusNotes": "Bewundere einen Regenbogen-Eukalyptus-Hain."
}
diff --git a/website/common/locales/de/communityguidelines.json b/website/common/locales/de/communityguidelines.json
index d3759adc64..62544b4b93 100644
--- a/website/common/locales/de/communityguidelines.json
+++ b/website/common/locales/de/communityguidelines.json
@@ -28,7 +28,7 @@
"commGuidePara024": "
Sprecht nicht über etwas suchterregendes in der Taverne. Viele Menschen verwenden Habitica, um Ihre schlechten Gewohnheiten loszuwerden. Wenn sie andere Leute über suchterregende/illegale Substanzen reden hören, würde das dies deutlich erschweren! Respektiert eure Tavernenkameraden und berücksichtigt diesen Umstand. Dies gilt auch, aber nicht abschließend, für: Rauchen, Alkohol, Pornografie, Glückspiel und Drogen.",
"commGuidePara027": "
Wenn ein Moderator Dich anweist, ein Gespräch an anderer Stelle zu führen und wenn es keine relevante Gilde gibt, kann er Dir vorschlagen, die Hinterzimmer-Gilde zu benutzen. Die Hinterzimmer-Gilde ist ein freier öffentlicher Raum, um potenziell sensible Themen zu diskutieren. Sie sollte nur verwendet werden, wenn sie von einem Moderator geleitet wird. Sie wird vom Moderatorenteam sorgfältig überwacht. Sie ist kein Ort für allgemeine Diskussionen oder Gespräche, und Du wirst nur dann von einem Mod dorthin geleitet, wenn es angebracht ist.",
"commGuideHeadingPublicGuilds": "Öffentliche Gilden",
- "commGuidePara029": "
Öffentliche Gilden sind der Taverne ziemlich ähnlich, außer dass die Gespräche dort nicht so allgemein sind, sondern sich um ein bestimmtes Thema drehen. Der öffentliche Gildenchat sollte sich auf dieses Thema konzentrieren. Zum Beispiel könnte es sein, dass Mitglieder der Wordsmith-Gilde genervt sind, wenn sich das Gespräch plötzlich um Gärtnern statt um Schreiben dreht, und eine Drachenliebhaber-Gilde interessiert sich wahrscheinlich nicht dafür, antike Runen zu entziffern. Manche Gilden sind dabei lockerer als andere, aber
versuche beim Thema zu bleiben!",
+ "commGuidePara029": "
Öffentliche Gilden sind der Taverne ziemlich ähnlich, außer dass die Gespräche dort nicht so allgemein sind, sondern sich um ein bestimmtes Thema drehen. Der öffentliche Gildenchat sollte sich auf dieses Thema konzentrieren. Zum Beispiel könnte es sein, dass Mitglieder der Wordsmith-Gilde genervt sind, wenn sich das Gespräch plötzlich um Gärtnern statt um Schreiben dreht, und eine Drachenliebhaber-Gilde interessiert sich wahrscheinlich nicht dafür, antike Runen zu entziffern. Manche Gilden sind dabei lockerer als andere, aber
versuche beim Thema zu bleiben!",
"commGuidePara031": "Einige öffentlichen Gilden werden sensible Themen wie Depressionen, Religion, Politik usw. enthalten. Dies ist in Ordnung, solange die Gespräche darin nicht gegen die Allgemeinen Geschäftsbedingungen oder die Regeln des öffentlichen Raums verstoßen und solange sie beim Thema bleiben.",
"commGuidePara033": "
Öffentliche Gilden dürfen KEINE Inhalte \"ab 18\" enthalten. Wenn geplant ist, regelmäßig über sensible Inhalte zu diskutieren, sollte dies in der Gildenbeschreibung angegeben werden. Auf diese Weise soll Habitica sicher und angenehm für alle sein.",
"commGuidePara035": "
Wenn die betreffende Gilde verschiedene Arten von heiklen Themen hat, ist es respektvoll gegenüber Deinen Habiticanern, eine Warnung vor Deinen Kommentar zu stellen (z.B. \"Warnung: erwähnt Selbstverletzung\"). Diese können als Triggerwarnungen und/oder Inhaltshinweise bezeichnet werden, und Gilden können zusätzlich zu den hier angegebenen Regeln eigene Regeln haben. Wenn möglich, verwende bitte
Markdown um die potenziell heiklen Inhalte unterhalb von Zeilenumbrüchen auszublenden, damit diejenigen, die sie nicht lesen möchten, darüber hinweg scrollen können, ohne den Inhalt zu sehen. Mitarbeiter und Moderatoren von Habitica können dieses Material nach eigenem Ermessen trotzdem entfernen.",
@@ -61,7 +61,7 @@
"commGuidePara056": "Leichte Regelverletzungen sollten zwar nicht passieren, haben aber nur leichte Konsequenzen. Wenn sie wiederholt auftreten, können sie mit der Zeit zu schwereren Konsequenzen führen.",
"commGuidePara057": "In folgender Liste sind Beispiele für leichte Regelverletzungen. Die Liste ist nicht abschliessend.",
"commGuideList07A": "Erstmalige Verletzung von Richtlinien für öffentliche Orte",
- "commGuideList07B": "Jegliche Aussagen oder Handlungen die ein \"Bitte nicht\" vom Moderations-Team auslösen. Wenn Du öffentlich gebeten wirst, eine Handlung zu unterlassen, kann das für sich genommen als Konsequenz gelten. Wenn Mods viele dieser Berichtigungen an dieselbe Person richten müssen, kann das als stärkere Regelverletzung zählen.",
+ "commGuideList07B": "Jegliche Aussagen oder Handlungen die ein \"Bitte nicht\" vom Moderations-Team auslösen. Wenn Du öffentlich gebeten wirst, eine Handlung zu unterlassen, kann das für sich genommen als Konsequenz gelten. Wenn Mods viele dieser Berichtigungen an dieselbe Person richten müssen, kann das als stärkere Regelverletzung zählen",
"commGuidePara057A": "Manche Beiträge werden eventuell versteckt, da sie persönliche Informationen enthalten oder einen falschen Eindruck erwecken. Normalerweise wird dies nicht als Verstoß gewertet, vor allem nicht beim ersten Mal!",
"commGuideHeadingConsequences": "Konsequenzen",
"commGuidePara058": "In Habitica hat – wie im echten Leben – jede Handlung eine Konsequenz: man wird fit weil man rennt, bekommt Löcher in den Zähnen weil man zu viel Zucker isst oder besteht eine Prüfung, weil man gelernt hat.",
@@ -77,7 +77,7 @@
"commGuideList09C": "Der Aufstieg in höhere Mitwirkendenstufen kann dauerhaft verwehrt (\"eingefroren\") werden",
"commGuideHeadingModerateConsequences": "Beispiele für mittlere Konsequenzen",
"commGuideList10A": "Beschränkte öffentliche und/oder private Chat-Berechtigungen",
- "commGuideList10A1": "Führen Deine Handlungen zur Aufhebung Deiner Chatrechte, wird Dich ein Moderator oder Mitarbeiter per PN und/oder in dem Forum, in dem Du stummgeschaltet wurdest, über die Dauer und Gründe für das Stummschalten und/oder die Handlung, die für die Wiederherstellung Deiner Chatrechte notwendig ist, informieren. Deine Chatrechte werden wiederhergestellt, wenn Du höflich mit den erforderlichen Handlungen übereinstimmst und zustimmst, Dich fortan an die Community-Richtlinien und Nutzungsbedingungen zu halten.",
+ "commGuideList10A1": "Führen Deine Handlungen zur Aufhebung Deiner Chatrechte, wird Dich ein Moderator oder Mitarbeiter per PN und/oder in dem Forum, in dem Du stummgeschaltet wurdest, über die Dauer und Gründe für das Stummschalten und/oder die Handlung, die für die Wiederherstellung Deiner Chatrechte notwendig ist, informieren. Deine Chatrechte werden wiederhergestellt, wenn Du höflich mit den erforderlichen Handlungen übereinstimmst und zustimmst, Dich fortan an die Community-Richtlinien und Nutzungsbedingungen zu halten",
"commGuideList10C": "Beschränkte Berechtigung, Gilden/Herausforderungen zu gründen",
"commGuideList10D": "Der Aufstieg in höhere Mitwirkendenstufen kann temporär verwehrt (\"eingefroren\") werden",
"commGuideList10E": "Herabstufung von Mitwirkenden",
diff --git a/website/common/locales/de/content.json b/website/common/locales/de/content.json
index 1f89299598..9f319899ef 100644
--- a/website/common/locales/de/content.json
+++ b/website/common/locales/de/content.json
@@ -371,5 +371,6 @@
"hatchingPotionSolarSystem": "Sonnensystem",
"hatchingPotionMoonglow": "Mondschein",
"hatchingPotionOnyx": "Onyx",
- "hatchingPotionVirtualPet": "Virtuelles Haustier"
+ "hatchingPotionVirtualPet": "Virtuelles Haustier",
+ "hatchingPotionPorcelain": "Porzellan"
}
diff --git a/website/common/locales/de/faq.json b/website/common/locales/de/faq.json
index 0e57ef1657..4b580c8ee9 100644
--- a/website/common/locales/de/faq.json
+++ b/website/common/locales/de/faq.json
@@ -54,5 +54,6 @@
"webFaqAnswer12": "Weltbosse sind spezielle Monster, die in der Taverne erscheinen. Alle aktiven Benutzer kämpfen automatisch gegen den Boss und ihre Aufgaben und Fähigkeiten werden dem Boss wie üblich schaden. Du kannst Dich gleichzeitig in einer normalen Quest befinden. Deine Aufgaben und Fähigkeiten zählen sowohl dem Weltboss wie auch dem Boss/der Sammelquest gegenüber. Ein Weltboss wird niemals Dich oder Deinen Account verletzen. Stattdessen hat dieser einen Raserei-Balken, welcher sich füllt, wenn Benutzer ihre Tagesaufgaben nicht erfüllen. Wenn der Raserei-Balken gefüllt ist, wird der Weltboss einen der Nicht-Spieler-Charakter der Seite angreifen und ihr Aussehen wird sich verändern. Du kannst mehr über [vergangene Weltbosse](https://habitica.fandom.com/de/wiki/Weltbosse) im Wiki erfahren.",
"iosFaqStillNeedHelp": "Wenn Du eine Frage hast, die hier oder im [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ) nicht beantwortet wurde, stelle sie in der Taverne unter Menü > Tavernen-Chat! Wir helfen Dir gerne.",
"androidFaqStillNeedHelp": "Wenn Du eine Frage hast, die hier oder im [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ) nicht beantwortet wurde, stelle sie in der Taverne unter Menü > Tavernen-Chat! Wir helfen Dir gerne.",
- "webFaqStillNeedHelp": "Wenn Du eine Frage hast, die hier oder im [Wiki-FAQ](https://habitica.fandom.com/wiki/FAQ) nicht beantwortet wurde, stelle sie in der [Habitica-Hilfe-Gilde](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Wir helfen Dir gerne."
+ "webFaqStillNeedHelp": "Wenn Du eine Frage hast, die hier oder im [Wiki-FAQ](https://habitica.fandom.com/wiki/FAQ) nicht beantwortet wurde, stelle sie in der [Habitica-Hilfe-Gilde](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Wir helfen Dir gerne.",
+ "faqQuestion13": "Was ist ein Gruppen-Plan?"
}
diff --git a/website/common/locales/de/front.json b/website/common/locales/de/front.json
index 08e0436a6f..df71b09c58 100644
--- a/website/common/locales/de/front.json
+++ b/website/common/locales/de/front.json
@@ -72,9 +72,9 @@
"pkQuestion4": "Warum schadet das Auslassen von Aufgaben der Gesundheit Deines Avatars?",
"pkAnswer4": "Wenn Du eines Deiner Tagesziele überspringst, verliert Dein Avatar am nächsten Tag an Gesundheit. Dies dient als wichtiger Motivationsfaktor, um Menschen zu ermutigen, ihre Ziele zu verwirklichen, denn die Menschen mögen es wirklich nicht, ihren kleinen Avatar zu verletzen! Außerdem ist die soziale Verantwortung für viele Menschen entscheidend: Wenn Du ein Monster mit Deinen Freunden bekämpfst, verletzen unerledigte Tagesaufgaben auch deren Avatare.",
"pkQuestion5": "Was unterscheidet Habitica von anderen Programmen mit Gamifizierung?",
- "pkAnswer5": "Ein Weg, wie Habitica am erfolgreichsten mit der Gamifikation umgegangen ist, ist, dass wir viel Mühe darauf verwendet haben, über die Spielaspekte nachzudenken, um sicherzustellen, dass sie tatsächlich Spaß machen. Wir haben auch viele soziale Komponenten aufgenommen, weil wir der Meinung sind, dass einige der motivierendsten Spiele es ermöglichen, mit Freunden zu spielen, und weil Untersuchungen gezeigt haben, dass es einfacher ist, Gewohnheiten zu bilden, wenn man gegenüber anderen Menschen Rechenschaft ablegt.",
+ "pkAnswer5": "Ein Weg, wie Habitica am erfolgreichsten mit der Gamifizierung umgegangen ist, ist, dass wir viel Mühe darauf verwendet haben, über die Spielaspekte nachzudenken, um sicherzustellen, dass sie tatsächlich Spaß machen. Wir haben auch viele soziale Komponenten eingebunden, weil wir der Meinung sind, dass einige der Spiele, die am meisten motivieren, es ermöglichen, mit Freunden zu spielen, und weil Untersuchungen gezeigt haben, dass es einfacher ist Gewohnheiten zu bilden, wenn man gegenüber anderen Menschen Rechenschaft ablegt.",
"pkQuestion6": "Wer ist der typische Habitica-User?",
- "pkAnswer6": "Viele verschiedene Leute benutzen Habitica! Mehr als die Hälfte unserer Nutzer sind zwischen 18 und 34 Jahre alt, aber wir haben Großeltern, die die Seite mit ihren jungen Enkeln und jedem Alter dazwischen nutzen. Oftmals schließen sich Familien einer Party an und kämpfen gemeinsam gegen Monster.
Viele unserer Benutzer haben einen Hintergrund in Spielen, aber überraschenderweise, als wir vor einiger Zeit eine Umfrage durchführten, identifizierten sich 40% unserer Benutzer als Nicht-Gamer! So sieht es so aus, als ob unsere Methode für jeden effektiv sein kann, der an Produktivität und Wellness mehr Spaß haben möchte.",
+ "pkAnswer6": "Viele verschiedene Leute benutzen Habitica! Mehr als die Hälfte dieser Leute sind zwischen 18 und 34 Jahre alt, aber wir haben auch Großeltern, welche die Seite mit ihren jungen Enkeln nutzen, und Menschen jeden Alters dazwischen. Oftmals kommen Familien in einer Party zusammen und kämpfen gemeinsam gegen Monster.
Viele, die Habitica nutzen, haben einen Hintergrund in Spielen, aber als wir vor einiger Zeit eine Umfrage durchführten wurden wir überrascht: rund 40% von ihnen sahen sich als Nicht-Gamer! Es sieht ganz so aus, als ob unsere Methode für jede Person effektiv sein kann, die möchte, dass Produktivität und Wohlbefinden mehr Spaß machen.",
"pkQuestion7": "Warum benutzt Habitica pixel art?",
"pkAnswer7": "Habitica nutzt pixel art aus verschiedenen Gründen. Zusätzlich zum spaßigen Nostalgiefaktor ist pixel art sehr gut zugänglich für die freiwilligen Künstler, die gerne beitragen möchten. Es ist viel einfacher, unsere pixel art konstistent zu halten, selbst wenn viele verschiedene Künstler einen Beitrag leisten und es lässt uns schnell neuen Inhalt entwickeln!",
"pkQuestion8": "Wie hat Habitica das reale Leben von Leuten beeinflusst?",
diff --git a/website/common/locales/de/gear.json b/website/common/locales/de/gear.json
index 6f8d4e935d..1838b0b75d 100644
--- a/website/common/locales/de/gear.json
+++ b/website/common/locales/de/gear.json
@@ -2303,21 +2303,21 @@
"armorSpecialSpring2021WarriorText": "Sonnenrüstung",
"weaponSpecialSpring2021WarriorText": "Hammer der Sonne",
"eyewearArmoireClownsNoseText": "Clownsnase",
- "shieldArmoireBlueCottonCandyFoodNotes": "Eine süße Leckerei für die Naschkatzen unter deinen Haustieren. Aber wer wird sie am meisten mögen? Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Futterset (Gegenstand 9 von 10).",
+ "shieldArmoireBlueCottonCandyFoodNotes": "Eine süße Leckerei für die Naschkatzen unter deinen Haustieren. Aber wer wird sie am meisten mögen? Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 9 von 10).",
"shieldArmoireBlueCottonCandyFoodText": "Dekorative Blaue Zuckerwatte",
"shieldArmoireChocolateFoodText": "Dekorative Schokolade",
"shieldArmoireFishFoodText": "Dekorativer Fisch",
"shieldArmoireHoneyFoodText": "Dekorativer Honig",
"shieldArmoireMeatFoodText": "Dekoratives Fleisch",
- "shieldArmoireMilkFoodNotes": "Es gibt viele Berichte über die gesundheitlichen Vorteile von Milch, aber die Haustire, die sie bevorzugen, lieben schlicht ihren kremigen Geschmack. Erhöht Ausdauer und Stärke um jeweils <%= attrs %>. Verzauberter Schrank: Futterset (Gegenstand 10 von 10).",
+ "shieldArmoireMilkFoodNotes": "Es gibt viele Berichte über die gesundheitlichen Vorteile von Milch, aber die Haustire, die sie bevorzugen, lieben schlicht ihren kremigen Geschmack. Erhöht Ausdauer und Stärke um jeweils <%= attrs %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 10 von 10)",
"shieldArmoireMilkFoodText": "Dekorative Milch",
- "shieldArmoirePinkCottonCandyFoodNotes": "Eine süße Leckerei für die Naschkatzen unter deinen Haustieren. Aber wer wird sie am meisten mögen? Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Futterset (Gegenstand 4 von 10).",
+ "shieldArmoirePinkCottonCandyFoodNotes": "Eine süße Leckerei für die Naschkatzen unter deinen Haustieren. Aber wer wird sie am meisten mögen? Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 4 von 10).",
"shieldArmoirePinkCottonCandyFoodText": "Dekorative Rosa Zuckerwatte",
- "shieldArmoirePotatoFoodNotes": "Kartoffeln sind ein Hauptbestandteil vieler Gerichte, aber einige Haustire würden sich am liebsten nur von Kartoffeln ernähren... Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Futterset (Gegenstand 3 von 10).",
+ "shieldArmoirePotatoFoodNotes": "Kartoffeln sind ein Hauptbestandteil vieler Gerichte, aber einige Haustire würden sich am liebsten nur von Kartoffeln ernähren... Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 3 von 10).",
"shieldArmoirePotatoFoodText": "Dekorative Kartoffel",
- "shieldArmoireRottenMeatFoodNotes": "Halte die Nase zu! Du magst dich vor diesem verrotteten Fleisch ekeln, aber es ist perfekt für einige deiner Haustiere! Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Futterset (Gegenstand 2 von 10).",
+ "shieldArmoireRottenMeatFoodNotes": "Halte die Nase zu! Du magst dich vor diesem verrotteten Fleisch ekeln, aber es ist perfekt für einige deiner Haustiere! Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 2 von 10).",
"shieldArmoireRottenMeatFoodText": "Dekoratives Verrottetes Fleisch",
- "shieldArmoireStrawberryFoodNotes": "Eine köstliche, frische Erdbeere zum Verfüttern an deine Haustiere! Weißt du welche Haustiere Erdbeeren am liebsten mögen? Erhöht Stärke um <%= str %>. Verzauberter Schrank: Futterset (Gegenstand 1 von 10).",
+ "shieldArmoireStrawberryFoodNotes": "Eine köstliche, frische Erdbeere zum Verfüttern an deine Haustiere! Weißt du welche Haustiere Erdbeeren am liebsten mögen? Erhöht Stärke um <%= str %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 1 von 10).",
"shieldArmoireStrawberryFoodText": "Dekorative Erdbeere",
"shieldSpecialSpring2021HealerText": "Salixschild",
"shieldSpecialSpring2021WarriorText": "Sonnenschild",
@@ -2346,10 +2346,10 @@
"backMystery202105Text": "Drachenflügel des Nebels",
"shieldArmoireMedievalLaundryNotes": "Es wird hart, all das sauber zu bekommen, aber du weißt bereits, dass du alles schaffen kannst. Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Mittelalterliche Wäscher-Montur (Gegenstand 6 von 6).",
"shieldArmoireMedievalLaundryText": "Schmutzige Wäsche",
- "shieldArmoireChocolateFoodNotes": "Jeder mag etwas Schokolade, aber manche deiner Haustiere mehr als andere... Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Haustierfutter-Reihe (Gegenstand 8 von 10).",
- "shieldArmoireFishFoodNotes": "Dieser Fisch wird Deinen Haustieren helfen, starke Knochen zu haben. Aber kannst du erraten, welche deiner Haustiere ihn am liebsten essen? Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Haustierfutter-Reihe (Gegenstand 7 von 10).",
- "shieldArmoireHoneyFoodNotes": "Pass auf klebrige Pfoten auf, wenn Du deine Haustiere mit diesem Honig gefüttert hast! Manche Haustiere können dieser natürlichen Süße nicht widerstehen, kannst Du erraten welche? Erhöht Intelligenz und Wahrnehmung jeweils um <%= attrs %>. Verzauberter Schrank: Haustierfutter-Reihe (Gegenstand 6 von 10).",
- "shieldArmoireMeatFoodNotes": "Manchmal ist ein wenig Protein das, was man brauchst, um groß und stark zu werden. Manche deiner Haustiere mögen es mehr als andere. Erhöht Stärke um <%= str %>. Verzauberter Schrank: Haustierfutter-Reihe (Gegenstand 5 von 10).",
+ "shieldArmoireChocolateFoodNotes": "Jeder mag etwas Schokolade, aber manche deiner Haustiere mehr als andere... Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 8 von 10).",
+ "shieldArmoireFishFoodNotes": "Dieser Fisch wird Deinen Haustieren helfen, starke Knochen zu haben. Aber kannst du erraten, welche deiner Haustiere ihn am liebsten essen? Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 7 von 10).",
+ "shieldArmoireHoneyFoodNotes": "Pass auf klebrige Pfoten auf, wenn Du deine Haustiere mit diesem Honig gefüttert hast! Manche Haustiere können dieser natürlichen Süße nicht widerstehen, kannst Du erraten welche? Erhöht Intelligenz und Wahrnehmung jeweils um <%= attrs %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 6 von 10).",
+ "shieldArmoireMeatFoodNotes": "Manchmal ist ein wenig Protein das, was man brauchst, um groß und stark zu werden. Manche deiner Haustiere mögen es mehr als andere. Erhöht Stärke um <%= str %>. Verzauberter Schrank: Haustierfutter Set (Gegenstand 5 von 10).",
"shieldArmoireClownsBalloonsNotes": "Sei vorsichtig: diese Luftballons zu ersetzen wäre etwas teuer... Der Preis hat Auftrieb! Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Clowngarnitur (Gegenstand 4 von 5).",
"shieldArmoireClownsBalloonsText": "Luftballons eines Clowns",
"shieldSpecialSpring2021HealerNotes": "Ein blattgrünes Bündel, welches Zuflucht und Mitgefühl verkündet. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2021 Frühlingsausrüstung.",
@@ -2388,7 +2388,7 @@
"headSpecialSummer2021RogueText": "Clownfisch Haube",
"armorArmoireBathtubNotes": "Zeit für eine kleine Auszeit? Hier ist Ihre ganz persönliche Badewanne - und eine Garantie, dass das Wasser immer die richtige Temperatur hat! Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Bubble Bath Set (Artikel 2 von 4).",
"armorArmoireBathtubText": "Badewanne",
- "armorSpecialSummer2021HealerNotes": "Ihre Feinde könnten vermuten, dass Sie ein Federgewicht sind, aber diese Rüstung wird Sie schützen, während Sie Ihrer Partei helfen. Erhöht Ausdauer um <%= con %>. Limiterte Ausgabe 2021, Sommerausrüstung.",
+ "armorSpecialSummer2021HealerNotes": "Deine Feinde könnten vermuten, dass Du ein Federgewicht bist, aber diese Rüstung wird Dich schützen, während Du Deiner Party hilfst. Erhöht Ausdauer um <%= con %>. Limiterte Ausgabe 2021, Sommerausrüstung.",
"armorSpecialSummer2021HealerText": "Papageiengefieder",
"armorSpecialSummer2021MageNotes": "Immer enger werdende Wirbel aus Perlmutt sorgen für eine arkane Geometrie, die den Schutzzauber fokussiert. Erhöht Intelligenz um <%= int %>. Limiterte Ausgabe 2021, Sommerausrüstung.",
"armorSpecialSummer2021MageText": "Spiralförmige Schale",
@@ -2642,5 +2642,57 @@
"weaponArmoirePinkKiteText": "Pinker Drachen",
"weaponArmoirePinkKiteNotes": "Er steigt auf , schießt zu Boden, dreht sich flink, dein Drachen im leuchtenden Pink. Erhöht alle Werte um jeweils <%= attrs %> . Verzauberter Schrank: Drachen Set (Gegenstand 4 von 5)",
"weaponArmoireYellowKiteText": "Gelber Drachen",
- "weaponArmoireYellowKiteNotes": "Er saust am Himmel hin und her, das fällt dem heiteren Drachen nicht schwer. Erhöht alle Werte um jeweils <%= attrs %> . Verzauberter Schrank: Drachen Set (Gegenstand 5 von 5)"
+ "weaponArmoireYellowKiteNotes": "Er saust am Himmel hin und her, das fällt dem heiteren Drachen nicht schwer. Erhöht alle Werte um jeweils <%= attrs %> . Verzauberter Schrank: Drachen Set (Gegenstand 5 von 5)",
+ "weaponSpecialSummer2022RogueText": "Krabbenschere",
+ "weaponSpecialSummer2022WarriorText": "Wirbelnder Zyklon",
+ "weaponSpecialSummer2022MageText": "Mantarochenstab",
+ "weaponSpecialSummer2022HealerText": "Nützliche Blasen",
+ "weaponSpecialSummer2022HealerNotes": "Diese Blasen geben mit einem befriedigenden Aufplatzen heilende Magie ins Wasser ab. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "armorSpecialSummer2022RogueText": "Krabbenrüstung",
+ "armorSpecialSummer2022RogueNotes": "Perfekt geeignet, um lässig den Strand entlangzukrabbeln. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "armorSpecialSummer2022WarriorText": "Wasserspeierrüstung",
+ "armorSpecialSummer2022WarriorNotes": "Bereite Dich auf eine Wasserschlacht vor, während Du Dich mit dieser wirbelnden Säule aus Luft und Nebel umgibst. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "armorSpecialSummer2022MageNotes": "Während Du diese Rüstung trägst, wirst Du so mühelos durch Deine Aufgaben gleiten wie ein Mantarochen durch das Wasser. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "armorSpecialSummer2022MageText": "Mantarochenrüstung",
+ "armorSpecialSummer2022HealerText": "Kaiserfischschwanz",
+ "headSpecialSummer2022RogueText": "Krabbenhelm",
+ "headSpecialSummer2022WarriorText": "Wasserspeierhelm",
+ "headSpecialSummer2022WarriorNotes": "Kanalisiere die Kraft des Wassers im Zentrum dieses immensen Wirbels. Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "headSpecialSummer2022MageText": "Mantarochenhelm",
+ "headSpecialSummer2022MageNotes": "Schütze Deinen Kopf, während Du in Deine Aufgaben oder die tiefste See abtauchst. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "headSpecialSummer2022HealerText": "Kaiserfisch Ohrflossen",
+ "shieldSpecialSummer2022HealerText": "Heilende Wellen",
+ "shieldSpecialSummer2022WarriorText": "Frecher Hai",
+ "shieldSpecialSummer2022WarriorNotes": "Sie schnappt! Sie beißt! Und sie hört niemals damit auf! Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "shieldSpecialSummer2022HealerNotes": "Sende heilende Energie in sanften Wellen über das Riff. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "weaponSpecialSummer2022RogueNotes": "Wenn Du in der Klemme steckst, solltest Du Dich nicht scheuen, diese furchteinflößenden Scheren zu zeigen! Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "weaponSpecialSummer2022MageNotes": "Reinige auf magische Weise die Gewässer vor Dir mit einem Wirbeln dieses Stabs. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "weaponSpecialSummer2022WarriorNotes": "Er dreht sich! Er leitet um! Und er bringt den Sturm! Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "armorSpecialSummer2022HealerNotes": "Nutze Deine farbenprächtigen Flossen, um über das Riff zu sausen und jenen zu helfen, die der Heilung oder der Rast bedürfen. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "headSpecialSummer2022RogueNotes": "Keine Zeit hier herumzukrebsen, wir werfen uns in Schale und feiern die besten Krustentier Wortwitze des Sommers. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "headSpecialSummer2022HealerNotes": "Fische haben keine Ohren sagst Du? Warte bis sie das hören. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2022 Sommerausrüstung.",
+ "armorMystery202207Text": "Quasselnde Quallen Rüstung",
+ "armorMystery202207Notes": "Mit dieser Rüstung siehst du wabbelig und wahnsinnig gut aus. Gewährt keinen Attributbonus. July 2022 Abonnentengegenstand.",
+ "headMystery202207Text": "Quasselnder Quallen Helm",
+ "armorArmoireFancyPirateSuitText": "Ausgefallene Piratenjacke",
+ "headArmoireFancyPirateHatText": "Ausgefallener Piratenhut",
+ "shieldArmoireTreasureMapText": "Schatzkarte",
+ "armorArmoireFancyPirateSuitNotes": "Trage diese feine Jacke während du die Bibliothek deines Schiffes organisierst, oder besprich es als Crew. Erhöht Ausdauer und Intelligenz um jeweils <%= attrs %> . Verzauberter Schrank: Ausgefallenes Piratenset (Gegenstand 1 von 3).",
+ "headArmoireFancyPirateHatNotes": "Nutze diesen Schutz vor der Sonne und vor den Seemöven die Dir über den Kopf segeln während Du an Deck Deines Schiffes Tee trinkst. Erhöht Wahrnehmung um <%= per %>. Ausgefallenes Piratenset (Gegenstand 2 von 3).",
+ "headMystery202207Notes": "Brauchst Du Hilfe mit Deinen Aufgaben? Mehrere Dutzend biolumineszierende Tentakel stehen Dir tatkräftig zur Seite! Gewährt keinen Attributbonus. July 2022 Abonnentengegenstand.",
+ "shieldArmoireTreasureMapNotes": "Das X markiert die Stelle! Du weißt nie was Du finden wirst wenn du dieser handlichen Karte zu sagenhaften Schätzen folgst: Gold, Juwelen, Relikte oder vielleicht eine versteinerte Orange? Erhöht Stärke und Intelligenz um jeweils <%= attrs %>. Verzauberter Schrank: Ausgefallenes Piratenset (Gegenstand 3 von 3).",
+ "shieldArmoireDustpanText": "Mistschaufel",
+ "eyewearMystery202208Text": "Funkelnde Augen",
+ "weaponArmoirePushBroomText": "Kehrbesen",
+ "weaponArmoireFeatherDusterText": "Staubwedel",
+ "headMystery202208Text": "Frecher Pferdeschwanz",
+ "weaponArmoirePushBroomNotes": "Nimm dieses Reinigungswerkzeug auf deine Abenteuer mit, sodass du immer verrußte Böden säubern oder Spinnweben aus Ecken entfernen kannst. Erhöht Stärke und Intelligenz um jeweils <%= attrs %>. Verzauberter Schrank: Reinigungsset (Gegenstand 1 von 3)",
+ "shieldArmoireDustpanNotes": "Halte diese handliche Mistschaufel bei jeder Reinigung bereit. Ein Verschwinden-Zauberspruch liegt über ihr, damit du nie nach einem Mülleimer suchen musst, um sie zu entleeren. Erhöht Intelligenz und Stärke um jeweils <%= attrs %>. Verzauberter Schrank: Reinigungs-Set (Gegenstand 3 von 3).",
+ "headMystery202208Notes": "Genieße es, mit diesem umfangreichen Haar zu prahlen - im Notfall kann es auch als Peitsche verwendet werden! Gewährt keinen Attributbonus. August 2022 Abonnentengegenstand.",
+ "eyewearMystery202208Notes": "Wiege deine Feinde mit diesen schrecklich süßen Augen in Sicherheit. Gewährt keinen Attributbonus. August 2022 Abonnentengegenstand.",
+ "weaponArmoireFeatherDusterNotes": "Lass diese flotten Federn über alte Gegenstände fliegen, damit sie wie neu erstrahlen. Achte aber auf den aufgewirbelten Staub, damit du nicht niesen musst! Erhöht Ausdauer und Wahrnehmung um jeweils <%= attrs %> . Verzauberter Schrank: Reinigungs-Set (Gegenstand 2 von 3)",
+ "weaponMystery202209Text": "Magie-Anleitung",
+ "weaponMystery202209Notes": "Dieses Buch wird Dich auf Deiner Reise durch die Welt der Magie verzaubern. Gewährt keinen Attributbonus. September 2022 Abonnentengegenstand.",
+ "shieldMystery202209Text": "Berg magischer Bücher",
+ "shieldMystery202209Notes": "Bücherberge durchzulesen ist ein guter Weg um viel Zauberei-Wissen anzusammeln – diese Ausbildung wird einfach magisch! Gewährt keinen Attributbonus. September 2022 Abonnentengegenstand."
}
diff --git a/website/common/locales/de/groups.json b/website/common/locales/de/groups.json
index c1b2e4f71f..73f5f6d95a 100644
--- a/website/common/locales/de/groups.json
+++ b/website/common/locales/de/groups.json
@@ -162,7 +162,7 @@
"onlyCreatorOrAdminCanDeleteChat": "Keine Berechtigung diese Nachricht zu löschen!",
"onlyGroupLeaderCanEditTasks": "Nicht berechtigt, Aufgaben zu bearbeiten!",
"onlyGroupTasksCanBeAssigned": "Nur Team-Aufgaben können verteilt werden",
- "assignedTo": "Zuweisen an",
+ "assignedTo": "Zugewiesen an",
"assignedToUser": "
<%- userName %> zugewiesen",
"assignedToMembers": "
<%= userCount %> Mitgliedern zugewiesen",
"assignedToYouAndMembers": "Dir und
<%= userCount %> Mitliedern zugewiesen",
@@ -379,5 +379,6 @@
"leaveGuild": "Gilde verlassen",
"viewDetails": "Details ansehen",
"upgradeToGroup": "Auf Gruppenplan upgraden",
- "sendGiftTotal": "Insgesamt:"
+ "sendGiftTotal": "Insgesamt:",
+ "chatTemporarilyUnavailable": "Chat aktuell nicht verfügbar. Bitte versuche es später erneut."
}
diff --git a/website/common/locales/de/limited.json b/website/common/locales/de/limited.json
index f4f131aff0..22b163aa90 100644
--- a/website/common/locales/de/limited.json
+++ b/website/common/locales/de/limited.json
@@ -131,13 +131,13 @@
"winter2019WinterStarSet": "Winterstern (Heiler)",
"winter2019PoinsettiaSet": "Weihnachtsstern (Schurke)",
"eventAvailability": "Zum Kauf verfügbar bis zum <%= date(locale) %>.",
- "dateEndMarch": "30. April",
- "dateEndApril": "19. April",
+ "dateEndMarch": "31. März",
+ "dateEndApril": "30. April",
"dateEndMay": "31. Mai",
- "dateEndJune": "14. Juni",
+ "dateEndJune": "30. Juni",
"dateEndJuly": "31. Juli",
"dateEndAugust": "31. August",
- "dateEndSeptember": "21. September",
+ "dateEndSeptember": "30. September",
"dateEndOctober": "31. Oktober",
"dateEndNovember": "30. November",
"dateEndJanuary": "31. Januar",
@@ -221,5 +221,13 @@
"spring2022RainstormWarriorSet": "Gewitterregen (Krieger)",
"spring2022ForsythiaMageSet": "Forsythie (Magier)",
"spring2022PeridotHealerSet": "Abendsmaragd (Heiler)",
- "aprilYYYY": "April <%= year %>"
+ "aprilYYYY": "April <%= year %>",
+ "summer2022WaterspoutWarriorSet": "Wasserspeier (Krieger)",
+ "summer2022AngelfishHealerSet": "Kaiserfisch (Heiler)",
+ "dateEndDecember": "31. Dezember",
+ "summer2022CrabRogueSet": "Krabbe (Schurke)",
+ "summer2022MantaRayMageSet": "Mantarochen (Magier)",
+ "julyYYYY": "Juli <%= year %>",
+ "octoberYYYY": "Oktober <%= year %>",
+ "februaryYYYY": "Februar <%= year %>"
}
diff --git a/website/common/locales/de/npc.json b/website/common/locales/de/npc.json
index 4d08919ac7..343a58e5e2 100644
--- a/website/common/locales/de/npc.json
+++ b/website/common/locales/de/npc.json
@@ -17,9 +17,9 @@
"mattBochText1": "Willkommen im Stall! Ich bin Matt, der Bestienmeister. Jedes Mal, wenn Du eine Aufgabe erledigst, besteht die Chance, zufällig ein Ei oder ein Schlüpfelixier zu erhalten, mit deren Hilfe Haustiere ausgebrütet werden können. Wenn Du ein Haustier schlüpfen lässt, wird es hier erscheinen! Klicke auf ein Haustier, um es Deinem Avatar hinzuzufügen. Füttere Deine Tiere mit dem Futter, das Du findest, damit sie zu mächtigen Reittieren heranwachsen.",
"welcomeToTavern": "Willkommen in der Taverne!",
"sleepDescription": "Brauchst Du eine Pause? Checke in Daniels Gasthaus ein, um ein paar der kniffligeren Habitica-Spielmechanismen zu unterbrechen:",
- "sleepBullet1": "Verpasste Tagesaufgaben werden Dir nicht schaden",
- "sleepBullet2": "Aufgaben verlieren ihre Strähnen nicht",
- "sleepBullet3": "Bosse fügen keinen Schaden für Deine eigenen verpassten Tagesaufgaben zu",
+ "sleepBullet1": "Deine verpassten Tagesaufgaben werden Dir nicht schaden (Bosse werden dennoch Deiner Party Schaden zufügen, wenn andere Partymitglieder ihre Täglichen Aufgaben verpassen)",
+ "sleepBullet2": "Deine Aufgaben-Strähnen und Gewohnheits-Zähler werden nicht zurückgesetzt",
+ "sleepBullet3": "Dein Schaden gegen Quest-Bosse oder Deine gefundenen Sammelgegenstände bleiben ausständig, bis Du aus dem Gasthaus auscheckst",
"sleepBullet4": "Dein ausstehender Boss-Schaden oder gefundene Sammelquest-Gegenstände werden bis zum Check-Out zurückgehalten",
"pauseDailies": "Schaden pausieren",
"unpauseDailies": "Schaden wieder aktivieren",
diff --git a/website/common/locales/de/quests.json b/website/common/locales/de/quests.json
index 5edece43d9..79e8bf4e90 100644
--- a/website/common/locales/de/quests.json
+++ b/website/common/locales/de/quests.json
@@ -36,7 +36,7 @@
"mustLvlQuest": "Du musst Level <%= level %> sein um diese Quest zu erwerben!",
"unlockByQuesting": "Um diese Quest freizuschalten, musst Du erst <%= title %> abschließen.",
"questConfirm": "Bist du sicher, dass du diese Quest starten willst? Nicht alle Mitspieler deiner Party haben die Einladung zu dieser Quest akzeptiert. Quests starten automatisch sobald alle Mitspieler die Einladung angenommen oder abgelehnt haben.",
- "sureCancel": "Bist Du sicher, dass du diese Quest abbrechen willst? Wenn du die Quest abbrichst werden auch alle bereits akzeptierten Einladungen zurückgenommen. Der Quest-Besitzer wird die Questschriftrolle zurück bekommen.",
+ "sureCancel": "Bist Du sicher, dass Du diese Quest abbrechen willst? Wenn Du die Quest abbrichst werden alle bereits akzeptierten und noch unbeantworteten Einladungen zurückgenommen und die Questschriftrolle wird an ihren Besitzer zurückgegeben.",
"sureAbort": "Bist Du sicher, dass Du diese Mission abbrechen willst? Aller Questfortschritt wird verloren gehen. Die Questschriftrolle wird dem Besitzer zurückgegeben.",
"doubleSureAbort": "Bist Du wirklich, wirklich sicher? Sei ganz sicher, dass sie Dich nicht für immer hassen werden!",
"bossRageTitle": "Raserei",
diff --git a/website/common/locales/de/questscontent.json b/website/common/locales/de/questscontent.json
index 215943be4b..3aeddfa3e8 100644
--- a/website/common/locales/de/questscontent.json
+++ b/website/common/locales/de/questscontent.json
@@ -60,7 +60,7 @@
"questSpiderUnlockText": "Schaltet den Kauf von Spinneneiern auf dem Marktplatz frei",
"questGroupVice": "Laster, der Schatten-Wyrm",
"questVice1Text": "Laster, Teil 1: Befreie Dich vom Einfluss des Drachen",
- "questVice1Notes": "
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: Laster, 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.
Laster Teil 1:
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!
",
+ "questVice1Notes": "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: Laster, 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.
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!",
"questVice1Boss": "Lasters Schatten",
"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)",
@@ -167,7 +167,7 @@
"questPenguinDropPenguinEgg": "Pinguin (Ei)",
"questPenguinUnlockText": "Schaltet den Kauf von Pinguineiern auf dem Marktplatz frei",
"questStressbeastText": "Das Schreckliche Stressbiest aus den Stoïstillen Steppen",
- "questStressbeastNotes": "Erfülle Tagesaufgaben und To-Dos um dem Weltbossmonster Schaden zuzufügen! Unerfüllte Tagesaufgaben füllen die Stressschlag-Leiste. Ist die Leiste voll, wird der Weltboss einen NPC angreifen. Ein Weltboss wird einzelnen Spielern oder Accounts auf keine Weise Schaden zufügen. Nur die nicht erfüllten Tagesaufgaben von aktiven Spielern, die sich nicht in der Taverne ausruhen zählen.
~*~
Das erste was wir vernehmen sind die Schritte, langsam und donnernd. Einer nach dem anderen öffnen die Habiticaner ihre Haustüren und blicken dem entgegen und die Worte bleiben uns im Halse stecken.
Wir alle kennen das Stressbiest, natürlich - winzige, fiese Kreaturen, die uns im ungünstigsten Augenblick angreifen. Aber das? Das hier ragt in den Himmel hinauf, höher als die Gebäude, mit Pranken, die ohne Probleme einen Drachen zerschmettern könnten. Frostsplitter regnen aus dem stinkenden Fell herab und sein Gebrüll entfesselt einen eisigen Sturm, der die Dächer von unseren Häusern hebt. Von so einem gewaltigen Monster sprechen nur unsere ältesten Legenden.
\"Gebt acht, Habiticaner!\", ruft SabreCat, \"Verbarrikadiert euch in euren Häusern - dies ist das schreckliche Stressbiest!\"
\"Dieses Ding muss Jahrhunderte von Stress in sich tragen!\", sagt Kiwibot, während er die Türen der Taverne verrammelt und die Fenster zuschlägt.
\"Die Stoïstillen Steppen\", meint Lemnos mit grimmigem Gesicht, \"Die ganze Zeit dachten wir sie wären ein friedlicher Ort, aber sie müssen ihren Stress irgendwo versteckt haben. Über Generationen hinweg ist das hier aus ihm geworden, und nun hat es sich befreit und griff sie an - und uns!\"
Es gibt nur eine Möglichkeit das Stressbiest zu vertreiben, schrecklich oder nicht, und die ist es, es mit erfüllten Tagesaufgaben und To-Dos anzugreifen! Wir müssen zusammenstehen um gegen diesen furchteinflößenden Feind zu bestehen - geht sicher, dass ihr eure Tagesaufgaben nicht unerfüllt lasst, das könnte das Stressbiest so sehr reizen, dass es vielleicht anfängt um sich zu schlagen ...",
+ "questStressbeastNotes": "Erfülle Tagesaufgaben und To-Dos um dem Weltbossmonster Schaden zuzufügen! Unerfüllte Tagesaufgaben füllen die Stressschlag-Leiste. Ist die Leiste voll, wird der Weltboss einen NPC angreifen. Ein Weltboss wird einzelnen Spielern oder Accounts auf keine Weise Schaden zufügen. Nur die nicht erfüllten Tagesaufgaben von aktiven Spielern, die sich nicht im Gasthaus ausruhen, zählen.
~*~
Das erste was wir vernehmen sind die Schritte, langsam und donnernd. Einer nach dem anderen öffnen die Habiticaner ihre Haustüren und blicken dem entgegen und die Worte bleiben uns im Halse stecken.
Wir alle kennen das Stressbiest, natürlich - winzige, fiese Kreaturen, die uns im ungünstigsten Augenblick angreifen. Aber das? Das hier ragt in den Himmel hinauf, höher als die Gebäude, mit Pranken, die ohne Probleme einen Drachen zerschmettern könnten. Frostsplitter regnen aus dem stinkenden Fell herab und sein Gebrüll entfesselt einen eisigen Sturm, der die Dächer von unseren Häusern hebt. Von so einem gewaltigen Monster sprechen nur unsere ältesten Legenden.
\"Gebt acht, Habiticaner!\", ruft SabreCat, \"Verbarrikadiert euch in euren Häusern - dies ist das schreckliche Stressbiest!\"
\"Dieses Ding muss Jahrhunderte von Stress in sich tragen!\", sagt Kiwibot, während er die Türen der Taverne verrammelt und die Fenster zuschlägt.
\"Die Stoïstillen Steppen\", meint Lemnos mit grimmigem Gesicht, \"Die ganze Zeit dachten wir sie wären ein friedlicher Ort, aber sie müssen ihren Stress irgendwo versteckt haben. Über Generationen hinweg ist das hier aus ihm geworden, und nun hat es sich befreit und griff sie an - und uns!\"
Es gibt nur eine Möglichkeit das Stressbiest zu vertreiben, schrecklich oder nicht, und die ist es, es mit erfüllten Tagesaufgaben und To-Dos anzugreifen! Wir müssen zusammenstehen um gegen diesen furchteinflößenden Feind zu bestehen - geht sicher, dass ihr eure Tagesaufgaben nicht unerfüllt lasst, das könnte das Stressbiest so sehr reizen, dass es vielleicht anfängt um sich zu schlagen ...",
"questStressbeastBoss": "Das schreckliche Stressbiest",
"questStressbeastBossRageTitle": "Stressschlag",
"questStressbeastBossRageDescription": "Wenn sich diese Leiste füllt, entfesselt das schreckliche Stressbiest seinen Stressschlag auf Habitica!",
@@ -205,7 +205,7 @@
"questBunnyDropBunnyEgg": "Kaninchen (Ei)",
"questBunnyUnlockText": "Schaltet den Kauf von Kanincheneiern auf dem Marktplatz frei",
"questSlimeText": "Der Glibberkönig",
- "questSlimeNotes": "Wie immer arbeitest Du gut gelaunt an Deinen Aufgaben, als Du plötzlich bemerkst, wie Du Dich immer langsamer bewegst. \"Als würde man durch einen Sumpf wandern\", grummelt @Leephon, \"Nein, das fühlt sich eher so an als ob man durch Glibber watet!\" @starsystemic meint: \"Der schleimige Glibberkönig hat dieses Zeug über ganz Habitica verteilt. Es verstopft die Arbeitsschritte. Alles wird verlangsamt.\" Du siehst Dich um und bemerkst, dass die Straßen sich langsam mit durchsichtigem Glibber in allen Farben füllen und die Habiticaner daran hindert ihre Aufgaben zu erledigen. Im Gegensatz zu den meisten anderen, die die Flucht ergreifen, nimmst Du einen Mop zur Hand und machst Dich bereit für die Schlacht!",
+ "questSlimeNotes": "Wie immer arbeitest Du gut gelaunt an Deinen Aufgaben, als Du plötzlich bemerkst, wie Du Dich immer langsamer bewegst. \"Als würde man durch einen Sumpf wandern\", grummelt @Leephon, \"Nein, das fühlt sich eher so an als ob man durch Glibber watet!\" @starsystemic meint: \"Der schleimige Glibberkönig hat dieses Zeug über ganz Habitica verteilt. Es verstopft die Arbeitsschritte. Alles wird verlangsamt.\" Du siehst Dich um und bemerkst, dass die Straßen sich langsam mit durchsichtigem Glibber in allen Farben füllen und die Habiticaner werden daran gehindert ihre Aufgaben zu erledigen. Im Gegensatz zu den meisten anderen, die die Flucht ergreifen, nimmst Du einen Mop zur Hand und machst Dich bereit für die Schlacht!",
"questSlimeBoss": "Glibberkönig",
"questSlimeCompletion": "Mit einem letzten Mopstoß stößt Du den Glibberkönig in die Falle, einen riesigen Donut, den @Overomega, @LordDarkly und @Shaner, die gewitzten Anführer der Feingebäck-Gilde, herangebracht haben. Anerkennend klopfen Dir die Habiticaner auf den Rücken, als Du fühlst, wie Dir jemand etwas in die Tasche rutschen lässt. Es ist die Belohnung für Deinen süßen Erfolg: drei Marshmallow-Schleim-Eier.",
"questSlimeDropSlimeEgg": "Marshmallow-Schleim (Ei)",
@@ -432,7 +432,7 @@
"questTriceratopsUnlockText": "Schaltet den Kauf von Triceratopseiern auf dem Marktplatz frei",
"questGroupStoikalmCalamity": "Stoïstilles Unglück",
"questStoikalmCalamity1Text": "Stoïstilles Unglück, Teil 1: Erdgegner",
- "questStoikalmCalamity1Notes": "Ein knappes Schreiben von @Kiwibot trifft ein; nicht nur ist die frostbedeckte Schriftrolle eiskalt, sondern sie lässt Dir auch kalte Schauer den Rücken runterlaufen. \"Bin in Stoïstillen Steppen – Monster platzen aus Boden – brauche Hilfe!\" Du versammelst Deine Gruppe und reitest gen Norden, doch gerade, als Ihr Euch den Berg hinabbewegt, explodiert der Schnee unter Euren Füßen und grausig grinsende Schädel umzingeln Euch!
Plötzlich fliegt ein Speer an Euch vorbei und gräbt sich in einen Schädel, der Dich, sich durch den Schnee buddelnd, unbemerkt angreifen wollte. Eine große Frau in fein geschmiedeter Rüstung galoppiert auf dem Rücken eines Mastodons in die Schlacht und zieht mit wehendem Zopf rabiat den Speer wieder aus dem zerquetschten Biest. Zeit, die Feinde mit der Hilfe von Lady Glaciate, der Anführerin der Mammutreiter, zu bekämpfen!",
+ "questStoikalmCalamity1Notes": "Ein knappes Schreiben von @Kiwibot trifft ein; nicht nur ist die frostbedeckte Schriftrolle eiskalt, sondern sie lässt Dir auch kalte Schauer den Rücken runterlaufen. \"Bin in Stoïstillen Steppen – Monster platzen aus Boden – brauche Hilfe!\" Du versammelst Deine Party und reitest gen Norden, doch gerade, als Ihr Euch den Berg hinabbewegt, explodiert der Schnee unter Euren Füßen und grausig grinsende Schädel umzingeln Euch!
Plötzlich fliegt ein Speer an Euch vorbei und gräbt sich in einen Schädel, der Dich, sich durch den Schnee buddelnd, unbemerkt angreifen wollte. Eine große Frau in fein geschmiedeter Rüstung galoppiert auf dem Rücken eines Mastodons in die Schlacht und zieht mit wehendem Zopf rabiat den Speer wieder aus dem zerquetschten Biest. Zeit, die Feinde mit der Hilfe von Lady Glaciate, der Anführerin der Mammutreiter, zu bekämpfen!",
"questStoikalmCalamity1Completion": "Als Du den letzten Schädeln den Gnadenstoß versetzt, lösen sie sich in einen Hauch Magie auf. \"Der verflixte Schwarm mag zwar verschwunden sein\", sagt Lady Glaciate, \"aber wir haben größere Probleme. Folge mir.\" Sie wirft Dir zum Schutz vor der eisigen Luft einen Mantel zu und Du reitest ihr nach.",
"questStoikalmCalamity1Boss": "Erdschädelschwarm",
"questStoikalmCalamity1RageTitle": "Schwarmnachwuchs",
@@ -520,7 +520,7 @@
"questUnlockLostMasterclasser": "Um diese Quest freizuschalten, musst Du die finalen Quests der Questreihen 'Dilatory in Gefahr', 'Chaos in Mistiflying', 'Stoïstilles Unglück' und 'Schrecken in den Aufgabenwäldern' abgeschlossen haben.",
"questLostMasterclasser1Text": "Das Geheimnis der Klassenmeister, Teil 1: Lies zwischen den Zeilen",
"questLostMasterclasser1Notes": "Du wurdest unerwartet von @beffymaroo und @Lemoness nach Habit Hall gerufen, wo Du erstaunt feststellst, dass im fahlen Licht der Dämmerung alle vier Klassenmeister von Habitica auf Dich warten. Sogar der Fröhliche Reaper sieht düster aus.
“Oho, Du bist hier”, sagt der April-Scherzkeks. “Nun, wir stören ungern Deine Nachtruhe ohne einen wirklich triftigen—”
“Hilf uns, den jüngsten Fall von Besessenheit aufzuklären”, unterbricht Lady Glaciate. “Alle Opfer beschuldigten jemanden namens Tzina.”
Der April-Scherzkeks ist sichtlich beleidigt von der Kurzfassung. “Was ist mit meiner Ansprache?” zischt er ihr zu. “Mit dem Nebel und den Gewitter-Effekten?”
“Wir sind in Eile”, murmelt sie zurück. “Und meine Mammuts sind immer noch klatschnass von Deinen pausenlosen Proben.”
“Ich fürchte, dass die verehrte Meisterin der Krieger Recht behält”, sagt König Manta. “Zeit ist von wesentlicher Bedeutung. Wirst Du uns helfen?”
Als Du nickst, winkt er mit seinen Händen, um ein Portal zu öffnen, das zu einem Unterwasser-Raum führt. “Schwimm mit mir hinab nach Dilatory, und wir durchkämmen meine Bibliothek nach jeglichen Belegen, die uns einen Hinweis geben könnten.” Als er Deine Verwirrung bemerkt, fügt er hinzu: “Keine Sorge, das Papier wurde bereits verzaubert, lange bevor Dilatory versank. Keines der Bücher ist auch nur im geringsten feucht!” Er zwinkert. “Im Gegensatz zu Lady Glaciate’s Mammuts.”
“Das habe ich gehört, Manta.”
Als Du hinter dem Meister der Magier in das Wasser tauchst, verschmelzen Deine Beine auf magische Weise zu einer Schwanzflosse. Und obwohl Dein Körper Auftrieb hat, sinkt Dein Herz beim Anblick tausender Bücherregale. Du fängst besser an zu lesen…",
- "questLostMasterclasser1Completion": "Obwohl Du stundenlang über den Büchern gebrütet hast, hast Du keine einzige nützliche Information gefunden.
“Es kann unmöglich sein, dass sich nicht einmal der kleinste Hinweis auf etwas Relevantes finden lässt”, sagt Oberbibliothekar @Tuqjoi, und der Assistent @stefalupagus nickt frustriert.
König Manta verengt die Augen zu Schlitzen. “Nicht unmöglich…”, sagt er. “
Beabsichtigt.” Für einen Moment glüht das Wasser um seine Hände, und einige der Bücher erschauern. “Etwas verschleiert Informationen”, stellt er fest. “Nicht einfach ein statischer Zauber, sondern etwas mit einem eigenen Willen. Etwas… Lebendiges.” Er schwimmt vom Tisch hoch. “Der Fröhliche Reaper muss davon erfahren. Packen wir etwas Proviant für unterwegs ein.”",
+ "questLostMasterclasser1Completion": "Obwohl Du stundenlang über den Büchern gebrütet hast, konntest Du keine einzige nützliche Information finden.
“Es kann unmöglich sein, dass sich nicht einmal der kleinste Hinweis auf etwas Relevantes finden lässt”, sagt Oberbibliothekar @Tuqjoi, und der Assistent @stefalupagus nickt frustriert.
König Manta verengt die Augen zu Schlitzen. “Nicht unmöglich…”, sagt er. “
Beabsichtigt.” Für einen Moment glüht das Wasser um seine Hände, und einige der Bücher erschauern. “Etwas verschleiert Informationen”, stellt er fest. “Nicht einfach ein statischer Zauber, sondern etwas mit einem eigenen Willen. Etwas… Lebendiges.” Er schwimmt vom Tisch hoch. “Der Fröhliche Reaper muss davon erfahren. Packen wir etwas Proviant für unterwegs ein.”",
"questLostMasterclasser1CollectAncientTomes": "Alte Bücher",
"questLostMasterclasser1CollectForbiddenTomes": "Verbotene Bücher",
"questLostMasterclasser1CollectHiddenTomes": "Versteckte Bücher",
@@ -646,7 +646,7 @@
"questSilverCollectSilverIngots": "Silberbarren",
"questSilverDropSilverPotion": "Silbernes Schlüpfelixier",
"questBronzeText": "Dreister Käfer-Kampf",
- "questBronzeNotes": "In einer erfrischenden Pause zwischen den Aufgaben machst Du mit einigen Freunden einen Spaziergang durch die Waldwege der Taskwoods. Du triffst auf einen großen hohlen Baumstamm und ein Funkeln von innen erregt deine Aufmerksamkeit.
Hoppla, das ist ein Vorrat an magischen Schlüpftränken! Die schimmernde bronzene Flüssigkeit wirbelt sanft in den Flaschen, und @Hachiseiko greift nach einer, um sie zu untersuchen.
“Halt!” zischt eine Stimme von hinten. Es ist ein gigantischer Käfer mit einem Panzer aus glänzender Bronze, der seine Krallenfüße in Kampfhaltung hebt. “Das sind meine Tränke, und wenn Du sie verdienen willst, musst Du Dich in einem Duell der Gentlemen beweisen!”",
+ "questBronzeNotes": "In einer erfrischenden Pause zwischen den Aufgaben machst Du mit einigen Freunden einen Spaziergang durch die Waldwege der Taskwoods. Du triffst auf einen großen hohlen Baumstamm und ein Funkeln von innen erregt deine Aufmerksamkeit.
Hoppla, das ist ein Vorrat an magischen Schlüpfelixieren! Die schimmernde bronzene Flüssigkeit wirbelt sanft in den Flaschen, und @Hachiseiko greift nach einer, um sie zu untersuchen.
“Halt!” zischt eine Stimme von hinten. Es ist ein gigantischer Käfer mit einem Panzer aus glänzender Bronze, der seine Krallenfüße in Kampfhaltung hebt. “Das sind meine Tränke, und wenn Du sie verdienen willst, musst Du Dich in einem Duell der Gentlemen beweisen!”",
"questBronzeCompletion": "“Gut getroffen, Krieger!” sagt der Käfer, als er sich zu Boden setzt. Lächelt er etwa? Es ist schwer zu sagen, bei diesen Unterkiefern. “Du hast Dir diese Tränke wirklich verdient!”
“Oh wow, wir haben noch nie eine solche Belohnung für den Sieg in einer Schlacht erhalten”, sagt @UncommonCriminal und dreht eine schimmernde Flasche in der Hand. “Lasst uns unsere neuen Haustiere schlüpfen lassen!”",
"questBronzeBoss": "Bronzener Brummer",
"questBronzeUnlockText": "Schaltet den Kauf von Bronzenen Schlüpfelixieren auf dem Marktplatz frei",
diff --git a/website/common/locales/de/settings.json b/website/common/locales/de/settings.json
index e27923a894..f9655f31a8 100644
--- a/website/common/locales/de/settings.json
+++ b/website/common/locales/de/settings.json
@@ -215,5 +215,8 @@
"gemCap": "Edelsteinobergrenze",
"nextHourglass": "Nächste Sanduhr",
"adjustment": "Änderung",
- "dayStartAdjustment": "Änderung des Tageswechsel"
+ "dayStartAdjustment": "Änderung des Tageswechsel",
+ "passwordSuccess": "Passwort erfolgreich geändert",
+ "giftSubscriptionRateText": "
$<%= price %> $(USD) für
<%= months %> Monate",
+ "transaction_admin_update_balance": "Admin gegeben"
}
diff --git a/website/common/locales/de/subscriber.json b/website/common/locales/de/subscriber.json
index 1edf6d3f19..b8a5f1986d 100644
--- a/website/common/locales/de/subscriber.json
+++ b/website/common/locales/de/subscriber.json
@@ -208,5 +208,10 @@
"howManyGemsSend": "Wie viele Edelsteine möchtest Du verschicken?",
"sendAGift": "Geschenk verschicken",
"howManyGemsPurchase": "Wie viele Edelsteine möchtest Du kaufen?",
- "mysterySet202206": "Meereselfen-Set"
+ "mysterySet202206": "Meereselfen-Set",
+ "mysterySet202207": "Quasselndes Quallen Set",
+ "wantToSendOwnGems": "Willst Du von deinen eigenen Edelsteinen senden?",
+ "needToPurchaseGems": "Willst Du Edelsteine als Geschenk kaufen?",
+ "mysterySet202208": "Frecher Pferdeschwanz-Set",
+ "mysterySet202209": "Magisches Gelehrten-Set"
}
diff --git a/website/common/locales/de/tasks.json b/website/common/locales/de/tasks.json
index 0073cd6c80..ff599c8de0 100644
--- a/website/common/locales/de/tasks.json
+++ b/website/common/locales/de/tasks.json
@@ -139,5 +139,6 @@
"counter": "Zähler",
"adjustCounter": "Zähler anpassen",
"resetCounter": "Zähler zurücksetzen",
- "editTagsText": "Tags bearbeiten"
+ "editTagsText": "Tags bearbeiten",
+ "taskSummary": "<%= type %> Zusammenfassung"
}
diff --git a/website/common/locales/en/achievements.json b/website/common/locales/en/achievements.json
index a88747b02c..2c063088e0 100644
--- a/website/common/locales/en/achievements.json
+++ b/website/common/locales/en/achievements.json
@@ -133,7 +133,10 @@
"achievementReptacularRumble": "Reptacular Rumble",
"achievementReptacularRumbleText": "Has hatched all the standard colors of reptile pets: Alligator, Pterodactyl, Snake, Triceratops, Turtle, Tyrannosaurus Rex, and Velociraptor!",
"achievementReptacularRumbleModalText": "You collected all the reptile pets!",
- "achievementGroupsBeta2022":"Interactive Beta Tester",
- "achievementGroupsBeta2022Text":"You and your group provided invaluable feedback to help Habitica test.",
- "achievementGroupsBeta2022ModalText":"You and your groups helped Habitica by testing and providing feedback!"
+ "achievementGroupsBeta2022": "Interactive Beta Tester",
+ "achievementGroupsBeta2022Text": "You and your group provided invaluable feedback to help Habitica test.",
+ "achievementGroupsBeta2022ModalText":"You and your groups helped Habitica by testing and providing feedback!",
+ "achievementWoodlandWizard": "Woodland Wizard",
+ "achievementWoodlandWizardText": "Has hatched all standard colors of forest creatures: Badger, Bear, Deer, Fox, Frog, Hedgehog, Owl, Snail, Squirrel, and Treeling!",
+ "achievementWoodlandWizardModalText": "You collected all the forest pets!"
}
diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json
index 54814a37fc..bf0dd191e6 100644
--- a/website/common/locales/en/backgrounds.json
+++ b/website/common/locales/en/backgrounds.json
@@ -803,6 +803,22 @@
"backgroundUnderwaterStatuesText": "Underwater Statue Garden",
"backgroundUnderwaterStatuesNotes": "Try not to blink in an Underwater Statue Garden.",
+ "backgrounds082022": "SET 99: Released August 2022",
+ "backgroundRainbowEucalyptusText": "Rainbow Eucalyptus",
+ "backgroundRainbowEucalyptusNotes": "Admire a Rainbow Eucalyptus grove.",
+ "backgroundMessyRoomText": "Messy Room",
+ "backgroundMessyRoomNotes": "Tidy up a Messy Room.",
+ "backgroundByACampfireText": "By A Campfire",
+ "backgroundByACampfireNotes": "Bask in the glow By a Campfire.",
+
+ "backgrounds092022": "SET 100: Released September 2022",
+ "backgroundTheatreStageText": "Theatre Stage",
+ "backgroundTheatreStageNotes": "Perform on a Theatre Stage.",
+ "backgroundAutumnPicnicText": "Autumn Picnic",
+ "backgroundAutumnPicnicNotes": "Enjoy an Autumn Picnic.",
+ "backgroundOldPhotoText": "Old Photo",
+ "backgroundOldPhotoNotes": "Strike a pose in an Old Photo.",
+
"timeTravelBackgrounds": "Steampunk Backgrounds",
"backgroundAirshipText": "Airship",
"backgroundAirshipNotes": "Become a sky sailor on board your very own Airship.",
diff --git a/website/common/locales/en/content.json b/website/common/locales/en/content.json
index 50c1e0dd8a..2b0fe859ce 100644
--- a/website/common/locales/en/content.json
+++ b/website/common/locales/en/content.json
@@ -309,6 +309,7 @@
"hatchingPotionSolarSystem": "Solar System",
"hatchingPotionOnyx": "Onyx",
"hatchingPotionVirtualPet": "Virtual Pet",
+ "hatchingPotionPorcelain": "Porcelain",
"hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.",
"premiumPotionAddlNotes": "Not usable on quest pet eggs. Available for purchase until <%= date(locale) %>.",
diff --git a/website/common/locales/en/faq.json b/website/common/locales/en/faq.json
index 46df7df048..0008f060b6 100644
--- a/website/common/locales/en/faq.json
+++ b/website/common/locales/en/faq.json
@@ -68,5 +68,8 @@
"iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), come ask in the Tavern chat under Menu > Tavern! We're happy to help.",
"androidFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), come ask in the Tavern chat under Menu > Tavern! We're happy to help.",
- "webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), come ask in the [Habitica Help guild](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help."
+ "webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), come ask in the [Habitica Help guild](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help.",
+
+ "faqQuestion13": "What is a Group Plan?",
+ "webFaqAnswer13": "## How do Group Plans work?\n\nA [Group Plan](/group-plans) gives your Party or Guild access to a shared task board that’s similar to your personal task board! It’s a shared Habitica experience where tasks can be created and checked off by anyone in the group.\n\nThere are also features available like member roles, status view, and task assigning that give you a more controlled experience. [Visit our wiki](https://habitica.fandom.com/wiki/Group_Plans) to learn more about our Group Plans’ features!\n\n## Who benefits from a Group Plan?\n\nGroup Plans work best when you have a small team of people who want to collaborate together. We recommend 2-5 members.\n\nGroup Plans are great for families, whether it’s a parent and child or you and a partner. Shared goals, chores, or responsibilities are easy to keep track of on one board.\n\nGroup Plans can also be useful for teams of colleagues that have shared goals, or managers that want to introduce their employees to gamification.\n\n## Quick tips for using Groups\n\nHere are some quick tips to get you started with your new Group. We’ll provide more details in the following sections:\n\n* Make a member a manager to give them the ability to create and edit tasks\n* Leave tasks unassigned if anyone can complete it and it only needs done once\n* Assign a task to one person to make sure no one else can complete their task\n* Assign a task to multiple people if they all need to complete it\n* Toggle the ability to display shared tasks on your personal board to not miss anything\n* You get rewarded for the tasks you complete, even multi-assigned\n* Task completion rewards aren’t shared or split between Team members\n* Use task color on the team board to judge the average completion rate of tasks\n* Regularly review the tasks on your Team Board to make sure they are still relevant\n* Missing a Daily won’t damage you or your team, but the task will degrade in color\n\n## How can others in the group create tasks?\n\nOnly the group leader and managers can create tasks. If you’d like a group member to be able to create tasks, then you should promote them to be a manager by going to the Group Information tab, viewing the member list, and clicking the dot icon by their name.\n\n## How does assigning a task work?\n\nGroup Plans give you the unique ability to assign tasks to other group members. Assigning a task is great for delegating. If you assign a task to someone, then other members are prevented from completing it.\n\nYou can also assign a task to multiple people if it needs to be completed by more than one member. For example, if everyone has to brush their teeth, create a task and assign it to each group member. They will all be able to check it off and get their individual rewards for doing so. The main task will show as complete once everyone checks it off.\n\n## How do unassigned tasks work?\n\nUnassigned tasks can be completed by anyone in the group, so leave a task unassigned to allow any member to complete it. For example, taking out the trash. Whoever takes out the trash can check off the unassigned task and it will show as completed for everyone.\n\n## How does the synchronized day reset work?\n\nShared tasks will reset at the same time for everyone to keep the shared task board in sync. This time is visible on the shared task board and is determined by the group leader’s day start time. Because shared tasks reset automatically, you will not get a chance to complete yesterday’s uncompleted shared Dailies when you check in the next morning.\n\nShared Dailies will not do damage if they are missed, however they will degrade in color to help visualize progress. We don’t want the shared experience to be a negative one!\n\n## How do I use my Group on the mobile apps?\n\nWhile the mobile apps don’t fully support all Group Plans functionality yet, you can still complete shared tasks from the iOS and Android app. On the browser version of Habitica, go to your group’s shared task board and turn on the copy tasks toggle. Now all open and assigned shared tasks will display on your personal task board across all platforms.\n\n## What’s the difference between a Group’s shared tasks and Challenges?\n\nGroup Plan shared task boards are more dynamic than Challenges, in that they can constantly be updated and interacted with. Challenges are great if you have one set of tasks to send out to many people.\n\nGroup Plans are also a paid feature, while Challenges are available free to everyone.\n\nYou cannot assign specific tasks in Challenges, and Challenges do not have a shared day reset. In general, Challenges offer less control and direct interaction."
}
diff --git a/website/common/locales/en/gear.json b/website/common/locales/en/gear.json
index d5d0c2f6b2..3c81c01acf 100644
--- a/website/common/locales/en/gear.json
+++ b/website/common/locales/en/gear.json
@@ -471,6 +471,8 @@
"weaponMystery202111Notes": "Shape the flow of time with this mysterious and powerful staff. Confers no benefit. November 2021 Subscriber Item.",
"weaponMystery202201Text": "Midnight Confetti Cannon",
"weaponMystery202201Notes": "Unleash a cloud of gold and silver glitter when the clock strikes midnight. Happy New Year! Now who's cleaning this up? Confers no benefit. January 2022 Subscriber Item.",
+ "weaponMystery202209Text": "Magic Manual",
+ "weaponMystery202209Notes": "This book will guide you through your journey into magic-making. Confers no benefit. September 2022 Subscriber Item.",
"weaponMystery301404Text": "Steampunk Cane",
"weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.",
@@ -640,16 +642,20 @@
"weaponArmoireGardenersWateringCanNotes": "You can’t get far without water! Have an infinite supply on hand with this magic, refilling watering can. Increases Intelligence by <%= int %>. Enchanted Armoire: Gardener Set (Item 4 of 4).",
"weaponArmoireHuntingHornText": "Hunting Horn",
"weaponArmoireHuntingHornNotes": "Twooooo! Twoo! Twoo! Gather your party for an adventure or quest by playing this horn. Increases Strength by <%= str %> and Intelligence by <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 1 of 3)",
- "weaponArmoireBlueKiteText":"Blue Kite",
- "weaponArmoireBlueKiteNotes":"Sailing high up in the blue, what tricks can you make your kite do? Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 1 of 5)",
- "weaponArmoireGreenKiteText":"Green Kite",
- "weaponArmoireGreenKiteNotes":"A more stunning kite you’ve never seen, with its shades of yellow and green. Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 2 of 5)",
- "weaponArmoireOrangeKiteText":"Orange Kite",
- "weaponArmoireOrangeKiteNotes":"With colors like sunrise and sunset, let’s see how high your kite can get! Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 3 of 5)",
- "weaponArmoirePinkKiteText":"Pink Kite",
- "weaponArmoirePinkKiteNotes":"Diving, twirling, soaring high, your kite stands out against the sky. Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 4 of 5)",
- "weaponArmoireYellowKiteText":"Yellow Kite",
- "weaponArmoireYellowKiteNotes":"Swooping and swerving to and fro, watch your cheerful kite go. Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 5 of 5)",
+ "weaponArmoireBlueKiteText": "Blue Kite",
+ "weaponArmoireBlueKiteNotes": "Sailing high up in the blue, what tricks can you make your kite do? Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 1 of 5)",
+ "weaponArmoireGreenKiteText": "Green Kite",
+ "weaponArmoireGreenKiteNotes": "A more stunning kite you’ve never seen, with its shades of yellow and green. Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 2 of 5)",
+ "weaponArmoireOrangeKiteText": "Orange Kite",
+ "weaponArmoireOrangeKiteNotes": "With colors like sunrise and sunset, let’s see how high your kite can get! Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 3 of 5)",
+ "weaponArmoirePinkKiteText": "Pink Kite",
+ "weaponArmoirePinkKiteNotes": "Diving, twirling, soaring high, your kite stands out against the sky. Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 4 of 5)",
+ "weaponArmoireYellowKiteText": "Yellow Kite",
+ "weaponArmoireYellowKiteNotes": "Swooping and swerving to and fro, watch your cheerful kite go. Increases all stats by <%= attrs %> each. Enchanted Armoire: Kite Set (Item 5 of 5)",
+ "weaponArmoirePushBroomText": "Push Broom",
+ "weaponArmoirePushBroomNotes": "Take this tidying tool on your adventures and always be able to sweep a sooty stoop or clear cobwebs from corners. Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Cleaning Supplies Set (Item 1 of 3)",
+ "weaponArmoireFeatherDusterText": "Feather Duster",
+ "weaponArmoireFeatherDusterNotes": "Let these fancy feathers fly over all your old objects to make them shine like new. Just beware of the disturbed dust so you don’t sneeze! Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Cleaning Supplies Set (Item 2 of 3)",
"armor": "armor",
"armorCapitalized": "Armor",
@@ -1924,6 +1930,9 @@
"headMystery202206Notes": "The blue pearl in this circlet grants you waterbending powers. Use them wisely! Confers no benefit. June 2022 Subscriber Item.",
"headMystery202207Text": "Jammin' Jelly Helm",
"headMystery202207Notes": "Need a hand with your tasks? Will several dozen bioluminescent tentacles do? Confers no benefit. July 2022 Subscriber Item.",
+ "headMystery202208Text": "Perky Ponytail",
+ "headMystery202208Notes": "Enjoy showing off this voluminous hair - it can double as a whip in a pinch! Confers no benefit. August 2022 Subscriber Item.",
+
"headMystery301404Text": "Fancy Top Hat",
"headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
"headMystery301405Text": "Basic Top Hat",
@@ -2350,6 +2359,8 @@
"shieldMystery201902Notes": "This glittery paper forms magic hearts that slowly drift and dance in the air. Confers no benefit. February 2019 Subscriber Item.",
"shieldMystery202011Text": "Foliated Staff",
"shieldMystery202011Notes": "Harness the power of the autumn wind with this staff. Use for arcane magic or to make awesome leaf piles, the choice is yours! Confers no benefit. November 2020 Subscriber Item.",
+ "shieldMystery202209Text": "Mound o' Magic Books",
+ "shieldMystery202209Notes": "Building your sorcery knowledge takes a lot of reading, but you're sure to enjoy your education. Confers no benefit. September 2022 Subscriber Item.",
"shieldMystery301405Text": "Clock Shield",
"shieldMystery301405Notes": "Time is on your side with this towering clock shield! Confers no benefit. June 3015 Subscriber Item.",
"shieldMystery301704Text": "Fluttery Fan",
@@ -2487,6 +2498,8 @@
"shieldArmoireSnareDrumNotes": "Rat-a-tat-tat! Gather your party for a parade or march into battle by playing this drum. Increases Constitution by <%= con %> and Intelligence by <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 3 of 3)",
"shieldArmoireTreasureMapText": "Treasure Map",
"shieldArmoireTreasureMapNotes": "X marks the spot! You never know what you’ll find when you follow this handy map to fabled treasures: gold, jewels, relics, or perhaps a petrified orange? Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Fancy Pirate Set (Item 3 of 3).",
+ "shieldArmoireDustpanText": "Dustpan",
+ "shieldArmoireDustpanNotes": "Have this handy handheld dustpan ready every time you clean. A vanishing spell cast on it means you never have to search for a trash can to empty it into. Increases Intelligence and Constitution by <%= attrs %> each. Enchanted Armoire: Cleaning Supplies Set (Item 3 of 3).",
"back": "Back Accessory",
"backBase0Text": "No Back Accessory",
@@ -2839,6 +2852,8 @@
"eyewearMystery202204ANotes": "What's your mood today? Express yourself with these fun screens. Confers no benefit. April 2022 Subscriber Item.",
"eyewearMystery202204BText": "Virtual Face",
"eyewearMystery202204BNotes": "What's your mood today? Express yourself with these fun screens. Confers no benefit. April 2022 Subscriber Item.",
+ "eyewearMystery202208Text": "Sparkly Eyes",
+ "eyewearMystery202208Notes": "Lull your enemies into a false sense of security with these terrifyingly cute peepers. Confers no benefit. August 2022 Subscriber Item.",
"eyewearMystery301404Text": "Eyewear Goggles",
"eyewearMystery301404Notes": "No eyewear could be fancier than a pair of goggles - except, perhaps, for a monocle. Confers no benefit. April 3015 Subscriber Item.",
"eyewearMystery301405Text": "Monocle",
@@ -2852,6 +2867,10 @@
"eyewearArmoireGoofyGlassesNotes": "Perfect for going incognito or just making your partymates giggle. Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
"eyewearArmoireClownsNoseText": "Clown's Nose",
"eyewearArmoireClownsNoseNotes": "This accessory will make sure everyone 'nose' you're a clown! Increases Intelligence by <%= int %>. Enchanted Armoire: Clown Set (Item 2 of 5).",
+ "eyewearArmoireComedyMaskText": "Comedy Mask",
+ "eyewearArmoireComedyMaskNotes": "Cheerily! Here is a quaint mask for thine happy heart, playing, heralding joy, and expressing merriment and mirth upon the stage. Increases Constitution by <%= con %>. Enchanted Armoire: Theatre Masks Set (Item 1 of 2).",
+ "eyewearArmoireTragedyMaskText": "Tragedy Mask",
+ "eyewearArmoireTragedyMaskNotes": "Alas! Here sits a heavy mask for thine poor player, strutting, fretting, and expressing woe and sorrow upon the stage. Increases Intelligence by <%= int %>. Enchanted Armoire: Theatre Masks Set (Item 2 of 2).",
"twoHandedItem": "Two-handed item."
}
diff --git a/website/common/locales/en/groups.json b/website/common/locales/en/groups.json
index e6c0f943cc..f777bd766d 100644
--- a/website/common/locales/en/groups.json
+++ b/website/common/locales/en/groups.json
@@ -175,14 +175,15 @@
"onlyCreatorOrAdminCanDeleteChat": "Not authorized to delete this message!",
"onlyGroupLeaderCanEditTasks": "Not authorized to manage tasks!",
"onlyGroupTasksCanBeAssigned": "Only group tasks can be assigned",
- "assignedTo": "Assign To",
- "assignedToUser": "Assigned to
<%- userName %>",
- "assignedToMembers": "Assigned to
<%= userCount %> members",
- "assignedToYouAndMembers": "Assigned to you and
<%= userCount %> members",
- "youAreAssigned": "Assigned to you",
+ "assignTo": "Assign To",
+ "assignedTo": "Assigned to",
+ "assignedToUser": "Assigned:
@<%- userName %>",
+ "assignedToMembers": "<%= userCount %> users",
+ "assignedToYouAndMembers": "
You, <%= userCount %> users",
+ "youAreAssigned": "Assigned:
you",
"taskIsUnassigned": "This task is unassigned",
"unassigned": "Unassigned",
- "chooseTeamMember": "Choose a team member",
+ "chooseTeamMember": "Search for a team member",
"confirmUnClaim": "Are you sure you want to unclaim this task?",
"confirmNeedsWork": "Are you sure you want to mark this task as needing work?",
"userRequestsApproval": "
<%- userName %> requests approval",
@@ -200,7 +201,7 @@
"yourTaskHasBeenApproved": "Your task
<%- taskText %> has been approved.",
"thisTaskApproved": "This task was approved",
"taskClaimed": "<%- userName %> has claimed the task
<%- taskText %>.",
- "taskNeedsWork": "
<%- managerName %> marked
<%- taskText %> as needing additional work.",
+ "taskNeedsWork": "
<%- taskText %> was unchecked by
@<%- managerName %>. Your rewards for completing the task were reverted.",
"userHasRequestedTaskApproval": "
<%- user %> requests approval for
<%- taskName %>",
"approve": "Approve",
"approveTask": "Approve Task",
@@ -363,7 +364,28 @@
"groupActivityNotificationTitle": "<%= user %> posted in <%= group %>",
"managerNotes": "Manager's Notes",
"assignedDateOnly": "Assigned on
<%= date %>",
- "assignedDateAndUser": "Assigned by
@<%- username %> on
<%= date %>",
+ "assignedDateAndUser": "Assigned by @<%- username %> on <%= date %>",
"claimRewards": "Claim Rewards",
- "chatTemporarilyUnavailable": "Chat is temporarily unavailable. Please try again later."
+ "dayStart": "
Day start: <%= startTime %>",
+ "viewStatus": "Status",
+ "lastCompleted": "Last completed",
+ "youEmphasized": "
You",
+ "chatTemporarilyUnavailable": "Chat is temporarily unavailable. Please try again later.",
+ "newGroupsWelcome": "Welcome to the New Shared Task Board!",
+ "newGroupsWhatsNew": "Check Out What's New:",
+ "newGroupsBullet01": "Interact with tasks directly from the shared task board",
+ "newGroupsBullet02": "Anyone can complete an unassigned task",
+ "newGroupsBullet03": "Shared tasks reset at the same time for everyone for easier collaboration",
+ "newGroupsBullet04": "Shared Dailies will not cause damage when missed or appear in the Record Yesterday’s Activity prompt",
+ "newGroupsBullet05": "Shared tasks will degrade in color if left incomplete to help track progress",
+ "newGroupsBullet06": "The task status view allows you to quickly see which assignee has completed a task",
+ "newGroupsBullet07": "Toggle the ability to display the shared tasks on your personal task board",
+ "newGroupsBullet08": "The group leader and managers can quickly add tasks from the top of the task columns",
+ "newGroupsBullet09": "A shared task can be unchecked to show it still needs work",
+ "newGroupsBullet10": "Assignment status determines completion condition:",
+ "newGroupsBullet10a": "
Leave a task unassigned if any member can complete it",
+ "newGroupsBullet10b": "
Assign a task to one member so only they can complete it",
+ "newGroupsBullet10c": "
Assign a task to multiple members if they all need to complete it",
+ "newGroupsVisitFAQ": "Visit the
FAQ from the Help dropdown for more guidance.",
+ "newGroupsEnjoy": "We hope you enjoy the new Group Plans experience!"
}
diff --git a/website/common/locales/en/npc.json b/website/common/locales/en/npc.json
index 5f0ac20e7d..7c173cae02 100644
--- a/website/common/locales/en/npc.json
+++ b/website/common/locales/en/npc.json
@@ -17,10 +17,9 @@
"mattBochText1": "Welcome to the Stable! I’m Matt, the beastmaster. Every time you complete a task, you'll have a random chance at receiving an Egg or a Hatching Potion to hatch Pets. When you hatch a Pet, it will appear here! Click a Pet's image to add it to your Avatar. Feed them with the Pet Food you find, and they'll grow into hardy Mounts.",
"welcomeToTavern": "Welcome to The Tavern!",
"sleepDescription": "Need a break? Check into Daniel's Inn to pause some of Habitica's more difficult game mechanics:",
- "sleepBullet1": "Missed Dailies won't damage you",
- "sleepBullet2": "Tasks won't lose streaks",
- "sleepBullet3": "Bosses won't do damage for your own missed Dailies",
- "sleepBullet4": "Your boss damage or collection Quest items will stay pending until check-out",
+ "sleepBullet1": "Your missed Dailies won't damage you (bosses will still do damage caused by other Party member's missed Dailies)",
+ "sleepBullet2": "Your Task streaks and Habit counters will not reset",
+ "sleepBullet3": "Your damage to the Quest boss or found collection items will remain pending until you check out of the Inn",
"pauseDailies": "Pause Damage",
"unpauseDailies": "Unpause Damage",
"staffAndModerators": "Staff and Moderators",
diff --git a/website/common/locales/en/questsContent.json b/website/common/locales/en/questsContent.json
index 92437a7f12..99143ddf3c 100644
--- a/website/common/locales/en/questsContent.json
+++ b/website/common/locales/en/questsContent.json
@@ -596,7 +596,7 @@
"questHippoUnlockText": "Unlocks Hippo Eggs for purchase in the Market",
"farmFriendsText": "Farm Friends Quest Bundle",
- "farmFriendsNotes": "Contains 'The Mootant Cow', 'Ride the Night-Mare', and 'The Thunder Ram'. Available until August 31.",
+ "farmFriendsNotes": "Contains 'The Mootant Cow', 'Ride the Night-Mare', and 'The Thunder Ram'. Available until September 30.",
"witchyFamiliarsText": "Witchy Familiars Quest Bundle",
"witchyFamiliarsNotes": "Contains 'The Rat King', 'The Icy Arachnid', and 'Swamp of the Clutter Frog'. Available until October 31.",
diff --git a/website/common/locales/en/subscriber.json b/website/common/locales/en/subscriber.json
index cd2707c74a..e7cc53175a 100644
--- a/website/common/locales/en/subscriber.json
+++ b/website/common/locales/en/subscriber.json
@@ -140,6 +140,8 @@
"mysterySet202205": "Dusk-Winged Dragon Set",
"mysterySet202206": "Sea Sprite Set",
"mysterySet202207": "Jammin' Jelly Set",
+ "mysterySet202208": "Perky Ponytail Set",
+ "mysterySet202209": "Magical Scholar Set",
"mysterySet301404": "Steampunk Standard Set",
"mysterySet301405": "Steampunk Accessories Set",
"mysterySet301703": "Peacock Steampunk Set",
diff --git a/website/common/locales/en/tasks.json b/website/common/locales/en/tasks.json
index 0d8b395665..77551f11a6 100644
--- a/website/common/locales/en/tasks.json
+++ b/website/common/locales/en/tasks.json
@@ -132,5 +132,6 @@
"errorTemporaryItem": "This item is temporary and cannot be pinned.",
"addTags": "Add tags...",
"enterTag": "Enter a tag",
- "pressEnterToAddTag": "Press Enter to add tag: '<%= tagName %>'"
+ "pressEnterToAddTag": "Press Enter to add tag: '<%= tagName %>'",
+ "taskSummary": "<%= type %> Summary"
}
diff --git a/website/common/locales/en@lolcat/achievements.json b/website/common/locales/en@lolcat/achievements.json
index 40b5de12cb..4113600420 100755
--- a/website/common/locales/en@lolcat/achievements.json
+++ b/website/common/locales/en@lolcat/achievements.json
@@ -12,7 +12,7 @@
"achievementJustAddWater": "Jus Add Watr",
"achievementMindOverMatter": "Mind Ovar Mattr",
"achievementKickstarter2019Text": "Backd teh 2019 Pin Kickstarter Projekd",
- "achievementKickstarter2019": "Pin Kickstarter Backer",
+ "achievementKickstarter2019": "Pin Kickstarter Backur",
"achievementAridAuthorityModalText": "U taemd all teh deserd mountz!",
"achievementAridAuthorityText": "Haz taemd all deserd mountz.",
"achievementDustDevilModalText": "U collected all teh deserd petz!",
diff --git a/website/common/locales/en@pirate/achievements.json b/website/common/locales/en@pirate/achievements.json
index 25d6d01599..8853555d11 100644
--- a/website/common/locales/en@pirate/achievements.json
+++ b/website/common/locales/en@pirate/achievements.json
@@ -114,5 +114,13 @@
"achievementVioletsAreBlue": "Violets be Blue",
"achievementWildBlueYonderModalText": "Ye tamed all th' Cotton Candy Blue Steeds!",
"achievementWildBlueYonderText": "Has tamed all Cotton Candy Blue Steeds.",
- "achievementWildBlueYonder": "Wild Blue Yond'r"
+ "achievementWildBlueYonder": "Wild Blue Yond'r",
+ "achievementReptacularRumble": "Strong Reptile",
+ "achievementBirdsOfAFeather": "Soar to great heights",
+ "achievementDomesticatedText": "We has hatched all standard colors of domesticated pets: Ferret, Guinea Pig, Rooster, Flying Pig, Rat, Bunny, Horse, and Cow!",
+ "achievementZodiacZookeeperText": "Has hatched all standard colors of 12 zodiac pets: Rat, Cow, Bunny, Snake, Horse, Sheep, Monkey, Rooster, Wolf, Tiger, Flying Pig, and Dragon!",
+ "achievementZodiacZookeeper": "12 Zodiac Zookeeper",
+ "achievementZodiacZookeeperModalText": "You collected all the 12 zodiac pets!",
+ "achievementShadyCustomer": "shadow man",
+ "achievementShadeOfItAll": "The Beginning of the Shade"
}
diff --git a/website/common/locales/es/achievements.json b/website/common/locales/es/achievements.json
index 16336cb880..00075ee6f3 100644
--- a/website/common/locales/es/achievements.json
+++ b/website/common/locales/es/achievements.json
@@ -135,5 +135,8 @@
"achievementGroupsBeta2022": "Probador Beta interactivo",
"achievementGroupsBeta2022Text": "Tu y tu grupo brindaron comentarios increibles para ayudar a Habitica a realizar la prueba.",
"achievementGroupsBeta2022ModalText": "¡Usted y sus grupos ayudaron a Habitica probando y proporcionando comentarios!",
- "achievementReptacularRumble": "Rumble reptacular"
+ "achievementReptacularRumble": "Rumble reptacular",
+ "achievementWoodlandWizard": "Mago del bosque",
+ "achievementWoodlandWizardModalText": "¡Has recogido todas las mascotas del bosque!",
+ "achievementWoodlandWizardText": "Ha incubado todos los colores estándar de las criaturas del bosque: Tejón, Oso, Ciervo, Zorro, Rana, Erizo, Búho, Caracol, Ardilla y Treeling!"
}
diff --git a/website/common/locales/es/backgrounds.json b/website/common/locales/es/backgrounds.json
index b5762ebe0b..5d8318984b 100644
--- a/website/common/locales/es/backgrounds.json
+++ b/website/common/locales/es/backgrounds.json
@@ -689,5 +689,33 @@
"backgroundFloweringPrairieText": "Pradera floreciente",
"backgroundSpringtimeLakeText": "Lago de Primavera",
"backgroundSpringtimeLakeNotes": "Disfruta las vistas a orillas de un Lago de Primavera.",
- "hideLockedBackgrounds": "Esconde fondos cerrados"
+ "hideLockedBackgrounds": "Esconde fondos cerrados",
+ "backgroundBioluminescentWavesText": "Olas Bioluminiscentes",
+ "backgroundBioluminescentWavesNotes": "Admira el resplandor de Olas Bioluminiscentes.",
+ "backgroundUnderwaterCaveNotes": "Explora una Cueva Subacuática.",
+ "backgroundUnderwaterCaveText": "Cueva Subacuática",
+ "backgroundMessyRoomText": "Habitación Desordenada",
+ "backgroundByACampfireText": "Junto a una Hoguera",
+ "backgroundOnACastleWallText": "En un Muro de Castillo",
+ "backgroundEnchantedMusicRoomText": "Sala de Música Encantada",
+ "backgroundEnchantedMusicRoomNotes": "Tocar en una Sala de Música Encantada.",
+ "backgrounds052022": "SET 96 : Publicado en Mayo de 2022",
+ "backgroundUnderwaterStatuesText": "Jardín de Estatuas Subacuático",
+ "backgroundOnACastleWallNotes": "Mira hacia fuera desde un Muro de Castillo.",
+ "backgroundUnderwaterStatuesNotes": "Intenta no parpadear en un Jardín de Estatuas Subacuático.",
+ "backgroundCastleGateText": "Puerta de Castillo",
+ "backgrounds082022": "99.ª series: publicada en agosto de 2022",
+ "backgroundCastleGateNotes": "Hacer guardia en la Puerta del Castillo.",
+ "backgroundRainbowEucalyptusText": "Eucalipto Arco Iris",
+ "backgrounds072022": "98ª. serie: publicada en julio de 2022",
+ "backgroundRainbowEucalyptusNotes": "Admira una arboleda de Eucaliptos Arco Iris.",
+ "backgroundMessyRoomNotes": "Ordena una Habitación Desordenada.",
+ "backgroundByACampfireNotes": "Disfruta del resplandor Junto a una Hoguera.",
+ "backgrounds062022": "97.ª serie: publicada en junio de 2022",
+ "backgroundBeachWithDunesText": "Playa con Dunas",
+ "backgroundBeachWithDunesNotes": "Explora una playa con dunas.",
+ "backgroundMountainWaterfallText": "Cascada de Montaña",
+ "backgroundMountainWaterfallNotes": "Admira una cascada de montaña.",
+ "backgroundSailboatAtSunsetText": "Velero en la Puesta de Sol",
+ "backgroundSailboatAtSunsetNotes": "Disfruta de la belleza de un velero en la puesta de sol."
}
diff --git a/website/common/locales/es/content.json b/website/common/locales/es/content.json
index 47bbf8d687..1c0ffa933a 100644
--- a/website/common/locales/es/content.json
+++ b/website/common/locales/es/content.json
@@ -371,5 +371,6 @@
"hatchingPotionMoonglow": "Brillolunar",
"hatchingPotionSolarSystem": "Sistema solar",
"hatchingPotionOnyx": "Ónice",
- "hatchingPotionVirtualPet": "Mascota virtual"
+ "hatchingPotionVirtualPet": "Mascota virtual",
+ "hatchingPotionPorcelain": "Porcelana"
}
diff --git a/website/common/locales/es/faq.json b/website/common/locales/es/faq.json
index 5cda8bb898..9def9d52e8 100644
--- a/website/common/locales/es/faq.json
+++ b/website/common/locales/es/faq.json
@@ -54,5 +54,7 @@
"webFaqAnswer12": "Los Jefes Mundiales son monstruos especiales que aparecen en la Taberna. Todos los usuarios activos pasan automáticamente a luchar contra el Monstruo, y sus tareas y Habilidades harán daño al Monstruo, como es habitual. Puedes estar al mismo tiempo en una Misión normal. Tus tareas y Habilidades contarán tanto para el Monstruo Mundial como para la Misión de Jefe/Recolección en tu equipo. Un Monstruo Mundial nunca te hará daño en tu cuenta. En vez de eso, tiene una Barra de Ira que se llena cuando los usuarios se saltan tareas Diarias. Si esta barra se llena, atacará a uno de los Personajes No Jugadores de la web, y su imagen cambiará. Puedes leer más sobre [anteriores Jefes de Mundo](https://habitica.fandom.com/wiki/World_Bosses) en la wiki.",
"iosFaqStillNeedHelp": "Si tienes alguna pregunta que no aparezca en la lista o en las [preguntas frecuentes de la Wiki](https://habitica.fandom.com/wiki/FAQ), ¡ven a preguntar al chat de la Taberna, en Menu > Social > Taberna! Estaremos encantados de ayudar.",
"androidFaqStillNeedHelp": "Si tienes alguna pregunta que no esté en la lista o en las [preguntas frecuentes de la Wiki](https://habitica.fandom.com/wiki/FAQ), ¡ven a preguntar al chat de la Taberna, bajo el Menú > Taberna! Estaremos encantados de ayudar.",
- "webFaqStillNeedHelp": "Si tienes una pregunta que no está en esta lista o en la [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), ¡ven a preguntar al `[Gremio de Ayuda de Habitica](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Estaremos encantados de ayudar."
+ "webFaqStillNeedHelp": "Si tienes una pregunta que no está en esta lista o en la [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), ¡ven a preguntar al `[Gremio de Ayuda de Habitica](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Estaremos encantados de ayudar.",
+ "faqQuestion13": "¿Qué es un plan para grupos?",
+ "webFaqAnswer13": "## ¿Cómo funcionan los planes de grupo?\n\n¡Un [plan de grupo](/group-plans) le da a tu equipo o gremio acceso a un tablero de tareas compartido que es parecido a tu tablero de tareas personal! Es una experiencia colaborativa de Habitica en la que las tareas pueden ser creadas y completadas por cualquiera del grupo.\n\nTambién hay características disponibles como roles de los miembros, ver el estátus y asignar tareas que te dan una experiencia más controlada. ¡[Visita nuestra wiki](https://habitica.fandom.com/wiki/Group_Plans) para aprender más sobre las características de nuestros planes de grupo!\n\n## ¿Quién se beneficia de un plan de grupo?\n\nLos planes de grupo funcionan mejor con un equipo pequeño de personas que quieren colaborar juntas. Recomendamos de 2-5 miembros.\n\nLos planes de grupo son geniales para familias, ya sea padre e hijo o tý y una pareja Es fácil manterner al tanto objetivos compartidos, tareas o responsabilidades con un tablero.\n\nLos planes de grupo pueden ser útiles para equipos o compañeros que tienen objetivos compartidos, o directivos que quieren introducir la gamificación a sus empleados.\n\n## Consejos rápidos para usar los grupos\n\nAquí hay algunos consejos rápidos para que empieces a trabajar con tu nuevo grupo. Proporcionaremos más detalles en las siguientes secciónes:\n\n* Haz un miembro administrador de grupo para darle la habilidad de crear y editar tareas\n* Deja las tareas sin asignar si cualquiera las puede completar y solo se necesitan hacer una vez\n* Asigna una tarea a una persona para asegurarte que ningún otro completa su tarea\n* Asigna una tarea a varias personas si todas necesitan completarla\n* Activa la habilidad de mostrar tareas compartidas en tu tablero personal y no perderte nada\n* Consigue recompensas por las tareas que completes, incluso aunque estén asignadas a varias personas\n* Las recompensas de completar las tareas no están compartidas ni divididas entre miembros del grupo\n* Usa el color de la tarea en el tablero del equipo para juzgar la tasa media de finalización de las tareas\n* Revisa regularmente las tareas de tu tablero de equipo para asegurar que siguen siendo relevantes\n* Perder una Tarea Diaria no te dañará a ti o a tu grupo, pero el color de la tarea se degradará\n\n## ¿Cómo pueden otros miembros del grupo crear tareas?\n\nSolo el líder del grupo y los administradores pueden crear tareas. Si te gustaría que un miembro del grupo pudiera crear tareas, deberías promoverlo a administrador acudiendo a la pestaña de información del grupo, viendo la lista de miembros y hacienco clic en el icono de punto al lado de su nombre.\n\n## ¿Cómo funciona asignar tareas?\n\nLos planes de grupo te dan la habilidad única de asignar tareas a otros miembros del grupo. Asignar una tareas es genial para delegar. Si le asignas una tarea a alguien, entonces se previene que los otros miembros la completen.\n\nPuedes asignar una tarea a varias personas si necesitas que la complete más de un miembro. Por ejemplo, si todos tienen que cepillarse los dientes, crea una tarea y asígnala a cada miembro del grupo. Podrán completarla y conseguir recompensas individuales por hacerlo. La tarea principal se mostrará como completa cuando todos la hayan completado.\n\n## ¿Cómo funcionan las tareas sin asignar?\n\nLas tareas sin asignar pueden ser completadas por cualquiera del grupo, así que deja una tarea sin asignar para permitir que cualquier miembro la complete. Por ejemplo, sacar la basura. Quien saque la basura puede marcar la tarea sin asignar y se mostrará como completada para todos.\n\n## ¿Cómo funciona el restablecimiento de día sincronizado?\n\nLas tareas compartidas se restablecerán al mismo tiempo para todos para mantener el tablero compartido en sincronía. Este momento es visible en el tablero de tareas compartido y se determina por el momento de inicio de día del líder del grupo. Debido a que las tareas compartidas se restablecen automáticamente, no tendrás la oportunidad de completar las Tareas diarias de ayer cuando entres al día siguiente.\n\nLas Tareas diaria compartidas no producen daño si no se hacen, pero se degradará su color para ayudar a visualizar el progreso. ¡No queremos que la experiencia compartida sea una negativa!\n\n## ¿Cómo puedo usar mi grupo en las aplicaciones móviles?\n\nAunque las aplicaciones móviles no soportan todas las funcionalidades de los planes de grupo, aún puedes completar las tareas compartidas desde las aplicaciones de iOS y Android. En la versión de navegador de Habitica, puedes ir al tablero compartido del grupo y activar la copia de las tareas. Ahora todas las tareas compartidas abiertas y asignadas se mostrarán en tu tablero de tareas personal en todas las plataformas.\n\n## ¿Cuán es la diferencia entre las tareas compartidas de grupo y los Desafíos?\n\nLos tableros de tareas compartidas del plan para grupos son más dinámicos que los Desafíos, porque pueden ser actualizados y se puede interactuar con ellos constantemente. Los Desafíos son geniales si tienes un conjunto de tareas para manderle a varias personas.\n\nLos planes para grupos también son una característica de pago, mientras que los Desafíos están disponibles de forma gratuita para todos.\n\nNo puedes asignar tareas específicas en un Desafío, y los Desafíos no tienen restablecimiento de día sincronizado. Por lo general, los Desafíos ofrecen menor control e interacción directa."
}
diff --git a/website/common/locales/es/gear.json b/website/common/locales/es/gear.json
index 91695c655c..2bc8616497 100644
--- a/website/common/locales/es/gear.json
+++ b/website/common/locales/es/gear.json
@@ -903,123 +903,123 @@
"headSpecialYetiText": "Casco de Domador de Yetis",
"headSpecialYetiNotes": "Un casco adorablemente aterrador. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de invierno 2013-2014.",
"headSpecialSkiText": "Casco de Ski-asesino",
- "headSpecialSkiNotes": "Mantiene la identidad del portador en secreto... y su cara calentita. Aumenta la percepción en <%= per %>. Equipo de Invierno Edición Limitada 2013-2014.",
- "headSpecialCandycaneText": "Sombrero de bastón de caramelo",
- "headSpecialCandycaneNotes": "El sombrero más delicioso del mundo. También se sabe que aparece y desaparece misteriosamente. Aumenta la percepción en <%= per %>. Equipo de Invierno Edición Limitada 2013-2014.",
- "headSpecialSnowflakeText": "Corona de copo de nieve",
- "headSpecialSnowflakeNotes": "Quien lleva esta corona nunca tiene frío. Aumenta la inteligencia en <%= int %>. Equipo de Invierno Edición Limitada 2013-2014.",
+ "headSpecialSkiNotes": "Mantiene la identidad del portador en secreto... y su cara calentita. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de invierno 2013-2014.",
+ "headSpecialCandycaneText": "Sombrero de Bastón de Caramelo",
+ "headSpecialCandycaneNotes": "El sombrero más delicioso del mundo. También se sabe que aparece y desaparece misteriosamente. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de invierno 2013-2014.",
+ "headSpecialSnowflakeText": "Corona de Copo de Nieve",
+ "headSpecialSnowflakeNotes": "Quien lleva esta corona nunca tiene frío. Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de invierno 2013-2014.",
"headSpecialSpringRogueText": "Máscara Gatuna Sigilosa",
- "headSpecialSpringRogueNotes": "¡Nadie podrá adivinar NUNCA que eres un ladrón gatuno! Aumenta la percepción en un <%= per %>. Equipo de Primavera Edición Limitada 2014.",
+ "headSpecialSpringRogueNotes": "¡Nadie podrá adivinar NUNCA que eres un ladrón gatuno! Aumenta la Percepción en un <%= per %>. Equipamiento de edición limitada de primavera 2014.",
"headSpecialSpringWarriorText": "Casco de Acero de Trébol",
- "headSpecialSpringWarriorNotes": "Forjado con trébol oloroso, este casco puede resistir hasta el golpe más potente. Aumenta la fuerza en <%= str %>. Equipo de Primavera Edición Limitada 2014.",
- "headSpecialSpringMageText": "Sombrero de queso suizo",
- "headSpecialSpringMageNotes": "¡Este sombrero guarda una gran cantidad de magia! Trata de no mordisquearlo. Añade <%= per %> puntos de percepción. Equipo de Primavera Edición Limitada 2014.",
- "headSpecialSpringHealerText": "Corona de la amistad",
- "headSpecialSpringHealerNotes": "Esta corona simboliza lealtad y amistad. ¡Un perro es el mejor amigo de un adventurero, después de todo! Aumenta la inteligencia en <%= int %>. Equipo de Primavera Edición Limitada 2014.",
+ "headSpecialSpringWarriorNotes": "Forjado con trébol oloroso, este casco puede resistir hasta el golpe más potente. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de primavera 2014.",
+ "headSpecialSpringMageText": "Sombrero de Queso Suizo",
+ "headSpecialSpringMageNotes": "¡Este sombrero guarda una gran cantidad de magia! Trata de no mordisquearlo. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de primavera 2014.",
+ "headSpecialSpringHealerText": "Corona de la Amistad",
+ "headSpecialSpringHealerNotes": "Esta corona simboliza lealtad y amistad. ¡Un perro es el mejor amigo de un adventurero, después de todo! Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de primavera 2014.",
"headSpecialSummerRogueText": "Sombrero de Pirata",
- "headSpecialSummerRogueNotes": "Solo los piratas más productivos pueden llevar este magnífico sombrero. Aumenta la percepción en <%= per %>. Equipo de Verano Edición Limitada 2014.",
- "headSpecialSummerWarriorText": "Pañuelo de espadachín",
- "headSpecialSummerWarriorNotes": "Este suave y salino trozo de tela llena de fuerzas a quien lo lleva. Aumenta la Fuerza en <%= str %>. Equipo de Verano Edición Limitada 2014.",
+ "headSpecialSummerRogueNotes": "Solo los piratas más productivos pueden llevar este magnífico sombrero. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de verano 2014.",
+ "headSpecialSummerWarriorText": "Pañuelo de Espadachín",
+ "headSpecialSummerWarriorNotes": "Este suave y salino trozo de tela llena de fuerzas a quien lo lleva. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de verano 2014.",
"headSpecialSummerMageText": "Sombrero Envuelto en Algas",
- "headSpecialSummerMageNotes": "¿Qué podría ser más mágico que un sombrero envuelto en algas marinas? Aumenta tu percepción en un <%= per %>. Equipo de Verano Edición Limitada 2014.",
+ "headSpecialSummerMageNotes": "¿Qué podría ser más mágico que un sombrero envuelto en algas marinas? Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de verano 2014.",
"headSpecialSummerHealerText": "Corona de Coral",
- "headSpecialSummerHealerNotes": "Permite a su portador sanar arrecifes dañados. Aumenta la inteligencia en un <%= int %>. Equipo de Verano Edición Limitada 2014.",
- "headSpecialFallRogueText": "Capucha rojo sangre",
- "headSpecialFallRogueNotes": "La identidad de un Cazavampiros debe permanecer siempre oculta. Aumenta tu percepción en <%= per %>. Equipo de Otoño Edición Limitada 2014.",
+ "headSpecialSummerHealerNotes": "Permite a su portador sanar arrecifes dañados. Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de verano 2014.",
+ "headSpecialFallRogueText": "Capucha Rojo Sangre",
+ "headSpecialFallRogueNotes": "La identidad de un Cazavampiros debe permanecer siempre oculta. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de otoño 2014.",
"headSpecialFallWarriorText": "Pericráneo Monstruoso de la Ciencia",
- "headSpecialFallWarriorNotes": "¡Injértate este casco! Tan solo está LIGERAMENTE usado. Aumenta la Fuerza en <%= str %>. Equipo de Otoño Edición Limitada 2014.",
- "headSpecialFallMageText": "Sombrero puntiagudo",
- "headSpecialFallMageNotes": "La magia está entretejida en cada hebra de este sombrero. Aumenta la percepción en <%= per %>. Equipo de Otoño Edición Limitada 2014.",
- "headSpecialFallHealerText": "Vendajes para la cabeza",
- "headSpecialFallHealerNotes": "Muy higiénicas y a la moda. Aumentan la Inteligencia en <%= int %>. Equipo de Otoño Edición Limitada 2014.",
+ "headSpecialFallWarriorNotes": "¡Injértate este casco! Tan solo está LIGERAMENTE usado. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de otoño 2014.",
+ "headSpecialFallMageText": "Sombrero Puntiagudo",
+ "headSpecialFallMageNotes": "La magia está entretejida en cada hebra de este sombrero. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de otoño 2014.",
+ "headSpecialFallHealerText": "Vendajes para la Cabeza",
+ "headSpecialFallHealerNotes": "Muy higiénicas y a la moda. Aumentan la Inteligencia en <%= int %>. Equipamiento de edición limitada de otoño 2014.",
"headSpecialNye2014Text": "Sombrero Ridículo de Fiesta",
- "headSpecialNye2014Notes": "¡Has recibido un Sombrero Ridículo de Fiesta! ¡Llévalo con orgullo mientras celebras el Año Nuevo! No proporciona ningún beneficio.",
+ "headSpecialNye2014Notes": "¡Has recibido un Sombrero Ridículo de Fiesta! ¡Llévalo con orgullo mientras celebras el Año Nuevo! No otorga ningún beneficio.",
"headSpecialWinter2015RogueText": "Máscara de Dragón del Hielo",
- "headSpecialWinter2015RogueNotes": "Definitivamente, de verdad de verdad, que eres un Dragón del Hielo auténtico. Para nada te estás infiltrando en las guaridas de los Dragones del Hielo. Y por supuesto no tienes ningún interés en los montones de riquezas que se rumorea yacen en sus frígidos túneles. ¡Groar! Aumenta la percepción en <%= per %>. Equipo de Invierno Edición Limitada 2014-2015.",
- "headSpecialWinter2015WarriorText": "Casco de pan de jengibre",
- "headSpecialWinter2015WarriorNotes": "Piensa, piensa, piensa tanto como puedas. Aumenta la fuerza en <%= str %>. Equipo de Invierno Edición Limitada 2014-2015.",
+ "headSpecialWinter2015RogueNotes": "Definitivamente, de verdad de verdad, que eres un Dragón del Hielo auténtico. Para nada te estás infiltrando en las guaridas de los Dragones del Hielo. Y por supuesto no tienes ningún interés en los montones de riquezas que se rumorea yacen en sus frígidos túneles. ¡Groar! Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de invierno 2014-2015.",
+ "headSpecialWinter2015WarriorText": "Casco de Pan de Jengibre",
+ "headSpecialWinter2015WarriorNotes": "Piensa, piensa, piensa tanto como puedas. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de invierno 2014-2015.",
"headSpecialWinter2015MageText": "Sombrero Aurora",
- "headSpecialWinter2015MageNotes": "La tela de este sombrero cambia y centellea cuando el portador estudia. Aumenta la percepción en <%= per %>. Equipo de Invierno Edición Limitada 2014-2015.",
+ "headSpecialWinter2015MageNotes": "La tela de este sombrero cambia y centellea cuando el portador estudia. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de invierno 2014-2015.",
"headSpecialWinter2015HealerText": "Orejeras Ajustadas",
- "headSpecialWinter2015HealerNotes": "Estas orejeras calentitas te mantienen a salvo de la corriente y de ruidos que podrían distraerte. Aumentan la inteligencia en <%= int %>. Equipo de Invierno Edición Limitada 2014-2015.",
- "headSpecialSpring2015RogueText": "Yelmo a prueba de balas",
- "headSpecialSpring2015RogueNotes": "¿Fuego? ¡JA! ¡Tú chillas agudo y con fiereza en la cara del fuego! Aumenta Percepción en <%= per %>. Equipo de Primavera Edición Limitada 2015.",
+ "headSpecialWinter2015HealerNotes": "Estas orejeras calentitas te mantienen a salvo de la corriente y de ruidos que podrían distraerte. Aumentan la Inteligencia en <%= int %>. Equipamiento de edición limitada de invierno 2014-2015.",
+ "headSpecialSpring2015RogueText": "Yelmo a Prueba de Balas",
+ "headSpecialSpring2015RogueNotes": "¿Fuego? ¡JA! ¡Tú chillas agudo y con fiereza en la cara del fuego! Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de primavera 2015.",
"headSpecialSpring2015WarriorText": "Yelmo Cauto",
- "headSpecialSpring2015WarriorNotes": "¡Ten cuidado con este yelmo! Solo un fiero cachorrito podría llevarlo. Deja de reírte. Aumenta la fuerza en <%= str %>. Equipo de Primavera 2015 Edición Limitada.",
+ "headSpecialSpring2015WarriorNotes": "¡Ten cuidado con este yelmo! Solo un fiero cachorrito podría llevarlo. Deja de reírte. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de primavera 2015.",
"headSpecialSpring2015MageText": "Sombrero de Escenario para Mago",
- "headSpecialSpring2015MageNotes": "¿Qué fue antes, el conejo o el sombrero? Aumenta Percepción en <%= per %>. Equipo de Primavera Edición Limitada 2015.",
+ "headSpecialSpring2015MageNotes": "¿Qué fue antes, el conejo o el sombrero? Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de primavera 2015.",
"headSpecialSpring2015HealerText": "Corona Reconfortante",
- "headSpecialSpring2015HealerNotes": "La perla en el centro de la corona calma y reconforta a quienes están a su alrededor. Aumenta Inteligencia en <%= int %>. Equipo de Primavera Edición Limitada 2015.",
- "headSpecialSummer2015RogueText": "Sombrero de rebelde",
- "headSpecialSummer2015RogueNotes": "Este sombrero pirata cayó por la borda y quedó decorado con retazos de coral de fuego. Suma <%= per %> de percepción. Equipo de edición limitada, verano de 2015.",
- "headSpecialSummer2015WarriorText": "Casco alhajado oceánico",
- "headSpecialSummer2015WarriorNotes": "Este casco, bonito y resistente, fue confeccionado por los artesanos de Dilatoria a partir de metales abisales. Suma <%= str %> de fuerza. Equipo de edición limitada, verano de 2015.",
- "headSpecialSummer2015MageText": "Pañuelo de adivino",
- "headSpecialSummer2015MageNotes": "Entre los hilos de este pañuelo, brilla un poder oculto. Suma <%= per %> de percepción. Equipo de edición limitada, verano de 2015.",
- "headSpecialSummer2015HealerText": "Gorro de marinero",
- "headSpecialSummer2015HealerNotes": "Con tu gorro de marinero bien ajustado a la cabeza, puedes navegar hasta los mares más tempestuosos. Suma <%= int %> de inteligencia. Equipo de edición limitada, verano de 2015.",
+ "headSpecialSpring2015HealerNotes": "La perla en el centro de la corona calma y reconforta a quienes están a su alrededor. Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de primavera 2015.",
+ "headSpecialSummer2015RogueText": "Sombrero de Rebelde",
+ "headSpecialSummer2015RogueNotes": "Este sombrero pirata cayó por la borda y quedó decorado con retazos de coral de fuego. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de verano 2015.",
+ "headSpecialSummer2015WarriorText": "Casco Alhajado Oceánico",
+ "headSpecialSummer2015WarriorNotes": "Este casco, bonito y resistente, fue confeccionado por los artesanos de Dilatoria a partir de metales abisales. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de verano 2015.",
+ "headSpecialSummer2015MageText": "Pañuelo de Adivino",
+ "headSpecialSummer2015MageNotes": "Entre los hilos de este pañuelo, brilla un poder oculto. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de verano 2015.",
+ "headSpecialSummer2015HealerText": "Gorro de Marinero",
+ "headSpecialSummer2015HealerNotes": "Con tu gorro de marinero bien ajustado a la cabeza, puedes navegar hasta los mares más tempestuosos. Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de verano 2015.",
"headSpecialFall2015RogueText": "Alas de Bati-Batalla",
- "headSpecialFall2015RogueNotes": "¡Utiliza la ecolocación para ubicar a tus enemigos con este poderoso yelmo! Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Otoño 2015.",
+ "headSpecialFall2015RogueNotes": "¡Utiliza la ecolocación para ubicar a tus enemigos con este poderoso yelmo! Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de otoño 2015.",
"headSpecialFall2015WarriorText": "Sombrero de Espantapájaros",
- "headSpecialFall2015WarriorNotes": "Todos querrían este sombrero--si tan sólo tuvieran un cerebro. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Otoño 2015.",
+ "headSpecialFall2015WarriorNotes": "Todos querrían este sombrero--si tan sólo tuvieran un cerebro. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de otoño 2015.",
"headSpecialFall2015MageText": "Sombrero Cosido",
- "headSpecialFall2015MageNotes": "Cada puntada en este sombrero aumenta su poder. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Otoño 2015.",
+ "headSpecialFall2015MageNotes": "Cada puntada en este sombrero aumenta su poder. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de otoño 2015.",
"headSpecialFall2015HealerText": "Sombrero de Rana",
- "headSpecialFall2015HealerNotes": "Este es un sombrero extremadamente serio que sólo es digno de los más avanzados fabricantes de pociones. Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Otoño 2015.",
+ "headSpecialFall2015HealerNotes": "Este es un sombrero extremadamente serio que sólo es digno de los más avanzados fabricantes de pociones. Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de otoño 2015.",
"headSpecialNye2015Text": "Sombrero Ridículo de Fiesta",
"headSpecialNye2015Notes": "¡Has recibido un Sombrero Ridículo de Fiesta! ¡Lúcelo con orgullo mientras festejas el Año Nuevo! No otorga ningún beneficio.",
- "headSpecialWinter2016RogueText": "Casco de cacao",
- "headSpecialWinter2016RogueNotes": "La bufanda protectora de este cómodo yelmo sólo se puede sacar para beber calentitas bebidas invernales. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Invierno 2015-2016.",
- "headSpecialWinter2016WarriorText": "Gorra de muñeco de nieve",
- "headSpecialWinter2016WarriorNotes": "¡Brr! Este fuerte yelmo es realmente poderoso... hasta que se derrite. Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Invierno 2015-2016.",
+ "headSpecialWinter2016RogueText": "Casco de Cacao",
+ "headSpecialWinter2016RogueNotes": "La bufanda protectora de este cómodo yelmo sólo se puede sacar para beber calentitas bebidas invernales. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de invierno 2015-2016.",
+ "headSpecialWinter2016WarriorText": "Gorra de Muñeco de Nieve",
+ "headSpecialWinter2016WarriorNotes": "¡Brr! Este fuerte yelmo es realmente poderoso... hasta que se derrite. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de invierno 2015-2016.",
"headSpecialWinter2016MageText": "Capucha de Esquiador de Snowboard",
- "headSpecialWinter2016MageNotes": "Mantiene la nieve fuera de tus ojos mientras conjuras hechizos. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Invierno 2015-2016.",
+ "headSpecialWinter2016MageNotes": "Mantiene la nieve fuera de tus ojos mientras conjuras hechizos. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de invierno 2015-2016.",
"headSpecialWinter2016HealerText": "Yelmo con Alas de Hada",
- "headSpecialWinter2016HealerNotes": "¡Estasalasbatentanrápidoqueniseven! Aumenta la Inteligencia en <%= int %>. Equipo de Invierno Edición Limitada 2015-2016.",
+ "headSpecialWinter2016HealerNotes": "¡Estasalasbatentanrápidoqueniseven! Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de invierno 2015-2016.",
"headSpecialSpring2016RogueText": "Máscara del Perrito Bueno",
- "headSpecialSpring2016RogueNotes": "Edition 2016 Spring Gear. Aww, ¡qué perrito más lindo! Ven aquí y déjame acariciarte... Ey, ¿Dónde está mi Oro? Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Primavera 2016.",
+ "headSpecialSpring2016RogueNotes": "Edition 2016 Spring Gear. Aww, ¡qué perrito más lindo! Ven aquí y déjame acariciarte... Ey, ¿Dónde está mi Oro? Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de primavera 2016.",
"headSpecialSpring2016WarriorText": "Casco de Ratón Guardián",
- "headSpecialSpring2016WarriorNotes": "¡Nunca más serás golpeado en la cabeza! ¡Deja que lo intenten! Incrementa la Fuerza por <%= str %>. Equipamiento de Edición Limitada de Primavera 2016.",
+ "headSpecialSpring2016WarriorNotes": "¡Nunca más serás golpeado en la cabeza! ¡Deja que lo intenten! Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de primavera 2016.",
"headSpecialSpring2016MageText": "Gran Sombrero Felino",
- "headSpecialSpring2016MageNotes": "Una vestimenta que te pone por encima de los meros magos callejeros del mundo. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Primavera 2016.",
+ "headSpecialSpring2016MageNotes": "Una vestimenta que te pone por encima de los meros magos callejeros del mundo. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de primavera 2016.",
"headSpecialSpring2016HealerText": "Diadema Floreciente",
- "headSpecialSpring2016HealerNotes": "Destella con el potencial de una nueva vida, lista para brotar. Incrementa la Inteligencia por <%= int %>. Equipamiento de Edición Limitada de Primavera 2016.",
+ "headSpecialSpring2016HealerNotes": "Destella con el potencial de una nueva vida, lista para brotar. Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de primavera 2016.",
"headSpecialSummer2016RogueText": "Casco de Anguila",
- "headSpecialSummer2016RogueNotes": "Espía por entre las grietas de las rocas mientras usas este sigiloso casco. Incrementa Percepción en <%= per %>. Edición Limitada 2016 Equipamiento de Verano.",
+ "headSpecialSummer2016RogueNotes": "Espía por entre las grietas de las rocas mientras usas este sigiloso casco. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de verano 2016.",
"headSpecialSummer2016WarriorText": "Casco Tiburón",
- "headSpecialSummer2016WarriorNotes": "¡Muerde esas tareas difíciles con este temible casco! Incrementa fuerza en <%= str %>. Edición Limitada 2016 Equipamiento de Verano.",
+ "headSpecialSummer2016WarriorNotes": "¡Muerde esas tareas difíciles con este temible casco! Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de verano 2016.",
"headSpecialSummer2016MageText": "Sombrero Espiráculo",
- "headSpecialSummer2016MageNotes": "Agua mágica rocía constantemente de este sombrero. Incrementa Percepción en <%= per %>. Edición Limitada 2016 Equipamiento de Verano.",
+ "headSpecialSummer2016MageNotes": "Agua mágica rocía constantemente de este sombrero. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de verano 2016.",
"headSpecialSummer2016HealerText": "Casco de Caballito de Mar",
- "headSpecialSummer2016HealerNotes": "Este sombrero indica que su usuario fue entrenado por los Caballitos de Mar sanadores de Dilatory. Incrementa Inteligencia en <%= int %>. Edición Limitada 2016 Equipamiento de Verano.",
+ "headSpecialSummer2016HealerNotes": "Este sombrero indica que su usuario fue entrenado por los Caballitos de Mar sanadores de Dilatory. Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de verano 2016.",
"headSpecialFall2016RogueText": "Casco Viuda Negra",
- "headSpecialFall2016RogueNotes": "Las patas en este casco están crispando constantemente. Incrementa la Percepción por <%= per %>. Equipamiento de Edición Limitada de Otoño 2016.",
+ "headSpecialFall2016RogueNotes": "Las patas en este casco están crispando constantemente. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de otoño 2016.",
"headSpecialFall2016WarriorText": "Casco de Corteza Nudosa",
- "headSpecialFall2016WarriorNotes": "Este casco empapado en agua de pantano está cubierto con trocitos de ciénaga. Incrementa la Fuerza en <%= str %>. Equipamiento de Otoño Edición Limitada 2016.",
+ "headSpecialFall2016WarriorNotes": "Este casco empapado en agua de pantano está cubierto con trocitos de ciénaga. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de otoño 2016.",
"headSpecialFall2016MageText": "Capucha de Maldad",
- "headSpecialFall2016MageNotes": "Oculta tus planes bajo esta capucha sombría. Incrementa la Percepción en <%= per %>. Equipamiento de Otoño, Edición Limitada 2016.",
+ "headSpecialFall2016MageNotes": "Oculta tus planes bajo esta capucha sombría. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de otoño 2016.",
"headSpecialFall2016HealerText": "Corona de Medusa",
- "headSpecialFall2016HealerNotes": "Miseria a cualquiera te mire en los ojos... Incrementa la Inteligencia por <%= int %>. Equipamiento de Otoño Edición Limitada 2016.",
+ "headSpecialFall2016HealerNotes": "Miseria a cualquiera te mire en los ojos... Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de otoño 2016.",
"headSpecialNye2016Text": "Sombrero Extravagante de Fiesta",
- "headSpecialNye2016Notes": "¡Has recibido el Sombrero Extravagante de Fiesta! ¡Llévalo con orgullo en el Nuevo Año! No proporciona ventajas.",
+ "headSpecialNye2016Notes": "¡Has recibido el Sombrero Extravagante de Fiesta! ¡Llévalo con orgullo en el año nuevo! No otorga ningún beneficio.",
"headSpecialWinter2017RogueText": "Yelmo Helado",
- "headSpecialWinter2017RogueNotes": "Hecho a partir de cristales de hielo, este yelmo te ayudará a pasar desapercibido por los paisajes invernales. Aumenta la Percepción en <%= per %>. Equipamiento Invernal Edición Limitada 2016-2017.",
+ "headSpecialWinter2017RogueNotes": "Hecho a partir de cristales de hielo, este yelmo te ayudará a pasar desapercibido por los paisajes invernales. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de invierno 2016-2017.",
"headSpecialWinter2017WarriorText": "Yelmo de Hockey",
- "headSpecialWinter2017WarriorNotes": "¡Este yelmo es duro y duradero, hecho para soportar impactos de hielo o incluso de las tareas Diarias de color rojo oscuro! Aumenta la Fuerza en <%= str %>. Equipamiento Invernal Edición Limitada 2016-2017.",
+ "headSpecialWinter2017WarriorNotes": "¡Este yelmo es duro y duradero, hecho para soportar impactos de hielo o incluso de las tareas Diarias de color rojo oscuro! Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de invierno 2016-2017.",
"headSpecialWinter2017MageText": "Yelmo de Lobo Invernal",
- "headSpecialWinter2017MageNotes": "Este yelmo, hecho a imagen del legendario Lobo Invernal, mantendrá tu cabeza caliente y tu visión aguda. Aumenta la Percepción en <%= per %>. Equipamiento Invernal Edición Limitada 2016-2017.",
+ "headSpecialWinter2017MageNotes": "Este yelmo, hecho a imagen del legendario Lobo Invernal, mantendrá tu cabeza caliente y tu visión aguda. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de invierno 2016-2017.",
"headSpecialWinter2017HealerText": "Yelmo de Flor Chispeante",
- "headSpecialWinter2017HealerNotes": "¡Estos brillantes pétalos focalizan tu poder cerebral! Aumenta la Inteligencia en <%= int %>. Equipamiento Invernal Edición Limitada 2016-2017.",
+ "headSpecialWinter2017HealerNotes": "¡Estos brillantes pétalos focalizan tu poder cerebral! Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de invierno 2016-2017.",
"headSpecialSpring2017RogueText": "Yelmo de Conejo Furtivo",
- "headSpecialSpring2017RogueNotes": "¡Esta máscara impedirá que tu monería te traicione mientras te aproximas furtivamente a tus Diarias (o a los tréboles)! Aumenta la Percepción en <%= per %>. Equipamiento de Edición Limitada de primavera de 2017.",
+ "headSpecialSpring2017RogueNotes": "¡Esta máscara impedirá que tu monería te traicione mientras te aproximas furtivamente a tus Diarias (o a los tréboles)! Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de primavera 2017.",
"headSpecialSpring2017WarriorText": "Yelmo Felino",
- "headSpecialSpring2017WarriorNotes": "Proteje tu adorable y confusa cabeza con este yelmo finamente decorado. Aumenta la Fuerza en <%= str %>. Equipamiento de Edición Limitada de primavera de 2017.",
+ "headSpecialSpring2017WarriorNotes": "Proteje tu adorable y confusa cabeza con este yelmo finamente decorado. Aumenta la Fuerza en <%= str %>. Equipamiento de edición limitada de primavera 2017.",
"headSpecialSpring2017MageText": "Sombrero de Hechicero Canino",
- "headSpecialSpring2017MageNotes": "Este sombrero puede ayudarte a lanzar poderosos hechizos... O simplemente puedes usarlo para invocar pelotas de tenis. A tu elección. Aumenta la Percepción en <%= per %>. Equipamiento de Edición Limitada de primavera de 2017.",
+ "headSpecialSpring2017MageNotes": "Este sombrero puede ayudarte a lanzar poderosos hechizos... O simplemente puedes usarlo para invocar pelotas de tenis. A tu elección. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de primavera 2017.",
"headSpecialSpring2017HealerText": "Diadema de Pétalos",
- "headSpecialSpring2017HealerNotes": "Esta delicada corona emite el aroma reconfortante de las nuevas flores de primavera. Aumenta la inteligencia en <%= int %>. Equipamiento de Edición Limitada de primavera de 2017.",
+ "headSpecialSpring2017HealerNotes": "Esta delicada corona emite el aroma reconfortante de las nuevas flores de primavera. Aumenta la Inteligencia en <%= int %>. Equipamiento de edición limitada de primavera 2017.",
"headSpecialSummer2017RogueText": "Yelmo de Dragón Marino",
- "headSpecialSummer2017RogueNotes": "Este yelmo cambia de color ayudándote a camuflarte con el entorno. Aumenta la Percepción en <%= per %>. Equipo de Edición Limitada Verano 2017.",
+ "headSpecialSummer2017RogueNotes": "Este yelmo cambia de color ayudándote a camuflarte con el entorno. Aumenta la Percepción en <%= per %>. Equipamiento de edición limitada de verano 2017.",
"headSpecialSummer2017WarriorText": "Yelmo Castilloarena",
"headSpecialSummer2017WarriorNotes": "El más fino yelmo que podrías esperar vestir... al menos, hasta que suba la marea. Aumenta la Fuerza en <%= str %>. Equipo de Edición Limitada Verano 2017.",
"headSpecialSummer2017MageText": "Sombrero Torbellino",
diff --git a/website/common/locales/es/limited.json b/website/common/locales/es/limited.json
index a71f7ede0f..528dfacb02 100644
--- a/website/common/locales/es/limited.json
+++ b/website/common/locales/es/limited.json
@@ -131,13 +131,13 @@
"winter2019WinterStarSet": "Estrella Invernal (Sanador)",
"winter2019PoinsettiaSet": "Flor de Navidad (Pícaro)",
"eventAvailability": "Disponible para su compra hasta el <%= date(locale) %>.",
- "dateEndMarch": "30 de abril",
- "dateEndApril": "19 de abril",
+ "dateEndMarch": "31 de marzo",
+ "dateEndApril": "30 de abril",
"dateEndMay": "31 de mayo",
- "dateEndJune": "14 de junio",
+ "dateEndJune": "30 de junio",
"dateEndJuly": "31 de Julio",
"dateEndAugust": "Agosto 31",
- "dateEndSeptember": "21 de septiembre",
+ "dateEndSeptember": "30 de septiembre",
"dateEndOctober": "31 de octubre",
"dateEndNovember": "30 de noviembre",
"dateEndJanuary": "31 de enero",
@@ -221,5 +221,13 @@
"spring2022RainstormWarriorSet": "Tempestad (Guerrero)",
"spring2022ForsythiaMageSet": "Forsitia (Mago)",
"spring2022PeridotHealerSet": "Peridoto (Sanador)",
- "aprilYYYY": "Abril <%= year %>"
+ "aprilYYYY": "Abril <%= year %>",
+ "summer2022CrabRogueSet": "Cangrejo (Pícaro)",
+ "summer2022MantaRayMageSet": "Manta raya (Mago)",
+ "dateEndDecember": "31 de diciembre",
+ "februaryYYYY": "Febrero de <%= year %>",
+ "summer2022WaterspoutWarriorSet": "Tromba marina (Guerrero)",
+ "summer2022AngelfishHealerSet": "Pez ángel (Sanador)",
+ "julyYYYY": "Julio de <%= year %>",
+ "octoberYYYY": "Octubre de <%= year %>"
}
diff --git a/website/common/locales/es/subscriber.json b/website/common/locales/es/subscriber.json
index b48aa5a758..b99890a6f5 100644
--- a/website/common/locales/es/subscriber.json
+++ b/website/common/locales/es/subscriber.json
@@ -201,5 +201,8 @@
"mysterySet202201": "Conjunto de Juerguista de Medianoche",
"mysterySet202202": "Conjunto de Coletas Turquesas",
"mysterySet202203": "Conjunto de Libélula Intrépida",
- "mysterySet202204": "Conjunto de Aventurero Virtual"
+ "mysterySet202204": "Conjunto de Aventurero Virtual",
+ "mysterySet202206": "Juego de duendecillos del mar",
+ "mysterySet202205": "Juego del dragón de alas oscuras",
+ "mysterySet202207": "Juego de la gelatina de Jammin"
}
diff --git a/website/common/locales/es_419/achievements.json b/website/common/locales/es_419/achievements.json
index 6859d954fc..88f1ba3fd2 100644
--- a/website/common/locales/es_419/achievements.json
+++ b/website/common/locales/es_419/achievements.json
@@ -132,5 +132,8 @@
"achievementZodiacZookeeperText": "¡Has eclosionado todas las mascotas del zodíaco de color básico: Rata, Vaca, Conejo, Serpiente, Caballo, Oveja, Mono, Gallo, Lobo, Tigre, Cerdo Volador y Dragón!",
"achievementReptacularRumbleText": "¡Has eclosionado todos los colores estándar de las mascotas reptiles: Caimán, Pterodáctilo, Serpiente, Triceratops, Tortuga, Tiranosaurio, y Velociraptor!",
"achievementReptacularRumble": "Retumbado Reptacular",
- "achievementReptacularRumbleModalText": "¡Coleccionaste todas las mascotas reptiles!"
+ "achievementReptacularRumbleModalText": "¡Coleccionaste todas las mascotas reptiles!",
+ "achievementGroupsBeta2022Text": "Tú y tu grupo brindaron un valioso aporte para ayudar a Habitica a realizar las pruebas de la versión Beta.",
+ "achievementGroupsBeta2022ModalText": "!Tú y tus grupos han ayudado a Habitica realizando pruebas y dando sugerencias!",
+ "achievementGroupsBeta2022": "Verificador Interactivo de la Versión Beta"
}
diff --git a/website/common/locales/es_419/backgrounds.json b/website/common/locales/es_419/backgrounds.json
index a318326618..78c4ab95e4 100644
--- a/website/common/locales/es_419/backgrounds.json
+++ b/website/common/locales/es_419/backgrounds.json
@@ -688,5 +688,18 @@
"backgroundFlowerShopText": "Tienda de Flores",
"backgroundFlowerShopNotes": "Disfruta el aroma suave de una Tienda de Flores.",
"backgroundSpringtimeLakeText": "Lago de Primavera",
- "backgroundSpringtimeLakeNotes": "Disfruta las vistas a orillas de un Lago de Primavera."
+ "backgroundSpringtimeLakeNotes": "Disfruta las vistas a orillas de un Lago de Primavera.",
+ "backgroundCastleGateText": "Puerta del Castillo",
+ "backgroundEnchantedMusicRoomText": "Cuarto de Música Encantado",
+ "backgroundEnchantedMusicRoomNotes": "Toca en el cuarto de música encantado.",
+ "backgrounds052022": "Conjunto 96: Lanzado en mayo de 2022",
+ "backgroundCastleGateNotes": "Haz guardia en la puerta del castillo.",
+ "hideLockedBackgrounds": "Ocultar fondos bloqueados",
+ "backgroundOnACastleWallText": "En un Muro del Castillo",
+ "backgroundOnACastleWallNotes": "Vistazo desde un muro del castillo.",
+ "backgroundBeachWithDunesText": "Playa con Dunas",
+ "backgrounds062022": "Conjunto 97: Lanzado en junio de 2022",
+ "backgroundBeachWithDunesNotes": "Explora una playa con dunas.",
+ "backgroundMountainWaterfallText": "Cascada en la Montaña",
+ "backgroundMountainWaterfallNotes": "Admira la cascada de una montaña."
}
diff --git a/website/common/locales/fil/achievements.json b/website/common/locales/fil/achievements.json
index 3047b1ead3..99753163d0 100755
--- a/website/common/locales/fil/achievements.json
+++ b/website/common/locales/fil/achievements.json
@@ -1,24 +1,24 @@
{
- "achievement": "Mga Nakamit",
+ "achievement": "Mga Natamó",
"onwards": "Sugod!",
- "levelup": "Sa pamamagitan ng pagkamit ng iyong mga mithiin sa totoong buhay, naglevel up ka at gumaling nang tuluyan!",
- "reachedLevel": "Nakamit Mo Ang Level <%= level %>",
- "achievementLostMasterclasser": "Quest Completionist: Masterclasser Series",
- "achievementLostMasterclasserText": "Natapos mo ang labing-anim na quests sa Masterclasser Quest Series at nalutas ang misteryo ng Lost Masterclasser!",
+ "levelup": "Sa pagtupád ng iyóng mga layunin sa totoóng buhay, tumaás ang iyóng antás at gumaling ka nang lubusan!",
+ "reachedLevel": "Nakamít Mo ang Iká-<%= level %> na Antás",
+ "achievementLostMasterclasser": "Tagawakás ng Pakikipagságupaán: Hanay-Sunuran ng Pantás",
+ "achievementLostMasterclasserText": "Naitapos lahát ng labing-anim ng mga nasa Hanay-Sunuran ng Pantás na Pakikipagságupaán at nailutás ang kababalaghán ng Nawawaláng Pantás!",
"achievementMindOverMatter": "Isip Bago Damdamin",
- "achievementLostMasterclasserModalText": "Natapos mo ang labing-anim na quests sa Masterclasser Quest Series at nalutas ang misteryo ng Lost Masterclasser!",
- "onboardingCompleteDesc": "Nakatanggap ka ng
5 achievements at
100 Ginto para sa pagkumpleto ng listahan.",
- "earnedAchievement": "Nakatanggap ka ng achievement!",
- "viewAchievements": "Tignan ang Achievements",
- "letsGetStarted": "Magsimula na tayo!",
- "onboardingProgress": "<%= percentage %>% progress",
- "gettingStartedDesc": "Tapusin ang mga panimulang gawain at makakatanggap ka ng
5 Achievements at
100 na Ginto pagtapos mo!",
- "yourRewards": "Iyong Gantimpala",
- "showAllAchievements": "Ipakita Lahat <%= category %>",
- "onboardingCompleteDescSmall": "Kung gusto mo pang makakuha ng mas marami, tignan mo ang Achievements at simulan ang pagkolekta!",
- "yourProgress": "Iyong Progreso",
- "hideAchievements": "Itago <%= category %>",
- "onboardingComplete": "Natapos mo na ang mga panimulang gawain!",
+ "achievementLostMasterclasserModalText": "Natapos mo lahát ng labing-anim ng mga nasa Hanay-Sunuran ng Pantás na Pakikipagságupaán at nalutás mo ang kababalaghán ng Nawawaláng Pantás!",
+ "onboardingCompleteDesc": "May
Limá kang Tagumpáy at nakatanggáp ka ng
isandaáng Gintô dahil natapos mo ang lahát ng nasa talaán.",
+ "earnedAchievement": "May nakamít kang tagumpáy!",
+ "viewAchievements": "Tignan ang mga Tagumpáy",
+ "letsGetStarted": "Simulán na natin!",
+ "onboardingProgress": "<%= percentage %>% na ang iyóng natapos",
+ "gettingStartedDesc": "Kung magágawâ mo ang lahát ng mga panimuláng gawaing pagsasanay, makákatanggap ka ng
5 Tagumpáy at
100 Gintô pagkatapos mo!",
+ "yourRewards": "Iyóng Gantimpalà",
+ "showAllAchievements": "Ipakità ang Lahát ng <%= category %>",
+ "onboardingCompleteDescSmall": "Kung nais mo pang makakamít ng higít pa rito, dumakò ka sa iyóng mga Tagumpáy at simulán ang paglikom!",
+ "yourProgress": "Ang Lagáy Mo",
+ "hideAchievements": "Itagò ang <%= category %>",
+ "onboardingComplete": "Natapos mo na ang iyóng mga panimuláng gawain!",
"achievementAridAuthorityText": "Napaamo ang lahat ng Desert Mounts.",
"achievementAridAuthority": "Arid Authority",
"achievementPartyUp": "Nakipagtambal ka sa isang kapartido!",
@@ -31,13 +31,13 @@
"achievementBackToBasicsModalText": "Nakolekta mo ang lahat ng Base Pets!",
"achievementBackToBasicsText": "Nakolekta ang lahat ng Base Pets.",
"achievementBackToBasics": "Balik sa Basics",
- "achievementJustAddWaterModalText": "Nakumpleto mo ang Nakakumpleto ng Pugita, Kabayong-dagat, Cuttlefish, Balyena, Pagong, Nudibranch, Sea Serpent, at Dolphin pet quests!",
- "achievementJustAddWaterText": "Nakakumpleto ng Pugita, Kabayong-dagat, Cuttlefish, Balyena, Pagong, Nudibranch, Sea Serpent, at Dolphin pet quests.",
- "achievementJustAddWater": "Dagdagan Lang ng Tubig",
- "achievementMindOverMatterModalText": "Nakumpleto mo ang Rock, Slime, and Yarn pet quests!",
- "achievementMindOverMatterText": "Nakakumpleto ng Rock, Slime, and Yarn pet quests.",
- "foundNewItemsCTA": "Pumunta sa iyong Imbentaryo at subukang pagsamahin ang bago mong hatching potion at itlog!",
- "foundNewItemsExplanation": "Ang pagkumpleto ng mga gawain ay magbibigay sayo ng tyansang makahanap ng mga gamit, tulad ng mga Itlog, Hatching Potions, at Pagkaing Pang-alaga.",
+ "achievementJustAddWaterModalText": "Natapos mo ang pakikipagságupaán sa mga alagang Pugita, Kudang Dagat, Bangkutak, Buhakag, Pawikan, Lintáng Dagat, Ahas-Dagat, at Lumba-Lumba.",
+ "achievementJustAddWaterText": "Naitapos ang pakikipagságupaán sa mga alagang Pugita, Kudang Dagat, Bangkutak, Buhakag, Pawikan, Lintáng Dagat, Ahas-Dagat, at Lumba-Lumba.",
+ "achievementJustAddWater": "Dagdagán Lang ng Tubig",
+ "achievementMindOverMatterModalText": "Natapos mo ang pakikipagságupaán sa mga alagang Bató, Lapot, at Mabalahibong Sinulid.",
+ "achievementMindOverMatterText": "Naitapos ang pakikipagságupaán sa mga alagang Bató, Lapot, at Mabalahibong Sinulid.",
+ "foundNewItemsCTA": "Dalawin mo ang iyóng imbakan at subukan mong pagsamahín ang bago mong mahiwagang langís na pampápapisâ at itlóg!",
+ "foundNewItemsExplanation": "Kung matátapos mo ang lahát ng mga gawain mo, magkákaroón ka ng pagkakátaóng makahanap ng mga gamit, tulad ng mga Itlóg, Mahihiwagang Langís na Pampápapisâ, at Pagkaing Pang-alagà.",
"foundNewItems": "Nakahanap ka nga mga bagong gamit!",
"achievementWildBlueYonderModalText": "Napaamo mo ang lahat ng Cotton Candy Blue Mounts!",
"achievementWildBlueYonderText": "Napaamo ang lahat ng Cotton Candy Blue Mounts.",
@@ -46,7 +46,7 @@
"achievementVioletsAreBlueText": "Nakolekta ang lahat ng Cotton Candy Blue Pets.",
"achievementVioletsAreBlue": "Ang mga Lila ay Bughaw",
"achievementSeasonalSpecialistModalText": "Nakumpleto mo ang lahat ng seasonal quests!",
- "achievementSeasonalSpecialistText": "Nakumpleto ang lahat ng Tagsibol at Taglamig na seasonal quests: Egg Hunt, Trapper Santa, at Find the Cub!",
+ "achievementSeasonalSpecialistText": "Naitapos ang lahat ng mga napápanahóng pakikipagságupaán sa Tágsiból at Táglamíg: Pagháhanáp ng Itlóg, Santang Namimitag, at Hanapin ang Suplíng!",
"achievementSeasonalSpecialist": "Pamanahong Espesyalista",
"achievementLegendaryBestiaryModalText": "Nakolekta mo ang lahat ng mythical pets!",
"achievementLegendaryBestiaryText": "Na-hatch ang lahat ng standard na kulay ng mga mythical pets: Dragon, Lumilipad na Biik, Sea Serpent, at Unicorn!",
@@ -69,14 +69,14 @@
"achievementGoodAsGoldModalText": "Nakolekta mo ang lahat ng Golden Pets!",
"achievementGoodAsGoldText": "Nakolekta ang lahat ng Golden Pets.",
"achievementGoodAsGold": "Kasinghalaga Ng Ginto",
- "achievementFreshwaterFriendsModalText": "Nakumpleto mo ang Axolotl, Palaka, at Hippo pet quests!",
- "achievementFreshwaterFriendsText": "Nakumpleto ang Axolotl, Palaka, at Hippo pet quests.",
+ "achievementFreshwaterFriendsModalText": "Natapos mo ang pakikipagságupaán sa mga alagang
Axolotl, Palakâ, at Kudang-Sapà!",
+ "achievementFreshwaterFriendsText": "Naitapos ang pakikipagságupaán sa mga alagang
Axolotl, Palakâ, at Kudang-Sapà.",
"achievementFreshwaterFriends": "Mga Kaibigang mula Tubig-tabang",
- "achievementBareNecessitiesModalText": "Nakumpleto mo ang Unggoy, Sloth, at Treeling pet quests!",
- "achievementBareNecessitiesText": "Nakumpleto ang Unggoy, Sloth, at Treeling pet quests.",
+ "achievementBareNecessitiesModalText": "Natapos mo ang pakikipagságupaán sa mga alagang Unggóy, Makuyad, at Totoy na Kahoy!",
+ "achievementBareNecessitiesText": "Naitapos ang pakikipagságupaán sa mga alagang Unggóy, Makuyad, at Totoy na Kahoy.",
"achievementBareNecessities": "Mga Pangunahing Pangangailangan",
"achievementBugBonanzaModalText": "Nakumpleto mo ang Salagubang, Paroparo, Suso, at Gagamba pet quests!",
- "achievementBugBonanzaText": "Nakumpleto ang Salagubang, Paroparo, Suso, at Gagamba pet quests.",
+ "achievementBugBonanzaText": "Naitapos ang pakikipagságupaán sa mga alagang Salagubang, Paruparó, Susô, at Gagambá.",
"achievementBugBonanza": "Bug Bonanza",
"achievementRosyOutlookModalText": "Napaamo mo ang lahat ng Cotton Candy Pink Mounts!",
"achievementRosyOutlookText": "Napaamo ang lahat ng Cotton Candy Pink Mounts.",
@@ -91,20 +91,20 @@
"achievementPrimedForPaintingText": "Nakolekta ang lahat ng White Pets.",
"achievementPrimedForPainting": "Primed for Painting",
"achievementPurchasedEquipmentModalText": "Ang kagamitan ay isang paraan upang ma-customize ang iyong avatar at mapataas ang iyong Stats",
- "achievementPurchasedEquipmentText": "Bumili ng kanilang unang piraso ng kagamitan.",
- "achievementPurchasedEquipment": "Bumili ng piraso ng Kagamitan",
+ "achievementPurchasedEquipmentText": "Bumilí ng kanyáng káuná-unahang gamit.",
+ "achievementPurchasedEquipment": "Bumilí ng Gamit",
"achievementFedPetModalText": "Maraming uri ng pagkain, pero mapili sa pagkain ang mga Alaga",
"achievementFedPetText": "Pinakain ang una nilang alaga.",
- "achievementFedPet": "Magpakain ng Alaga",
+ "achievementFedPet": "Pakainin ang Alágà",
"achievementHatchedPetModalText": "Pumunta sa iyong imbentaryo at subukang pagsamahin ang isang hatching Potion at isang Itlog",
"achievementHatchedPetText": "Nag-hatch ng kanilang unang alaga.",
- "achievementHatchedPet": "Mag-hatch ng Alaga",
- "achievementCompletedTaskModalText": "I-check off ang kahit ano sa iyong mga gawain upang makatanggap ng gantimpala",
+ "achievementHatchedPet": "Máglimlím ng Alagà",
+ "achievementCompletedTaskModalText": "Kudlitán ang kahit anó sa iyóng mga gawain upang makatanggap ng gantimpalà",
"achievementCompletedTaskText": "Nakumbleto ang una nilang gawain.",
"achievementCompletedTask": "Kumumpleto ng gawain",
- "achievementCreatedTaskModalText": "Magdagdag ng gawain para sa mga nais mong gawin ngayong linggo",
+ "achievementCreatedTaskModalText": "Mágdagdág ng isáng gawain na naís mong tapusin ngayóng linggó na 'to.",
"achievementCreatedTaskText": "Ginawa ang una nilang gawain.",
- "achievementCreatedTask": "Gawin ang una mong gawain",
+ "achievementCreatedTask": "",
"achievementUndeadUndertakerModalText": "Napaamo mo ang lahat ng Zombie Mounts!",
"achievementUndeadUndertakerText": "Napaamo ang lahat ng Zombie Mounts.",
"achievementUndeadUndertaker": "Undead Undertaker",
@@ -126,8 +126,16 @@
"achievementShadeOfItAllText": "Naipon lahát ng Makulimlím na Lulaníng Alagà.",
"achievementShadeOfItAllModalText": "Naipon mo ang lahát ng Makulimlím na Lulaníng Alagà!",
"achievementBirdsOfAFeatherModalText": "Nalikom mo lahát ng mga lumilipád na alágà!",
- "achievementBirdsOfAFeatherText": "Nakapisâ ng lahat ng karaniwang kulay ng mga lumilipád na alagà: Lumilipád na Baboy, Kwago, Periko, Terodaktil, Gripon, Limbás, Pabo Real, at Tandáng.",
+ "achievementBirdsOfAFeatherText": "Nakapisâ ng lahát ng karaniwang kulay ng mga lumilipád na alagà: Lumilipád na Baboy, Kwago, Periko, Terodaktil, Gripon, Limbás, Pabo Real, at Tandáng.",
"achievementZodiacZookeeperModalText": "Nalikom mo lahát ng mga tahakláw na alágà!",
"achievementZodiacZookeeper": "Tahakláw na Tagapangalagà",
- "achievementZodiacZookeeperText": "Nakapisâ ng lahat ng karaniwang kulay ng mga tahakláw na alagà: Dagâ, Baka, Kuneho, Ahas, Kabayò, Tupà, Unggóy, Tandáng, Lobo, Tigre, Lumilipád na Baboy, at Dragón!"
+ "achievementZodiacZookeeperText": "Nakapisâ ng lahat ng karaniwang kulay ng mga tahakláw na alagà: Dagâ, Baka, Kuneho, Ahas, Kabayò, Tupà, Unggóy, Tandáng, Lobo, Tigre, Lumilipád na Baboy, at Dragón!",
+ "achievementGroupsBeta2022ModalText": "Kayó ng iyóng mga kasamahán ay tumulong sa Habitica sa pamamagitan ng pagsurì at pag-ulat ng mga napuná!",
+ "achievementGroupsBeta2022Text": "Kayó ng iyóng mga kasamahán ay nag-ulat ng mga makatuturáng pagpuná upang matulungan ang Habitica na manurì.",
+ "achievementGroupsBeta2022": "Nakikipag-ugnayang Manunubok ng Pangalawáng Pagsusurì",
+ "achievementReptacularRumbleModalText": "Nalikom mo ang lahát ng mga reptil na alagà!",
+ "achievementReptacularRumbleText": "Nakapisâ ng lahát ng karaniwang kulay ng mga reptil na alagà: Buwaya, Terodaktil, Ahas, Trayserataps, Pagóng, Tayranosorus Rex at Belosiraptor.",
+ "achievementReptacularRumble": "Reptilyang Rambulan",
+ "achievementWoodlandWizardText": "Has hatched all standard colors of forest creatures: Badger, Bear, Usá, Fox, Palakâ, Hedgehog, Kwagò, Susô, Squirrel, at Totoy na Kahoy!",
+ "achievementWoodlandWizardModalText": "Nalikom mo lahát ng mga alagang gubat!"
}
diff --git a/website/common/locales/fil/backgrounds.json b/website/common/locales/fil/backgrounds.json
index 992df8e789..b4e11c8d78 100755
--- a/website/common/locales/fil/backgrounds.json
+++ b/website/common/locales/fil/backgrounds.json
@@ -177,8 +177,8 @@
"backgroundLighthouseShoreNotes": "Stroll down the Lighthouse Shore.",
"backgroundLilypadText": "Lilypad",
"backgroundLilypadNotes": "Hop on a Lilypad.",
- "backgroundWaterfallRockText": "Waterfall Rock",
- "backgroundWaterfallRockNotes": "Splash on a Waterfall Rock.",
+ "backgroundWaterfallRockText": "Bató sa Talón",
+ "backgroundWaterfallRockNotes": "Magtampisáw sa isang Bató sa Talón.",
"backgrounds072016": "SET 26: Released July 2016",
"backgroundAquariumText": "Aquarium",
"backgroundAquariumNotes": "Bob in an Aquarium.",
@@ -370,8 +370,8 @@
"backgrounds082018": "SET 51: Released August 2018",
"backgroundTrainingGroundsText": "Training Grounds",
"backgroundTrainingGroundsNotes": "Spar on the Training Grounds.",
- "backgroundFlyingOverRockyCanyonText": "Rocky Canyon",
- "backgroundFlyingOverRockyCanyonNotes": "Look down into a breathtaking scene as you fly over a Rocky Canyon.",
+ "backgroundFlyingOverRockyCanyonText": "Mabatóng Sabak",
+ "backgroundFlyingOverRockyCanyonNotes": "Tumingín pababâ sa isang nakamámangháng tanawin habang lumilipád ka sa ibabaw ng Mabatóng Sabak.",
"backgroundBridgeText": "Bridge",
"backgroundBridgeNotes": "Cross a charming Bridge.",
"backgrounds092018": "SET 52: Released September 2018",
diff --git a/website/common/locales/fil/character.json b/website/common/locales/fil/character.json
index 7ef24f6a02..5f4b414993 100755
--- a/website/common/locales/fil/character.json
+++ b/website/common/locales/fil/character.json
@@ -133,7 +133,7 @@
"optOutOfClasses": "Opt Out",
"chooseClass": "Choose your Class",
"chooseClassLearnMarkdown": "[Matuto pa sa class system ng Habitica](https://habitica.wikia.com/wiki/Class_System)",
- "optOutOfClassesText": "Can't be bothered with classes? Want to choose later? Opt out - you'll be a warrior with no special abilities. You can read about the class system later on the wiki and enable classes at any time under User Icon > Settings.",
+ "optOutOfClassesText": "Can't be bothered with classes? Want to choose later? Opt out - you'll be a warrior with no special abilities. You can read about the class system later on the wiki and enable classes at any time under Sagisag ng Tagagamit > Kasaayusán.",
"selectClass": "Select <%= heroClass %>",
"select": "Select",
"stealth": "Stealth",
diff --git a/website/common/locales/fil/content.json b/website/common/locales/fil/content.json
index 66db4ebcf2..2988acbfe3 100755
--- a/website/common/locales/fil/content.json
+++ b/website/common/locales/fil/content.json
@@ -1,38 +1,38 @@
{
- "potionText": "Mahiwagang Langís na Pámpalusóg",
- "potionNotes": "Mag-recover ng 15 Health (Instant Use)",
+ "potionText": "Mahiwagang Pámpalusóg",
+ "potionNotes": "Gumalíng ng 15 Panukat ng Kalusugan (Agarang Gamit)",
"armoireText": "Mahiwagang Kabán",
- "armoireNotesFull": "Open the Armoire to randomly receive special Equipment, Experience, or food! Equipment pieces remaining:",
- "armoireLastItem": "Natagpuán mo ang hulíng piraso ng mga bihirang Kagamitán sa Mahiwagang Kabán.",
- "armoireNotesEmpty": "Naglalabas ng bagong Kagamitan ang Armoire sa bawat unang linggo kada buwan. Bago iyon, pumindot lang nang pumindot para sa Kasanayan at Pagkaing Pang-Alaga!",
- "dropEggWolfText": "Wolf",
- "dropEggWolfMountText": "Wolf",
- "dropEggWolfAdjective": "a loyal",
- "dropEggTigerCubText": "Tiger Cub",
- "dropEggTigerCubMountText": "Tiger",
- "dropEggTigerCubAdjective": "a fierce",
- "dropEggPandaCubText": "Panda Cub",
+ "armoireNotesFull": "Buksán ang Mahiwagang Kabán upang makatanggáp ng katángi-tangìng Kagamitán, Kasanayan, o pagkain! Mga bahagì ng Kagamitán na natitirá:",
+ "armoireLastItem": "Natagpuán mo ang hulíng bahagì ng bihirang Kagamitán sa Mahiwagang Kabán.",
+ "armoireNotesEmpty": "Naglalabás ng bagong Kagamitán ang Mahiwagang Kabán pagsapit ng unang linggó buwán-buwán. Bago iyón, pindót lang ng pindót upang makatanggáp ng Kasanayán at Pagkaing Pang-Alagà!",
+ "dropEggWolfText": "Lobo",
+ "dropEggWolfMountText": "Lobo",
+ "dropEggWolfAdjective": "isáng tapát na",
+ "dropEggTigerCubText": "Kutíng na Tigre",
+ "dropEggTigerCubMountText": "Tigre",
+ "dropEggTigerCubAdjective": "isáng mabangís na",
+ "dropEggPandaCubText": "Batang Panda",
"dropEggPandaCubMountText": "Panda",
- "dropEggPandaCubAdjective": "a gentle",
- "dropEggLionCubText": "Lion Cub",
- "dropEggLionCubMountText": "Lion",
- "dropEggLionCubAdjective": "a regal",
- "dropEggFoxText": "Fox",
+ "dropEggPandaCubAdjective": "isáng maamong",
+ "dropEggLionCubText": "Kutíng na Leon",
+ "dropEggLionCubMountText": "Leon",
+ "dropEggLionCubAdjective": "isáng pangmaharliká",
+ "dropEggFoxText": "Tumanggóng",
"dropEggFoxMountText": "Fox",
- "dropEggFoxAdjective": "a wily",
- "dropEggFlyingPigText": "Flying Pig",
- "dropEggFlyingPigMountText": "Flying Pig",
- "dropEggFlyingPigAdjective": "a whimsical",
- "dropEggDragonText": "Dragon",
- "dropEggDragonMountText": "Dragon",
- "dropEggDragonAdjective": "a mighty",
- "dropEggCactusText": "Cactus",
- "dropEggCactusMountText": "Cactus",
- "dropEggCactusAdjective": "a prickly",
- "dropEggBearCubText": "Bear Cub",
- "dropEggBearCubMountText": "Bear",
- "dropEggBearCubAdjective": "a brave",
- "questEggGryphonText": "Gryphon",
+ "dropEggFoxAdjective": "isáng mapanlinláng na",
+ "dropEggFlyingPigText": "Lumilipád na Baboy",
+ "dropEggFlyingPigMountText": "Lumilipád na Baboy",
+ "dropEggFlyingPigAdjective": "isáng kakatwâ na",
+ "dropEggDragonText": "Dragón",
+ "dropEggDragonMountText": "Dragón",
+ "dropEggDragonAdjective": "isáng makapangyarihang",
+ "dropEggCactusText": "Kakto",
+ "dropEggCactusMountText": "Kakto",
+ "dropEggCactusAdjective": "isáng matiník na",
+ "dropEggBearCubText": "Batang Oso",
+ "dropEggBearCubMountText": "Oso",
+ "dropEggBearCubAdjective": "isáng matapang",
+ "questEggGryphonText": "Leóng Lawin",
"questEggGryphonMountText": "Gryphon",
"questEggGryphonAdjective": "a proud",
"questEggHedgehogText": "Hedgehog",
@@ -71,15 +71,15 @@
"questEggTRexText": "Tyrannosaur",
"questEggTRexMountText": "Tyrannosaur",
"questEggTRexAdjective": "a tiny-armed",
- "questEggRockText": "Rock",
- "questEggRockMountText": "Rock",
+ "questEggRockText": "Bató",
+ "questEggRockMountText": "Bató",
"questEggRockAdjective": "a lively",
"questEggBunnyText": "Bunny",
"questEggBunnyMountText": "Bunny",
"questEggBunnyAdjective": "a snuggly",
- "questEggSlimeText": "Marshmallow Slime",
- "questEggSlimeMountText": "Marshmallow Slime",
- "questEggSlimeAdjective": "a sweet",
+ "questEggSlimeText": "Lapot na Marshmallow",
+ "questEggSlimeMountText": "Lapot na Marshmallow",
+ "questEggSlimeAdjective": "isang matamis na",
"questEggSheepText": "Sheep",
"questEggSheepMountText": "Sheep",
"questEggSheepAdjective": "a woolly",
@@ -101,9 +101,9 @@
"questEggSnakeText": "Snake",
"questEggSnakeMountText": "Snake",
"questEggSnakeAdjective": "a slithering",
- "questEggUnicornText": "Unicorn",
- "questEggUnicornMountText": "Winged Unicorn",
- "questEggUnicornAdjective": "a magical",
+ "questEggUnicornText": "Maysángsungay",
+ "questEggUnicornMountText": "May Pakpák na Maysángsungay",
+ "questEggUnicornAdjective": "mahiwagang",
"questEggSabretoothText": "Sabretooth Tiger",
"questEggSabretoothMountText": "Sabretooth Tiger",
"questEggSabretoothAdjective": "a ferocious",
@@ -116,12 +116,12 @@
"questEggFalconText": "Falcon",
"questEggFalconMountText": "Falcon",
"questEggFalconAdjective": "a swift",
- "questEggTreelingText": "Treeling",
- "questEggTreelingMountText": "Treeling",
- "questEggTreelingAdjective": "a leafy",
- "questEggAxolotlText": "Axolotl",
- "questEggAxolotlMountText": "Axolotl",
- "questEggAxolotlAdjective": "a little",
+ "questEggTreelingText": "Totoy na Kahoy",
+ "questEggTreelingMountText": "Totoy na Kahoy",
+ "questEggTreelingAdjective": "madahong",
+ "questEggAxolotlText": "
Axolotl",
+ "questEggAxolotlMountText": "
Axolotl",
+ "questEggAxolotlAdjective": "maliít na",
"questEggTurtleText": "Sea Turtle",
"questEggTurtleMountText": "Giant Sea Turtle",
"questEggTurtleAdjective": "a peaceful",
@@ -137,9 +137,9 @@
"questEggFerretText": "Ferret",
"questEggFerretMountText": "Ferret",
"questEggFerretAdjective": "a furry",
- "questEggSlothText": "Sloth",
- "questEggSlothMountText": "Sloth",
- "questEggSlothAdjective": "a speedy",
+ "questEggSlothText": "Makuyad",
+ "questEggSlothMountText": "Makuyad",
+ "questEggSlothAdjective": "mabilís na",
"questEggTriceratopsText": "Triceratops",
"questEggTriceratopsMountText": "Triceratops",
"questEggTriceratopsAdjective": "a tricky",
@@ -161,8 +161,8 @@
"questEggYarnText": "Yarn",
"questEggYarnMountText": "Flying Carpet",
"questEggYarnAdjective": "woolen",
- "questEggPterodactylText": "Pterodactyl",
- "questEggPterodactylMountText": "Pterodactyl",
+ "questEggPterodactylText": "Terodaktil",
+ "questEggPterodactylMountText": "Terodaktil",
"questEggPterodactylAdjective": "a trusting",
"questEggBadgerText": "Badger",
"questEggBadgerMountText": "Badger",
@@ -170,9 +170,9 @@
"questEggSquirrelText": "Squirrel",
"questEggSquirrelMountText": "Squirrel",
"questEggSquirrelAdjective": "a bushy-tailed",
- "questEggSeaSerpentText": "Sea Serpent",
- "questEggSeaSerpentMountText": "Sea Serpent",
- "questEggSeaSerpentAdjective": "a shimmering",
+ "questEggSeaSerpentText": "Ahas-Dagat",
+ "questEggSeaSerpentMountText": "Ahas-Dagat",
+ "questEggSeaSerpentAdjective": "kumíkináng na",
"questEggKangarooText": "Kangaroo",
"questEggKangarooMountText": "Kangaroo",
"questEggKangarooAdjective": "a keen",
@@ -347,12 +347,12 @@
"hatchingPotionTurquoise": "Turkesa",
"hatchingPotionWindup": "Susián",
"hatchingPotionSandSculpture": "Iskulturang Buhangin",
- "hatchingPotionFluorite": "Fluorita",
+ "hatchingPotionFluorite": "Pluorita",
"hatchingPotionDessert": "Minatamís",
"hatchingPotionBirchBark": "Balakbák ng Birch",
- "hatchingPotionRuby": "Rubi",
+ "hatchingPotionRuby": "Rubí",
"hatchingPotionAurora": "Aurora",
- "hatchingPotionAmber": "Amber",
+ "hatchingPotionAmber": "Batóng Dagtâ",
"hatchingPotionShadow": "Anino",
"hatchingPotionSilver": "Pilak",
"hatchingPotionWatery": "Matubig",
@@ -368,5 +368,5 @@
"questEggDolphinMountText": "Dolphin",
"questEggDolphinText": "Dolphin",
"hatchingPotionSunset": "Paglubóg ng Araw",
- "hatchingPotionOnyx": "Onix"
+ "hatchingPotionOnyx": "Oniks"
}
diff --git a/website/common/locales/fil/gear.json b/website/common/locales/fil/gear.json
index 1ed1e54a9a..de7ed87e04 100755
--- a/website/common/locales/fil/gear.json
+++ b/website/common/locales/fil/gear.json
@@ -1,45 +1,45 @@
{
- "set": "Set",
- "equipmentType": "Type",
- "klass": "Class",
- "groupBy": "Group By <%= type %>",
- "classBonus": "(This item matches your class, so it gets an additional 1.5 Stat multiplier.)",
- "classArmor": "Class Armor",
- "featuredset": "Featured Set <%= name %>",
- "mysterySets": "Mystery Sets",
- "gearNotOwned": "You do not own this item.",
- "noGearItemsOfType": "You don't own any of these.",
- "noGearItemsOfClass": "You already have all your class equipment! More will be released during the Grand Galas, near the solstices and equinoxes.",
- "classLockedItem": "Bukas lamang ang gamit na ito sa ispesipikong klase. Sa level 10 pataas, maaari mong baguhin ang iyong klase sa User icon > Settings > Character Build!",
- "tierLockedItem": "This item is only available once you've purchased the previous items in sequence. Keep working your way up!",
- "sortByType": "Type",
- "sortByPrice": "Price",
- "sortByCon": "CON",
- "sortByPer": "PER",
- "sortByStr": "STR",
- "sortByInt": "INT",
- "weapon": "weapon",
- "weaponCapitalized": "Main-Hand Item",
- "weaponBase0Text": "No Weapon",
- "weaponBase0Notes": "No Weapon.",
- "weaponWarrior0Text": "Training Sword",
- "weaponWarrior0Notes": "Practice weapon. Confers no benefit.",
- "weaponWarrior1Text": "Espada",
- "weaponWarrior1Notes": "Talim ng karaniwang sundalo. Nagtataás ng Lakás ng <%= str %>.",
- "weaponWarrior2Text": "Axe",
+ "set": "Magkakakumpól",
+ "equipmentType": "Urì",
+ "klass": "Kaurián",
+ "groupBy": "Pagsamahin Batay sa <%= type %>",
+ "classBonus": "(Tumutugmà ang kagamitang ito sa iyóng kaurián, kaya't magkakaroón ng karagdagang 1.5 na pamparami ng Stat.)",
+ "classArmor": "Balutì ng Urì",
+ "featuredset": "Itinatampók na Kumpól <%= name %>",
+ "mysterySets": "Mga Mahihiwagang Kumpól",
+ "gearNotOwned": "Wala ka nitó.",
+ "noGearItemsOfType": "Wala ka ng mga itó.",
+ "noGearItemsOfClass": "Nasa 'yo na lahát ng mga kagamitáng naaayon sa iyóng kaurián! May marami pang mabibilí kapagka may mga Malakihang Pagdiriwang sa pagkiling at pagyukô ng daigdig.",
+ "classLockedItem": "Magagamit lang itó ng mga nasa tamang kaurián. Pagdatíng mo ng ikasampúng baitáng o higít pa, maaari mo ng palitán ang iyóng kaurián sa pamamagitan ng pagpindót mo ng Sagisag ng Tagagamit > Kasaayusán > Sukat ng Katangian!",
+ "tierLockedItem": "Mabibilí mo lang itó kapág nabilí mo na ang mga nauná pa ditó. Ipagpatuloy mo pa ang iyóng pagkayod!",
+ "sortByType": "Urì",
+ "sortByPrice": "Halagá",
+ "sortByCon": "PTW",
+ "sortByPer": "PDM",
+ "sortByStr": "LKS",
+ "sortByInt": "KTL",
+ "weapon": "sandata",
+ "weaponCapitalized": "Pangunahing Sandata",
+ "weaponBase0Text": "Waláng Sandata",
+ "weaponBase0Notes": "Waláng Sandata.",
+ "weaponWarrior0Text": "Patalím na Ginagamit sa Pagsasanay",
+ "weaponWarrior0Notes": "Sandatang ginagamit sa pagsasanay. Waláng pakinabang.",
+ "weaponWarrior1Text": "Patalím",
+ "weaponWarrior1Notes": "Talim ng isang karaniwang kawal. Nagtataás ng Lakás ng <%= str %>.",
+ "weaponWarrior2Text": "Palakól",
"weaponWarrior2Notes": "Sandatang may magkabilaang patalím. Nagtataás ng Lakás ng <%= str %>.",
- "weaponWarrior3Text": "Morning Star",
+ "weaponWarrior3Text": "Talà sa Umaga",
"weaponWarrior3Notes": "Mabigát na pamalò na may mga kasindák-sindák na mga tiník. Nagtataás ng Lakás ng <%= str %>.",
- "weaponWarrior4Text": "Sapphire Blade",
- "weaponWarrior4Notes": "Espada na may dulong humahampás na parang hanging hilagà. Nagtataás ng Lakás ng <%= str %>.",
- "weaponWarrior5Text": "Ruby Sword",
+ "weaponWarrior4Text": "Talim na Yarì sa Dilam",
+ "weaponWarrior4Notes": "Patalím na may dulong may hagupít ng hanging hilagà. Nagtataás ng Lakás ng <%= str %>.",
+ "weaponWarrior5Text": "Patalím na Rubí",
"weaponWarrior5Notes": "Sandata na may 'di kumukupas na pagbabaga. Nagtataás ng Lakás ng <%= str %>.",
- "weaponWarrior6Text": "Golden Sword",
+ "weaponWarrior6Text": "Gintóng Patalím",
"weaponWarrior6Notes": "enchBane of creatures of darkness. Nagtataás ng Lakás ng <%= str %>.",
"weaponRogue0Text": "Dagger",
- "weaponRogue0Notes": "A rogue's most basic weapon. Confers no benefit.",
+ "weaponRogue0Notes": "A rogue's most basic weapon. Waláng pakinabang.",
"weaponRogue1Text": "Short Sword",
- "weaponRogue1Notes": "Banayad na natatagong patalím. Nagtataás ng Lakás ng <%= str %>.",
+ "weaponRogue1Notes": "Banayad na patalím na matagò. Nagtataás ng Lakás ng <%= str %>.",
"weaponRogue2Text": "Scimitar",
"weaponRogue2Notes": "Espadang panglaslás; mabilís na nakahahatíd ng nakamamatay na tamà. Nagtataás ng Lakás ng <%= str %>.",
"weaponRogue3Text": "Kukri",
@@ -51,7 +51,7 @@
"weaponRogue6Text": "Hook Sword",
"weaponRogue6Notes": "Mabusising sandata na magalíng manghuli at mananggál ng mga sandata ng mga kalaban. Nagtataás ng Lakás ng <%= str %>.",
"weaponWizard0Text": "Apprentice Staff",
- "weaponWizard0Notes": "Practice staff. Confers no benefit.",
+ "weaponWizard0Notes": "Practice staff. Waláng pakinabang.",
"weaponWizard1Text": "Wooden Staff",
"weaponWizard1Notes": "Pangunahing kasangkapan na inukit mulá sa kahoy. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>.",
"weaponWizard2Text": "Jeweled Staff",
@@ -62,10 +62,10 @@
"weaponWizard4Notes": "Kasinglakás ng kabigatan nitó. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>.",
"weaponWizard5Text": "Archmage Staff",
"weaponWizard5Notes": "Tumutulong sa paghabì ng mga mahihirap na bulóng. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>.",
- "weaponWizard6Text": "Golden Staff",
+ "weaponWizard6Text": "Gintóng Tungkód",
"weaponWizard6Notes": "Gawá sa orikalkum, ang binagláng gintô, makapangyarihan at bihira. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>.",
"weaponHealer0Text": "Novice Rod",
- "weaponHealer0Notes": "For healers in training. Confers no benefit.",
+ "weaponHealer0Notes": "For healers in training. Waláng pakinabang.",
"weaponHealer1Text": "Acolyte Rod",
"weaponHealer1Notes": "Binubuó tuwíng nakikianib ang isáng manggagamot sa isáng samahán. Nagtataás ng Katalinuhan ng <%= int %>.",
"weaponHealer2Text": "Quartz Rod",
@@ -76,11 +76,11 @@
"weaponHealer4Notes": "Sagisag ng pagtatalagá at kasangkapan sa pagpapagaling. Nagtataás ng Katalinuhan ng <%= int %>.",
"weaponHealer5Text": "Royal Scepter",
"weaponHealer5Notes": "Naaangkóp na hawak ng isáng mahaliká o sa kanang kamáy nitó. Nagtataás ng Katalinuhan ng <%= int %>.",
- "weaponHealer6Text": "Golden Scepter",
+ "weaponHealer6Text": "Gintóng Panukod",
"weaponHealer6Notes": "Pinapaginhawà ang karamdaman ng lahat ng nakakakità nito. Nagtataás ng Katalinuhan ng <%= int %>.",
- "weaponSpecial0Text": "Dark Souls Blade",
+ "weaponSpecial0Text": "Talim ng mga Kaluluwá sa Dilím",
"weaponSpecial0Notes": "Sinasasà nitó ang kakanyahán ng buhay ng mga kalaban upang palakasín ang mga balakyót na tamà nitó. Nagtataás ng Lakás ng <%= str %>.",
- "weaponSpecial1Text": "Crystal Blade",
+ "weaponSpecial1Text": "Talim na Kristál",
"weaponSpecial1Notes": "Ang mga kumikináng na bahagì nitó ay nagsasalaysáy patungkól sa buhay ng isáng bayani. Nagtataás ng Lahát ng mga Katangian ng <%= attrs %>.",
"weaponSpecial2Text": "Stephen Weber's Shaft of the Dragon",
"weaponSpecial2Notes": "Mararamdamán mo ang pagraragasâ ng lakás ng dragón mula sa kaloób-loóban nitó! Nagtataás ng Lakás at Pandamá ng <%= attrs %> bawat isá.",
@@ -115,11 +115,11 @@
"weaponSpecialAetherCrystalsText": "Aether Crystals",
"weaponSpecialAetherCrystalsNotes": "Dating pagmamay-arì mismo ng Ligáw na Dalubhasà ang mga sapín at kristál na itó. Nagtataás ng Lahát ng mga Katangian ng <%= attrs %>.",
"weaponSpecialYetiText": "Yeti-Tamer Spear",
- "weaponSpecialYetiNotes": "Nagbibigay ang sibát na itó ng kakayahang mag-utos sa anumáng
yeti. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng ng 2013-2014.",
+ "weaponSpecialYetiNotes": "Nagbibigay ang sibát na itó ng kakayahang mag-utos sa anumáng
yeti. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2013-2014.",
"weaponSpecialSkiText": "Ski-sassin Pole",
- "weaponSpecialSkiNotes": "Isáng sandata na kayang pumuksâ ng mga kuyog ng kalaban! Nakakatulong rin itóng mapahusay ang paglikô sa yelo. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng ng 2013-2014.",
+ "weaponSpecialSkiNotes": "Isáng sandata na kayang pumuksâ ng mga kuyog ng kalaban! Nakakatulong rin itóng mapahusay ang paglikô sa yelo. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2013-2014.",
"weaponSpecialCandycaneText": "Candy Cane Staff",
- "weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng ng 2013-2014.",
+ "weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2013-2014.",
"weaponSpecialSnowflakeText": "Bastón ng Kristál na Niyebe",
"weaponSpecialSnowflakeNotes": "Kumikinang ng waláng limitasyong kapangyarihan sa pagpápagalíng ang bastón na itó. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2013-2014 .",
"weaponSpecialSpringRogueText": "Hook Claws",
@@ -176,7 +176,7 @@
"weaponSpecialFall2015WarriorNotes": "Great for elevating things in cornfields and/or smacking tasks. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2015.",
"weaponSpecialFall2015MageText": "Enchanted Thread",
"weaponSpecialFall2015MageNotes": "A powerful Stitch Witch can control this enchanted thread without even touching it! Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2015.",
- "weaponSpecialFall2015HealerText": "Swamp-Slime Potion",
+ "weaponSpecialFall2015HealerText": "Mahiwagang Langís ng Lapot ng Latian",
"weaponSpecialFall2015HealerNotes": "Brewed to perfection! Now you just have to convince yourself to drink it. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2015.",
"weaponSpecialWinter2016RogueText": "Cocoa Mug",
"weaponSpecialWinter2016RogueNotes": "Warming drink, or boiling projectile? You decide... Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2015-2016.",
@@ -219,7 +219,7 @@
"weaponSpecialWinter2017HealerText": "Bastón ng Hinibláng Asukal",
"weaponSpecialWinter2017HealerNotes": "This wand can reach into your dreams and bring you visions of dancing sugarplums. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2016-2017.",
"weaponSpecialSpring2017RogueText": "Karrotana",
- "weaponSpecialSpring2017RogueNotes": "These blades will make quick work of tasks, but also are handy for slicing vegetables! Yum! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
+ "weaponSpecialSpring2017RogueNotes": "Pinapadalî ng mga talim na itó ang mga gawain at mainam ding panghiwà ng gulay! Saráp! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
"weaponSpecialSpring2017WarriorText": "Feathery Whip",
"weaponSpecialSpring2017WarriorNotes": "This mighty whip will tame the unruliest task. But.. It's also… So FUN AND DISTRACTING!! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
"weaponSpecialSpring2017MageText": "Magic Fetching Stick",
@@ -277,107 +277,107 @@
"weaponSpecialWinter2019RogueText": "Poinsettia Bouquet",
"weaponSpecialWinter2019RogueNotes": "Use this festive bouquet to further camouflage yourself, or generously gift it to brighten a friend's day! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2018-2019.",
"weaponSpecialWinter2019WarriorText": "Snowflake Halberd",
- "weaponSpecialWinter2019WarriorNotes": "This snowflake was grown, ice crystal by ice crystal, into a diamond-hard blade! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2018-2019.",
+ "weaponSpecialWinter2019WarriorNotes": "Pinalakí ang bawat piraso ng niyebe na itó na maging kasintigas ng isáng talim na gawá sa dyamante. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2018-2019.",
"weaponSpecialWinter2019MageText": "Fiery Dragon Staff",
"weaponSpecialWinter2019MageNotes": "Watch out! This explosive staff is ready to help you take on all comers. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2018-2019.",
"weaponSpecialWinter2019HealerText": "Bastón ng Taglamíg",
"weaponSpecialWinter2019HealerNotes": "Winter can be a time of rest and healing, and so this wand of winter magic can help to soothe the most grievous hurts. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2018-2019.",
"weaponMystery201411Text": "Pitchfork of Feasting",
- "weaponMystery201411Notes": "Stab your enemies or dig in to your favorite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.",
+ "weaponMystery201411Notes": "Stab your enemies or dig in to your favorite foods - this versatile pitchfork does it all! Waláng pakinabang. November 2014 Subscriber Item.",
"weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth",
- "weaponMystery201502Notes": "For WINGS! For LOVE! For ALSO TRUTH! Confers no benefit. February 2015 Subscriber Item.",
+ "weaponMystery201502Notes": "For WINGS! For LOVE! For ALSO TRUTH! Waláng pakinabang. February 2015 Subscriber Item.",
"weaponMystery201505Text": "Green Knight Lance",
- "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Confers no benefit. May 2015 Subscriber Item.",
+ "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Waláng pakinabang. May 2015 Subscriber Item.",
"weaponMystery201611Text": "Copious Cornucopia",
- "weaponMystery201611Notes": "All manner of delicious and wholesome foods spill forth from this horn. Enjoy the feast! Confers no benefit. November 2016 Subscriber Item.",
+ "weaponMystery201611Notes": "All manner of delicious and wholesome foods spill forth from this horn. Enjoy the feast! Waláng pakinabang. November 2016 Subscriber Item.",
"weaponMystery201708Text": "Lava Sword",
- "weaponMystery201708Notes": "The fiery glow of this sword will make quick work of even dark red Tasks! Confers no benefit. August 2017 Subscriber Item.",
+ "weaponMystery201708Notes": "The fiery glow of this sword will make quick work of even dark red Tasks! Waláng pakinabang. August 2017 Subscriber Item.",
"weaponMystery201811Text": "Splendid Sorcerer's Staff",
- "weaponMystery201811Notes": "This magical stave is as powerful as it is elegant. Confers no benefit. November 2018 Subscriber Item.",
+ "weaponMystery201811Notes": "This magical stave is as powerful as it is elegant. Waláng pakinabang. November 2018 Subscriber Item.",
"weaponMystery301404Text": "Steampunk Cane",
- "weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.",
+ "weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Waláng pakinabang.",
"weaponArmoireBasicCrossbowText": "Basic Crossbow",
- "weaponArmoireBasicCrossbowNotes": "This crossbow can pierce a task's armor from very far away! Nagtataás ng Lakás ng <%= str %>, Pandamá ng <%= per %>, at Pangangatawán ng <%= con %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireBasicCrossbowNotes": "This crossbow can pierce a task's armor from very far away! Nagtataás ng Lakás ng <%= str %>, Pandamá ng <%= per %>, at Pangangatawán ng <%= con %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"weaponArmoireLunarSceptreText": "Soothing Lunar Sceptre",
- "weaponArmoireLunarSceptreNotes": "The healing power of this wand waxes and wanes. Nagtataás ng Pangangatawán ng <%= con %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Soothing Lunar Set (Item 3 of 3).",
+ "weaponArmoireLunarSceptreNotes": "The healing power of this wand waxes and wanes. Nagtataás ng Pangangatawán ng <%= con %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Soothing Lunar Set (Ika-3 ng 3).",
"weaponArmoireRancherLassoText": "Rancher Lasso",
- "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Nagtataás ng Lakás ng <%= str %>, Pandamá ng <%= per %>, at Katalinuhan ng <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).",
+ "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Nagtataás ng Lakás ng <%= str %>, Pandamá ng <%= per %>, at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Rancher Set (Ika-3 ng 3).",
"weaponArmoireMythmakerSwordText": "Mythmaker Sword",
- "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Nagtataás ng Pandamá at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Golden Toga Set (Item 3 of 3).",
+ "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Nagtataás ng Pandamá at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Golden Toga Set (Ika-3 ng 3).",
"weaponArmoireIronCrookText": "Iron Crook",
- "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Nagtataás ng Pandamá at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Horned Iron Set (Item 3 of 3).",
+ "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Nagtataás ng Pandamá at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Horned Iron Set (Iká-3 ng 3).",
"weaponArmoireGoldWingStaffText": "Gold Wing Staff",
- "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Nagtataás ng Lahát ng mga Katangian ng <%= attrs %> bawat isá. Enchanted Armoire: Independent Item.",
+ "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Nagtataás ng Lahát ng mga Katangian ng <%= attrs %> bawat isá. Mahiwagang Kabán: Bukód na Kagamitán.",
"weaponArmoireBatWandText": "Bastón na Panikì",
- "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"weaponArmoireShepherdsCrookText": "Shepherd's Crook",
- "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).",
+ "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Shepherd Set (Iká-1 ng 3).",
"weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff",
- "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Nagtataás ng Katalinuhan at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).",
+ "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Nagtataás ng Katalinuhan at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Crystal Crescent Set (Iká-3 ng 3).",
"weaponArmoireBlueLongbowText": "Blue Longbow",
- "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Nagtataás ng Pandamá ng <%= per %>, Pangangatawán ng <%= con %>, at Lakás ng <%= str %>. Enchanted Armoire: Iron Archer Set (Item 3 of 3).",
+ "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Nagtataás ng Pandamá ng <%= per %>, Pangangatawán ng <%= con %>, at Lakás ng <%= str %>. Mahiwagang Kabán: Iron Archer Set (Iká-3 ng 3).",
"weaponArmoireGlowingSpearText": "Glowing Spear",
- "weaponArmoireGlowingSpearNotes": "This spear hypnotizes wild tasks so you can attack them. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireGlowingSpearNotes": "This spear hypnotizes wild tasks so you can attack them. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"weaponArmoireBarristerGavelText": "Barrister Gavel",
- "weaponArmoireBarristerGavelNotes": "Order! Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Barrister Set (Item 3 of 3).",
+ "weaponArmoireBarristerGavelNotes": "Order! Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Barrister Set (Iká-3 ng 3).",
"weaponArmoireJesterBatonText": "Jester Baton",
- "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Jester Set (Item 3 of 3).",
+ "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Jester Set (Iká-3 ng 3).",
"weaponArmoireMiningPickaxText": "Mining Pickax",
- "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Miner Set (Item 3 of 3).",
+ "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Miner Set (Iká-3 ng 3).",
"weaponArmoireBasicLongbowText": "Basic Longbow",
- "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Nagtataás ng Lakás ng <%= str %>.Enchanted Armoire: Basic Archer Set (Item 1 of 3).",
+ "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Basic Archer Set (Iká-1 ng 3).",
"weaponArmoireHabiticanDiplomaText": "Habitican Diploma",
- "weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Graduate Set (Item 1 of 3).",
+ "weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Graduate Set (Iká-3 ng 3).",
"weaponArmoireSandySpadeText": "Sandy Spade",
- "weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
+ "weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Seaside Set (Iká-3 ng 3).",
"weaponArmoireCannonText": "Cannon",
- "weaponArmoireCannonNotes": "Arr! Set your aim with determination. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Cannoneer Set (Item 1 of 3).",
+ "weaponArmoireCannonNotes": "Arr! Set your aim with determination. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Cannoneer Set (Iká-3 ng 3).",
"weaponArmoireVermilionArcherBowText": "Vermilion Archer Bow",
- "weaponArmoireVermilionArcherBowNotes": "Your arrow will fly like a shooting star from this brilliant red bow! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Vermilion Archer Set (Item 1 of 3).",
+ "weaponArmoireVermilionArcherBowNotes": "Your arrow will fly like a shooting star from this brilliant red bow! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Vermilion Archer Set (Iká-1 ng 3).",
"weaponArmoireOgreClubText": "Ogre Club",
- "weaponArmoireOgreClubNotes": "This club was salvaged from an actual Ogre's lair. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Ogre Outfit (Item 2 of 3).",
+ "weaponArmoireOgreClubNotes": "This club was salvaged from an actual Ogre's lair. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Ogre Outfit (Iká-2 ng 3).",
"weaponArmoireWoodElfStaffText": "Wood Elf Staff",
- "weaponArmoireWoodElfStaffNotes": "Made from a fallen limb of an ancient tree, this staff will help you communicate with forest denizens great and small. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Wood Elf Set (Item 3 of 3).",
+ "weaponArmoireWoodElfStaffNotes": "Made from a fallen limb of an ancient tree, this staff will help you communicate with forest denizens great and small. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Wood Elf Set (Iká-3 ng 3).",
"weaponArmoireWandOfHeartsText": "Bastón ng mga Pusò",
- "weaponArmoireWandOfHeartsNotes": "This wand sparkles with a warm red light. It will also grant your heart wisdom. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Queen of Hearts Set (Item 3 of 3).",
+ "weaponArmoireWandOfHeartsNotes": "This wand sparkles with a warm red light. It will also grant your heart wisdom. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Queen of Hearts Set (Iká-3 ng 3).",
"weaponArmoireForestFungusStaffText": "Forest Fungus Staff",
- "weaponArmoireForestFungusStaffNotes": "Use this gnarled staff to work mycological magic! Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireForestFungusStaffNotes": "Use this gnarled staff to work mycological magic! Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"weaponArmoireFestivalFirecrackerText": "Festival Firecracker",
- "weaponArmoireFestivalFirecrackerNotes": "Enjoy this delightful sparkler responsibly. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Festival Attire Set (Item 3 of 3).",
+ "weaponArmoireFestivalFirecrackerNotes": "Enjoy this delightful sparkler responsibly. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Festival Attire Set (Iká-3 ng 3).",
"weaponArmoireMerchantsDisplayTrayText": "Merchant's Display Tray",
- "weaponArmoireMerchantsDisplayTrayNotes": "Use this lacquered tray to show the fine goods you're offering for sale. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Merchant Set (Item 3 of 3).",
+ "weaponArmoireMerchantsDisplayTrayNotes": "Use this lacquered tray to show the fine goods you're offering for sale. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Merchant Set (Iká-3 ng 3).",
"weaponArmoireBattleAxeText": "Ancient Axe",
- "weaponArmoireBattleAxeNotes": "This fine iron axe is well-suited to battling your fiercest foes or your most difficult tasks. Nagtataás ng Katalinuhan ng <%= int %> at Pangangatawán ng <%= con %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireBattleAxeNotes": "This fine iron axe is well-suited to battling your fiercest foes or your most difficult tasks. Nagtataás ng Katalinuhan ng <%= int %> at Pangangatawán ng <%= con %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"weaponArmoireHoofClippersText": "Hoof Clippers",
- "weaponArmoireHoofClippersNotes": "Trim the hooves of your hard-working mounts to help them stay healthy as they carry you to adventure! Nagtataás ng Lakás, Katalinuhan, at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Farrier Set (Item 1 of 3).",
+ "weaponArmoireHoofClippersNotes": "Trim the hooves of your hard-working mounts to help them stay healthy as they carry you to adventure! Nagtataás ng Lakás, Katalinuhan, at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Farrier Set (Iká-1 ng 3).",
"weaponArmoireWeaversCombText": "Weaver's Comb",
- "weaponArmoireWeaversCombNotes": "Use this comb to pack your weft threads together to make a tightly woven fabric. Nagtataás ng Pandamá <%= per %> at Lakás ng <%= str %>. Enchanted Armoire: Weaver Set (Item 2 of 3).",
+ "weaponArmoireWeaversCombNotes": "Use this comb to pack your weft threads together to make a tightly woven fabric. Nagtataás ng Pandamá <%= per %> at Lakás ng <%= str %>. Mahiwagang Kabán: Weaver Set (Iká-2 ng 3).",
"weaponArmoireLamplighterText": "Lamplighter",
- "weaponArmoireLamplighterNotes": "This long pole has a wick on one end for lighting lamps, and a hook on the other end for putting them out. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Enchanted Armoire: Lamplighter's Set (Item 1 of 4)",
+ "weaponArmoireLamplighterNotes": "This long pole has a wick on one end for lighting lamps, and a hook on the other end for putting them out. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Lamplighter's Set (Iká-1 ng 4).",
"weaponArmoireCoachDriversWhipText": "Coach Driver's Whip",
- "weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Nagtataás ng Katalinuhan ng <%= int %> at Lakás ng <%= str %>. Enchanted Armoire: Coach Driver Set (Item 3 of 3).",
+ "weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Nagtataás ng Katalinuhan ng <%= int %> at Lakás ng <%= str %>. Mahiwagang Kabán: Coach Driver Set (Iká-3 ng 3).",
"weaponArmoireScepterOfDiamondsText": "Scepter of Diamonds",
- "weaponArmoireScepterOfDiamondsNotes": "This scepter shines with a warm red glow as it grants you increased willpower. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: King of Diamonds Set (Item 3 of 4).",
+ "weaponArmoireScepterOfDiamondsNotes": "This scepter shines with a warm red glow as it grants you increased willpower. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: King of Diamonds Set (Iká-3 ng 4).",
"weaponArmoireFlutteryArmyText": "Fluttery Army",
- "weaponArmoireFlutteryArmyNotes": "This group of scrappy lepidopterans is ready to flap fiercely and cool down your reddest tasks! Nagtataás ng Pangangatawán, Katalinuhan, at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Fluttery Frock Set (Item 3 of 4).",
+ "weaponArmoireFlutteryArmyNotes": "This group of scrappy lepidopterans is ready to flap fiercely and cool down your reddest tasks! Nagtataás ng Pangangatawán, Katalinuhan, at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Fluttery Frock Set (Iká-3 ng 4).",
"weaponArmoireCobblersHammerText": "Cobbler's Hammer",
- "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Enchanted Armoire: Cobbler Set (Item 2 of 3).",
+ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Mahiwagang Kabán: Cobbler Set (Iká-2 ng 3).",
"weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe",
- "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).",
+ "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Glassblower Set (Iká-1 ng 4).",
"weaponArmoirePoisonedGobletText": "Poisoned Goblet",
- "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).",
+ "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Piratical Princess Set (Iká-3 ng 4).",
"weaponArmoireJeweledArcherBowText": "Jeweled Archer Bow",
- "weaponArmoireJeweledArcherBowNotes": "This bow of gold and gems will send your arrows to their targets at incredible speed. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Jeweled Archer Set (Item 3 of 3).",
+ "weaponArmoireJeweledArcherBowNotes": "This bow of gold and gems will send your arrows to their targets at incredible speed. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Jeweled Archer Set (Iká-3 ng 3).",
"weaponArmoireNeedleOfBookbindingText": "Needle of Bookbinding",
- "weaponArmoireNeedleOfBookbindingNotes": "You'd be surprised at how tough books can be. This needle can pierce right to the heart of your chores. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Bookbinder Set (Item 3 of 4).",
+ "weaponArmoireNeedleOfBookbindingNotes": "You'd be surprised at how tough books can be. This needle can pierce right to the heart of your chores. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Bookbinder Set (Iká-3 ng 4).",
"weaponArmoireSpearOfSpadesText": "Spear of Spades",
- "weaponArmoireSpearOfSpadesNotes": "This knightly lance is perfect for attacking your reddest Habits and Dailies. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Ace of Spades Set (Item 3 of 3).",
+ "weaponArmoireSpearOfSpadesNotes": "This knightly lance is perfect for attacking your reddest Habits and Dailies. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Ace of Spades Set (Iká-3 ng 3).",
"weaponArmoireArcaneScrollText": "Arcane Scroll",
- "weaponArmoireArcaneScrollNotes": "This ancient To-Do list is filled with strange symbols and spells from a forgotten age. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Scribe Set (Item 3 of 3).",
+ "weaponArmoireArcaneScrollNotes": "This ancient To-Do list is filled with strange symbols and spells from a forgotten age. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Scribe Set (Iká-3 ng 3).",
"armor": "armor",
"armorCapitalized": "Armor",
"armorBase0Text": "Plain Clothing",
- "armorBase0Notes": "Ordinary clothing. Confers no benefit.",
+ "armorBase0Notes": "Ordinary clothing. Waláng pakinabang.",
"armorWarrior1Text": "Leather Armor",
"armorWarrior1Notes": "Jerkin of sturdy boiled hide. Nagtataás ng Pangangatawán ng <%= con %>.",
"armorWarrior2Text": "Chain Mail",
@@ -386,8 +386,8 @@
"armorWarrior3Notes": "Suit of all-encasing steel, the pride of knights. Nagtataás ng Pangangatawán ng <%= con %>.",
"armorWarrior4Text": "Red Armor",
"armorWarrior4Notes": "Heavy plate glowing with defensive enchantments. Nagtataás ng Pangangatawán ng <%= con %>.",
- "armorWarrior5Text": "Golden Armor",
- "armorWarrior5Notes": "Looks ceremonial, but no known blade can pierce it. Nagtataás ng Pangangatawán ng <%= con %>.",
+ "armorWarrior5Text": "Gintóng Balutì",
+ "armorWarrior5Notes": "Mukháng ginagamit lamang sa mga palabás, ngunit walang nakakatagós na talim dito. Nagtataás ng Pangangatawán ng <%= con %>.",
"armorRogue1Text": "Oiled Leather",
"armorRogue1Notes": "Leather armor treated to reduce noise. Nagtataás ng Pandamá ng <%= per %>.",
"armorRogue2Text": "Black Leather",
@@ -451,9 +451,9 @@
"armorSpecialSamuraiArmorText": "Samurai Armor",
"armorSpecialSamuraiArmorNotes": "This strong, scaled armor is held together by elegant silk cords. Nagtataás ng Pandamá ng <%= per %>.",
"armorSpecialTurkeyArmorBaseText": "Turkey Armor",
- "armorSpecialTurkeyArmorBaseNotes": "Keep your drumsticks warm and cozy in this feathery armor! Confers no benefit.",
+ "armorSpecialTurkeyArmorBaseNotes": "Keep your drumsticks warm and cozy in this feathery armor! Waláng pakinabang.",
"armorSpecialTurkeyArmorGildedText": "Gilded Turkey Armor",
- "armorSpecialTurkeyArmorGildedNotes": "Strut your stuff in this seasonally shiny armor! Confers no benefit.",
+ "armorSpecialTurkeyArmorGildedNotes": "Strut your stuff in this seasonally shiny armor! Waláng pakinabang.",
"armorSpecialYetiText": "Yeti-Tamer Robe",
"armorSpecialYetiNotes": "Fuzzy and fierce. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2013-2014.",
"armorSpecialSkiText": "Ski-sassin Parka",
@@ -463,15 +463,15 @@
"armorSpecialSnowflakeText": "Snowflake Robe",
"armorSpecialSnowflakeNotes": "A robe to keep you warm, even in a blizzard. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2013-2014.",
"armorSpecialBirthdayText": "Absurd Party Robes",
- "armorSpecialBirthdayNotes": "Happy Birthday, Habitica! Wear these Absurd Party Robes to celebrate this wonderful day. Confers no benefit.",
+ "armorSpecialBirthdayNotes": "Happy Birthday, Habitica! Wear these Absurd Party Robes to celebrate this wonderful day. Waláng pakinabang.",
"armorSpecialBirthday2015Text": "Silly Party Robes",
- "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes to celebrate this wonderful day. Confers no benefit.",
+ "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes to celebrate this wonderful day. Waláng pakinabang.",
"armorSpecialBirthday2016Text": "Ridiculous Party Robes",
- "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.",
+ "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Waláng pakinabang.",
"armorSpecialBirthday2017Text": "Whimsical Party Robes",
- "armorSpecialBirthday2017Notes": "Happy Birthday, Habitica! Wear these Whimsical Party Robes to celebrate this wonderful day. Confers no benefit.",
+ "armorSpecialBirthday2017Notes": "Happy Birthday, Habitica! Wear these Whimsical Party Robes to celebrate this wonderful day. Waláng pakinabang.",
"armorSpecialBirthday2018Text": "Fanciful Party Robes",
- "armorSpecialBirthday2018Notes": "Happy Birthday, Habitica! Wear these Fanciful Party Robes to celebrate this wonderful day. Confers no benefit.",
+ "armorSpecialBirthday2018Notes": "Happy Birthday, Habitica! Wear these Fanciful Party Robes to celebrate this wonderful day. Waláng pakinabang.",
"armorSpecialGaymerxText": "Rainbow Warrior Armor",
"armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.",
"armorSpecialSpringRogueText": "Sleek Cat Suit",
@@ -516,7 +516,7 @@
"armorSpecialSpring2015HealerNotes": "This soft catsuit is comfortable, and as comforting as mint tea. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2015.",
"armorSpecialSummer2015RogueText": "Ruby Tail",
"armorSpecialSummer2015RogueNotes": "This garment of shimmering scales transforms its wearer into a real Reef Renegade! Nagtataás ng Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
- "armorSpecialSummer2015WarriorText": "Golden Tail",
+ "armorSpecialSummer2015WarriorText": "Gintóng Buntót",
"armorSpecialSummer2015WarriorNotes": "This garment of shimmering scales transforms its wearer into a real Sunfish Warrior! Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
"armorSpecialSummer2015MageText": "Soothsayer Robes",
"armorSpecialSummer2015MageNotes": "Hidden power resides in the puffs of these sleeves. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
@@ -556,7 +556,7 @@
"armorSpecialSummer2016HealerNotes": "This spiky garment transforms its wearer into a real Seahorse Healer! Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2016.",
"armorSpecialFall2016RogueText": "Black Widow Armor",
"armorSpecialFall2016RogueNotes": "The eyes on this armor are constantly blinking. Nagtataás ng Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2016.",
- "armorSpecialFall2016WarriorText": "Slime-Streaked Armor",
+ "armorSpecialFall2016WarriorText": "Baluting Napahiran ng Lapot",
"armorSpecialFall2016WarriorNotes": "Mysteriously moist and mossy! Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2016.",
"armorSpecialFall2016MageText": "Cloak of Wickedness",
"armorSpecialFall2016MageNotes": "When your cloak flaps, you hear the sound of cackling laughter. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2016.",
@@ -635,185 +635,185 @@
"armorSpecialWinter2019HealerText": "Midnight Robe",
"armorSpecialWinter2019HealerNotes": "Without darkness, there wouldn't be any light. These dark robes help bring peace and rest to promote healing. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2018-2019.",
"armorMystery201402Text": "Messenger Robes",
- "armorMystery201402Notes": "Shimmering and strong, these robes have many pockets to carry letters. Confers no benefit. February 2014 Subscriber Item.",
+ "armorMystery201402Notes": "Shimmering and strong, these robes have many pockets to carry letters. Waláng pakinabang. February 2014 Subscriber Item.",
"armorMystery201403Text": "Forest Walker Armor",
- "armorMystery201403Notes": "This mossy armor of woven wood bends with the movement of the wearer. Confers no benefit. March 2014 Subscriber Item.",
+ "armorMystery201403Notes": "This mossy armor of woven wood bends with the movement of the wearer. Waláng pakinabang. March 2014 Subscriber Item.",
"armorMystery201405Text": "Flame of Heart",
- "armorMystery201405Notes": "Nothing can hurt you when you are swathed in flames! Confers no benefit. May 2014 Subscriber Item.",
+ "armorMystery201405Notes": "Nothing can hurt you when you are swathed in flames! Waláng pakinabang. May 2014 Subscriber Item.",
"armorMystery201406Text": "Octopus Robe",
- "armorMystery201406Notes": "This flexible robe makes it possible for its wearer to slip through even the tiniest cracks. Confers no benefit. June 2014 Subscriber Item.",
+ "armorMystery201406Notes": "This flexible robe makes it possible for its wearer to slip through even the tiniest cracks. Waláng pakinabang. June 2014 Subscriber Item.",
"armorMystery201407Text": "Undersea Explorer Suit",
- "armorMystery201407Notes": "Described alternatively as \"splooshy\", \"overly thick\" and \"frankly, kind of cumbersome\", this suit is the best friend of any intrepid undersea explorer. Confers no benefit. July 2014 Subscriber Item.",
+ "armorMystery201407Notes": "Described alternatively as \"splooshy\", \"overly thick\" and \"frankly, kind of cumbersome\", this suit is the best friend of any intrepid undersea explorer. Waláng pakinabang. July 2014 Subscriber Item.",
"armorMystery201408Text": "Sun Robes",
- "armorMystery201408Notes": "These robes are woven with sunlight and gold. Confers no benefit. August 2014 Subscriber Item.",
+ "armorMystery201408Notes": "These robes are woven with sunlight and gold. Waláng pakinabang. August 2014 Subscriber Item.",
"armorMystery201409Text": "Strider Vest",
- "armorMystery201409Notes": "A leaf-covered vest that camouflages the wearer. Confers no benefit. September 2014 Subscriber Item.",
+ "armorMystery201409Notes": "A leaf-covered vest that camouflages the wearer. Waláng pakinabang. September 2014 Subscriber Item.",
"armorMystery201410Text": "Goblin Gear",
- "armorMystery201410Notes": "Scaly, slimy, and strong! Confers no benefit. October 2014 Subscriber Item.",
+ "armorMystery201410Notes": "Scaly, slimy, and strong! Waláng pakinabang. October 2014 Subscriber Item.",
"armorMystery201412Text": "Penguin Suit",
- "armorMystery201412Notes": "You're a penguin! Confers no benefit. December 2014 Subscriber Item.",
+ "armorMystery201412Notes": "You're a penguin! Waláng pakinabang. December 2014 Subscriber Item.",
"armorMystery201501Text": "Starry Armor",
- "armorMystery201501Notes": "Galaxies shimmer in the metal of this armor, strengthening the wearer's resolve. Confers no benefit. January 2015 Subscriber Item.",
+ "armorMystery201501Notes": "Galaxies shimmer in the metal of this armor, strengthening the wearer's resolve. Waláng pakinabang. January 2015 Subscriber Item.",
"armorMystery201503Text": "Aquamarine Armor",
- "armorMystery201503Notes": "This blue mineral symbolizes good luck, happiness, and eternal productivity. Confers no benefit. March 2015 Subscriber Item.",
+ "armorMystery201503Notes": "This blue mineral symbolizes good luck, happiness, and eternal productivity. Waláng pakinabang. March 2015 Subscriber Item.",
"armorMystery201504Text": "Busy Bee Robe",
- "armorMystery201504Notes": "You'll be productive as a busy bee in this fetching robe! Confers no benefit. April 2015 Subscriber Item.",
+ "armorMystery201504Notes": "You'll be productive as a busy bee in this fetching robe! Waláng pakinabang. April 2015 Subscriber Item.",
"armorMystery201506Text": "Snorkel Suit",
- "armorMystery201506Notes": "Snorkel through a coral reef in this brightly-colored swim suit! Confers no benefit. June 2015 Subscriber Item.",
+ "armorMystery201506Notes": "Snorkel through a coral reef in this brightly-colored swim suit! Waláng pakinabang. June 2015 Subscriber Item.",
"armorMystery201508Text": "Cheetah Costume",
- "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.",
+ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Waláng pakinabang. August 2015 Subscriber Item.",
"armorMystery201509Text": "Werewolf Costume",
- "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.",
+ "armorMystery201509Notes": "This IS a costume, right? Waláng pakinabang. September 2015 Subscriber Item.",
"armorMystery201511Text": "Wooden Armor",
- "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.",
+ "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Waláng pakinabang. November 2015 Subscriber Item.",
"armorMystery201512Text": "Cold Fire Armor",
- "armorMystery201512Notes": "Summon the icy flames of winter! Confers no benefit. December 2015 Subscriber Item.",
+ "armorMystery201512Notes": "Summon the icy flames of winter! Waláng pakinabang. December 2015 Subscriber Item.",
"armorMystery201603Text": "Lucky Suit",
- "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 Subscriber Item.",
+ "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Waláng pakinabang. March 2016 Subscriber Item.",
"armorMystery201604Text": "Armor o' Leaves",
- "armorMystery201604Notes": "You, too, can be a small but fearsome leaf puff. Confers no benefit. April 2016 Subscriber Item.",
+ "armorMystery201604Notes": "You, too, can be a small but fearsome leaf puff. Waláng pakinabang. April 2016 Subscriber Item.",
"armorMystery201605Text": "Marching Bard Uniform",
- "armorMystery201605Notes": "Unlike the traditional bards who join adventuring parties, bards who join Habitican marching bands are known for grand parades, not dungeon raids. Confers no benefit. May 2016 Subscriber Item.",
+ "armorMystery201605Notes": "Unlike the traditional bards who join adventuring parties, bards who join Habitican marching bands are known for grand parades, not dungeon raids. Waláng pakinabang. May 2016 Subscriber Item.",
"armorMystery201606Text": "Selkie Tail",
- "armorMystery201606Notes": "This strong tail shimmers like sea foam crashing upon the shore. Confers no benefit. June 2016 Subscriber Item.",
+ "armorMystery201606Notes": "This strong tail shimmers like sea foam crashing upon the shore. Waláng pakinabang. June 2016 Subscriber Item.",
"armorMystery201607Text": "Seafloor Rogue Armor",
- "armorMystery201607Notes": "Blend into the sea floor with this stealthy aquatic armor. Confers no benefit. July 2016 Subscriber Item.",
+ "armorMystery201607Notes": "Blend into the sea floor with this stealthy aquatic armor. Waláng pakinabang. July 2016 Subscriber Item.",
"armorMystery201609Text": "Cow Armor",
- "armorMystery201609Notes": "Fit in with the rest of the herd in this snuggly armor! Confers no benefit. September 2016 Subscriber Item.",
+ "armorMystery201609Notes": "Fit in with the rest of the herd in this snuggly armor! Waláng pakinabang. September 2016 Subscriber Item.",
"armorMystery201610Text": "Spectral Armor",
- "armorMystery201610Notes": "Mysterious armor that will cause you to float like a ghost! Confers no benefit. October 2016 Subscriber Item.",
+ "armorMystery201610Notes": "Mysterious armor that will cause you to float like a ghost! Waláng pakinabang. October 2016 Subscriber Item.",
"armorMystery201612Text": "Nutcracker Armor",
- "armorMystery201612Notes": "Crack nuts in style in this spectacular holiday ensemble. Be careful not to pinch your fingers! Confers no benefit. December 2016 Subscriber Item.",
+ "armorMystery201612Notes": "Crack nuts in style in this spectacular holiday ensemble. Be careful not to pinch your fingers! Waláng pakinabang. December 2016 Subscriber Item.",
"armorMystery201703Text": "Shimmer Armor",
- "armorMystery201703Notes": "Though its colors are reminiscent of spring petals, this armor is stronger than steel! Confers no benefit. March 2017 Subscriber Item.",
+ "armorMystery201703Notes": "Though its colors are reminiscent of spring petals, this armor is stronger than steel! Waláng pakinabang. March 2017 Subscriber Item.",
"armorMystery201704Text": "Fairytale Armor",
- "armorMystery201704Notes": "Fairy folk crafted this armor from morning dew to capture the colors of the sunrise. Confers no benefit. April 2017 Subscriber Item.",
+ "armorMystery201704Notes": "Fairy folk crafted this armor from morning dew to capture the colors of the sunrise. Waláng pakinabang. April 2017 Subscriber Item.",
"armorMystery201707Text": "Jellymancer Armor",
- "armorMystery201707Notes": "This armor will help you blend in with the creatures of the ocean while you pursue undersea quests and adventures. Confers no benefit. July 2017 Subscriber Item.",
+ "armorMystery201707Notes": "This armor will help you blend in with the creatures of the ocean while you pursue undersea quests and adventures. Waláng pakinabang. July 2017 Subscriber Item.",
"armorMystery201710Text": "Imperious Imp Apparel",
- "armorMystery201710Notes": "Scaly, shiny, and strong! Confers no benefit. October 2017 Subscriber Item.",
+ "armorMystery201710Notes": "Scaly, shiny, and strong! Waláng pakinabang. October 2017 Subscriber Item.",
"armorMystery201711Text": "Carpet Rider Outfit",
- "armorMystery201711Notes": "This cozy sweater set will help keep you warm as you ride through the sky! Confers no benefit. November 2017 Subscriber Item.",
+ "armorMystery201711Notes": "This cozy sweater set will help keep you warm as you ride through the sky! Waláng pakinabang. November 2017 Subscriber Item.",
"armorMystery201712Text": "Candlemancer Armor",
- "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.",
+ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Waláng pakinabang. December 2017 Subscriber Item.",
"armorMystery201802Text": "Love Bug Armor",
- "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.",
+ "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Waláng pakinabang. February 2018 Subscriber Item.",
"armorMystery201806Text": "Alluring Anglerfish Tail",
- "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.",
+ "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Waláng pakinabang. June 2018 Subscriber Item.",
"armorMystery201807Text": "Sea Serpent Tail",
- "armorMystery201807Notes": "This powerful tail will propel you through the sea at incredible speeds! Confers no benefit. July 2018 Subscriber Item.",
+ "armorMystery201807Notes": "This powerful tail will propel you through the sea at incredible speeds! Waláng pakinabang. July 2018 Subscriber Item.",
"armorMystery201808Text": "Lava Dragon Armor",
- "armorMystery201808Notes": "This armor is made from the shed scales of the elusive (and extremely warm) Lava Dragon. Confers no benefit. August 2018 Subscriber Item.",
+ "armorMystery201808Notes": "This armor is made from the shed scales of the elusive (and extremely warm) Lava Dragon. Waláng pakinabang. August 2018 Subscriber Item.",
"armorMystery201809Text": "Armor of Autumn Leaves",
- "armorMystery201809Notes": "You are not only a small and fearsome leaf puff, you are sporting the most beautiful colors of the season! Confers no benefit. September 2018 Subscriber Item.",
+ "armorMystery201809Notes": "You are not only a small and fearsome leaf puff, you are sporting the most beautiful colors of the season! Waláng pakinabang. September 2018 Subscriber Item.",
"armorMystery201810Text": "Dark Forest Robes",
- "armorMystery201810Notes": "These robes are extra warm to protect you from the ghastly cold of haunted realms. Confers no benefit. October 2018 Subscriber Item.",
+ "armorMystery201810Notes": "These robes are extra warm to protect you from the ghastly cold of haunted realms. Waláng pakinabang. October 2018 Subscriber Item.",
"armorMystery301404Text": "Steampunk Suit",
- "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.",
+ "armorMystery301404Notes": "Dapper and dashing, wot! Waláng pakinabang. February 3015 Subscriber Item.",
"armorMystery301703Text": "Steampunk Peacock Gown",
- "armorMystery301703Notes": "This elegant gown is well-suited for even the most extravagant gala! Confers no benefit. March 3017 Subscriber Item.",
+ "armorMystery301703Notes": "This elegant gown is well-suited for even the most extravagant gala! Waláng pakinabang. March 3017 Subscriber Item.",
"armorMystery301704Text": "Steampunk Pheasant Dress",
- "armorMystery301704Notes": "This fine outfit is perfect for a night out and about or a day in your gadget workshop! Confers no benefit. April 3017 Subscriber Item.",
+ "armorMystery301704Notes": "This fine outfit is perfect for a night out and about or a day in your gadget workshop! Waláng pakinabang. April 3017 Subscriber Item.",
"armorArmoireLunarArmorText": "Soothing Lunar Armor",
- "armorArmoireLunarArmorNotes": "The light of the moon will make you strong and savvy. Nagtataás ng Lakás ng <%= str %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Soothing Lunar Set (Item 2 of 3).",
+ "armorArmoireLunarArmorNotes": "The light of the moon will make you strong and savvy. Nagtataás ng Lakás ng <%= str %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Soothing Lunar Set (Iká-2 ng 3).",
"armorArmoireGladiatorArmorText": "Gladiator Armor",
- "armorArmoireGladiatorArmorNotes": "To be a gladiator you must be not only cunning... but strong. Nagtataás ng Pandamá <%= per %> at Lakás ng <%= str %>. Enchanted Armoire: Gladiator Set (Item 2 of 3).",
+ "armorArmoireGladiatorArmorNotes": "To be a gladiator you must be not only cunning... but strong. Nagtataás ng Pandamá <%= per %> at Lakás ng <%= str %>. Mahiwagang Kabán: Gladiator Set (Iká-2 ng 3).",
"armorArmoireRancherRobesText": "Rancher Robes",
- "armorArmoireRancherRobesNotes": "Wrangle your mounts and round up your pets while wearing these magical Rancher Robes! Nagtataás ng Lakás ng <%= str %>, Pandamá ng <%= per %>, at Katalinuhan ng <%= int %>. Enchanted Armoire: Rancher Set (Item 2 of 3).",
- "armorArmoireGoldenTogaText": "Golden Toga",
- "armorArmoireGoldenTogaNotes": "This glimmering toga is only worn by true heroes. Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Golden Toga Set (Item 1 of 3).",
+ "armorArmoireRancherRobesNotes": "Wrangle your mounts and round up your pets while wearing these magical Rancher Robes! Nagtataás ng Lakás ng <%= str %>, Pandamá ng <%= per %>, at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Rancher Set (Iká-2 ng 3).",
+ "armorArmoireGoldenTogaText": "Gintóng Toga",
+ "armorArmoireGoldenTogaNotes": "This glimmering toga is only worn by true heroes. Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Kumpól ng Gintóng Toga (Iká-1 ng 3).",
"armorArmoireHornedIronArmorText": "Horned Iron Armor",
- "armorArmoireHornedIronArmorNotes": "Fiercely hammered from iron, this horned armor is nearly impossible to break. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Enchanted Armoire: Horned Iron Set (Item 2 of 3).",
+ "armorArmoireHornedIronArmorNotes": "Fiercely hammered from iron, this horned armor is nearly impossible to break. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Horned Iron Set (Iká-2 ng 3).",
"armorArmoirePlagueDoctorOvercoatText": "Plague Doctor Overcoat",
- "armorArmoirePlagueDoctorOvercoatNotes": "An authentic overcoat worn by the doctors who battle the Plague of Procrastination! Nagtataás ng Katalinuhan ng <%= int %>, Lakás ng <%= str %>, at Pangangatawán ng <%= con %>. Enchanted Armoire: Plague Doctor Set (Item 3 of 3).",
+ "armorArmoirePlagueDoctorOvercoatNotes": "An authentic overcoat worn by the doctors who battle the Plague of Procrastination! Nagtataás ng Katalinuhan ng <%= int %>, Lakás ng <%= str %>, at Pangangatawán ng <%= con %>. Mahiwagang Kabán: Plague Doctor Set (Iká-3 ng 3).",
"armorArmoireShepherdRobesText": "Shepherd Robes",
- "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Nagtataás ng Lakás at Pandamá ng <%= attrs %> bawat isá.Enchanted Armoire: Shepherd Set (Item 2 of 3).",
+ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Nagtataás ng Lakás at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Shepherd Set (Iká-2 ng 3).",
"armorArmoireRoyalRobesText": "Royal Robes",
- "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Royal Set (Item 3 of 3).",
+ "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Royal Set (Iká-3 ng 3).",
"armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes",
- "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).",
+ "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán Crystal Crescent Set (Iká-2 ng 3).",
"armorArmoireDragonTamerArmorText": "Dragon Tamer Armor",
- "armorArmoireDragonTamerArmorNotes": "This tough armor is impenetrable to flame. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Dragon Tamer Set (Item 3 of 3).",
+ "armorArmoireDragonTamerArmorNotes": "This tough armor is impenetrable to flame. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Dragon Tamer Set (Iká-3 ng 3).",
"armorArmoireBarristerRobesText": "Barrister Robes",
- "armorArmoireBarristerRobesNotes": "Very serious and stately. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).",
+ "armorArmoireBarristerRobesNotes": "Very serious and stately. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Barrister Set (Iká-2 ng 3).",
"armorArmoireJesterCostumeText": "Jester Costume",
- "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).",
+ "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Jester Set (Iká-2 ng 3).",
"armorArmoireMinerOverallsText": "Miner Overalls",
- "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).",
+ "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Miner Set (Iká-2 ng 3).",
"armorArmoireBasicArcherArmorText": "Basic Archer Armor",
- "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests.Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).",
+ "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests.Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Basic Archer Set (Iká-2 ng 3).",
"armorArmoireGraduateRobeText": "Graduate Robe",
- "armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Graduate Set (Item 2 of 3).",
+ "armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Graduate Set (Iká-2 ng 3).",
"armorArmoireStripedSwimsuitText": "Striped Swimsuit",
- "armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
+ "armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Seaside Set (Iká-2 ng 3).",
"armorArmoireCannoneerRagsText": "Cannoneer Rags",
- "armorArmoireCannoneerRagsNotes": "These rags be tougher than they look. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Cannoneer Set (Item 2 of 3).",
+ "armorArmoireCannoneerRagsNotes": "These rags be tougher than they look. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Cannoneer Set (Iká-2 ng 3).",
"armorArmoireFalconerArmorText": "Falconer Armor",
- "armorArmoireFalconerArmorNotes": "Keep away talon attacks with this sturdy armor! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Falconer Set (Item 1 of 3).",
+ "armorArmoireFalconerArmorNotes": "Keep away talon attacks with this sturdy armor! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Falconer Set (Iká-1 ng 3).",
"armorArmoireVermilionArcherArmorText": "Vermilion Archer Armor",
- "armorArmoireVermilionArcherArmorNotes": "This armor is made of a specially enchanted red metal for maximum protection, minimal restriction, and maximum flair! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Vermilion Archer Set (Item 2 of 3).",
+ "armorArmoireVermilionArcherArmorNotes": "This armor is made of a specially enchanted red metal for maximum protection, minimal restriction, and maximum flair! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Vermilion Archer Set (Iká-2 ng 3).",
"armorArmoireOgreArmorText": "Ogre Armor",
- "armorArmoireOgreArmorNotes": "This armor imitates an Ogre's tough skin, but it's lined with fleece for human comfort! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Ogre Outfit (Item 3 of 3).",
+ "armorArmoireOgreArmorNotes": "This armor imitates an Ogre's tough skin, but it's lined with fleece for human comfort! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Ogre Outfit (Iká-3 ng 3).",
"armorArmoireIronBlueArcherArmorText": "Iron Blue Archer Armor",
- "armorArmoireIronBlueArcherArmorNotes": "This armor will protect you from flying arrows on the battlefield! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Iron Archer Set (Item 2 of 3).",
+ "armorArmoireIronBlueArcherArmorNotes": "This armor will protect you from flying arrows on the battlefield! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Iron Archer Set (Iká-2 ng 3).",
"armorArmoireRedPartyDressText": "Red Party Dress",
- "armorArmoireRedPartyDressNotes": "You're strong, tough, smart, and so fashionable! Nagtataás ng Lakás, Pangangatawán, at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Red Hairbow Set (Item 2 of 2).",
+ "armorArmoireRedPartyDressNotes": "You're strong, tough, smart, and so fashionable! Nagtataás ng Lakás, Pangangatawán, at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Red Hairbow Set (Iká-2 ng 2).",
"armorArmoireWoodElfArmorText": "Wood Elf Armor",
- "armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
+ "armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Wood Elf Set (Iká-2 ng 3).",
"armorArmoireRamFleeceRobesText": "Ram Fleece Robes",
- "armorArmoireRamFleeceRobesNotes": "These robes keep you warm even through the fiercest blizzard. Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Enchanted Armoire: Ram Barbarian Set (Item 2 of 3).",
+ "armorArmoireRamFleeceRobesNotes": "These robes keep you warm even through the fiercest blizzard. Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Mahiwagang Kabán: Ram Barbarian Set (Iká-2 ng 3).",
"armorArmoireGownOfHeartsText": "Gown of Hearts",
- "armorArmoireGownOfHeartsNotes": "This gown has all the frills! But that's not all, it will also increase your heart's fortitude. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Queen of Hearts Set (Item 2 of 3).",
+ "armorArmoireGownOfHeartsNotes": "This gown has all the frills! But that's not all, it will also increase your heart's fortitude. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Queen of Hearts Set (Iká-2 ng 3).",
"armorArmoireMushroomDruidArmorText": "Mushroom Druid Armor",
- "armorArmoireMushroomDruidArmorNotes": "This woody brown armor, capped with tiny mushrooms, will help you hear the whispers of forest life. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Enchanted Armoire: Mushroom Druid Set (Item 2 of 3).",
+ "armorArmoireMushroomDruidArmorNotes": "This woody brown armor, capped with tiny mushrooms, will help you hear the whispers of forest life. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Mushroom Druid Set (Iká-2 ng 3).",
"armorArmoireGreenFestivalYukataText": "Green Festival Yukata",
- "armorArmoireGreenFestivalYukataNotes": "This fine lightweight yukata will keep you cool while you enjoy any festive occasion. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Festival Attire Set (Item 1 of 3).",
+ "armorArmoireGreenFestivalYukataNotes": "This fine lightweight yukata will keep you cool while you enjoy any festive occasion. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Festival Attire Set (Iká-1 ng 3).",
"armorArmoireMerchantTunicText": "Merchant Tunic",
- "armorArmoireMerchantTunicNotes": "The wide sleeves of this tunic are perfect for stashing the coins you've earned! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Merchant Set (Item 2 of 3).",
+ "armorArmoireMerchantTunicNotes": "The wide sleeves of this tunic are perfect for stashing the coins you've earned! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Merchant Set (Iká-2 ng 3).",
"armorArmoireVikingTunicText": "Viking Tunic",
- "armorArmoireVikingTunicNotes": "This warm woolen tunic includes a cloak for extra coziness even in ocean gales. Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Enchanted Armoire: Viking Set (Item 1 of 3).",
+ "armorArmoireVikingTunicNotes": "This warm woolen tunic includes a cloak for extra coziness even in ocean gales. Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Mahiwagang Kabán: Viking Set (Iká-1 ng 3).",
"armorArmoireSwanDancerTutuText": "Swan Dancer Tutu",
- "armorArmoireSwanDancerTutuNotes": "You just might fly away into the air as you spin in this gorgeous feathered tutu. Nagtataás ng Katalinuhan at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Swan Dancer Set (Item 2 of 3).",
+ "armorArmoireSwanDancerTutuNotes": "You just might fly away into the air as you spin in this gorgeous feathered tutu. Nagtataás ng Katalinuhan at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Swan Dancer Set (Iká-2 ng 3).",
"armorArmoireAntiProcrastinationArmorText": "Anti-Procrastination Armor",
- "armorArmoireAntiProcrastinationArmorNotes": "Infused with ancient productivity spells, this steel armor will give you extra strength to battle your tasks. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Anti-Procrastination Set (Item 2 of 3).",
+ "armorArmoireAntiProcrastinationArmorNotes": "Infused with ancient productivity spells, this steel armor will give you extra strength to battle your tasks. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Anti-Procrastination Set (Iká-2 ng 3).",
"armorArmoireYellowPartyDressText": "Yellow Party Dress",
- "armorArmoireYellowPartyDressNotes": "You're perceptive, strong, smart, and so fashionable! Nagtataás ng Pandamá, Lakás, at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Yellow Hairbow Set (Item 2 of 2).",
+ "armorArmoireYellowPartyDressNotes": "You're perceptive, strong, smart, and so fashionable! Nagtataás ng Pandamá, Lakás, at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Yellow Hairbow Set (Iká-2 ng 2).",
"armorArmoireFarrierOutfitText": "Farrier Outfit",
- "armorArmoireFarrierOutfitNotes": "These sturdy work clothes can stand up to the messiest Stable. Nagtataás ng Katalinuhan, Pangangatawán, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Farrier Set (Item 2 of 3).",
+ "armorArmoireFarrierOutfitNotes": "These sturdy work clothes can stand up to the messiest Stable. Nagtataás ng Katalinuhan, Pangangatawán, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Farrier Set (Iká-2 ng 3).",
"armorArmoireCandlestickMakerOutfitText": "Candlestick Maker Outfit",
- "armorArmoireCandlestickMakerOutfitNotes": "This sturdy set of clothes will protect you from hot wax spills as you ply your craft! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Candlestick Maker Set (Item 1 of 3).",
+ "armorArmoireCandlestickMakerOutfitNotes": "This sturdy set of clothes will protect you from hot wax spills as you ply your craft! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Candlestick Maker Set (Iká-1 ng 3).",
"armorArmoireWovenRobesText": "Woven Robes",
- "armorArmoireWovenRobesNotes": "Display your weaving work proudly by wearing this colorful robe! Nagtataás ng Pangangatawán ng <%= con %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Weaver Set (Item 1 of 3).",
+ "armorArmoireWovenRobesNotes": "Display your weaving work proudly by wearing this colorful robe! Nagtataás ng Pangangatawán ng <%= con %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Weaver Set (Iká-1 ng 3).",
"armorArmoireLamplightersGreatcoatText": "Lamplighter's Greatcoat",
- "armorArmoireLamplightersGreatcoatNotes": "This heavy woolen coat can stand up to the harshest wintry night! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Lamplighter's Set (Item 2 of 4).",
+ "armorArmoireLamplightersGreatcoatNotes": "This heavy woolen coat can stand up to the harshest wintry night! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Lamplighter's Set (Iká-2 ng 4).",
"armorArmoireCoachDriverLiveryText": "Coach Driver's Livery",
- "armorArmoireCoachDriverLiveryNotes": "This heavy overcoat will protect you from the weather as you drive. Plus it looks pretty snazzy, too! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Coach Driver Set (Item 1 of 3).",
+ "armorArmoireCoachDriverLiveryNotes": "This heavy overcoat will protect you from the weather as you drive. Plus it looks pretty snazzy, too! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Coach Driver Set (Iká-1 ng 3).",
"armorArmoireRobeOfDiamondsText": "Robe of Diamonds",
- "armorArmoireRobeOfDiamondsNotes": "These royal robes not only make you appear noble, they allow you to see the nobility within others. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: King of Diamonds Set (Item 1 of 4).",
+ "armorArmoireRobeOfDiamondsNotes": "These royal robes not only make you appear noble, they allow you to see the nobility within others. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: King of Diamonds Set (Iká-1 ng 4).",
"armorArmoireFlutteryFrockText": "Fluttery Frock",
- "armorArmoireFlutteryFrockNotes": "A light and airy gown with a wide skirt the butterflies might mistake for a giant blossom! Nagtataás ng Pangangatawán, Pandamá, at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Fluttery Frock Set (Item 1 of 4).",
+ "armorArmoireFlutteryFrockNotes": "A light and airy gown with a wide skirt the butterflies might mistake for a giant blossom! Nagtataás ng Pangangatawán, Pandamá, at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Fluttery Frock Set (Iká-1 ng 4).",
"armorArmoireCobblersCoverallsText": "Cobbler's Coveralls",
- "armorArmoireCobblersCoverallsNotes": "These sturdy coveralls have lots of pockets for tools, leather scraps, and other useful items! Nagtataás ng Pandamá at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Cobbler Set (Item 1 of 3).",
+ "armorArmoireCobblersCoverallsNotes": "These sturdy coveralls have lots of pockets for tools, leather scraps, and other useful items! Nagtataás ng Pandamá at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Cobbler Set (Iká-1 ng 3).",
"armorArmoireGlassblowersCoverallsText": "Glassblower's Coveralls",
- "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).",
+ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Glassblower Set (Iká-2 ng 4).",
"armorArmoireBluePartyDressText": "Blue Party Dress",
- "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Nagtataás ng Pandamá, Lakás, at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).",
+ "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Nagtataás ng Pandamá, Lakás, at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Blue Hairbow Set (Iká-2 ng 2).",
"armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown",
- "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).",
+ "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Piratical Princess Set (Iká-2 ng 4).",
"armorArmoireJeweledArcherArmorText": "Jeweled Archer Armor",
- "armorArmoireJeweledArcherArmorNotes": "This finely crafted armor will protect you from projectiles or errant red Dailies! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Jeweled Archer Set (Item 2 of 3).",
+ "armorArmoireJeweledArcherArmorNotes": "This finely crafted armor will protect you from projectiles or errant red Dailies! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Jeweled Archer Set (Iká-2 ng 3).",
"armorArmoireCoverallsOfBookbindingText": "Coveralls of Bookbinding",
- "armorArmoireCoverallsOfBookbindingNotes": "Everything you need in a set of coveralls, including pockets for everything. A pair of goggles, loose change, a golden ring... Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Enchanted Armoire: Bookbinder Set (Item 2 of 4).",
+ "armorArmoireCoverallsOfBookbindingNotes": "Everything you need in a set of coveralls, including pockets for everything. A pair of goggles, loose change, a gintóng singsíng... Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Bookbinder Set (Iká-2 ng 4).",
"armorArmoireRobeOfSpadesText": "Robe of Spades",
- "armorArmoireRobeOfSpadesNotes": "These luxuriant robes conceal hidden pockets for treasures or weapons--your choice! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Ace of Spades Set (Item 2 of 3).",
+ "armorArmoireRobeOfSpadesNotes": "These luxuriant robes conceal hidden pockets for treasures or weapons--your choice! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Ace of Spades Set (Iká-2 ng 3).",
"armorArmoireSoftBlueSuitText": "Soft Blue Suit",
- "armorArmoireSoftBlueSuitNotes": "Blue is a calming colour. So calming, some even wear this soft outfit to sleep... zZz. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Enchanted Armoire: Blue Loungewear Set (Item 2 of 3).",
+ "armorArmoireSoftBlueSuitNotes": "Blue is a calming colour. So calming, some even wear this soft outfit to sleep... zZz. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Blue Loungewear Set (Iká-2 ng 3).",
"armorArmoireSoftGreenSuitText": "Soft Green Suit",
- "armorArmoireSoftGreenSuitNotes": "Green is the most refreshing color! Ideal for resting those tired eyes... mmm, or even a nap... Nagtataás ng Pangangatawán at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Green Loungewear Set (Item 2 of 3).",
+ "armorArmoireSoftGreenSuitNotes": "Green is the most refreshing color! Ideal for resting those tired eyes... mmm, or even a nap... Nagtataás ng Pangangatawán at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Green Loungewear Set (Iká-2 ng 3).",
"armorArmoireSoftRedSuitText": "Soft Red Suit",
- "armorArmoireSoftRedSuitNotes": "Red is such an invigorating color. If you need to wake up bright and early, this suit could make the perfect pajamas... Nagtataás ng Katalinuhan ng <%= int %> at Lakás ng <%= str %>. Enchanted Armoire: Red Loungewear Set (Item 2 of 3).",
+ "armorArmoireSoftRedSuitNotes": "Red is such an invigorating color. If you need to wake up bright and early, this suit could make the perfect pajamas... Nagtataás ng Katalinuhan ng <%= int %> at Lakás ng <%= str %>. Mahiwagang Kabán: Red Loungewear Set (Iká-2 ng 3).",
"armorArmoireScribesRobeText": "Scribe's Robes",
- "armorArmoireScribesRobeNotes": "These velvety robes are woven with inspirational and motivational magic. Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Scribe Set (Item 1 of 3).",
+ "armorArmoireScribesRobeNotes": "These velvety robes are woven with inspirational and motivational magic. Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Scribe Set (Iká-1 ng 3).",
"headgear": "helm",
"headgearCapitalized": "Headgear",
"headBase0Text": "No Headgear",
@@ -826,7 +826,7 @@
"headWarrior3Notes": "Thick steel helmet, proof against any blow. Nagtataás ng Lakás ng <%= str %>.",
"headWarrior4Text": "Red Helm",
"headWarrior4Notes": "Set with rubies for power, and glows when the wearer is angered. Nagtataás ng Lakás ng <%= str %>.",
- "headWarrior5Text": "Golden Helm",
+ "headWarrior5Text": "Gintóng Panánggaláng",
"headWarrior5Notes": "Regal crown bound to shining armor. Nagtataás ng Lakás ng <%= str %>.",
"headRogue1Text": "Leather Hood",
"headRogue1Notes": "Basic protective cowl. Nagtataás ng Pandamá ng <%= per %>.",
@@ -891,13 +891,13 @@
"headSpecialKabutoText": "Kabuto",
"headSpecialKabutoNotes": "This helm is functional and beautiful! Your enemies will become distracted admiring it. Nagtataás ng Katalinuhan ng <%= int %>.",
"headSpecialNamingDay2017Text": "Royal Purple Gryphon Helm",
- "headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Confers no benefit.",
+ "headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Waláng pakinabang.",
"headSpecialTurkeyHelmBaseText": "Turkey Helm",
- "headSpecialTurkeyHelmBaseNotes": "Your Turkey Day look will be complete when you don this beaked helm! Confers no benefit.",
+ "headSpecialTurkeyHelmBaseNotes": "Your Turkey Day look will be complete when you don this beaked helm! Waláng pakinabang.",
"headSpecialTurkeyHelmGildedText": "Gilded Turkey Helm",
- "headSpecialTurkeyHelmGildedNotes": "Gobble gobble! Bling bling! Confers no benefit.",
+ "headSpecialTurkeyHelmGildedNotes": "Gobble gobble! Bling bling! Waláng pakinabang.",
"headSpecialNyeText": "Absurd Party Hat",
- "headSpecialNyeNotes": "You've received an Absurd Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
+ "headSpecialNyeNotes": "You've received an Absurd Party Hat! Wear it with pride while ringing in the New Year! Waláng pakinabang.",
"headSpecialYetiText": "Yeti-Tamer Helm",
"headSpecialYetiNotes": "An adorably fearsome hat. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2013-2014.",
"headSpecialSkiText": "Ski-sassin Helm",
@@ -931,7 +931,7 @@
"headSpecialFallHealerText": "Head Bandages",
"headSpecialFallHealerNotes": "Highly sanitary and very fashionable. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2014.",
"headSpecialNye2014Text": "Silly Party Hat",
- "headSpecialNye2014Notes": "You've received a Silly Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
+ "headSpecialNye2014Notes": "You've received a Silly Party Hat! Wear it with pride while ringing in the New Year! Waláng pakinabang.",
"headSpecialWinter2015RogueText": "Icicle Drake Mask",
"headSpecialWinter2015RogueNotes": "You are truly, definitely, absolutely a genuine Icicle Drake. You are not infiltrating the Icicle Drake hives. You have no interest at all in the hoards of riches rumored to lie in their frigid tunnels. Rawr. Nagtataás ng Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2014-2015.",
"headSpecialWinter2015WarriorText": "Gingerbread Helm",
@@ -965,7 +965,7 @@
"headSpecialFall2015HealerText": "Hat of Frog",
"headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2015.",
"headSpecialNye2015Text": "Ridiculous Party Hat",
- "headSpecialNye2015Notes": "You've received a Ridiculous Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
+ "headSpecialNye2015Notes": "You've received a Ridiculous Party Hat! Wear it with pride while ringing in the New Year! Waláng pakinabang.",
"headSpecialWinter2016RogueText": "Cocoa Helm",
"headSpecialWinter2016RogueNotes": "The protective scarf on this cozy helm is only removed to sip warm winter beverages. Nagtataás ng Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2015-2016.",
"headSpecialWinter2016WarriorText": "Snowman Cap",
@@ -999,7 +999,7 @@
"headSpecialFall2016HealerText": "Medusa's Crown",
"headSpecialFall2016HealerNotes": "Woe to anyone who looks you in the eyes... Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2016.",
"headSpecialNye2016Text": "Whimsical Party Hat",
- "headSpecialNye2016Notes": "You've received a Whimsical Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
+ "headSpecialNye2016Notes": "You've received a Whimsical Party Hat! Wear it with pride while ringing in the New Year! Waláng pakinabang.",
"headSpecialWinter2017RogueText": "Frosty Helm",
"headSpecialWinter2017RogueNotes": "Fashioned from ice crystals, this helm will help you move unnoticed through wintry landscapes. Nagtataás ng Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2016-2017.",
"headSpecialWinter2017WarriorText": "Hockey Helm",
@@ -1033,7 +1033,7 @@
"headSpecialFall2017HealerText": "Haunted House Helm",
"headSpecialFall2017HealerNotes": "Invite spooky spirits and friendly creatures to seek your healing powers in this helm! Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2017.",
"headSpecialNye2017Text": "Fanciful Party Hat",
- "headSpecialNye2017Notes": "You've received a Fanciful Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
+ "headSpecialNye2017Notes": "You've received a Fanciful Party Hat! Wear it with pride while ringing in the New Year! Waláng pakinabang.",
"headSpecialWinter2018RogueText": "Reindeer Helm",
"headSpecialWinter2018RogueNotes": "The perfect holiday disguise, with a built-in headlight! Nagtataás ng Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2017-2018.",
"headSpecialWinter2018WarriorText": "Giftbox Helm",
@@ -1067,7 +1067,7 @@
"headSpecialFall2018HealerText": "Ravenous Helm",
"headSpecialFall2018HealerNotes": "This helm is fashioned from a carnivorous plant renowned for its ability to dispatch zombies and other inconveniences. Just watch out that it doesn't chew on your head. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2018.",
"headSpecialNye2018Text": "Outlandish Party Hat",
- "headSpecialNye2018Notes": "You've received an Outlandish Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
+ "headSpecialNye2018Notes": "You've received an Outlandish Party Hat! Wear it with pride while ringing in the New Year! Waláng pakinabang.",
"headSpecialWinter2019RogueText": "Poinsettia Helm",
"headSpecialWinter2019RogueNotes": "This leafy helm will attain its brightest red color right around the darkest days of winter, helping you blend in with holiday decor! Nagtataás ng Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2018-2019.",
"headSpecialWinter2019WarriorText": "Glacial Helm",
@@ -1079,191 +1079,191 @@
"headSpecialGaymerxText": "Rainbow Warrior Helm",
"headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.",
"headMystery201402Text": "Winged Helm",
- "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.",
+ "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Waláng pakinabang. February 2014 Subscriber Item.",
"headMystery201405Text": "Flame of Mind",
- "headMystery201405Notes": "Burn away the procrastination! Confers no benefit. May 2014 Subscriber Item.",
+ "headMystery201405Notes": "Burn away the procrastination! Waláng pakinabang. May 2014 Subscriber Item.",
"headMystery201406Text": "Crown of Tentacles",
- "headMystery201406Notes": "The tentacles of this helm gather up magical energy from the water. Confers no benefit. June 2014 Subscriber Item.",
+ "headMystery201406Notes": "The tentacles of this helm gather up magical energy from the water. Waláng pakinabang. June 2014 Subscriber Item.",
"headMystery201407Text": "Undersea Explorer Helm",
- "headMystery201407Notes": "This helm makes it easy to explore underwater! It sort of makes you look like a googly-eyed fish, too. Very retro! Confers no benefit. July 2014 Subscriber Item.",
+ "headMystery201407Notes": "This helm makes it easy to explore underwater! It sort of makes you look like a googly-eyed fish, too. Very retro! Waláng pakinabang. July 2014 Subscriber Item.",
"headMystery201408Text": "Sun Crown",
- "headMystery201408Notes": "This blazing crown gives its wearer great strength of will. Confers no benefit. August 2014 Subscriber Item.",
+ "headMystery201408Notes": "This blazing crown gives its wearer great strength of will. Waláng pakinabang. August 2014 Subscriber Item.",
"headMystery201411Text": "Steel Helm of Sporting",
- "headMystery201411Notes": "This is the traditional helmet worn in the beloved Habitican sport of Balance Ball, which consists of covering yourself with heavy protective gear and then committing to a healthy work-life balance..... WHILE PURSUED BY HIPPOGRIFFS. Confers no benefit. November 2014 Subscriber Item.",
+ "headMystery201411Notes": "This is the traditional helmet worn in the beloved Habitican sport of Balance Ball, which consists of covering yourself with heavy protective gear and then committing to a healthy work-life balance..... WHILE PURSUED BY HIPPOGRIFFS. Waláng pakinabang. November 2014 Subscriber Item.",
"headMystery201412Text": "Penguin Hat",
- "headMystery201412Notes": "Who's a penguin? Confers no benefit. December 2014 Subscriber Item.",
+ "headMystery201412Notes": "Who's a penguin? Waláng pakinabang. December 2014 Subscriber Item.",
"headMystery201501Text": "Starry Helm",
- "headMystery201501Notes": "The constellations flicker and swirl in this helm, guiding the wearer's thoughts towards focus. Confers no benefit. January 2015 Subscriber Item.",
+ "headMystery201501Notes": "The constellations flicker and swirl in this helm, guiding the wearer's thoughts towards focus. Waláng pakinabang. January 2015 Subscriber Item.",
"headMystery201505Text": "Green Knight Helm",
- "headMystery201505Notes": "The green plume on this iron helm waves proudly. Confers no benefit. May 2015 Subscriber Item.",
+ "headMystery201505Notes": "The green plume on this iron helm waves proudly. Waláng pakinabang. May 2015 Subscriber Item.",
"headMystery201508Text": "Cheetah Hat",
- "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.",
+ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Waláng pakinabang. August 2015 Subscriber Item.",
"headMystery201509Text": "Werewolf Mask",
- "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.",
+ "headMystery201509Notes": "This IS a mask, right? Waláng pakinabang. September 2015 Subscriber Item.",
"headMystery201511Text": "Log Crown",
- "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.",
+ "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Waláng pakinabang. November 2015 Subscriber Item.",
"headMystery201512Text": "Winter Flame",
- "headMystery201512Notes": "These flames burn cold with pure intellect. Confers no benefit. December 2015 Subscriber Item.",
+ "headMystery201512Notes": "These flames burn cold with pure intellect. Waláng pakinabang. December 2015 Subscriber Item.",
"headMystery201601Text": "Helm of True Resolve",
- "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.",
+ "headMystery201601Notes": "Stay resolute, brave champion! Waláng pakinabang. January 2016 Subscriber Item.",
"headMystery201602Text": "Heartbreaker Hood",
- "headMystery201602Notes": "Shield your identity from all your admirers. Confers no benefit. February 2016 Subscriber Item.",
+ "headMystery201602Notes": "Shield your identity from all your admirers. Waláng pakinabang. February 2016 Subscriber Item.",
"headMystery201603Text": "Lucky Hat",
- "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 Subscriber Item.",
+ "headMystery201603Notes": "This top hat is a magical good-luck charm. Waláng pakinabang. March 2016 Subscriber Item.",
"headMystery201604Text": "Crown o' Flowers",
- "headMystery201604Notes": "These woven flowers make a surprisingly strong helm! Confers no benefit. April 2016 Subscriber Item.",
+ "headMystery201604Notes": "These woven flowers make a surprisingly strong helm! Waláng pakinabang. April 2016 Subscriber Item.",
"headMystery201605Text": "Marching Bard Hat",
- "headMystery201605Notes": "Seventy-six dragons led the big parade, with a hundred and ten gryphons close at hand! Confers no benefit. May 2016 Subscriber Item.",
+ "headMystery201605Notes": "Seventy-six dragons led the big parade, with a hundred and ten gryphons close at hand! Waláng pakinabang. May 2016 Subscriber Item.",
"headMystery201606Text": "Selkie Cap",
- "headMystery201606Notes": "Hum the tune of the ocean as you blend in with the frolicking seals! Confers no benefit. June 2016 Subscriber Item.",
+ "headMystery201606Notes": "Hum the tune of the ocean as you blend in with the frolicking seals! Waláng pakinabang. June 2016 Subscriber Item.",
"headMystery201607Text": "Seafloor Rogue Helm",
- "headMystery201607Notes": "The kelp growing from this helm helps camouflage you. Confers no benefit. July 2016 Subscriber Item.",
+ "headMystery201607Notes": "The kelp growing from this helm helps camouflage you. Waláng pakinabang. July 2016 Subscriber Item.",
"headMystery201608Text": "Helm of Lightning",
- "headMystery201608Notes": "This crackling helm conducts electricity! Confers no benefit. August 2016 Subscriber Item.",
+ "headMystery201608Notes": "This crackling helm conducts electricity! Waláng pakinabang. August 2016 Subscriber Item.",
"headMystery201609Text": "Cow Hat",
- "headMystery201609Notes": "You'll never want to remooooove this cow hat. Confers no benefit. September 2016 Subscriber Item.",
+ "headMystery201609Notes": "You'll never want to remooooove this cow hat. Waláng pakinabang. September 2016 Subscriber Item.",
"headMystery201610Text": "Spectral Flame",
- "headMystery201610Notes": "These flames will awaken your ghostly power. Confers no benefit. October 2016 Subscriber Item.",
+ "headMystery201610Notes": "These flames will awaken your ghostly power. Waláng pakinabang. October 2016 Subscriber Item.",
"headMystery201611Text": "Fancy Feasting Hat",
- "headMystery201611Notes": "You're guaranteed to be the fanciest person at the feast in this plumed chapeau. Confers no benefit. November 2016 Subscriber Item.",
+ "headMystery201611Notes": "You're guaranteed to be the fanciest person at the feast in this plumed chapeau. Waláng pakinabang. November 2016 Subscriber Item.",
"headMystery201612Text": "Nutcracker Helm",
- "headMystery201612Notes": "This tall and splendid helm adds a magnificent element to your holiday apparel! Confers no benefit. December 2016 Subscriber Item.",
+ "headMystery201612Notes": "This tall and splendid helm adds a magnificent element to your holiday apparel! Waláng pakinabang. December 2016 Subscriber Item.",
"headMystery201702Text": "Heartstealer Hood",
- "headMystery201702Notes": "Though this hood conceals your face, it only magnifies your powers of attraction! Confers no benefit. February 2017 Subscriber Item.",
+ "headMystery201702Notes": "Though this hood conceals your face, it only magnifies your powers of attraction! Waláng pakinabang. February 2017 Subscriber Item.",
"headMystery201703Text": "Shimmer Helm",
- "headMystery201703Notes": "The soft light reflected from this horned helm will soothe even the most enraged foe. Confers no benefit. March 2017 Subscriber Item.",
+ "headMystery201703Notes": "The soft light reflected from this horned helm will soothe even the most enraged foe. Waláng pakinabang. March 2017 Subscriber Item.",
"headMystery201705Text": "Feathered Fighter Helm",
- "headMystery201705Notes": "Habitica is known for its fierce and productive Gryphon Warriors! Join their prestigious ranks when you don this feathery helm. Confers no benefit. May 2017 Subscriber Item.",
+ "headMystery201705Notes": "Habitica is known for its fierce and productive Gryphon Warriors! Join their prestigious ranks when you don this feathery helm. Waláng pakinabang. May 2017 Subscriber Item.",
"headMystery201707Text": "Jellymancer Helm",
- "headMystery201707Notes": "Need some extra hands for your tasks? This translucent jelly helm has quite a few tentacles to lend you help! Confers no benefit. July 2017 Subscriber Item.",
+ "headMystery201707Notes": "Need some extra hands for your tasks? This translucent jelly helm has quite a few tentacles to lend you help! Waláng pakinabang. July 2017 Subscriber Item.",
"headMystery201710Text": "Imperious Imp Helm",
- "headMystery201710Notes": "This helm makes you look intimidating... but it won't do any favors for your depth perception! Confers no benefit. October 2017 Subscriber Item.",
+ "headMystery201710Notes": "This helm makes you look intimidating... but it won't do any favors for your depth perception! Waláng pakinabang. October 2017 Subscriber Item.",
"headMystery201712Text": "Candlemancer Crown",
- "headMystery201712Notes": "This crown will bring light and warmth to even the darkest winter night. Confers no benefit. December 2017 Subscriber Item.",
+ "headMystery201712Notes": "This crown will bring light and warmth to even the darkest winter night. Waláng pakinabang. December 2017 Subscriber Item.",
"headMystery201802Text": "Love Bug Helm",
- "headMystery201802Notes": "The antennae on this helm act as cute dowsing rods, detecting feelings of love and support nearby. Confers no benefit. February 2018 Subscriber Item.",
+ "headMystery201802Notes": "The antennae on this helm act as cute dowsing rods, detecting feelings of love and support nearby. Waláng pakinabang. February 2018 Subscriber Item.",
"headMystery201803Text": "Daring Dragonfly Circlet",
- "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.",
+ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Waláng pakinabang. March 2018 Subscriber Item.",
"headMystery201805Text": "Phenomenal Peacock Helm",
- "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.",
+ "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Waláng pakinabang. May 2018 Subscriber Item.",
"headMystery201806Text": "Alluring Anglerfish Helm",
- "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.",
+ "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Waláng pakinabang. June 2018 Subscriber Item.",
"headMystery201807Text": "Sea Serpent Helm",
- "headMystery201807Notes": "The strong scales on this helm will protect you from any manner of oceanic foe. Confers no benefit. July 2018 Subscriber Item.",
+ "headMystery201807Notes": "The strong scales on this helm will protect you from any manner of oceanic foe. Waláng pakinabang. July 2018 Subscriber Item.",
"headMystery201808Text": "Lava Dragon Cowl",
- "headMystery201808Notes": "The glowing horns on this cowl will light your way through underground caverns. Confers no benefit. August 2018 Subscriber Item.",
+ "headMystery201808Notes": "The glowing horns on this cowl will light your way through underground caverns. Waláng pakinabang. August 2018 Subscriber Item.",
"headMystery201809Text": "Crown of Autumn Flowers",
- "headMystery201809Notes": "The last flowers of autumn's warm days are a reminder of the beauty of the season. Confers no benefit. September 2018 Subscriber Item.",
+ "headMystery201809Notes": "The last flowers of autumn's warm days are a reminder of the beauty of the season. Waláng pakinabang. September 2018 Subscriber Item.",
"headMystery201810Text": "Dark Forest Helm",
- "headMystery201810Notes": "If you find yourself traveling through a spooky place, the glowing red eyes of this helm will surely scare away any enemies in your path. Confers no benefit. October 2018 Subscriber Item.",
+ "headMystery201810Notes": "If you find yourself traveling through a spooky place, the glowing red eyes of this helm will surely scare away any enemies in your path. Waláng pakinabang. October 2018 Subscriber Item.",
"headMystery201811Text": "Splendid Sorcerer's Hat",
- "headMystery201811Notes": "Wear this feathered hat to stand out at even the fanciest wizardly gatherings! Confers no benefit. November 2018 Subscriber Item.",
+ "headMystery201811Notes": "Wear this feathered hat to stand out at even the fanciest wizardly gatherings! Waláng pakinabang. November 2018 Subscriber Item.",
"headMystery301404Text": "Fancy Top Hat",
- "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
+ "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Waláng pakinabang.",
"headMystery301405Text": "Basic Top Hat",
- "headMystery301405Notes": "A basic top hat, just begging to be paired with some fancy head accessories. Confers no benefit. May 3015 Subscriber Item.",
+ "headMystery301405Notes": "A basic top hat, just begging to be paired with some fancy head accessories. Waláng pakinabang. May 3015 Subscriber Item.",
"headMystery301703Text": "Fancy Feather Hat",
- "headMystery301703Notes": "The feathers for this hat were donated by Miss Prue's Finishing School for Fancy Peacocks. Wear them with pride! Confers no benefit. March 3017 Subscriber Item.",
+ "headMystery301703Notes": "The feathers for this hat were donated by Miss Prue's Finishing School for Fancy Peacocks. Wear them with pride! Waláng pakinabang. March 3017 Subscriber Item.",
"headMystery301704Text": "Pheasant Plume Hat",
- "headMystery301704Notes": "What could be more pleasant than a plume from a pheasant? Confers no benefit. April 3017 Subscriber Item.",
+ "headMystery301704Notes": "What could be more pleasant than a plume from a pheasant? Waláng pakinabang. April 3017 Subscriber Item.",
"headArmoireLunarCrownText": "Soothing Lunar Crown",
- "headArmoireLunarCrownNotes": "This crown strengthens health and sharpens senses, especially when the moon is full. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Enchanted Armoire: Soothing Lunar Set (Item 1 of 3).",
+ "headArmoireLunarCrownNotes": "This crown strengthens health and sharpens senses, especially when the moon is full. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Soothing Lunar Set (Iká-1 ng 3).",
"headArmoireRedHairbowText": "Red Hairbow",
- "headArmoireRedHairbowNotes": "Become strong, tough, and smart while wearing this beautiful Red Hairbow! Nagtataás ng Lakás ng <%= str %>, Pangangatawán ng <%= con %>, at Katalinuhan ng <%= int %>. Enchanted Armoire: Red Hairbow Set (Item 1 of 2).",
+ "headArmoireRedHairbowNotes": "Become strong, tough, and smart while wearing this beautiful Red Hairbow! Nagtataás ng Lakás ng <%= str %>, Pangangatawán ng <%= con %>, at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Red Hairbow Set (Iká-1 ng 2).",
"headArmoireVioletFloppyHatText": "Violet Floppy Hat",
- "headArmoireVioletFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a pleasing purple color. Nagtataás ng Pandamá ng <%= per %>, Katalinuhan ng <%= int %>, at Pangangatawán ng <%= con %>. Enchanted Armoire: Independent Item.",
+ "headArmoireVioletFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a pleasing purple color. Nagtataás ng Pandamá ng <%= per %>, Katalinuhan ng <%= int %>, at Pangangatawán ng <%= con %>. Mahiwagang Kabán: Violet Loungewear (Iká-1 ng 3).",
"headArmoireGladiatorHelmText": "Gladiator Helm",
- "headArmoireGladiatorHelmNotes": "To be a gladiator you must be not only strong.... but cunning. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Enchanted Armoire: Gladiator Set (Item 1 of 3).",
+ "headArmoireGladiatorHelmNotes": "To be a gladiator you must be not only strong.... but cunning. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Gladiator Set (Iká-1 ng 3).",
"headArmoireRancherHatText": "Rancher Hat",
- "headArmoireRancherHatNotes": "Round up your pets and wrangle your mounts while wearing this magical Rancher Hat! Nagtataás ng Lakás ng <%= str %>, Pandamá ng <%= per %>, at Katalinuhan ng <%= int %>. Enchanted Armoire: Rancher Set (Item 1 of 3).",
+ "headArmoireRancherHatNotes": "Round up your pets and wrangle your mounts while wearing this magical Rancher Hat! Nagtataás ng Lakás ng <%= str %>, Pandamá ng <%= per %>, at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Rancher Set (Iká-1 ng 3).",
"headArmoireBlueHairbowText": "Blue Hairbow",
- "headArmoireBlueHairbowNotes": "Become perceptive, tough, and smart while wearing this beautiful Blue Hairbow! Nagtataás ng Pandamá ng <%= per %>, Pangangatawán ng <%= con %>, at Katalinuhan ng <%= int %>. Enchanted Armoire: Independent Item.",
+ "headArmoireBlueHairbowNotes": "Become perceptive, tough, and smart while wearing this beautiful Blue Hairbow! Nagtataás ng Pandamá ng <%= per %>, Pangangatawán ng <%= con %>, at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Blue Hairbow Set (Iká-1 ng 2).",
"headArmoireRoyalCrownText": "Royal Crown",
- "headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Royal Set (Item 1 of 3).",
- "headArmoireGoldenLaurelsText": "Golden Laurels",
- "headArmoireGoldenLaurelsNotes": "These golden laurels reward those who have conquered bad habits. Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Golden Toga Set (Item 2 of 3).",
+ "headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Royal Set (Iká-1 ng 3).",
+ "headArmoireGoldenLaurelsText": "Gintóng Putong ng Laurél",
+ "headArmoireGoldenLaurelsNotes": "These golden laurels reward those who have conquered bad habits. Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Kumpól ng Gintóng Toga (Iká-2 ng 3).",
"headArmoireHornedIronHelmText": "Horned Iron Helm",
- "headArmoireHornedIronHelmNotes": "Fiercely hammered from iron, this horned helmet is nearly impossible to break. Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Enchanted Armoire: Horned Iron Set (Item 1 of 3).",
+ "headArmoireHornedIronHelmNotes": "Fiercely hammered from iron, this horned helmet is nearly impossible to break. Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Mahiwagang Kabán: Horned Iron Set (Iká-1 ng 3).",
"headArmoireYellowHairbowText": "Yellow Hairbow",
- "headArmoireYellowHairbowNotes": "Become perceptive, strong, and smart while wearing this beautiful Yellow Hairbow! Nagtataás ng Pandamá, Lakás, at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Yellow Hairbow Set (Item 1 of 2).",
+ "headArmoireYellowHairbowNotes": "Become perceptive, strong, and smart while wearing this beautiful Yellow Hairbow! Nagtataás ng Pandamá, Lakás, at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Yellow Hairbow Set (Iká-1 ng 2).",
"headArmoireRedFloppyHatText": "Red Floppy Hat",
- "headArmoireRedFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a radiant red color. Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Red Loungewear Set (Item 1 of 3).",
+ "headArmoireRedFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a radiant red color. Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Red Loungewear Set (Iká-1 ng 3).",
"headArmoirePlagueDoctorHatText": "Plague Doctor Hat",
- "headArmoirePlagueDoctorHatNotes": "An authentic hat worn by the doctors who battle the Plague of Procrastination! Nagtataás ng Lakás ng <%= str %>, Katalinuhan ng <%= int %>, at Pangangatawán ng <%= con %>. Enchanted Armoire: Plague Doctor Set (Item 1 of 3).",
+ "headArmoirePlagueDoctorHatNotes": "An authentic hat worn by the doctors who battle the Plague of Procrastination! Nagtataás ng Lakás ng <%= str %>, Katalinuhan ng <%= int %>, at Pangangatawán ng <%= con %>. Mahiwagang Kabán: Plague Doctor Set (Iká-1 ng 3).",
"headArmoireBlackCatText": "Black Cat Hat",
- "headArmoireBlackCatNotes": "This black hat is... purring. And twitching its tail. And breathing? Yeah, you just have a sleeping cat on your head. Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Independent Item.",
+ "headArmoireBlackCatNotes": "This black hat is... purring. And twitching its tail. And breathing? Yeah, you just have a sleeping cat on your head. Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Bukód na Kagamitán.",
"headArmoireOrangeCatText": "Orange Cat Hat",
- "headArmoireOrangeCatNotes": "This orange hat is... purring. And twitching its tail. And breathing? Yeah, you just have a sleeping cat on your head. Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Independent Item.",
+ "headArmoireOrangeCatNotes": "This orange hat is... purring. And twitching its tail. And breathing? Yeah, you just have a sleeping cat on your head. Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Bukód na Kagamitán.",
"headArmoireBlueFloppyHatText": "Blue Floppy Hat",
- "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Blue Loungewear Set (Item 1 of 3).",
+ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Blue Loungewear Set (Iká-1 ng 3).",
"headArmoireShepherdHeaddressText": "Shepherd Headdress",
- "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).",
+ "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Shepherd Set (Iká-3 ng 3).",
"headArmoireCrystalCrescentHatText": "Crystal Crescent Hat",
- "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).",
+ "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Crystal Crescent Set (Iká-1 ng 3).",
"headArmoireDragonTamerHelmText": "Dragon Tamer Helm",
- "headArmoireDragonTamerHelmNotes": "You look exactly like a dragon. The perfect camouflage... Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Dragon Tamer Set (Item 1 of 3).",
+ "headArmoireDragonTamerHelmNotes": "You look exactly like a dragon. The perfect camouflage... Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Dragon Tamer Set (Iká-1 ng 3).",
"headArmoireBarristerWigText": "Barrister Wig",
- "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).",
+ "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Barrister Set (Iká-1 ng 3).",
"headArmoireJesterCapText": "Jester Cap",
- "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).",
+ "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Jester Set (Iká-1 ng 3).",
"headArmoireMinerHelmetText": "Miner Helmet",
- "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Miner Set (Item 1 of 3).",
+ "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Miner Set (Iká-1 ng 3).",
"headArmoireBasicArcherCapText": "Basic Archer Cap",
- "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).",
+ "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Basic Archer Set (Iká-3 ng 3).",
"headArmoireGraduateCapText": "Graduate Cap",
- "headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
+ "headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Graduate Set (Iká-3 ng 3).",
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
- "headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Green Loungewear Set (Item 1 of 3).",
+ "headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Green Loungewear Set (Iká-1 ng 3).",
"headArmoireCannoneerBandannaText": "Cannoneer Bandanna",
- "headArmoireCannoneerBandannaNotes": "'Tis a cannoneer's life for me! Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Cannoneer Set (Item 3 of 3).",
+ "headArmoireCannoneerBandannaNotes": "'Tis a cannoneer's life for me! Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Cannoneer Set (Iká-3 ng 3).",
"headArmoireFalconerCapText": "Falconer Cap",
- "headArmoireFalconerCapNotes": "This jaunty cap helps you better understand birds of prey. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Falconer Set (Item 2 of 3).",
+ "headArmoireFalconerCapNotes": "This jaunty cap helps you better understand birds of prey. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Falconer Set (Iká-2 ng 3).",
"headArmoireVermilionArcherHelmText": "Vermilion Archer Helm",
- "headArmoireVermilionArcherHelmNotes": "The magic ruby in this helm will help you aim with laser focus! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Vermilion Archer Set (Item 3 of 3).",
+ "headArmoireVermilionArcherHelmNotes": "The magic ruby in this helm will help you aim with laser focus! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Vermilion Archer Set (Iká-3 ng 3).",
"headArmoireOgreMaskText": "Ogre Mask",
- "headArmoireOgreMaskNotes": "Your enemies will run for the hills when they see an Ogre coming their way! Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Enchanted Armoire: Ogre Outfit (Item 1 of 3).",
+ "headArmoireOgreMaskNotes": "Your enemies will run for the hills when they see an Ogre coming their way! Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Mahiwagang Kabán: Ogre Outfit (Iká-1 ng 3).",
"headArmoireIronBlueArcherHelmText": "Iron Blue Archer Helm",
- "headArmoireIronBlueArcherHelmNotes": "Hard-headed? No, you're just well protected. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Iron Archer Set (Item 1 of 3).",
+ "headArmoireIronBlueArcherHelmNotes": "Hard-headed? No, you're just well protected. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Iron Archer Set (Iká-1 ng 3).",
"headArmoireWoodElfHelmText": "Wood Elf Helm",
- "headArmoireWoodElfHelmNotes": "This helm of leaves may look delicate, but it can protect you from inclement weather and dangerous foes. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Wood Elf Set (Item 1 of 3).",
+ "headArmoireWoodElfHelmNotes": "This helm of leaves may look delicate, but it can protect you from inclement weather and dangerous foes. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Wood Elf Set (Iká-1 ng 3).",
"headArmoireRamHeaddressText": "Ram Headdress",
- "headArmoireRamHeaddressNotes": "This elaborate helm is fashioned to look like a ram's head. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Enchanted Armoire: Ram Barbarian Set (Item 1 of 3).",
+ "headArmoireRamHeaddressNotes": "This elaborate helm is fashioned to look like a ram's head. Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Ram Barbarian Set (Iká-1 ng 3).",
"headArmoireCrownOfHeartsText": "Crown of Hearts",
- "headArmoireCrownOfHeartsNotes": "This rosy red crown isn't just eye-catching! It will also strengthen your heart against tough tasks. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Queen of Hearts Set (Item 1 of 3).",
+ "headArmoireCrownOfHeartsNotes": "This rosy red crown isn't just eye-catching! It will also strengthen your heart against tough tasks. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Queen of Hearts Set (Iká-1 ng 3).",
"headArmoireMushroomDruidCapText": "Mushroom Druid Cap",
- "headArmoireMushroomDruidCapNotes": "Harvested deep in a misty forest, this cap grants the wearer knowledge of medicinal plants. Nagtataás ng Katalinuhan ng <%= int %> at Lakás ng <%= str %>. Enchanted Armoire: Mushroom Druid Set (Item 1 of 3).",
+ "headArmoireMushroomDruidCapNotes": "Harvested deep in a misty forest, this cap grants the wearer knowledge of medicinal plants. Nagtataás ng Katalinuhan ng <%= int %> at Lakás ng <%= str %>. Mahiwagang Kabán: Mushroom Druid Set (Iká-1 ng 3).",
"headArmoireMerchantChaperonText": "Merchant Chaperon",
- "headArmoireMerchantChaperonNotes": "This versatile wrapped wool hat will surely make you the most stylish seller in the market! Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Merchant Set (Item 1 of 3).",
+ "headArmoireMerchantChaperonNotes": "This versatile wrapped wool hat will surely make you the most stylish seller in the market! Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Merchant Set (Iká-1 ng 3).",
"headArmoireVikingHelmText": "Viking Helm",
- "headArmoireVikingHelmNotes": "No horns or wings are found on this helm: those are too easy for enemies to grab! Nagtataás ng Lakás ng <%= str %> at Pandamá ng <%= per %>. Enchanted Armoire: Viking Set (Item 2 of 3).",
+ "headArmoireVikingHelmNotes": "No horns or wings are found on this helm: those are too easy for enemies to grab! Nagtataás ng Lakás ng <%= str %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Viking Set (Iká-2 ng 3).",
"headArmoireSwanFeatherCrownText": "Swan Feather Crown",
- "headArmoireSwanFeatherCrownNotes": "This tiara is lovely and light as a swan's feather! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Swan Dancer Set (Item 1 of 3).",
+ "headArmoireSwanFeatherCrownNotes": "This tiara is lovely and light as a swan's feather! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Swan Dancer Set (Iká-1 ng 3).",
"headArmoireAntiProcrastinationHelmText": "Anti-Procrastination Helm",
- "headArmoireAntiProcrastinationHelmNotes": "This mighty steel helm will help you win the fight to be healthy, happy, and productive! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Anti-Procrastination Set (Item 1 of 3).",
+ "headArmoireAntiProcrastinationHelmNotes": "This mighty steel helm will help you win the fight to be healthy, happy, and productive! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Anti-Procrastination Set (Iká-1 ng 3).",
"headArmoireCandlestickMakerHatText": "Candlestick Maker Hat",
- "headArmoireCandlestickMakerHatNotes": "A jaunty hat makes every job more fun, and candlemaking is no exception! Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Candlestick Maker Set (Item 2 of 3).",
+ "headArmoireCandlestickMakerHatNotes": "A jaunty hat makes every job more fun, and candlemaking is no exception! Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Candlestick Maker Set (Iká-2 ng 3).",
"headArmoireLamplightersTopHatText": "Lamplighter's Top Hat",
- "headArmoireLamplightersTopHatNotes": "This jaunty black hat completes your lamp-lighting ensemble! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Lamplighter's Set (Item 3 of 4).",
+ "headArmoireLamplightersTopHatNotes": "This jaunty black hat completes your lamp-lighting ensemble! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Lamplighter's Set (Iká-3 ng 4).",
"headArmoireCoachDriversHatText": "Coach Driver's Hat",
- "headArmoireCoachDriversHatNotes": "This hat is dressy, but not quite so dressy as a top hat. Make sure you don't lose it as you drive speedily across the land! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Coach Driver Set (Item 2 of 3).",
+ "headArmoireCoachDriversHatNotes": "This hat is dressy, but not quite so dressy as a top hat. Make sure you don't lose it as you drive speedily across the land! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Coach Driver Set (Iká-2 ng 3).",
"headArmoireCrownOfDiamondsText": "Crown of Diamonds",
- "headArmoireCrownOfDiamondsNotes": "This shining crown isn't just a great hat; it will also sharpen your mind! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: King of Diamonds Set (Item 2 of 4).",
+ "headArmoireCrownOfDiamondsNotes": "This shining crown isn't just a great hat; it will also sharpen your mind! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: King of Diamonds Set (Iká-2 ng 4).",
"headArmoireFlutteryWigText": "Fluttery Wig",
- "headArmoireFlutteryWigNotes": "This fine powdered wig has plenty of room for your butterflies to rest if they get tired while doing your bidding. Nagtataás ng Katalinuhan, Pandamá, at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Fluttery Frock Set (Item 2 of 4).",
+ "headArmoireFlutteryWigNotes": "This fine powdered wig has plenty of room for your butterflies to rest if they get tired while doing your bidding. Nagtataás ng Katalinuhan, Pandamá, at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Fluttery Frock Set (Iká-2 ng 4).",
"headArmoireBirdsNestText": "Bird's Nest",
- "headArmoireBirdsNestNotes": "If you start feeling movement and hearing chirps, your new hat might have turned into new friends. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Independent Item.",
+ "headArmoireBirdsNestNotes": "If you start feeling movement and hearing chirps, your new hat might have turned into new friends. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"headArmoirePaperBagText": "Paper Bag",
- "headArmoirePaperBagNotes": "This bag is a hilarious but surprisingly protective helm (don't worry, we know you look good under there!). Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Independent Item.",
+ "headArmoirePaperBagNotes": "This bag is a hilarious but surprisingly protective helm (don't worry, we know you look good under there!). Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"headArmoireBigWigText": "Big Wig",
- "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Independent Item.",
+ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"headArmoireGlassblowersHatText": "Glassblower's Hat",
- "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).",
+ "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Glassblower Set (Iká-3 ng 4).",
"headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress",
- "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).",
+ "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Piratical Princess Set (Iká-1 ng 4).",
"headArmoireJeweledArcherHelmText": "Jeweled Archer Helm",
- "headArmoireJeweledArcherHelmNotes": "This helm may look ornate, but it's also exceedingly light and strong. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Jeweled Archer Set (Item 1 of 3).",
+ "headArmoireJeweledArcherHelmNotes": "This helm may look ornate, but it's also exceedingly light and strong. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Jeweled Archer Set (Iká-1 ng 3).",
"headArmoireVeilOfSpadesText": "Veil of Spades",
- "headArmoireVeilOfSpadesNotes": "A shadowy and mysterious veil that will boost your stealth. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Ace of Spades Set (Item 1 of 3).",
+ "headArmoireVeilOfSpadesNotes": "A shadowy and mysterious veil that will boost your stealth. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Ace of Spades Set (Iká-1 ng 3).",
"offhand": "off-hand item",
"offhandCapitalized": "Off-Hand Item",
"shieldBase0Text": "No Off-Hand Equipment",
@@ -1276,7 +1276,7 @@
"shieldWarrior3Notes": "Made of wood but bolstered with metal bands. Nagtataás ng Pangangatawán ng <%= con %>.",
"shieldWarrior4Text": "Red Shield",
"shieldWarrior4Notes": "Rebukes blows with a burst of flame. Nagtataás ng Pangangatawán ng <%= con %>.",
- "shieldWarrior5Text": "Golden Shield",
+ "shieldWarrior5Text": "Gintóng Pananggâ",
"shieldWarrior5Notes": "Shining badge of the vanguard. Nagtataás ng Pangangatawán ng <%= con %>.",
"shieldHealer1Text": "Medic Buckler",
"shieldHealer1Notes": "Easy to disengage, freeing a hand for bandaging. Nagtataás ng Pangangatawán ng <%= con %>.",
@@ -1429,182 +1429,182 @@
"shieldSpecialWinter2019HealerText": "Enchanted Ice Crystals",
"shieldSpecialWinter2019HealerNotes": "Thin ice may break, but these perfect crystals will turn back any blow before it lands. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2018-2019.",
"shieldMystery201601Text": "Resolution Slayer",
- "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.",
+ "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Waláng pakinabang. January 2016 Subscriber Item.",
"shieldMystery201701Text": "Time-Freezer Shield",
- "shieldMystery201701Notes": "Freeze time in its tracks and conquer your tasks! Confers no benefit. January 2017 Subscriber Item.",
+ "shieldMystery201701Notes": "Freeze time in its tracks and conquer your tasks! Waláng pakinabang. January 2017 Subscriber Item.",
"shieldMystery201708Text": "Lava Shield",
- "shieldMystery201708Notes": "This rugged shield of molten rock protects you from bad Habits but won't singe your hands. Confers no benefit. August 2017 Subscriber Item.",
+ "shieldMystery201708Notes": "This rugged shield of molten rock protects you from bad Habits but won't singe your hands. Waláng pakinabang. August 2017 Subscriber Item.",
"shieldMystery201709Text": "Sorcery Handbook",
- "shieldMystery201709Notes": "This book will guide you through your forays into sorcery. Confers no benefit. September 2017 Subscriber Item.",
+ "shieldMystery201709Notes": "This book will guide you through your forays into sorcery. Waláng pakinabang. September 2017 Subscriber Item.",
"shieldMystery201802Text": "Love Bug Shield",
- "shieldMystery201802Notes": "Although it may look like brittle candy, this shield is resistant to even the strongest Shattering Heartbreak attacks! Confers no benefit. February 2018 Subscriber Item.",
+ "shieldMystery201802Notes": "Although it may look like brittle candy, this shield is resistant to even the strongest Shattering Heartbreak attacks! Waláng pakinabang. February 2018 Subscriber Item.",
"shieldMystery301405Text": "Clock Shield",
- "shieldMystery301405Notes": "Time is on your side with this towering clock shield! Confers no benefit. June 3015 Subscriber Item.",
+ "shieldMystery301405Notes": "Time is on your side with this towering clock shield! Waláng pakinabang. June 3015 Subscriber Item.",
"shieldMystery301704Text": "Fluttery Fan",
- "shieldMystery301704Notes": "This fine fan will keep you feeling cool and looking fancy! Confers no benefit. April 3017 Subscriber Item.",
+ "shieldMystery301704Notes": "This fine fan will keep you feeling cool and looking fancy! Waláng pakinabang. April 3017 Subscriber Item.",
"shieldArmoireGladiatorShieldText": "Gladiator Shield",
- "shieldArmoireGladiatorShieldNotes": "To be a gladiator you must.... eh, whatever, just bash them with your shield. Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Enchanted Armoire: Gladiator Set (Item 3 of 3).",
+ "shieldArmoireGladiatorShieldNotes": "To be a gladiator you must.... eh, whatever, just bash them with your shield. Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Mahiwagang Kabán: Gladiator Set (Iká-3 ng 3).",
"shieldArmoireMidnightShieldText": "Midnight Shield",
- "shieldArmoireMidnightShieldNotes": "This shield is most powerful at the stroke of midnight! Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Enchanted Armoire: Independent Item.",
+ "shieldArmoireMidnightShieldNotes": "This shield is most powerful at the stroke of midnight! Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"shieldArmoireRoyalCaneText": "Royal Cane",
- "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Royal Set (Item 2 of 3).",
+ "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Royal Set (Iká-2 ng 3).",
"shieldArmoireDragonTamerShieldText": "Dragon Tamer Shield",
- "shieldArmoireDragonTamerShieldNotes": "Distract enemies with this dragon-shaped shield. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Dragon Tamer Set (Item 2 of 3).",
+ "shieldArmoireDragonTamerShieldNotes": "Distract enemies with this dragon-shaped shield. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Dragon Tamer Set (Iká-2 ng 3).",
"shieldArmoireMysticLampText": "Mystic Lamp",
- "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Independent Item.",
+ "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"shieldArmoireFloralBouquetText": "Bouquet o' Flowers",
- "shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Independent Item.",
+ "shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"shieldArmoireSandyBucketText": "Sandy Bucket",
- "shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
+ "shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Seaside Set (Iká-3 ng 3).",
"shieldArmoirePerchingFalconText": "Perching Falcon",
- "shieldArmoirePerchingFalconNotes": "A falcon friend perches on your arm, prepared to swoop at your enemies. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Falconer Set (Item 3 of 3).",
+ "shieldArmoirePerchingFalconNotes": "A falcon friend perches on your arm, prepared to swoop at your enemies. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Falconer Set (Iká-3 ng 3).",
"shieldArmoireRamHornShieldText": "Ram Horn Shield",
- "shieldArmoireRamHornShieldNotes": "Ram this shield into opposing Dailies! Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Enchanted Armoire: Ram Barbarian Set (Item 3 of 3).",
+ "shieldArmoireRamHornShieldNotes": "Ram this shield into opposing Dailies! Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Mahiwagang Kabán: Ram Barbarian Set (Iká-3 ng 3).",
"shieldArmoireRedRoseText": "Red Rose",
- "shieldArmoireRedRoseNotes": "This deep red rose smells enchanting. It will also sharpen your understanding. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Independent Item.",
+ "shieldArmoireRedRoseNotes": "This deep red rose smells enchanting. It will also sharpen your understanding. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"shieldArmoireMushroomDruidShieldText": "Mushroom Druid Shield",
- "shieldArmoireMushroomDruidShieldNotes": "Though made from a mushroom, there's nothing mushy about this tough shield! Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Enchanted Armoire: Mushroom Druid Set (Item 3 of 3).",
+ "shieldArmoireMushroomDruidShieldNotes": "Though made from a mushroom, there's nothing mushy about this tough shield! Nagtataás ng Pangangatawán ng <%= con %> at Lakás ng <%= str %>. Mahiwagang Kabán: Mushroom Druid Set (Iká-3 ng 3).",
"shieldArmoireFestivalParasolText": "Festival Parasol",
- "shieldArmoireFestivalParasolNotes": "This lightweight parasol will shield you from the glare--whether it's from the sun or from dark red Dailies! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Festival Attire Set (Item 2 of 3).",
+ "shieldArmoireFestivalParasolNotes": "This lightweight parasol will shield you from the glare--whether it's from the sun or from dark red Dailies! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Festival Attire Set (Iká-2 ng 3).",
"shieldArmoireVikingShieldText": "Viking Shield",
- "shieldArmoireVikingShieldNotes": "This sturdy shield of wood and hide can stand up to the most daunting of foes. Nagtataás ng Pandamá ng <%= per %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Viking Set (Item 3 of 3).",
+ "shieldArmoireVikingShieldNotes": "This sturdy shield of wood and hide can stand up to the most daunting of foes. Nagtataás ng Pandamá ng <%= per %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Viking Set (Iká-3 ng 3).",
"shieldArmoireSwanFeatherFanText": "Swan Feather Fan",
- "shieldArmoireSwanFeatherFanNotes": "Use this fan to accentuate your movement as you dance like a graceful swan. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Swan Dancer Set (Item 3 of 3).",
- "shieldArmoireGoldenBatonText": "Golden Baton",
- "shieldArmoireGoldenBatonNotes": "When you dance into battle waving this baton to the beat, you are unstoppable! Nagtataás ng Katalinuhan at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Independent Item.",
+ "shieldArmoireSwanFeatherFanNotes": "Use this fan to accentuate your movement as you dance like a graceful swan. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Swan Dancer Set (Iká-3 ng 3).",
+ "shieldArmoireGoldenBatonText": "Gintóng Pangumpás",
+ "shieldArmoireGoldenBatonNotes": "When you dance into battle waving this baton to the beat, you are unstoppable! Nagtataás ng Katalinuhan at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Bukód na Kagamitán.",
"shieldArmoireAntiProcrastinationShieldText": "Anti-Procrastination Shield",
- "shieldArmoireAntiProcrastinationShieldNotes": "This strong steel shield will help you block distractions when they approach! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Anti-Procrastination Set (Item 3 of 3).",
+ "shieldArmoireAntiProcrastinationShieldNotes": "This strong steel shield will help you block distractions when they approach! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Anti-Procrastination Set (Iká-3 ng 3).",
"shieldArmoireHorseshoeText": "Horseshoe",
- "shieldArmoireHorseshoeNotes": "Help protect the feet of your hooved mounts with this iron shoe. Nagtataás ng Pangangatawán, Pandamá, at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Farrier Set (Item 3 of 3)",
+ "shieldArmoireHorseshoeNotes": "Help protect the feet of your hooved mounts with this iron shoe. Nagtataás ng Pangangatawán, Pandamá, at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Farrier Set (Iká-3 ng 3)",
"shieldArmoireHandmadeCandlestickText": "Handmade Candlestick",
- "shieldArmoireHandmadeCandlestickNotes": "Your fine wax wares provide light and warmth to grateful Habiticans! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Candlestick Maker Set (Item 3 of 3).",
+ "shieldArmoireHandmadeCandlestickNotes": "Your fine wax wares provide light and warmth to grateful Habiticans! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Candlestick Maker Set (Iká-3 ng 3).",
"shieldArmoireWeaversShuttleText": "Weaver's Shuttle",
- "shieldArmoireWeaversShuttleNotes": "This tool passes your weft thread through the warp to make cloth! Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Enchanted Armoire: Weaver Set (Item 3 of 3).",
+ "shieldArmoireWeaversShuttleNotes": "This tool passes your weft thread through the warp to make cloth! Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Weaver Set (Iká-3 ng 3).",
"shieldArmoireShieldOfDiamondsText": "Shield of Diamonds",
- "shieldArmoireShieldOfDiamondsNotes": "This radiant shield not only provides protection, it empowers you with endurance! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: King of Diamonds Set (Item 4 of 4).",
+ "shieldArmoireShieldOfDiamondsNotes": "This radiant shield not only provides protection, it empowers you with endurance! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: King of Diamonds Set (Iká-4 ng 4).",
"shieldArmoireFlutteryFanText": "Fluttery Fan",
- "shieldArmoireFlutteryFanNotes": "On a hot day, there's nothing quite like a fancy fan to help you look and feel cool. Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Fluttery Frock Set (Item 4 of 4).",
+ "shieldArmoireFlutteryFanNotes": "On a hot day, there's nothing quite like a fancy fan to help you look and feel cool. Nagtataás ng Pangangatawán, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Fluttery Frock Set (Iká-4 ng 4).",
"shieldArmoireFancyShoeText": "Fancy Shoe",
- "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Cobbler Set (Item 3 of 3).",
+ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Cobbler Set (Iká-3 ng 3).",
"shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase",
- "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).",
+ "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Glassblower Set (Iká-4 ng 4).",
"shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield",
- "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).",
+ "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Piratical Princess Set (Iká-4 ng 4).",
"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! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Bookbinder Set (Item 4 of 4).",
+ "shieldArmoireUnfinishedTomeNotes": "You simply can't procrastinate when you're holding this! The binding needs to be finished so people can read the book! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Bookbinder Set (Iká-4 ng 4).",
"shieldArmoireSoftBluePillowText": "Soft Blue Pillow",
- "shieldArmoireSoftBluePillowNotes": "The sensible warrior packs a pillow for any expedition. Shield yourself from sharp tasks... even while you nap. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Blue Loungewear Set (Item 3 of 3).",
+ "shieldArmoireSoftBluePillowNotes": "The sensible warrior packs a pillow for any expedition. Shield yourself from sharp tasks... even while you nap. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Blue Loungewear Set (Iká-3 ng 3).",
"shieldArmoireSoftRedPillowText": "Soft Red Pillow",
- "shieldArmoireSoftRedPillowNotes": "The prepared warrior packs a pillow for any expedition. Protect yourself from those tough tasks... even while you nap. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Enchanted Armoire: Red Loungewear Set (Item 3 of 3).",
+ "shieldArmoireSoftRedPillowNotes": "The prepared warrior packs a pillow for any expedition. Protect yourself from those tough tasks... even while you nap. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Mahiwagang Kabán: Red Loungewear Set (Iká-3 ng 3).",
"shieldArmoireSoftGreenPillowText": "Soft Green Pillow",
- "shieldArmoireSoftGreenPillowNotes": "The practical warrior packs a pillow for any expedition. Ward off those pesky chores... even while you nap. Nagtataás ng Pangangatawán ng <%= con %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Green Loungewear Set (Item 3 of 3).",
+ "shieldArmoireSoftGreenPillowNotes": "The practical warrior packs a pillow for any expedition. Ward off those pesky chores... even while you nap. Nagtataás ng Pangangatawán ng <%= con %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Green Loungewear Set (Iká-3 ng 3).",
"shieldArmoireMightyQuillText": "Mighty Quill",
- "shieldArmoireMightyQuillNotes": "Mightier than the sword, they say! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Scribe Set (Item 2 of 3).",
+ "shieldArmoireMightyQuillNotes": "Mightier than the sword, they say! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Scribe Set (Iká-2 ng 3).",
"back": "Back Accessory",
"backCapitalized": "Back Accessory",
"backBase0Text": "No Back Accessory",
"backBase0Notes": "No Back Accessory.",
"animalTails": "Animal Tails",
- "backMystery201402Text": "Golden Wings",
- "backMystery201402Notes": "These shining wings have feathers that glitter in the sun! Confers no benefit. February 2014 Subscriber Item.",
+ "backMystery201402Text": "Gintóng Pakpák",
+ "backMystery201402Notes": "These shining wings have feathers that glitter in the sun! Waláng pakinabang. February 2014 Subscriber Item.",
"backMystery201404Text": "Twilight Butterfly Wings",
- "backMystery201404Notes": "Be a butterfly and flutter by! Confers no benefit. April 2014 Subscriber Item.",
+ "backMystery201404Notes": "Be a butterfly and flutter by! Waláng pakinabang. April 2014 Subscriber Item.",
"backMystery201410Text": "Goblin Wings",
- "backMystery201410Notes": "Swoop through the night on these strong wings. Confers no benefit. October 2014 Subscriber Item.",
+ "backMystery201410Notes": "Swoop through the night on these strong wings. Waláng pakinabang. October 2014 Subscriber Item.",
"backMystery201504Text": "Busy Bee Wings",
- "backMystery201504Notes": "Buzz buzz buzz! Flit from task to task. Confers no benefit. April 2015 Subscriber Item.",
+ "backMystery201504Notes": "Buzz buzz buzz! Flit from task to task. Waláng pakinabang. April 2015 Subscriber Item.",
"backMystery201507Text": "Rad Surfboard",
- "backMystery201507Notes": "Surf off the Diligent Docks and ride the waves in Inkomplete Bay! Confers no benefit. July 2015 Subscriber Item.",
+ "backMystery201507Notes": "Surf off the Diligent Docks and ride the waves in Inkomplete Bay! Waláng pakinabang. July 2015 Subscriber Item.",
"backMystery201510Text": "Goblin Tail",
- "backMystery201510Notes": "Prehensile and powerful! Confers no benefit. October 2015 Subscriber Item.",
+ "backMystery201510Notes": "Prehensile and powerful! Waláng pakinabang. October 2015 Subscriber Item.",
"backMystery201602Text": "Heartbreaker Cape",
- "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.",
+ "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Waláng pakinabang. February 2016 Subscriber Item.",
"backMystery201608Text": "Cape of Thunder",
- "backMystery201608Notes": "Fly through the stormy skies with this billowing cape! Confers no benefit. August 2016 Subscriber Item.",
+ "backMystery201608Notes": "Fly through the stormy skies with this billowing cape! Waláng pakinabang. August 2016 Subscriber Item.",
"backMystery201702Text": "Heartstealer Cape",
- "backMystery201702Notes": "A swoosh of this cape, and all near you will be swept off their feet by your charm! Confers no benefit. February 2017 Subscriber Item.",
+ "backMystery201702Notes": "A swoosh of this cape, and all near you will be swept off their feet by your charm! Waláng pakinabang. February 2017 Subscriber Item.",
"backMystery201704Text": "Fairytale Wings",
- "backMystery201704Notes": "These shimmering wings will carry you anywhere, even the hidden realms ruled by magical creatures. Confers no benefit. April 2017 Subscriber Item.",
+ "backMystery201704Notes": "These shimmering wings will carry you anywhere, even the hidden realms ruled by magical creatures. Waláng pakinabang. April 2017 Subscriber Item.",
"backMystery201706Text": "Tattered Freebooter's Flag",
- "backMystery201706Notes": "The sight of this Jolly Roger-emblazoned flag fills any To-Do or Daily with dread! Confers no benefit. June 2017 Subscriber Item.",
+ "backMystery201706Notes": "The sight of this Jolly Roger-emblazoned flag fills any To-Do or Daily with dread! Waláng pakinabang. June 2017 Subscriber Item.",
"backMystery201709Text": "Stack o' Sorcery Books",
- "backMystery201709Notes": "Learning magic takes a lot of reading, but you're sure to enjoy your studies! Confers no benefit. September 2017 Subscriber Item.",
+ "backMystery201709Notes": "Learning magic takes a lot of reading, but you're sure to enjoy your studies! Waláng pakinabang. September 2017 Subscriber Item.",
"backMystery201801Text": "Frost Sprite Wings",
- "backMystery201801Notes": "They may look as delicate as snowflakes, but these enchanted wings can carry you anywhere you wish! Confers no benefit. January 2018 Subscriber Item.",
+ "backMystery201801Notes": "They may look as delicate as snowflakes, but these enchanted wings can carry you anywhere you wish! Waláng pakinabang. January 2018 Subscriber Item.",
"backMystery201803Text": "Daring Dragonfly Wings",
- "backMystery201803Notes": "These bright and shiny wings will carry you through soft spring breezes and across lily ponds with ease. Confers no benefit. March 2018 Subscriber Item.",
+ "backMystery201803Notes": "These bright and shiny wings will carry you through soft spring breezes and across lily ponds with ease. Waláng pakinabang. March 2018 Subscriber Item.",
"backMystery201804Text": "Squirrel Tail",
- "backMystery201804Notes": "Sure, it helps you balance while you jump on branches, but the most important thing is MAXIMUM FLUFF. Confers no benefit. April 2018 Subscriber Item.",
+ "backMystery201804Notes": "Sure, it helps you balance while you jump on branches, but the most important thing is MAXIMUM FLUFF. Waláng pakinabang. April 2018 Subscriber Item.",
"backMystery201812Text": "Arctic Fox Tail",
- "backMystery201812Notes": "Your luxurious tail shimmers like an icicle, bobbing happily as you pad softly over the snowdrifts. Confers no benefit. December 2018 Subscriber Item.",
+ "backMystery201812Notes": "Your luxurious tail shimmers like an icicle, bobbing happily as you pad softly over the snowdrifts. Waláng pakinabang. December 2018 Subscriber Item.",
"backMystery201805Text": "Phenomenal Peacock Tail",
- "backMystery201805Notes": "This gorgeous feathery tail is perfect for a strut down a lovely garden path! Confers no benefit. May 2018 Subscriber Item.",
+ "backMystery201805Notes": "This gorgeous feathery tail is perfect for a strut down a lovely garden path! Waláng pakinabang. May 2018 Subscriber Item.",
"backSpecialWonderconRedText": "Mighty Cape",
- "backSpecialWonderconRedNotes": "Swishes with strength and beauty. Confers no benefit. Special Edition Convention Item.",
+ "backSpecialWonderconRedNotes": "Swishes with strength and beauty. Waláng pakinabang. Special Edition Convention Item.",
"backSpecialWonderconBlackText": "Sneaky Cape",
- "backSpecialWonderconBlackNotes": "Spun of shadows and whispers. Confers no benefit. Special Edition Convention Item.",
+ "backSpecialWonderconBlackNotes": "Spun of shadows and whispers. Waláng pakinabang. Special Edition Convention Item.",
"backSpecialTakeThisText": "Take This Wings",
"backSpecialTakeThisNotes": "These wings were earned by participating in a sponsored Challenge made by Take This. Congratulations! Nagtataás ng Lahát ng mga Katangian ng <%= attrs %>.",
"backSpecialSnowdriftVeilText": "Snowdrift Veil",
- "backSpecialSnowdriftVeilNotes": "This translucent veil makes it appear you are surrounded by an elegant flurry of snow! Confers no benefit.",
+ "backSpecialSnowdriftVeilNotes": "This translucent veil makes it appear you are surrounded by an elegant flurry of snow! Waláng pakinabang.",
"backSpecialAetherCloakText": "Aether Cloak",
"backSpecialAetherCloakNotes": "This cloak once belonged to the Lost Masterclasser herself. Nagtataás ng Pandamá ng <%= per %>.",
"backSpecialTurkeyTailBaseText": "Turkey Tail",
- "backSpecialTurkeyTailBaseNotes": "Wear your noble Turkey Tail with pride while you celebrate! Confers no benefit.",
+ "backSpecialTurkeyTailBaseNotes": "Wear your noble Turkey Tail with pride while you celebrate! Waláng pakinabang.",
"backSpecialTurkeyTailGildedText": "Gilded Turkey Tail",
- "backSpecialTurkeyTailGildedNotes": "Plumage fit for a parade! Confers no benefit.",
+ "backSpecialTurkeyTailGildedNotes": "Plumage fit for a parade! Waláng pakinabang.",
"backBearTailText": "Bear Tail",
- "backBearTailNotes": "This tail makes you look like a brave bear! Confers no benefit.",
+ "backBearTailNotes": "This tail makes you look like a brave bear! Waláng pakinabang.",
"backCactusTailText": "Cactus Tail",
- "backCactusTailNotes": "This tail makes you look like a prickly cactus! Confers no benefit.",
+ "backCactusTailNotes": "This tail makes you look like a prickly cactus! Waláng pakinabang.",
"backFoxTailText": "Fox Tail",
- "backFoxTailNotes": "This tail makes you look like a wily fox! Confers no benefit.",
+ "backFoxTailNotes": "This tail makes you look like a wily fox! Waláng pakinabang.",
"backLionTailText": "Lion Tail",
- "backLionTailNotes": "This tail makes you look like a regal lion! Confers no benefit.",
+ "backLionTailNotes": "This tail makes you look like a regal lion! Waláng pakinabang.",
"backPandaTailText": "Panda Tail",
- "backPandaTailNotes": "This tail makes you look like a gentle panda! Confers no benefit.",
+ "backPandaTailNotes": "This tail makes you look like a gentle panda! Waláng pakinabang.",
"backPigTailText": "Pig Tail",
- "backPigTailNotes": "This tail makes you look like a whimsical pig! Confers no benefit.",
+ "backPigTailNotes": "This tail makes you look like a whimsical pig! Waláng pakinabang.",
"backTigerTailText": "Tiger Tail",
- "backTigerTailNotes": "This tail makes you look like a fierce tiger! Confers no benefit.",
+ "backTigerTailNotes": "This tail makes you look like a fierce tiger! Waláng pakinabang.",
"backWolfTailText": "Wolf Tail",
- "backWolfTailNotes": "This tail makes you look like a loyal wolf! Confers no benefit.",
+ "backWolfTailNotes": "This tail makes you look like a loyal wolf! Waláng pakinabang.",
"body": "Body Accessory",
"bodyCapitalized": "Body Accessory",
"bodyBase0Text": "No Body Accessory",
"bodyBase0Notes": "No Body Accessory.",
"bodySpecialWonderconRedText": "Ruby Collar",
- "bodySpecialWonderconRedNotes": "An attractive ruby collar! Confers no benefit. Special Edition Convention Item.",
- "bodySpecialWonderconGoldText": "Golden Collar",
- "bodySpecialWonderconGoldNotes": "An attractive gold collar! Confers no benefit. Special Edition Convention Item.",
+ "bodySpecialWonderconRedNotes": "An attractive ruby collar! Waláng pakinabang. Special Edition Convention Item.",
+ "bodySpecialWonderconGoldText": "Gintóng Tubong",
+ "bodySpecialWonderconGoldNotes": "An attractive gold collar! Waláng pakinabang. Special Edition Convention Item.",
"bodySpecialWonderconBlackText": "Ebony Collar",
- "bodySpecialWonderconBlackNotes": "An attractive ebony collar! Confers no benefit. Special Edition Convention Item.",
+ "bodySpecialWonderconBlackNotes": "An attractive ebony collar! Waláng pakinabang. Special Edition Convention Item.",
"bodySpecialTakeThisText": "Take This Pauldrons",
"bodySpecialTakeThisNotes": "These pauldrons were earned by participating in a sponsored Challenge made by Take This. Congratulations! Nagtataás ng Lahát ng mga Katangian ng <%= attrs %>.",
"bodySpecialAetherAmuletText": "Aether Amulet",
"bodySpecialAetherAmuletNotes": "This amulet has a mysterious history. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá.",
"bodySpecialSummerMageText": "Shining Capelet",
- "bodySpecialSummerMageNotes": "Neither salt water nor fresh water can tarnish this metallic capelet. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2014.",
+ "bodySpecialSummerMageNotes": "Neither salt water nor fresh water can tarnish this metallic capelet. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2014.",
"bodySpecialSummerHealerText": "Coral Collar",
- "bodySpecialSummerHealerNotes": "A stylish collar of live coral! Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2014.",
+ "bodySpecialSummerHealerNotes": "A stylish collar of live coral! Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2014.",
"bodySpecialSummer2015RogueText": "Renegade Sash",
- "bodySpecialSummer2015RogueNotes": "You can't be a true Renegade without panache... and a sash. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
+ "bodySpecialSummer2015RogueNotes": "You can't be a true Renegade without panache... and a sash. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
"bodySpecialSummer2015WarriorText": "Oceanic Spikes",
- "bodySpecialSummer2015WarriorNotes": "Each spike drips jellyfish venom, defending the wearer. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
- "bodySpecialSummer2015MageText": "Golden Buckle",
- "bodySpecialSummer2015MageNotes": "This buckle adds no power at all, but it's shiny. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
+ "bodySpecialSummer2015WarriorNotes": "Each spike drips jellyfish venom, defending the wearer. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
+ "bodySpecialSummer2015MageText": "Gintóng Panghugpóng",
+ "bodySpecialSummer2015MageNotes": "This buckle adds no power at all, but it's shiny. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
"bodySpecialSummer2015HealerText": "Sailor's Neckerchief",
- "bodySpecialSummer2015HealerNotes": "Yo ho ho? No, no, no! Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
+ "bodySpecialSummer2015HealerNotes": "Yo ho ho? No, no, no! Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2015.",
"bodySpecialNamingDay2018Text": "Royal Purple Gryphon Cloak",
- "bodySpecialNamingDay2018Notes": "Happy Naming Day! Wear this fancy and feathery cloak as you celebrate Habitica. Confers no benefit.",
+ "bodySpecialNamingDay2018Notes": "Happy Naming Day! Wear this fancy and feathery cloak as you celebrate Habitica. Waláng pakinabang.",
"bodyMystery201705Text": "Folded Feathered Fighter Wings",
- "bodyMystery201705Notes": "These folded wings don't just look snazzy: they will give you the speed and agility of a gryphon! Confers no benefit. May 2017 Subscriber Item.",
+ "bodyMystery201705Notes": "These folded wings don't just look snazzy: they will give you the speed and agility of a gryphon! Waláng pakinabang. May 2017 Subscriber Item.",
"bodyMystery201706Text": "Ragged Corsair's Cloak",
- "bodyMystery201706Notes": "This cloak has secret pockets to hide all the Gold you loot from your Tasks. Confers no benefit. June 2017 Subscriber Item.",
+ "bodyMystery201706Notes": "This cloak has secret pockets to hide all the Gold you loot from your Tasks. Waláng pakinabang. June 2017 Subscriber Item.",
"bodyMystery201711Text": "Carpet Rider Scarf",
- "bodyMystery201711Notes": "This soft knitted scarf looks quite majestic blowing in the wind. Confers no benefit. November 2017 Subscriber Item.",
+ "bodyMystery201711Notes": "This soft knitted scarf looks quite majestic blowing in the wind. Waláng pakinabang. November 2017 Subscriber Item.",
"bodyArmoireCozyScarfText": "Cozy Scarf",
- "bodyArmoireCozyScarfNotes": "This fine scarf will keep you warm as you go about your wintry business. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Lamplighter's Set (Item 4 of 4).",
+ "bodyArmoireCozyScarfNotes": "This fine scarf will keep you warm as you go about your wintry business. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Lamplighter's Set (Iká-4 ng 4).",
"headAccessory": "head accessory",
"headAccessoryCapitalized": "Head Accessory",
"accessories": "Accessories",
@@ -1612,142 +1612,142 @@
"headAccessoryBase0Text": "No Head Accessory",
"headAccessoryBase0Notes": "No Head Accessory.",
"headAccessorySpecialSpringRogueText": "Purple Cat Ears",
- "headAccessorySpecialSpringRogueNotes": "These feline ears twitch to detect incoming threats. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2014.",
+ "headAccessorySpecialSpringRogueNotes": "These feline ears twitch to detect incoming threats. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2014.",
"headAccessorySpecialSpringWarriorText": "Green Bunny Ears",
- "headAccessorySpecialSpringWarriorNotes": "Bunny ears that keenly detect every crunch of a carrot. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2014.",
+ "headAccessorySpecialSpringWarriorNotes": "Bunny ears that keenly detect every crunch of a carrot. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2014.",
"headAccessorySpecialSpringMageText": "Blue Mouse Ears",
- "headAccessorySpecialSpringMageNotes": "These round mouse ears are silky-soft. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2014.",
+ "headAccessorySpecialSpringMageNotes": "These round mouse ears are silky-soft. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2014.",
"headAccessorySpecialSpringHealerText": "Yellow Dog Ears",
- "headAccessorySpecialSpringHealerNotes": "Floppy but cute. Wanna play? Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2014.",
+ "headAccessorySpecialSpringHealerNotes": "Floppy but cute. Wanna play? daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2014.",
"headAccessorySpecialSpring2015RogueText": "Yellow Mouse Ears",
- "headAccessorySpecialSpring2015RogueNotes": "These ears steel themselves against the sound of explosions. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2015.",
+ "headAccessorySpecialSpring2015RogueNotes": "These ears steel themselves against the sound of explosions. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2015.",
"headAccessorySpecialSpring2015WarriorText": "Purple Dog Ears",
- "headAccessorySpecialSpring2015WarriorNotes": "They are purple. They are dog ears. Do not waste your time with further foolishness. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2015.",
+ "headAccessorySpecialSpring2015WarriorNotes": "They are purple. They are dog ears. Do not waste your time with further foolishness. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2015.",
"headAccessorySpecialSpring2015MageText": "Blue Bunny Ears",
- "headAccessorySpecialSpring2015MageNotes": "These ears listen keenly, in case somewhere a magician is revealing secrets. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2015.",
+ "headAccessorySpecialSpring2015MageNotes": "These ears listen keenly, in case somewhere a magician is revealing secrets. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2015.",
"headAccessorySpecialSpring2015HealerText": "Green Kitty Ears",
- "headAccessorySpecialSpring2015HealerNotes": "These cute kitty ears will make others green with envy. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2015.",
+ "headAccessorySpecialSpring2015HealerNotes": "These cute kitty ears will make others green with envy. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2015.",
"headAccessorySpecialSpring2016RogueText": "Green Dog Ears",
- "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2016.",
+ "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2016.",
"headAccessorySpecialSpring2016WarriorText": "Red Mouse Ears",
- "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2016.",
+ "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2016.",
"headAccessorySpecialSpring2016MageText": "Yellow Cat Ears",
- "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2016.",
+ "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2016.",
"headAccessorySpecialSpring2016HealerText": "Purple Bunny Ears",
- "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2016.",
+ "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2016.",
"headAccessorySpecialSpring2017RogueText": "Red Bunny Ears",
- "headAccessorySpecialSpring2017RogueNotes": "No sounds will escape you thanks to these ears. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
+ "headAccessorySpecialSpring2017RogueNotes": "No sounds will escape you thanks to these ears. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
"headAccessorySpecialSpring2017WarriorText": "Blue Kitty Ears",
- "headAccessorySpecialSpring2017WarriorNotes": "These ears can hear a bag of kitty treats open even in the din of battle! Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
+ "headAccessorySpecialSpring2017WarriorNotes": "These ears can hear a bag of kitty treats open even in the din of battle! Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
"headAccessorySpecialSpring2017MageText": "Teal Dog Ears",
- "headAccessorySpecialSpring2017MageNotes": "You can hear the magic in the air! Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
+ "headAccessorySpecialSpring2017MageNotes": "You can hear the magic in the air! Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
"headAccessorySpecialSpring2017HealerText": "Purple Mouse Ears",
- "headAccessorySpecialSpring2017HealerNotes": "These ears will help you hear healing secrets. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
+ "headAccessorySpecialSpring2017HealerNotes": "These ears will help you hear healing secrets. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2017.",
"headAccessoryBearEarsText": "Bear Ears",
- "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.",
+ "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Waláng pakinabang.",
"headAccessoryCactusEarsText": "Cactus Ears",
- "headAccessoryCactusEarsNotes": "These ears make you look like a prickly cactus! Confers no benefit.",
+ "headAccessoryCactusEarsNotes": "These ears make you look like a prickly cactus! Waláng pakinabang.",
"headAccessoryFoxEarsText": "Fox Ears",
- "headAccessoryFoxEarsNotes": "These ears make you look like a wily fox! Confers no benefit.",
+ "headAccessoryFoxEarsNotes": "These ears make you look like a wily fox! Waláng pakinabang.",
"headAccessoryLionEarsText": "Lion Ears",
- "headAccessoryLionEarsNotes": "These ears make you look like a regal lion! Confers no benefit.",
+ "headAccessoryLionEarsNotes": "These ears make you look like a regal lion! Waláng pakinabang.",
"headAccessoryPandaEarsText": "Panda Ears",
- "headAccessoryPandaEarsNotes": "These ears make you look like a gentle panda! Confers no benefit.",
+ "headAccessoryPandaEarsNotes": "These ears make you look like a gentle panda! Waláng pakinabang.",
"headAccessoryPigEarsText": "Pig Ears",
- "headAccessoryPigEarsNotes": "These ears make you look like a whimsical pig! Confers no benefit.",
+ "headAccessoryPigEarsNotes": "These ears make you look like a whimsical pig! Waláng pakinabang.",
"headAccessoryTigerEarsText": "Tiger Ears",
- "headAccessoryTigerEarsNotes": "These ears make you look like a fierce tiger! Confers no benefit.",
+ "headAccessoryTigerEarsNotes": "These ears make you look like a fierce tiger! Waláng pakinabang.",
"headAccessoryWolfEarsText": "Wolf Ears",
- "headAccessoryWolfEarsNotes": "These ears make you look like a loyal wolf! Confers no benefit.",
+ "headAccessoryWolfEarsNotes": "These ears make you look like a loyal wolf! Waláng pakinabang.",
"headAccessoryBlackHeadbandText": "Black Headband",
- "headAccessoryBlackHeadbandNotes": "A simple black headband. Confers no benefit.",
+ "headAccessoryBlackHeadbandNotes": "A simple black headband. Waláng pakinabang.",
"headAccessoryBlueHeadbandText": "Blue Headband",
- "headAccessoryBlueHeadbandNotes": "A simple blue headband. Confers no benefit.",
+ "headAccessoryBlueHeadbandNotes": "A simple blue headband. Waláng pakinabang.",
"headAccessoryGreenHeadbandText": "Green Headband",
- "headAccessoryGreenHeadbandNotes": "A simple green headband. Confers no benefit.",
+ "headAccessoryGreenHeadbandNotes": "A simple green headband. Waláng pakinabang.",
"headAccessoryPinkHeadbandText": "Pink Headband",
- "headAccessoryPinkHeadbandNotes": "A simple pink headband. Confers no benefit.",
+ "headAccessoryPinkHeadbandNotes": "A simple pink headband. Waláng pakinabang.",
"headAccessoryRedHeadbandText": "Red Headband",
- "headAccessoryRedHeadbandNotes": "A simple red headband. Confers no benefit.",
+ "headAccessoryRedHeadbandNotes": "A simple red headband. Waláng pakinabang.",
"headAccessoryWhiteHeadbandText": "White Headband",
- "headAccessoryWhiteHeadbandNotes": "A simple white headband. Confers no benefit.",
+ "headAccessoryWhiteHeadbandNotes": "A simple white headband. Waláng pakinabang.",
"headAccessoryYellowHeadbandText": "Yellow Headband",
- "headAccessoryYellowHeadbandNotes": "A simple yellow headband. Confers no benefit.",
+ "headAccessoryYellowHeadbandNotes": "A simple yellow headband. Waláng pakinabang.",
"headAccessoryMystery201403Text": "Forest Walker Antlers",
- "headAccessoryMystery201403Notes": "These antlers shimmer with moss and lichen. Confers no benefit. March 2014 Subscriber Item.",
+ "headAccessoryMystery201403Notes": "These antlers shimmer with moss and lichen. Waláng pakinabang. March 2014 Subscriber Item.",
"headAccessoryMystery201404Text": "Twilight Butterfly Antennae",
- "headAccessoryMystery201404Notes": "These antennae help the wearer sense dangerous distractions! Confers no benefit. April 2014 Subscriber Item.",
+ "headAccessoryMystery201404Notes": "These antennae help the wearer sense dangerous distractions! Waláng pakinabang. April 2014 Subscriber Item.",
"headAccessoryMystery201409Text": "Autumn Antlers",
- "headAccessoryMystery201409Notes": "These powerful antlers change colors with the leaves. Confers no benefit. September 2014 Subscriber Item.",
+ "headAccessoryMystery201409Notes": "These powerful antlers change colors with the leaves. Waláng pakinabang. September 2014 Subscriber Item.",
"headAccessoryMystery201502Text": "Wings of Thought",
- "headAccessoryMystery201502Notes": "Let your imagination take flight! Confers no benefit. February 2015 Subscriber Item.",
+ "headAccessoryMystery201502Notes": "Let your imagination take flight! Waláng pakinabang. February 2015 Subscriber Item.",
"headAccessoryMystery201510Text": "Goblin Horns",
- "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.",
+ "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Waláng pakinabang. October 2015 Subscriber Item.",
"headAccessoryMystery201801Text": "Frost Sprite Antlers",
- "headAccessoryMystery201801Notes": "These icy antlers shimmer with the glow of winter auroras. Confers no benefit. January 2018 Subscriber Item.",
+ "headAccessoryMystery201801Notes": "These icy antlers shimmer with the glow of winter auroras. Waláng pakinabang. January 2018 Subscriber Item.",
"headAccessoryMystery201804Text": "Squirrel Ears",
- "headAccessoryMystery201804Notes": "These fuzzy sound-catchers will ensure you never miss the rustle of a leaf or the sound of an acorn falling! Confers no benefit. April 2018 Subscriber Item.",
+ "headAccessoryMystery201804Notes": "These fuzzy sound-catchers will ensure you never miss the rustle of a leaf or the sound of an acorn falling! Waláng pakinabang. April 2018 Subscriber Item.",
"headAccessoryMystery201812Text": "Arctic Fox Ears",
- "headAccessoryMystery201812Notes": "You hear the subtle sound of snowflakes falling upon the landscape. Confers no benefit. December 2018 Subscriber Item.",
+ "headAccessoryMystery201812Notes": "You hear the subtle sound of snowflakes falling upon the landscape. Waláng pakinabang. December 2018 Subscriber Item.",
"headAccessoryMystery301405Text": "Headwear Goggles",
- "headAccessoryMystery301405Notes": "\"Goggles are for your eyes,\" they said. \"Nobody wants goggles that you can only wear on your head,\" they said. Hah! You sure showed them! Confers no benefit. August 3015 Subscriber Item.",
+ "headAccessoryMystery301405Notes": "\"Goggles are for your eyes,\" they said. \"Nobody wants goggles that you can only wear on your head,\" they said. Hah! You sure showed them! Waláng pakinabang. August 3015 Subscriber Item.",
"headAccessoryArmoireComicalArrowText": "Comical Arrow",
- "headAccessoryArmoireComicalArrowNotes": "This whimsical item sure is good for a laugh! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Independent Item.",
+ "headAccessoryArmoireComicalArrowNotes": "This whimsical item sure is good for a laugh! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"headAccessoryArmoireGogglesOfBookbindingText": "Goggles of Bookbinding",
- "headAccessoryArmoireGogglesOfBookbindingNotes": "These goggles will help you zero in on any task, large or small! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Bookbinder Set (Item 1 of 4).",
+ "headAccessoryArmoireGogglesOfBookbindingNotes": "These goggles will help you zero in on any task, large or small! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Bookbinder Set (Iká-1 ng 4).",
"eyewear": "Eyewear",
"eyewearCapitalized": "Eyewear",
"eyewearBase0Text": "No Eyewear",
"eyewearBase0Notes": "No Eyewear.",
"eyewearSpecialBlackTopFrameText": "Black Standard Eyeglasses",
- "eyewearSpecialBlackTopFrameNotes": "Glasses with a black frame above the lenses. Confers no benefit.",
+ "eyewearSpecialBlackTopFrameNotes": "Glasses with a black frame above the lenses. Waláng pakinabang.",
"eyewearSpecialBlueTopFrameText": "Blue Standard Eyeglasses",
- "eyewearSpecialBlueTopFrameNotes": "Glasses with a blue frame above the lenses. Confers no benefit.",
+ "eyewearSpecialBlueTopFrameNotes": "Glasses with a blue frame above the lenses. Waláng pakinabang.",
"eyewearSpecialGreenTopFrameText": "Green Standard Eyeglasses",
- "eyewearSpecialGreenTopFrameNotes": "Glasses with a green frame above the lenses. Confers no benefit.",
+ "eyewearSpecialGreenTopFrameNotes": "Glasses with a green frame above the lenses. Waláng pakinabang.",
"eyewearSpecialPinkTopFrameText": "Pink Standard Eyeglasses",
- "eyewearSpecialPinkTopFrameNotes": "Glasses with a pink frame above the lenses. Confers no benefit.",
+ "eyewearSpecialPinkTopFrameNotes": "Glasses with a pink frame above the lenses. Waláng pakinabang.",
"eyewearSpecialRedTopFrameText": "Red Standard Eyeglasses",
- "eyewearSpecialRedTopFrameNotes": "Glasses with a red frame above the lenses. Confers no benefit.",
+ "eyewearSpecialRedTopFrameNotes": "Glasses with a red frame above the lenses. Waláng pakinabang.",
"eyewearSpecialWhiteTopFrameText": "White Standard Eyeglasses",
- "eyewearSpecialWhiteTopFrameNotes": "Glasses with a white frame above the lenses. Confers no benefit.",
+ "eyewearSpecialWhiteTopFrameNotes": "Glasses with a white frame above the lenses. Waláng pakinabang.",
"eyewearSpecialYellowTopFrameText": "Yellow Standard Eyeglasses",
- "eyewearSpecialYellowTopFrameNotes": "Glasses with a yellow frame above the lenses. Confers no benefit.",
+ "eyewearSpecialYellowTopFrameNotes": "Glasses with a yellow frame above the lenses. Waláng pakinabang.",
"eyewearSpecialAetherMaskText": "Aether Mask",
"eyewearSpecialAetherMaskNotes": "This mask has a mysterious history. Nagtataás ng Katalinuhan ng <%= int %>.",
"eyewearSpecialSummerRogueText": "Roguish Eyepatch",
- "eyewearSpecialSummerRogueNotes": "It doesn't take a scallywag to see how stylish this is! Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2014.",
+ "eyewearSpecialSummerRogueNotes": "It doesn't take a scallywag to see how stylish this is! Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2014.",
"eyewearSpecialSummerWarriorText": "Dashing Eyepatch",
- "eyewearSpecialSummerWarriorNotes": "It doesn't take a rapscallion to see how stylish this is! Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2014.",
+ "eyewearSpecialSummerWarriorNotes": "It doesn't take a rapscallion to see how stylish this is! Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2014.",
"eyewearSpecialWonderconRedText": "Mighty Mask",
- "eyewearSpecialWonderconRedNotes": "What a powerful face accessory! Confers no benefit. Special Edition Convention Item.",
+ "eyewearSpecialWonderconRedNotes": "What a powerful face accessory! Waláng pakinabang. Special Edition Convention Item.",
"eyewearSpecialWonderconBlackText": "Sneaky Mask",
- "eyewearSpecialWonderconBlackNotes": "Your motives are definitely legitimate. Confers no benefit. Special Edition Convention Item.",
+ "eyewearSpecialWonderconBlackNotes": "Your motives are definitely legitimate. Waláng pakinabang. Special Edition Convention Item.",
"eyewearMystery201503Text": "Aquamarine Eyewear",
- "eyewearMystery201503Notes": "Don't get poked in the eye by these shimmering gems! Confers no benefit. March 2015 Subscriber Item.",
+ "eyewearMystery201503Notes": "Don't get poked in the eye by these shimmering gems! Waláng pakinabang. March 2015 Subscriber Item.",
"eyewearMystery201506Text": "Neon Snorkel",
- "eyewearMystery201506Notes": "This neon snorkel lets its wearer see underwater. Confers no benefit. June 2015 Subscriber Item.",
+ "eyewearMystery201506Notes": "This neon snorkel lets its wearer see underwater. Waláng pakinabang. June 2015 Subscriber Item.",
"eyewearMystery201507Text": "Rad Sunglasses",
- "eyewearMystery201507Notes": "These sunglasses let you stay cool even when the weather is hot. Confers no benefit. July 2015 Subscriber Item.",
+ "eyewearMystery201507Notes": "These sunglasses let you stay cool even when the weather is hot. Waláng pakinabang. July 2015 Subscriber Item.",
"eyewearMystery201701Text": "Timeless Shades",
- "eyewearMystery201701Notes": "These sunglasses will protect your eyes from harmful rays and will look stylish no matter where you find yourself in time! Confers no benefit. January 2017 Subscriber Item.",
+ "eyewearMystery201701Notes": "These sunglasses will protect your eyes from harmful rays and will look stylish no matter where you find yourself in time! Waláng pakinabang. January 2017 Subscriber Item.",
"eyewearMystery301404Text": "Eyewear Goggles",
- "eyewearMystery301404Notes": "No eyewear could be fancier than a pair of goggles - except, perhaps, for a monocle. Confers no benefit. April 3015 Subscriber Item.",
+ "eyewearMystery301404Notes": "No eyewear could be fancier than a pair of goggles - except, perhaps, for a monocle. Waláng pakinabang. April 3015 Subscriber Item.",
"eyewearMystery301405Text": "Monocle",
- "eyewearMystery301405Notes": "No eyewear could be fancier than a monocle - except, perhaps, for a pair of goggles. Confers no benefit. July 3015 Subscriber Item.",
+ "eyewearMystery301405Notes": "No eyewear could be fancier than a monocle - except, perhaps, for a pair of goggles. Waláng pakinabang. July 3015 Subscriber Item.",
"eyewearMystery301703Text": "Peacock Masquerade Mask",
- "eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
+ "eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Waláng pakinabang. March 3017 Subscriber Item.",
"eyewearArmoirePlagueDoctorMaskText": "Plague Doctor Mask",
- "eyewearArmoirePlagueDoctorMaskNotes": "An authentic mask worn by the doctors who battle the Plague of Procrastination. Nagtataás ng Pangangatawán at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Plague Doctor Set (Item 2 of 3).",
+ "eyewearArmoirePlagueDoctorMaskNotes": "An authentic mask worn by the doctors who battle the Plague of Procrastination. Nagtataás ng Pangangatawán at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Plague Doctor Set (Iká-2 ng 3).",
"eyewearArmoireGoofyGlassesText": "Goofy Glasses",
- "eyewearArmoireGoofyGlassesNotes": "Perfect for going incognito or just making your partymates giggle. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Independent Item.",
+ "eyewearArmoireGoofyGlassesNotes": "Perfect for going incognito or just making your partymates giggle. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Bukód na Kagamitán.",
"twoHandedItem": "Two-handed item.",
"weaponSpecialSummer2019RogueText": "Sinaunáng Pasangit",
"weaponSpecialSpring2019HealerText": "Awit sa Tagsiból",
"weaponSpecialSpring2019MageText": "Tungkód na Batóng Dagtâ",
"weaponSpecialSpring2019WarriorText": "Tangkáy na Talibong",
"armorSpecialSummer2021WarriorText": "Mapalikpík na Balutì",
- "weaponSpecialSummer2021WarriorText": "",
+ "weaponSpecialSummer2021WarriorText": "Matubig na Talim",
"weaponSpecialSummer2020WarriorText": "Tagâ",
"armorSpecialSpring2019WarriorText": "Orkid na Balutì",
"armorSpecialSummer2021RogueText": "Mga Palikpík ng
Clownfish",
@@ -1772,7 +1772,7 @@
"weaponSpecialSpring2020WarriorNotes": "Fight or flight, this wing will serve you well! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2020.",
"weaponSpecialSummer2020HealerNotes": "As the currents wear away sharp edges, so shall your magic soften your friends' pain. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2020.",
"weaponSpecialSpring2019RogueNotes": "These weapons contain the power of the sky and rain. We recommend that you not use them while immersed in water. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2019.",
- "weaponSpecialSpring2019WarriorNotes": "Bad habits cower before this verdant blade. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2019.",
+ "weaponSpecialSpring2019WarriorNotes": "Nanginginíg sa takot ang mga masasamáng gawì sa harap ng luntiang talim na itó. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2019.",
"weaponSpecialSpring2019MageNotes": "There's a mosquito embedded in the stone at the end of this staff! May or may not include Dino DNA. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2019.",
"weaponSpecialSpring2019HealerNotes": "Your song of flowers and rain will soothe the spirits of all who hear. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2019.",
"weaponSpecialSummer2019RogueNotes": "This ancient and formidable weapon will help you win any undersea battle. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2019.",
@@ -1789,7 +1789,7 @@
"weaponSpecialSpring2020MageNotes": "They keep falling on your head! But you'll never stop them by complaining. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2020.",
"weaponSpecialSummer2020RogueNotes": "Your enemies don't see you coming, but your Fangs are inescapable! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2020.",
"weaponSpecialSpring2020HealerNotes": "An iris is beautiful, but the leaves are like swords... don't be deceived by the flowers, this staff is tough as steel! Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2020.",
- "weaponSpecialFall2020RogueNotes": "Pierce your foe with one sharp strike! Even the thickest armor will give way to your blade. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2020.",
+ "weaponSpecialFall2020RogueNotes": "Isaisáng hampás mo lang ang iyóng kalaban. Kahit ang pinakamakapál na balutì ay matatagos nitó. Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2020.",
"weaponSpecialSummer2020WarriorNotes": "If your foes mock your choice of weapon, don't take the bait. This wicked hook is the reel deal! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2020.",
"weaponSpecialSummer2020MageNotes": "Steer your way through the most treacherous seas and turbulent battles. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2020.",
"weaponSpecialFall2020HealerNotes": "Now that your transformation is complete, this remnant of your life as a pupa now serves as the divining rod with which you measure destinies. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2020.",
@@ -1802,7 +1802,7 @@
"weaponSpecialSpring2021MageNotes": "Throw, beat, treadle, rest! Swish this magnificent feather in time to conduct the music of your magic. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2021.",
"weaponSpecialSpring2021HealerNotes": "The bark and leaves of this fresh cutting are known for their ability to relieve pain. Or you can plant it and watch it grow! Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2021.",
"weaponSpecialSummer2021RogueNotes": "Any predatory monster that dares approach will feel the sting of your protective friends! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2021.",
- "weaponSpecialSummer2021WarriorNotes": "This shimmering blade may flow like water, but it can cut to the heart of the trickiest problems! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2021.",
+ "weaponSpecialSummer2021WarriorNotes": "Malatubig man ang makináng na talim na ito, ngunit natutumbók nitó ang pinakapunó't dulò ng mga pinakamasalimuot na suliranín! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2021.",
"weaponSpecialSummer2021HealerNotes": "Not to get corny, but this staff is a lifesaver. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2021.",
"weaponSpecialSpring2022RogueNotes": "A shiny! It’s so shiny and gleaming and pretty and nice and all yours! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2022.",
"weaponSpecialWinter2022HealerNotes": "Touch this solid-water implement to a friend's neck and they'll jump out of their chair! But they'll feel better afterward. Hopefully. Nagtataás ng Katalinuhan ng <%= int %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2021-2022.",
@@ -1813,7 +1813,7 @@
"weaponSpecialWinter2022WarriorNotes": "How many licks does it take to sharpen this candy cane into the perfect sword? Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2021-2022.",
"weaponSpecialWinter2022MageNotes": "The berries on this staff contain an ancient magic to be wielded in winter. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2021-2022.",
"weaponSpecialFall2021RogueNotes": "What on Earth did you get into? When people say Rogues have sticky fingers, this is not what they mean! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2021.",
- "weaponSpecialFall2021WarriorNotes": "This stylized, single-bladed axe is ideal for chopping... pumpkins! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2021.",
+ "weaponSpecialFall2021WarriorNotes": "Ang walastík na palakól na itó na may isáng talim ay mainam sa pagsisibák... ng mga kalabasa! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2021.",
"weaponSpecialFall2021MageNotes": "Knowledge seeks knowledge. Formed of memories and desires, this fearsome hand grasps for more. Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2021.",
"weaponSpecialSpring2022WarriorNotes": "Yikes! Guess that wind was a little stronger than you thought, huh? Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2022.",
"armorSpecialSpring2019RogueNotes": "Some very tuff fluff. Nagtataás ng Pandamá ng <%= per %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2019.",
@@ -1934,15 +1934,15 @@
"shieldSpecialSpring2021WarriorNotes": "The beauty in this roughly-shaped sunstone will shine even in the deepest caves and darkest dungeons. Hold it high! Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2021.",
"shieldSpecialFall2019WarriorNotes": "The dark sheen of a raven's feather made solid, this shield will frustrate all attacks. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2019.",
"shieldSpecialSummer2020HealerNotes": "As the motion of sand and water turns trash to treasure, so shall your magic turn wounds to strength. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2020.",
- "shieldSpecialFall2020RogueNotes": "Wielding a katar, you'd better be quick on your feet... This blade will serve you well if you strike fast, but don't over-commit! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2020.",
+ "shieldSpecialFall2020RogueNotes": "Kung hahawak ka ng katar, dapat mabilís... Bagay itó sa 'yo kung mabilís kang tumamà, ngunit huwág magmamalabís sa panunungkulan! Nagtataás ng Lakás ng <%= str %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2020.",
"shieldSpecialSummer2020WarriorNotes": "This fish you caught one time was SO BIG, a single scale was enough to make a mighty shield! True story! Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2020.",
"shieldSpecialFall2020HealerNotes": "Is it another moth you carry, still undergoing metamorphosis? Or simply a silken handbag, containing your tools of healing and prophecy? Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2020.",
"shieldSpecialSpring2020HealerNotes": "Ward off those musty old To Do's with this sweet-smelling shield. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2020.",
"shieldSpecialWinter2021WarriorNotes": "Tell all your friends about the REALLY big fish you've caught! But whether you tell them he's made of plastic and sings songs is up to you. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2020-2021.",
"shieldSpecialSpring2021HealerNotes": "A leafy green bundle that heralds shelter and compassion. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2021.",
- "eyewearSpecialFall2019HealerNotes": "Steel yourself against the toughest foes with this inscrutable mask. Waláng daláng pakinabang.Biláng na Limbág na Kasangkapan ng Taglagás ng 2019.",
+ "eyewearSpecialFall2019HealerNotes": "Steel yourself against the toughest foes with this inscrutable mask. Waláng pakinabang.Biláng na Limbág na Kasangkapan ng Taglagás ng 2019.",
"shieldSpecialFall2021WarriorNotes": "This festive shield with its crooked smile will both protect you and light your way on a dark night. It nicely doubles for a head, should you need one! Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2021.",
- "eyewearSpecialFall2019RogueNotes": "You'd think a full mask would protect your identity better, but people tend to be too awestruck by its stark design to take note of any identifying features left revealed. Waláng daláng pakinabang. Biláng na Limbág na Kasangkapan ng Taglagás ng 2019.",
+ "eyewearSpecialFall2019RogueNotes": "You'd think a full mask would protect your identity better, but people tend to be too awestruck by its stark design to take note of any identifying features left revealed. Waláng pakinabang. Biláng na Limbág na Kasangkapan ng Taglagás ng 2019.",
"shieldSpecialSummer2021WarriorNotes": "This enchanted water droplet soaks up magic and resists the blows of the reddest Dailies. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2021.",
"shieldSpecialSpring2022WarriorNotes": "Ever had one of those days when it seems like a raincloud is following you around? Well, consider yourself lucky, because the prettiest flowers will soon be growing at your feet! Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tagsiból ng 2022.",
"shieldSpecialSummer2021HealerNotes": "So much potential in this shield! But for now you can use it to protect your friends. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Tag-aráw ng 2021.",
@@ -1950,157 +1950,282 @@
"shieldSpecialWinter2022HealerNotes": "Though it melts in your hand, the power of elemental ice replenishes it from within. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2021-2022.",
"shieldSpecialFall2021HealerNotes": "An ethereal being rises from your magical flames to grant you extra protection. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglagás ng 2021.",
"shieldSpecialWinter2022WarriorNotes": "This is a jingle bell, jingle bell, jingle bell shield. Jingle bell protect and jingle bell deflect. Nagtataás ng Pangangatawán ng <%= con %>. Biláng na Limbág na Kasangkapan ng Taglamíg ng 2021-2022.",
- "shieldArmoireBaseballGloveNotes": "Perfect for the big tournament, or a friendly game of catch between tasks. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Baseball Set (Item 4 of 4).",
- "shieldArmoireMeatFoodNotes": "Sometimes a bit of protein is what you need to grow up big and strong. Some of your pets are more eager for it than others! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Pet Food Set (Item 5 of 10).",
- "shieldArmoireBouncyBubblesNotes": "Complete your relaxing bath with these exuberant bubbles! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Bubble Bath Set (Item 4 of 4).",
+ "shieldArmoireBaseballGloveNotes": "Perfect for the big tournament, or a friendly game of catch between tasks. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Baseball Set (Iká-4 ng 4).",
+ "shieldArmoireMeatFoodNotes": "Sometimes a bit of protein is what you need to grow up big and strong. Some of your pets are more eager for it than others! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Pet Food Set (Iká-5 ng 10).",
+ "shieldArmoireBouncyBubblesNotes": "Complete your relaxing bath with these exuberant bubbles! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Bubble Bath Set (Iká-4 ng 4).",
"weaponSpecialKS2019Notes": "Kasimbalikô ng tukâ at kukó ng
gryphon, nagpapaalala ang mapalamutíng sibát na itó na tiyagaín ang mga gawain kapág nakakapanghinang-loób ang mga itó. Nagtataás ng Lakás ng <%= str %>.",
- "shieldArmoireStrawberryFoodNotes": "A delicious fresh strawberry to feed to your pets! Do you know which pets like strawberries best? Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Pet Food Set (Item 1 of 10).",
- "shieldArmoireBagpipesNotes": "The uncharitable might say you're planning to wake the dead with these bagpipes -- but you know you're just motivating your Party to success! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Bagpiper Set (Item 3 of 3).",
- "shieldArmoireGardenersSpadeNotes": "Whether you’re digging in the garden, searching for buried treasure, or creating a secret tunnel, this trusty spade is at your side. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Gardener Set (Item 3 of 4).",
- "armorArmoireClownsMotleyNotes": "The clothes fit beautifully, but filling these shoes is no small feat. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Clown Set (Item 1 of 5).",
- "weaponArmoireBlueMoonSaiNotes": "This sai is a traditional weapon, imbued with the powers of the dark side of the moon. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Blue Moon Rogue Set (item 1 of 4).",
- "weaponArmoireSlingshotNotes": "Take aim at your red Dailies! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Independent Item.",
- "weaponArmoirePaperCutterNotes": "This may not look fearsome, but have you never had a papercut? Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Paper Knight Set (Item 1 of 3).",
- "weaponArmoireFiddlersBowNotes": "You can coax music out of anything with this! ...A violin might work best, though. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Fiddler Set (Item 3 of 4).",
- "weaponArmoireLivelyMatchNotes": "When you're holding this, you're sure to spark someone's interest! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Match Maker Set (Item 3 of 4).",
- "weaponArmoireGuardiansCrookNotes": "This shepherd's crook could come in handy next time you take your Pets for a stroll in the countryside... Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Guardian of the Grazers Set (Item 2 of 3).",
- "weaponArmoireClubOfClubsNotes": "This stylish club won't tip your hand too early about your intentions toward those sneaky old tasks. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Jack of Clubs Set (Item 2 of 3).",
- "weaponArmoireHandyHookNotes": "Who needs opposable thumbs? This hook is “handy” enough for anyone. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Pirate Set (Item 1 of 3).",
- "weaponArmoireMedievalWashboardNotes": "Scrub-a-dub-dub! It's time to apply some elbow grease and get that laundry clean. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Medieval Launderers Set (Item 5 of 6).",
- "weaponArmoireJadeGlaiveNotes": "The reach of this glaive will keep you far from your enemies! Also, you can knock things off high shelves. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Jade Warrior Set (Item 3 of 3).",
- "weaponArmoireHeraldsBuisineNotes": "Any announcement will sound so much better following fanfare from this trumpet. Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Herald Set (Item 3 of 4).",
- "shieldArmoireBirthdayBannerNotes": "Celebrate your special day, the special day of someone you love, or break this out for Habitica's Birthday on January 31! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Happy Birthday Set (Item 4 of 4).",
- "headArmoireHornsOfAutumnNotes": "Draw the power of the season's brisk air and channel it through your magic! Nagtataás ng Lakás ng <%= str %>. Enchanted Armoire: Autumn Enchanter Set (Item 1 of 4).",
- "armorArmoireGuardiansGownNotes": "A lovely rustic gown, with surprisingly sturdy seams! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Guardian of the Grazers Set (Item 3 of 3).",
- "weaponArmoireChefsSpoonNotes": "Raise it as you release your battle cry: “SPOOOON!!” Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Chef Set (Item 3 of 4).",
- "weaponArmoireJugglingBallsNotes": "Habiticans are master multi-taskers, so you should have no trouble keeping all these balls in the air! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Independent Item.",
- "weaponArmoireEveningTeaNotes": "This panacea will help you relax so those big tasks don't look so threatening. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Dressing Gown Set (Item 3 of 3).",
- "weaponArmoireSkullLanternNotes": "Let its glow be your guide throughout the darkest nights of your adventures. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Independent Item.",
- "weaponArmoireGardenersWateringCanNotes": "You can’t get far without water! Have an infinite supply on hand with this magic, refilling watering can. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Gardener Set (Item 4 of 4).",
- "armorArmoireChefsJacketNotes": "This thick cotton jacket is double-breasted to protect you from spills (and conveniently reversible…). Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Chef Set (Item 2 of 4).",
- "weaponArmoireVernalTaperNotes": "The days are getting longer, but this candle will help you find your way before sunrise. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Vernal Vestments Set (Item 3 of 3).",
+ "shieldArmoireStrawberryFoodNotes": "A delicious fresh strawberry to feed to your pets! Do you know which pets like strawberries best? Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Pet Food Set (Iká-1 ng 10).",
+ "shieldArmoireBagpipesNotes": "The uncharitable might say you're planning to wake the dead with these bagpipes -- but you know you're just motivating your Party to success! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Bagpiper Set (Iká-3 ng 3).",
+ "shieldArmoireGardenersSpadeNotes": "Whether you’re digging in the garden, searching for buried treasure, or creating a secret tunnel, this trusty spade is at your side. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Gardener Set (Iká-3 ng 4).",
+ "armorArmoireClownsMotleyNotes": "The clothes fit beautifully, but filling these shoes is no small feat. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Clown Set (Iká-1 ng 5).",
+ "weaponArmoireBlueMoonSaiNotes": "This sai is a traditional weapon, imbued with the powers of the dark side of the moon. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Blue Moon Rogue Set (Iká-1 ng 4).",
+ "weaponArmoireSlingshotNotes": "Take aim at your red Dailies! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Bukód na Kagamitán.",
+ "weaponArmoirePaperCutterNotes": "This may not look fearsome, but have you never had a papercut? Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Paper Knight Set (Iká-1 ng 3).",
+ "weaponArmoireFiddlersBowNotes": "You can coax music out of anything with this! ...A violin might work best, though. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Fiddler Set (Iká-3 ng 4).",
+ "weaponArmoireLivelyMatchNotes": "When you're holding this, you're sure to spark someone's interest! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Match Maker Set (Iká-3 ng 4).",
+ "weaponArmoireGuardiansCrookNotes": "This shepherd's crook could come in handy next time you take your Pets for a stroll in the countryside... Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Guardian of the Grazers Set (Iká-2 ng 3).",
+ "weaponArmoireClubOfClubsNotes": "This stylish club won't tip your hand too early about your intentions toward those sneaky old tasks. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Jack of Clubs Set (Iká-2 ng 3).",
+ "weaponArmoireHandyHookNotes": "Who needs opposable thumbs? This hook is “handy” enough for anyone. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Pirate Set (Iká-1 ng 3).",
+ "weaponArmoireMedievalWashboardNotes": "Scrub-a-dub-dub! It's time to apply some elbow grease and get that laundry clean. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Medieval Launderers Set (Iká-5 ng 6).",
+ "weaponArmoireJadeGlaiveNotes": "The reach of this glaive will keep you far from your enemies! Also, you can knock things off high shelves. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Jade Warrior Set (Iká-3 ng 3).",
+ "weaponArmoireHeraldsBuisineNotes": "Any announcement will sound so much better following fanfare from this trumpet. Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Herald Set (Iká-3 ng 4).",
+ "shieldArmoireBirthdayBannerNotes": "Celebrate your special day, the special day of someone you love, or break this out for Habitica's Birthday on January 31! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Happy Birthday Set (Iká-4 ng 4).",
+ "headArmoireHornsOfAutumnNotes": "Draw the power of the season's brisk air and channel it through your magic! Nagtataás ng Lakás ng <%= str %>. Mahiwagang Kabán: Autumn Enchanter Set (Item 1 of 4).",
+ "armorArmoireGuardiansGownNotes": "A lovely rustic gown, with surprisingly sturdy seams! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Guardian of the Grazers Set (Iká-3 ng 3).",
+ "weaponArmoireChefsSpoonNotes": "Raise it as you release your battle cry: “SPOOOON!!” Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Chef Set (Iká-3 ng 4).",
+ "weaponArmoireJugglingBallsNotes": "Habiticans are master multi-taskers, so you should have no trouble keeping all these balls in the air! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Bukód na Kagamitán.",
+ "weaponArmoireEveningTeaNotes": "This panacea will help you relax so those big tasks don't look so threatening. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Dressing Gown Set (Iká-3 ng 3).",
+ "weaponArmoireSkullLanternNotes": "Let its glow be your guide throughout the darkest nights of your adventures. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Bukód na Kagamitán.",
+ "weaponArmoireGardenersWateringCanNotes": "You can’t get far without water! Have an infinite supply on hand with this magic, refilling watering can. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Gardener Set (Iká-4 ng 4).",
+ "armorArmoireChefsJacketNotes": "This thick cotton jacket is double-breasted to protect you from spills (and conveniently reversible…). Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Chef Set (Iká-2 ng 4).",
+ "weaponArmoireVernalTaperNotes": "The days are getting longer, but this candle will help you find your way before sunrise. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Vernal Vestments Set (Iká-3 ng 3).",
"armorSpecialKS2019Notes": "Glowing from within like a gryphon's noble heart, this resplendent armor encourages you to take pride in your accomplishments. Nagtataás ng Pangangatawán ng <%= con %>.",
- "armorArmoireLayerCakeArmorNotes": "It's protective and tasty! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Happy Birthday Set (Item 2 of 4).",
- "armorArmoireMedievalLaundryDressNotes": "Put on your apron and roll up your sleeves: it's time to get the laundry done! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Medieval Launderers Set (Item 2 of 6).",
- "armorArmoireBagpipersKiltNotes": "A good sturdy kilt will serve you well. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Bagpiper Set (Item 2 of 3).",
+ "armorArmoireLayerCakeArmorNotes": "It's protective and tasty! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Happy Birthday Set (Iká-2 ng 4).",
+ "armorArmoireMedievalLaundryDressNotes": "Put on your apron and roll up your sleeves: it's time to get the laundry done! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Medieval Launderers Set (Iká-2 ng 6).",
+ "armorArmoireBagpipersKiltNotes": "A good sturdy kilt will serve you well. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Bagpiper Set (Iká-2 ng 3).",
"headSpecialKS2019Notes": "Adorned with a gryphon's likeness and plumage, this glorious helmet symbolizes the way your skills and bearing stand as an example to others. Nagtataás ng Katalinuhan ng <%= int %>.",
- "headArmoireHeroicHerbalistCrispinetteNotes": "This handy headdress will help you keep your hair out of the way... It doesn't hurt that it also adds to the mystique. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Heroic Herbalist Set (Item 3 of 3).",
- "headArmoireMatchMakersBeretNotes": "You'll look striking wearing this lovely hat! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Match Maker Set (Item 2 of 4).",
- "headArmoirePinkFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a perfect pink color. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Pink Loungewear Set (item 1 of 3).",
- "headArmoireJadeHelmNotes": "Some say jade decreases fear and anxiety. With this beautiful helm, you definitely have no cause to worry! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Jade Warrior Set (Item 1 of 3).",
- "shieldArmoireFiddleNotes": "A perfect instrument that always strikes the right note in company. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Fiddler Set (Item 4 of 4).",
- "bodyArmoireLifeguardWhistleNotes": "Call that misbehaving habit to order! It should know the rules! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Lifeguard Set (Item 3 of 3).",
- "shieldArmoireChocolateFoodNotes": "Everybody likes a little chocolate, but some of your pets are keener than others... Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Pet Food Set (Item 8 of 10).",
- "armorArmoireMedievalLaundryOutfitNotes": "Put on your working clothes and roll up your sleeves: it's time to get the laundry done! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Medieval Launderers Set (Item 1 of 6).",
- "armorArmoireBathtubNotes": "Time for a little R&R? Here's your own personal bathtub -- and a guarantee that the water is always the right temperature! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Bubble Bath Set (Item 2 of 4).",
- "armorArmoireHeraldsTunicNotes": "Get ready to spread good news far and wide in this colorful, royal outfit. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Herald Set (Item 1 of 4).",
- "armorArmoireShootingStarCostumeNotes": "Rumored to have been spun out of the night sky itself, this flowy gown lets you rise above all obstacles in your path. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Stardust Set (Item 2 of 3).",
- "headArmoireBlueMoonHelmNotes": "This helm offers an astonishing amount of luck to its wearer, and exceptional events follow its use. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Blue Moon Rogue Set (item 3 of 4).",
- "weaponArmoireBaseballBatNotes": "Get a home run on those good habits! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Baseball Set (Item 3 of 4).",
- "headArmoireAstronomersHatNotes": "A perfect hat for celestial observation or a fancy wizard brunch. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Astronomer Mage Set (Item 2 of 3).",
- "armorArmoireDoubletOfClubsNotes": "Who knows what's in the cards, but you'll look stylish at any event in this doublet and cape! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Jack of Clubs Set (Item 3 of 3).",
- "shieldArmoirePinkCottonCandyFoodNotes": "A sweet treat for the pets with a sweet tooth. But who will like it best? Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Pet Food Set (Item 4 of 10).",
- "armorArmoireBlueMoonShozokuNotes": "A strange serenity surrounds the wearer of this armor. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Blue Moon Rogue Set (item 4 of 4).",
- "headArmoireGuardiansBonnetNotes": "Don this fetching bonnet to help you herd your tasks! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Guardian of the Grazers Set (Item 1 of 3).",
- "headArmoireRegalCrownNotes": "Any monarch would be lucky to have such a majestic, smart-looking crown. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Regal Set (Item 1 of 2).",
- "shieldArmoireSoftVioletPillowNotes": "The clever warrior packs a pillow for any expedition. Protect yourself from procrastination-induced panic... even while you nap. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Violet Loungewear Set (Item 3 of 3).",
- "eyewearArmoireClownsNoseNotes": "This accessory will make sure everyone 'nose' you're a clown! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Clown Set (Item 2 of 5).",
- "armorArmoireShadowMastersRobeNotes": "The fabric of this flowy robe is woven from the darkest shadows in the deepest caves of Habitica. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Shadow Master Set (Item 1 of 4).",
- "armorArmoireFiddlersCoatNotes": "A practical outfit to give you plenty of room to move! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Fiddler Set (Item 2 of 4).",
- "armorArmoireGardenersOverallsNotes": "Don’t be afraid to work down in the dirt when you’re wearing these durable overalls. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Gardener Set (Item 1 of 4).",
- "headArmoireClownsWigNotes": "No bad tasks can bite you now! You'll taste funny. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Clown Set (Item 3 of 5).",
- "headArmoireDeerstalkerCapNotes": "This cap is perfect for rural excursions, but also is acceptable gear for mystery-solving! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Detective Set (Item 1 of 4).",
- "weaponArmoireFloridFanNotes": "This lovely silk fan folds when not in use. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Independent Item.",
- "headArmoireCapOfClubsNotes": "Let everyone know about your latest achievements with this literal feather in your cap! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Jack of Clubs Set (Item 1 of 3).",
- "shieldArmoireTrustyUmbrellaNotes": "Mysteries are often accompanied by inclement weather, so be prepared! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Detective Set (Item 4 of 4).",
- "headArmoireFrostedHelmNotes": "The perfect headgear for any celebration! Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Happy Birthday Set (Item 1 of 4).",
- "headArmoireGlengarryNotes": "A traditional cap full of pride and history. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Bagpiper Set (Item 1 of 3).",
- "shieldArmoirePolishedPocketwatchNotes": "You've got the time. And it looks very nice on you. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Independent Item.",
- "headArmoireMedievalLaundryCapNotes": "It's not quite a thinking cap, but for laundry, it will do... Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Medieval Launderers Set (Item 3 of 6).",
- "armorArmoireDressingGownNotes": "Relax in style with this beautiful traditional dressing gown. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Dressing Gown Set (Item 1 of 3).",
- "shieldArmoireAlchemistsScaleNotes": "Ensure that your mystical ingredients are properly measured using this fine piece of equipment. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Alchemist Set (Item 4 of 4).",
- "armorArmoireStrawRaincoatNotes": "This woven straw cape will keep you dry and your armor from rusting while on your quest. Just don’t venture too near a candle! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Straw Raincoat Set (Item 1 of 2).",
- "headArmoireMedievalLaundryHatNotes": "It's not quite a thinking cap, but for laundry, it will do... Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Medieval Launderers Set (Item 4 of 6).",
- "headArmoireRubberDuckyNotes": "The perfect companion for an indulgent spa day! Also surprisingly knowledgeable about a range of software issues. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Bubble Bath Set (Item 1 of 4).",
- "headArmoireHeraldsCapNotes": "This herald’s hat includes a perky plume. Nagtataás ng Katalinuhan ng <%= int %>. Enchanted Armoire: Herald Set (Item 2 of 4).",
- "weaponArmoireRegalSceptreNotes": "Display your regal authority by taking this bejeweled staff in hand. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Regal Set (Item 2 of 2).",
- "armorArmoireSoftPinkSuitNotes": "Pink is a soothing color. Slip into this loungewear set for a bit of peace during the daily grind! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Pink Loungewear Set (item 2 of 3).",
- "headArmoireToqueBlancheNotes": "According to legend, the number of folds in this hat indicate the number of ways you know how to cook an egg! Is it accurate? Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Chef Set (Item 1 of 4).",
- "headArmoireNightcapNotes": "Your new nightcap even has a nice bouncy pompom! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Dressing Gown Set (Item 2 of 3).",
+ "headArmoireHeroicHerbalistCrispinetteNotes": "This handy headdress will help you keep your hair out of the way... It doesn't hurt that it also adds to the mystique. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Heroic Herbalist Set (Iká-3 ng 3).",
+ "headArmoireMatchMakersBeretNotes": "You'll look striking wearing this lovely hat! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Match Maker Set (Iká-2 ng 4).",
+ "headArmoirePinkFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a perfect pink color. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Pink Loungewear Set (Iká-1 ng 3).",
+ "headArmoireJadeHelmNotes": "Some say jade decreases fear and anxiety. With this beautiful helm, you definitely have no cause to worry! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Jade Warrior Set (Iká-1 ng 3).",
+ "shieldArmoireFiddleNotes": "A perfect instrument that always strikes the right note in company. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Fiddler Set (Iká-4 ng 4).",
+ "bodyArmoireLifeguardWhistleNotes": "Call that misbehaving habit to order! It should know the rules! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Lifeguard Set (Iká-3 ng 3).",
+ "shieldArmoireChocolateFoodNotes": "Everybody likes a little chocolate, but some of your pets are keener than others... Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Pet Food Set (Iká-8 ng 10).",
+ "armorArmoireMedievalLaundryOutfitNotes": "Put on your working clothes and roll up your sleeves: it's time to get the laundry done! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Medieval Launderers Set (Iká-1 ng 6).",
+ "armorArmoireBathtubNotes": "Time for a little R&R? Here's your own personal bathtub -- and a guarantee that the water is always the right temperature! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Bubble Bath Set (Iká-2 ng 4).",
+ "armorArmoireHeraldsTunicNotes": "Get ready to spread good news far and wide in this colorful, royal outfit. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Herald Set (Iká-1 ng 4).",
+ "armorArmoireShootingStarCostumeNotes": "Rumored to have been spun out of the night sky itself, this flowy gown lets you rise above all obstacles in your path. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Stardust Set (Iká-2 ng 3).",
+ "headArmoireBlueMoonHelmNotes": "This helm offers an astonishing amount of luck to its wearer, and exceptional events follow its use. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Blue Moon Rogue Set (Iká-3 ng 4).",
+ "weaponArmoireBaseballBatNotes": "Get a home run on those good habits! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Baseball Set (Iká-3 ng 4).",
+ "headArmoireAstronomersHatNotes": "A perfect hat for celestial observation or a fancy wizard brunch. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Astronomer Mage Set (Iká-2 ng 3).",
+ "armorArmoireDoubletOfClubsNotes": "Who knows what's in the cards, but you'll look stylish at any event in this doublet and cape! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Jack of Clubs Set (Iká-3 ng 3).",
+ "shieldArmoirePinkCottonCandyFoodNotes": "A sweet treat for the pets with a sweet tooth. But who will like it best? Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Pet Food Set (Iká-4 ng 10).",
+ "armorArmoireBlueMoonShozokuNotes": "A strange serenity surrounds the wearer of this armor. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Blue Moon Rogue Set (Iká-4 ng 4).",
+ "headArmoireGuardiansBonnetNotes": "Don this fetching bonnet to help you herd your tasks! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Guardian of the Grazers Set (Item 1 of 3).",
+ "headArmoireRegalCrownNotes": "Any monarch would be lucky to have such a majestic, smart-looking crown. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Regal Set (Iká-1 ng 2).",
+ "shieldArmoireSoftVioletPillowNotes": "The clever warrior packs a pillow for any expedition. Protect yourself from procrastination-induced panic... even while you nap. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Violet Loungewear Set (Iká-3 ng 3).",
+ "eyewearArmoireClownsNoseNotes": "This accessory will make sure everyone 'nose' you're a clown! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Clown Set (Iká-2 ng 5).",
+ "armorArmoireShadowMastersRobeNotes": "The fabric of this flowy robe is woven from the darkest shadows in the deepest caves of Habitica. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Shadow Master Set (Iká-1 ng 4).",
+ "armorArmoireFiddlersCoatNotes": "A practical outfit to give you plenty of room to move! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Fiddler Set (Iká-2 ng 4).",
+ "armorArmoireGardenersOverallsNotes": "Don’t be afraid to work down in the dirt when you’re wearing these durable overalls. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Gardener Set (Iká-1 ng 4).",
+ "headArmoireClownsWigNotes": "No bad tasks can bite you now! You'll taste funny. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Clown Set (Iká-3 ng 5).",
+ "headArmoireDeerstalkerCapNotes": "This cap is perfect for rural excursions, but also is acceptable gear for mystery-solving! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Detective Set (Iká-1 ng 4).",
+ "weaponArmoireFloridFanNotes": "This lovely silk fan folds when not in use. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Bukód na Kagamitán.",
+ "headArmoireCapOfClubsNotes": "Let everyone know about your latest achievements with this literal feather in your cap! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Jack of Clubs Set (Iká-3 ng 3).",
+ "shieldArmoireTrustyUmbrellaNotes": "Mysteries are often accompanied by inclement weather, so be prepared! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Detective Set (Iká-4 ng 4).",
+ "headArmoireFrostedHelmNotes": "The perfect headgear for any celebration! Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Happy Birthday Set (Iká-1 ng 4).",
+ "headArmoireGlengarryNotes": "A traditional cap full of pride and history. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Bagpiper Set (Iká-1 ng 3).",
+ "shieldArmoirePolishedPocketwatchNotes": "You've got the time. And it looks very nice on you. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Bukód na Kagamitán.",
+ "headArmoireMedievalLaundryCapNotes": "It's not quite a thinking cap, but for laundry, it will do... Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Medieval Launderers Set (Iká-3 ng 6).",
+ "armorArmoireDressingGownNotes": "Relax in style with this beautiful traditional dressing gown. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Dressing Gown Set (Iká-1 ng 3).",
+ "shieldArmoireAlchemistsScaleNotes": "Ensure that your mystical ingredients are properly measured using this fine piece of equipment. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Alchemist Set (Iká-4 ng 4).",
+ "armorArmoireStrawRaincoatNotes": "This woven straw cape will keep you dry and your armor from rusting while on your quest. Just don’t venture too near a candle! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Straw Raincoat Set (Iká-1 ng 2).",
+ "headArmoireMedievalLaundryHatNotes": "It's not quite a thinking cap, but for laundry, it will do... Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Medieval Launderers Set (Iká-4 ng 6).",
+ "headArmoireRubberDuckyNotes": "The perfect companion for an indulgent spa day! Also surprisingly knowledgeable about a range of software issues. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Bubble Bath Set (Iká-1 ng 4).",
+ "headArmoireHeraldsCapNotes": "This herald’s hat includes a perky plume. Nagtataás ng Katalinuhan ng <%= int %>. Mahiwagang Kabán: Herald Set (Iká-2 ng 4).",
+ "weaponArmoireRegalSceptreNotes": "Display your regal authority by taking this bejeweled staff in hand. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Regal Set (Iká-2 ng 2).",
+ "armorArmoireSoftPinkSuitNotes": "Pink is a soothing color. Slip into this loungewear set for a bit of peace during the daily grind! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Pink Loungewear Set (Iká-2 ng 3).",
+ "headArmoireToqueBlancheNotes": "According to legend, the number of folds in this hat indicate the number of ways you know how to cook an egg! Is it accurate? Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Chef Set (Iká-1 ng 4).",
+ "headArmoireNightcapNotes": "Your new nightcap even has a nice bouncy pompom! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Dressing Gown Set (Iká-2 ng 3).",
"shieldSpecialKS2019Notes": "Sparkling like the shell of a gryphon egg, this magnificent shield shows you how to stand ready to help when your own burdens are light. Nagtataás ng Pandamá ng <%= per %>.",
- "shieldArmoireMightyPizzaNotes": "Sure, it's a pretty good shield, but we strongly suggest you eat this fine, fine pizza. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Chef Set (Item 4 of 4).",
- "shieldArmoireRottenMeatFoodNotes": "Hold your nose! This rotten meat might be disgusting to you, but it's perfect for some of your pets! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Pet Food Set (Item 2 of 10).",
- "shieldArmoireFishFoodNotes": "This fish will help your pets have good bones! But you'll have to guess which of your pets like it the most. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Pet Food Set (Item 7 of 10).",
- "weaponArmoireResplendentRapierNotes": "Demonstrate your swordsmanship with this sharply pointed weapon. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Independent Item.",
- "shieldArmoireHeraldsMessageScrollNotes": "What exciting news does this scroll contain? Could it be about a new pet or a long habit streak? Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Herald Set (Item 4 of 4)",
- "armorArmoireJadeArmorNotes": "This jade armor is both beautiful and functional. Protect yourself, and know that you look fabulous! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Jade Warrior Set (Item 2 of 3).",
- "shieldArmoireDarkAutumnFlameNotes": "These mesmerizing flames dance with lively but foreboding energy even in autumn's chilliest nights. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Autumn Enchanter Set (Item 4 of 4).",
- "weaponArmoireEnchantersStaffNotes": "The green stones on this staff are filled with the power of change that flows strong through the autumn wind. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Autumn Enchanter Set (Item 3 of 4).",
- "headArmoireTricornHatNotes": "Become a revolutionary jokester! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Independent Item.",
- "headArmoireShootingStarCrownNotes": "With this brightly shining headpiece, you will literally be the star of your own adventure! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Stardust Set (Item 1 of 3).",
- "shieldArmoireClownsBalloonsNotes": "Be careful: replacing these balloons would be a bit expensive... because of the inflation! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Clown Set (Item 4 of 5).",
- "weaponArmoireBeachFlagNotes": "Rally the troops around your sandcastle and let everyone know where to come for help! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Lifeguard Set (Item 1 of 3).",
- "headArmoireVernalHenninNotes": "More than just a pretty hat, this conical chapeau can also hold a rolled-up To Do list inside. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Vernal Vestments Set (Item 1 of 3).",
- "weaponArmoireHappyBannerNotes": "Is the “H” for Happy, or Habitica? Your choice! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Happy Birthday Set (Item 3 of 4).",
- "shieldArmoireMortarAndPestleNotes": "The most important equipment in the herbalist's arsenal! Grind up your ingredients for your herbal concoctions, and put your back into it! Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Heroic Herbalist Set (Item 2 of 3).",
- "weaponArmoireShadowMastersMaceNotes": "Creatures of darkness will obey your every command when you wave this glowing mace. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Shadow Master Set (Item 3 of 4).",
- "weaponArmoireMagnifyingGlassNotes": "Aha! A piece of evidence! Examine it closely with this fine magnifier. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Detective Set (Item 3 of 4).",
- "headArmoireAlchemistsHatNotes": "While hats are not strictly necessary for alchemical practice, looking cool certainly doesn't hurt anything! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Alchemist Set (Item 2 of 4).",
- "shieldArmoireLifeBuoyNotes": "Oh buoy! This will come in handy if you spot someone struggling in a sea of tasks and responsibilities. Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Lifeguard Set (Item 2 of 3).",
- "weaponArmoireAstronomersTelescopeNotes": "An instrument that will allow you to observe the stars' ancient dance. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Astronomer Mage Set (Item 3 of 3).",
- "shieldArmoirePotatoFoodNotes": "Potatoes are a staple of many diets, but some pets would like to live on potatoes alone... Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Pet Food Set (Item 3 of 10).",
- "weaponArmoireBuoyantBubblesNotes": "These bubbles just keep on floating forever, somehow... Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Bubble Bath Set (Item 3 of 4).",
- "shieldArmoirePiratesCompanionNotes": "Perfect if you want to talk your enemies to death, this parrot never shuts up. Maybe it'll remind you about your tasks too! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Pirate Set (Item 3 of 3).",
- "shieldArmoireBlueMoonSaiNotes": "This sai is a traditional weapon, imbued with the powers of the light side of the moon. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Blue Moon Rogue Set (item 2 of 4).",
- "headArmoireStrawRainHatNotes": "You’ll be able to spot every obstacle in your path when you wear this water-resistant, conical hat. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Straw Raincoat Set (Item 2 of 2).",
- "headArmoireFiddlersCapNotes": "Put on this jaunty cap to let everyone know who's dancing to whose tune! Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Fiddler Set (Item 1 of 4).",
- "headArmoireGardenersSunHatNotes": "The bright light of the day star won’t shine in your eyes when you wear this wide-brimmed hat. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Gardener Set (Item 2 of 4).",
- "shieldArmoirePerfectMatchNotes": "Hot take: we think you look great. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Match Maker Set (Item 4 of 4).",
- "shieldArmoireBlueCottonCandyFoodNotes": "A sweet treat for the pets with a sweet tooth. But who will like it best? Nagtataás ng Pangangatawán ng <%= con %>. Enchanted Armoire: Pet Food Set (Item 9 of 10).",
- "shieldArmoireMedievalLaundryNotes": "It's going to be tough to get this clean, but you already know you can do anything. Nagtataás ng Pandamá ng <%= per %>. Enchanted Armoire: Medieval Launderers Set (Item 6 of 6).",
- "weaponArmoireHuntingHornNotes": "Twooooo! Twoo! Twoo! Gather your party for an adventure or quest by playing this horn. Nagtataás ng Lakás ng <%= str %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 1 of 3)",
- "armorArmoireInvernessCapeNotes": "This sturdy garment will let you search for clues in any type of weather. Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Detective Set (Item 2 of 4).",
- "armorArmoireVernalVestmentNotes": "This silky garment is perfect for enjoying mild spring weather in style. Nagtataás ng Lakás at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Vernal Vestments Set (Item 2 of 3).",
- "shieldArmoireMilkFoodNotes": "There are many sayings about the health benefits of milk, but the pets who favor it just love its creamy taste. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Enchanted Armoire: Pet Food Set (Item 10 of 10)",
- "weaponArmoireAlchemistsDistillerNotes": "Purify metals and other magical compounds with this shiny brass instrument. Nagtataás ng Lakás ng <%= str %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Alchemist Set (Item 3 of 4).",
- "shieldArmoireSoftPinkPillowNotes": "The sensible warrior packs a pillow for any expedition. Soften life's blows... even while you nap. Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Pink Loungewear Set (item 3 of 3).",
- "weaponArmoirePotionBaseNotes": "The pets you hatch with this potion are anything but basic! Nagtataás ng Lakás, Katalinuhan, at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Potion Set (Item 1 of 10)",
- "weaponArmoireBambooCaneNotes": "Perfect for assisting you in a stroll, or for dancing the Charleston. Nagtataás ng Katalinuhan, Pandamá, at Pangangatawán ng <%= attrs %> bawát isá. Enchanted Armoire: Boating Set (Item 3 of 3).",
- "armorArmoireBoatingJacketNotes": "Whether you're on a swanky yacht or in a jalopy, you'll be the cat's meow in this jacket and tie. Nagtataás ng Lakás, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Boating Set (Item 1 of 3).",
- "weaponArmoireNephriteBowNotes": "This bow shoots special jade-tipped arrows that will take down even your most stubborn bad habits! Nagtataás ng Katalinuhan ng <%= int %> at Lakás ng <%= str %>. Enchanted Armoire: Nephrite Archer Set (Item 1 of 3).",
- "armorArmoireBaseballUniformNotes": "Pinstripes never go out of style. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Enchanted Armoire: Baseball Set (Item 2 of 4).",
- "shieldArmoireSnareDrumNotes": "Rat-a-tat-tat! Gather your party for a parade or march into battle by playing this drum. Nagtataás ng Pangangatawán ng <%= con %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 3 of 3)",
- "headArmoireEarflapHatNotes": "If you're looking to keep your head toasty warm, this hat has you covered! Nagtataás ng Katalinuhan at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Duffle Coat Set (Item 2 of 2).",
- "weaponArmoirePotionWhiteNotes": "You could almost lose a pet hatched with this potion in a snowstorm! Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Enchanted Armoire: Potion Set (Item 2 of 10)",
- "armorArmoireSoftVioletSuitNotes": "Purple is a luxurious color. Relax in style after you’ve accomplished all your daily tasks. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Enchanted Armoire: Violet Loungewear Set (Item 2 of 3).",
- "headArmoireBaseballCapNotes": "Let everyone know that you're on Team Habitica! Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Enchanted Armoire: Baseball Set (Item 1 of 4).",
- "weaponArmoireShootingStarSpellNotes": "Surround yourself in a spell of stardust magic to help you make all your wishes come true. Nagtataás ng Lakás at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Stardust Set (Item 3 of 3).",
- "armorArmoirePirateOutfitNotes": "Avast, ye landlubbers! The perfect outfit for swabbing the deck and counting your spoils. Nagtataás ng Pangangatawán at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Pirate Set (Item 2 of 3).",
- "armorArmoireSoftBlackSuitNotes": "Black is a mysterious colour. It’s sure to inspire the most interesting dreams. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Black Loungewear Set (Item 2 of 3).",
- "armorArmoireHeroicHerbalistRobeNotes": "Always smells pleasantly of all kinds of herbs. Nagtataás ng Pangangatawán at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Heroic Herbalist Set (Item 1 of 3).",
- "weaponArmoirePotionPinkNotes": "Life is a little bit sweeter and a whole lot pinker with this cotton candy pink pet potion! Nagtataás ng Katalinuhan ng <%= int %> at Pangangatawán ng <%= con %>. Enchanted Armoire: Potion Set (Item 8 of 10)",
- "weaponArmoirePotionBlueNotes": "Life is a little bit fluffier and a whole lot bluer with this potion to make cotton candy blue beasts! Nagtataás ng Katalinuhan ng <%= int %> at Pangangatawán ng <%= con %>. Enchanted Armoire: Potion Set (Item 9 of 10)",
- "weaponArmoirePotionGoldenNotes": "With this potion, your pet can have a heart of gold… and ears of gold… and a tail of gold… Nagtataás ng Lakás at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Potion Set (Item 10 of 10)",
- "shieldArmoireHoneyFoodNotes": "Watch out for sticky paws once you've fed your pets this honey! Some pets crave this natural sweetness; can you guess who? Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Pet Food Set (Item 6 of 10).",
- "shieldArmoireSoftBlackPillowNotes": "The brave warrior packs a pillow for any expedition. Guard yourself from tiresome tasks... even while you nap. Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Black Loungewear Set (Item 3 of 3).",
- "bodyArmoireClownsBowtieNotes": "A nice bow-tie is no joking matter, even for a clown. Nagtataás ng Lakás, Katalinuhan, Pangangatawán, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Clown Set (Item 5 of 5).",
- "weaponArmoirePotionDesertNotes": "With this potion in hand, you don’t have to be stranded on a deserted island to find a desert-colored pet to share your dessert with! Nagtataás ng Lakás ng <%= str %> at Pangangatawán ng <%= con %>. Enchanted Armoire: Potion Set (Item 3 of 10)",
- "weaponArmoirePotionShadeNotes": "Time to throw some shade (potion) on an egg to hatch yourself a shady pet! Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Enchanted Armoire: Potion Set (Item 5 of 10)",
- "weaponArmoirePotionRedNotes": "It’s a red-letter day because this hatching potion is no red herring! Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Potion Set (Item 4 of 10)",
- "weaponArmoirePotionZombieNotes": "Use this to hatch a zombie pet, but stay vigilant in case it starts nibbling on you! Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Enchanted Armoire: Potion Set (Item 7 of 10)",
- "weaponArmoirePotionSkeletonNotes": "Are you feeling productive? Is today a bones day? Be sure to carry this skeleton hatching potion with you! Nagtataás ng Lakás ng <%= str %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Potion Set (Item 6 of 10)",
- "armorArmoireAlchemistsRobeNotes": "Any number of dangerous elixirs are involved in creating arcane metals and gems, and these heavy robes will protect you from harm and unintended side effects! Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Enchanted Armoire: Alchemist Set (Item 1 of 4).",
- "armorArmoireDuffleCoatNotes": "Travel frosty realms in style with this cozy wool coat. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Duffle Coat Set (Item 1 of 2).",
- "weaponArmoirePinkLongbowNotes": "Be a cupid-in-training, mastering both archery and matters of the heart with this beautiful bow. Nagtataás ng Pandamá <%= per %> at Lakás ng <%= str %>. Enchanted Armoire: Independent Item.",
- "headArmoireNephriteHelmNotes": "The carved jade plume atop this helm is enchanted to enhance your aim. Nagtataás ng Pandamá ng <%= per %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Nephrite Archer Set (Item 2 of 3).",
- "armorArmoireMatchMakersApronNotes": "This apron is for safety, but for humor's sake we can make light of it. Nagtataás ng Pangangatawán, Lakás, at Katalinuhan ng <%= attrs %> bawat isá. Enchanted Armoire: Match Maker Set (Item 1 of 4).",
- "armorArmoireBoxArmorNotes": "Box Armor: It fits, therefore you sits... uh, therefore you wear it into battle, like the bold knight you are! Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Paper Knight Set (Item 3 of 3).",
- "headArmoireBoaterHatNotes": "This straw chapeau is the bee's knees! Nagtataás ng Lakás, Pangangatawán, at Pandamá ng <%= attrs %> bawat isá. Enchanted Armoire: Boating Set (Item 2 of 3).",
- "headArmoireShadowMastersHoodNotes": "This hood grants you the power to see through even the deepest darkness. It may occasionally require eyedrops, though. Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Shadow Master Set (Item 2 of 4).",
- "shieldArmoireMasteredShadowNotes": "Your powers have brought these swirling shadows to your side to do your bidding. Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Shadow Master Set (Item 4 of 4).",
- "shieldArmoireHobbyHorseNotes": "Ride your handsome hobby-horse steed toward your just Rewards! Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Paper Knight Set (Item 2 of 3).",
- "headArmoireBlackFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a bold black color. Nagtataás ng Pangangatawán, Pandamá, at Lakás ng <%= attrs %> bawat isá. Enchanted Armoire: Black Loungewear Set (Item 1 of 3).",
- "armorArmoireNephriteArmorNotes": "Made from strong steel rings and decorated with jade, this armor will protect you from procrastination! Nagtataás ng Lakás ng <%= str %> at Pandamá ng <%= per %>. Enchanted Armoire: Nephrite Archer Set (Item 3 of 3).",
- "armorArmoireAstronomersRobeNotes": "Turns out silk and starlight make a fabric that is not only magical, but very breathable. Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Enchanted Armoire: Astronomer Mage Set (Item 1 of 3).",
- "shieldArmoireSpanishGuitarNotes": "Tink! Tink! Thrummm! Gather your party for a concert or celebration by playing this guitar. Nagtataás ng Pandamá ng <%= per %> at Katalinuhan ng <%= int %>. Enchanted Armoire: Musical Instrument Set 1 (Item 2 of 3)"
+ "shieldArmoireMightyPizzaNotes": "Sure, it's a pretty good shield, but we strongly suggest you eat this fine, fine pizza. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Chef Set (Iká-4 ng 4).",
+ "shieldArmoireRottenMeatFoodNotes": "Hold your nose! This rotten meat might be disgusting to you, but it's perfect for some of your pets! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Pet Food Set (Iká-2 ng 10).",
+ "shieldArmoireFishFoodNotes": "This fish will help your pets have good bones! But you'll have to guess which of your pets like it the most. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Pet Food Set (Iká-7 ng 10).",
+ "weaponArmoireResplendentRapierNotes": "Demonstrate your swordsmanship with this sharply pointed weapon. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Bukód na Kagamitán.",
+ "shieldArmoireHeraldsMessageScrollNotes": "What exciting news does this scroll contain? Could it be about a new pet or a long habit streak? Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Herald Set (Iká-4 ng 4)",
+ "armorArmoireJadeArmorNotes": "This jade armor is both beautiful and functional. Protect yourself, and know that you look fabulous! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Jade Warrior Set (Iká-2 ng 3).",
+ "shieldArmoireDarkAutumnFlameNotes": "These mesmerizing flames dance with lively but foreboding energy even in autumn's chilliest nights. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Autumn Enchanter Set (Iká-4 ng 4).",
+ "weaponArmoireEnchantersStaffNotes": "The green stones on this staff are filled with the power of change that flows strong through the autumn wind. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Autumn Enchanter Set (Iká-3 ng 4).",
+ "headArmoireTricornHatNotes": "Become a revolutionary jokester! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Bukód na Kagamitán.",
+ "headArmoireShootingStarCrownNotes": "With this brightly shining headpiece, you will literally be the star of your own adventure! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Stardust Set (Iká-1 ng 3).",
+ "shieldArmoireClownsBalloonsNotes": "Be careful: replacing these balloons would be a bit expensive... because of the inflation! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Clown Set (Iká-4 ng 5).",
+ "weaponArmoireBeachFlagNotes": "Rally the troops around your sandcastle and let everyone know where to come for help! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Lifeguard Set (Iká-1 ng 3).",
+ "headArmoireVernalHenninNotes": "More than just a pretty hat, this conical chapeau can also hold a rolled-up To Do list inside. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Vernal Vestments Set (Iká-1 ng 3).",
+ "weaponArmoireHappyBannerNotes": "Is the “H” for Happy, or Habitica? Your choice! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Happy Birthday Set (Iká-3 ng 4).",
+ "shieldArmoireMortarAndPestleNotes": "The most important equipment in the herbalist's arsenal! Grind up your ingredients for your herbal concoctions, and put your back into it! Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Heroic Herbalist Set (Iká-2 ng 3).",
+ "weaponArmoireShadowMastersMaceNotes": "Creatures of darkness will obey your every command when you wave this glowing mace. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Shadow Master Set (Iká-3 ng 4).",
+ "weaponArmoireMagnifyingGlassNotes": "Aha! A piece of evidence! Examine it closely with this fine magnifier. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Detective Set (Iká-3 ng 4).",
+ "headArmoireAlchemistsHatNotes": "While hats are not strictly necessary for alchemical practice, looking cool certainly doesn't hurt anything! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Alchemist Set (Iká-2 ng 4).",
+ "shieldArmoireLifeBuoyNotes": "Oh buoy! This will come in handy if you spot someone struggling in a sea of tasks and responsibilities. Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Lifeguard Set (Iká-2 ng 3).",
+ "weaponArmoireAstronomersTelescopeNotes": "An instrument that will allow you to observe the stars' ancient dance. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Astronomer Mage Set (Iká-3 ng 3).",
+ "shieldArmoirePotatoFoodNotes": "Potatoes are a staple of many diets, but some pets would like to live on potatoes alone... Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Pet Food Set (Iká-3 ng 10).",
+ "weaponArmoireBuoyantBubblesNotes": "These bubbles just keep on floating forever, somehow... Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Bubble Bath Set (Iká-3 ng 4).",
+ "shieldArmoirePiratesCompanionNotes": "Perfect if you want to talk your enemies to death, this parrot never shuts up. Maybe it'll remind you about your tasks too! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Pirate Set (Iká-3 ng 3).",
+ "shieldArmoireBlueMoonSaiNotes": "This sai is a traditional weapon, imbued with the powers of the light side of the moon. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Blue Moon Rogue Set (Iká-2 ng 4).",
+ "headArmoireStrawRainHatNotes": "You’ll be able to spot every obstacle in your path when you wear this water-resistant, conical hat. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Straw Raincoat Set (Iká-2 ng 2).",
+ "headArmoireFiddlersCapNotes": "Put on this jaunty cap to let everyone know who's dancing to whose tune! Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Fiddler Set (Iká-1 ng 4).",
+ "headArmoireGardenersSunHatNotes": "The bright light of the day star won’t shine in your eyes when you wear this wide-brimmed hat. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Gardener Set (Iká-2 ng 4).",
+ "shieldArmoirePerfectMatchNotes": "Hot take: we think you look great. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Match Maker Set (Iká-4 ng 4).",
+ "shieldArmoireBlueCottonCandyFoodNotes": "A sweet treat for the pets with a sweet tooth. But who will like it best? Nagtataás ng Pangangatawán ng <%= con %>. Mahiwagang Kabán: Pet Food Set (Iká-9 ng 10).",
+ "shieldArmoireMedievalLaundryNotes": "It's going to be tough to get this clean, but you already know you can do anything. Nagtataás ng Pandamá ng <%= per %>. Mahiwagang Kabán: Medieval Launderers Set (Iká-6 ng 6).",
+ "weaponArmoireHuntingHornNotes": "Twooooo! Twoo! Twoo! Gather your party for an adventure or quest by playing this horn. Nagtataás ng Lakás ng <%= str %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Musical Instrument Set 1 (Iká-1 ng 3)",
+ "armorArmoireInvernessCapeNotes": "This sturdy garment will let you search for clues in any type of weather. Nagtataás ng Pandamá at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Detective Set (Iká-2 ng 4).",
+ "armorArmoireVernalVestmentNotes": "This silky garment is perfect for enjoying mild spring weather in style. Nagtataás ng Lakás at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Vernal Vestments Set (Iká-2 ng 3).",
+ "shieldArmoireMilkFoodNotes": "There are many sayings about the health benefits of milk, but the pets who favor it just love its creamy taste. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Mahiwagang Kabán: Pet Food Set (Iká-10 ng 10)",
+ "weaponArmoireAlchemistsDistillerNotes": "Purify metals and other magical compounds with this shiny brass instrument. Nagtataás ng Lakás ng <%= str %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Alchemist Set (Iká-3 ng 4).",
+ "shieldArmoireSoftPinkPillowNotes": "The sensible warrior packs a pillow for any expedition. Soften life's blows... even while you nap. Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Pink Loungewear Set (Iká-3 ng 3).",
+ "weaponArmoirePotionBaseNotes": "The pets you hatch with this potion are anything but basic! Nagtataás ng Lakás, Katalinuhan, at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Potion Set (Iká-1 ng 10)",
+ "weaponArmoireBambooCaneNotes": "Perfect for assisting you in a stroll, or for dancing the Charleston. Nagtataás ng Katalinuhan, Pandamá, at Pangangatawán ng <%= attrs %> bawát isá. Mahiwagang Kabán: Boating Set (Iká-3 ng 3).",
+ "armorArmoireBoatingJacketNotes": "Whether you're on a swanky yacht or in a jalopy, you'll be the cat's meow in this jacket and tie. Nagtataás ng Lakás, Katalinuhan, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Boating Set (Iká-1 ng 3).",
+ "weaponArmoireNephriteBowNotes": "This bow shoots special jade-tipped arrows that will take down even your most stubborn bad habits! Nagtataás ng Katalinuhan ng <%= int %> at Lakás ng <%= str %>. Mahiwagang Kabán: Nephrite Archer Set (Iká-1 ng 3).",
+ "armorArmoireBaseballUniformNotes": "Pinstripes never go out of style. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Mahiwagang Kabán: Baseball Set (Iká-2 ng 4).",
+ "shieldArmoireSnareDrumNotes": "Rat-a-tat-tat! Gather your party for a parade or march into battle by playing this drum. Nagtataás ng Pangangatawán ng <%= con %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Musical Instrument Set 1 (Iká-3 ng 3)",
+ "headArmoireEarflapHatNotes": "If you're looking to keep your head toasty warm, this hat has you covered! Nagtataás ng Katalinuhan at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Duffle Coat Set (Iká-2 ng 2).",
+ "weaponArmoirePotionWhiteNotes": "You could almost lose a pet hatched with this potion in a snowstorm! Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Potion Set (Iká-2 ng 10)",
+ "armorArmoireSoftVioletSuitNotes": "Purple is a luxurious color. Relax in style after you’ve accomplished all your daily tasks. Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Mahiwagang Kabán: Violet Loungewear Set (Iká-2 ng 3).",
+ "headArmoireBaseballCapNotes": "Let everyone know that you're on Team Habitica! Nagtataás ng Pangangatawán at Lakás ng <%= attrs %> bawát isá. Mahiwagang Kabán: Baseball Set (Iká-1 ng 4).",
+ "weaponArmoireShootingStarSpellNotes": "Surround yourself in a spell of stardust magic to help you make all your wishes come true. Nagtataás ng Lakás at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Stardust Set (Iká-3 ng 3).",
+ "armorArmoirePirateOutfitNotes": "Avast, ye landlubbers! The perfect outfit for swabbing the deck and counting your spoils. Nagtataás ng Pangangatawán at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Pirate Set (Iká-2 ng 3).",
+ "armorArmoireSoftBlackSuitNotes": "Black is a mysterious colour. It’s sure to inspire the most interesting dreams. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Black Loungewear Set (Iká-2 ng 3).",
+ "armorArmoireHeroicHerbalistRobeNotes": "Always smells pleasantly of all kinds of herbs. Nagtataás ng Pangangatawán at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Heroic Herbalist Set (Iká-1 ng 3).",
+ "weaponArmoirePotionPinkNotes": "Life is a little bit sweeter and a whole lot pinker with this cotton candy pink pet potion! Nagtataás ng Katalinuhan ng <%= int %> at Pangangatawán ng <%= con %>. Mahiwagang Kabán: Potion Set (Iká-8 ng 10)",
+ "weaponArmoirePotionBlueNotes": "Life is a little bit fluffier and a whole lot bluer with this potion to make cotton candy blue beasts! Nagtataás ng Katalinuhan ng <%= int %> at Pangangatawán ng <%= con %>. Mahiwagang Kabán: Potion Set (Iká-9 ng 10)",
+ "weaponArmoirePotionGoldenNotes": "Gamit ang mahiwagang langís na itó, maaaring magkaroón ang iyong alagà ng pusong gintô... at tainga na gintô... at buntót na gintô... Nagtataás ng Lakás at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Kumpól ng Mahiwagang Langís (Iká-10 ng 10)",
+ "shieldArmoireHoneyFoodNotes": "Watch out for sticky paws once you've fed your pets this honey! Some pets crave this natural sweetness; can you guess who? Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Pet Food Set (Iká-6 ng 10).",
+ "shieldArmoireSoftBlackPillowNotes": "The brave warrior packs a pillow for any expedition. Guard yourself from tiresome tasks... even while you nap. Nagtataás ng Katalinuhan at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Black Loungewear Set (Iká-3 ng 3).",
+ "bodyArmoireClownsBowtieNotes": "A nice bow-tie is no joking matter, even for a clown. Nagtataás ng Lakás, Katalinuhan, Pangangatawán, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Clown Set (Iká-5 ng 5).",
+ "weaponArmoirePotionDesertNotes": "With this potion in hand, you don’t have to be stranded on a deserted island to find a desert-colored pet to share your dessert with! Nagtataás ng Lakás ng <%= str %> at Pangangatawán ng <%= con %>. Mahiwagang Kabán: Potion Set (Iká-3 ng 10)",
+ "weaponArmoirePotionShadeNotes": "Time to throw some shade (potion) on an egg to hatch yourself a shady pet! Nagtataás ng Katalinuhan ng <%= int %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Potion Set (Iká-5 ng 10)",
+ "weaponArmoirePotionRedNotes": "It’s a red-letter day because this hatching potion is no red herring! Nagtataás ng Lakás at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Potion Set (Iká-4 ng 10)",
+ "weaponArmoirePotionZombieNotes": "Use this to hatch a zombie pet, but stay vigilant in case it starts nibbling on you! Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Potion Set (Iká-7 ng 10)",
+ "weaponArmoirePotionSkeletonNotes": "Are you feeling productive? Is today a bones day? Be sure to carry this skeleton hatching potion with you! Nagtataás ng Lakás ng <%= str %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Potion Set (Iká-6 ng 10)",
+ "armorArmoireAlchemistsRobeNotes": "Any number of dangerous elixirs are involved in creating arcane metals and gems, and these heavy robes will protect you from harm and unintended side effects! Nagtataás ng Pangangatawán ng <%= con %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Alchemist Set (Iká-1 ng 4).",
+ "armorArmoireDuffleCoatNotes": "Travel frosty realms in style with this cozy wool coat. Nagtataás ng Pangangatawán at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Duffle Coat Set (Iká-1 ng 2).",
+ "weaponArmoirePinkLongbowNotes": "Be a cupid-in-training, mastering both archery and matters of the heart with this beautiful bow. Nagtataás ng Pandamá <%= per %> at Lakás ng <%= str %>. Mahiwagang Kabán: Bukód na Kagamitán.",
+ "headArmoireNephriteHelmNotes": "The carved jade plume atop this helm is enchanted to enhance your aim. Nagtataás ng Pandamá ng <%= per %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Nephrite Archer Set (Iká-2 ng 3).",
+ "armorArmoireMatchMakersApronNotes": "This apron is for safety, but for humor's sake we can make light of it. Nagtataás ng Pangangatawán, Lakás, at Katalinuhan ng <%= attrs %> bawat isá. Mahiwagang Kabán: Match Maker Set (Iká-1 ng 4).",
+ "armorArmoireBoxArmorNotes": "Box Armor: It fits, therefore you sits... uh, therefore you wear it into battle, like the bold knight you are! Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Paper Knight Set (Iká-3 ng 3).",
+ "headArmoireBoaterHatNotes": "This straw chapeau is the bee's knees! Nagtataás ng Lakás, Pangangatawán, at Pandamá ng <%= attrs %> bawat isá. Mahiwagang Kabán: Boating Set (Iká-2 ng 3).",
+ "headArmoireShadowMastersHoodNotes": "This hood grants you the power to see through even the deepest darkness. It may occasionally require eyedrops, though. Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Shadow Master Set (Iká-2 ng 4).",
+ "shieldArmoireMasteredShadowNotes": "Your powers have brought these swirling shadows to your side to do your bidding. Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Shadow Master Set (Iká-4 ng 4).",
+ "shieldArmoireHobbyHorseNotes": "Ride your handsome hobby-horse steed toward your just Rewards! Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Paper Knight Set (Iká-2 ng 3).",
+ "headArmoireBlackFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a bold black color. Nagtataás ng Pangangatawán, Pandamá, at Lakás ng <%= attrs %> bawat isá. Mahiwagang Kabán: Black Loungewear Set (Iká-1 ng 3).",
+ "armorArmoireNephriteArmorNotes": "Made from strong steel rings and decorated with jade, this armor will protect you from procrastination! Nagtataás ng Lakás ng <%= str %> at Pandamá ng <%= per %>. Mahiwagang Kabán: Nephrite Archer Set (Iká-3 ng 3).",
+ "armorArmoireAstronomersRobeNotes": "Turns out silk and starlight make a fabric that is not only magical, but very breathable. Nagtataás ng Pandamá at Pangangatawán ng <%= attrs %> bawat isá. Mahiwagang Kabán: Astronomer Mage Set (Iká-1 ng 3).",
+ "shieldArmoireSpanishGuitarNotes": "Tink! Tink! Thrummm! Gather your party for a concert or celebration by playing this guitar. Nagtataás ng Pandamá ng <%= per %> at Katalinuhan ng <%= int %>. Mahiwagang Kabán: Musical Instrument Set 1 (Iká-2 ng 3)",
+ "armorSpecialBirthday2019Notes": "Happy Birthday, Habitica! Wear these Outlandish Party Robes to celebrate this wonderful day. Waláng pakinabang.",
+ "armorSpecialBirthday2020Notes": "Happy Birthday, Habitica! Wear these Outrageous Party Robes to celebrate this wonderful day. Waláng pakinabang.",
+ "armorMystery201907Notes": "Stay cool and look cool on even the hottest summer day. Waláng pakinabang. July 2019 Subscriber Item.",
+ "headAccessoryMystery202203Notes": "Need an extra boost of speed? The tiny decorative wings on this circlet are more powerful than they look! Waláng pakinabang. March 2022 Subscriber Item.",
+ "headAccessoryMystery202102Notes": "Magnify your empathy and caring to new heights with this ornate golden tiara. Waláng pakinabang. February 2021 Subscriber Item.",
+ "backMystery202004Notes": "Make a quick flutter to the nearest flowery meadow or migrate across the continent with these beautiful wings! Waláng pakinabang. April 2020 Subscriber Item.",
+ "bodyMystery202002Notes": "For when your heart is warm but the breezes of February are brisk. Waláng pakinabang. February 2020 Subscriber Item.",
+ "bodyMystery202003Notes": "They're like shoulder pads that are on a whole other level. Waláng pakinabang. March 2020 Subscriber Item.",
+ "headAccessoryMystery202009Notes": "These feathery appendages will help you find your way even in the dark of night. Waláng pakinabang. September 2020 Subscriber Item.",
+ "eyewearSpecialBlackHalfMoonNotes": "Glasses with a black frame and crescent lenses. Waláng pakinabang.",
+ "eyewearMystery201902Notes": "This mysterious mask hides your identity but not your winning smile. Waláng pakinabang. February 2019 Subscriber Item.",
+ "eyewearMystery202204BNotes": "What's your mood today? Express yourself with these fun screens. Waláng pakinabang. April 2022 Subscriber Item.",
+ "headMystery201903Notes": "Some may call you an egghead, but that's OK because you know how to take a yolk. Waláng pakinabang. March 2019 Subscriber Item.",
+ "headMystery201910Notes": "These flames reveal arcane secrets before your very eyes! Waláng pakinabang. October 2019 Subscriber Item.",
+ "headMystery202007Notes": "This helm will tune you in to the complex and beautiful songs of your fellow cetaceans. Waláng pakinabang. July 2020 Subscriber Item.",
+ "backMystery202005Notes": "Despite their slight tatters, these wings can still carry you wherever you need to travel. Waláng pakinabang. May 2020 Subscriber Item.",
+ "backMystery202009Notes": "Let these huge wings take you to new heights! Waláng pakinabang. September 2020 Subscriber Item.",
+ "backMystery202010Notes": "You are the night! So fly as silently as a midnight cloud with these swift purple wings. Waláng pakinabang. October 2020 Subscriber Item.",
+ "backMystery202012Notes": "The snowy feathers of these wings will grant you the speed of a wintry gale. Waláng pakinabang. December 2020 Subscriber Item.",
+ "backSpecialNamingDay2020Notes": "Happy Naming Day! Swish this fiery, pixely tail about as you celebrate Habitica. Waláng pakinabang.",
+ "headAccessoryMystery201906Notes": "Legend has it these finny ears help merfolk hear the calls and songs of all the denizens of the deep! Waláng pakinabang. June 2019 Subscriber Item.",
+ "eyewearSpecialYellowHalfMoonNotes": "Glasses with a yellow frame and crescent lenses. Waláng pakinabang.",
+ "weaponSpecialSummer2020RogueText": "Talim na Pangil",
+ "weaponMystery202002Notes": "An accessory that lends you an air of mystery and romance. Sun protection is a bonus! Waláng pakinabang. February 2020 Subscriber Item.",
+ "headMystery201912Notes": "This glittering snowflake grants you resistance to the biting cold no matter how high you fly! Waláng pakinabang. December 2019 Subscriber Item.",
+ "headMystery202006Notes": "The positive energy of these radiant purple stones will draw the sea's friendliest creatures to your side. Waláng pakinabang. June 2020 Subscriber Item.",
+ "headMystery202207Notes": "Need a hand with your tasks? Will several dozen bioluminescent tentacles do? Waláng pakinabang. July 2022 Subscriber Item.",
+ "headSpecialNye2020Notes": "You've received an Extravagant Party Hat! Wear it with pride while ringing in the New Year! Waláng pakinabang.",
+ "weaponMystery201911Notes": "The crystal ball atop this staff can show you the future, but beware! Using such dangerous knowledge can change a person in unexpected ways. Confers no benefit. November 2019 Subscriber Item.",
+ "headSpecialPiDayNotes": "Try to balance this slice of delicious pie on your head while walking in a circle. Or throw it at a red Daily! Or you could just eat it. Your choice! Waláng pakinabang.",
+ "headMystery202208Notes": "Enjoy showing off this voluminous hair - it can double as a whip in a pinch! Waláng pakinabang. August 2022 Subscriber Item.",
+ "headSpecialNye2021Notes": "You've received a Preposterous Party Hat! Wear it with pride while ringing in the New Year! Waláng pakinabang.",
+ "weaponMystery202102Notes": "The glowing pink gem in this wand holds the power to spread joy and friendship far and wide! Waláng pakinabang. February 2021 Subscriber Item.",
+ "weaponMystery202104Notes": "Your enemies had better look out- you've got powerful and prickly defenses! Waláng pakinabang. April 2021 Subscriber Item.",
+ "armorMystery201903Notes": "People are dye-ing to know where you got this egg-cellent outfit! Waláng pakinabang. March 2019 Subscriber Item.",
+ "shieldSpecialPiDayNotes": "We dare you to calculate the ratio of this shield's circumference to its deliciousness! Waláng pakinabang.",
+ "bodyMystery202107Notes": "This trusty companion will never let you down and will always keep your spirits buoyant! Waláng pakinabang. July 2021 Subscriber Item.",
+ "weaponMystery202201Notes": "Unleash a cloud of gold and silver glitter when the clock strikes midnight. Happy New Year! Now who's cleaning this up? Waláng pakinabang. January 2022 Subscriber Item.",
+ "armorMystery201908Notes": "These legs were made for dancing! And that's just what they'll do. Waláng pakinabang. August 2019 Subscriber Item.",
+ "armorMystery201910Notes": "This enigmatic armor will protect you from terrors seen and unseen. Waláng pakinabang. October 2019 Subscriber Item.",
+ "armorMystery202006Notes": "Even among the brightest corals and anemones, this tail proudly stands out from the crowd! Waláng pakinabang. June 2020 Subscriber Item.",
+ "armorMystery202110Notes": "Velvety moss makes you seem soft on the outside, but you're protected by solid stone. Waláng pakinabang. October 2021 Subscriber Item.",
+ "headSpecialNye2019Notes": "You've received an Outrageous Party Hat! Wear it with pride while ringing in the New Year! Waláng pakinabang.",
+ "shieldMystery202011Notes": "Harness the power of the autumn wind with this staff. Use for arcane magic or to make awesome leaf piles, the choice is yours! Waláng pakinabang. November 2020 Subscriber Item.",
+ "armorSpecialBirthday2021Notes": "Happy Birthday, Habitica! Wear these Extravagant Party Robes to celebrate this wonderful day. Waláng pakinabang.",
+ "headAccessoryMystery201905Notes": "These horns are as sharp as they are shimmery. Waláng pakinabang. May 2019 Subscriber Item.",
+ "headAccessoryMystery201908Notes": "If wearing horns floats your goat, you're in luck! Waláng pakinabang. August 2019 Subscriber Item.",
+ "backMystery201905Notes": "Fly to untold realms with these iridescent wings. Waláng pakinabang. May 2019 Subscriber Item.",
+ "headAccessoryMystery202004Notes": "They twitch just a bit if the scent of flowers drifts by--use them to find a pretty garden! Waláng pakinabang. April 2020 Subscriber Item.",
+ "backMystery201912Notes": "Glide silently across sparkling snowfields and shimmering mountains with these icy wings. Waláng pakinabang. December 2019 Subscriber Item.",
+ "headAccessoryMystery202105Notes": "Don these iridescent horns and summon the magic of starlight. Waláng pakinabang. May 2021 Subscriber Item.",
+ "backMystery202001Notes": "These fluffy tails contain celestial power, and also a high level of cuteness! Waláng pakinabang. January 2020 Subscriber Item.",
+ "headAccessoryMystery202109Notes": "Catch the scent of flowers on the breeze or the scent of change on the wind. Waláng pakinabang. September 2021 Subscriber Item.",
+ "backMystery202105Notes": "Glide through the starry sky and place yourself among the constellations! Waláng pakinabang. May 2021 Subscriber Item.",
+ "headAccessoryMystery202205Notes": "These dazzling horns are as bright as a desert sunset. Waláng pakinabang. May 2022 Subscriber Item.",
+ "backMystery202109Notes": "Glide softly through the twilight air without a sound. Waláng pakinabang. September 2021 Subscriber Item.",
+ "backMystery202205Notes": "The mighty flap of these vast wings can be heard echoing among the dunes. Waláng pakinabang. May 2022 Subscriber Item.",
+ "headMystery201901Notes": "The glowing gems on this helm contain light magically captured from winter auroras. Waláng pakinabang. January 2019 Subscriber Item.",
+ "headMystery201904Notes": "The opals in this circlet shine in every color of the rainbow, giving it a variety of magical properties. Waláng pakinabang. April 2019 Subscriber Item.",
+ "eyewearMystery202108Notes": "Stare down your enemies (or your biggest tasks!) with these and they don't stand a chance. Waláng pakinabang. August 2021 Subscriber Item.",
+ "headMystery202001Notes": "Your hearing will be so sharp, you'll hear the stars twinkling and the moon spinning. Waláng pakinabang. January 2020 Subscriber Item.",
+ "weaponSpecialSpring2020RogueText": "Talim na Yarì sa Lapis Lazuli",
+ "armorMystery201904Notes": "This shining garment has opals sewn into the front panel to grant you arcane powers and a fabulous look. Waláng pakinabang. April 2019 Subscriber Item.",
+ "eyewearSpecialPinkHalfMoonNotes": "Glasses with a pink frame and crescent lenses. Waláng pakinabang.",
+ "armorMystery201909Notes": "Your tough exterior is protective, but it's still best to keep an eye out for squirrels... Waláng pakinabang. September 2019 Subscriber Item.",
+ "shieldMystery201902Notes": "This glittery paper forms magic hearts that slowly drift and dance in the air. Waláng pakinabang. February 2019 Subscriber Item.",
+ "eyewearSpecialBlueHalfMoonNotes": "Glasses with a blue frame and crescent lenses. Waláng pakinabang.",
+ "headMystery202108Notes": "You're looking super fresh, just sayin'. Waláng pakinabang. August 2021 Subscriber Item.",
+ "armorMystery201906Notes": "We will spare you a pun about “playing koi.” Oh wait, oops. Waláng pakinabang. June 2019 Subscriber Item.",
+ "armorSpecialBirthday2022Notes": "Happy Birthday, Habitica! Wear these Proposterous Party Robes to celebrate this wonderful day. Waláng pakinabang.",
+ "armorMystery202204Notes": "Looks like doing your tasks now requires pushing these mysterious buttons! What could they do? Waláng pakinabang. April 2022 Subscriber Item.",
+ "eyewearMystery202204ANotes": "What's your mood today? Express yourself with these fun screens. Waláng pakinabang. April 2022 Subscriber Item.",
+ "headAccessoryMystery202005Notes": "With such mighty horns, what creature dares challenge you? Waláng pakinabang. May 2020 Subscriber Item.",
+ "eyewearMystery202201Notes": "Ring in the new year with an air of mystery in this stylish feathered mask. Waláng pakinabang. January 2022 Subscriber Item.",
+ "eyewearMystery202208Notes": "Lull your enemies into a false sense of security with these terrifyingly cute peepers. Waláng pakinabang. August 2022 Subscriber Item.",
+ "eyewearSpecialRedHalfMoonNotes": "Glasses with a red frame and crescent lenses. Waláng pakinabang.",
+ "headMystery202202Notes": "You gotta have blue hair! Waláng pakinabang. February 2022 Subscriber Item.",
+ "eyewearSpecialGreenHalfMoonNotes": "Glasses with a green frame and crescent lenses. Waláng pakinabang.",
+ "eyewearSpecialWhiteHalfMoonNotes": "Glasses with a white frame and crescent lenses. Waláng pakinabang.",
+ "eyewearSpecialKS2019Notes": "Bold as a gryphon's... hmm, gryphons don't have visors. It reminds you to... oh, who are we kidding, it just looks cool! Waláng pakinabang.",
+ "eyewearMystery201907Notes": "Look awesome while protecting your eyes from harmful UV rays! Waláng pakinabang. July 2019 Subscriber Item.",
+ "armorMystery202207Notes": "This armor will have you looking glamorous and gelatinous. Waláng pakinabang. July 2022 Subscriber Item.",
+ "headMystery201909Notes": "Every acorn needs a hat! Er, cupule, if you want to get technical about it. Waláng pakinabang. September 2019 Subscriber Item.",
+ "headMystery201911Notes": "Each of the crystal points attached to this hat endows you with a special power: mystic clairvoyance, arcane wisdom, and... sorcerous plate spinning? All right then. Waláng pakinabang. November 2019 Subscriber Item.",
+ "headMystery202010Notes": "We'll spare you another joke about echolocation... cation... cation. Waláng pakinabang. October 2020 Subscriber Item.",
+ "headMystery202012Notes": "This imposing mask features piercing eyes that will blind foes like the glare of sunlight on fresh snow. Waláng pakinabang. December 2020 Subscriber Item.",
+ "headMystery202111Notes": "A fine and fancy hat, with goggles that let you see through time. Pretty cool, right? Waláng pakinabang. November 2021 Subscriber Item.",
+ "headMystery202101Notes": "The icy blue eyes on this feline helm will freeze even the most intimidating task on your list. Waláng pakinabang. January 2021 Subscriber Item.",
+ "headMystery202103Notes": "Greet spring in style in this circlet woven from the first blooming branches. Waláng pakinabang. March 2021 Subscriber Item.",
+ "headMystery202106Notes": "This crown captures the beauty of the sun’s last summer light. Waláng pakinabang. June 2021 Subscriber Item.",
+ "headMystery202107Notes": "Perfect for enjoying but also protecting yourself from our powerful frenemy, the sun. Waláng pakinabang. July 2021 Subscriber Item.",
+ "headMystery202110Notes": "The frightening visage of this stony helm will surely repel malevolent forces or even bad habits! Waláng pakinabang. October 2021 Subscriber Item.",
+ "bodyMystery201901Notes": "These shimmering pauldrons are strong, but will rest on your shoulders as weightlessly as a ray of dancing light. Waláng pakinabang. January 2019 Subscriber Item.",
+ "eyewearMystery202202Notes": "Cheerful singing brings color to your cheeks. Waláng pakinabang. February 2022 Subscriber Item",
+ "bodyMystery202008Notes": "For now, your wings lie furled. But when you have concluded dispensing your wisdom, or you sight your prey in the grass, watch out! Waláng pakinabang. August 2020 Subscriber Item.",
+ "weaponMystery202111Notes": "Shape the flow of time with this mysterious and powerful staff. Waláng pakinabang. November 2021 Subscriber Item.",
+ "armorMystery202112Notes": "Glide through icy seas and never get cold with this glimmering tail. Waláng pakinabang. December 2021 Subscriber Item.",
+ "armorMystery202007Notes": "Swim, flip, dive, and race with this handsome and powerful tail! Waláng pakinabang. July 2020 Subscriber Item.",
+ "armorMystery202101Notes": "Wrap yourself in warm fur and nearly endless tail floof! Waláng pakinabang. January 2021 Subscriber Item.",
+ "armorMystery202102Notes": "Sail across the universe in fine style in this buoyantly bright dress. Waláng pakinabang. February 2021 Subscriber Item.",
+ "armorMystery202103Notes": "These soft and breezy robes are perfect for a tea party beneath the showy spring trees. Waláng pakinabang. March 2021 Subscriber Item.",
+ "armorMystery202104Notes": "Soft on the inside, spiky on the outside, stylish everywhere! Waláng pakinabang. April 2021 Subscriber Item.",
+ "armorMystery202106Notes": "With this mighty yet elegant tail you can cruise through warm seas all the way to the horizon. Waláng pakinabang. June 2021 Subscriber Item.",
+ "headMystery201907Notes": "Nothing says “I'm relaxing here!” like a backwards cap. Waláng pakinabang. July 2019 Subscriber Item.",
+ "headMystery202003Notes": "Be careful, this helm is sharp in more ways than one! Waláng pakinabang. March 2020 Subscriber Item.",
+ "headMystery202008Notes": "WHO? WHO? WHO approaches, seeking your counsel? Waláng pakinabang. August 2020 Subscriber Item.",
+ "headMystery202011Notes": "Wield the power of the changing seasons while also looking very stylish! Waláng pakinabang. November 2020 Subscriber Item.",
+ "headMystery202112Notes": "This frozen crown shimmers like the hidden depths of an iceberg. Waláng pakinabang. December 2021 Subscriber Item.",
+ "headMystery202206Notes": "The blue pearl in this circlet grants you waterbending powers. Use them wisely! Waláng pakinabang. June 2022 Subscriber Item.",
+ "backMystery202203Notes": "Outrace all the other creatures of the sky with these shimmering wings. Waláng pakinabang. March 2022 Subscriber Item.",
+ "backMystery202206Notes": "Whimsical wings made of water and waves! Waláng pakinabang. June 2022 Subscriber Item.",
+ "weaponArmoireBlueKiteNotes": "Sailing high up in the blue, what tricks can you make your kite do? Increases all stats by <%= attrs %> each. Mahiwagang Kabán: Kite Set (Iká-1 ng 5)",
+ "weaponArmoireOrangeKiteNotes": "With colors like sunrise and sunset, let’s see how high your kite can get! Increases all stats by <%= attrs %> each. Mahiwagang Kabán: Kite Set (Iká-3 ng 5)",
+ "weaponArmoireYellowKiteNotes": "Swooping and swerving to and fro, watch your cheerful kite go. Increases all stats by <%= attrs %> each. Mahiwagang Kabán: Kite Set (Iká-5 ng 5)",
+ "weaponArmoireGreenKiteNotes": "A more stunning kite you’ve never seen, with its shades of yellow and green. Increases all stats by <%= attrs %> each. Mahiwagang Kabán: Kite Set (Iká-2 ng 5)",
+ "weaponArmoirePinkKiteNotes": "Diving, twirling, soaring high, your kite stands out against the sky. Increases all stats by <%= attrs %> each. Mahiwagang Kabán: Kite Set (Iká-4 ng 5)",
+ "armorArmoireAutumnEnchantersCloakNotes": "A sorcerer as skilled as you needs to look as powerful as they feel. Increases Intelligence by 12. Mahiwagang Kabán: Autumn Enchanter Set (Iká-2 ng 4).",
+ "armorArmoireFancyPirateSuitNotes": "Wear this fine jacket well as you organize your ship’s library or talk it through as a crew. Increases Constitution and Intelligence by <%= attrs %> each. Mahiwagang Kabán: Fancy Pirate Set (Iká-1 ng 3).",
+ "headArmoireFancyPirateHatNotes": "Be protected from the sun and any seagulls flying overhead as you drink tea on the deck of your ship. Increases Perception by <%= per %>. Mahiwagang Kabán: Fancy Pirate Set (Iká-2 ng 3).",
+ "shieldArmoireDustpanNotes": "Have this handy handheld dustpan ready every time you clean. A vanishing spell cast on it means you never have to search for a trash can to empty it into. Increases Intelligence and Constitution by <%= attrs %> each. Mahiwagang Kabán: Cleaning Supplies Set (Iká-3 ng 3).",
+ "armorSpecialFall2021RogueText": "Baluting Natátablan pa rin ng Lapot",
+ "weaponArmoirePotionGoldenText": "Panggayák Gintó na Mahiwagang Langís",
+ "shieldArmoireTreasureMapNotes": "X marks the spot! You never know what you’ll find when you follow this handy map to fabled treasures: gold, jewels, relics, or perhaps a petrified orange? Increases Strength and Intelligence by <%= attrs %> each. Mahiwagang Kabán: Fancy Pirate Set (Iká-3 ng 3).",
+ "weaponArmoirePushBroomNotes": "Take this tidying tool on your adventures and always be able to sweep a sooty stoop or clear cobwebs from corners. Increases Strength and Intelligence by <%= attrs %> each. Mahiwagang Kabán: Cleaning Supplies Set (Iká-1 ng 3)",
+ "weaponArmoireFeatherDusterNotes": "Let these fancy feathers fly over all your old objects to make them shine like new. Just beware of the disturbed dust so you don’t sneeze! Increases Constitution and Perception by <%= attrs %> each. Mahiwagang Kabán: Cleaning Supplies Set (Iká-2 ng 3)"
}
diff --git a/website/common/locales/fil/generic.json b/website/common/locales/fil/generic.json
index 6cd514ba1b..2ee8fc8b15 100755
--- a/website/common/locales/fil/generic.json
+++ b/website/common/locales/fil/generic.json
@@ -6,7 +6,7 @@
"done": "Done",
"gotIt": "Got it!",
"titleTimeTravelers": "Time Travelers",
- "titleSeasonalShop": "Seasonal Shop",
+ "titleSeasonalShop": "Bilihan ng mga Napápanahóng Kalakal",
"saveEdits": "Save Edits",
"showMore": "Show More",
"showLess": "Show Less",
@@ -16,14 +16,14 @@
"code": "`code`",
"achievements": "Achievements",
"basicAchievs": "Basic Achievements",
- "seasonalAchievs": "Seasonal Achievements",
+ "seasonalAchievs": "Mga Napápanahóng Tagumpáy",
"specialAchievs": "Special Achievements",
"modalAchievement": "Achievement!",
"special": "Special",
"site": "Site",
"help": "Help",
"user": "User",
- "market": "Market",
+ "market": "Pamilihan",
"newSubscriberItem": "You have new
Mystery Items",
"subscriberItemText": "Kada buwan, ang mga naka-subscribe ay makakatanggap ng mystery item. Ito ay nagiging available sa umpisa ng buwan. Tignan ang pahinang 'Mystery Item' ng wiki para sa karagdagang impormasyon.",
"all": "All",
diff --git a/website/common/locales/fil/groups.json b/website/common/locales/fil/groups.json
index 1fd3794728..149ac6088f 100755
--- a/website/common/locales/fil/groups.json
+++ b/website/common/locales/fil/groups.json
@@ -321,7 +321,7 @@
"exampleGroupName": "Example: Avengers Academy",
"exampleGroupDesc": "For those selected to join the training academy for The Avengers Superhero Initiative",
"thisGroupInviteOnly": "This group is invitation only.",
- "gettingStarted": "Getting Started",
+ "gettingStarted": "Pa'no Panimulán",
"congratsOnGroupPlan": "Congratulations on creating your new Group! Here are a few answers to some of the more commonly asked questions.",
"whatsIncludedGroup": "What's included in the subscription",
"whatsIncludedGroupDesc": "All members of the Group receive full subscription benefits, including the monthly subscriber items, the ability to buy Gems with Gold, and the Royal Purple Jackalope mount, which is exclusive to users with a Group Plan membership.",
diff --git a/website/common/locales/fil/inventory.json b/website/common/locales/fil/inventory.json
index 22f4b6c026..95e0b35667 100755
--- a/website/common/locales/fil/inventory.json
+++ b/website/common/locales/fil/inventory.json
@@ -1,10 +1,10 @@
{
- "noItemsAvailableForType": "Wala kang <%= type %>.",
- "foodItemType": "Pagkaing Pang-alaga",
- "eggsItemType": "Mga Itlog",
- "hatchingPotionsItemType": "Hatching Potions",
- "specialItemType": "Mga espesyal na gamit",
+ "noItemsAvailableForType": "Walá ka ng <%= type %>.",
+ "foodItemType": "Pagkaing Pang-alagà",
+ "eggsItemType": "Mga Itlóg",
+ "hatchingPotionsItemType": "Mga Mahiwagang Langís na Pampápapisâ",
+ "specialItemType": "Mga Natatanging kagamitán",
"lockedItem": "Nakakandadong Gamit",
- "allItems": "Lahat ng Gamit",
- "petAndMount": "Pet at Mount"
+ "allItems": "Lahát ng Kagamitán",
+ "petAndMount": "Alagà at Lulaníng Alagà"
}
diff --git a/website/common/locales/fil/loginincentives.json b/website/common/locales/fil/loginincentives.json
index 081ffe25c9..f68eee1a83 100755
--- a/website/common/locales/fil/loginincentives.json
+++ b/website/common/locales/fil/loginincentives.json
@@ -1,25 +1,25 @@
{
- "unlockedReward": "You have received <%= reward %>",
- "earnedRewardForDevotion": "You have earned <%= reward %> for being committed to improving your life.",
- "nextRewardUnlocksIn": "Check-ins until your next prize: <%= numberOfCheckinsLeft %>",
- "awesome": "Awesome!",
- "countLeft": "Check-ins until next reward: <%= count %>",
- "incentivesDescription": "When it comes to building habits, consistency is key. Each day you check-in you get closer to a prize.",
- "checkinEarned": "Your Check-In Counter went up!",
- "unlockedCheckInReward": "You unlocked a Check-In Prize!",
- "checkinProgressTitle": "Progress until next",
- "incentiveBackgroundsUnlockedWithCheckins": "Locked Plain Backgrounds will unlock with Daily Check-Ins.",
- "oneOfAllPetEggs": "one of each standard Pet Egg",
- "twoOfAllPetEggs": "two of each standard Pet Egg",
- "threeOfAllPetEggs": "three of each standard Pet Egg",
- "oneOfAllHatchingPotions": "one of each standard Hatching Potion",
- "threeOfEachFood": "three of each standard Pet Food",
- "fourOfEachFood": "four of each standard Pet Food",
- "twoSaddles": "two Saddles",
- "threeSaddles": "three Saddles",
- "incentiveAchievement": "the Royally Loyal achievement",
- "royallyLoyal": "Royally Loyal",
- "royallyLoyalText": "This user has checked in over 500 times, and has earned every Check-In Prize!",
- "checkInRewards": "Check-In Rewards",
- "backloggedCheckInRewards": "You received Check-In Prizes! Visit your Inventory and Equipment to see what's new."
+ "unlockedReward": "Nakátanggáp ka ng <%= reward %>",
+ "earnedRewardForDevotion": "Napágkaloóban ka ng <%= reward %> dahil tapát ka sa pagpapabuti ng iyóng buhay.",
+ "nextRewardUnlocksIn": "Bilang ng pagsadyâ mo rito hanggang sa mapagkaloobán ka ng gantimpalà: <%= numberOfCheckinsLeft %>",
+ "awesome": "Ang Galíng!",
+ "countLeft": "Check-ins until next reward: <%= count %>",
+ "incentivesDescription": "Tiyagá ang kailangan upang masanay. Sa bawat araw ng pagsadyâ mo rito, palapit na ng palapit na ang iyóng gantimpalà.",
+ "checkinEarned": "Tumaás ang bilang ng pagsadyâ mo rito!",
+ "unlockedCheckInReward": "You unlocked a Check-In Prize!",
+ "checkinProgressTitle": "Ang iyóng katayuan hanggáng sa susunód na",
+ "incentiveBackgroundsUnlockedWithCheckins": "Locked Plain Backgrounds will unlock with Daily Check-Ins.",
+ "oneOfAllPetEggs": "tig-íisá ng bawat pangkaraniwang Itlóg ng Alagà",
+ "twoOfAllPetEggs": "tigdádalawá ng bawat pangkaraniwang Itlóg ng Alagà",
+ "threeOfAllPetEggs": "tigtátatló ng bawat pangkaraniwang Itlóg ng Alagà",
+ "oneOfAllHatchingPotions": "tig-íisá ng bawat pangkaraniwang Mahiwagang Langís na Pampápapisâ",
+ "threeOfEachFood": "tigtátatló ng bawat pángkaraniwang Pagkaing Pang-alagà",
+ "fourOfEachFood": "tíg-aapat ng bawat pángkaraniwang Pagkaing Pang-alagà",
+ "twoSaddles": "two Saddles",
+ "threeSaddles": "three Saddles",
+ "incentiveAchievement": "ang Kakaibang Kalakihan sa Katapatan na tagumpáy",
+ "royallyLoyal": "Kakaibang Kalakihan sa Katapatan",
+ "royallyLoyalText": "Limandaáng ulit ng nakapuntá ang tagagamit na itó dito, at napagkaloobán na ng bawat Gantimpalà ng maaaring matanggáp ukol sa dalás ng pagpuntá rito!",
+ "checkInRewards": "Gantimpalà sa Dalás ng Pagpuntá Mo Rito",
+ "backloggedCheckInRewards": "Nakátanggáp ka ng gantimpalà sa dalás ng pagpuntá mo rito! Dalawin mo ang iyóng Imbakan at Kagamitán upang makità kung anó ang bago."
}
diff --git a/website/common/locales/fil/npc.json b/website/common/locales/fil/npc.json
index 11d89f2332..cc0eb2099b 100755
--- a/website/common/locales/fil/npc.json
+++ b/website/common/locales/fil/npc.json
@@ -28,7 +28,7 @@
"acceptCommunityGuidelines": "I agree to follow the Community Guidelines",
"worldBossEvent": "World Boss Event",
"worldBossDescription": "World Boss Description",
- "welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
+ "welcomeMarketMobile": "Maligayang pagdatíng sa Pamilihan! Bumilí ng mga mahirap mahanap na mga itlóg at mahiwagang langís! Halikayo at tingnan kung ano ang aming inaalók.",
"howManyToSell": "How many would you like to sell?",
"yourBalance": "Iyong balanse:",
"sell": "Sell",
@@ -101,7 +101,7 @@
"tourPartyPage": "Your Party will help you stay accountable. Invite friends to unlock a Quest Scroll!",
"tourGuildsPage": "Guilds are common-interest chat groups created by the players, for the players. Browse through the list and join the Guilds that interest you. Be sure to check out the popular Habitica Help: Ask a Question guild, where anyone can ask questions about Habitica!",
"tourChallengesPage": "Challenges are themed task lists created by users! Joining a Challenge will add its tasks to your account. Compete against other users to win Gem prizes!",
- "tourMarketPage": "Tuwing nakakukumpleto ka ng isang gawain, may tyansa kang makakuha ng Itlog, isang Hatching Potion, o isang pirasong Pagkaing Pang-alaga. Maaari ka ring bumili ng mga binanggit na gamit dito.",
+ "tourMarketPage": "Tuwíng nakakatapos ka ng isáng gawain, may pagkakataón kang makakuhà ng Itlóg, isang Mahiwagang Langís na Pampapisâ, o isang pirasong Pagkaing Pang-alagà. Maaari ka ring bumili ng mga binanggit dito.",
"tourHallPage": "Welcome to the Hall of Heroes, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned Gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too!",
"tourPetsPage": "Maligayang pagdating sa Kuwadra! Tuwing nakakukumpleto ka ng isang gawain, may tyansang makakuha ka ng Itlog o Hatching Potion upang makakuha ng mga Alaga. Kapag nakapag-hatch ka ng Alaga, lalabas iyon dito! Pindutin ang larawan ng Alaga upang madagdag ito sa iyong Avatar. Pakainin sila ng mga nahanap mong Pagkaing Pang-alaga at sila ay lalaki bilang matitibay na Mounts.",
"tourMountsPage": "Once you've fed a pet enough food to turn it into a mount, it will appear here. Click a mount to saddle up!",
diff --git a/website/common/locales/fil/pets.json b/website/common/locales/fil/pets.json
index 9388a2abdb..618e2025b9 100644
--- a/website/common/locales/fil/pets.json
+++ b/website/common/locales/fil/pets.json
@@ -14,9 +14,9 @@
"activePet": "Aktibong Alagà",
"food": "Pagkaing Pang-Alaga at Saddles",
"quickInventory": "Mabilisang Imbentaryo",
- "haveHatchablePet": "Mayroon kang <%= potion %> hatching potion at <%= egg %> itlog upang ma-hatch ang alagang ito!
Pindutin upang ma-hatch!",
- "hatchingPotion": "hatching potion",
- "magicHatchingPotions": "Mahiwagang Hatching Potions",
+ "haveHatchablePet": "Mayroon kang <%= potion %> na mahiwagang langís na pampápapisâ at <%= egg %> na itlóg upang mapisâ ang alagang itó!
Pindutin upang mapisâ!",
+ "hatchingPotion": "mahiwagang langís na pampápapisâ",
+ "magicHatchingPotions": "Mga Mahihiwagang Langís na Pampápapisâ",
"hatchingPotions": "Hatching Potions",
"eggSingular": "itlog",
"eggs": "Mga Itlog",
@@ -29,7 +29,7 @@
"hopefulHippogriffPet": "Umaasang Hippogriff",
"magicalBee": "Mahiwagang Bubuyog",
"phoenix": "Fenix",
- "royalPurpleGryphon": "Kulay Ubeng Maharliká na Gripon",
+ "royalPurpleGryphon": "Kulay Ube na Maharlikáng Leóng Lawin",
"orca": "Orca",
"mammoth": "Mabalahibong Mammoth",
"mantisShrimp": "Tatampál",
diff --git a/website/common/locales/fil/questscontent.json b/website/common/locales/fil/questscontent.json
index 5182985117..66b3c6197d 100755
--- a/website/common/locales/fil/questscontent.json
+++ b/website/common/locales/fil/questscontent.json
@@ -15,49 +15,49 @@
"questGryphonCompletion": "Defeated, the mighty beast ashamedly slinks back to its master. \"My word! Well done, adventurers!\"
baconsaur exclaims, \"Please, have some of the gryphon's eggs. I am sure you will raise these young ones well!\"",
"questGryphonBoss": "Fiery Gryphon",
"questGryphonDropGryphonEgg": "Gryphon (Egg)",
- "questGryphonUnlockText": "Unlocks purchasable Gryphon eggs in the Market",
+ "questGryphonUnlockText": "Binubuksán ang pagkakataóng makabilí ng itlóg ng Leóng Lawin sa Pamilihan",
"questHedgehogText": "The Hedgebeast",
"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
InspectorCaracal did just that. Oops.",
"questHedgehogCompletion": "Your party successfully calmed down the hedgehog! After shrinking down to a normal size, she hobbles away to her eggs. She returns squeaking and nudging some of her eggs along towards your party. Hopefully, these hedgehogs like milk better!",
"questHedgehogBoss": "Hedgebeast",
"questHedgehogDropHedgehogEgg": "Hedgehog (Egg)",
- "questHedgehogUnlockText": "Unlocks purchasable Hedgehog eggs in the Market",
+ "questHedgehogUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Landak sa Pamilihan",
"questGhostStagText": "The Spirit of Spring",
"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,\"
InspectorCaracal says apprehensively, \"It would appear that some kind of spirit is the cause of this fog. Oh, and it is charging right at you.\"",
"questGhostStagCompletion": "The spirit, seemingly unwounded, lowers its nose to the ground. A calming voice envelops your party. \"I apologize for my behavior. I have only just awoken from my slumber, and it would appear my wits have not completely returned to me. Please take these as a token of my apology.\" A cluster of eggs materialize on the grass before the spirit. Without another word, the spirit runs off into the forest with flowers falling in his wake.",
"questGhostStagBoss": "Ghost Stag",
"questGhostStagDropDeerEgg": "Deer (Egg)",
- "questGhostStagUnlockText": "Unlocks purchasable Deer eggs in the Market",
+ "questGhostStagUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Usá sa Pamilihan",
"questRatText": "The Rat King",
"questRatNotes": "Garbage! Massive piles of unchecked Dailies are lying all across Habitica. The problem has become so serious that hordes of rats are now seen everywhere. You notice @Pandah petting one of the beasts lovingly. She explains that rats are gentle creatures that feed on unchecked Dailies. The real problem is that the Dailies have fallen into the sewer, creating a dangerous pit that must be cleared. As you descend into the sewers, a massive rat, with blood red eyes and mangled yellow teeth, attacks you, defending its horde. Will you cower in fear or face the fabled Rat King?",
"questRatCompletion": "Your final strike saps the gargantuan rat's strength, his eyes fading to a dull grey. The beast splits into many tiny rats, which scurry off in fright. You notice @Pandah standing behind you, looking at the once mighty creature. She explains that the citizens of Habitica have been inspired by your courage and are quickly completing all their unchecked Dailies. She warns you that we must be vigilant, for should we let down our guard, the Rat King will return. As payment, @Pandah offers you several rat eggs. Noticing your uneasy expression, she smiles, \"They make wonderful pets.\"",
"questRatBoss": "Rat King",
"questRatDropRatEgg": "Rat (Egg)",
- "questRatUnlockText": "Unlocks purchasable Rat eggs in the Market",
+ "questRatUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Dagâ sa Pamilihan",
"questOctopusText": "The Call of Octothulu",
"questOctopusNotes": "@Urse, a wild-eyed young scribe, has asked for your help exploring a mysterious cave by the sea shore. Among the twilight tidepools stands a massive gate of stalactites and stalagmites. As you near the gate, a dark whirlpool begins to spin at its base. You stare in awe as a squid-like dragon rises through the maw. \"The sticky spawn of the stars has awakened,\" roars @Urse madly. \"After vigintillions of years, the great Octothulu is loose again, and ravening for delight!\"",
"questOctopusCompletion": "With a final blow, the creature slips away into the whirlpool from which it came. You cannot tell if @Urse is happy with your victory or saddened to see the beast go. Wordlessly, your companion points to three slimy, gargantuan eggs in a nearby tidepool, set in a nest of gold coins. \"Probably just octopus eggs,\" you say nervously. As you return home, @Urse frantically scribbles in a journal and you suspect this is not the last time you will hear of the great Octothulu.",
"questOctopusBoss": "Octothulu",
"questOctopusDropOctopusEgg": "Octopus (Egg)",
- "questOctopusUnlockText": "Unlocks purchasable Octopus eggs in the Market",
+ "questOctopusUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Pugita sa Pamilihan",
"questHarpyText": "Help! Harpy!",
"questHarpyNotes": "The brave adventurer @UncommonCriminal has disappeared into the forest, following the trail of a winged monster that was sighted several days ago. You are about to begin a search when a wounded parrot lands on your arm, an ugly scar marring its beautiful plumage. Attached to its leg is a scrawled note explaining that while defending the parrots, @UncommonCriminal was captured by a vicious Harpy, and desperately needs your help to escape. Will you follow the bird, defeat the Harpy, and save @UncommonCriminal?",
"questHarpyCompletion": "A final blow to the Harpy brings it down, feathers flying in all directions. After a quick climb to its nest you find @UncommonCriminal, surrounded by parrot eggs. As a team, you quickly place the eggs back in the nearby nests. The scarred parrot who found you caws loudly, dropping several eggs in your arms. \"The Harpy attack has left some eggs in need of protection,\" explains @UncommonCriminal. \"It seems you have been made an honorary parrot.\"",
"questHarpyBoss": "Harpy",
"questHarpyDropParrotEgg": "Parrot (Egg)",
- "questHarpyUnlockText": "Unlocks purchasable Parrot eggs in the Market",
+ "questHarpyUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Periko sa Pamilihan",
"questRoosterText": "Rooster Rampage",
"questRoosterNotes": "For years the farmer @extrajordanary has used Roosters as an alarm clock. But now a giant Rooster has appeared, crowing louder than any before – and waking up everyone in Habitica! The sleep-deprived Habiticans struggle through their daily tasks. @Pandoro decides the time has come to put a stop to this. \"Please, is there anyone who can teach that Rooster to crow quietly?\" You volunteer, approaching the Rooster early one morning – but it turns, flapping its giant wings and showing its sharp claws, and crows a battle cry.",
"questRoosterCompletion": "With finesse and strength, you have tamed the wild beast. Its ears, once filled with feathers and half-remembered tasks, are now clear as day. It crows at you quietly, snuggling its beak into your shoulder. The next day you’re set to take your leave, but @EmeraldOx runs up to you with a covered basket. “Wait! When I went into the farmhouse this morning, the Rooster had pushed these against the door where you slept. I think he wants you to have them.” You uncover the basket to see three delicate eggs.",
"questRoosterBoss": "Rooster",
"questRoosterDropRoosterEgg": "Rooster (Egg)",
- "questRoosterUnlockText": "Unlocks purchasable Rooster eggs in the Market",
+ "questRoosterUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Tandáng sa Pamilihan",
"questSpiderText": "The Icy Arachnid",
"questSpiderNotes": "As the weather starts cooling down, delicate frost begins appearing on Habiticans' windowpanes in lacy webs... except for @Arcosine, whose windows are frozen completely shut by the Frost Spider currently taking up residence in his home. Oh dear.",
"questSpiderCompletion": "The Frost Spider collapses, leaving behind a small pile of frost and a few of her enchanted egg sacs. @Arcosine rather hurriedly offers them to you as a reward--perhaps you could raise some non-threatening spiders as pets of your own?",
"questSpiderBoss": "Spider",
"questSpiderDropSpiderEgg": "Spider (Egg)",
- "questSpiderUnlockText": "Unlocks purchasable Spider eggs in the Market",
+ "questSpiderUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Gagambá sa Pamilihan",
"questGroupVice": "Vice the Shadow Wyrm",
"questVice1Text": "Vice, Part 1: Free Yourself of the Dragon's Influence",
"questVice1Notes": "
They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.
Vice Part 1:
How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!
",
@@ -116,11 +116,11 @@
"questBasilistNotes": "There's a commotion in the marketplace--the kind that should make you run away. Being a courageous adventurer, you run towards it instead, and discover a Basi-list, coalescing from a clump of incomplete To-Dos! Nearby Habiticans are paralyzed with fear at the length of the Basi-list, unable to start working. From somewhere in the vicinity, you hear @Arcosine shout: \"Quick! Complete your To-Dos and Dailies to defang the monster, before someone gets a paper cut!\" Strike fast, adventurer, and check something off - but beware! If you leave any Dailies undone, the Basi-list will attack you and your party!",
"questBasilistCompletion": "The Basi-list has scattered into paper scraps, which shimmer gently in rainbow colors. \"Whew!\" says @Arcosine. \"Good thing you guys were here!\" Feeling more experienced than before, you gather up some fallen gold from among the papers.",
"questBasilistBoss": "The Basi-List",
- "questEggHuntText": "Egg Hunt",
+ "questEggHuntText": "Pagháhanáp ng Itlóg",
"questEggHuntNotes": "Overnight, strange plain eggs have appeared everywhere: in Matt's stables, behind the counter at the Tavern, and even among the pet eggs at the Marketplace! What a nuisance! \"Nobody knows where they came from, or what they might hatch into,\" says Megan, \"but we can't just leave them laying around! Work hard and search hard to help me gather up these mysterious eggs. Maybe if you collect enough, there will be some extras left over for you...\"",
"questEggHuntCompletion": "You did it! In gratitude,
Megan gives you ten of the eggs. \"I bet the hatching potions will dye them beautiful colors! And I wonder what will happen when they turn into mounts....\"",
- "questEggHuntCollectPlainEgg": "Plain Eggs",
- "questEggHuntDropPlainEgg": "Plain Egg",
+ "questEggHuntCollectPlainEgg": "Mga Payák na Itlóg",
+ "questEggHuntDropPlainEgg": "Payák na Itlóg",
"questDilatoryText": "The Dread Drag'on of Dilatory",
"questDilatoryNotes": "We should have heeded the warnings.
Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse:
the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.
\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"
\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"
Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....",
"questDilatoryBoss": "The Dread Drag'on of Dilatory",
@@ -137,7 +137,7 @@
"questSeahorseCompletion": "The now-tame Sea Stallion swims docilely to your side. \"Oh, look!\" Kiwibot says. \"He wants us to take care of his children.\" She gives you three eggs. \"Raise them well,\" she says. \"You're welcome at the Dilatory Derby any day!\"",
"questSeahorseBoss": "Sea Stallion",
"questSeahorseDropSeahorseEgg": "Seahorse (Egg)",
- "questSeahorseUnlockText": "Unlocks purchasable Seahorse eggs in the Market",
+ "questSeahorseUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Kabáyong-Dagat sa Pamilihan",
"questGroupAtom": "Attack of the Mundane",
"questAtom1Text": "Attack of the Mundane, Part 1: Dish Disaster!",
"questAtom1Notes": "You reach the shores of Washed-Up Lake for some well-earned relaxation... But the lake is polluted with unwashed dishes! How did this happen? Well, you simply cannot allow the lake to be in this state. There is only one thing you can do: clean the dishes and save your vacation spot! Better find some soap to clean up this mess. A lot of soap...",
@@ -159,13 +159,13 @@
"questOwlCompletion": "The Night-Owl fades before the dawn,
But even so, you feel a yawn.
Perhaps it's time to get some rest?
Then on your bed, you see a nest!
A Night-Owl knows it can be great
To finish work and stay up late,
But your new pets will softly peep
To tell you when it's time to sleep.",
"questOwlBoss": "The Night-Owl",
"questOwlDropOwlEgg": "Owl (Egg)",
- "questOwlUnlockText": "Unlocks purchasable Owl eggs in the Market",
+ "questOwlUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Kwago sa Pamilihan",
"questPenguinText": "The Fowl Frost",
"questPenguinNotes": "Although it's a hot summer day in the southernmost tip of Habitica, an unnatural chill has fallen upon Lively Lake. Strong, frigid winds rush around as the shore begins to freeze over. Ice spikes jut up from the ground, pushing grass and dirt away. @Melynnrose and @Breadstrings run up to you.
\"Help!\" says @Melynnrose. \"We brought a giant penguin in to freeze the lake so we could all go ice skating, but we ran out of fish to feed him!\"
\"He got angry and is using his freeze breath on everything he sees!\" says @Breadstrings. \"Please, you have to subdue him before all of us are covered in ice!\" Looks like you need this penguin to...
cool down.",
"questPenguinCompletion": "Upon the penguin's defeat, the ice melts away. The giant penguin settles down in the sunshine, slurping up an extra bucket of fish you found. He skates off across the lake, blowing gently downwards to create smooth, sparkling ice. What an odd bird! \"It appears he left behind a few eggs, as well,\" says @Painter de Cluster.
@Rattify laughs. \"Maybe these penguins will be a little more... chill?\"",
"questPenguinBoss": "Frost Penguin",
"questPenguinDropPenguinEgg": "Penguin (Egg)",
- "questPenguinUnlockText": "Unlocks purchasable Penguin eggs in the Market",
+ "questPenguinUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Penggwin sa Pamilihan",
"questStressbeastText": "The Abominable Stressbeast of the Stoïkalm Steppes",
"questStressbeastNotes": "Complete Dailies and To-Dos to damage the World Boss! Incomplete Dailies fill the Stress Strike Bar. When the Stress Strike bar is full, the World Boss will attack an NPC. A World Boss will never damage individual players or accounts in any way. Only active accounts who are not resting in the inn will have their incomplete Dailies tallied.
~*~
The first thing we hear are the footsteps, slower and more thundering than the stampede. One by one, Habiticans look outside their doors, and words fail us.
We've all seen Stressbeasts before, of course - tiny vicious creatures that attack during difficult times. But this? This towers taller than the buildings, with paws that could crush a dragon with ease. Frost swings from its stinking fur, and as it roars, the icy blast rips the roofs off our houses. A monster of this magnitude has never been mentioned outside of distant legend.
\"Beware, Habiticans!\" SabreCat cries. \"Barricade yourselves indoors - this is the Abominable Stressbeast itself!\"
\"That thing must be made of centuries of stress!\" Kiwibot says, locking the Tavern door tightly and shuttering the windows.
\"The Stoïkalm Steppes,\" Lemoness says, face grim. \"All this time, we thought they were placid and untroubled, but they must have been secretly hiding their stress somewhere. Over generations, it grew into this, and now it's broken free and attacked them - and us!\"
There's only one way to drive away a Stressbeast, Abominable or otherwise, and that's to attack it with completed Dailies and To-Dos! Let's all band together and fight off this fearsome foe - but be sure not to slack on your tasks, or our undone Dailies may enrage it so much that it lashes out...",
"questStressbeastBoss": "The Abominable Stressbeast",
@@ -191,43 +191,43 @@
"questTRexUndeadRageDescription": "This bar fills when you don't complete your Dailies. When it is full, the Skeletal Tyrannosaur will heal 30% of its remaining health!",
"questTRexUndeadRageEffect": "`Skeletal Tyrannosaur uses SKELETON HEALING!`\n\nThe monster lets forth an unearthly roar, and some of its damaged bones knit back together!",
"questTRexDropTRexEgg": "Tyrannosaur (Egg)",
- "questTRexUnlockText": "Unlocks purchasable Tyrannosaur eggs in the Market",
+ "questTRexUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Tayranosor sa Pamilihan",
"questRockText": "Escape the Cave Creature",
"questRockNotes": "Crossing Habitica's Meandering Mountains with some friends, you make camp one night in a beautiful cave laced with shining minerals. But when you wake up the next morning, the entrance has disappeared, and the floor of the cave is shifting underneath you.
\"The mountain's alive!\" shouts your companion @pfeffernusse. \"These aren't crystals - these are teeth!\"
@Painter de Cluster grabs your hand. \"We'll have to find another way out - stay with me and don't get distracted, or we could be trapped in here forever!\"",
"questRockBoss": "Crystal Colossus",
"questRockCompletion": "Your diligence has allowed you to find a safe path through the living mountain. Standing in the sunshine, your friend @intune notices something glinting on the ground by the cave's exit. You stoop to pick it up, and see that it's a small rock with a vein of gold running through it. Beside it are a number of other rocks with rather peculiar shapes. They almost look like... eggs?",
- "questRockDropRockEgg": "Rock (Egg)",
- "questRockUnlockText": "Unlocks purchasable Rock eggs in the Market",
+ "questRockDropRockEgg": "Bató (Itlóg)",
+ "questRockUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Bató sa Pamilihan",
"questBunnyText": "The Killer Bunny",
"questBunnyNotes": "After many difficult days, you reach the peak of Mount Procrastination and stand before the imposing doors of the Fortress of Neglect. You read the inscription in the stone. \"Inside resides the creature that embodies your greatest fears, the reason for your inaction. Knock and face your demon!\" You tremble, imagining the horror within and feel the urge to flee as you have done so many times before. @Draayder holds you back. \"Steady, my friend! The time has come at last. You must do this!\"
You knock and the doors swing inward. From within the gloom you hear a deafening roar, and you draw your weapon.",
"questBunnyBoss": "Killer Bunny",
"questBunnyCompletion": "With one final blow the killer rabbit sinks to the ground. A sparkly mist rises from her body as she shrinks down into a tiny bunny... nothing like the cruel beast you faced a moment before. Her nose twitches adorably and she hops away, leaving some eggs behind. @Gully laughs. \"Mount Procrastination has a way of making even the smallest challenges seem insurmountable. Let's gather these eggs and head for home.\"",
"questBunnyDropBunnyEgg": "Bunny (Egg)",
- "questBunnyUnlockText": "Unlocks purchasable Bunny eggs in the Market",
- "questSlimeText": "The Jelly Regent",
- "questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!",
- "questSlimeBoss": "Jelly Regent",
- "questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.",
- "questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)",
- "questSlimeUnlockText": "Unlocks purchasable Slime eggs in the Market",
+ "questBunnyUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Kuneho sa Pamilihan",
+ "questSlimeText": "Ang Gulaman na Panghaliling Pinunò",
+ "questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Gulaman na Panghaliling Pinunò has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!",
+ "questSlimeBoss": "Gulaman na Panghaliling Pinunò",
+ "questSlimeCompletion": "With a final jab, you trap the Gulaman na Panghaliling Pinunò in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.",
+ "questSlimeDropSlimeEgg": "Marshmallow na Lapot (Itlóg)",
+ "questSlimeUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Lapot sa Pamilihan",
"questSheepText": "The Thunder Ram",
"questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a \"quick break\" from your obligations, you find a cozy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. \"I've got a ba-a-a-ad feeling about this weather,\" mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a... \"We don't have time for cloud-gazing!\" @starsystemic shouts. \"It's attacking!\" The Thunder Ram hurtles forward, slinging bolts of lightning right at you!",
"questSheepBoss": "Thunder Ram",
"questSheepCompletion": "Impressed by your diligence, the Thunder Ram is drained of its fury. It launches three huge hailstones in your direction, and then fades away with a low rumble. Upon closer inspection, you discover that the hailstones are actually three fluffy eggs. You gather them up, and then stroll home under a blue sky.",
"questSheepDropSheepEgg": "Sheep (Egg)",
- "questSheepUnlockText": "Unlocks purchasable Sheep eggs in the Market",
+ "questSheepUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Tupa sa Pamilihan",
"questKrakenText": "The Kraken of Inkomplete",
"questKrakenNotes": "It's a warm, sunny day as you sail across the Inkomplete Bay, but your thoughts are clouded with worries about everything that you still need to do. It seems that as soon as you finish one task, another crops up, and then another...
Suddenly, the boat gives a horrible jolt, and slimy tentacles burst out of the water on all sides! \"We're being attacked by the Kraken of Inkomplete!\" Wolvenhalo cries.
\"Quickly!\" Lemoness calls to you. \"Strike down as many tentacles and tasks as you can, before new ones can rise up to take their place!\"",
"questKrakenBoss": "The Kraken of Inkomplete",
"questKrakenCompletion": "As the Kraken flees, several eggs float to the surface of the water. Lemoness examines them, and her suspicion turns to delight. \"Cuttlefish eggs!\" she says. \"Here, take them as a reward for everything you've completed.\"",
"questKrakenDropCuttlefishEgg": "Cuttlefish (Egg)",
- "questKrakenUnlockText": "Unlocks purchasable Cuttlefish eggs in the Market",
+ "questKrakenUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Bangkutak sa Pamilihan",
"questWhaleText": "Wail of the Whale",
"questWhaleNotes": "You arrive at the Diligent Docks, hoping to take a submarine to watch the Dilatory Derby. Suddenly, a deafening bellow forces you to stop and cover your ears. \"Thar she blows!\" cries Captain @krazjega, pointing to a huge, wailing whale. \"It's not safe to send out the submarines while she's thrashing around!\"
\"Quick,\" calls @UncommonCriminal. \"Help me calm the poor creature so we can figure out why she's making all this noise!\"",
"questWhaleBoss": "Wailing Whale",
"questWhaleCompletion": "After much hard work, the whale finally ceases her thunderous cry. \"Looks like she was drowning in waves of negative habits,\" @zoebeagle explains. \"Thanks to your consistent effort, we were able to turn the tides!\" As you step into the submarine, several whale eggs bob towards you, and you scoop them up.",
"questWhaleDropWhaleEgg": "Whale (Egg)",
- "questWhaleUnlockText": "Unlocks purchasable Whale eggs in the Market",
+ "questWhaleUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Balyena sa Pamilihan",
"questGroupDilatoryDistress": "Dilatory Distress",
"questDilatoryDistress1Text": "Dilatory Distress, Part 1: Message in a Bottle",
"questDilatoryDistress1Notes": "A message in a bottle arrived from the newly rebuilt city of Dilatory! It reads: \"Dear Habiticans, we need your help once again. Our princess has disappeared and the city is under siege by some unknown watery demons! The mantis shrimps are holding the attackers at bay. Please aid us!\" To make the long journey to the sunken city, one must be able to breathe water. Fortunately, the alchemists @Benga and @hazel can make it all possible! You only have to find the proper ingredients.",
@@ -257,13 +257,13 @@
"questCheetahCompletion": "The new Habitican is breathing heavily after the wild ride, but thanks you and your friends for your help. \"I'm glad that Cheetah won't be able to grab anyone else. It did leave some Cheetah eggs for us, so maybe we can raise them into more trustworthy pets!\"",
"questCheetahBoss": "Cheetah",
"questCheetahDropCheetahEgg": "Cheetah (Egg)",
- "questCheetahUnlockText": "Unlocks purchasable Cheetah eggs in the Market",
+ "questCheetahUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Gepardo sa Pamilihan",
"questHorseText": "Ride the Night-Mare",
"questHorseNotes": "While relaxing in the Tavern with @beffymaroo and @JessicaChase, the talk turns to good-natured boasting about your adventuring accomplishments. Proud of your deeds, and perhaps getting a bit carried away, you brag that you can tame any task around. A nearby stranger turns toward you and smiles. One eye twinkles as he invites you to prove your claim by riding his horse.\nAs you all head for the stables, @UncommonCriminal whispers, \"You may have bitten off more than you can chew. That's no horse - that's a Night-Mare!\" Looking at its stamping hooves, you begin to regret your words...",
"questHorseCompletion": "It takes all your skill, but finally the horse stamps a couple of hooves and nuzzles you in the shoulder before allowing you to mount. You ride briefly but proudly around the Tavern grounds while your friends cheer. The stranger breaks into a broad grin.\n\"I can see that was no idle boast! Your determination is truly impressive. Take these eggs to raise horses of your own, and perhaps we'll meet again one day.\" You take the eggs, the stranger tips his hat... and vanishes.",
"questHorseBoss": "Night-Mare",
"questHorseDropHorseEgg": "Horse (Egg)",
- "questHorseUnlockText": "Unlocks purchasable Horse eggs in the Market",
+ "questHorseUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Kabayò sa Pamilihan",
"questBurnoutText": "Burnout and the Exhaust Spirits",
"questBurnoutNotes": "It is well past midnight, still and stiflingly hot, when Redphoenix and scout captain Kiwibot abruptly burst through the city gates. \"We need to evacuate all the wooden buildings!\" Redphoenix shouts. \"Hurry!\"
Kiwibot grips the wall as she catches her breath. \"It's draining people and turning them into Exhaust Spirits! That's why everything was delayed. That's where the missing people have gone. It's been stealing their energy!\"
\"'It'?'\" asks Lemoness.
And then the heat takes form.
It rises from the earth in a billowing, twisting mass, and the air chokes with the scent of smoke and sulphur. Flames lick across the molten ground and contort into limbs, writhing to horrific heights. Smoldering eyes snap open, and the creature lets out a deep and crackling cackle.
Kiwibot whispers a single word.
\"Burnout.\"",
"questBurnoutCompletion": "
Burnout is DEFEATED!With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.
Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!
\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!
One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"
Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"
She claps her hands. \"Now - let's celebrate!\"",
@@ -281,37 +281,37 @@
"questFrogCompletion": "The frog cowers back into the muck, defeated. As it slinks away, the blue slime fades, leaving the way ahead clear.
Sitting in the middle of the path are three pristine eggs. \"You can even see the tiny tadpoles through the clear casing!\" @Breadstrings says. \"Here, you should take them.\"",
"questFrogBoss": "Clutter Frog",
"questFrogDropFrogEgg": "Frog (Egg)",
- "questFrogUnlockText": "Unlocks purchasable Frog eggs in the Market",
+ "questFrogUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Palakâ sa Pamilihan",
"questSnakeText": "The Serpent of Distraction",
"questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?",
"questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.",
"questSnakeBoss": "Serpent of Distraction",
"questSnakeDropSnakeEgg": "Snake (Egg)",
- "questSnakeUnlockText": "Unlocks purchasable Snake eggs in the Market",
- "questUnicornText": "Convincing the Unicorn Queen",
- "questUnicornNotes": "Conquest Creek has become muddied, destroying Habit City's fresh water supply! Luckily, @Lukreja knows an old legend that claims that a unicorn's horn can purify the foulest of waters. Together with your intrepid guide @UncommonCriminal, you hike through the frozen peaks of the Meandering Mountains. Finally, at the icy summit of Mount Habitica itself, you find the Unicorn Queen amid the glittering snows. \"Your pleas are compelling,\" she tells you. \"But first you must prove that you are worthy of my aid!\"",
- "questUnicornCompletion": "Impressed by your diligence and strength, the Unicorn Queen at last agrees that your cause is worthy. She allows you to ride on her back as she soars to the source of Conquest Creek. As she lowers her golden horn to the befouled waters, a brilliant blue light rises from the water’s surface. It is so blinding that you are forced to close your eyes. When you open them a moment later, the unicorn is gone. However, @rosiesully lets out a cry of delight: the water is now clear, and three shining eggs rest at the creek’s edge.",
- "questUnicornBoss": "The Unicorn Queen",
- "questUnicornDropUnicornEgg": "Unicorn (Egg)",
- "questUnicornUnlockText": "Unlocks purchasable Unicorn eggs in the Market",
+ "questSnakeUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Ahas sa Pamilihan",
+ "questUnicornText": "Himukin ang Mahál na Maysángsungay",
+ "questUnicornNotes": "Naputikan ang Pasig ng Paglupig na siyáng ikinasirà ng pinagkukunan ng sariwang tubig sa Lungsód ng Ikinágawì! Buti na lang, may alám si @Lukreja na isáng matandáng alamát na nakapagsabing nalilinis daw ng sungay ng isáng maysángsungay ang kahit gaano pa karumi na tubig. Kasama ng iyóng napakatapang na tagapággabáy na si @UncommonCriminal, tinahak ninyó ang mayeyelong rurok ng Bulúbunduking Bumabaitáng. Nang nasa mayelong tuktók kayó ng Bundók Habitica sa wakás, natagpuán n'yo ang Mahál na Maysángsungay sa kalágitnaan ng kumikináng na niyebe. \"Nakakahimok ang inyóng pakiusap,\" sabi ániyá, \"ngunit kailangan n'yo munang patunayan na karapat-dapat kayóng tulungan!\"",
+ "questUnicornCompletion": "Dahil napahangà n'yo siyá sa inyóng sipag at lakás, sa wakás at nahimok rin ang Mahál na Maysángsungay na tulungan kayó sa inyóng nilalayon. Pinayagan n'yá kayóng sumakáy sa kanyáng likód habang pumaibabaw-lipád siya sa kalagitnaan ng Pasig ng Paglupig. Sa pagtubóg ng kanyang gintóng sungay sa madungis na tubig, isáng nakakasilaw na bugháwna ilaw ang sumungaw mulâ sa ibabaw ng tubig. Sa ubod ng tindí nitó, napapikít kayó. Nang binuksán n'yo ang inyóng mga matá, nawalá na ang maysángsungay, ngunit humiyáw sa tuwâ si @rosiesully: malinaw na ulít ang tubig, at lumitáw ang tatlóng kumíkintáb na itlóg sa may paanán ng pasig.",
+ "questUnicornBoss": "Ang Mahál na Maysángsungay",
+ "questUnicornDropUnicornEgg": "Maysángsungay (Itlóg)",
+ "questUnicornUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Maysangsungay sa Pamilihan",
"questSabretoothText": "The Sabre Cat",
"questSabretoothNotes": "A roaring monster is terrorizing Habitica! The creature stalks through the wilds and woods, then bursts forth to attack before vanishing again. It's been hunting innocent pandas and frightening the flying pigs into fleeing their pens to roost in the trees. @InspectorCaracal and @icefelis explain that the Zombie Sabre Cat was set free while they were excavating in the ancient, untouched ice-fields of the Stoïkalm Steppes. \"It was perfectly friendly at first – I don't know what happened. Please, you have to help us recapture it! Only a champion of Habitica can subdue this prehistoric beast!\"",
"questSabretoothCompletion": "After a long and tiring battle, you wrestle the Zombie Sabre Cat to the ground. As you are finally able to approach, you notice a nasty cavity in one of its sabre teeth. Realising the true cause of the cat's wrath, you're able to get the cavity filled by @Fandekasp, and advise everyone to avoid feeding their friend sweets in future. The Sabre Cat flourishes, and in gratitude, its tamers send you a generous reward – a clutch of sabretooth eggs!",
"questSabretoothBoss": "Zombie Sabre Cat",
"questSabretoothDropSabretoothEgg": "Sabretooth (Egg)",
- "questSabretoothUnlockText": "Unlocks purchasable Sabretooth eggs in the Market",
+ "questSabretoothUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Iping-Iták sa Pamilihan",
"questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys",
"questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!
\"It will take a dedicated adventurer to resist them,\" says @yamato.
\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.",
"questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"
@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"",
"questMonkeyBoss": "Monstrous Mandrill",
"questMonkeyDropMonkeyEgg": "Monkey (Egg)",
- "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market",
+ "questMonkeyUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Unggóy sa Pamilihan",
"questSnailText": "The Snail of Drudgery Sludge",
"questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"
\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"
Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.",
- "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"",
+ "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The lapot is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"",
"questSnailBoss": "Snail of Drudgery Sludge",
"questSnailDropSnailEgg": "Snail (Egg)",
- "questSnailUnlockText": "Unlocks purchasable Snail eggs in the Market",
+ "questSnailUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Susô sa Pamilihan",
"questBewilderText": "The Be-Wilder",
"questBewilderNotes": "The party begins like any other.
The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.
As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.
“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.
“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”
Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”
But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.
“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”
Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.
“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”
A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.
PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”
Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.",
"questBewilderCompletion": "
The Be-Wilder is DEFEATED!We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.
Mistiflying is saved!The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”
The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.
“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”
Redphoenix coughs meaningfully.
“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”
Encouraged, the marching band starts up.
It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.
As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”",
@@ -328,46 +328,46 @@
"questFalconCompletion": "Having finally triumphed over the Birds of Preycrastination, you settle down to enjoy the view and your well-earned rest.
\"Wow!\" says @Trogdorina. \"You won!\"
@Squish adds, \"Here, take these eggs I found as a reward.\"",
"questFalconBoss": "Birds of Preycrastination",
"questFalconDropFalconEgg": "Falcon (Egg)",
- "questFalconUnlockText": "Unlocks purchasable Falcon eggs in the Market",
+ "questFalconUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Limbás sa Pamilihan",
"questTreelingText": "The Tangle Tree",
"questTreelingNotes": "It's the annual Garden Competition, and everyone is talking about the mysterious project which @aurakami has promised to unveil. You join the crowd on the day of the big announcement, and marvel at the introduction of a moving tree. @fuzzytrees explains that the tree will help with garden maintenance, showing how it can mow the lawn, trim the hedge and prune the roses all at the same time – until the tree suddenly goes wild, turning its secateurs on its creator! The crowd panics as everyone tries to flee, but you aren't afraid – you leap forward, ready to do battle.",
"questTreelingCompletion": "You dust yourself off as the last few leaves drift to the floor. In spite of the upset, the Garden Competition is now safe – although the tree you just reduced to a heap of wood chips won't be winning any prizes! \"Still a few kinks to work out there,\" @PainterProphet says. \"Perhaps someone else would do a better job of training the saplings. Do you fancy a go?\"",
- "questTreelingBoss": "Tangle Tree",
- "questTreelingDropTreelingEgg": "Treeling (Egg)",
- "questTreelingUnlockText": "Unlocks purchasable Treeling eggs in the Market",
- "questAxolotlText": "The Magical Axolotl",
- "questAxolotlNotes": "From the depths of Washed-Up Lake you see rising bubbles and... fire? A little axolotl rises from the murky water spewing streaks of colors. Suddenly it begins to open its mouth and @streak yells, \"Look out!\" as the Magical Axolotl starts to gulp up your willpower!
The Magical Axolotl swells with spells, taunting you. \"Have you heard of my powers of regeneration? You'll tire before I do!\"
\"We can defeat you with the good habits we've built!\" @PainterProphet defiantly shouts. You steel yourself to be productive to defeat the Magical Axolotl and regain your stolen willpower!",
- "questAxolotlCompletion": "After defeating the Magical Axolotl, you realize that you regained your willpower all on your own.
\"The willpower? The regeneration? It was all just an illusion?\" @Kiwibot asks.
\"Most magic is,\" the Magical Axolotl replies. \"I'm sorry for tricking you. Please take these eggs as an apology. I trust you to raise them to use their magic for good habits and not evil!\"
You and @hazel40 clutch your new eggs in one hand and wave goodbye with the other as the Magical Axolotl returns to the lake.",
- "questAxolotlBoss": "Magical Axolotl",
- "questAxolotlDropAxolotlEgg": "Axolotl (Egg)",
- "questAxolotlUnlockText": "Unlocks purchasable Axolotl eggs in the Market",
- "questAxolotlRageTitle": "Axolotl Regeneration",
- "questAxolotlRageDescription": "This bar fills when you don't complete your Dailies. When it is full, the Magical Axolotl will heal 30% of its remaining health!",
- "questAxolotlRageEffect": "`Magical Axolotl uses AXOLOTL REGENERATION!`\n\n`A curtain of colorful bubbles obscures the monster for a moment, and when it clears, some of its wounds have vanished!`",
+ "questTreelingBoss": "Sumásangá-Sangáng Sigalót",
+ "questTreelingDropTreelingEgg": "Totoy na Kahoy (Itlóg)",
+ "questTreelingUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Totoy na Kahoy sa Pamilihan",
+ "questAxolotlText": "Ang Mahiwagang
Axolotl",
+ "questAxolotlNotes": "From the depths of Washed-Up Lake you see rising bubbles and... fire? A little axolotl rises from the murky water spewing streaks of colors. Suddenly it begins to open its mouth and @streak yells, \"Look out!\" as the Magical Axolotl starts to gulp up your willpower!
Ang Mahiwagang
Axolotl swells with spells, taunting you. \"Have you heard of my powers of regeneration? You'll tire before I do!\"
\"We can defeat you with the good habits we've built!\" @PainterProphet defiantly shouts. You steel yourself to be productive to defeat the Magical Axolotl and regain your stolen willpower!",
+ "questAxolotlCompletion": "Matapos matalo ang Mahiwagang
Axolotl, you realize that you regained your willpower all on your own.
\"The willpower? The regeneration? It was all just an illusion?\" @Kiwibot asks.
\"Most magic is,\" sagót ng Mahiwagang
Axolotl. \"I'm sorry for tricking you. Tanggapín mo ang mga itlóg na itó as an apology. I trust you to raise them to use their magic for good habits and not evil!\"
You and @hazel40 clutch your new eggs in one hand and wave goodbye with the other habang bumabalík ang Mahiwagang
Axolotl sa lawà.",
+ "questAxolotlBoss": "Mahiwagang
Axolotl",
+ "questAxolotlDropAxolotlEgg": "
Axolotl (Itlóg)",
+ "questAxolotlUnlockText": "Nagpapahintulot na makabilí ng itlóg ng
Axolotl sa Pamilihan",
+ "questAxolotlRageTitle": "Pagpápalít-Katawán ng
Axolotl",
+ "questAxolotlRageDescription": "This bar fills when you don't complete your Dailies. When it is full, ang Mahiwagang
Axolotl will heal 30% of its remaining health!",
+ "questAxolotlRageEffect": "`Gumamit ng PAGPÁPALÍT-KATAWÁN NG AXOLOTL ang Mahiwagang Axolotl!`\n\n`A curtain of colorful bubbles obscures the monster for a moment, and when it clears, some of its wounds have vanished!`",
"questTurtleText": "Guide the Turtle",
"questTurtleNotes": "Help! This giant sea turtle cannot find her way to her nesting beach. She returns there every year to lay her eggs, but this year Inkomplete Bay is filled with toxic Task Flotsam made of red dailies and unchecked to-dos. \"She's thrashing in a panic!\" @JessicaChase says.
@UncommonCriminal nods. \"It's because her guiding senses are fogged and confused.\"
@Scarabsi grabs your arm. \"Can you help clear the Task Flotsam blocking her path? It may be hazardous, but we have to help her!\"",
"questTurtleCompletion": "Your valiant work has cleared the waters for our sea turtle to find her beach. You, @Bambin, and @JaizakAripaik watch as she buries her brood of eggs deep in the sand so they can grow and hatch into hundreds of little sea turtles. Ever the lady, she gives you three eggs each, asking that you feed and nurture them so one day they become big sea turtles themselves.",
"questTurtleBoss": "Task Flotsam",
"questTurtleDropTurtleEgg": "Turtle (Egg)",
- "questTurtleUnlockText": "Unlocks purchasable Turtle eggs in the Market",
+ "questTurtleUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Pagóng sa Pamilihan",
"questArmadilloText": "The Indulgent Armadillo",
"questArmadilloNotes": "It's time to get outside and start your day. You swing open your door only to be met with what looks like a sheet of rock. \"I'm just giving you the day off!\" says a muffled voice through the blocked door. \"Don't be such a bummer, just relax today!\"
Suddenly, @Beffymaroo and @PainterProphet knock on your window. \"Looks like the Indulgent Armadillo has taken a liking to you! C'mon, we'll help you get her out of your way!\"",
"questArmadilloCompletion": "Finally, after a long morning of convincing the Indulgent Armadillo that you do, in fact, want to work, she caves. \"I'm sorry!\" She apologizes. \"I just wanted to help. I thought everyone liked lazy days!\"
You smile, and let her know that next time you've earned a day off you'll invite her over. She grins back at you. Passers-by @Tipsy and @krajzega congratulate you on the good work as she rolls away, leaving a few eggs as an apology.",
"questArmadilloBoss": "Indulgent Armadillo",
"questArmadilloDropArmadilloEgg": "Armadillo (Egg)",
- "questArmadilloUnlockText": "Unlocks purchasable Armadillo eggs in the Market",
+ "questArmadilloUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Tanggiling sa Pamilihan",
"questCowText": "The Mootant Cow",
"questCowNotes": "It’s been a long, hot day at Sparring Farms, and there is nothing more you want than a long sip of water and some sleep. You're standing there daydreaming when @Soloana suddenly screams, \"Everyone run! The prize cow has mootated!\"
@eevachu gulps. \"It must be our bad habits that infected it.\"
\"Quick!\" @Feralem Tau says. \"Let’s do something before the udder cows mootate, too.\"
You’ve herd enough. No more daydreaming -- it's time to get those bad habits under control!",
"questCowCompletion": "You milk your good habits for all they are worth until the cow reverts to its original form. The cow looks over at you with her pretty brown eyes and nudges over three eggs.
@fuzzytrees laughs and hands you the eggs, \"Maybe it still is mootated if there are baby cows in these eggs. But I trust you to stick to your good habits when you raise them!\"",
"questCowBoss": "Mootant Cow",
"questCowDropCowEgg": "Cow (Egg)",
- "questCowUnlockText": "Unlocks purchasable Cow eggs in the Market",
+ "questCowUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Baka sa Pamilihan",
"questBeetleText": "The CRITICAL BUG",
"questBeetleNotes": "Something in the domain of Habitica has gone awry. The Blacksmiths' forges have extinguished, and strange errors are appearing everywhere. With an ominous tremor, an insidious foe worms from the earth... a CRITICAL BUG! You brace yourself as it infects the land, and glitches begin to overtake the Habiticans around you. @starsystemic yells, \"We need to help the Blacksmiths get this Bug under control!\" It looks like you'll have to make this programmer's pest your top priority.",
"questBeetleCompletion": "With a final attack, you crush the CRITICAL BUG. @starsystemic and the Blacksmiths rush up to you, overjoyed. \"I can't thank you enough for smashing that bug! Here, take these.\" You are presented with three shiny beetle eggs. Hopefully these little bugs will grow up to help Habitica, not hurt it.",
"questBeetleBoss": "CRITICAL BUG",
"questBeetleDropBeetleEgg": "Beetle (Egg)",
- "questBeetleUnlockText": "Unlocks purchasable Beetle eggs in the Market",
+ "questBeetleUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Uwáng sa Pamilihan",
"questGroupTaskwoodsTerror": "Terror in the Taskwoods",
"questTaskwoodsTerror1Text": "Terror in the Taskwoods, Part 1: The Blaze in the Taskwoods",
"questTaskwoodsTerror1Notes": "You have never seen the Joyful Reaper so agitated. The ruler of the Flourishing Fields lands her skeleton gryphon mount right in the middle of Productivity Plaza and shouts without dismounting. \"Lovely Habiticans, we need your help! Something is starting fires in the Taskwoods, and we still haven't fully recovered from our battle against Burnout. If it's not halted, the flames could engulf all of our wild orchards and berry bushes!\"
You quickly volunteer, and hasten to the Taskwoods. As you creep into Habitica’s biggest fruit-bearing forest, you suddenly hear clanking and cracking voices from far ahead, and catch the faint smell of smoke. Soon enough, a horde of cackling, flaming skull-creatures flies by you, biting off branches and setting the treetops on fire!",
@@ -397,7 +397,7 @@
"questFerretCompletion": "You defeat the soft-furred swindler and @UncommonCriminal gives the crowd their refunds. There's even a little gold left over for you. Plus, it looks like the Nefarious Ferret dropped some eggs in his hurry to get away!",
"questFerretBoss": "Nefarious Ferret",
"questFerretDropFerretEgg": "Ferret (Egg)",
- "questFerretUnlockText": "Unlocks purchasable Ferret eggs in the Market",
+ "questFerretUnlockText": "Nagpapahintulot na makabilí ng itlóg ng
Ferret sa Pamilihan",
"questDustBunniesText": "The Feral Dust Bunnies",
"questDustBunniesNotes": "It's been a while since you've done any dusting in here, but you're not too worried—a little dust never hurt anyone, right? It's not until you stick your hand into one of the dustiest corners and feel something bite that you remember @InspectorCaracal's warning: leaving harmless dust sit too long causes it to turn into vicious dust bunnies! You'd better defeat them before they cover all of Habitica in fine particles of dirt!",
"questDustBunniesCompletion": "The dust bunnies vanish into a puff of... well, dust. As it clears, you look around. You'd forgotten how nice this place looks when it's clean. You spy a small pile of gold where the dust used to be. Huh, you'd been wondering where that was!",
@@ -418,18 +418,18 @@
"questMoon3Completion": "The emerging monster bursts into shadow, and the moon turns silver as the danger passes. The dragons start singing again, and the stars sparkle with a soothing light. @Starsystemic the Seer bends down and picks up a lunar shard. It shines silver in her hand, before changing into a magnificent crystal scythe.",
"questMoon3Boss": "Monstrous Moon",
"questMoon3DropWeapon": "Lunar Scythe (Two-Handed Weapon)",
- "questSlothText": "The Somnolent Sloth",
+ "questSlothText": "Ang Makuyad na Maantukin",
"questSlothNotes": "As you and your party venture through the Somnolent Snowforest, you're relieved to see a glimmering of green among the white snowdrifts... until an enormous sloth emerges from the frosty trees! Green emeralds shimmer hypnotically on its back.
\"Hello, adventurers... why don't you take it slow? You've been walking for a while... so why not... stop? Just lie down, and rest...\"
You feel your eyelids grow heavy, and you realize: It's the Somnolent Sloth! According to @JaizakAripaik, it got its name from the emeralds on its back which are rumored to... send people to... sleep...
You shake yourself awake, fighting drowsiness. In the nick of time, @awakebyjava and @PainterProphet begin to shout spells, forcing your party awake. \"Now's our chance!\" @Kiwibot yells.",
"questSlothCompletion": "You did it! As you defeat the Somnolent Sloth, its emeralds break off. \"Thank you for freeing me of my curse,\" says the sloth. \"I can finally sleep well, without those heavy emeralds on my back. Have these eggs as thanks, and you can have the emeralds too.\" The sloth gives you three sloth eggs and heads off for warmer climates.",
- "questSlothBoss": "Somnolent Sloth",
- "questSlothDropSlothEgg": "Sloth (Egg)",
- "questSlothUnlockText": "Unlocks purchasable Sloth eggs in the Market",
+ "questSlothBoss": "Makuyad na Maantukin",
+ "questSlothDropSlothEgg": "Makuyad (Itlóg)",
+ "questSlothUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Makuyad sa Pamilihan",
"questTriceratopsText": "The Trampling Triceratops",
"questTriceratopsNotes": "The snow-capped Stoïkalm Volcanoes are always bustling with hikers and sight-seers. One tourist, @plumilla, calls over a crowd. \"Look! I enchanted the ground to glow so that we can play field games on it for our outdoor activity Dailies!\" Sure enough, the ground is swirling with glowing red patterns. Even some of the prehistoric pets from the area come over to play.
Suddenly, there's a loud snap -- a curious Triceratops has stepped on @plumilla's wand! It's engulfed in a burst of magic energy, and the ground starts shaking and growing hot. The Triceratops' eyes shine red, and it roars and begins to stampede!
\"That's not good,\" calls @McCoyly, pointing in the distance. Each magic-fueled stomp is causing the volcanoes to erupt, and the glowing ground is turning to lava beneath the dinosaur's feet! Quickly, you must hold off the Trampling Triceratops until someone can reverse the spell!",
"questTriceratopsCompletion": "With quick thinking, you herd the creature towards the soothing Stoïkalm Steppes so that @*~Seraphina~* and @PainterProphet can reverse the lava spell without distraction. The calming aura of the Steppes takes effect, and the Triceratops curls up as the volcanoes go dormant once more. @PainterProphet passes you some eggs that were rescued from the lava. \"Without you, we wouldn't have been able to concentrate to stop the eruptions. Give these pets a good home.\"",
"questTriceratopsBoss": "Trampling Triceratops",
"questTriceratopsDropTriceratopsEgg": "Triceratops (Egg)",
- "questTriceratopsUnlockText": "Unlocks purchasable Triceratops eggs in the Market",
+ "questTriceratopsUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Trayserataps sa Pamilihan",
"questGroupStoikalmCalamity": "Stoïkalm Calamity",
"questStoikalmCalamity1Text": "Stoïkalm Calamity, Part 1: Earthen Enemies",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoïkalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!
Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
@@ -458,19 +458,19 @@
"questGuineaPigCompletion": "\"We submit!\" The Guinea Pig Gang Boss waves his paws at you, fluffy head hanging in shame. From underneath his hat falls a list, and @snazzyorange quickly swipes it for evidence. \"Wait a minute,\" you say. \"It's no wonder you've been getting hurt! You've got way too many Dailies. You don't need health potions -- you just need help organizing.\"
\"Really?\" squeaks the Guinea Pig Gang Boss. \"We've robbed so many people because of this! Please take our eggs as an apology for our crooked ways.\"",
"questGuineaPigBoss": "Guinea Pig Gang",
"questGuineaPigDropGuineaPigEgg": "Guinea Pig (Egg)",
- "questGuineaPigUnlockText": "Unlocks purchasable Guinea Pig eggs in the Market",
+ "questGuineaPigUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Kuy sa Pamilihan",
"questPeacockText": "The Push-and-Pull Peacock",
"questPeacockNotes": "You trek through the Taskwoods, wondering which of the enticing new goals you should pick. As you go deeper into the forest, you realize that you're not alone in your indecision. \"I could learn a new language, or go to the gym...\" @Cecily Perez mutters. \"I could sleep more,\" muses @Lilith of Alfheim, \"or spend time with my friends...\" It looks like @PainterProphet, @Pfeffernusse, and @Draayder are equally paralyzed by the overwhelming options.
You realize that these ever-more-demanding feelings aren't really your own... you've stumbled straight into the trap of the pernicious Push-and-Pull Peacock! Before you can run, it leaps from the bushes. With each head pulling you in conflicting directions, you start to feel burnout overcoming you. You can't defeat both foes at once, so you only have one option -- concentrate on the nearest task to fight back!",
"questPeacockCompletion": "The Push-and-Pull Peacock is caught off guard by your sudden conviction. Defeated by your single-minded drive, its heads merge back into one, revealing the most beautiful creature you've ever seen. \"Thank you,\" the peacock says. \"I’ve spent so long pulling myself in different directions that I lost sight of what I truly wanted. Please accept these eggs as a token of my gratitude.\"",
"questPeacockBoss": "Push-and-Pull Peacock",
"questPeacockDropPeacockEgg": "Peacock (Egg)",
- "questPeacockUnlockText": "Unlocks purchasable Peacock eggs in the Market",
+ "questPeacockUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Pabo Real sa Pamilihan",
"questButterflyText": "Bye, Bye, Butterfry",
"questButterflyNotes": "Your gardener friend @Megan sends you an invitation: “These warm days are the perfect time to visit Habitica’s butterfly garden in the Taskan countryside. Come see the butterflies migrate!” When you arrive, however, the garden is in shambles -- little more than scorched grass and dried-out weeds. It’s been so hot that the Habiticans haven’t come out to water the flowers, and the dark-red Dailies have turned it into a dry, sun-baked, fire-hazard. There's only one butterfly there, and there's something odd about it...
“Oh no! This is the perfect hatching ground for the Flaming Butterfry,” cries @Leephon.
“If we don’t catch it, it’ll destroy everything!” gasps @Eevachu.
Time to say bye, bye to Butterfry!",
"questButterflyCompletion": "After a blazing battle, the Flaming Butterfry is captured. “Great job catching the that would-be arsonist,” says @Megan with a sigh of relief. “Still, it’s hard to vilify even the vilest butterfly. We’d better free this Butterfry someplace safe…like the desert.”
One of the other gardeners, @Beffymaroo, comes up to you, singed but smiling. “Will you help raise these foundling chrysalises we found? Perhaps next year we’ll have a greener garden for them.”",
"questButterflyBoss": "Flaming Butterfry",
"questButterflyDropButterflyEgg": "Caterpillar (Egg)",
- "questButterflyUnlockText": "Unlocks purchasable Caterpillar eggs in the Market",
+ "questButterflyUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Uod sa Pamilihan",
"questGroupMayhemMistiflying": "Mayhem in Mistiflying",
"questMayhemMistiflying1Text": "Mayhem in Mistiflying, Part 1: In Which Mistiflying Experiences a Dreadful Bother",
"questMayhemMistiflying1Notes": "Although local soothsayers predicted pleasant weather, the afternoon is extremely breezy, so you gratefully follow your friend @Kiwibot into their house to escape the blustery day.
Neither of you expects to find the April Fool lounging at the kitchen table.
“Oh, hello,” he says. “Fancy seeing you here. Please, let me offer you some of this delicious tea.”
“That’s…” @Kiwibot begins. “That’s MY—“
“Yes, yes, of course,” says the April Fool, helping himself to some cookies. “Just thought I’d pop indoors and get a nice reprieve from all the tornado-summoning skulls.” He takes a casual sip from his teacup. “Incidentally, the city of Mistiflying is under attack.”
Horrified, you and your friends race to the Stables and saddle your fastest winged mounts. As you soar towards the floating city, you see that a swarm of chattering, flying skulls are laying siege to the city… and several turn their attentions towards you!",
@@ -503,7 +503,7 @@
"questNudibranchCompletion": "You see the last of the NowDo Nudibranches sliding off of a pile of completed tasks as @amadshade washes them away. One leaves behind a cloth bag, and you open it to reveal some gold and a few little ellipsoids you guess are eggs.",
"questNudibranchBoss": "NowDo Nudibranch",
"questNudibranchDropNudibranchEgg": "Nudibranch (Egg)",
- "questNudibranchUnlockText": "Unlocks purchasable Nudibranch eggs in the Market",
+ "questNudibranchUnlockText": "Nagpapahintulot na makabilí ng itlóg ng
Lintáng Dagat sa Pamilihan",
"splashyPalsText": "Splashy Pals Quest Bundle",
"splashyPalsNotes": "Contains 'The Dilatory Derby', 'Guide the Turtle', and 'Wail of the Whale'. Available until July 31.",
"questHippoText": "What a Hippo-Crite",
@@ -511,7 +511,7 @@
"questHippoCompletion": "The hippo bows in surrender. “I underestimated you. It seems you weren’t being lazy. My apologies. Truth be told, I may have been projecting a bit. Perhaps I should get some work done myself. Here, take these eggs as a sign of my gratitude.” Grabbing them, you settle down by the water, ready to relax at last.",
"questHippoBoss": "The Hippo-Crite",
"questHippoDropHippoEgg": "Hippo (Egg)",
- "questHippoUnlockText": "Unlocks purchasable Hippo eggs in the Market",
+ "questHippoUnlockText": "Nagpapahintulot na makabilí ng itlóg ng
Hippo sa Pamilihan",
"farmFriendsText": "Farm Friends Quest Bundle",
"farmFriendsNotes": "Contains 'The Mootant Cow', 'Ride the Night-Mare', and 'The Thunder Ram'. Available until September 30.",
"witchyFamiliarsText": "Witchy Familiars Quest Bundle",
@@ -557,21 +557,21 @@
"questYarnCompletion": "With a feeble swipe of a pin-riddled appendage and a weak roar, the Dread Yarnghetti finally unravels into a pile of yarn balls.
\"Take care of this yarn,\" shopkeeper @JinjooHat says, handing them to you. \"If you feed them and care for them properly, they'll grow into new and exciting projects that just might make your heart take flight…\"",
"questYarnBoss": "The Dread Yarnghetti",
"questYarnDropYarnEgg": "Yarn (Egg)",
- "questYarnUnlockText": "Unlocks purchasable Yarn eggs in the Market",
+ "questYarnUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Sinulid sa Pamilihan",
"winterQuestsText": "Winter Quest Bundle",
"winterQuestsNotes": "Contains 'Trapper Santa', 'Find the Cub', and 'The Fowl Frost'. Available until December 31.",
"questPterodactylText": "The Pterror-dactyl",
"questPterodactylNotes": "You're taking a stroll along the peaceful Stoïkalm Cliffs when an evil screech rends the air. You turn to find a hideous creature flying towards you and are overcome by a powerful terror. As you turn to flee, @Lilith of Alfheim grabs you. \"Don't panic! It's just a Pterror-dactyl.\"
@Procyon P nods. \"They nest nearby, but they're attracted to the scent of negative Habits and undone Dailies.\"
\"Don't worry,\" @Katy133 says. \"We just need to be extra productive to defeat it!\" You are filled with a renewed sense of purpose and turn to face your foe.",
"questPterodactylCompletion": "With one last screech the Pterror-dactyl plummets over the side of the cliff. You run forward to watch it soar away over the distant steppes. \"Phew, I'm glad that's over,\" you say. \"Me too,\" replies @GeraldThePixel. \"But look! It's left some eggs behind for us.\" @Edge passes you three eggs, and you vow to raise them in tranquility, surrounded by positive Habits and blue Dailies.",
"questPterodactylBoss": "Pterror-dactyl",
- "questPterodactylDropPterodactylEgg": "Pterodactyl (Egg)",
- "questPterodactylUnlockText": "Unlocks purchasable Pterodactyl eggs in the Market",
+ "questPterodactylDropPterodactylEgg": "Terodaktil (Itlóg)",
+ "questPterodactylUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Terodaktil sa Pamilihan",
"questBadgerText": "Stop Badgering Me!",
"questBadgerNotes": "Ah, winter in the Taskwoods. The softly falling snow, the branches sparkling with frost, the Flourishing Fairies… still not snoozing?
“Why are they still awake?” cries @LilithofAlfheim. “If they don't hibernate soon, they'll never have the energy for planting season.”
As you and @Willow the Witty hurry to investigate, a furry head pops up from the ground. Before you can yell, “It’s the Badgering Bother!” it’s back in its burrow—but not before snatching up the Fairies' “Hibernate” To-Dos and dropping a giant list of pesky tasks in their place!
“No wonder the fairies aren't resting, if they're constantly being badgered like that!” @plumilla says. Can you chase off this beast and save the Taskwood’s harvest this year?",
"questBadgerCompletion": "You finally drive away the the Badgering Bother and hurry into its burrow. At the end of a tunnel, you find its hoard of the faeries’ “Hibernate” To-Dos. The den is otherwise abandoned, except for three eggs that look ready to hatch.",
"questBadgerBoss": "The Badgering Bother",
"questBadgerDropBadgerEgg": "Badger (Egg)",
- "questBadgerUnlockText": "Unlocks purchasable Badger eggs in the Market",
+ "questBadgerUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Pantót sa Pamilihan",
"questDysheartenerText": "The Dysheartener",
"questDysheartenerNotes": "The sun is rising on Valentine’s Day when a shocking crash splinters the air. A blaze of sickly pink light lances through all the buildings, and bricks crumble as a deep crack rips through Habit City’s main street. An unearthly shrieking rises through the air, shattering windows as a hulking form slithers forth from the gaping earth.
Mandibles snap and a carapace glitters; legs upon legs unfurl in the air. The crowd begins to scream as the insectoid creature rears up, revealing itself to be none other than that cruelest of creatures: the fearsome Dysheartener itself. It howls in anticipation and lunges forward, hungering to gnaw on the hopes of hard-working Habiticans. With each rasping scrape of its spiny forelegs, you feel a vise of despair tightening in your chest.
“Take heart, everyone!” Lemoness shouts. “It probably thinks that we’re easy targets because so many of us have daunting New Year’s Resolutions, but it’s about to discover that Habiticans know how to stick to their goals!”
AnnDeLune raises her staff. “Let’s tackle our tasks and take this monster down!”",
"questDysheartenerCompletion": "
The Dysheartener is DEFEATED!Together, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”
Glowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigor and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.
The crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.
Our newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.
Beffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”
Crooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
@@ -600,23 +600,23 @@
"questSquirrelCompletion": "With a gentle approach, offers of trade, and a few soothing spells, you’re able to coax the squirrel away from its hoard and back to the stables, which @Shtut has just finished de-acorning. They’ve set aside a few of the acorns on a worktable. “These ones are squirrel eggs! Maybe you can raise some that don’t play with their food quite so much.”",
"questSquirrelBoss": "Sneaky Squirrel",
"questSquirrelDropSquirrelEgg": "Squirrel (Egg)",
- "questSquirrelUnlockText": "Unlocks purchasable Squirrel eggs in the Market",
+ "questSquirrelUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Bisíng sa Pamilihan",
"cuddleBuddiesText": "Cuddle Buddies Quest Bundle",
"cuddleBuddiesNotes": "Contains 'The Killer Bunny', 'The Nefarious Ferret', and 'The Guinea Pig Gang'. Available until May 31.",
"aquaticAmigosText": "Aquatic Amigos Quest Bundle",
- "aquaticAmigosNotes": "Contains 'The Magical Axolotl', 'The Kraken of Inkomplete', and 'The Call of Octothulu'. Available until June 30.",
+ "aquaticAmigosNotes": "Naglalamán ng 'Ang Mahiwagang
Axolotl', 'The Kraken of Inkomplete', at 'The Call of Octothulu'. Mabibilí hanggáng Hunyo a 30.",
"questSeaSerpentText": "Danger in the Depths: Sea Serpent Strike!",
"questSeaSerpentNotes": "Your streaks have you feeling lucky—it’s the perfect time for a trip to the seahorse racetrack. You board the submarine at Diligent Docks and settle in for the trip to Dilatory, but you’ve barely submerged when an impact rocks the sub, sending its occupants tumbling. “What’s going on?” @AriesFaries shouts.
You glance through a nearby porthole and are shocked by the wall of shimmering scales passing by it. “Sea serpent!” Captain @Witticaster calls through the intercom. “Brace yourselves, it’s coming ‘round again!” As you grip the arms of your seat, your unfinished tasks flash before your eyes. ‘Maybe if we work together and complete them,’ you think, ‘we can drive this monster away!’",
"questSeaSerpentCompletion": "Battered by your commitment, the sea serpent flees, disappearing into the depths. When you arrive in Dilatory, you breathe a sigh of relief before noticing @*~Seraphina~ approaching with three translucent eggs cradled in her arms. “Here, you should have these,” she says. “You know how to handle a sea serpent!” As you accept the eggs, you vow anew to remain steadfast in completing your tasks to ensure that there’s not a repeat occurrence.",
"questSeaSerpentBoss": "The Mighty Sea Serpent",
"questSeaSerpentDropSeaSerpentEgg": "Sea Serpent (Egg)",
- "questSeaSerpentUnlockText": "Unlocks purchasable Sea Serpent eggs in the Market",
+ "questSeaSerpentUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Bakunawa sa Pamilihan",
"questKangarooText": "Kangaroo Catastrophe",
"questKangarooNotes": "Maybe you should have finished that last task… you know, the one you keep avoiding, even though it always comes back around? But @Mewrose and @LilithofAlfheim invited you and @stefalupagus to see a rare kangaroo troop hopping through the Sloensteadi Savannah; how could you say no?! As the troop comes into view, something hits you on the back of the head with a mighty
whack!Shaking the stars from your vision, you pick up the responsible object--a dark red boomerang, with the very task you continually push back etched into its surface. A quick glance around confirms the rest of your party met a similar fate. One larger kangaroo looks at you with a smug grin, like she’s daring you to face her and that dreaded task once and for all!",
"questKangarooCompletion": "“NOW!” You signal your party to throw the boomerangs back at the kangaroo. The beast hops further away with each hit until she flees, leaving nothing more than a dark red cloud of dust, a few eggs, and some gold coins.
@Mewrose walks forward to where the kangaroo once stood. “Hey, where did the boomerangs go?”
“They probably dissolved into dust, making that dark red cloud, when we finished our respective tasks,” @stefalupagus speculates.
@LilithofAlfheim squints at the horizon. “Is that another kangaroo troop heading our way?”
You all break into a run back to Habit City. Better to face your difficult tasks than take another lump to the back of the head!",
"questKangarooBoss": "Catastrophic Kangaroo",
"questKangarooDropKangarooEgg": "Kangaroo (Egg)",
- "questKangarooUnlockText": "Unlocks purchasable Kangaroo eggs in the Market",
+ "questKangarooUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Kángaru sa Pamilihan",
"forestFriendsText": "Forest Friends Quest Bundle",
"forestFriendsNotes": "Contains 'The Spirit of Spring', 'The Hedgebeast', and 'The Tangle Tree'. Available until September 30.",
"questAlligatorText": "The Insta-Gator",
@@ -624,7 +624,7 @@
"questAlligatorCompletion": "With your attention focused on what’s important and not the Insta-Gator’s distractions, the Insta-Gator flees. Victory! “Are those eggs? They look like gator eggs to me,” asks @mfonda. “If we care for them correctly, they’ll be loyal pets or faithful steeds,” answers @UncommonCriminal, handing you three to care for. Let’s hope so, or else the Insta-Gator might make a return…",
"questAlligatorBoss": "Insta-Gator",
"questAlligatorDropAlligatorEgg": "Alligator (Egg)",
- "questAlligatorUnlockText": "Unlocks purchasable Alligator eggs in the Market",
+ "questAlligatorUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Buwaya sa Pamilihan",
"oddballsText": "Oddballs Quest Bundle",
"oddballsNotes": "Contains 'The Jelly Regent,' 'Escape the Cave Creature,' and 'A Tangled Yarn.' Available until December 3.",
"birdBuddiesText": "Bird Buddies Quest Bundle",
@@ -634,7 +634,23 @@
"questVelociraptorCompletion": "You burst through the grass, confronting the Veloci-Rapper.
See here, rapper, you’re no quitter,
You’re Bad Habits' hardest hitter!
Check off your To-Dos like a boss,
Don’t mourn over one day’s loss!Filled with renewed confidence, it bounds off to freestyle another day, leaving behind three eggs where it sat.",
"questVelociraptorBoss": "Veloci-Rapper",
"questVelociraptorDropVelociraptorEgg": "Velociraptor (Egg)",
- "questVelociraptorUnlockText": "Unlocks purchasable Velociraptor eggs in the Market",
+ "questVelociraptorUnlockText": "Nagpapahintulot na makabilí ng itlóg ng Belosiraptor sa Pamilihan",
"questBronzeText": "Mabilis na labanan sa Beetle",
- "evilSantaAddlNotes": "Tandaan na ang Trapper Santa at Hanapin ang Cub ay may mga nakatagong tagumpay sa paghahanap ngunit magbigay ng isang bihirang alaga at mount na maaari lamang madagdag sa iyong kuwadra nang isang beses."
+ "evilSantaAddlNotes": "Tandaan na ang Trapper Santa at Hanapin ang Cub ay may mga nakatagong tagumpay sa paghahanap ngunit magbigay ng isang bihirang alaga at mount na maaari lamang madagdag sa iyong kuwadra nang isang beses.",
+ "questBronzeUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Tinansuháng Alagà sa Pamilihan",
+ "questDolphinUnlockText": "Nagpapahintulot na makabilí ng Lumba-Lumba sa Pamilihan",
+ "questSilverUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Pinilakang Alagà sa Pamilihan",
+ "questAmberUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Ginawáng Batóng Dagtà na Alagà sa Pamilihan",
+ "questAmberText": "Anibang Batóng Dagtâ",
+ "questRubyUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Nirubiháng Alagà sa Pamilihan",
+ "questWaffleUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Ginawáng Minatamís na Alagà sa Pamilihan",
+ "questFluoriteUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Plinuoritang Alagà sa Pamilihan",
+ "questWindupUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Sinusiáng Alagà sa Pamilihan",
+ "questTurquoiseUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Tinurkesang Alagà sa Pamilihan",
+ "questBlackPearlUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Ginawáng Itím na Perlas na Alagà sa Pamilihan",
+ "questStoneUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Nilulumutang Bató na Alagà sa Pamilihan",
+ "questSolarSystemUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Sinangkaarawang Alagà sa Pamilihan",
+ "questOnyxUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Inoniksang Alagà sa Pamilihan",
+ "questVirtualPetUnlockText": "Nagpapahintulot na makabilí ng Pampapapisâ ng Alagang Katháng Katunayan sa Pamilihan",
+ "jungleBuddiesNotes": "Contains 'Monstrous Mandrill and the Mischief Monkeys', 'Ang Makuyad na Maantukin', and 'The Tangle Tree'. Mabibilí hanggáng <%= date %>."
}
diff --git a/website/common/locales/fil/subscriber.json b/website/common/locales/fil/subscriber.json
index 751f292d68..b2f4e55ff7 100755
--- a/website/common/locales/fil/subscriber.json
+++ b/website/common/locales/fil/subscriber.json
@@ -1,17 +1,17 @@
{
- "subscription": "Subscription",
- "subscriptions": "Subscriptions",
- "sendGems": "Send Gems",
- "buyGemsGold": "Buy Gems with Gold",
- "mustSubscribeToPurchaseGems": "Must subscribe to purchase gems with GP",
+ "subscription": "Abuloy",
+ "subscriptions": "Mga Abuloy",
+ "sendGems": "Magpadalá ng mga Hiyás",
+ "buyGemsGold": "Bumilí ng Hiyás gamit ang Gintô",
+ "mustSubscribeToPurchaseGems": "Kailangang mag-abuloy upang makabilí ng Hiyás gamit ang Gintô",
"reachedGoldToGemCap": "You've reached the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.",
- "reachedGoldToGemCapQuantity": "Ang hiniling mong bilang <%= quantity %> ay lagpas sa dami ng maaari mong bilhin ngayong buwan (<%= convCap %>). Ang buong bilang ay nag-rereset sa unang tatlong araw kada buwan. Salamat sa pag-subscribe!",
- "mysteryItem": "Exclusive monthly items",
- "mysteryItemText": "Each month you will receive a unique cosmetic item for your avatar! Plus, for every three months of consecutive subscription, the Mysterious Time Travelers will grant you access to historic (and futuristic!) cosmetic items.",
- "exclusiveJackalopePet": "Exclusive pet",
- "giftSubscription": "Gusto mo bang magregalo ng mga benepisyo ng subscription sa iba?",
- "giftSubscriptionText4": "Thanks for supporting Habitica!",
- "groupPlans": "Group Plans",
+ "reachedGoldToGemCapQuantity": "Lagpás sa dami na (<%= convCap %>), ang bilang na maaari mong bilhín sa buwán na itó, ang hinihilíng na bilang na <%= quantity %>. Bumabalík itó sa dating kabuuán sa loob ng unang tatlóng araw buwán-buwán. Salamat sa paghuhulugán ng bayad!",
+ "mysteryItem": "Mga natatanging kagamitán buwán-buwán",
+ "mysteryItemText": "Bawat buwán, makakatanggáp ka ng isáng natatanging kagamitán na nakapagpapagandá ng iyóng kinatawán! Higít pa, sa bawat tatlóng magkakasunód na buwánang pag-aabuloy, papayagan ka ng mga Mahihiwagang Manlalakbáy ng Panahón na makakamit ng mga makasaysayan (at pangkinabukasan!) na mga kagamitán.",
+ "exclusiveJackalopePet": "Natatanging alagà",
+ "giftSubscription": "Nais mo bang magkaloób o magbigáy ng mga napapakinabangan ng mga nag-aabuloy?",
+ "giftSubscriptionText4": "Salamat sa pagtulong sa Habitica!",
+ "groupPlans": "Mga Pamamaraán ng Pagbayad Ukol sa mga Pangkát",
"subscribe": "Subscribe",
"nowSubscribed": "You are now subscribed to Habitica!",
"cancelSub": "Cancel Subscription",
@@ -82,7 +82,7 @@
"mysterySet201804": "Spiffy Squirrel Set",
"mysterySet201805": "Phenomenal Peacock Set",
"mysterySet201806": "Alluring Anglerfish Set",
- "mysterySet201807": "Sea Serpent Set",
+ "mysterySet201807": "Kumpól ng Ahas-Dagat",
"mysterySet201808": "Lava Dragon Set",
"mysterySet201809": "Autumnal Armor Set",
"mysterySet201810": "Dark Forest Set",
@@ -133,14 +133,14 @@
"purchaseAll": "Purchase Set",
"gemsRemaining": "Mga natitirang hiyas",
"notEnoughGemsToBuy": "Hindi ka maaaring bumili ng ganoong halaga ng Hiyas",
- "viewSubscriptions": "Tignan ang Subscriptions",
+ "viewSubscriptions": "Tignán ang mga Abuloy",
"mysticHourglassNeededNoSub": "Kinakailangan ng Mystic Hourglass ang gamit na ito. Makakakuha ka ng mga Mystic Hourglass sa pagiging Habitica subscriber.",
"subWillBecomeInactive": "Hindi na magiging aktibo",
"confirmCancelSub": "Sigurado ka bang nais mong ikansela ang iyong subscription? Mawawala ang lahat ng benepisyo mo mula sa subscription.",
"cancelSubInfoApple": "Maaaring sundan ang
opisyal na panuto ng Apple upang makansela ang iyong subscription o para makita ang termination date ng iyong subscription kung nakansela mo na ito. Ang screen na ito ay hindi makapagpapakita kung nakansela mo na ang iyong subscription.",
"cancelSubInfoGoogle": "Maaaring pumunta sa \"Account\" > \"Subscriptions\" na bahagi ng Google Play Store app upang kanselahin ang iyong subscription o para makita ang termination date ng iyong subscription kung nakansela mo na ito. Ang screen na ito ay hindi makapagpapakita kung nakansela mo na ang iyong subscription.",
- "organization": "Organisasyon",
- "giftASubscription": "Magregalo ng Subscription",
+ "organization": "Samahán",
+ "giftASubscription": "Magkaloób ng Abuloy",
"mysterySet202010": "Nakalilinlang na Nakakabaliw Set",
"mysterySet202009": "Kamangha-Manghang Moth Set",
"mysterySet202008": "Ma-kuwagong Orakulo Set",
@@ -191,5 +191,9 @@
"youAreSubscribed": "Naka-subscribe ka sa Habitica",
"doubleDropCap": "Doblehin ang Drops",
"monthlyMysteryItems": "Buwanang Mystery Items",
- "subscribersReceiveBenefits": "Itong mga kapaki-pakinabang na benepisyo ay natatanggap ng subscribers!"
+ "subscribersReceiveBenefits": "Itong mga kapaki-pakinabang na benepisyo ay natatanggap ng subscribers!",
+ "needToPurchaseGems": "Kailangan mo bang bumilí ng ipamimigay na Hiyás?",
+ "wantToSendOwnGems": "Nais mo bang ipadalá ang mga Hiyás na mayroón ka?",
+ "howManyGemsPurchase": "Iiláng Hiyás ba ang nais mong bilhín?",
+ "howManyGemsSend": "Iiláng Hiyás ba ang nais mong ipadalá?"
}
diff --git a/website/common/locales/fil/tasks.json b/website/common/locales/fil/tasks.json
index 805ff5cc6a..f73b3fd1c6 100755
--- a/website/common/locales/fil/tasks.json
+++ b/website/common/locales/fil/tasks.json
@@ -33,7 +33,7 @@
"medium": "Medium",
"hard": "Mahirap Isagawâ",
"attributes": "Stats",
- "progress": "Progress",
+ "progress": "Katayuan",
"daily": "Pang-Araw-Araw",
"dailies": "Mga Pang-Araw-Araw",
"dailysDesc": "Madalás umuulit ang mga Pang-Araw-Araw. Piliin ang talatakdaán na pinakamainam para sa iyo!",
diff --git a/website/common/locales/fr/achievements.json b/website/common/locales/fr/achievements.json
index c541e389fe..8414a47c5b 100644
--- a/website/common/locales/fr/achievements.json
+++ b/website/common/locales/fr/achievements.json
@@ -135,5 +135,8 @@
"achievementReptacularRumbleModalText": "Vous avez collecté tous les familiers reptiles !",
"achievementGroupsBeta2022ModalText": "Vous et votre groupe avez aidé Habitica en testant et fournissant un retour de grande valeur !",
"achievementGroupsBeta2022": "Beta test interactif",
- "achievementGroupsBeta2022Text": "Vous et votre groupe avez fourni un retour de grande valeur pour aider aux tests d'Habitica."
+ "achievementGroupsBeta2022Text": "Vous et votre groupe avez fourni un retour de grande valeur pour aider aux tests d'Habitica.",
+ "achievementWoodlandWizardModalText": "Vous avez collecté tous les familiers de la forêt !",
+ "achievementWoodlandWizard": "Sorcellerie de sous-bois",
+ "achievementWoodlandWizardText": "A fait éclore toutes les créatures de la forêt de couleur basique : Blaireau, ours, cerf, renard, grenouille, hérisson, hiboux, escargot, écureuil et arbrisseau !"
}
diff --git a/website/common/locales/fr/backgrounds.json b/website/common/locales/fr/backgrounds.json
index e4dffc8f31..87c0138b4c 100644
--- a/website/common/locales/fr/backgrounds.json
+++ b/website/common/locales/fr/backgrounds.json
@@ -700,5 +700,26 @@
"backgroundEnchantedMusicRoomText": "Salle de musique enchantée",
"backgrounds052022": "Ensemble 96 : sorti en mai 2022",
"backgroundOnACastleWallText": "Sur le mur d'un château",
- "backgroundEnchantedMusicRoomNotes": "Jouez dans une salle de musique enchantée."
+ "backgroundEnchantedMusicRoomNotes": "Jouez dans une salle de musique enchantée.",
+ "backgrounds072022": "Ensemble 98 : sorti en juillet 2022",
+ "backgroundBioluminescentWavesText": "Vagues bioluminescentes",
+ "backgroundBioluminescentWavesNotes": "Admirez la lueur des vagues bioluminescentes.",
+ "backgroundUnderwaterCaveText": "Grotte sous-marine",
+ "backgroundUnderwaterCaveNotes": "Explorez une grotte sous-marine.",
+ "backgroundUnderwaterStatuesText": "Jardin de statues sous-marin",
+ "backgroundUnderwaterStatuesNotes": "Essayez de ne pas cligner des yeux dans un jardin de statues sous-marin.",
+ "backgrounds062022": "Ensemble 97 : sorti en juin 2022",
+ "backgroundBeachWithDunesText": "Plage avec des dunes",
+ "backgroundBeachWithDunesNotes": "Explorez une plage avec des dunes.",
+ "backgroundMountainWaterfallText": "Cascade en montagne",
+ "backgroundMountainWaterfallNotes": "Admirez une cascade en montagne.",
+ "backgroundSailboatAtSunsetText": "Voilier au coucher du soleil",
+ "backgroundSailboatAtSunsetNotes": "Appréciez la beauté d'un voilier au coucher du soleil.",
+ "backgroundRainbowEucalyptusText": "Eucalyptus arc-en-ciel",
+ "backgroundMessyRoomNotes": "Ranger une chambre en désordre.",
+ "backgrounds082022": "Ensemble 99 : sorti en août 2022",
+ "backgroundRainbowEucalyptusNotes": "Admirez une forêt d'eucalyptus arc-en-ciel.",
+ "backgroundByACampfireNotes": "Prélassez-vous à la lueur d'un feu de camp.",
+ "backgroundMessyRoomText": "Chambre en désordre",
+ "backgroundByACampfireText": "En bordure d'un feu de camp"
}
diff --git a/website/common/locales/fr/content.json b/website/common/locales/fr/content.json
index a5ebc22cd9..22f645f2ac 100644
--- a/website/common/locales/fr/content.json
+++ b/website/common/locales/fr/content.json
@@ -345,7 +345,7 @@
"questEggDolphinAdjective": "un frétillant",
"hatchingPotionSunshine": "Rayon de soleil",
"hatchingPotionBronze": "de bronze",
- "hatchingPotionWatery": "Aquatique",
+ "hatchingPotionWatery": "aqueux",
"hatchingPotionSilver": "d'argent",
"questEggRobotAdjective": "un futuriste",
"questEggRobotMountText": "Robot",
@@ -371,5 +371,6 @@
"hatchingPotionMoonglow": "lune de miel",
"hatchingPotionSolarSystem": "système solaire",
"hatchingPotionOnyx": "onyx",
- "hatchingPotionVirtualPet": "Familier virtuel"
+ "hatchingPotionVirtualPet": "Familier virtuel",
+ "hatchingPotionPorcelain": "porcelaine"
}
diff --git a/website/common/locales/fr/faq.json b/website/common/locales/fr/faq.json
index ed9fc66fb7..ebe8824f07 100644
--- a/website/common/locales/fr/faq.json
+++ b/website/common/locales/fr/faq.json
@@ -54,5 +54,7 @@
"webFaqAnswer12": "Les boss mondiaux sont des monstres spéciaux qui apparaissent dans la taverne. Tous les membres actifs combattent automatiquement le boss : leurs tâches et habiletés blesseront le boss comme d'habitude. Vous pouvez également participer à une quête normale en même temps. Vos tâches et habiletés seront pris en compte pour les deux boss : le boss mondial et le boss/quête de collection de votre équipe. Un boss mondial ne blessera jamais ni vous ni votre compte, de quelque manière que ce soit. Il a plutôt une barre de colère qui se remplit lorsque les membres d'Habitica manquent leurs quotidiennes. Si la barre se remplit, le boss mondial attaque l'un des personnages non-joueurs du site et son image changera. Pour en savoir plus, visitez la page [Boss Mondiaux précédents](https://habitica.fandom.com/fr/wiki/Boss_Mondiaux) du wiki.",
"iosFaqStillNeedHelp": "Si vous avez une question qui n'est pas dans cette liste ou dans la [FAQ du Wiki](https://habitica.fandom.com/fr/wiki/FAQ), venez la poser dans la taverne depuis Menu > Taverne ! Nous serions ravis de vous aider.",
"androidFaqStillNeedHelp": "Si vous avez une question qui n'est pas dans cette liste ni dans la [FAQ du Wiki](https://habitica.fandom.com/fr/wiki/FAQ), venez demander de l'aide dans la discussion de la taverne sous Menu > Taverne ! Nous serons heureux de vous aider.",
- "webFaqStillNeedHelp": "Si vous avez une question qui n'est traitée ni ici, ni dans la [FAQ du wiki](https://habitica.fandom.com/fr/wiki/FAQ), venez la poser dans la [guilde d'aide de Habitica](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a) ! Nous serons ravis de pouvoir vous aider."
+ "webFaqStillNeedHelp": "Si vous avez une question qui n'est traitée ni ici, ni dans la [FAQ du wiki](https://habitica.fandom.com/fr/wiki/FAQ), venez la poser dans la [guilde d'aide de Habitica](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a) ! Nous serons ravis de pouvoir vous aider.",
+ "webFaqAnswer13": "## Comment fonctionnent les plans de groupe ?\n\nUn [Plan de groupe](/group-plans) donne à votre équipe ou à votre guilde l'accès à un tableau de tâches partagé qui est similaire à votre tableau de tâches personnel ! C'est une expérience Habitica partagée où les tâches peuvent être créées et cochées par tous les membres du groupe.\n\nIl y a aussi des fonctions disponibles comme les rôles des membres, l'affichage du statut et l'attribution des tâches qui vous donnent une expérience plus contrôlée. [Visitez notre wiki](https://habitica.fandom.com/wiki/Group_Plans) pour en savoir plus sur les caractéristiques de nos plans de groupe !\n\n## Qui bénéficie d'un plan de groupe ?\n\nLes plans de groupe fonctionnent mieux lorsque vous avez une petite équipe de personnes qui veulent collaborer ensemble. Nous recommandons 2 à 5 membres.\n\nLes plans de groupe sont parfaits pour les familles, qu'il s'agisse d'un parent et d'un enfant ou de vous et d'un partenaire. Les objectifs, tâches ou responsabilités partagés sont faciles à suivre sur un seul tableau.\n\nLes plans de groupe peuvent également être utiles pour les équipes de collègues qui ont des objectifs communs, ou pour les managers qui souhaitent initier leurs employés à la ludification.\n\n## Conseils rapides pour l'utilisation des groupes\n\nVoici quelques conseils rapides pour vous aider à démarrer avec votre nouveau groupe. Nous vous donnerons plus de détails dans les sections suivantes :\n\n* Faites d'un membre un manager pour lui donner la possibilité de créer et de modifier des tâches.\n* Laissez les tâches non assignées si n'importe qui peut les accomplir et si elles ne doivent être effectuées qu'une seule fois.\n* Assignez une tâche à une personne pour s'assurer que personne d'autre ne puisse l'accomplir.\n* Assignez une tâche à plusieurs personnes si elles doivent toutes l'accomplir.\n* Vous pouvez afficher les tâches partagées sur votre tableau personnel pour ne rien manquer.\n* Vous êtes récompensé pour les tâches que vous accomplissez, même si elles sont assignées à plusieurs personnes.\n* Les récompenses pour l'achèvement des tâches ne sont pas partagées ou divisées entre les membres de l'équipe.\n* Utilisez la couleur des tâches sur le tableau de l'équipe pour évaluer le taux d'achèvement moyen des tâches.\n* Vérifiez régulièrement les tâches sur votre tableau d'équipe pour vous assurer qu'elles sont toujours pertinentes.\n* Manquer une quotidienne ne vous portera pas préjudice, ni à vous ni à votre équipe, mais la couleur de la tâche se dégradera.\n\n## Comment les autres membres du groupe peuvent-ils créer des tâches ?\n\nSeuls le chef de groupe et les managers peuvent créer des tâches. Si vous souhaitez qu'un membre du groupe puisse créer des tâches, vous devez le promouvoir en tant que manager en allant dans l'onglet Informations sur le groupe, en affichant la liste des membres et en cliquant sur l'icône représentant un point à côté de son nom.\n\n## Comment fonctionne l'attribution d'une tâche ?\n\nLes plans de groupe vous donnent la possibilité unique d'assigner des tâches aux autres membres du groupe. L'attribution d'une tâche est idéale pour déléguer. Si vous assignez une tâche à quelqu'un, les autres membres ne pourront pas la terminer.\n\nVous pouvez également assigner une tâche à plusieurs personnes si elle doit être réalisée par plus d'un membre. Par exemple, si tout le monde doit se brosser les dents, créez une tâche et attribuez-la à chaque membre du groupe. Ils pourront tous la cocher et obtenir leurs récompenses individuelles pour cette tâche. La tâche principale sera considérée comme terminée lorsque tout le monde l'aura cochée.\n\n## Comment fonctionnent les tâches non assignées ?\n\nLes tâches non assignées peuvent être accomplies par n'importe qui dans le groupe, alors laissez une tâche non assignée pour permettre à n'importe quel membre de l'équipe de l'accomplir. Par exemple, sortir la poubelle. La personne qui sort la poubelle peut cocher la tâche non assignée et elle apparaîtra comme terminée pour tout le monde.\n\n## Comment fonctionne la réinitialisation synchronisée des jours ?\n\nLes tâches partagées seront réinitialisées à la même heure pour tout le monde afin de maintenir la synchronisation du tableau des tâches partagées. Cette heure est visible sur le tableau des tâches partagées et est déterminée par l'heure de début de journée du chef de groupe. Étant donné que les tâches partagées se réinitialisent automatiquement, vous n'aurez pas l'occasion de terminer les tâches partagées non terminées de la veille lorsque vous vous présenterez le lendemain matin.\n\nLes tâches quotidiennes partagées ne feront pas de dégâts si elles sont manquées, mais leur couleur se dégradera pour aider à visualiser la progression. Nous ne voulons pas que l'expérience partagée soit négative !\n\n## Comment puis-je utiliser mon groupe sur les applications mobiles ?\n\nBien que les applications mobiles ne prennent pas encore en charge toutes les fonctionnalités des plans de groupe, vous pouvez toujours effectuer des tâches partagées à partir des applications iOS et Android. Sur la version navigateur d'Habitica, allez sur le tableau des tâches partagées de votre groupe et activez le bouton de copie des tâches. Maintenant, toutes les tâches partagées ouvertes et assignées s'afficheront sur votre tableau de tâches personnel sur toutes les plateformes.\n\n### Quelle est la différence entre les tâches partagées d'un groupe et les défis ?\n\nLes tableaux de tâches partagées d'un plan de groupe sont plus dynamiques que les défis, dans la mesure où ils peuvent être constamment mis à jour et faire l'objet d'interactions. Les défis sont parfaits si vous avez une série de tâches à envoyer à de nombreuses personnes.\n\nLes plans de groupe sont également une fonctionnalité payante, tandis que les défis sont accessibles gratuitement à tous.\n\nVous ne pouvez pas assigner de tâches spécifiques dans les défis, et les défis ne disposent pas d'une réinitialisation du jour partagé. En général, les défis offrent moins de contrôle et d'interaction directe.",
+ "faqQuestion13": "Qu'est ce qu'un plan de groupe ?"
}
diff --git a/website/common/locales/fr/gear.json b/website/common/locales/fr/gear.json
index 878bd36db0..253c373a61 100644
--- a/website/common/locales/fr/gear.json
+++ b/website/common/locales/fr/gear.json
@@ -2639,5 +2639,60 @@
"weaponArmoireYellowKiteText": "Cerf-volant jaune",
"weaponArmoireBlueKiteText": "Cerf-volant bleu",
"weaponArmoireYellowKiteNotes": "Faisant des sauts et des embardées, regarde ton joyeux cerf-volant s'envoler. Augmente tous les attributs de <%= attrs %> chaque. Armoire enchantée : ensemble cerf-volant (objet 5 de 5)",
- "weaponArmoirePinkKiteNotes": "Plonger, virevolter et s'envoler haut dans les airs, votre cerf-volant se démarque dans le ciel. Augmente tous les attributs de <%= attrs %> chaque. Armoire enchantée : Ensemble cerf-volant (objet 4 de 5)"
+ "weaponArmoirePinkKiteNotes": "Plonger, virevolter et s'envoler haut dans les airs, votre cerf-volant se démarque dans le ciel. Augmente tous les attributs de <%= attrs %> chaque. Armoire enchantée : Ensemble cerf-volant (objet 4 de 5)",
+ "weaponSpecialSummer2022RogueText": "Pince de crabe",
+ "weaponSpecialSummer2022WarriorText": "Cyclone tourbillonnant",
+ "weaponSpecialSummer2022MageText": "Bâton de raie manta",
+ "armorSpecialSummer2022WarriorText": "Armure de jet d'eau",
+ "armorSpecialSummer2022HealerText": "Queue de Pterophyllum",
+ "headSpecialSummer2022WarriorText": "Casque de jet d'eau",
+ "weaponSpecialSummer2022RogueNotes": "Si vous êtes dans le pétrin, n'hésitez pas à montrer ces griffes redoutables ! Augmente la force de <%= str %>. Équipement en édition limitée de l'été 2022.",
+ "armorArmoireFancyPirateSuitText": "Veste de pirate fantaisiste",
+ "weaponSpecialSummer2022HealerText": "Bulles bénéfiques",
+ "headSpecialSummer2022RogueText": "Casque de crabe",
+ "armorSpecialSummer2022RogueText": "Armure de crabe",
+ "headSpecialSummer2022MageText": "Casque de raie manta",
+ "armorSpecialSummer2022MageText": "Armure de raie manta",
+ "armorMystery202207Text": "Armure de gelée",
+ "headMystery202207Text": "Casque de gelée",
+ "weaponArmoirePushBroomText": "Balai-brosse",
+ "weaponArmoireFeatherDusterText": "Plumeau",
+ "headSpecialSummer2022HealerText": "Nageoires de Pterophyllum",
+ "weaponSpecialSummer2022WarriorNotes": "Ça tourne ! Ça change de direction ! Et ça apporte la tempête ! Augmente la force de <%= str %>. Équipement en édition limitée de l'été 2022.",
+ "weaponSpecialSummer2022MageNotes": "Purifiez l'eau par magie devant vous avec un mouvement de ce bâton. Augmente l'intelligence de <%= int %> et la perception de <%= per %>. Équipement en édition limitée de l'été 2022.",
+ "weaponSpecialSummer2022HealerNotes": "Ces bulles libèrent une magie régénératrice dans l'eau avec un pop satisfaisant ! Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'été 2022.",
+ "shieldSpecialSummer2022WarriorText": "Requin fougueux",
+ "headArmoireFancyPirateHatText": "Chapeau de pirate fantaisiste",
+ "shieldSpecialSummer2022HealerText": "Ondes correctives",
+ "headMystery202208Text": "Queue de cheval audacieuse",
+ "shieldArmoireTreasureMapText": "Carte au trésor",
+ "shieldArmoireDustpanText": "Balayette",
+ "eyewearMystery202208Text": "Yeux brillants",
+ "armorSpecialSummer2022WarriorNotes": "Préparez-vous à une bataille aquatique en vous entourant de cette colonne d'air et de brume virevoltante et tourbillonnante. Augmente la constitution de <%= con %>. Ensemble en édition limitée de l'été 2022.",
+ "weaponArmoireGreenKiteNotes": "Un cerf-volant plus surprenant que ceux que vous avez pu voir, avec ses teintes de jaune et de vert. Augmente toutes les stats de <%= attrs %> chacune. Armoire enchantée : ensemble de cerf-volant (objet 2 de 5)",
+ "weaponArmoireOrangeKiteNotes": "Avec des couleurs comme le lever de soleil et le coucher de soleil, voyons voir à quelle hauteur peut voler ce cerf-volant ! Augmente toutes les stats de <%= attrs %> chacune. Armoire enchantée : ensemble de cerf-volant (objet 3 de 5)",
+ "weaponArmoireBlueKiteNotes": "En naviguant haut dans le ciel bleu, quels exploits pouvez-vous faire faire à votre cerf-volant ? Augmente toutes les stats de <%= attrs %> chacune. Armoire enchantée : ensemble de cerf-volant (objet 1 de 5)",
+ "armorSpecialSummer2022RogueNotes": "Parfait pour une escapade décontractée sur la plage. Augmente la perception de <%= per %>. Ensemble en édition limitée de l'été 2022.",
+ "weaponArmoirePushBroomNotes": "Emportez cet outil de nettoyage dans vos aventures et soyez toujours en mesure de balayer un perron plein de suie ou de dégager les toiles d'araignées des coins. Augmente la force et l'intelligence de <%= attrs %> chacune. Armoire enchantée : Ensemble de matériel de nettoyage (objet 1 de 3)",
+ "weaponArmoireFeatherDusterNotes": "Laissez ces plumes fantaisistes voler sur tous vos vieux objets pour les faire briller comme s'ils étaient neufs. Faites juste attention à la poussière soulevée pour ne pas éternuer ! augmente la constitution et la perception de <%= attrs %> chacune. Armoire enchantée : Ensemble de matériel de nettoyage (objet 2 de 3)",
+ "armorSpecialSummer2022MageNotes": "En portant cette armure, vous glisserez facilement dans votre travail comme la raie manta glisse dans l'eau. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'été 2022.",
+ "headSpecialSummer2022RogueNotes": "Pas besoin de se serrer la pince, nous flottons librement au milieu des blagues de crustactées les plus chaudes de cet été. Augmente la perception de <%= per %>. Équipement en édition limitée de l'été 2022.",
+ "headSpecialSummer2022WarriorNotes": "Canalisez la puissance de l'eau pendant que vous vous recentrez au milieu de ce vortex intense. Augmente la force de <%= str %>. Équipement en édition limitée de l'été 2022.",
+ "armorArmoireFancyPirateSuitNotes": "Portez cette belle veste lorsque vous organisez la bibliothèque de votre navire ou que vous en discutez avec l'équipage. Augmente la constitution et l'intelligence de <%= attrs %> chacune. Armoire enchantée : ensemble d'audacieuse piraterie (objet 1 de 3).",
+ "headSpecialSummer2022MageNotes": "Protégez votre tête quand vous plongez dans vos tâches ou dans les eaux profondes. Augmente la perception de <%= per %>. Équipement en édition limitée de l'été 2022.",
+ "armorMystery202207Notes": "Cette armure vous donnera un air glamour et gélatineux. Ne confère aucun bonus. Équipement d'abonnement de Juillet 2022.",
+ "armorSpecialSummer2022HealerNotes": "Utilisez vos nageoires colorées pour vous déplacer sur le récif et aider ceux qui ont besoin de repos et de guérison. Augmente la constitution de <%= con %>. Équipement en édition limitée de l'été 2022.",
+ "headSpecialSummer2022HealerNotes": "Les poissons n'ont pas d'oreilles, vous dites ? Attendez que vous leur ayez raconté les dernières infos. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'été 2022.",
+ "shieldArmoireDustpanNotes": "Ayez cette pelle à poussière à portée de main chaque fois que vous faites le ménage. Grâce à un sort de disparition, vous n'aurez jamais à chercher une poubelle dans laquelle la vider. Augmente l'intelligence et la constitution de <%= attrs %> chacune. Armoire enchantée : ensemble de matériel de nettoyage (objet 3 de 3).",
+ "shieldSpecialSummer2022WarriorNotes": "Ça craque ! Ça mord ! Et ça ne s'arrête jamais, jamais ! Augmente la constitution de <%= con %> Équipement en édition limité de l'été 2022.",
+ "shieldSpecialSummer2022HealerNotes": "Envoyez de la magie réparatrice en douces ondulations à travers le récif. Augmente la constitution de <%= con %>. Équipement en édition limitée de l'été 2022.",
+ "shieldArmoireTreasureMapNotes": "Un X marque l'endroit ! Vous ne saurez jamais ce que vous allez trouver en suivant cette carte aux trésors bien pratique : de l'or, des joyaux, des reliques, ou peut-être une orange pétrifiée ? Augmente la force et l'intelligence de <%= attrs %> chacune. Armoire enchantée : ensemble de piraterie fantaisiste (objet 3 de 3).",
+ "headMystery202208Notes": "Amusez-vous à parader avec ces cheveux volumineux - ils servent aussi de fouet en cas de besoin ! Ne confère aucun bonus. Équipement d'abonnement d'août 2022.",
+ "eyewearMystery202208Notes": "Donnez à vos ennemis un faux sentiment de sécurité avec ces mignons petits voyants terrifiants. Ne confère aucun bonus. Équipement d'abonnement d'août 2022.",
+ "headMystery202207Notes": "Besoin d'un coup de main avec vos tâches ? Est ce que plusieurs douzaines de tentacules bioluminescentes feraient l'affaire ? Ne confère aucun bonus. Équipement d'abonnement de Juillet 2022.",
+ "headArmoireFancyPirateHatNotes": "Protégez-vous du soleil et des mouettes qui vous survolent pendant que vous buvez le thé sur le pont de votre bateau. Augmente la perception de <%= per %>. Armoire enchantée : ensemble de piraterie fantaisiste (objet 2 de 3).",
+ "weaponMystery202209Text": "Manuel de magie",
+ "weaponMystery202209Notes": "Ce livre vous guidera à travers votre parcours en apprentissage magique. Ne confère aucun bonus. Équipement d'abonnement de septembre 2022.",
+ "shieldMystery202209Text": "Pile de livre de magie",
+ "shieldMystery202209Notes": "Construire votre connaissance en magie nécessite beaucoup de lecture, mais vous avez la certitude d'apprécier votre apprentissage. Ne confère aucun bonus. Équipement d'abonnement de septembre 2022."
}
diff --git a/website/common/locales/fr/groups.json b/website/common/locales/fr/groups.json
index bc6b489175..de4693d3ac 100644
--- a/website/common/locales/fr/groups.json
+++ b/website/common/locales/fr/groups.json
@@ -162,11 +162,11 @@
"onlyCreatorOrAdminCanDeleteChat": "Vous n'êtes pas autorisé à supprimer ce message !",
"onlyGroupLeaderCanEditTasks": "Pas d'autorisation pour gérer les tâches !",
"onlyGroupTasksCanBeAssigned": "Seules les tâches de groupe peuvent être assignées",
- "assignedTo": "Attribuer à",
- "assignedToUser": "Attribué à
<%- userName %>",
- "assignedToMembers": "Attribué à
<%= userCount %> membres",
- "assignedToYouAndMembers": "Attribué à vous et à
<%= userCount %> membres",
- "youAreAssigned": "Vous est attribué",
+ "assignedTo": "Attribué à",
+ "assignedToUser": "Attribué :
<%- userName %>",
+ "assignedToMembers": "<%= userCount %> membres",
+ "assignedToYouAndMembers": "
Vous, <%= userCount %> membres",
+ "youAreAssigned": "Assigné :
vous",
"taskIsUnassigned": "Cette tâche n'est pas attribuée",
"confirmUnClaim": "Voulez-vous ne plus réclamer cette tâche ?",
"confirmNeedsWork": "Voulez-vous vraiment marquer cette tâche comme nécessitant du travail supplémentaire ?",
@@ -183,7 +183,7 @@
"removeClaim": "Enlever la demande",
"onlyGroupLeaderCanManageSubscription": "Seul le responsable du groupe peut gérer l'abonnement du groupe",
"yourTaskHasBeenApproved": "Votre tâche
<%- taskText %> a été approuvée.",
- "taskNeedsWork": "
<%- managerName %> a marqué
<%- taskText %> comme nécessitant du travail supplémentaire.",
+ "taskNeedsWork": "
<%- taskText %> a été décoché par
@<%- managerName %>. Votre récompense pour avoir réalisé cette tâche a été enlevée.",
"userHasRequestedTaskApproval": "
<%- user %> a demandé une approbation pour
<%- taskName %>",
"approve": "Approuver",
"approveTask": "Approuver la tâche",
@@ -355,11 +355,11 @@
"PMCanNotReply": "Vous ne pouvez pas répondre à cette conversation",
"newPartyPlaceholder": "Indiquez le nom de votre équipe.",
"claimRewards": "Demander les récompenses",
- "assignedDateAndUser": "Assigné par
@<%- username %> le
<%= date %>",
+ "assignedDateAndUser": "Assigné par @<%- username %> le <%= date %>",
"assignedDateOnly": "Assigné le
<%= date %>",
"managerNotes": "Notes de la personne responsable",
"thisTaskApproved": "Cette tâche a été approuvée",
- "chooseTeamMember": "Choisissez un membre de l'équipe",
+ "chooseTeamMember": "Recherchez un membre de l'équipe",
"unassigned": "Non assigné",
"bannedWordsAllowedDetail": "En activant cette option, l'utilisation de mots bannis sur cette guilde sera autorisée.",
"bannedWordsAllowed": "Autoriser les mots bannis",
@@ -379,5 +379,28 @@
"editGuild": "Modifier la guilde",
"editParty": "Modifier l'équipe",
"leaveGuild": "Quitter la guilde",
- "sendGiftTotal": "Total :"
+ "sendGiftTotal": "Total :",
+ "chatTemporarilyUnavailable": "La discussion est temporairement indisponible. Veuillez réessayer plus tard.",
+ "dayStart": "
Démarrage de la journée : <%= startTime %>",
+ "viewStatus": "État",
+ "youEmphasized": "
Vous",
+ "newGroupsWhatsNew": "Regardez ce qui a changé :",
+ "newGroupsBullet02": "Tout le monde peut valider une tâche non assignée",
+ "newGroupsBullet03": "Les tâches partagées se réinitialisent au même moment pour tout le monde, pour une meilleure collaboration",
+ "newGroupsBullet05": "Les tâches partagées dégraderont leur couleur si elles ne sont pas réalisées pour aider à voir le progrès",
+ "newGroupsBullet08": "Le responsable du groupe ou les gestionnaires peuvent rapidement ajouter des tâches en haut de la colonne des tâches",
+ "newGroupsBullet10": "L'état d'attribution détermine la condition de réalisation :",
+ "newGroupsBullet10a": "
Laissez une tâche non attribuée si n'importe quel membre peut la réaliser",
+ "newGroupsBullet10c": "
Assignez cette tâche à plusieurs membres si chacun doit la réaliser",
+ "newGroupsVisitFAQ": "Visitez la
FAQ depuis le menu d'aide pour plus d'informations.",
+ "assignTo": "Attribuer à",
+ "lastCompleted": "Terminé pour la dernière fois",
+ "newGroupsWelcome": "Bienvenu sur la nouvelle console des tâches partagées !",
+ "newGroupsBullet04": "Les quotidiennes partagées de provoqueront pas de dégâts lorsqu'elles seront ratées, ou n’apparaîtront dans le tableau des activités de la veille",
+ "newGroupsBullet06": "L'état de la tâche vous permet de voir rapidement qui a réalisé la tâche",
+ "newGroupsBullet07": "Choisissez la possibilité d'afficher ou non les tâches partagées sur votre console personnelle",
+ "newGroupsBullet09": "Une tâche partagée peut être décochée pour montrer qu'elle nécessite encore du travail",
+ "newGroupsBullet10b": "
Attribuez la tâche à un membre si seulement cette personne peut la réaliser",
+ "newGroupsEnjoy": "Nous espérons que vous apprécierez la nouvelle expérience des plans de groupe !",
+ "newGroupsBullet01": "Interagissez avec les tâches directement depuis la console des tâches partagées"
}
diff --git a/website/common/locales/fr/limited.json b/website/common/locales/fr/limited.json
index 578ed13428..f650eada4b 100644
--- a/website/common/locales/fr/limited.json
+++ b/website/common/locales/fr/limited.json
@@ -131,13 +131,13 @@
"winter2019WinterStarSet": "Étoile de l'hiver (Guérisseur)",
"winter2019PoinsettiaSet": "Poinsettia (Voleur)",
"eventAvailability": "Disponible à l'achat jusqu'au <%= date(locale) %>.",
- "dateEndMarch": "30 avril",
- "dateEndApril": "19 avril",
+ "dateEndMarch": "31 mars",
+ "dateEndApril": "30 avril",
"dateEndMay": "31 mai",
- "dateEndJune": "14 juin",
+ "dateEndJune": "30 juin",
"dateEndJuly": "31 juillet",
"dateEndAugust": "31 août",
- "dateEndSeptember": "21 septembre",
+ "dateEndSeptember": "30 septembre",
"dateEndOctober": "31 octobre",
"dateEndNovember": "30 novembre",
"dateEndJanuary": "31 janvier",
@@ -221,5 +221,13 @@
"spring2022RainstormWarriorSet": "Flot diluvien (Guerrier)",
"spring2022ForsythiaMageSet": "Forsythia (Mage)",
"spring2022PeridotHealerSet": "Péridot (Guérisseur)",
- "aprilYYYY": "Avril <%= year %>"
+ "aprilYYYY": "Avril <%= year %>",
+ "summer2022CrabRogueSet": "Crabe (Voleur)",
+ "summer2022MantaRayMageSet": "Raie Manta (Mage)",
+ "summer2022AngelfishHealerSet": "Poisson-ange (Guérisseur)",
+ "dateEndDecember": "31 décembre",
+ "februaryYYYY": "Février <%= year %>",
+ "octoberYYYY": "Octobre <%= year %>",
+ "summer2022WaterspoutWarriorSet": "Trombe marine (Guerrier)",
+ "julyYYYY": "Juillet <%= year %>"
}
diff --git a/website/common/locales/fr/npc.json b/website/common/locales/fr/npc.json
index 6932fa811c..224000a2a1 100644
--- a/website/common/locales/fr/npc.json
+++ b/website/common/locales/fr/npc.json
@@ -17,9 +17,9 @@
"mattBochText1": "Bienvenue à l'écurie ! Je suis Matt, le Maître des bêtes. Chaque fois que vous complétez une tâche, vous avez une chance d'obtenir un œuf ou une potion d'éclosion pour faire éclore un familier. Lorsque vous faites éclore un œuf de familier, il apparaît ici ! Cliquez sur l'image d'un familier pour qu'il rejoigne votre avatar. Donnez à vos familiers la nourriture que vous trouvez, et ils deviendront de puissantes montures.",
"welcomeToTavern": "Bienvenue dans la taverne !",
"sleepDescription": "Besoin d'une pause ? Prenez une chambre à l'auberge de Daniel pour mettre en veille les aspects d'Habitica les plus complexes :",
- "sleepBullet1": "Les tâches quotidiennes non validées ne feront plus de dommages",
- "sleepBullet2": "Les combos ne seront pas interrompus",
- "sleepBullet3": "Les boss ne vous infligeront pas de dégâts pour vos tâches quotidiennes manquées",
+ "sleepBullet1": "Vos tâches quotidiennes non validées ne feront plus de dommages (Les boss continueront de faire des dégâts causés par les quotidiennes ratées des autres membres)",
+ "sleepBullet2": "Les combos et les compteurs d'habitudes ne seront pas réinitialisés",
+ "sleepBullet3": "Vos dégâts aux boss de quêtes ou les objets collecté resteront en attente jusqu'à votre sortie de l'auberge",
"sleepBullet4": "Les dommages aux boss et la collecte des objets de quête resteront en instance jusqu'à votre départ de l'auberge",
"pauseDailies": "Désactiver les dégâts",
"unpauseDailies": "Activer les dégâts",
diff --git a/website/common/locales/fr/questscontent.json b/website/common/locales/fr/questscontent.json
index 826a1cb79a..1767b35ab0 100644
--- a/website/common/locales/fr/questscontent.json
+++ b/website/common/locales/fr/questscontent.json
@@ -60,7 +60,7 @@
"questSpiderUnlockText": "Déverrouille l'achat d’œufs d'araignée au marché",
"questGroupVice": "Vice la vouivre des ténèbres",
"questVice1Text": "Vice, 1re partie : libérez-vous de l'influence du dragon",
- "questVice1Notes": "
On dit que repose un mal terrible dans les cavernes du Mont Habitica. Un monstre dont la présence écrase la volonté des héros les plus déterminés de la contrée, les poussant aux mauvaises habitudes et à la paresse ! La bête est un grand dragon, aux pouvoirs immenses, et constitué des ténèbres elles-mêmes : Vice, la perfide vouivre de l'ombre. Braves Habiticiens et Habiticiennes, levez-vous et terrassez cette ignoble bête une fois pour toutes, mais seulement si vous pensez pouvoir affronter son immense pouvoir.
Vice, 1ère partie :
Comment pourriez-vous vaincre une bête qui a déjà le contrôle sur vous ? Alors ne succombez pas à la paresse et au vice ! Travaillez dur pour contrer l'influence noire du dragon et dissiper son emprise sur vous !
",
+ "questVice1Notes": "On dit que repose un mal terrible dans les cavernes du Mont Habitica. Un monstre dont la présence écrase la volonté des héros les plus déterminés de la contrée, les poussant aux mauvaises habitudes et à la paresse ! La bête est un grand dragon, aux pouvoirs immenses, et constitué des ténèbres elles-mêmes : Vice, la perfide vouivre de l'ombre. Braves Habiticiens et Habiticiennes, levez-vous et terrassez cette ignoble bête une fois pour toutes, mais seulement si vous pensez pouvoir affronter son immense pouvoir.
Comment pourriez-vous vaincre une bête qui a déjà le contrôle sur vous ? Alors ne succombez pas à la paresse et au vice ! Travaillez dur pour contrer l'influence noire du dragon et dissiper son emprise sur vous !",
"questVice1Boss": "Ombre de Vice",
"questVice1Completion": "Une fois l'emprise de Vice dissipée, vous sentez revenir une force que vous ne pensiez pas avoir en vous. Félicitations ! Mais un ennemi encore plus terrifiant vous attend...",
"questVice1DropVice2Quest": "Vice, 2e partie (Parchemin)",
diff --git a/website/common/locales/fr/settings.json b/website/common/locales/fr/settings.json
index bcbf809e6f..d8e1fa2dbd 100644
--- a/website/common/locales/fr/settings.json
+++ b/website/common/locales/fr/settings.json
@@ -215,5 +215,9 @@
"nextHourglass": "Prochain sablier",
"nextHourglassDescription": "Les abonnés reçoivent des sabliers mystiques\nlors des trois premiers jours de chaque mois.",
"dayStartAdjustment": "Ajustement de début de journée",
- "adjustment": "Ajustement"
+ "adjustment": "Ajustement",
+ "passwordSuccess": "Mot de passe changé avec succès",
+ "giftSubscriptionRateText": "
$<%= price %> USD pour
<%= months %> mois",
+ "transaction_admin_update_balance": "Administration donnée",
+ "transaction_create_bank_challenge": "Banque de défi créée"
}
diff --git a/website/common/locales/fr/spells.json b/website/common/locales/fr/spells.json
index 8e4232e3f0..92cb44b21d 100644
--- a/website/common/locales/fr/spells.json
+++ b/website/common/locales/fr/spells.json
@@ -19,12 +19,12 @@
"spellRoguePickPocketText": "Pickpocket",
"spellRoguePickPocketNotes": "Vous volez une tâche proche et gagnez de l'or ! (Basé sur : perception)",
"spellRogueBackStabText": "Attaque sournoise",
- "spellRogueBackStabNotes": "Vous abandonnez une tâche ridicule et gagnez de l'or et de l'expérience ! (Basé sur : force)",
- "spellRogueToolsOfTradeText": "Outils de travail",
+ "spellRogueBackStabNotes": "Vous trahissez une tâche ridicule et gagnez de l'or et de l'expérience ! (Basé sur : force)",
+ "spellRogueToolsOfTradeText": "Ficelles du métier",
"spellRogueToolsOfTradeNotes": "Votre ruse augmente la perception de toute l'équipe ! (Basé sur : perception sans bonus)",
"spellRogueStealthText": "Furtivité",
"spellRogueStealthNotes": "À chaque exécution de ce sort, quelques-unes de vos tâches quotidiennes non réalisées d'ici cette nuit n'infligeront pas de dégâts. Leur combo et leur couleur ne changeront pas. (Basé sur : PER)",
- "spellRogueStealthDaliesAvoided": "<%= originalText %> Nombre de quotidiennes qui seront évitées : <%= number %>.",
+ "spellRogueStealthDaliesAvoided": "<%= originalText %> Nombre de tâches quotidiennes qui seront évitées : <%= number %>.",
"spellRogueStealthMaxedOut": "Vous avez déjà évité toutes vos quotidiennes ; nul besoin d'utiliser cette compétence à nouveau.",
"spellHealerHealText": "Lumière de guérison",
"spellHealerHealNotes": "Une lumière éblouissante vous soigne ! (Basé sur : constitution et intelligence)",
diff --git a/website/common/locales/fr/subscriber.json b/website/common/locales/fr/subscriber.json
index 10c0f73f17..3d5bf7102b 100644
--- a/website/common/locales/fr/subscriber.json
+++ b/website/common/locales/fr/subscriber.json
@@ -210,5 +210,8 @@
"wantToSendOwnGems": "Vous voulez envoyer vos propres gemmes ?",
"sendAGift": "Envoyer un cadeau",
"howManyGemsPurchase": "Combien de gemmes souhaitez-vous acheter ?",
- "mysterySet202206": "Ensemble de lutine maritime"
+ "mysterySet202206": "Ensemble de lutine maritime",
+ "mysterySet202207": "Ensemble de méduse mélomane",
+ "mysterySet202208": "Ensemble de queue de cheval audacieuse",
+ "mysterySet202209": "Ensemble d'étude de magie"
}
diff --git a/website/common/locales/fr/tasks.json b/website/common/locales/fr/tasks.json
index 18424a64eb..54e997ea30 100644
--- a/website/common/locales/fr/tasks.json
+++ b/website/common/locales/fr/tasks.json
@@ -139,5 +139,6 @@
"resetCounter": "Réinitialiser le compteur",
"adjustCounter": "Ajuster le compteur",
"counter": "Compteur",
- "editTagsText": "Modifier les étiquettes"
+ "editTagsText": "Modifier les étiquettes",
+ "taskSummary": "Résumé pour les <%= type %>"
}
diff --git a/website/common/locales/gl/achievements.json b/website/common/locales/gl/achievements.json
index ed5b16ee34..1b49b362e6 100755
--- a/website/common/locales/gl/achievements.json
+++ b/website/common/locales/gl/achievements.json
@@ -1,8 +1,8 @@
{
"achievement": "Logro",
"onwards": "Adiante!",
- "levelup": "By accomplishing your real life goals, you leveled up and are now fully healed!",
- "reachedLevel": "You Reached Level <%= level %>",
+ "levelup": "",
+ "reachedLevel": "",
"achievementLostMasterclasser": "Quest Completionist: Masterclasser Series",
"achievementLostMasterclasserText": "Completed all sixteen quests in the Masterclasser Quest Series and solved the mystery of the Lost Masterclasser!",
"showAllAchievements": "Mostrar Todo de <%= category %>",
@@ -16,5 +16,6 @@
"yourProgress": "O teu Progreso",
"onboardingProgress": "<%= percentage %> % progreso",
"gettingStartedDesc": "¡Completa as tarefas de iniciación e conseguirás
5 Logros e
100 Pezas de Oro cando as termines!",
- "yourRewards": "As túas Recompensas"
+ "yourRewards": "As túas Recompensas",
+ "achievementDomesticated": "Ía, ía, oh"
}
diff --git a/website/common/locales/gl/backgrounds.json b/website/common/locales/gl/backgrounds.json
index efe855be77..0ee569968a 100755
--- a/website/common/locales/gl/backgrounds.json
+++ b/website/common/locales/gl/backgrounds.json
@@ -1,9 +1,9 @@
{
"backgrounds": "Fondos",
- "background": "Background",
- "backgroundShop": "Background Shop",
+ "background": "Fondo",
+ "backgroundShop": "Tenda de fondos",
"backgroundShopText": "Background Shop",
- "noBackground": "No Background Selected",
+ "noBackground": "Non se seleccionou ningún fondo",
"backgrounds062014": "LOTE 1: Saída en xuño de 2014",
"backgroundBeachText": "Praia",
"backgroundBeachNotes": "Reláxate nunha praia quentiña.",
@@ -215,17 +215,17 @@
"backgroundWindyAutumnText": "Windy Autumn",
"backgroundWindyAutumnNotes": "Chase leaves during a Windy Autumn.",
"incentiveBackgrounds": "Plain Background Set",
- "backgroundVioletText": "Violet",
+ "backgroundVioletText": "Violeta",
"backgroundVioletNotes": "A vibrant violet backdrop.",
- "backgroundBlueText": "Blue",
+ "backgroundBlueText": "Azul",
"backgroundBlueNotes": "A basic blue backdrop.",
"backgroundGreenText": "Green",
"backgroundGreenNotes": "A great green backdrop.",
- "backgroundPurpleText": "Purple",
+ "backgroundPurpleText": "Púrpura",
"backgroundPurpleNotes": "A pleasant purple backdrop.",
"backgroundRedText": "Red",
"backgroundRedNotes": "A rad red backdrop.",
- "backgroundYellowText": "Yellow",
+ "backgroundYellowText": "Amarelo",
"backgroundYellowNotes": "A yummy yellow backdrop.",
"backgrounds122016": "SET 31: Released December 2016",
"backgroundShimmeringIcePrismText": "Shimmering Ice Prisms",
@@ -235,7 +235,7 @@
"backgroundWinterStorefrontText": "Winter Shop",
"backgroundWinterStorefrontNotes": "Purchase presents from a Winter Shop.",
"backgrounds012017": "SET 32: Released January 2017",
- "backgroundBlizzardText": "Blizzard",
+ "backgroundBlizzardText": "Xistra",
"backgroundBlizzardNotes": "Brave a fierce Blizzard.",
"backgroundSparklingSnowflakeText": "Sparkling Snowflake",
"backgroundSparklingSnowflakeNotes": "Glide on a Sparkling Snowflake.",
@@ -274,7 +274,7 @@
"backgroundBuriedTreasureNotes": "Unearth Buried Treasure.",
"backgroundOceanSunriseText": "Ocean Sunrise",
"backgroundOceanSunriseNotes": "Admire an Ocean Sunrise.",
- "backgroundSandcastleText": "Sandcastle",
+ "backgroundSandcastleText": "Castelo de area",
"backgroundSandcastleNotes": "Rule over a Sandcastle.",
"backgrounds072017": "SET 38: Released July 2017",
"backgroundGiantSeashellText": "Giant Seashell",
@@ -321,7 +321,7 @@
"backgrounds012018": "SET 44: Released January 2018",
"backgroundAuroraText": "Aurora",
"backgroundAuroraNotes": "Bask in the wintry glow of an Aurora.",
- "backgroundDrivingASleighText": "Sleigh",
+ "backgroundDrivingASleighText": "Zorra",
"backgroundDrivingASleighNotes": "Drive a Sleigh over snow-covered fields.",
"backgroundFlyingOverIcySteppesText": "Icy Steppes",
"backgroundFlyingOverIcySteppesNotes": "Fly over Icy Steppes.",
@@ -354,9 +354,9 @@
"backgroundChampionsColosseumText": "Champions' Colosseum",
"backgroundChampionsColosseumNotes": "Bask in the glory of the Champions' Colosseum.",
"backgrounds062018": "SET 49: Released June 2018",
- "backgroundDocksText": "Docks",
+ "backgroundDocksText": "Doca",
"backgroundDocksNotes": "Fish from atop the Docks.",
- "backgroundRowboatText": "Rowboat",
+ "backgroundRowboatText": "Bote a remo",
"backgroundRowboatNotes": "Sing rounds in a Rowboat.",
"backgroundPirateFlagText": "Pirate Flag",
"backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.",
@@ -372,7 +372,7 @@
"backgroundTrainingGroundsNotes": "Spar on the Training Grounds.",
"backgroundFlyingOverRockyCanyonText": "Rocky Canyon",
"backgroundFlyingOverRockyCanyonNotes": "Look down into a breathtaking scene as you fly over a Rocky Canyon.",
- "backgroundBridgeText": "Bridge",
+ "backgroundBridgeText": "Ponte",
"backgroundBridgeNotes": "Cross a charming Bridge.",
"backgrounds092018": "SET 52: Released September 2018",
"backgroundApplePickingText": "Apple Picking",
@@ -386,7 +386,7 @@
"backgroundBayouNotes": "Bask in the fireflies' glow on the misty Bayou.",
"backgroundCreepyCastleText": "Creepy Castle",
"backgroundCreepyCastleNotes": "Dare to approach a Creepy Castle.",
- "backgroundDungeonText": "Dungeon",
+ "backgroundDungeonText": "Alxube",
"backgroundDungeonNotes": "Rescue the prisoners of a spooky Dungeon.",
"backgrounds112018": "SET 54: Released November 2018",
"backgroundBackAlleyText": "Back Alley",
@@ -403,10 +403,20 @@
"backgroundSnowyDayFireplaceText": "Snowy Day Fireplace",
"backgroundSnowyDayFireplaceNotes": "Snuggle up next to a Fireplace on a Snowy Day.",
"backgrounds012019": "SET 56: Released January 2019",
- "backgroundAvalancheText": "Avalanche",
+ "backgroundAvalancheText": "Alude",
"backgroundAvalancheNotes": "Flee the thundering might of an Avalanche.",
"backgroundArchaeologicalDigText": "Archaeological Dig",
"backgroundArchaeologicalDigNotes": "Unearth secrets of the ancient past at an Archaeological Dig.",
"backgroundScribesWorkshopText": "Scribe's Workshop",
- "backgroundScribesWorkshopNotes": "Write your next great scroll in a Scribe's Workshop."
-}
\ No newline at end of file
+ "backgroundScribesWorkshopNotes": "Write your next great scroll in a Scribe's Workshop.",
+ "hideLockedBackgrounds": "Agochar os fondos bloqueados",
+ "backgroundInAClassroomText": "Aula",
+ "backgroundSteamworksText": "Vaporaría",
+ "backgroundWindmillsText": "Muíños de vento",
+ "backgroundDojoText": "Dojo",
+ "backgroundVineyardText": "Viña",
+ "backgroundTreehouseText": "Casa árbore",
+ "backgroundSnowglobeText": "Bóla de neve",
+ "backgroundAirshipText": "Dirixíbel",
+ "backgroundClotheslineText": "Tendal"
+}
diff --git a/website/common/locales/gl/challenge.json b/website/common/locales/gl/challenge.json
index 69939faeb3..2d4ab72caa 100755
--- a/website/common/locales/gl/challenge.json
+++ b/website/common/locales/gl/challenge.json
@@ -77,30 +77,30 @@
"deleteChallenge": "Borrar Desafío",
"challengeNamePlaceholder": "¿Cal é o nome do teu Desafío?",
"challengeSummary": "Resumo",
- "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": "Escribe unha breve descrición para promover o teu desafío entre o resto de habitantes de Habitica. Cal é o propósito principal e por que debería unirse a xente? Procura incluír palabras clave útiles na descrición, para que a xente de Habitica poda atopalo facilmente ao buscar!",
+ "challengeDescriptionPlaceholder": "Usa esta sección para dar máis detalles sobre o que a xente que participe debe saber sobre o desafío.",
"challengeGuild": "Add to",
- "challengeMinimum": "Minimum 1 Gem for public Challenges (helps prevent spam, it really does).",
- "participantsTitle": "Participants",
- "shortName": "Short Name",
- "shortNamePlaceholder": "What short tag should be used to identify your Challenge?",
+ "challengeMinimum": "Mínimo de 1 xema para os desafíos públicos (axuda a evitar o spam, de verdade).",
+ "participantsTitle": "Participantes",
+ "shortName": "Nome curto",
+ "shortNamePlaceholder": "Que etiqueta curta usar para identificar o teu desafío?",
"updateChallenge": "Update Challenge",
- "haveNoChallenges": "This group has no Challenges",
- "loadMore": "Load More",
+ "haveNoChallenges": "Este grupo non ten desafíos",
+ "loadMore": "Cargar máis",
"exportChallengeCsv": "Export Challenge",
- "editingChallenge": "Editing Challenge",
- "nameRequired": "Name is required",
- "tagTooShort": "Tag name is too short",
- "summaryRequired": "Summary is required",
- "summaryTooLong": "Summary is too long",
- "descriptionRequired": "Description is required",
- "locationRequired": "Location of challenge is required ('Add to')",
- "categoiresRequired": "One or more categories must be selected",
+ "editingChallenge": "Editando o desafío",
+ "nameRequired": "O nome é necesario",
+ "tagTooShort": "O nome da etiqueta é curto de máis",
+ "summaryRequired": "O resumo é necesario",
+ "summaryTooLong": "O resumo é longo de máis",
+ "descriptionRequired": "A descrición é necesaria",
+ "locationRequired": "O lugar do desafío é necesario («Engadir a»)",
+ "categoiresRequired": "Debes seleccionar 1 ou máis categorías",
"viewProgressOf": "View Progress Of",
"viewProgress": "View Progress",
- "selectMember": "Select Member",
- "confirmKeepChallengeTasks": "Do you want to keep challenge tasks?",
- "selectParticipant": "Select a Participant",
+ "selectMember": "Seleccionar da membresía",
+ "confirmKeepChallengeTasks": "Queres manter as tarefas do desafío?",
+ "selectParticipant": "Selecciona entre quen participa",
"yourReward": "A túa Recompensa",
"wonChallengeDesc": "¡<%= challengeName %> elixiute como ganador! A túa vitoria rexistrouse nos teus Logros.",
"filters": "Filtros",
diff --git a/website/common/locales/gl/character.json b/website/common/locales/gl/character.json
index 4ea45fee59..3804c1a1d5 100755
--- a/website/common/locales/gl/character.json
+++ b/website/common/locales/gl/character.json
@@ -1,13 +1,13 @@
{
- "communityGuidelinesWarning": "Please keep in mind that your Display Name, profile photo, and blurb must comply with the
Community Guidelines (e.g. no profanity, no adult topics, no insults, etc). If you have any questions about whether or not something is appropriate, feel free to email <%= hrefBlankCommunityManagerEmail %>!",
+ "communityGuidelinesWarning": "",
"profile": "Perfil",
"avatar": "Personalizar Avatar",
- "editAvatar": "Edit Avatar",
- "noDescription": "This Habitican hasn't added a description.",
+ "editAvatar": "Editar o avatar",
+ "noDescription": "",
"noPhoto": "This Habitican hasn't added a photo.",
"other": "Outros",
"fullName": "Nome real",
- "displayName": "Display name",
+ "displayName": "Nome público",
"changeDisplayName": "Change Display Name",
"newDisplayName": "New Display Name",
"displayBlurbPlaceholder": "Preséntate, por favor",
@@ -18,17 +18,17 @@
"lvl": "Nvl",
"buffed": "A tope",
"bodyBody": "Corpo",
- "size": "Size",
+ "size": "Tamaño",
"locked": "bloqueado",
"shirts": "Camisetas",
- "shirt": "Shirt",
+ "shirt": "Camisa",
"specialShirts": "Camisetas especiais",
- "skin": "Skin",
+ "skin": "Pel",
"color": "Cor",
- "hair": "Hair",
- "bangs": "Bangs",
+ "hair": "Pelo",
+ "bangs": "Floco",
"hairBangs": "Franxa",
- "glasses": "Glasses",
+ "glasses": "Lentes",
"hairSet1": "Lote de Peiteados 1",
"hairSet2": "Lote de Peiteados 2",
"hairSet3": "Hairstyle Set 3",
@@ -36,8 +36,8 @@
"beard": "Barba",
"mustache": "Bigote",
"flower": "Flor",
- "accent": "Accent",
- "headband": "Headband",
+ "accent": "Complemento",
+ "headband": "Diadema",
"wheelchair": "Cadeira de rodas",
"extra": "Extra",
"rainbowSkins": "Peles arcoiris",
@@ -45,7 +45,7 @@
"spookySkins": "Peles terroríficas",
"supernaturalSkins": "Peles supernaturais",
"splashySkins": "Peles ostentosas",
- "winterySkins": "Wintery Skins",
+ "winterySkins": "Peles de inverno",
"rainbowColors": "Cores arcoiris",
"shimmerColors": "Cores brillantes",
"hauntedColors": "Cores Enmeigadas",
@@ -54,7 +54,7 @@
"equipmentBonus": "Equipamento",
"classEquipBonus": "Bonus de Clase",
"battleGear": "Material de batalla",
- "gear": "Gear",
+ "gear": "Equipamento",
"autoEquipBattleGear": "Equipar automaticamente novo material",
"costume": "Disfraz",
"useCostume": "Usar Disfraz",
@@ -103,16 +103,16 @@
"characterBuild": "Construír Personaxe",
"class": "Clase",
"experience": "Experiencia",
- "warrior": "Guerreir@",
+ "warrior": "Pugnaz",
"healer": "Curandeir@",
- "rogue": "Ladrón",
+ "rogue": "Renarte",
"mage": "Mago",
- "wizard": "Mage",
+ "wizard": "Meigo",
"mystery": "Misterio",
"changeClass": "Change Class, Refund Stat Points",
"lvl10ChangeClass": "Para cambiar de clase tes que ser polo menos de nivel 10.",
"changeClassConfirmCost": "Are you sure you want to change your class for 3 Gems?",
- "invalidClass": "Invalid class. Please specify 'warrior', 'rogue', 'wizard', or 'healer'.",
+ "invalidClass": "Clase incorrecta. Escolla entre «pugnaz», «renarte», «mago» ou «sandador».",
"levelPopover": "Each level earns you one Point to assign to a Stat of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options.",
"unallocated": "Unallocated Stat Points",
"autoAllocation": "Distribución automática",
@@ -125,15 +125,15 @@
"taskAllocationPop": "Assigns Points based on the Strength, Intelligence, Constitution, and Perception categories associated with the tasks you complete.",
"distributePoints": "Distribuír Puntos non asignados",
"distributePointsPop": "Assigns all unallocated Stat Points according to the selected allocation scheme.",
- "warriorText": "Os Guerreiros marcan máis \"golpes críticos\" e mellores. Estes \"golpes críticos\" aportan aleatoriamente Ouro, Experiencia, e a probabilidade de atopar obxectos ao completar unha tarefa. Tamén inflixen moitas feridas aos monstros. Escolle o Guerreiro se estás motivad@ por recompensas impredicibles (como un jackpot) ou queres repartir castañas nas Misións con monstros.",
+ "warriorText": "A xente pugnaz causa máis e mellores «golpes críticos», que ás veces conceden ouro, experiencia, e a probabilidade de atopar obxectos ao completar unha tarefa. Tamén inflixen moitas feridas aos monstros xefe. Escolle pugnaz se te motivan as recompensas sorpresa ou se queres repartir castañas nas misións contra xefes.",
"wizardText": "Mages learn swiftly, gaining Experience and Levels faster than other classes. They also get a great deal of Mana for using special abilities. Play a Mage if you enjoy the tactical game aspects of Habitica, or if you are strongly motivated by leveling up and unlocking advanced features!",
"mageText": "Mages learn swiftly, gaining Experience and Levels faster than other classes. They also get a great deal of Mana for using special abilities. Play a Mage if you enjoy the tactical game aspects of Habitica, or if you are strongly motivated by leveling up and unlocking advanced features!",
- "rogueText": "Aos Ladróns encántalles acumular riquezas; gañan máis Ouro que calquera outr@, e atopan obxectos ao azar con facilidade. A súa icónica capacidade de disimulo permítelles evitar as consecuencias de tarefas Diarias incompletas. Escolle o Ladrón se estás motivad@ polas Recompensas e os Logros, e loitas polo botín e polas insignias!",
+ "rogueText": "É de renarte acumular riquezas; gañan máis ouro que ninguén, e atopan obxectos ao azar con facilidade. A súa icónica capacidade de disimulo permítelles evitar as consecuencias de tarefas diarias incompletas. Escolle renarte se te motivan as recompensas e os logros, e loitas polo botín e polas insignias!",
"healerText": "Os Curandeiros permanecen inmunes ante o perigo, e extenden a súa protección a outros. As tarefas Diarias incompletas e os malos Hábitos non lles afectan moito, e teñen maneiras de recuperaren Saúde cando fallan. Escolle o Curandeiro se gozas de axudar a outros no teu Equipo, ou se te inspira a idea de engañar a Morte traballando duro!",
"optOutOfClasses": "Retirarse",
"chooseClass": "Choose your Class",
"chooseClassLearnMarkdown": "[Learn more about Habitica's class system](http://habitica.wikia.com/wiki/Class_System)",
- "optOutOfClassesText": "Can't be bothered with classes? Want to choose later? Opt out - you'll be a warrior with no special abilities. You can read about the class system later on the wiki and enable classes at any time under User Icon > Settings.",
+ "optOutOfClassesText": "",
"selectClass": "Select <%= heroClass %>",
"select": "Seleccionar",
"stealth": "Discreción",
@@ -156,8 +156,8 @@
"lostMana": "You used some Mana",
"lostHealth": "You lost some Health",
"lostExperience": "You lost some Experience",
- "equip": "Equip",
- "unequip": "Unequip",
+ "equip": "Equipar",
+ "unequip": "Quitar",
"animalSkins": "Peles de animais",
"str": "FOR",
"con": "CON",
@@ -166,10 +166,10 @@
"notEnoughAttrPoints": "You don't have enough Stat Points.",
"classNotSelected": "You must select Class before you can assign Stat Points.",
"style": "Style",
- "facialhair": "Facial",
- "photo": "Photo",
+ "facialhair": "Barba",
+ "photo": "Foto",
"info": "Info",
- "joined": "Joined",
+ "joined": "Uniuse",
"totalLogins": "Total Check Ins",
"latestCheckin": "Latest Check In",
"editProfile": "Edit Profile",
@@ -178,8 +178,8 @@
"headAccess": "Head Access.",
"backAccess": "Back Access.",
"bodyAccess": "Body Access.",
- "mainHand": "Main-Hand",
- "offHand": "Off-Hand",
+ "mainHand": "Man dominante",
+ "offHand": "Man non dominante",
"statPoints": "Stat Points",
- "pts": "pts"
+ "pts": "puntos"
}
diff --git a/website/common/locales/gl/communityguidelines.json b/website/common/locales/gl/communityguidelines.json
index 31b1c266e1..35d6088c6d 100755
--- a/website/common/locales/gl/communityguidelines.json
+++ b/website/common/locales/gl/communityguidelines.json
@@ -1,14 +1,13 @@
{
-
- "tavernCommunityGuidelinesPlaceholder": "Friendly reminder: this is an all-ages chat, so please keep content and language appropriate! Consult the Community Guidelines in the sidebar if you have questions.",
- "lastUpdated": "Last updated:",
+ "tavernCommunityGuidelinesPlaceholder": "",
+ "lastUpdated": "Última actualización:",
"commGuideHeadingWelcome": "Benvid@ a Habitica!",
- "commGuidePara001": "Greetings, adventurer! Welcome to Habitica, the land of productivity, healthy living, and the occasional rampaging gryphon. We have a cheerful community full of helpful people supporting each other on their way to self-improvement. To fit in, all it takes is a positive attitude, a respectful manner, and the understanding that everyone has different skills and limitations -- including you! Habiticans are patient with one another and try to help whenever they can.",
- "commGuidePara002": "To help keep everyone safe, happy, and productive in the community, we do have some guidelines. We have carefully crafted them to make them as friendly and easy-to-read as possible. Please take the time to read them before you start chatting.",
- "commGuidePara003": "Estas regras aplícanse a todos os espazos sociais que usamos, incluídos (pero non exclusivamente) Trello, GitHub, Transifex e a Wikia (ou Wiki). Algunhas veces xurdirán situacións imprevistas, como unha nova fonte de conflito ou un despiadado nigromante. Cando isto ocorra, os moderadores poderán responder editando estas normas para manter a comunidade a salvo de novas ameazas. Non temas: un anuncio de Bailey notificarate se as normas cambian.",
+ "commGuidePara001": "",
+ "commGuidePara002": "",
+ "commGuidePara003": "Estas regras aplícanse a todos os espazos sociais que usamos, incluídos (pero non exclusivamente) Trello, GitHub, Weblate, e o Wiki de Habitica en Fandom. A medida que as comunidades medran e cambian, as súas regras poden adaptarse de vez en cando. Cando se producen cambios significativos nestas directrices, anunciarémolo mediante Bailey ou nas nosas redes sociais!",
"commGuideHeadingInteractions": "Interactions in Habitica",
- "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, Party chat, and Private Messages. All Display Names must comply with the public space guidelines. To change your Display Name, go on the website to User > Profile and click on the \"Edit\" button.",
- "commGuidePara016": "Ao navigar nos espazos públicos de Habitica, hai algunhas regras xerais para manter a todos a salvo e felices. Deberían ser fáciles para @s aventureir@s coma ti!",
+ "commGuidePara015": "Habitica ten dous tipos de espazos sociais: os públicos e os privados. Entre os espazos públicos están a taberna, os gremios públicos, GitHub, Trello, e o wiki. Os espazos privados son os gremios privados, a conversa de grupo, e as mensaxes privadas. Todos os nomes públicos e os @alcumes deben cumprir as directrices de espazos públicos. Para cambiar o teu nome público ou o teu alcume, vai a «Menú → Configuración → Perfil» desde unha das aplicacións móbiles ou a «Eu → Configuración» desde a aplicación web.",
+ "commGuidePara016": "Ao navegar polos espazos públicos de Habitica, hai algunhas regras xerais para manter á xente segura e contenta.",
"commGuideList02A": "
Respect each other. Be courteous, kind, friendly, and helpful. Remember: Habiticans come from all backgrounds and have had wildly divergent experiences. This is part of what makes Habitica so cool! Building a community means respecting and celebrating our differences as well as our similarities. Here are some easy ways to respect each other:",
"commGuideList02B": "
Obey all of the Terms and Conditions.",
"commGuideList02C": "
Do not post images or text that are violent, threatening, or sexually explicit/suggestive, or that promote discrimination, bigotry, racism, sexism, hatred, harassment or harm against any individual or group. Not even as a joke. This includes slurs as well as statements. Not everyone has the same sense of humor, and so something that you consider a joke may be hurtful to another. Attack your Dailies, not each other.",
@@ -103,7 +102,7 @@
"commGuideOnGitHub": "<%= gitHubName %> on GitHub",
"commGuidePara010": "Tamén hai varios Moderadores que axudan aos membros do persoal. Seleccionáronse coidadosamente, así que por favor respéctaos e escoita as súas suxerencias.",
"commGuidePara011": "Os Moderadores actuais son (de esquerda a dereita):",
- "commGuidePara011b": "en GitHub/Wikia",
+ "commGuidePara011b": "en GitHub ou Fandom",
"commGuidePara011c": "en Wikia",
"commGuidePara011d": "en GitHub",
"commGuidePara012": "If you have an issue or concern about a particular Mod, please send an email to our Staff (
admin@habitica.com).",
diff --git a/website/common/locales/gl/content.json b/website/common/locales/gl/content.json
index 9f4464b190..4b16edb103 100755
--- a/website/common/locales/gl/content.json
+++ b/website/common/locales/gl/content.json
@@ -26,8 +26,8 @@
"dropEggDragonText": "Dragón",
"dropEggDragonMountText": "Dragón",
"dropEggDragonAdjective": "un poderoso",
- "dropEggCactusText": "Cactus",
- "dropEggCactusMountText": "Cactus",
+ "dropEggCactusText": "Cacto",
+ "dropEggCactusMountText": "Cacto",
"dropEggCactusAdjective": "un espiñoso",
"dropEggBearCubText": "Cachorro de Oso",
"dropEggBearCubMountText": "Oso",
@@ -142,37 +142,37 @@
"questEggSlothAdjective": "un veloz",
"questEggTriceratopsText": "Triceratops",
"questEggTriceratopsMountText": "Triceratops",
- "questEggTriceratopsAdjective": "a tricky",
- "questEggGuineaPigText": "Guinea Pig",
- "questEggGuineaPigMountText": "Guinea Pig",
- "questEggGuineaPigAdjective": "a giddy",
- "questEggPeacockText": "Peacock",
- "questEggPeacockMountText": "Peacock",
- "questEggPeacockAdjective": "a prancing",
- "questEggButterflyText": "Caterpillar",
- "questEggButterflyMountText": "Butterfly",
- "questEggButterflyAdjective": "a cute",
- "questEggNudibranchText": "Nudibranch",
- "questEggNudibranchMountText": "Nudibranch",
- "questEggNudibranchAdjective": "a nifty",
- "questEggHippoText": "Hippo",
- "questEggHippoMountText": "Hippo",
- "questEggHippoAdjective": "a happy",
- "questEggYarnText": "Yarn",
- "questEggYarnMountText": "Flying Carpet",
- "questEggYarnAdjective": "woolen",
- "questEggPterodactylText": "Pterodactyl",
- "questEggPterodactylMountText": "Pterodactyl",
- "questEggPterodactylAdjective": "a trusting",
- "questEggBadgerText": "Badger",
+ "questEggTriceratopsAdjective": "un traizoeiro",
+ "questEggGuineaPigText": "Cobaia",
+ "questEggGuineaPigMountText": "Cobaia",
+ "questEggGuineaPigAdjective": "unha cómica",
+ "questEggPeacockText": "Pavón",
+ "questEggPeacockMountText": "Pavón",
+ "questEggPeacockAdjective": "un pávido",
+ "questEggButterflyText": "Eiruga",
+ "questEggButterflyMountText": "Bolboreta",
+ "questEggButterflyAdjective": "unha bonita",
+ "questEggNudibranchText": "Lesma de mar",
+ "questEggNudibranchMountText": "Lesma de mar",
+ "questEggNudibranchAdjective": "unha linda",
+ "questEggHippoText": "Hipopótamo",
+ "questEggHippoMountText": "Hipopótamo",
+ "questEggHippoAdjective": "un hilarante",
+ "questEggYarnText": "Fío",
+ "questEggYarnMountText": "Alfombra máxica",
+ "questEggYarnAdjective": "de la",
+ "questEggPterodactylText": "Pterodáctilo",
+ "questEggPterodactylMountText": "Pterodáctilo",
+ "questEggPterodactylAdjective": "un terso",
+ "questEggBadgerText": "Teixugo",
"questEggBadgerMountText": "Teixugo",
- "questEggBadgerAdjective": "a bustling",
- "questEggSquirrelText": "Squirrel",
- "questEggSquirrelMountText": "Squirrel",
- "questEggSquirrelAdjective": "a bushy-tailed",
- "questEggSeaSerpentText": "Sea Serpent",
- "questEggSeaSerpentMountText": "Sea Serpent",
- "questEggSeaSerpentAdjective": "a shimmering",
+ "questEggBadgerAdjective": "un teimudo",
+ "questEggSquirrelText": "Esquío",
+ "questEggSquirrelMountText": "Esquío",
+ "questEggSquirrelAdjective": "un esquivo",
+ "questEggSeaSerpentText": "Serpe mariña",
+ "questEggSeaSerpentMountText": "Serpe mariña",
+ "questEggSeaSerpentAdjective": "unha serpeante",
"questEggKangarooText": "Canguro",
"questEggKangarooMountText": "Canguro",
"questEggKangarooAdjective": "afervoado",
@@ -196,59 +196,59 @@
"hatchingPotionSpooky": "Horripilante",
"hatchingPotionPeppermint": "de Menta",
"hatchingPotionFloral": "Floral",
- "hatchingPotionAquatic": "Aquatic",
- "hatchingPotionEmber": "Ember",
+ "hatchingPotionAquatic": "Acuática",
+ "hatchingPotionEmber": "Ardente",
"hatchingPotionThunderstorm": "Tormenta de Tronos",
"hatchingPotionGhost": "Pantasma",
- "hatchingPotionRoyalPurple": "Royal Purple",
- "hatchingPotionHolly": "Holly",
- "hatchingPotionCupid": "Cupid",
- "hatchingPotionShimmer": "Shimmer",
- "hatchingPotionFairy": "Fairy",
- "hatchingPotionStarryNight": "Starry Night",
- "hatchingPotionRainbow": "Rainbow",
+ "hatchingPotionRoyalPurple": "Púrpura real",
+ "hatchingPotionHolly": "Acivro",
+ "hatchingPotionCupid": "Cupido",
+ "hatchingPotionShimmer": "Relucente",
+ "hatchingPotionFairy": "Fada",
+ "hatchingPotionStarryNight": "Noite estrelada",
+ "hatchingPotionRainbow": "Arco da vella",
"hatchingPotionGlass": "Cristal",
- "hatchingPotionGlow": "Glow-in-the-Dark",
- "hatchingPotionFrost": "Frost",
- "hatchingPotionIcySnow": "Icy Snow",
+ "hatchingPotionGlow": "Fluorescente",
+ "hatchingPotionFrost": "Xeada",
+ "hatchingPotionIcySnow": "Neve xeada",
"hatchingPotionNotes": "Vértea nun ovo e eclosionará para dar a mascota seguinte: <%= potText(locale) %>.",
"premiumPotionAddlNotes": "Non se pode usar nos ovos de mascota de misión.",
"foodMeat": "Carne",
- "foodMeatThe": "the Meat",
- "foodMeatA": "Meat",
+ "foodMeatThe": "a carne",
+ "foodMeatA": "Carne",
"foodMilk": "Leite",
- "foodMilkThe": "the Milk",
- "foodMilkA": "Milk",
+ "foodMilkThe": "o leite",
+ "foodMilkA": "Leite",
"foodPotatoe": "Pataca",
- "foodPotatoeThe": "the Potato",
- "foodPotatoeA": "a Potato",
+ "foodPotatoeThe": "a patata",
+ "foodPotatoeA": "unha patata",
"foodStrawberry": "Fresa",
- "foodStrawberryThe": "the Strawberry",
- "foodStrawberryA": "a Strawberry",
+ "foodStrawberryThe": "o amorodo",
+ "foodStrawberryA": "un amorodo",
"foodChocolate": "Chocolate",
- "foodChocolateThe": "the Chocolate",
+ "foodChocolateThe": "o chocolate",
"foodChocolateA": "Chocolate",
"foodFish": "Peixe",
- "foodFishThe": "the Fish",
- "foodFishA": "a Fish",
+ "foodFishThe": "o peixe",
+ "foodFishA": "un peixe",
"foodRottenMeat": "Carne Podre",
- "foodRottenMeatThe": "the Rotten Meat",
- "foodRottenMeatA": "Rotten Meat",
+ "foodRottenMeatThe": "a carne podre",
+ "foodRottenMeatA": "carne podre",
"foodCottonCandyPink": "Algodón de Azucre rosa",
"foodCottonCandyPinkThe": "the Pink Cotton Candy",
- "foodCottonCandyPinkA": "Pink Cotton Candy",
+ "foodCottonCandyPinkA": "un caramelo de algodón de azucre rosa",
"foodCottonCandyBlue": "Algodón de Azucre azul",
"foodCottonCandyBlueThe": "the Blue Cotton Candy",
- "foodCottonCandyBlueA": "Blue Cotton Candy",
+ "foodCottonCandyBlueA": "un caramelo de algodón de azucre azul",
"foodHoney": "Mel",
- "foodHoneyThe": "the Honey",
- "foodHoneyA": "Honey",
+ "foodHoneyThe": "o mel",
+ "foodHoneyA": "Mel",
"foodCakeSkeleton": "Pastel de Ósos Nus",
"foodCakeSkeletonThe": "the Bare Bones Cake",
"foodCakeSkeletonA": "a Bare Bones Cake",
"foodCakeBase": "Pastel Básico",
- "foodCakeBaseThe": "the Basic Cake",
- "foodCakeBaseA": "a Basic Cake",
+ "foodCakeBaseThe": "a torta básica",
+ "foodCakeBaseA": "unha torta básica",
"foodCakeCottonCandyBlue": "Pastel de Algodón azul",
"foodCakeCottonCandyBlueThe": "the Candy Blue Cake",
"foodCakeCottonCandyBlueA": "a Candy Blue Cake",
@@ -278,7 +278,7 @@
"foodCandySkeletonA": "Bare Bones Candy",
"foodCandyBase": "Caramelo Básico",
"foodCandyBaseThe": "the Basic Candy",
- "foodCandyBaseA": "Basic Candy",
+ "foodCandyBaseA": "un caramelo básico",
"foodCandyCottonCandyBlue": "Caramelo ácido azul",
"foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
"foodCandyCottonCandyBlueA": "Sour Blue Candy",
@@ -287,22 +287,22 @@
"foodCandyCottonCandyPinkA": "Sour Pink Candy",
"foodCandyShade": "Caramelo de Chocolate",
"foodCandyShadeThe": "the Chocolate Candy",
- "foodCandyShadeA": "Chocolate Candy",
+ "foodCandyShadeA": "un caramelo de chocolate",
"foodCandyWhite": "Caramelo de Vainilla",
"foodCandyWhiteThe": "the Vanilla Candy",
- "foodCandyWhiteA": "Vanilla Candy",
+ "foodCandyWhiteA": "un caramelo de vainilla",
"foodCandyGolden": "Caramelo de Mel",
"foodCandyGoldenThe": "the Honey Candy",
- "foodCandyGoldenA": "Honey Candy",
+ "foodCandyGoldenA": "un caramelo de mel",
"foodCandyZombie": "Caramelo Podre",
"foodCandyZombieThe": "the Rotten Candy",
- "foodCandyZombieA": "Rotten Candy",
+ "foodCandyZombieA": "un caramelo podre",
"foodCandyDesert": "Caramelo de Area",
"foodCandyDesertThe": "the Sand Candy",
- "foodCandyDesertA": "Sand Candy",
+ "foodCandyDesertA": "un caramelo de area",
"foodCandyRed": "Caramelo de Canela",
"foodCandyRedThe": "the Cinnamon Candy",
- "foodCandyRedA": "Cinnamon Candy",
+ "foodCandyRedA": "un caramelo de canela",
"foodSaddleText": "Sela",
"foodSaddleNotes": "Converte instantáneamente unha das túas mascotas nunha montura.",
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
@@ -312,5 +312,35 @@
"questEggDolphinAdjective": "un alegre",
"questEggRobotAdjective": "un futurista",
"questEggRobotMountText": "Robot",
- "questEggRobotText": "Robot"
+ "questEggRobotText": "Robot",
+ "hatchingPotionAmber": "Ámbar",
+ "foodPieZombie": "Torta podre",
+ "foodPieCottonCandyBlue": "Torta de arandos",
+ "hatchingPotionMoonglow": "Luz da lúa",
+ "hatchingPotionTurquoise": "Turquesa",
+ "hatchingPotionFluorite": "Fluorita",
+ "hatchingPotionSunset": "Solpor",
+ "hatchingPotionVampire": "Vampírica",
+ "hatchingPotionVeggie": "Xardín",
+ "hatchingPotionRuby": "Rubí",
+ "hatchingPotionWatery": "Aguada",
+ "hatchingPotionSilver": "Prateada",
+ "hatchingPotionWindup": "de Corda",
+ "hatchingPotionOnyx": "Ónix",
+ "hatchingPotionCelestial": "Celestial",
+ "hatchingPotionSunshine": "Solar",
+ "hatchingPotionShadow": "Sombría",
+ "hatchingPotionAurora": "Aurora",
+ "hatchingPotionDessert": "Confección",
+ "hatchingPotionBronze": "Bronce",
+ "hatchingPotionRoseQuartz": "Cuarzo rosa",
+ "hatchingPotionBirchBark": "Cortiza de bidueiro",
+ "hatchingPotionPolkaDot": "de lunares",
+ "hatchingPotionAutumnLeaf": "Folla de outono",
+ "hatchingPotionBlackPearl": "Perla negra",
+ "hatchingPotionSolarSystem": "Sistema solar",
+ "hatchingPotionMossyStone": "Pedra con musco",
+ "hatchingPotionStainedGlass": "Vidreira",
+ "hatchingPotionSandSculpture": "Escultura de area",
+ "hatchingPotionVirtualPet": "Mascota virtual"
}
diff --git a/website/common/locales/gl/contrib.json b/website/common/locales/gl/contrib.json
index 0f1dcb48b6..129253da87 100755
--- a/website/common/locales/gl/contrib.json
+++ b/website/common/locales/gl/contrib.json
@@ -1,14 +1,14 @@
{
- "playerTiersDesc": "The colored usernames you see in chat represent a person's contributor tier. The higher the tier, the more the person has contributed to habitica through art, code, the community, or more!",
- "tier1": "Tier 1 (Friend)",
- "tier2": "Tier 2 (Friend)",
- "tier3": "Tier 3 (Elite)",
- "tier4": "Tier 4 (Elite)",
- "tier5": "Tier 5 (Champion)",
- "tier6": "Tier 6 (Champion)",
- "tier7": "Tier 7 (Legendary)",
- "tierModerator": "Moderator (Guardian)",
- "tierStaff": "Staff (Heroic)",
+ "playerTiersDesc": "",
+ "tier1": "Nivel 1 (amiga)",
+ "tier2": "Nivel 2 (amiga)",
+ "tier3": "Nivel 3 (elite)",
+ "tier4": "Nivel 4 (elite)",
+ "tier5": "Nivel 5 (campioa)",
+ "tier6": "Nivel 6 (campioa)",
+ "tier7": "Nivel 7 (lendaria)",
+ "tierModerator": "Moderación (garda)",
+ "tierStaff": "Equipo (heroica)",
"tierNPC": "NPC",
"friend": "Amigo",
"elite": "Élite",
@@ -20,12 +20,12 @@
"heroic": "Heroico",
"modalContribAchievement": "Logro de Colaborador(a)!",
"contribModal": "<%= name %>, you awesome person! You're now a tier <%= level %> contributor for helping Habitica.",
- "contribLink": "See what prizes you've earned for your contribution!",
+ "contribLink": "",
"contribName": "Colaborador(a)",
"contribText": "Has contributed to Habitica, whether via code, art, music, writing, or other methods. To learn more, join the Aspiring Legends Guild!",
- "kickstartName": "Kickstarter Backer - $<%= key %> Tier",
+ "kickstartName": "",
"kickstartText": "Apoiou o Proxecto Kickstarter",
- "helped": "Helped Habitica Grow",
+ "helped": "Axudou a Habitica a medrar",
"hall": "Sala dos Heroes",
"contribTitle": "Título de Colaborador(a) (ex: \"Ferreiro\")",
"contribLevel": "Rango de Colaborador(a)",
@@ -49,9 +49,10 @@
"balance": "Saldo",
"playerTiers": "Rangos dos Xogadores",
"tier": "Rango",
- "conRewardsURL": "http://habitica.wikia.com/wiki/Contributor_Rewards",
+ "conRewardsURL": "https://habitica.fandom.com/wiki/Contributor_Rewards",
"surveysSingle": "Axudou a Habitica a medrar, ao completar unha enquisa ou ao axudar cun gran intento de proba. Grazas!",
"surveysMultiple": "Helped Habitica grow on <%= count %> occasions, either by filling out a survey or helping with a major testing effort. Thank you!",
"blurbHallPatrons": "Esta é a Sala dos Patróns, onde honramos os nobres aventureiros que apoiaron o Kickstarter orixinal de Habitica. Agradecémoslles a súa axuda en facer nacer Habitica!",
- "blurbHallContributors": "Esta é a Sala dos Colaboradores, onde honramos os colaboradores ao código aberto de Habitica. Que sexa a través do código, arte, música, escritura, ou incluso só axuda, gañaron
xemas, equipamento exclusivo, e
títulos prestixiosos. Ti tamén podes contribuír a Habitica!
Descobre máis aquí. "
+ "blurbHallContributors": "Esta é a Sala dos Colaboradores, onde honramos os colaboradores ao código aberto de Habitica. Que sexa a través do código, arte, música, escritura, ou incluso só axuda, gañaron
xemas, equipamento exclusivo, e
títulos prestixiosos. Ti tamén podes contribuír a Habitica!
Descobre máis aquí. ",
+ "noPrivAccess": "Non ten os privilexios necesarios."
}
diff --git a/website/common/locales/gl/death.json b/website/common/locales/gl/death.json
index d851e34641..b5c1337c1f 100755
--- a/website/common/locales/gl/death.json
+++ b/website/common/locales/gl/death.json
@@ -3,7 +3,7 @@
"dontDespair": "Non desesperes!",
"deathPenaltyDetails": "Perdiches un Nivel, o teu Ouro, e un elemento do teu Equipamento, pero podes recuperalos con traballo duro! Boa sorte, faralo xenial.",
"refillHealthTryAgain": "Recupera a Saúde e volve a intentalo",
- "dyingOftenTips": "Pasa isto a miúdo?
Velaquí uns consellos!",
+ "dyingOftenTips": "Pasa isto a miúdo?
Velaquí uns consellos!",
"losingHealthWarning": "Coidado, estás perdendo Saúde!",
"losingHealthWarning2": "Non deixes a túa Saúde descender ata cero! Se ocorre, perderás un nivel, o teu Ouro e un elemento do teu Equipamento.",
"toRegainHealth": "Para recuperar Saúde:",
@@ -14,4 +14,4 @@
"lowHealthTips4": "Se un Diario debe facerse ata un certo día, podes desactivalo pulsando no icono do lápiz.",
"goodLuck": "Boa sorte!",
"cannotRevive": "Non podes resucitar se non estás morto"
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/gl/defaulttasks.json b/website/common/locales/gl/defaulttasks.json
index 7ad8450686..7c30decb5f 100755
--- a/website/common/locales/gl/defaulttasks.json
+++ b/website/common/locales/gl/defaulttasks.json
@@ -2,12 +2,12 @@
"defaultHabit1Text": "Traballo Productivo (Pulsa no lapis para editar)",
"defaultHabit2Text": "Comer Comida Basura (Pulsa o lapis para editar)",
"defaultHabit3Text": "Usar as escaleiras / o ascensor (Pulsa no lapis para editar)",
- "defaultHabit4Text": "Add a task to Habitica",
+ "defaultHabit4Text": "Engadir unha tarefa a Habitica",
"defaultHabit4Notes": "Unha Habitude, unha Tarefa Diaria ou unha Tarefa Pendente",
"defaultTodo1Text": "Unirse a Habitica (Conta comigo!)",
"defaultTodoNotes": "Podes completar esta Tarefa, editala ou sacala.",
"defaultReward1Text": "descanso de 15 minutos",
- "defaultReward2Text": "Reward yourself",
+ "defaultReward2Text": "Recompénsate",
"defaultReward2Notes": "Watch TV, play a game, eat a treat, it's up to you!",
"defaultTag1": "Traballo",
"defaultTag2": "Exercicio",
@@ -34,5 +34,8 @@
"workTodoProject": "Proxecto de traballo >> Completar proxecto de traballo",
"workDailyImportantTaskNotes": "Toca para especificar a túa tarefa máis impotante",
"workDailyImportantTask": "Tarefa máis importante>> Traballei na tarefa máis importante de hoxe",
- "workHabitMail": "Leer emails"
+ "workHabitMail": "Leer emails",
+ "choresDailyText": "Lavar a louza",
+ "choresHabit": "Limpar 10 minutos",
+ "creativityTodoText": "Rematar un proxecto creativo"
}
diff --git a/website/common/locales/gl/faq.json b/website/common/locales/gl/faq.json
index feb2c906af..e8ef811cb6 100755
--- a/website/common/locales/gl/faq.json
+++ b/website/common/locales/gl/faq.json
@@ -5,8 +5,8 @@
"androidFaqAnswer0": "En primeiro lugar, vas configurar as tarefas que queres facer na túa vida cotiá. Despois, a medida que completes as tarefas e as marques, gañarás experiencia e ouro. O ouro úsase para mercar equipamento e algúns obxectos, así como recompensas personalizadas. A experiencia fai que o teu personaxe suba de nivel e desbloquea contido como Mascotas, Habilidades e Misións! Podes personalizar o teu personaxe en Menú > [Inventario >] Avatar.\n\nAlgunhas formas básicas de interacción: pulsa no botón (+) na esquina inferior dereita para engadir unha nova tarefa. Preme nunha tarefa existente para editala, e despraza unha tarefa cara a dereita para eliminala. Podes clasificar as tarefas empregando etiquetas na esquina superior esquerda, e ampliar e ocultar as listas ao pulsares no cadrado da lista.",
"webFaqAnswer0": "En primeiro lugar, vas configurar as tarefas que queres facer na túa vida cotiá. Despois, a medida que completes as tarefas e as marques, gañarás experiencia e ouro. O ouro úsase para mercar equipamento e algúns obxectos, así como recompensas personalizadas. A experiencia fai que o teu personaxe suba de nivel e desbloquea contido como Mascotas, Habilidades e Misións! Para máis detalles, bota un vistazo a un resumo do xogo paso a paso en [Axuda -> Resumo para Novos Usuarios](https://habitica.com/static/overview).",
"faqQuestion1": "Como configuro as miñas tarefas?",
- "iosFaqAnswer1": "Os bos hábitos (aqueles cun +) son tarefas que podes facer moitas veces ao día, como comer legumes. Os malos hábitos (aqueles cun -) son tarefas que tes que evitar, como morderte as uñas. Os hábitos cun + e un - teñen unha boa e unha mala opción, como ir polas escaleiras fronte a usar o ascensor. Os bos hábitos dan experiencia e ouro. Os malos hábitos substraen saúde.\n\nAs tarefas Diarias son traballos que tes que facer todos os días, como lavarte os dentes ou mirar o teu e-mail. Podes axustar os días nos que unha tarefa Diaria ten lugar ao pulsar para editalo. Se saltar unha tarefa diaria, o teu avatar danarase pola noite. Ten coidado de non engadir moitas tarefas Diarias dunha vez! \n\nAs Tarefas son a túa lista de tarefas. Completar unha Tarefa tráeche ouro e experiencia. Nunca perdes saúde a causa das Tarefas. Podes engadir unha data de vencemento a unha Tarefa pulsando para editala.",
- "androidFaqAnswer1": "Os bos hábitos (aqueles cun +) son tarefas que podes facer moitas veces ao día, como comer legumes. Os malos hábitos (aqueles cun -) son tarefas que tes que evitar, como morderte as uñas. Os hábitos cun + e un - teñen unha boa e unha mala opción, como ir polas escaleiras fronte a usar o ascensor. Os bos hábitos dan experiencia e ouro. Os malos hábitos substraen saúde.\n\nAs tarefas Diarias son traballos que tes que facer todos os días, como lavarte os dentes ou mirar o teu e-mail. Podes axustar os días nos que unha tarefa Diaria ten lugar ao pulsar para editalo. Se saltar unha tarefa diaria, o teu personaxe danarase pola noite. Ten coidado de non engadir moitas tarefas Diarias dunha vez! \n\nAs Tarefas son a túa lista de tarefas. Completar unha Tarefa tráeche ouro e experiencia. Nunca perdes saúde a causa das Tarefas. Podes engadir unha data de vencemento a unha Tarefa pulsando para editala.",
+ "iosFaqAnswer1": "Os bos hábitos (aqueles cun +) son tarefas que podes facer moitas veces ao día, como comer vexetais. Os malos hábitos (aqueles cun -) son tarefas que tes que evitar, como morder as uñas. Os hábitos cun + e un - teñen unha boa e unha mala opción, como ir polas escaleiras fronte a usar o ascensor. Os bos hábitos dan experiencia e ouro. Os malos hábitos quitan vida.\n\nAs tarefas diarias son as que tes que facer todos os días, como lavar os dentes ou mirar o correo electrónico. Podes tocar unha tarefa diaria para editala e cambiar os días nos que toca. Se saltas unha tarefa diaria cando toca, o teu avatar danarase pola noite. Ten coidado de non engadir moitas tarefas diarias dunha vez!\n\nAs tarefas pendentes son as tarefas por facer. Completar unha tarefa pendente dáche ouro e experiencia. Nunca perdes vida polas tarefas pendentes. Podes engadir unha data de vencemento a unha tarefa pendente tocándoa para editala.",
+ "androidFaqAnswer1": "Os bos hábitos (aqueles cun +) son tarefas que podes facer moitas veces ao día, como comer vexetais. Os malos hábitos (aqueles cun -) son tarefas que tes que evitar, como morder as uñas. Os hábitos cun + e un - teñen unha boa e unha mala opción, como ir polas escaleiras fronte a usar o ascensor. Os bos hábitos dan experiencia e ouro. Os malos hábitos quitan vida.\n\nAs tarefas diarias son as que tes que facer todos os días, como lavar os dentes ou mirar o correo electrónico. Podes tocar unha tarefa diaria para editala e cambiar os días nos que toca. Se saltas unha tarefa diaria cando toca, o teu avatar danarase pola noite. Ten coidado de non engadir moitas tarefas diarias dunha vez!\n\nAs tarefas pendentes son as tarefas por facer. Completar unha tarefa pendente dáche ouro e experiencia. Nunca perdes vida polas tarefas pendentes. Podes engadir unha data de vencemento a unha tarefa pendente tocándoa para editala.",
"webFaqAnswer1": "* Good Habits (the ones with a :heavy_plus_sign:) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a :heavy_minus_sign:) are tasks that you should avoid, like biting nails. Habits with a :heavy_plus_sign: and a :heavy_minus_sign: have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n* Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n* To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.",
"faqQuestion2": "Que tarefas pode haber, por exemplo?",
"iosFaqAnswer2": "A wiki ten catro listas de tarefas de mostra para usalas como inspiración:\n
\n* [Hábitos de mostra](http://habitica.wikia.com/wiki/Sample_Habits)\n* [Tarefas Diarias de mostra](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [Tarefas de mostra](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [Recompensas Personalizadas de mostra](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)",
@@ -28,18 +28,18 @@
"iosFaqAnswer6": "No nivel 3, desbloquearás o Sistema de Obxectos. Cada vez que completes unha tarefa, terás unha posibilidade aleatoria de recibir un ovo, unha poción de eclosión, ou unha porción de comida. Quedarán gardados en Menú > Obxectos.\n\nPara facer eclosionar unha mascota, precisas un ovo e unha poción de eclosión. Preme no ovo para determinar a especie que queres facer nacer, e selecciona \"Eclosionar Ovo\". A continuación, escolle unha poción de eclosión para determinar a súa cor! Vai a Menú > Mascotas para equipar o teu avatar da túa nova mascota, premendo sobre ela.\n\nTamén podes converter as túas mascotas en Monturas alimentándoas en Menú > Mascotas. Preme nunha mascota e, a continuación, selecciona \"Dar de comer á Mascota\"! Terás que dar de comer a unha mascota moitas veces antes de que se convirta nunha montura, pero se consegues descubrir o seu alimento favorito, medrará máis rápido. Usa o método de proba e erro, ou [mira os spoilers aquí](http://habitica.wikia.com/wiki/Food#Food_Preferences). Unha vez que teñas unha Montura, vai a Menú > Monturas e preme sobre ela para equipar o teu avatar.tocar nela para equipa-lo para o seu avatar.\n\nTamén podes obter ovos de animais de Misións ao completares determinadas Misións. (Mira abaixo para saber máis sobre as Misións.)",
"androidFaqAnswer6": "No nivel 3, desbloquearás o Sistema de atopar obxectos. Cada vez que completes unha tarefa, terás unha oportunidade aleatoria de recibir un ovo, unha poción de eclosión, ou un anaco de comida. Quadarán gardados en Menú > Obxectos.\n\nPara facer nacer unha mascota, necesitas un ovo e unha poción de eclosión. Preme no ovo para determinar as especies que queres facer nacer, e selecciona \"Eclosionar con poción.\" A continuación, escolle unha poción de incubación para determinar a súa cor! Para equipar a túa nova mascota, vai a Menú > Establo > Mascotas, selecciona unha especie, preme na Mascota desexada, e selecciona \"Usar\" (o teu avatar non se actualiza para mostrar a modificación).\n\nTamén pode converter as túas Mascotas en Monturas dándolles de comer en Menú > Establo [> Mascotas]. Preme nunha mascota e, a continuación, selecciona \"Dar de comer\"! Terás que alimentar unha mascota moitas veces antes de que se converta en Montura, pero se podes descubrir o seu alimento favorito, medrará máis rápido. Usa a proba e erro, ou [mira os spoilers aquí](http://habitica.wikia.com/wiki/Food#Food_Preferences). Para equiparte da túa Montura, vai a Menú > Establo > Monturas, selecciona unha especie, preme na Montura desexada, e selecciona \"Usar\"o teu avatar non se actualiza para mostrar o cambio).\n\nTamén podes obter ovos para Mascotas de Misións ao completares determinadas misións. (Mira abaixo para saber máis sobre Misións.)",
"webFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored under Inventory > Items. To hatch a Pet, you'll need an egg and a hatching potion. Once you have both an egg and a potion, go to Inventory > Stable to hatch your pet by clicking on its image. Once you've hatched a pet, you can equip it by clicking on it. You can also grow your Pets into Mounts by feeding them under Inventory > Stable. Drag a piece of food from the action bar at the bottom of the screen and drop it on a pet to feed it! You'll have to feed a Pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). Once you have a Mount, click on it to equip it to your avatar. You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)",
- "faqQuestion7": "Como me convirto en Guerreiro, Mago, Ladrón ou Curandeiro?",
+ "faqQuestion7": "Como me converto en pugnaz, mago, renarte ou sandador?",
"iosFaqAnswer7": "No nivel 10, podes optar por converterte nun Guerreiro, Mago, Ladrón ou Curandeiro. (Todos os xogadores comezan como Guerreiros por defecto). Cada clase ten diferentes opcións de equipamento, diferentes habilidades que poden botar desde o nivel 11, e diferentes vantaxes. Os guerreiros poden facilmente danar os Xefes, soportar máis danos provintes das súas tarefas, e volver o seu Equipo máis robusto. Os Magos tamén poden danar facilmente os Xefes, así como subir de nivel rapidamente e restaurar a Maná para o seu equipo. Os Ladróns gañan máis ouro e atopan máis obxectos, e poden axudar o seu Equipo a facer o mesmo. Finalmente, os Curandeiros poden curarse a si mesmos e aos membros do seu Equipo.\n\nSe non queres escoller unha clase inmediatamente - por exemplo, se aínda estás a traballar para mercar todo o equipamento da túa clase actual - podes pulsar en \"decidir máis tarde\" e escoller despois en Menú > Escoller Clase.",
"androidFaqAnswer7": "No nivel 10, podes optar por converterte nun Guerreiro, Mago, Ladrón ou Curandeiro. (Todos os xogadores comezan como Guerreiros por defecto). Cada clase ten diferentes opcións de equipamento, diferentes habilidades que poden botar desde o nivel 11, e diferentes vantaxes. Os guerreiros poden facilmente danar os Xefes, soportar máis danos provintes das súas tarefas, e volver o seu Equipo máis robusto. Os Magos tamén poden danar facilmente os Xefes, así como subir de nivel rapidamente e restaurar a Maná para o seu equipo. Os Ladróns gañan máis ouro e atopan máis obxectos, e poden axudar o seu Equipo a facer o mesmo. Finalmente, os Curandeiros poden curarse a si mesmos e aos membros do seu Equipo.\n\nSe non queres escoller unha clase inmediatamente - por exemplo, se aínda estás a traballar para mercar todo o equipamento da túa clase actual - podes pulsar en \"Deixalo\" e escoller despois en Menú > Escoller Clase.",
- "webFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most Gold and find the most item drops, and they can help their party do the same. Finally, Healers can heal themselves and their party members. If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click \"Opt Out\" and re-enable it later under Settings.",
+ "webFaqAnswer7": "",
"faqQuestion8": "What is the blue Stat bar that appears in the Header after level 10?",
"iosFaqAnswer8": "A barra azul que apareceu cando checgaches ao nivel 10 e escolleches unha Clase é a túa barra de Maná. A medida que continúes a subir de nivel, desbloquearás habilidades especiais para as que usalas custa Maná. Cada Clase ten Habilidades diferentes, que aparecen despois do nivel 11 en Menú > Utilizar Habilidades. A diferenza da túa barra de saúde, a túa barra de Mana non se repón cando gañas un nivel. Pola contra, adquires Maná cando completas Bos Hábitos, tarefas Diarias, e Tarefas, e o perdes cando te consintes malos Hábitos. Tamén recuperarás algo de Maná pola noite - cantas máis tarefas Diarias completes, máis gañarás.",
"androidFaqAnswer8": "A barra azul que apareceu cando checgaches ao nivel 10 e escolleches unha Clase é a túa barra de Maná. A medida que continúes a subir de nivel, desbloquearás habilidades especiais para as que usalas custa Maná. Cada Clase ten Habilidades diferentes, que aparecen despois do nivel 11 en Menú > Utilizar Habilidades. A diferenza da túa barra de saúde, a túa barra de Mana non se repón cando gañas un nivel. Pola contra, adquires Maná cando completas Bos Hábitos, tarefas Diarias, e Tarefas, e o perdes cando te consintes malos Hábitos. Tamén recuperarás algo de Maná pola noite - cantas máis tarefas Diarias completes, máis gañarás.",
"webFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 in the action bar at the bottom of the screen. Unlike your Health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.",
"faqQuestion9": "Como loito contra monstros e vou de Misión?",
"iosFaqAnswer9": "First, you need to join or start a Party (see above). 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!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\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 by pulling down on the screen 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. \n\n 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.",
- "androidFaqAnswer9": "First, you need to join or start a Party (see above). 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!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\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 by pulling down on the screen 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. \n\n 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.",
- "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.",
+ "androidFaqAnswer9": "",
+ "webFaqAnswer9": "",
"faqQuestion10": "Que son as Xemas, e como as consigo?",
"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!",
diff --git a/website/common/locales/gl/front.json b/website/common/locales/gl/front.json
index 742ae0fd07..f97a87bbbe 100644
--- a/website/common/locales/gl/front.json
+++ b/website/common/locales/gl/front.json
@@ -1,3 +1,182 @@
{
- "FAQ": "Preguntas frecuentes"
+ "FAQ": "Preguntas frecuentes",
+ "chores": "Tarefas da casa",
+ "communityInstagram": "Instagram",
+ "termsAndAgreement": "Ao premer o botón embaixo indicas que liches e estás de acordo coas
condicións do servizo e coa
política de protección da intimidade.",
+ "clearBrowserData": "Borrar os datos do navegador",
+ "communityFacebook": "Facebook",
+ "communityExtensions": "
Complementos e extensións",
+ "companyAbout": "Como funcionar",
+ "companyBlog": "Blogue",
+ "footerDevs": "Desenvolvemento",
+ "footerMobile": "Móbil",
+ "oldNews": "Novas",
+ "playButton": "Xogar",
+ "pkBoss": "Xefes",
+ "register": "Rexistrarse",
+ "school": "Escola",
+ "teams": "Equipos",
+ "tweet": "Chío",
+ "marketing3Lead2Title": "Integracións",
+ "footerSocial": "Social",
+ "pkLogo": "Logos",
+ "history": "Historia",
+ "pkWebsite": "Sitio web",
+ "or": "OU",
+ "footerCommunity": "Comunidade",
+ "mobileIOS": "iOS",
+ "login": "Iniciar sesión",
+ "companyContribute": "Contribuír",
+ "tumblr": "Tumblr",
+ "tasks": "Tarefas",
+ "mobileAndroid": "Android",
+ "password": "Contrasinal",
+ "pkPromo": "Promocións",
+ "companyDonate": "Doar",
+ "sync": "Sincronizar",
+ "footerCompany": "Empresa",
+ "username": "Nome de usuario",
+ "work": "Traballo",
+ "marketing1Lead2": "Mellora os teus hábitos para mellorar o teu avatar. Luce o equipamento que gañaches!",
+ "privacy": "Política de intimidade",
+ "missingAuthHeaders": "Faltan as cabeceiras de autenticación.",
+ "missingUsernameEmail": "Falta o nome de usuario ou o correo electrónico.",
+ "invalidEmailDomain": "Non pode rexistrarse con correos electrónicos dos seguintes dominios: <%= domains %>",
+ "passwordReset": "Se temos constancia do seu correo electrónico ou nome de usuario, enviáronse ao seu correo electrónico instrucións para estabelecer un novo contrasinal.",
+ "unsupportedNetwork": "Actualmente non somos compatíbeis con esta rede.",
+ "earnRewardsDesc": "Marca as tarefas para subir de nivel o teu avatar e desbloquear funcionalidades do xogo como armaduras de batalla, misteriosas mascotas, habilidades máxicas, e mesmo misións!",
+ "schoolAndWorkDesc": "Sen importar se o informe que preparar é para a escola ou para o traballo, resulta doado facer un seguimento do teu progreso a medida que lidias coas tarefas máis complicadas.",
+ "pkQuestion1": "Como naceu Habitica?",
+ "localStorageClearExplanation": "Este botón borrará o almacenamento local e a maioría das cookies, e pechará a súa sesión.",
+ "pkQuestion6": "Quen adoita usar Habitica?",
+ "pkQuestion8": "Que impacto ten Habitica na vida real das persoas?",
+ "incorrectDeletePhrase": "Escribe <%= magicWord %> en maiúsculas para eliminar a túa conta.",
+ "alreadyHaveAccountLogin": "Xa tes unha conta de Habitica?
Entra.",
+ "joinMany": "Únete a máis de <%= userCountInMillions %> millóns de persoas que o pasan ben conseguindo as súas metas!",
+ "dontHaveAccountSignup": "Non tes unha conta de Habitica?
Rexístrate.",
+ "forgotPasswordSteps": "Escribe o teu nome de usuario ou o enderezo de correo electrónico que usaches para rexistrar a túa conta de Habitica.",
+ "forgotPassword": "Esqueciches o contrasinal?",
+ "minPasswordLength": "O contrasinal debe ter polo menos 8 caracteres.",
+ "pkAnswer8": "Podes atopar moitas referencias sobre como Habitica axudou á xente aquí: https://habitversary.tumblr.com",
+ "sendLink": "Enviar a ligazón",
+ "pkQuestion4": "Por que perde vida o avatar ao saltar tarefas?",
+ "pkMoreQuestions": "Tes unha pregunta que non está nesta lista? Envía unha mensaxe a admin@habitica.com!",
+ "featuredIn": "Apareceu en",
+ "emailTaken": "Xa hai unha conta usando ese enderezo de correo electrónico.",
+ "localStorageTryNext": "Se o problema persiste, <%= linkStart %>informa del<%= linkEnd %> se aínda non o fixeches.",
+ "logout": "Saír",
+ "invalidCredentials": "Non hai ningunha conta que use eses credenciais.",
+ "healthAndFitnessDesc": "Nunca te apetece lavar os dentes? Non das ido ao ximnasio? Habitica por fin fai divertido mellorar a túa saúde.",
+ "marketing2Lead1Title": "Produtividade social",
+ "marketing4Lead3-2": "Interésache liderar un grupo en ensino, benestar e máis?",
+ "marketing2Lead3": "Os desafíos permítenche competir con amizades e outra xente. Quen mellor o faga ao rematar o desafío gaña premios especiais.",
+ "marketing2Lead2Title": "Loita contra monstros",
+ "onlySocialAttachLocal": "A autenticación local só se pode engadir a unha conta social.",
+ "presskit": "Cartafol de prensa",
+ "cannotFulfillReq": "Non se pode cumprir a súa solicitude. Envíe unha mensaxe de correo electrónico a admin@habitica.com se o erro persiste.",
+ "marketing1Lead3": "A algunhas persoas motívaas o xogo: un sistema denominado «recompensas estocásticas». Habitica da cabida a todos os estilos de reforzo e castigo: positivo, negativo, previsíbel, e aleatorio.",
+ "pkSamples": "Pantallas de exemplo",
+ "invalidEmail": "Requírese un enderezo de correo electrónico correcto para realizar un restabelecemento de contrasinal.",
+ "levelUpAnywhereDesc": "As nosas aplicacións móbiles facilitan facer seguimento das túas tarefas desde calquera lugar. Consegue as túas metas cun toque desde onde esteas.",
+ "localStorageClear": "Borrar os datos",
+ "usernameLimitations": "O nome de usuario debe ter entre 1 e 20 caracteres, e constar só de letras latinas (sen tiles nin ñ), díxitos, guións e guións baixos, e non pode incluír termos inadecuados.",
+ "businessInquiries": "Consultas de negocios e de promoción",
+ "timeToGetThingsDone": "Toca divertirse ao facer as cousas! Únete a máis de <%= userCountInMillions %> millóns de habitiquenses e mellora a túa vida de tarefa en tarefa.",
+ "missingEmail": "Falta o correo electrónico.",
+ "usernameTOSRequirements": "Os nomes de usuario deben cumprir coas nosas
condicións de servizo e coas
directrices da comunidade. Se non estabeleciches previamente un nome de usuario, xerouse automaticamente.",
+ "missingPassword": "Falta o contrasinal.",
+ "marketing3Lead1": "As aplicacións de **iPhone e Android** permítenche traballar sobre a marcha. Somos conscientes de que acceder a un sitio web para premer botóns pode botar para atrás.",
+ "wrongPassword": "O contrasinal é incorrecto.",
+ "presskitText": "Grazas por interesarte en Habitica! As seguintes imaxes poden usarse para artigos ou vídeos sobre Habitica. Para máis información, contacte connosco en <%= pressEnquiryEmail %>.",
+ "passwordResetPage": "Restabelecer o contrasinal",
+ "confirmPassword": "Confirmar o contrasinal",
+ "usernamePlaceholder": "p.ex. Habitiquense",
+ "emailPlaceholder": "p.ex. grifon@example.com",
+ "passwordPlaceholder": "p.ex. ******************",
+ "joinHabitica": "Unirse a Habitica",
+ "getStarted": "Comeza!",
+ "learnMore": "Saber máis",
+ "free": "Únete de balde",
+ "guidanceForBlacksmiths": "Orientación de ferraría",
+ "marketing1Lead2Title": "Consigue un bo equipamento",
+ "marketing2Lead3Title": "Desafiádevos",
+ "marketing4Lead1Title": "O xogo na educación",
+ "setNewPass": "Estabelecer un novo contrasinal",
+ "reportAccountProblems": "Informar de problemas coa conta",
+ "reportCommunityIssues": "Informar de problemas coa comunidade",
+ "missingNewPassword": "Falta o novo contrasinal.",
+ "notAnEmail": "O enderezo de correo electrónico é incorrecto.",
+ "usernameTaken": "O nome de usuario xa está collido.",
+ "healthAndFitness": "Saúde e exercicio",
+ "levelUpAnywhere": "Sube de nivel desde calquera lugar",
+ "pkQuestion2": "Por que funciona Habitica?",
+ "emailOrUsername": "Enderezo de correo electrónico ou nome de usuario (sensíbel ás maiúsculas)",
+ "newEmailRequired": "Falta o novo enderezo de correo electrónico.",
+ "accountSuspendedTitle": "Suspendeuse a conta",
+ "battleMonsters": "Loita contra monstros coas túas amizades",
+ "emailNewPass": "Enviar unha ligazón de restabelecemento de contrasinal por correo electrónico",
+ "marketing4Lead2Title": "O xogo na saúde e no benestar",
+ "marketing4Lead3-1": "Queres facer da túa vida un xogo?",
+ "generalQuestionsSite": "Preguntas xerais sobre o sitio",
+ "merchandiseInquiries": "Consultas sobre material de promoción (camisetas, adhesivos)",
+ "checkOutMobileApps": "Bota un ollo ás nosas aplicacións móbiles!",
+ "passwordConfirmationMatch": "A confirmación do contrasinal non coincide co contrasinal.",
+ "modelNotFound": "Este modelo non existe.",
+ "earnRewards": "Gaña recompensas polas túas metas",
+ "playersUseToImprove": "A xente xoga a Habitica para mellorar",
+ "marketing1Lead1Title": "A túa vida, o xogo de rol",
+ "marketing2Header": "Compite con amizades, únete a grupos cos teus intereses",
+ "pkQuestion7": "Por que usa Habitica arte de píxeles?",
+ "usernameTime": "Hora de estabelecer o teu nome de usuario!",
+ "memberIdRequired": "«member» debe ser un UUID correcto.",
+ "heroIdRequired": "«heroId» debe ser un UUID correcto.",
+ "signUpWithSocial": "Rexístrate con <%= social %>",
+ "loginWithSocial": "Accede con <%= social %>",
+ "confirmPasswordPlaceholder": "Asegúrate de que son o mesmo contrasinal!",
+ "motivateYourself": "Motívate para conseguir as túas metas.",
+ "marketing1Header": "Mellora os teus hábitos xogando",
+ "trackYourGoals": "Fai seguimento dos seus hábitos e metas",
+ "singUpForFree": "Rexístrate de balde",
+ "cantDetachSocial": "Á conta fáltalle outro método de autenticación; non se pode retirar este método de autenticación.",
+ "newsArchive": "Arquivo de novas en Wikia (en varios idiomas)",
+ "pkQuestion5": "En que se diferencia Habitica doutros programas de xogabilización?",
+ "mobileApps": "Aplicacións para móbil",
+ "terms": "Termos e condicións",
+ "muchmuchMore": "E moito, moito máis!",
+ "missingUsername": "Falta o nome de usuario.",
+ "schoolAndWork": "Estudos e traballo",
+ "trackYourGoalsDesc": "Responsabilízate facendo seguimento e xestión dos teus hábitos, metas diarias, e lista de tarefas pendentes coas aplicacións móbiles e a interface web fáciles de usar de Habitica.",
+ "subscriptionPaymentIssues": "Problemas de subscrición e de pago",
+ "gamifyYourLife": "Fai da túa vida un xogo",
+ "signup": "Rexistrarse",
+ "invalidReqParams": "Os parámetros da solicitude son incorrectos.",
+ "marketing3Header": "Aplicacións e extensións",
+ "marketing1Lead3Title": "Atopa premios aleatorios",
+ "battleMonstersDesc": "Loita contra monstros e outros habitiquenses! Usa o ouro que gañes para mercar recompensas do xogo ou da vida real, como ver un episodio da túa serie favorita.",
+ "pkQuestion3": "Por que engadistes funcionalidades sociais?",
+ "marketing2Lead2": "Que é un xogo de rol sen batallas? Loita contra monstros co teu grupo. Os monstros son o «modo de máxima responsabilidade»: un día que non vaias ao ximnasio é un día que o mostro fai dano a *toda a xente!*",
+ "marketing4Lead3Title": "Converte todo nun xogo",
+ "marketing4Header": "Uso organizativo",
+ "enterHabitica": "Accede a Habitica",
+ "joinToday": "Únete a Habitica hoxe",
+ "emailUsernamePlaceholder": "p.ex. habitiquense ou grifon@example.com",
+ "socialAlreadyExists": "Esta conta social xa está asociada a unha conta de Habitica.",
+ "marketing4Lead2": "O custo da sanidade está subindo, e hai que facer algo. Constrúense centos de programas para reducir custos e mellorar o benestar. Nós cremos que Habitica pode construír unha gran parte do camiño cara estilos de vida saudables.",
+ "pkAnswer6": "Habitica úsana moita xente distinta! Máis da metade da xente que nos usa ten entre 18 e 34 anos, pero temos xente maior que usa o sitio coas netas e netos, e todas as idades entre medias. É común que as familias formen un grupo e combatan monstros xuntas.
Moita xente que nos usa ten experiencia con xogos, pero para a nosa sorpresa, cando realizamos unha enquisa hai un tempo, o 40% da xente non se consideraba xogadora! Así que parece que o noso método pode resultar efectivo para calquera que queira que a produtividade e o benestar resulten máis divertidos.",
+ "accountSuspended": "Esta conta, o identificador de usuario «<%= userId %>», bloqueouse por violar as directrices da comunidade (https://habitica.com/static/community-guidelines) ou as condicións do servizo (https://habitica.com/static/terms). Para máis información, ou para solicitar un desbloqueo, envía unha mensaxe á xestoría da comunidade en <%= communityManagerEmail %> ou solicita á túa nai, pai ou garda que o faga. Inclúea o teu @nome de usuario na mensaxe.",
+ "muchmuchMoreDesc": "A nosa lista de tarefas completamente personalizable permíteche darlle a Habitica a forma que queiras para adaptala ás túas metas persoais. Traballa en proxectos creativos, fai fincapé no coidado persoal, ou persegue un soño diferente; ti decides.",
+ "usernameInfo": "Os nomes de usuario son agora únicos que se mostrarán canda o teu nome público e se usarán para invitacións, @mencións de conversas, e mensaxaría.
Se queres saber máis sobre este cambio,
visita o noso wiki.",
+ "marketing4Lead1": "O ensino é un dos mellores sectores para a ludificación. Xa se sabe que a xente estudante anda pegada aos teléfonos e aos xogos; aprovéitao! Fai que compitan de maneira amigable. Recompensa os bos comportamentos con premios singulares. Observa como melloras as súas notas e o seu comportamento.",
+ "invalidLoginCredentialsLong": "Oh oh! O teu enderezo de correo electrónico, nome de usuario ou contrasinal son incorrectos.\n- Asegúrate de que os escribiches ben. O nome de usuario e contrasinal son sensíbeis ás maiúsculas.\n- Pode que te rexistrases con Facebook ou Google, non co correo electrónico, así que asegúrate probándoos.\n- Se esqueciches o contrasinal, preme «Esquecín o contrasinal».",
+ "marketing3Lead2": "Outras **ferramentas de terceiras partes** adaptan Habitica a varios aspectos da túa vida. A nosa API permite integrar facilmente cousas como a [extensión de Chrome](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=gl-ES), coa que perdes puntos ao visitar sitios web non produtivos, e gañas puntos ao visitar os produtivos. [Aprende máis aquí](https://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
+ "marketing2Lead1": "Se ben podes xogar a Habitica pola túa conta, sácaselle máis partido ao colaborar, competir, e responsabilizarse mutuamente. A parte máis efectiva de calquera programa de mellora persoal é a responsabilidade social, e que mellor ambiente para responsabilidade e competición que un videoxogo?",
+ "pkAnswer7": "Habitica usa arte de píxeles por varios motivos. Ademais do factor nostalxia positiva, a arte de píxeles resulta moi accesíbel para o noso voluntariado de artistas que queren colaborar. É moito máis doado manter a consistencia da arte de píxeles cando unha morea de artistas contribúen, e permítenos xerar unha gran cantidade de contido novo!",
+ "aboutHabitica": "Habitica é unha aplicación de balde de construción de hábitos e produtividade que trata a vida real como un xogo. Con recompensas e castigos no xogo para motivarte e unha forte rede social para inspirarte, Habitica pode axudarte a conseguir as túas metas e mellorar a túa saúde, traballar duramente, e ser feliz.",
+ "marketing1Lead1": "Habitica é un videoxogo para axudarte a mellorar os hábitos da vida real. Ludifica a túa vida convertendo as túas tarefas (hábitos, tarefas diarias, e tarefas pendentes) en pequenos monstros que debes conquistar. Canto mellor o fagas, máis progresarás no xogo. Se te descoidas na vida, a túa personaxe empeorará no xogo.",
+ "localStorageTryFirst": "Se experimentas problemas con Habitica, preme o botón de embaixo para borrar o almacenamento local e a maioría das cookies do sitio web (non afectará a outros sitios web). Terás que acceder de novo despois de facelo, así que primeiro asegúrate de que sabes os teus detalles de acceso, que podes atopar en Configuración → <%= linkStart %>Sitio<%= linkEnd %>.",
+ "pkAnswer4": "Se saltas unha das túas metas diarias, o teu avatar perderá vida o día seguinte. Isto serve como factor importante de motivación para animar á xente a cumprir as súas metas porque a xente odia facer dano ao seu pequeno avatar! Ademais, a responsabilidade social resulta crítica para moitas persoas: se estás a loitar contra monstros coas túas amizades, saltar as túas tarefas tamén fai dano aos seus avatares.",
+ "pkAnswer5": "Unha das fontes de maior éxito de Habitica no uso de ludificación foi poñer un gran esforzo en pensar nos aspectos de xogo para asegurarnos de que resultan divertidos de verdade. Tamén incluímos moitas compoñentes sociais, porque pensamos que algúns dos xogos máis motivadores permítenche xogar con amizades, e porque as investigacións mostran que resulta máis doado formar hábitos cando tes que responsabilizarte ante outras persoas.",
+ "pkAnswer1": "Se algunha vez investiches tempo en subir de nivel unha personaxe nun xogo, é difícil non preguntarse o ben que iría a túa vida se todo ese esforzo o puxeses en mellorar a túa vida real en vez de o teu avatar. Comezamos a construír Habitica para responder esa pregunta.
Habitica comezou oficialmente cunha campaña de Kickstarter en 2013, e a idea tivo éxito. Desde entón medrou ata se converter nun proxecto enorme, apoiado polo noso alucinante voluntariado do software libre e a xenerosidade da xente que nos usa.",
+ "pkAnswer2": "Formar novos hábitos resulta difícil porque a xente de verdade necesita esa recompensa instantánea e obvia. Por exemplo, é difícil empezar a lavar os dentes, porque aínda que na clínica odontolóxica nos digan que é máis saudable a longo prazo, no momento non fai máis que facer que nos doan as enxivas.
A ludificación de Habitica engade un sentimento de gratificación instantánea aos obxectivos de todos os días recompensando unha tarefa difícil con experiencia, ouro… e quizais mesmo un premio aleatorio, como un ovo de dragón! Isto axuda a manter á xente motivada mesmo cando a tarefa de por si non ten unha recompensa intrínseca, e vimos xente dar a volta á súa vida como resultado. Podes consultar historias de éxito aquí: https://habitversary.tumblr.com",
+ "pkAnswer3": "A presión social é un factor de motivación enorme para unha morea de xente, así que sabíamos que queríamos ter unha comunidade forte que se responsabilizase mutuamente das metas e de animar ante os éxitos. Por sorte, unha das cousas que fan mellor os videoxogos para varias persoas é alimentar ese sentido de comunidade entre quen os xoga! A estrutura da comunidade de Habitica inspírase nese tipo de xogos; podes formar un pequeno grupo de amizades próximas, pero tamén podes unirte a un grupo máis grande con intereses comúns, un gremio. Aínda que algunhas persoas deciden xogar pola súa conta, a maioría decide formar unha rede de apoio que favorece a responsabilidade social mediante funcionalidades como as misións, onde a xente dos grupos xúntase e pon en común a súa produtividade para loitar contra monstros."
}
diff --git a/website/common/locales/gl/gear.json b/website/common/locales/gl/gear.json
index 88095b6a39..b34be10517 100755
--- a/website/common/locales/gl/gear.json
+++ b/website/common/locales/gl/gear.json
@@ -3,23 +3,23 @@
"equipmentType": "Tipo",
"klass": "Clase",
"groupBy": "Agrupar por <%= type %>",
- "classBonus": "(This item matches your class, so it gets an additional 1.5 Stat multiplier.)",
- "classArmor": "Class Armor",
+ "classBonus": "",
+ "classArmor": "Armadura de clase",
"featuredset": "Featured Set <%= name %>",
- "mysterySets": "Mystery Sets",
+ "mysterySets": "Conxuntos misteriosos",
"gearNotOwned": "You do not own this item.",
"noGearItemsOfType": "You don't own any of these.",
"noGearItemsOfClass": "You already have all your class equipment! More will be released during the Grand Galas, near the solstices and equinoxes.",
"classLockedItem": "This item is only available to a specific class. Change your class under the User icon > Settings > Character Build!",
"tierLockedItem": "This item is only available once you've purchased the previous items in sequence. Keep working your way up!",
"sortByType": "Type",
- "sortByPrice": "Price",
+ "sortByPrice": "Prezo",
"sortByCon": "CON",
"sortByPer": "PER",
"sortByStr": "STR",
"sortByInt": "INT",
"weapon": "arma",
- "weaponCapitalized": "Main-Hand Item",
+ "weaponCapitalized": "Obxecto de man dominante",
"weaponBase0Text": "Non tes Armas",
"weaponBase0Notes": "Non tes Arma.",
"weaponWarrior0Text": "Espada de Entrenamento",
@@ -37,7 +37,7 @@
"weaponWarrior6Text": "Espada de Ouro",
"weaponWarrior6Notes": "Perdición das criaturas da escuridade. Aumenta a Forza de <%= str %>.",
"weaponRogue0Text": "Daga",
- "weaponRogue0Notes": "A arma máis básica dun ladrón. Non confire beneficio.",
+ "weaponRogue0Notes": "A arma de renarte máis básica. Non confire beneficios.",
"weaponRogue1Text": "Espada Curta",
"weaponRogue1Notes": "Espada lixeira e discreta. Aumenta a Forza de <%= str %>.",
"weaponRogue2Text": "Cimitarra",
@@ -46,7 +46,7 @@
"weaponRogue3Notes": "Coitelo de arbustos distintivo, é tanto unha ferramenta de supervivencia como unha arma. Aumenta a Forza de <%= str %>.",
"weaponRogue4Text": "Nunchaku",
"weaponRogue4Notes": "Pesados paus que xiran arredor dunha cadea. Aumenta a Forza de <%= str %>.",
- "weaponRogue5Text": "Ninja-to",
+ "weaponRogue5Text": "Ninjatō",
"weaponRogue5Notes": "Elegante e mortal como os propios ninjas. Aumenta a Forza de <%= str %>.",
"weaponRogue6Text": "Espada Gancho",
"weaponRogue6Notes": "Arma complexa para confundir e desarmar os opoñentes. Aumenta a Forza de <%= str %>.",
@@ -87,16 +87,16 @@
"weaponSpecial3Text": "Luz da Alba Rompepeldaños de Mustaine",
"weaponSpecial3Notes": "Mitins, monstros, malestar: conseguido! Mola! Aumenta a Forza, a Intelixencia e a Constitución de <%= attrs %> cada unha.",
"weaponSpecialCriticalText": "Martelo Crítico Machaca-Erros",
- "weaponSpecialCriticalNotes": "This champion slew a critical GitHub foe where many warriors fell. Fashioned from the bones of Bug, this hammer deals a mighty critical hit. Increases Strength and Perception by <%= attrs %> each.",
+ "weaponSpecialCriticalNotes": "",
"weaponSpecialTakeThisText": "Espada Take This",
"weaponSpecialTakeThisNotes": "This sword was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
"weaponSpecialTridentOfCrashingTidesText": "Tridente das Ondas Chocantes",
"weaponSpecialTridentOfCrashingTidesNotes": "Dáche a capacidade de mandar sobre os peixes, e tamén de darlle algunhas puñaladas críticas ás túas tarefas. Aumenta a Intelixencia de <%= int %>.",
- "weaponSpecialTaskwoodsLanternText": "Taskwoods Lantern",
+ "weaponSpecialTaskwoodsLanternText": "Lanterna da tarefraga",
"weaponSpecialTaskwoodsLanternNotes": "Given at the dawn of time to the guardian ghost of the Taskwood Orchards, this lantern can illuminate the deepest darkness and weave powerful spells. Increases Perception and Intelligence by <%= attrs %> each.",
- "weaponSpecialBardInstrumentText": "Bardic Lute",
+ "weaponSpecialBardInstrumentText": "Laúde bárdico",
"weaponSpecialBardInstrumentNotes": "Strum a merry tune on this magical lute! Increases Intelligence and Perception by <%= attrs %> each.",
- "weaponSpecialLunarScytheText": "Lunar Scythe",
+ "weaponSpecialLunarScytheText": "Gadaña lunar",
"weaponSpecialLunarScytheNotes": "Wax this scythe regularly, or its power will wane. Increases Strength and Perception by <%= attrs %> each.",
"weaponSpecialMammothRiderSpearText": "Mammoth Rider Spear",
"weaponSpecialMammothRiderSpearNotes": "This rose quartz-tipped spear will imbue you with ancient spell-casting power. Increases Intelligence by <%= int %>.",
@@ -104,15 +104,15 @@
"weaponSpecialPageBannerNotes": "Wave your banner high to inspire confidence! Increases Strength by <%= str %>.",
"weaponSpecialRoguishRainbowMessageText": "Roguish Rainbow Message",
"weaponSpecialRoguishRainbowMessageNotes": "This sparkly envelope contains messages of encouragement from Habiticans, and a touch of magic to help speed your deliveries! Increases Perception by <%= per %>.",
- "weaponSpecialSkeletonKeyText": "Skeleton Key",
+ "weaponSpecialSkeletonKeyText": "Chave de esqueleto",
"weaponSpecialSkeletonKeyNotes": "All the best Sneakthieves carry a key that can open any lock! Increases Constitution by <%= con %>.",
- "weaponSpecialNomadsScimitarText": "Nomad's Scimitar",
+ "weaponSpecialNomadsScimitarText": "Cimitarra de nómada",
"weaponSpecialNomadsScimitarNotes": "The curved blade of this Scimitar is perfect for attacking Tasks from the back of a mount! Increases Intelligence by <%= int %>.",
- "weaponSpecialFencingFoilText": "Fencing Foil",
+ "weaponSpecialFencingFoilText": "Florete",
"weaponSpecialFencingFoilNotes": "Should anyone dare to impugn your honor, you'll be ready with this fine foil! Increases Strength by <%= str %>.",
"weaponSpecialTachiText": "Tachi",
"weaponSpecialTachiNotes": "This light and curved sword will shred your tasks to ribbons! Increases Strength by <%= str %>.",
- "weaponSpecialAetherCrystalsText": "Aether Crystals",
+ "weaponSpecialAetherCrystalsText": "Cristais de éter",
"weaponSpecialAetherCrystalsNotes": "These bracers and crystals once belonged to the Lost Masterclasser herself. Increases all Stats by <%= attrs %>.",
"weaponSpecialYetiText": "Lanza Amansa-Yetis",
"weaponSpecialYetiNotes": "Esta lanza permite o seu usuario mandar sobre os yetis. Aumenta a Forza de <%= str %>. Equipamento da Edición Limitada de Inverno de 2013-2014.",
@@ -210,55 +210,55 @@
"weaponSpecialFall2016MageNotes": "Non pidas a esta orbe predicir o teu futuro... Aumenta a Intelixencia de <%= int %> e a Percepción de . Edición Limitada de Outono de 2016.",
"weaponSpecialFall2016HealerText": "Serpe Velenosa",
"weaponSpecialFall2016HealerNotes": "Unha mordedura dana, e outra mordedura cura. Aumenta a Intelixencia de <%= int %>. Edición Limitada de Outono de 2016.",
- "weaponSpecialWinter2017RogueText": "Ice Axe",
+ "weaponSpecialWinter2017RogueText": "Machado de xeo",
"weaponSpecialWinter2017RogueNotes": "This axe is great for attack, defense, and ice-climbing! Increases Strength by <%= str %>. Limited Edition 2016-2017 Winter Gear.",
"weaponSpecialWinter2017WarriorText": "Stick of Might",
"weaponSpecialWinter2017WarriorNotes": "Conquer your goals by whacking them with this mighty stick! Increases Strength by <%= str %>. Limited Edition 2016-2017 Winter Gear.",
"weaponSpecialWinter2017MageText": "Winter Wolf Crystal Staff",
"weaponSpecialWinter2017MageNotes": "The glowing blue crystal set in the end of this staff is called the Winter Wolf's Eye! It channels magic from snow and ice. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016-2017 Winter Gear.",
- "weaponSpecialWinter2017HealerText": "Sugar-Spun Wand",
+ "weaponSpecialWinter2017HealerText": "Variña azucrada",
"weaponSpecialWinter2017HealerNotes": "This wand can reach into your dreams and bring you visions of dancing sugarplums. Increases Intelligence by <%= int %>. Limited Edition 2016-2017 Winter Gear.",
- "weaponSpecialSpring2017RogueText": "Karrotana",
+ "weaponSpecialSpring2017RogueText": "Katanoria",
"weaponSpecialSpring2017RogueNotes": "These blades will make quick work of tasks, but also are handy for slicing vegetables! Yum! Increases Strength by <%= str %>. Limited Edition 2017 Spring Gear.",
- "weaponSpecialSpring2017WarriorText": "Feathery Whip",
+ "weaponSpecialSpring2017WarriorText": "Látego de plumas",
"weaponSpecialSpring2017WarriorNotes": "This mighty whip will tame the unruliest task. But.. It's also… So FUN AND DISTRACTING!! Increases Strength by <%= str %>. Limited Edition 2017 Spring Gear.",
"weaponSpecialSpring2017MageText": "Magic Fetching Stick",
"weaponSpecialSpring2017MageNotes": "When you're not crafting spells with it, you can throw it and then bring it back! What fun!! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017 Spring Gear.",
- "weaponSpecialSpring2017HealerText": "Egg Wand",
+ "weaponSpecialSpring2017HealerText": "Variña de ovo",
"weaponSpecialSpring2017HealerNotes": "The true magic of this wand is the secret of new life inside the colorful shell. Increases Intelligence by <%= int %>. Limited Edition 2017 Spring Gear.",
"weaponSpecialSummer2017RogueText": "Sea Dragon Fins",
"weaponSpecialSummer2017RogueNotes": "The edges of these fins are razor-sharp. Increases Strength by <%= str %>. Limited Edition 2017 Summer Gear.",
"weaponSpecialSummer2017WarriorText": "Mightiest Beach Umbrella",
"weaponSpecialSummer2017WarriorNotes": "All fear it. Increases Strength by <%= str %>. Limited Edition 2017 Summer Gear.",
- "weaponSpecialSummer2017MageText": "Whirlpool Whips",
+ "weaponSpecialSummer2017MageText": "Látegos de remuíño",
"weaponSpecialSummer2017MageNotes": "Summon up magical whips of boiling water to smite your tasks! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017 Summer Gear.",
- "weaponSpecialSummer2017HealerText": "Pearl Wand",
+ "weaponSpecialSummer2017HealerText": "Variña de perla",
"weaponSpecialSummer2017HealerNotes": "A single touch from this pearl-tipped wand soothes away all wounds. Increases Intelligence by <%= int %>. Limited Edition 2017 Summer Gear.",
"weaponSpecialFall2017RogueText": "Candied Apple Mace",
"weaponSpecialFall2017RogueNotes": "Defeat your foes with sweetness! Increases Strength by <%= str %>. Limited Edition 2017 Autumn Gear.",
"weaponSpecialFall2017WarriorText": "Candy Corn Lance",
"weaponSpecialFall2017WarriorNotes": "All your foes will cower before this tasty-looking lance, regardless of whether they're ghosts, monsters, or red To Do's. Increases Strength by <%= str %>. Limited Edition 2017 Autumn Gear.",
- "weaponSpecialFall2017MageText": "Spooky Staff",
+ "weaponSpecialFall2017MageText": "Bastón arrepiante",
"weaponSpecialFall2017MageNotes": "The eyes of the glowing skull on this staff radiate magic and mystery. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
- "weaponSpecialFall2017HealerText": "Creepy Candelabra",
+ "weaponSpecialFall2017HealerText": "Candelabro arrepiante",
"weaponSpecialFall2017HealerNotes": "This light dispels fear and lets others know you're here to help. Increases Intelligence by <%= int %>. Limited Edition 2017 Autumn Gear.",
- "weaponSpecialWinter2018RogueText": "Peppermint Hook",
+ "weaponSpecialWinter2018RogueText": "Garfo de menta",
"weaponSpecialWinter2018RogueNotes": "Perfect for climbing walls or distracting your foes with sweet, sweet candy. Increases Strength by <%= str %>. Limited Edition 2017-2018 Winter Gear.",
"weaponSpecialWinter2018WarriorText": "Holiday Bow Hammer",
"weaponSpecialWinter2018WarriorNotes": "The sparkly appearance of this bright weapon will dazzle your enemies as you swing it! Increases Strength by <%= str %>. Limited Edition 2017-2018 Winter Gear.",
- "weaponSpecialWinter2018MageText": "Holiday Confetti",
+ "weaponSpecialWinter2018MageText": "Confeti festivo",
"weaponSpecialWinter2018MageNotes": "Magic--and glitter--is in the air! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
- "weaponSpecialWinter2018HealerText": "Mistletoe Wand",
+ "weaponSpecialWinter2018HealerText": "Variña de visgo",
"weaponSpecialWinter2018HealerNotes": "This mistletoe ball is sure to enchant and delight passersby! Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.",
- "weaponSpecialSpring2018RogueText": "Buoyant Bullrush",
+ "weaponSpecialSpring2018RogueText": "Espadana espigada",
"weaponSpecialSpring2018RogueNotes": "What might appear to be cute cattails are actually quite effective weapons in the right wings. Increases Strength by <%= str %>. Limited Edition 2018 Spring Gear.",
"weaponSpecialSpring2018WarriorText": "Axe of Daybreak",
"weaponSpecialSpring2018WarriorNotes": "Made of bright gold, this axe is mighty enough to attack the reddest task! Increases Strength by <%= str %>. Limited Edition 2018 Spring Gear.",
- "weaponSpecialSpring2018MageText": "Tulip Stave",
+ "weaponSpecialSpring2018MageText": "Doela de tulipán",
"weaponSpecialSpring2018MageNotes": "This magic flower never wilts! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
- "weaponSpecialSpring2018HealerText": "Garnet Rod",
+ "weaponSpecialSpring2018HealerText": "Cana granate",
"weaponSpecialSpring2018HealerNotes": "The stones in this staff will focus your power when you cast healing spells! Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.",
- "weaponSpecialSummer2018RogueText": "Fishing Rod",
+ "weaponSpecialSummer2018RogueText": "Cana de pescar",
"weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.",
"weaponSpecialSummer2018WarriorText": "Betta Fish Spear",
"weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.",
@@ -272,11 +272,11 @@
"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": "Staff of Sweetness",
"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.",
- "weaponSpecialFall2018HealerText": "Starving Staff",
+ "weaponSpecialFall2018HealerText": "Bastón basto",
"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.",
- "weaponSpecialWinter2019RogueText": "Poinsettia Bouquet",
+ "weaponSpecialWinter2019RogueText": "Ramo de flor do Nadal",
"weaponSpecialWinter2019RogueNotes": "Use this festive bouquet to further camouflage yourself, or generously gift it to brighten a friend's day! Increases Strength by <%= str %>. Limited Edition 2018-2019 Winter Gear.",
- "weaponSpecialWinter2019WarriorText": "Snowflake Halberd",
+ "weaponSpecialWinter2019WarriorText": "Alabarda de folerpa",
"weaponSpecialWinter2019WarriorNotes": "This snowflake was grown, ice crystal by ice crystal, into a diamond-hard blade! Increases Strength by <%= str %>. Limited Edition 2018-2019 Winter Gear.",
"weaponSpecialWinter2019MageText": "Fiery Dragon Staff",
"weaponSpecialWinter2019MageNotes": "Watch out! This explosive staff is ready to help you take on all comers. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
@@ -288,15 +288,15 @@
"weaponMystery201502Notes": "Polas ÁS! Polo AMOR! E tamén pola VERDADE! Non confire beneficio. Obxecto de Subscritor de febreiro de 2015.",
"weaponMystery201505Text": "Lanza Verde de Cabaleiro",
"weaponMystery201505Notes": "Esta lanza verde e prateada fixo caer moitos opoñentes das súas monturas. Non confire beneficio. Obxecto de Subscritor de maio de 2015ª.",
- "weaponMystery201611Text": "Copious Cornucopia",
+ "weaponMystery201611Text": "Cornucopia copiosa",
"weaponMystery201611Notes": "All manner of delicious and wholesome foods spill forth from this horn. Enjoy the feast! Confers no benefit. November 2016 Subscriber Item.",
- "weaponMystery201708Text": "Lava Sword",
+ "weaponMystery201708Text": "Espada de lava",
"weaponMystery201708Notes": "The fiery glow of this sword will make quick work of even dark red Tasks! Confers no benefit. August 2017 Subscriber Item.",
"weaponMystery201811Text": "Splendid Sorcerer's Staff",
"weaponMystery201811Notes": "This magical stave is as powerful as it is elegant. Confers no benefit. November 2018 Subscriber Item.",
"weaponMystery301404Text": "Cana Steampunk",
"weaponMystery301404Notes": "Excelente para dar unha volta pola cidade. Non confire beneficio. Obxecto de Subscritor de marzo de 3015.",
- "weaponArmoireBasicCrossbowText": "Basic Crossbow",
+ "weaponArmoireBasicCrossbowText": "Bésta básica",
"weaponArmoireBasicCrossbowNotes": "This crossbow can pierce a task's armor from very far away! Increases Strength by <%= str %>, Perception by <%= per %>, and Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
"weaponArmoireLunarSceptreText": "Esceptro Luar Calmante",
"weaponArmoireLunarSceptreNotes": "O poder curativo desta variña medra e declina. Aumenta a Constitución de <%= con %> e a Intelixencia de <%= int %>. Armario Encantado: Lote Luar Calmante (Obxecto 3 de 3).",
@@ -304,13 +304,13 @@
"weaponArmoireRancherLassoNotes": "O lasso: a ferramenta ideal para agrupar e pelexar. Aumenta a Forza de <%= str %>, a Percepción de <%= per %> e a Intelixencia de <%= int %>. Armario Encantado: Lote de Rancheiro (Obxecto 3 de 3).",
"weaponArmoireMythmakerSwordText": "Espada Mítica",
"weaponArmoireMythmakerSwordNotes": "Aínda que pareza humilde, esta espada fixo heroes míticos. Aumenta a Percepción e a Forza de <%= attrs %> cada unha. Armario Encantado: Lote da Toga Dourada (Obxecto 3 de 3).",
- "weaponArmoireIronCrookText": "Iron Crook",
+ "weaponArmoireIronCrookText": "Báculo de ferro",
"weaponArmoireIronCrookNotes": "Martelado fieramente a partir de ferro, este pau de ferro é bo para arrear ovellas. Aumenta a Percepción e a Forza de <%= attrs %> cada unha. Armario Encantado: Lote de Ferro con Cornos (Obxecto 3 de 3).",
"weaponArmoireGoldWingStaffText": "Bastón deÁs Douradas",
"weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all Stats by <%= attrs %> each. Enchanted Armoire: Independent Item.",
"weaponArmoireBatWandText": "Variña dos Morcegos",
"weaponArmoireBatWandNotes": "Esta variña pode converter calquera tarefa nun morcego! Axítaa e obsérvaas irse voando. Aumenta a Intelixencia de <%= int %> e a Percepción de <%= per %>. Armario Encantado: Obxecto independente.",
- "weaponArmoireShepherdsCrookText": "Shepherd's Crook",
+ "weaponArmoireShepherdsCrookText": "Báculo de pastor",
"weaponArmoireShepherdsCrookNotes": "Útil para agrupar grifos. Aumenta a Constitución de <%= con %>. Armario Encantado: Lote de Pastor (Obxecto 1 de 3).",
"weaponArmoireCrystalCrescentStaffText": "Bastón de Cristal Crecente",
"weaponArmoireCrystalCrescentStaffNotes": "Convoca o poder da lúa crecente con este bastón brillante! Aumenta a Intelixencia e a Forza de <%= attrs %> cada unha. Armario Encantado: Lote do Cristal Crecente (Obxecto 3 de 3).",
@@ -342,29 +342,29 @@
"weaponArmoireWandOfHeartsNotes": "This wand sparkles with a warm red light. It will also grant your heart wisdom. Increases Intelligence by <%= int %>. Enchanted Armoire: Queen of Hearts Set (Item 3 of 3).",
"weaponArmoireForestFungusStaffText": "Forest Fungus Staff",
"weaponArmoireForestFungusStaffNotes": "Use this gnarled staff to work mycological magic! Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.",
- "weaponArmoireFestivalFirecrackerText": "Festival Firecracker",
+ "weaponArmoireFestivalFirecrackerText": "Fogos artificiais",
"weaponArmoireFestivalFirecrackerNotes": "Enjoy this delightful sparkler responsibly. Increases Perception by <%= per %>. Enchanted Armoire: Festival Attire Set (Item 3 of 3).",
"weaponArmoireMerchantsDisplayTrayText": "Merchant's Display Tray",
"weaponArmoireMerchantsDisplayTrayNotes": "Use this lacquered tray to show the fine goods you're offering for sale. Increases Intelligence by <%= int %>. Enchanted Armoire: Merchant Set (Item 3 of 3).",
- "weaponArmoireBattleAxeText": "Ancient Axe",
+ "weaponArmoireBattleAxeText": "Machado antigo",
"weaponArmoireBattleAxeNotes": "This fine iron axe is well-suited to battling your fiercest foes or your most difficult tasks. Increases Intelligence by <%= int %> and Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
- "weaponArmoireHoofClippersText": "Hoof Clippers",
+ "weaponArmoireHoofClippersText": "Cortador de pezuños",
"weaponArmoireHoofClippersNotes": "Trim the hooves of your hard-working mounts to help them stay healthy as they carry you to adventure! Increases Strength, Intelligence, and Constitution by <%= attrs %> each. Enchanted Armoire: Farrier Set (Item 1 of 3).",
- "weaponArmoireWeaversCombText": "Weaver's Comb",
+ "weaponArmoireWeaversCombText": "Peite de tecelán",
"weaponArmoireWeaversCombNotes": "Use this comb to pack your weft threads together to make a tightly woven fabric. Increases Perception by <%= per %> and Strength by <%= str %>. Enchanted Armoire: Weaver Set (Item 2 of 3).",
- "weaponArmoireLamplighterText": "Lamplighter",
+ "weaponArmoireLamplighterText": "Faroleira",
"weaponArmoireLamplighterNotes": "This long pole has a wick on one end for lighting lamps, and a hook on the other end for putting them out. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Lamplighter's Set (Item 1 of 4).",
"weaponArmoireCoachDriversWhipText": "Coach Driver's Whip",
"weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 3 of 3).",
"weaponArmoireScepterOfDiamondsText": "Scepter of Diamonds",
"weaponArmoireScepterOfDiamondsNotes": "This scepter shines with a warm red glow as it grants you increased willpower. Increases Strength by <%= str %>. Enchanted Armoire: King of Diamonds Set (Item 3 of 4).",
- "weaponArmoireFlutteryArmyText": "Fluttery Army",
+ "weaponArmoireFlutteryArmyText": "Exército tremente",
"weaponArmoireFlutteryArmyNotes": "This group of scrappy lepidopterans is ready to flap fiercely and cool down your reddest tasks! Increases Constitution, Intelligence, and Strength by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 3 of 4).",
- "weaponArmoireCobblersHammerText": "Cobbler's Hammer",
+ "weaponArmoireCobblersHammerText": "Martelo de zapataría",
"weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).",
- "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe",
+ "weaponArmoireGlassblowersBlowpipeText": "Tubo de soprar vidro",
"weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).",
- "weaponArmoirePoisonedGobletText": "Poisoned Goblet",
+ "weaponArmoirePoisonedGobletText": "Cáliz envelenado",
"weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).",
"weaponArmoireJeweledArcherBowText": "Jeweled Archer Bow",
"weaponArmoireJeweledArcherBowNotes": "This bow of gold and gems will send your arrows to their targets at incredible speed. Increases Intelligence by <%= int %>. Enchanted Armoire: Jeweled Archer Set (Item 3 of 3).",
@@ -372,7 +372,7 @@
"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).",
- "weaponArmoireArcaneScrollText": "Arcane Scroll",
+ "weaponArmoireArcaneScrollText": "Pergameo arcano",
"weaponArmoireArcaneScrollNotes": "This ancient To Do list is filled with strange symbols and spells from a forgotten age. Increases Intelligence by <%= int %>. Enchanted Armoire: Scribe Set (Item 3 of 3).",
"armor": "armadura",
"armorCapitalized": "Armadura",
@@ -428,11 +428,11 @@
"armorSpecialTakeThisNotes": "This armor was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
"armorSpecialFinnedOceanicArmorText": "Armadura Oceánica con Aletas",
"armorSpecialFinnedOceanicArmorNotes": "Aínda que é delicada, esta armadura volve a túa pel tan perigosa como o toque de coral de lume. Aumenta a Forza de <%= str %>.",
- "armorSpecialPyromancersRobesText": "Pyromancer's Robes",
+ "armorSpecialPyromancersRobesText": "Túnica piromántica",
"armorSpecialPyromancersRobesNotes": "These elegant robes bestow each strike and spell with a burst of ethereal fire. Increases Constitution by <%= con %>.",
- "armorSpecialBardRobesText": "Bardic Robes",
+ "armorSpecialBardRobesText": "Túnica bárdica",
"armorSpecialBardRobesNotes": "These colorful robes may be conspicuous, but you can sing your way out of any situation. Increases Perception by <%= per %>.",
- "armorSpecialLunarWarriorArmorText": "Lunar Warrior Armor",
+ "armorSpecialLunarWarriorArmorText": "Armadura pugnaz lunar",
"armorSpecialLunarWarriorArmorNotes": "This armor is forged of moonstone and magical steel. Increases Strength and Constitution by <%= attrs %> each.",
"armorSpecialMammothRiderArmorText": "Mammoth Rider Armor",
"armorSpecialMammothRiderArmorNotes": "This suit of fur and leather includes a snazzy cape studded with rose quartz gems. It will protect you from bitter winds as you adventure in the coldest climes. Increases Constitution by <%= con %>.",
@@ -440,15 +440,15 @@
"armorSpecialPageArmorNotes": "Carry everything you need in your perfect pack! Increases Constitution by <%= con %>.",
"armorSpecialRoguishRainbowMessengerRobesText": "Roguish Rainbow Messenger Robes",
"armorSpecialRoguishRainbowMessengerRobesNotes": "These vividly striped robes will allow you to fly through gale-force winds smoothly and safely. Increases Strength by <%= str %>.",
- "armorSpecialSneakthiefRobesText": "Sneakthief Robes",
+ "armorSpecialSneakthiefRobesText": "Túnica furtiva",
"armorSpecialSneakthiefRobesNotes": "These robes will help hide you in the dead of night, but will also allow freedom of movement as you silently sneak about! Increases Intelligence by <%= int %>.",
"armorSpecialSnowSovereignRobesText": "Snow Sovereign Robes",
"armorSpecialSnowSovereignRobesNotes": "These robes are elegant enough for court, yet warm enough for the coldest winter day. Increases Perception by <%= per %>.",
- "armorSpecialNomadsCuirassText": "Nomad's Cuirass",
+ "armorSpecialNomadsCuirassText": "Coiraza nómada",
"armorSpecialNomadsCuirassNotes": "This armor features a strong chest-plate to protect your heart! Increases Constitution by <%= con %>.",
- "armorSpecialDandySuitText": "Dandy Suit",
+ "armorSpecialDandySuitText": "Traxe de dandi",
"armorSpecialDandySuitNotes": "You're undeniably dressed for success! Increases Perception by <%= per %>.",
- "armorSpecialSamuraiArmorText": "Samurai Armor",
+ "armorSpecialSamuraiArmorText": "Armadura de samurai",
"armorSpecialSamuraiArmorNotes": "This strong, scaled armor is held together by elegant silk cords. Increases Perception by <%= per %>.",
"armorSpecialTurkeyArmorBaseText": "Turkey Armor",
"armorSpecialTurkeyArmorBaseNotes": "Keep your drumsticks warm and cozy in this feathery armor! Confers no benefit.",
@@ -472,7 +472,7 @@
"armorSpecialBirthday2017Notes": "Happy Birthday, Habitica! Wear these Whimsical Party Robes to celebrate this wonderful day. Confers no benefit.",
"armorSpecialBirthday2018Text": "Fanciful Party Robes",
"armorSpecialBirthday2018Notes": "Happy Birthday, Habitica! Wear these Fanciful Party Robes to celebrate this wonderful day. Confers no benefit.",
- "armorSpecialGaymerxText": "Armadura de Guerreiro Arco Iris",
+ "armorSpecialGaymerxText": "Armadura pugnaz do arco da vella",
"armorSpecialGaymerxNotes": "Para celebrar a Conferencia GaymerX, esta armadura especial está decorada cun motivo de arcoiris radiante e colorido! GaymerX é unha convención de xogos que festexa LGTBQ e o xogo e está aberta a tod@s.",
"armorSpecialSpringRogueText": "Traxe de Gato Brillante",
"armorSpecialSpringRogueNotes": "Impecablemente acicalada. Aumenta a Percepción de <%= per %>. Edición Limitada de Primavera de 2014.",
@@ -496,7 +496,7 @@
"armorSpecialFallWarriorNotes": "Protéxete dos derrames de pocións misteriosas. Aumenta a Constitución de <%= con %>. Edición Limitada de Outono de 2014.",
"armorSpecialFallMageText": "Túnica de Bruxo Máxico",
"armorSpecialFallMageNotes": "This robe has plenty of pockets to hold extra helpings of eye of newt and tongue of frog. Increases Intelligence by <%= int %>. Limited Edition 2014 Autumn Gear.",
- "armorSpecialFallHealerText": "Gauzy Gear",
+ "armorSpecialFallHealerText": "Equipo neboento",
"armorSpecialFallHealerNotes": "Carga na batalla vendad@ antes de estar ferid@! Aumenta a Constitución de <%= con %>. Edición Limitada de Outono de 2014.",
"armorSpecialWinter2015RogueText": "Icicle Drake Armor",
"armorSpecialWinter2015RogueNotes": "This armor is freezing cold, but it will definitely be worth it when you uncover the untold riches at the center of the Icicle Drake hives. Not that you are looking for any such untold riches, because you are truly, definitely, absolutely a genuine Icicle Drake, okay?! Stop asking questions! Increases Perception by <%= per %>. Limited Edition 2014-2015 Winter Gear.",
@@ -517,7 +517,7 @@
"armorSpecialSummer2015RogueText": "Rabo de Rubí",
"armorSpecialSummer2015RogueNotes": "This garment of shimmering scales transforms its wearer into a real Reef Renegade! Increases Perception by <%= per %>. Limited Edition 2015 Summer Gear.",
"armorSpecialSummer2015WarriorText": "Rabo Dourado",
- "armorSpecialSummer2015WarriorNotes": "This garment of shimmering scales transforms its wearer into a real Sunfish Warrior! Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.",
+ "armorSpecialSummer2015WarriorNotes": "",
"armorSpecialSummer2015MageText": "Túnica de Adiviño",
"armorSpecialSummer2015MageNotes": "Hidden power resides in the puffs of these sleeves. Increases Intelligence by <%= int %>. Limited Edition 2015 Summer Gear.",
"armorSpecialSummer2015HealerText": "Armadura de Mariñeiro",
@@ -540,39 +540,39 @@
"armorSpecialWinter2016HealerNotes": "As Fadas Festivas envólvense nas ás dos seu corpo para protexerse mentres usan as ás da súa cabeza para aproveitar as correntes de aire para voar por Habitica a velocidades de ata 150 km/h, repartindo regalos e botando confetis a todos. Que gracioso. Aumenta a Constitución de <%= con %>. Edición Limitada de Inverno de 2015-2016.",
"armorSpecialSpring2016RogueText": "Canine Camo Suit",
"armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.",
- "armorSpecialSpring2016WarriorText": "Mighty Mail",
+ "armorSpecialSpring2016WarriorText": "Malla maior",
"armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
"armorSpecialSpring2016MageText": "Grand Malkin Robes",
"armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.",
"armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches",
"armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
"armorSpecialSummer2016RogueText": "Rabo de Anguía",
- "armorSpecialSummer2016RogueNotes": "This electrifying garment transforms its wearer into a real Eel Rogue! Increases Perception by <%= per %>. Limited Edition 2016 Summer Gear.",
+ "armorSpecialSummer2016RogueNotes": "Este accesorio cargado de enerxía transforma a quen o leva en renarte anguía de verdade! Aumenta a percepción en <%= per %>. Equipo do verán de 2016 de edición limitada.",
"armorSpecialSummer2016WarriorText": "Rabo de Quenlla",
- "armorSpecialSummer2016WarriorNotes": "This rough garment transforms its wearer into a real Shark Warrior! Increases Constitution by <%= con %>. Limited Edition 2016 Summer Gear.",
+ "armorSpecialSummer2016WarriorNotes": "",
"armorSpecialSummer2016MageText": "Rabo de Delfín",
"armorSpecialSummer2016MageNotes": "This slippery garment transforms its wearer into a real Dolphin Mage! Increases Intelligence by <%= int %>. Limited Edition 2016 Summer Gear.",
"armorSpecialSummer2016HealerText": "Rabo de Hipocampo",
"armorSpecialSummer2016HealerNotes": "This spiky garment transforms its wearer into a real Seahorse Healer! Increases Constitution by <%= con %>. Limited Edition 2016 Summer Gear.",
"armorSpecialFall2016RogueText": "Armadura de Viúva Negra",
"armorSpecialFall2016RogueNotes": "The eyes on this armor are constantly blinking. Increases Perception by <%= per %>. Limited Edition 2016 Autumn Gear.",
- "armorSpecialFall2016WarriorText": "Slime-Streaked Armor",
+ "armorSpecialFall2016WarriorText": "Armadura enlodada",
"armorSpecialFall2016WarriorNotes": "Mysteriously moist and mossy! Increases Constitution by <%= con %>. Limited Edition 2016 Autumn Gear.",
"armorSpecialFall2016MageText": "Manto da Crueldade",
"armorSpecialFall2016MageNotes": "When your cloak flaps, you hear the sound of cackling laughter. Increases Intelligence by <%= int %>. Limited Edition 2016 Autumn Gear.",
- "armorSpecialFall2016HealerText": "Gorgon Robes",
+ "armorSpecialFall2016HealerText": "Túnica de gorgona",
"armorSpecialFall2016HealerNotes": "These robes are actually made of stone. How are they so comfortable? Increases Constitution by <%= con %>. Limited Edition 2016 Autumn Gear.",
- "armorSpecialWinter2017RogueText": "Frosty Armor",
+ "armorSpecialWinter2017RogueText": "Armadura xeada",
"armorSpecialWinter2017RogueNotes": "This stealthy suit reflects light to dazzle unsuspecting tasks as you take your rewards from them! Increases Perception by <%= per %>. Limited Edition 2016-2017 Winter Gear.",
"armorSpecialWinter2017WarriorText": "Ice Hockey Armor",
"armorSpecialWinter2017WarriorNotes": "Show your team spirit and strength in this warm, padded armor. Increases Constitution by <%= con %>. Limited Edition 2016-2017 Winter Gear.",
- "armorSpecialWinter2017MageText": "Wolfish Armor",
+ "armorSpecialWinter2017MageText": "Armadura lobeira",
"armorSpecialWinter2017MageNotes": "Made of winter's warmest wool and woven with spells by the mystical Winter Wolf, these robes stave off the chill and keep your mind alert! Increases Intelligence by <%= int %>. Limited Edition 2016-2017 Winter Gear.",
"armorSpecialWinter2017HealerText": "Shimmer Petal Armor",
"armorSpecialWinter2017HealerNotes": "Though soft, this armor of petals has fantastic protective power. Increases Constitution by <%= con %>. Limited Edition 2016-2017 Winter Gear.",
"armorSpecialSpring2017RogueText": "Sneaky Bunny Suit",
"armorSpecialSpring2017RogueNotes": "Soft but strong, this suit helps you move through gardens with extra stealth. Increases Perception by <%= per %>. Limited Edition 2017 Spring Gear.",
- "armorSpecialSpring2017WarriorText": "Pawsome Armor",
+ "armorSpecialSpring2017WarriorText": "Armadura espoutacular",
"armorSpecialSpring2017WarriorNotes": "This fancy armor is as shiny as your finely groomed coat, but with added resistance to attack. Increases Constitution by <%= con %>. Limited Edition 2017 Spring Gear.",
"armorSpecialSpring2017MageText": "Canine Conjuror Robes",
"armorSpecialSpring2017MageNotes": "Magical by design, fluffy by choice. Increases Intelligence by <%= int %>. Limited Edition 2017 Spring Gear.",
@@ -582,33 +582,33 @@
"armorSpecialSummer2017RogueNotes": "This colorful garment transforms its wearer into a real Sea Dragon! Increases Perception by <%= per %>. Limited Edition 2017 Summer Gear.",
"armorSpecialSummer2017WarriorText": "Sandy Armor",
"armorSpecialSummer2017WarriorNotes": "Don't be fooled by the crumbly exterior: this armor is harder than steel. Increases Constitution by <%= con %>. Limited Edition 2017 Summer Gear.",
- "armorSpecialSummer2017MageText": "Whirlpool Robes",
+ "armorSpecialSummer2017MageText": "Túnica de rodopío",
"armorSpecialSummer2017MageNotes": "Careful not to get splashed by these robes woven of enchanted water! Increases Intelligence by <%= int %>. Limited Edition 2017 Summer Gear.",
- "armorSpecialSummer2017HealerText": "Silversea Tail",
+ "armorSpecialSummer2017HealerText": "Cola de mar de prata",
"armorSpecialSummer2017HealerNotes": "This garment of silvery scales transforms its wearer into a real Seahealer! Increases Constitution by <%= con %>. Limited Edition 2017 Summer Gear.",
"armorSpecialFall2017RogueText": "Pumpkin Patch Robes",
"armorSpecialFall2017RogueNotes": "Need to hide out? Crouch among the Jack o' Lanterns and these robes will conceal you! Increases Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
"armorSpecialFall2017WarriorText": "Strong and Sweet Armor",
"armorSpecialFall2017WarriorNotes": "This armor will protect you like a delicious candy shell. Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
- "armorSpecialFall2017MageText": "Masquerade Robes",
+ "armorSpecialFall2017MageText": "Túnica de mascarada",
"armorSpecialFall2017MageNotes": "What masquerade ensemble would be complete without dramatic and sweeping robes? Increases Intelligence by <%= int %>. Limited Edition 2017 Autumn Gear.",
"armorSpecialFall2017HealerText": "Haunted House Armor",
"armorSpecialFall2017HealerNotes": "Your heart is an open door. And your shoulders are roofing tiles! Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
- "armorSpecialWinter2018RogueText": "Reindeer Costume",
+ "armorSpecialWinter2018RogueText": "Disfrace de reno",
"armorSpecialWinter2018RogueNotes": "You look so cute and fuzzy, who could suspect you are after holiday loot? Increases Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
"armorSpecialWinter2018WarriorText": "Wrapping Paper Armor",
"armorSpecialWinter2018WarriorNotes": "Don't let the papery feel of this armor fool you. It's nearly impossible to rip! Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
- "armorSpecialWinter2018MageText": "Sparkly Tuxedo",
+ "armorSpecialWinter2018MageText": "Smóking relucente",
"armorSpecialWinter2018MageNotes": "The ultimate in magical formalwear. Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.",
- "armorSpecialWinter2018HealerText": "Mistletoe Robes",
+ "armorSpecialWinter2018HealerText": "Túnica de visgo",
"armorSpecialWinter2018HealerNotes": "These robes are woven with spells for extra holiday joy. Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
- "armorSpecialSpring2018RogueText": "Feather Suit",
+ "armorSpecialSpring2018RogueText": "Traxe de plumas",
"armorSpecialSpring2018RogueNotes": "This fluffy yellow costume will trick your enemies into thinking you're just a harmless ducky! Increases Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
"armorSpecialSpring2018WarriorText": "Armor of Dawn",
"armorSpecialSpring2018WarriorNotes": "This colorful plate is forged with the sunrise's fire. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.",
- "armorSpecialSpring2018MageText": "Tulip Robe",
+ "armorSpecialSpring2018MageText": "Túnica de tulipán",
"armorSpecialSpring2018MageNotes": "Your spell casting can only improve while clad in these soft, silky petals. Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.",
- "armorSpecialSpring2018HealerText": "Garnet Armor",
+ "armorSpecialSpring2018HealerText": "Armadura granate",
"armorSpecialSpring2018HealerNotes": "Let this bright armor infuse your heart with power for healing. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.",
"armorSpecialSummer2018RogueText": "Pocket Fishing Vest",
"armorSpecialSummer2018RogueNotes": "Bobbers? Boxes of hooks? Spare line? Lockpicks? Smoke bombs? Whatever you need on hand for your summer fishing getaway, there's a pocket for it! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.",
@@ -620,19 +620,19 @@
"armorSpecialSummer2018HealerNotes": "These cerulean vestments reveal that you have land-walking feet... well. Not even a monarch can be expected to be perfect. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.",
"armorSpecialFall2018RogueText": "Alter Ego Frock Coat",
"armorSpecialFall2018RogueNotes": "Style for the day. Comfort and protection for the night. Increases Perception by <%= per %>. Limited Edition 2018 Autumn Gear.",
- "armorSpecialFall2018WarriorText": "Minotaur Platemail",
+ "armorSpecialFall2018WarriorText": "Malla de minotauro",
"armorSpecialFall2018WarriorNotes": "Complete with hooves to drum a soothing cadence as you walk your meditative labyrinth. Increases Constitution by <%= con %>. Limited Edition 2018 Autumn Gear.",
- "armorSpecialFall2018MageText": "Candymancer's Robes",
+ "armorSpecialFall2018MageText": "Túnica de meigoloso",
"armorSpecialFall2018MageNotes": "The fabric of these robes has magic candy woven right in! However, we recommend you not attempt to eat them. Increases Intelligence by <%= int %>. Limited Edition 2018 Autumn Gear.",
"armorSpecialFall2018HealerText": "Robes of Carnivory",
"armorSpecialFall2018HealerNotes": "It's made from plants, but that doesn't mean it's vegetarian. Bad habits are afraid to come within miles of these robes. Increases Constitution by <%= con %>. Limited Edition 2018 Autumn Gear.",
- "armorSpecialWinter2019RogueText": "Poinsettia Armor",
+ "armorSpecialWinter2019RogueText": "Armadura de flor do nadal",
"armorSpecialWinter2019RogueNotes": "With holiday greenery all about, no one will notice an extra shrubbery! You can move through seasonal gatherings with ease and stealth. Increases Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
- "armorSpecialWinter2019WarriorText": "Glacial Armor",
+ "armorSpecialWinter2019WarriorText": "Armadura glacial",
"armorSpecialWinter2019WarriorNotes": "In the heat of battle, this armor will keep you ice cool and ready for action. Increases Constitution by <%= con %>. Limited Edition 2018-2019 Winter Gear.",
"armorSpecialWinter2019MageText": "Robes of Burning Inspiration",
"armorSpecialWinter2019MageNotes": "This fireproof garb will help protect you if any of your flashes of brilliance should happen to backfire! Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
- "armorSpecialWinter2019HealerText": "Midnight Robe",
+ "armorSpecialWinter2019HealerText": "Túnica de medianoite",
"armorSpecialWinter2019HealerNotes": "Without darkness, there wouldn't be any light. These dark robes help bring peace and rest to promote healing. Increases Constitution by <%= con %>. Limited Edition 2018-2019 Winter Gear.",
"armorMystery201402Text": "Túnica de Mensaxeiro",
"armorMystery201402Notes": "Brillante e resistente, esta túnica ten moitos petos para levar cartas. Non confire beneficio. Obxecto de Subscritor de febreiro de 2014.",
@@ -676,25 +676,25 @@
"armorMystery201605Notes": "Contrariamente aos bardos tradicionais que se unen a equipos aventureiros, os bardos que se unen a bandas de Habiticantes en marcha son coñecidos polos grandes desfiles, non incursións en calabozos. Non confire beneficio. Obxecto de Subscritor de maio de 2016.",
"armorMystery201606Text": "Rabo de Selkie",
"armorMystery201606Notes": "Esta forte cola brila como a escuma mariña rompendo na beira do mar. Non confire beneficio. Obxecto de Subscritor de xuño de 2016.",
- "armorMystery201607Text": "Armadura de Ladrón do Fondo Mariño",
+ "armorMystery201607Text": "Armadura de renarte do fondo mariño",
"armorMystery201607Notes": "Fúndete co fondo mariño con esta discreta armadura acuática. Non confire beneficio. Obxecto de Subscritor de xullo de 2016.",
"armorMystery201609Text": "Armadura de Vaca",
"armorMystery201609Notes": "Encaixa co resto da horda nesta confortable armadura! Non confire beneficio. Obxecto de Subscritor de setembro de 2016.",
- "armorMystery201610Text": "Spectral Armor",
+ "armorMystery201610Text": "Armadura espectral",
"armorMystery201610Notes": "Mysterious armor that will cause you to float like a ghost! Confers no benefit. October 2016 Subscriber Item.",
- "armorMystery201612Text": "Nutcracker Armor",
+ "armorMystery201612Text": "Armadura de crebanoces",
"armorMystery201612Notes": "Crack nuts in style in this spectacular holiday ensemble. Be careful not to pinch your fingers! Confers no benefit. December 2016 Subscriber Item.",
- "armorMystery201703Text": "Shimmer Armor",
+ "armorMystery201703Text": "Armadura de escintileo",
"armorMystery201703Notes": "Though its colors are reminiscent of spring petals, this armor is stronger than steel! Confers no benefit. March 2017 Subscriber Item.",
- "armorMystery201704Text": "Fairytale Armor",
+ "armorMystery201704Text": "Armadura de fábula",
"armorMystery201704Notes": "Fairy folk crafted this armor from morning dew to capture the colors of the sunrise. Confers no benefit. April 2017 Subscriber Item.",
- "armorMystery201707Text": "Jellymancer Armor",
+ "armorMystery201707Text": "Armadura de xelatizo",
"armorMystery201707Notes": "This armor will help you blend in with the creatures of the ocean while you pursue undersea quests and adventures. Confers no benefit. July 2017 Subscriber Item.",
"armorMystery201710Text": "Imperious Imp Apparel",
"armorMystery201710Notes": "Scaly, shiny, and strong! Confers no benefit. October 2017 Subscriber Item.",
"armorMystery201711Text": "Carpet Rider Outfit",
"armorMystery201711Notes": "This cozy sweater set will help keep you warm as you ride through the sky! Confers no benefit. November 2017 Subscriber Item.",
- "armorMystery201712Text": "Candlemancer Armor",
+ "armorMystery201712Text": "Armadura de candemante",
"armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.",
"armorMystery201802Text": "Love Bug Armor",
"armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.",
@@ -768,29 +768,29 @@
"armorArmoireMushroomDruidArmorNotes": "This woody brown armor, capped with tiny mushrooms, will help you hear the whispers of forest life. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Mushroom Druid Set (Item 2 of 3).",
"armorArmoireGreenFestivalYukataText": "Green Festival Yukata",
"armorArmoireGreenFestivalYukataNotes": "This fine lightweight yukata will keep you cool while you enjoy any festive occasion. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Festival Attire Set (Item 1 of 3).",
- "armorArmoireMerchantTunicText": "Merchant Tunic",
+ "armorArmoireMerchantTunicText": "Túnica mercante",
"armorArmoireMerchantTunicNotes": "The wide sleeves of this tunic are perfect for stashing the coins you've earned! Increases Perception by <%= per %>. Enchanted Armoire: Merchant Set (Item 2 of 3).",
- "armorArmoireVikingTunicText": "Viking Tunic",
+ "armorArmoireVikingTunicText": "Túnica viquinga",
"armorArmoireVikingTunicNotes": "This warm woolen tunic includes a cloak for extra coziness even in ocean gales. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Viking Set (Item 1 of 3).",
"armorArmoireSwanDancerTutuText": "Swan Dancer Tutu",
"armorArmoireSwanDancerTutuNotes": "You just might fly away into the air as you spin in this gorgeous feathered tutu. Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Swan Dancer Set (Item 2 of 3).",
- "armorArmoireAntiProcrastinationArmorText": "Anti-Procrastination Armor",
+ "armorArmoireAntiProcrastinationArmorText": "Armadura antiprocrastinación",
"armorArmoireAntiProcrastinationArmorNotes": "Infused with ancient productivity spells, this steel armor will give you extra strength to battle your tasks. Increases Strength by <%= str %>. Enchanted Armoire: Anti-Procrastination Set (Item 2 of 3).",
"armorArmoireYellowPartyDressText": "Yellow Party Dress",
"armorArmoireYellowPartyDressNotes": "You're perceptive, strong, smart, and so fashionable! Increases Perception, Strength, and Intelligence by <%= attrs %> each. Enchanted Armoire: Yellow Hairbow Set (Item 2 of 2).",
- "armorArmoireFarrierOutfitText": "Farrier Outfit",
+ "armorArmoireFarrierOutfitText": "Traxe de ferreiro",
"armorArmoireFarrierOutfitNotes": "These sturdy work clothes can stand up to the messiest Stable. Increases Intelligence, Constitution, and Perception by <%= attrs %> each. Enchanted Armoire: Farrier Set (Item 2 of 3).",
"armorArmoireCandlestickMakerOutfitText": "Candlestick Maker Outfit",
"armorArmoireCandlestickMakerOutfitNotes": "This sturdy set of clothes will protect you from hot wax spills as you ply your craft! Increases Constitution by <%= con %>. Enchanted Armoire: Candlestick Maker Set (Item 1 of 3).",
- "armorArmoireWovenRobesText": "Woven Robes",
+ "armorArmoireWovenRobesText": "Túnica tecida",
"armorArmoireWovenRobesNotes": "Display your weaving work proudly by wearing this colorful robe! Increases Constitution by <%= con %> and Intelligence by <%= int %>. Enchanted Armoire: Weaver Set (Item 1 of 3).",
- "armorArmoireLamplightersGreatcoatText": "Lamplighter's Greatcoat",
+ "armorArmoireLamplightersGreatcoatText": "Gabardina de faroleiro",
"armorArmoireLamplightersGreatcoatNotes": "This heavy woolen coat can stand up to the harshest wintry night! Increases Perception by <%= per %>. Enchanted Armoire: Lamplighter's Set (Item 2 of 4).",
"armorArmoireCoachDriverLiveryText": "Coach Driver's Livery",
"armorArmoireCoachDriverLiveryNotes": "This heavy overcoat will protect you from the weather as you drive. Plus it looks pretty snazzy, too! Increases Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 1 of 3).",
"armorArmoireRobeOfDiamondsText": "Robe of Diamonds",
"armorArmoireRobeOfDiamondsNotes": "These royal robes not only make you appear noble, they allow you to see the nobility within others. Increases Perception by <%= per %>. Enchanted Armoire: King of Diamonds Set (Item 1 of 4).",
- "armorArmoireFlutteryFrockText": "Fluttery Frock",
+ "armorArmoireFlutteryFrockText": "Hábito tremente",
"armorArmoireFlutteryFrockNotes": "A light and airy gown with a wide skirt the butterflies might mistake for a giant blossom! Increases Constitution, Perception, and Strength by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 1 of 4).",
"armorArmoireCobblersCoverallsText": "Cobbler's Coveralls",
"armorArmoireCobblersCoverallsNotes": "These sturdy coveralls have lots of pockets for tools, leather scraps, and other useful items! Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 1 of 3).",
@@ -814,7 +814,7 @@
"armorArmoireSoftRedSuitNotes": "Red is such an invigorating color. If you need to wake up bright and early, this suit could make the perfect pajamas... Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Red Loungewear Set (Item 2 of 3).",
"armorArmoireScribesRobeText": "Scribe's Robes",
"armorArmoireScribesRobeNotes": "These velvety robes are woven with inspirational and motivational magic. Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Scribe Set (Item 1 of 3).",
- "headgear": "helm",
+ "headgear": "helmo",
"headgearCapitalized": "Casco",
"headBase0Text": "No Headgear",
"headBase0Notes": "Nada na cabeza.",
@@ -840,7 +840,7 @@
"headRogue5Notes": "Conceals even thoughts from those who would probe them. Increases Perception by <%= per %>.",
"headWizard1Text": "Sombreiro de Mago",
"headWizard1Notes": "Simple, comfortable, and fashionable. Increases Perception by <%= per %>.",
- "headWizard2Text": "Cornuthaum",
+ "headWizard2Text": "Cornutauma",
"headWizard2Notes": "Traditional headgear of the itinerant wizard. Increases Perception by <%= per %>.",
"headWizard3Text": "Sombreiro de Astrólogo",
"headWizard3Notes": "Adorned with the rings of Saturn. Increases Perception by <%= per %>.",
@@ -872,7 +872,7 @@
"headSpecialPyromancersTurbanNotes": "This magical turban will help you breathe even in the thickest smoke! Plus it's extremely cozy! Increases Strength by <%= str %>.",
"headSpecialBardHatText": "Bardic Cap",
"headSpecialBardHatNotes": "Stick a feather in your cap and call it \"productivity\"! Increases Intelligence by <%= int %>.",
- "headSpecialLunarWarriorHelmText": "Lunar Warrior Helm",
+ "headSpecialLunarWarriorHelmText": "Helmo pugnaz lunar",
"headSpecialLunarWarriorHelmNotes": "The power of the moon will strengthen you in battle! Increases Strength and Intelligence by <%= attrs %> each.",
"headSpecialMammothRiderHelmText": "Mammoth Rider Helm",
"headSpecialMammothRiderHelmNotes": "Don't let its fluffiness fool you--this hat will grant you piercing powers of perception! Increases Perception by <%= per %>.",
@@ -1076,7 +1076,7 @@
"headSpecialWinter2019MageNotes": "Stand well back and watch the sparks fly! Your tasks cannot stand against this might! Increases Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
"headSpecialWinter2019HealerText": "Starry Crown",
"headSpecialWinter2019HealerNotes": "On the darkest, coldest winter night, one particular star shines its brightest. This crown is made from metal from that star, to help you shine! Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
- "headSpecialGaymerxText": "Helmo de Cabaleiro Arco Iris",
+ "headSpecialGaymerxText": "Helmo pugnaz do arco da vella",
"headSpecialGaymerxNotes": "Para celebrar a Conferencia GaymerX, este casco especial está decorado cun motivo de arcoiris radiante e colorido! GaymerX é unha convención de xogos que festexa LGTBQ e o xogo e está aberta a tod@s.",
"headMystery201402Text": "Helmo Alado",
"headMystery201402Notes": "Esta diadema alada empapa coa velocidade do vento ao que a leve! Non confire beneficio. Obxecto de Subscritor de febreiro de 2014.",
@@ -1116,7 +1116,7 @@
"headMystery201605Notes": "Setenta e seis dragóns encabezaron o gran desfile, con cento dez grifos preto! Non confire beneficio. Obxecto de Subscritor de maio de 2016.",
"headMystery201606Text": "Gorra de Selkie",
"headMystery201606Notes": "Tararea a melodía do océano mentres te fundes coas bandas de focas! Non confire beneficio. Obxecto de Subscritor de xuño de 2016.",
- "headMystery201607Text": "Helmo de Ladrón do Fondo Mariño",
+ "headMystery201607Text": "Helmo de renarte do fondo mariño",
"headMystery201607Notes": "As algas que medran neste helmo axúdanche a camuflarte. Non confire beneficio. Obxecto de Subscritor de xullo de 2016.",
"headMystery201608Text": "Helmo de Raios",
"headMystery201608Notes": "Este helmo chispeante conduce a electricidade! Non confire beneficio. Obxecto de Subscritor de agosto de 2016.",
@@ -1133,7 +1133,7 @@
"headMystery201703Text": "Shimmer Helm",
"headMystery201703Notes": "The soft light reflected from this horned helm will soothe even the most enraged foe. Confers no benefit. March 2017 Subscriber Item.",
"headMystery201705Text": "Feathered Fighter Helm",
- "headMystery201705Notes": "Habitica is known for its fierce and productive Gryphon Warriors! Join their prestigious ranks when you don this feathery helm. Confers no benefit. May 2017 Subscriber Item.",
+ "headMystery201705Notes": "",
"headMystery201707Text": "Jellymancer Helm",
"headMystery201707Notes": "Need some extra hands for your tasks? This translucent jelly helm has quite a few tentacles to lend you help! Confers no benefit. July 2017 Subscriber Item.",
"headMystery201710Text": "Imperious Imp Helm",
@@ -1474,7 +1474,7 @@
"shieldArmoireGoldenBatonNotes": "When you dance into battle waving this baton to the beat, you are unstoppable! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Independent Item.",
"shieldArmoireAntiProcrastinationShieldText": "Anti-Procrastination Shield",
"shieldArmoireAntiProcrastinationShieldNotes": "This strong steel shield will help you block distractions when they approach! Increases Constitution by <%= con %>. Enchanted Armoire: Anti-Procrastination Set (Item 3 of 3).",
- "shieldArmoireHorseshoeText": "Horseshoe",
+ "shieldArmoireHorseshoeText": "Ferra",
"shieldArmoireHorseshoeNotes": "Help protect the feet of your hooved mounts with this iron shoe. Increases Constitution, Perception, and Strength by <%= attrs %> each. Enchanted Armoire: Farrier Set (Item 3 of 3).",
"shieldArmoireHandmadeCandlestickText": "Handmade Candlestick",
"shieldArmoireHandmadeCandlestickNotes": "Your fine wax wares provide light and warmth to grateful Habiticans! Increases Strength by <%= str %>. Enchanted Armoire: Candlestick Maker Set (Item 3 of 3).",
@@ -1493,11 +1493,11 @@
"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).",
+ "shieldArmoireSoftBluePillowNotes": "",
"shieldArmoireSoftRedPillowText": "Soft Red Pillow",
- "shieldArmoireSoftRedPillowNotes": "The prepared warrior packs a pillow for any expedition. Protect yourself from those tough tasks... even while you nap. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Red Loungewear Set (Item 3 of 3).",
+ "shieldArmoireSoftRedPillowNotes": "",
"shieldArmoireSoftGreenPillowText": "Soft Green Pillow",
- "shieldArmoireSoftGreenPillowNotes": "The practical warrior packs a pillow for any expedition. Ward off those pesky chores... even while you nap. Increases Constitution by <%= con %> and Intelligence by <%= int %>. Enchanted Armoire: Green Loungewear Set (Item 3 of 3).",
+ "shieldArmoireSoftGreenPillowNotes": "",
"shieldArmoireMightyQuillText": "Mighty Quill",
"shieldArmoireMightyQuillNotes": "Mightier than the sword, they say! Increases Perception by <%= per %>. Enchanted Armoire: Scribe Set (Item 2 of 3).",
"back": "Accesorio de Lombo",
@@ -1605,7 +1605,7 @@
"bodyMystery201711Notes": "This soft knitted scarf looks quite majestic blowing in the wind. Confers no benefit. November 2017 Subscriber Item.",
"bodyArmoireCozyScarfText": "Cozy Scarf",
"bodyArmoireCozyScarfNotes": "This fine scarf will keep you warm as you go about your wintry business. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Lamplighter's Set (Item 4 of 4).",
- "headAccessory": "accesorio para a cabeza",
+ "headAccessory": "Accesorio para a cabeza",
"headAccessoryCapitalized": "Accesorio para a Cabeza",
"accessories": "Accesorios",
"animalEars": "Orellas de Animais",
@@ -1632,7 +1632,7 @@
"headAccessorySpecialSpring2016WarriorText": "Orellas de Rato Vermellas",
"headAccessorySpecialSpring2016WarriorNotes": "Para oír mellor a túa canción nos campos de batalla clamorosos. Non confire beneficio. Edición Limitada de Primavera de 2016.",
"headAccessorySpecialSpring2016MageText": "Orellas de Gato Amarelas",
- "headAccessorySpecialSpring2016MageNotes": "Estas orellas agudas poden detectar o minúsculo zumbido do Maná ambiente, ou os tenues pasos dun Ladrón. Non confire beneficio. Edición Limitada de Primavera de 2016.",
+ "headAccessorySpecialSpring2016MageNotes": "Estas orellas agudas poden detectar o minúsculo zunido do maná ambiente, ou os tenues pasos de renarte. Non confire beneficio. Equipo de primavera de 2016 de edición limitada.",
"headAccessorySpecialSpring2016HealerText": "Orellas de Coello Violetas",
"headAccessorySpecialSpring2016HealerNotes": "Sobresaen como bandeiras por riba dos combates, avisando aos outros sobre onde acudir á túa axuda. Non confire beneficio. Edición Limitada de Primavera de 2016.",
"headAccessorySpecialSpring2017RogueText": "Red Bunny Ears",
@@ -1741,5 +1741,91 @@
"eyewearArmoirePlagueDoctorMaskNotes": "An authentic mask worn by the doctors who battle the Plague of Procrastination. Increases Constitution and Intelligence by <%= attrs %> each. Enchanted Armoire: Plague Doctor Set (Item 2 of 3).",
"eyewearArmoireGoofyGlassesText": "Goofy Glasses",
"eyewearArmoireGoofyGlassesNotes": "Perfect for going incognito or just making your partymates giggle. Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
- "twoHandedItem": "Two-handed item."
+ "twoHandedItem": "Two-handed item.",
+ "armorArmoireInvernessCapeText": "Capa escocesa",
+ "weaponSpecialFall2019WarriorText": "Tridente de garra",
+ "headSpecialSpring2019HealerText": "Helmo de pisco",
+ "headSpecialSpring2019MageText": "Sombreiro ámbar",
+ "shieldSpecialFall2019HealerText": "Grimorio grotesco",
+ "weaponArmoireSlingshotText": "Tiracroios",
+ "shieldMystery201902Text": "Confeti críptico",
+ "weaponArmoireAstronomersTelescopeText": "Telescopio de astronomía",
+ "armorArmoireBathtubText": "Bañeira",
+ "armorSpecialSpring2019MageText": "Bata ámbar",
+ "weaponSpecialSpring2019HealerText": "Canción primaveral",
+ "armorArmoireBoatingJacketText": "Chaqueta mariña",
+ "armorSpecialSummer2019WarriorText": "Armadura de cuncha",
+ "armorSpecialSummer2019RogueText": "Cola de peixe martelo",
+ "shieldArmoireTrustyUmbrellaText": "Paraugas de confianza",
+ "armorMystery201904Text": "Traxe opalescente",
+ "armorMystery201903Text": "Armadura de escamarabilla",
+ "armorArmoireAstronomersRobeText": "Bata de astronomía",
+ "weaponSpecialFall2019HealerText": "Filacterio aterrador",
+ "armorArmoireChefsJacketText": "Chaqueta de cociña",
+ "weaponSpecialSummer2019MageText": "Florecer radiante",
+ "weaponArmoireJugglingBallsText": "Bólas de malabares",
+ "weaponSpecialSpring2019MageText": "Bastón ámbar",
+ "headSpecialSpring2019RogueText": "Helmo de nube",
+ "headArmoireNephriteHelmText": "Helmo nefrita",
+ "headSpecialSummer2019WarriorText": "Helmo de tartaruga",
+ "headSpecialFall2019HealerText": "Mitra escura",
+ "headArmoireNightcapText": "Gorro de durmir",
+ "shieldSpecialSummer2019WarriorText": "Escudo de media cuncha",
+ "shieldArmoireBagpipesText": "Gaita",
+ "bodyMystery201901Text": "Ombreira boreal",
+ "armorArmoireBlueMoonShozokuNotes": "Unha estraña serenidade arrodea a quen porta esta armadura. Aumenta a constitución en <%= con %>. Hucha encantada: conxunto de renarte de lúa azul (peza 4 de 4).",
+ "headSpecialSummer2019RogueText": "Helmo de peixe martelo",
+ "weaponArmoireMagnifyingGlassText": "Lupa",
+ "shieldSpecialSpring2019HealerText": "Escudo de casca de ovo",
+ "shieldSpecialSpring2019WarriorText": "Escudo de follas",
+ "headArmoireBoaterHatText": "Sombreiro mariño",
+ "shieldArmoireMightyPizzaText": "Pizza poderosa",
+ "weaponArmoireChefsSpoonText": "Culler de mestre",
+ "headMystery201907Text": "Gorra cara atrás",
+ "headSpecialSummer2019HealerText": "Coroa de cuncha",
+ "weaponArmoireNephriteBowText": "Arco de nefrita",
+ "weaponArmoireResplendentRapierText": "Estoque resplandecente",
+ "shieldArmoireMasteredShadowText": "Sombra dominada",
+ "headSpecialFall2019MageText": "Máscara de ciclope",
+ "armorSpecialSpring2019HealerText": "Disfrace de pisco",
+ "weaponSpecialSummer2019HealerText": "Variña de pompas",
+ "armorArmoireNephriteArmorText": "Armadura de nefrita",
+ "headMystery201901Text": "Helmo boreal",
+ "headSpecialWinter2021RogueNotes": "Unha persoa renarte pode pasar desapercibida no bosque cunha máscara coma esta. Aumenta a percepción en <%= per %>. Equipo de inverno de 2020 e 2021 de edición limitada.",
+ "headArmoireTricornHatText": "Tricorne",
+ "armorSpecialSpring2019WarriorText": "Armadura de orquídea",
+ "weaponArmoireFloridFanText": "Abanico florido",
+ "weaponSpecialSpring2019RogueText": "Raio",
+ "armorSpecialSummer2019MageText": "Vestido floral",
+ "weaponSpecialSpring2020MageText": "Pingas de chuvia",
+ "weaponSpecialWinter2022RogueNotes": "A prata e o ouro son un vicio de renarte, va que si? Pois nesa liña van estes. Aumenta a fortaleza en <%= str %>. Equipo de inverno de 2021 e 2022 de edición limitada.",
+ "shieldSpecialFall2019WarriorText": "Escudo de negro corvo",
+ "headArmoireToqueBlancheText": "Toga branca",
+ "headArmoireVernalHenninText": "Hennin primaveral",
+ "headArmoireAstronomersHatText": "Sombreiro de astronomía",
+ "headArmoireDeerstalkerCapText": "Pucha con orelleiras",
+ "headArmoireGlengarryText": "Boina escocesa",
+ "shieldArmoirePolishedPocketwatchText": "Reloxo de peto pulido",
+ "shieldArmoireDustpanText": "Recolledor",
+ "eyewearMystery201907Text": "Gafas de sol doces",
+ "eyewearSpecialFall2019HealerText": "Face escura",
+ "weaponSpecialSpring2019WarriorText": "Espada de talo",
+ "weaponArmoireBambooCaneText": "Caña de bambú",
+ "weaponArmoireMedievalWashboardText": "Táboa de lavar",
+ "armorMystery201907Text": "Camisa de flores",
+ "weaponSpecialSummer2019RogueText": "Áncora anticuada",
+ "headSpecialSpring2019WarriorText": "Helmo de orquídea",
+ "shieldSpecialPiDayText": "Escudo de pi",
+ "weaponSpecialSummer2019WarriorText": "Coral vermello",
+ "weaponSpecialFall2019RogueText": "Atril de música",
+ "weaponSpecialFall2019MageText": "Bastón torto",
+ "shieldSpecialSpring2022WarriorText": "Nubeiro",
+ "shieldSpecialSpring2022WarriorNotes": "Tiveches algunha vez un deses días nos que parece que te persegue un nubeiro? Pois ben, debes ter moita sorte, porque de seguida brotarán as flores máis fermosas aos teus pés! Aumenta a constitución en <%= con %>. Equipo de primavera de 2022 de edición limitada.",
+ "armorArmoireVernalVestmentText": "Chaleco primaveral",
+ "shieldSpecialSummer2019HealerText": "Trompeta de cuncha",
+ "armorSpecialSpring2019RogueText": "Armadura de nube",
+ "weaponArmoireVernalTaperText": "Encolla primaveral",
+ "headSpecialPiDayText": "Sombreiro de pi",
+ "headSpecialWinter2022RogueNotes": "O que? Eh? Renarte onde? Síntoo, non escoito nada con estes fogos artificiais! Aumenta a percepción en <%= per %>. Equipo de inverno de 2021 e 2022 de edición limitada.",
+ "headSpecialWinter2020RogueNotes": "Unha persoa renarte baixa pola rúa con ese sombreiro, e a xente entende que non lle teñen medo a nada. Aumenta a percepción en <%= per %>. Equipo de inverno de 2019 e 2020 de edición limitada."
}
diff --git a/website/common/locales/gl/generic.json b/website/common/locales/gl/generic.json
index 4035e95e2b..7a68e7ddfb 100755
--- a/website/common/locales/gl/generic.json
+++ b/website/common/locales/gl/generic.json
@@ -2,38 +2,38 @@
"languageName": "Inglés",
"stringNotFound": "Cadea de carácteres \"<%= string %>\" non atopada.",
"habitica": "Habitica",
- "onward": "Onward!",
- "done": "Done",
- "gotIt": "Got it!",
+ "onward": "Adiante!",
+ "done": "Feito",
+ "gotIt": "Entendido!",
"titleTimeTravelers": "Viaxantes no Tempo",
"titleSeasonalShop": "Tenda de Tempada",
- "saveEdits": "Save Edits",
- "showMore": "Show More",
- "showLess": "Show Less",
- "markdownHelpLink": "Markdown formatting help",
+ "saveEdits": "Gardar os cambios",
+ "showMore": "Mostrar máis",
+ "showLess": "Mostrar menos",
+ "markdownHelpLink": "Axuda do formato Markdown",
"bold": "**Negriña**",
"markdownImageEx": "",
"code": "'código'",
"achievements": "Logros",
- "basicAchievs": "Basic Achievements",
- "seasonalAchievs": "Seasonal Achievements",
- "specialAchievs": "Special Achievements",
+ "basicAchievs": "Logros básicos",
+ "seasonalAchievs": "Logros de tempada",
+ "specialAchievs": "Logros especiais",
"modalAchievement": "Logro!",
"special": "Especial",
"site": "Sitio",
"help": "Axuda",
"user": "Usuario",
"market": "Mercado",
- "newSubscriberItem": "You have new
Mystery Items",
+ "newSubscriberItem": "Tes novos
obxectos misteriosos",
"subscriberItemText": "Cada mes, os subscritores recibirán un obxecto misterioso. Normalmente, sae arredor dunha semana antes do final do mes. Mira a páxina \"Obxecto Misterioso\" da wiki para máis información.",
"all": "Todo",
"none": "Nada",
- "more": "<%= count %> more",
+ "more": "<%= count %> máis",
"and": "e",
"submit": "Enviar",
"close": "Pechar",
"saveAndClose": "Gardar e Pechar",
- "saveAndConfirm": "Save & Confirm",
+ "saveAndConfirm": "Gardar e confirmar",
"cancel": "Cancelar",
"ok": "OK",
"add": "Engadir",
@@ -47,7 +47,7 @@
"delete": "Eliminar",
"gemsPopoverTitle": "Xemas",
"gems": "Xemas",
- "needMoreGems": "Need More Gems?",
+ "needMoreGems": "Necesitas máis xemas?",
"needMoreGemsInfo": "Purchase Gems now, or become a subscriber to buy Gems with Gold, get monthly mystery items, enjoy increased drop caps and more!",
"veteran": "Veterano",
"veteranText": "Has weathered Habit The Grey (our pre Angular website), and has gained many battle-scars from its bugs.",
@@ -55,7 +55,7 @@
"originalUserText": "Un dos
moi primeiros adoptadores orixinais. Falando de testador alpha!",
"habitBirthday": "Festexo de Aniversario de Habitica",
"habitBirthdayText": "Celebrou o Festexo de Aniversario de Habitica!",
- "habitBirthdayPluralText": "Celebrated <%= count %> Habitica Birthday Bashes!",
+ "habitBirthdayPluralText": "Festexaches <%= count %> aniversarios de Habitica!",
"habiticaDay": "Día do Nome de Habitica",
"habiticaDaySingularText": "Celebrou o Día do Nome de Habitica! Grazas por ser un usuari@ fantástic@.",
"habiticaDayPluralText": "Celebrated <%= count %> Naming Days! Thanks for being a fantastic user.",
@@ -68,7 +68,7 @@
"error": "Erro",
"menu": "Menú",
"notifications": "Notificacións",
- "noNotifications": "You're all caught up!",
+ "noNotifications": "Estás ao día!",
"noNotificationsText": "The notification fairies give you a raucous round of applause! Well done!",
"clear": "Quitar",
"audioTheme": "Tema Audio",
@@ -79,79 +79,79 @@
"audioTheme_luneFoxTheme": "Tema de LuneFox",
"audioTheme_rosstavoTheme": "Tema de Rosstavo",
"audioTheme_dewinTheme": "Tema de Dewin",
- "audioTheme_airuTheme": "Airu's Theme",
- "audioTheme_beatscribeNesTheme": "Beatscribe's NES Theme",
- "audioTheme_arashiTheme": "Arashi's Theme",
- "audioTheme_triumphTheme": "Triumph Theme",
- "audioTheme_lunasolTheme": "Lunasol Theme",
- "audioTheme_spacePenguinTheme": "SpacePenguin's Theme",
- "audioTheme_maflTheme": "MAFL Theme",
- "audioTheme_pizildenTheme": "Pizilden's Theme",
- "audioTheme_farvoidTheme": "Farvoid Theme",
+ "audioTheme_airuTheme": "Tema de Airu",
+ "audioTheme_beatscribeNesTheme": "Tema da NES de Beatscribe",
+ "audioTheme_arashiTheme": "Tema de Arashi",
+ "audioTheme_triumphTheme": "Tema de Triumph",
+ "audioTheme_lunasolTheme": "Tema de Lunasol",
+ "audioTheme_spacePenguinTheme": "Tema de SpacePenguin",
+ "audioTheme_maflTheme": "Tema de MAFL",
+ "audioTheme_pizildenTheme": "Tema de Pizilden",
+ "audioTheme_farvoidTheme": "Tema de Farvoid",
"reportBug": "Avisar dun Erro",
"overview": "Resumo para Novos Usuarios",
"dateFormat": "Formato da Data",
"achievementStressbeast": "Salvador de Estoïkalmo",
- "achievementStressbeastText": "Axudou a vencer a Abominable Besta do Estrés durante o Evento do Inverno Marabilloso en 2014.",
+ "achievementStressbeastText": "Axudaches a vencer á abominábel besta da agonía durante o inverno das marabillas de 2014!",
"achievementBurnout": "Salvador dos Campos Florecentes",
"achievementBurnoutText": "Axudou a vencer a Fatiga e restablecer os Espíritos do Agotamento durante o Evento do Festival de Outono de 2015!",
- "achievementBewilder": "Savior of Mistiflying",
- "achievementBewilderText": "Helped defeat the Be-Wilder during the 2016 Spring Fling Event!",
- "achievementDysheartener": "Savior of the Shattered",
- "achievementDysheartenerText": "Helped defeat the Dysheartener during the 2018 Valentine's Event!",
- "cards": "Cards",
- "sentCardToUser": "You sent a card to <%= profileName %>",
- "cardReceived": "You received a
<%= card %>",
+ "achievementBewilder": "Salvar ao Neboador",
+ "achievementBewilderText": "Axudaches a derrotar ao Asilvestrador durante a aventura de primavera de 2016!",
+ "achievementDysheartener": "Salvar o esnaquizado",
+ "achievementDysheartenerText": "Axudaches a derrotar ao Descorazonador durante a celebración de San Valentín de 2018!",
+ "cards": "Cartóns",
+ "sentCardToUser": "Enviaches unha tarxeta a <%= profileName %>",
+ "cardReceived": "Recibiches unha
<%= card %>",
"greetingCard": "Carta de Saúdo",
"greetingCardExplanation": "Os dous recibides o logro Alegre Compinche!",
"greetingCardNotes": "Enviar unha Carta de Saúdo a un membro do equipo.",
"greeting0": "Ola!",
"greeting1": "Só era para dicir ola :)",
"greeting2": "'saúda coa man freneticamente'",
- "greeting3": "Que tal?",
+ "greeting3": "Boas!",
"greetingCardAchievementTitle": "Alegre Compinche",
- "greetingCardAchievementText": "Hey! Hi! Hello! Sent or received <%= count %> greeting cards.",
+ "greetingCardAchievementText": "Ei! Ola! Enviaches ou recibiches <%= count %> cartas de saúdo.",
"thankyouCard": "Carta de Agradecemento",
- "thankyouCardExplanation": "Os dous recibides o logro Moi Agradecid@",
+ "thankyouCardExplanation": "Recibistes o logro «Gran agradecemento»!",
"thankyouCardNotes": "Enviar unha Carta de Agradecemento a un membro do equipo.",
"thankyou0": "Moitas grazas!",
- "thankyou1": "Grazas, grazas, grazas!",
+ "thankyou1": "Mil grazas!",
"thankyou2": "Envíoche un millón de grazas.",
"thankyou3": "Estou moi agradecid@, grazas!",
- "thankyouCardAchievementTitle": "Moi Agradecid@",
+ "thankyouCardAchievementTitle": "Gran agradecemento",
"thankyouCardAchievementText": "Thanks for being thankful! Sent or received <%= count %> Thank-You cards.",
- "birthdayCard": "Tarxeta de Cumpreanos",
+ "birthdayCard": "Tarxeta de aniversario",
"birthdayCardExplanation": "Os dous recibides o logro Próspero Cumpreanos!",
"birthdayCardNotes": "Enviar unha Tarxeta de Cumpreanos a un membro do equipo.",
"birthday0": "Feliz cumpreanos!",
- "birthdayCardAchievementTitle": "Próspero Cumpreanos",
+ "birthdayCardAchievementTitle": "Próspero aniversario",
"birthdayCardAchievementText": "Many happy returns! Sent or received <%= count %> birthday cards.",
- "congratsCard": "Congratulations Card",
- "congratsCardExplanation": "You both receive the Congratulatory Companion achievement!",
- "congratsCardNotes": "Send a Congratulations card to a party member.",
- "congrats0": "Congratulations on your success!",
- "congrats1": "I'm so proud of you!",
- "congrats2": "Well done!",
- "congrats3": "A round of applause for you!",
- "congrats4": "Bask in your well-deserved success!",
- "congratsCardAchievementTitle": "Congratulatory Companion",
+ "congratsCard": "Carta de parabéns",
+ "congratsCardExplanation": "Recibistes o logro «Parabéns compartidos»!",
+ "congratsCardNotes": "Envía unha tarxeta de parabéns a unha persoa do grupo.",
+ "congrats0": "Parabéns polo éxito!",
+ "congrats1": "Sinto moito orgullo de ti!",
+ "congrats2": "Ben feito!",
+ "congrats3": "Un gran aplauso para ti!",
+ "congrats4": "Goza do teu ben merecido éxito!",
+ "congratsCardAchievementTitle": "Parabéns compartidos",
"congratsCardAchievementText": "It's great to celebrate your friends' achievements! Sent or received <%= count %> congratulations cards.",
- "getwellCard": "Get Well Card",
- "getwellCardExplanation": "You both receive the Caring Confidant achievement!",
- "getwellCardNotes": "Send a Get Well card to a party member.",
- "getwell0": "Hope you feel better soon!",
- "getwell1": "Take care! <3",
- "getwell2": "You're in my thoughts!",
- "getwell3": "Sorry you're not feeling your best!",
- "getwellCardAchievementTitle": "Caring Confidant",
+ "getwellCard": "Tarxeta de bos desexos",
+ "getwellCardExplanation": "Recibistes o logro «Compañeiriña leal»!",
+ "getwellCardNotes": "Envía unha tarxeta de bos desexos a unha persoa do grupo.",
+ "getwell0": "Espero que mellores!",
+ "getwell1": "Cóidate! <3",
+ "getwell2": "Estás nos meus pensamentos!",
+ "getwell3": "Lamento que non esteas no teu mellor momento!",
+ "getwellCardAchievementTitle": "Compañeiriña leal",
"getwellCardAchievementText": "Well-wishes are always appreciated. Sent or received <%= count %> get well cards.",
- "goodluckCard": "Good Luck Card",
- "goodluckCardExplanation": "You both receive the Lucky Letter achievement!",
- "goodluckCardNotes": "Send a good luck card to a party member.",
- "goodluck0": "May luck always follow you!",
- "goodluck1": "Wishing you lots of luck!",
- "goodluck2": "I hope luck is on your side today and always!!",
- "goodluckCardAchievementTitle": "Lucky Letter",
+ "goodluckCard": "Tarxeta de boa sorte",
+ "goodluckCardExplanation": "Recibistes o logro «Carta afortunada»!",
+ "goodluckCardNotes": "Envía unha tarxeta para desexar boa sorte a unha persoa do grupo.",
+ "goodluck0": "Que a sorte te acompañe!",
+ "goodluck1": "Moita sorte!",
+ "goodluck2": "Espero que a sorte estea da túa banda sempre!",
+ "goodluckCardAchievementTitle": "Carta afortunada",
"goodluckCardAchievementText": "Wishes for good luck are great encouragement! Sent or received <%= count %> good luck cards.",
"streakAchievement": "Gañaches un logro de racha!",
"firstStreakAchievement": "Racha de 21 Días",
@@ -162,38 +162,53 @@
"wonChallengeShare": "Gañei un desafío en Habitica!",
"orderBy": "Ordear Por <%= item %>",
"you": "(ti)",
- "loading": "Loading...",
- "userIdRequired": "User ID is required",
- "resetFilters": "Clear all filters",
- "applyFilters": "Apply Filters",
- "wantToWorkOn": "I want to work on:",
- "categories": "Categories",
- "animals": "Animals",
- "exercise": "Exercise",
- "creativity": "Creativity",
- "health_wellness": "Health & Wellness",
- "self_care": "Self-Care",
+ "loading": "Cargando…",
+ "userIdRequired": "O identificador de usuario é necesario",
+ "resetFilters": "Retirar todos os filtros",
+ "applyFilters": "Aplicar os filtros",
+ "wantToWorkOn": "Quero traballar en:",
+ "categories": "Categorías",
+ "animals": "Animais",
+ "exercise": "Exercicio",
+ "creativity": "Creatividade",
+ "health_wellness": "Saúde e benestar",
+ "self_care": "Coidado persoal",
"habitica_official": "Habitica Official",
- "academics": "Academics",
- "advocacy_causes": "Advocacy + Causes",
- "entertainment": "Entertainment",
+ "academics": "Aprendizaxe",
+ "advocacy_causes": "Defensa de causas",
+ "entertainment": "Entretemento",
"finance": "Finance",
- "health_fitness": "Health + Fitness",
- "hobbies_occupations": "Hobbies + Occupations",
- "location_based": "Location-based",
- "mental_health": "Mental Health + Self-Care",
- "getting_organized": "Getting Organized",
- "self_improvement": "Self-Improvement",
- "spirituality": "Spirituality",
- "time_management": "Time-Management + Accountability",
- "recovery_support_groups": "Recovery + Support Groups",
- "dismissAll": "Dismiss All",
+ "health_fitness": "Saúde e exercicio",
+ "hobbies_occupations": "Lecer e aficións",
+ "location_based": "Con localización",
+ "mental_health": "Saúde mental e coidado persoal",
+ "getting_organized": "Organizarse",
+ "self_improvement": "Mellora persoal",
+ "spirituality": "Espiritualidade",
+ "time_management": "Xestión do tempo e responsabilidade",
+ "recovery_support_groups": "Recuperación e grupos de axuda",
+ "dismissAll": "Ignoralo todo",
"messages": "Messages",
- "emptyMessagesLine1": "You don't have any messages",
+ "emptyMessagesLine1": "Non tes ningunha mensaxe",
"emptyMessagesLine2": "Send a message to start a conversation!",
- "userSentMessage": "
<%- user %> sent you a message",
- "letsgo": "Let's Go!",
- "selected": "Selected",
- "howManyToBuy": "How many would you like to buy?",
- "contactForm": "Contact the Moderation Team"
+ "userSentMessage": "
<%- user %> enviouche unha mensaxe",
+ "letsgo": "Vamos!",
+ "selected": "Seleccionado",
+ "howManyToBuy": "Cantas queres comprar?",
+ "contactForm": "Contacta co equipo de moderación",
+ "finish": "Rematar",
+ "congratulations": "Parabéns!",
+ "options": "Opcións",
+ "reportDescription": "Descrición",
+ "demo": "Demostración",
+ "onboardingAchievs": "Logros de incorporación",
+ "reportEmailPlaceholder": "O teu enderezo de correo electrónico",
+ "submitBugReport": "Enviar un informe de erro",
+ "reportSent": "Enviouse o informe de erro!",
+ "loadEarlierMessages": "Cargar as mensaxes anteriores",
+ "askQuestion": "Facer unha pregunta",
+ "emptyReportBugMessage": "Falta a mensaxe do informe de erro",
+ "reportDescriptionText": "Inclúe capturas de pantalla ou erros da consola de JavaScript se puidese resultar útil.",
+ "reportDescriptionPlaceholder": "Describe aquí o erro en detalle",
+ "reportEmailError": "Forneza un enderezo de correo electrónico válido"
}
diff --git a/website/common/locales/gl/groups.json b/website/common/locales/gl/groups.json
index 8c8621cf83..1cd699f45f 100755
--- a/website/common/locales/gl/groups.json
+++ b/website/common/locales/gl/groups.json
@@ -1,17 +1,17 @@
{
"tavern": "Chat da Taberna",
- "tavernChat": "Tavern Chat",
- "innCheckOutBanner": "You are currently checked into the Inn. Your Dailies won't damage you and you won't make progress towards Quests.",
- "innCheckOutBannerShort": "You are checked into the Inn.",
- "resumeDamage": "Resume Damage",
- "helpfulLinks": "Helpful Links",
+ "tavernChat": "Conversa da taberna",
+ "innCheckOutBanner": "",
+ "innCheckOutBannerShort": "",
+ "resumeDamage": "",
+ "helpfulLinks": "",
"communityGuidelinesLink": "Community Guidelines",
"lookingForGroup": "Looking for Group (Party Wanted) Posts",
"dataDisplayTool": "Data Display Tool",
"requestFeature": "Request a Feature",
"askAQuestion": "Ask a Question",
"askQuestionGuild": "Ask a Question (Habitica Help guild)",
- "contributing": "Contributing",
+ "contributing": "Contribuír",
"faq": "FAQ",
"tutorial": "Tutorial",
"glossary": "
Glossary",
@@ -39,7 +39,7 @@
"newMsgParty": "Your Party,
<%- name %>, has new posts",
"chat": "Chat",
"sendChat": "Enviar Chat",
- "group": "Group",
+ "group": "Grupo",
"groupName": "Nome do Grupo",
"groupLeader": "Lider do Grupo",
"groupID": "ID do Grupo",
@@ -102,7 +102,7 @@
"abuseReported": "Grazas por denunciar esta transgresión. Notificouse aos moderadores.",
"whyReportingPost": "Why are you reporting this post?",
"whyReportingPostPlaceholder": "Please help our moderators by letting us know why you are reporting this post for a violation, e.g., spam, swearing, religious oaths, bigotry, slurs, adult topics, violence.",
- "optional": "Optional",
+ "optional": "Opcional",
"needsTextPlaceholder": "Escribe a túa mensaxe aquí.",
"copyMessageAsToDo": "Copiar mensaxe como Tarefa",
"copyAsTodo": "Copy as To-Do",
@@ -162,7 +162,7 @@
"onlyCreatorOrAdminCanDeleteChat": "Non tes permiso para eliminar esta mensaxe!",
"onlyGroupLeaderCanEditTasks": "Non tes dereito de xestionar tarefas!",
"onlyGroupTasksCanBeAssigned": "Só se poden asignar tarefas de grupo.",
- "assignedTo": "Assigned To",
+ "assignedTo": "Asignar a",
"assignedToUser": "Assigned to
<%- userName %>",
"assignedToMembers": "Assigned to <%= userCount %> members",
"assignedToYouAndMembers": "Assigned to you and <%= userCount %> members",
@@ -185,7 +185,7 @@
"yourTaskHasBeenApproved": "Your task
<%- taskText %> has been approved.",
"taskNeedsWork": "
<%- managerName %> marked
<%- taskText %> as needing additional work.",
"userHasRequestedTaskApproval": "
<%- user %> requests approval for
<%- taskName %>",
- "approve": "Approve",
+ "approve": "Aprobar",
"approveTask": "Approve Task",
"needsWork": "Needs Work",
"viewRequests": "View Requests",
@@ -226,8 +226,8 @@
"chatPlaceholder": "Type your message to Guild members here",
"partyChatPlaceholder": "Type your message to Party members here",
"fetchRecentMessages": "Fetch Recent Messages",
- "like": "Like",
- "liked": "Liked",
+ "like": "Gustar",
+ "liked": "Gustou",
"inviteToGuild": "Invite to Guild",
"inviteToParty": "Invite to Party",
"inviteEmailUsername": "Invite via Email or Username",
@@ -243,7 +243,7 @@
"guildsDiscovery": "Discover Guilds",
"role": "Role",
"guildLeader": "Guild Leader",
- "member": "Member",
+ "member": "Membro",
"guildSize": "Guild Size",
"goldTier": "Gold Tier",
"silverTier": "Silver Tier",
@@ -253,7 +253,7 @@
"onlyLeaderCreatesChallengesDetail": "With this option selected, ordinary group members cannot create Challenges for the group.",
"privateGuild": "Private Guild",
"charactersRemaining": "<%= characters %> characters remaining",
- "guildSummary": "Summary",
+ "guildSummary": "Resumo",
"guildSummaryPlaceholder": "Write a short description advertising your Guild to other Habiticans. What is the main purpose of your Guild and why should people join it? Try to include useful keywords in the summary so that Habiticans can easily find it when they search!",
"groupDescription": "Description",
"guildDescriptionPlaceholder": "Use this section to go into more detail about everything that Guild members should know about your Guild. Useful tips, helpful links, and encouraging statements all go here!",
@@ -276,7 +276,7 @@
"playInPartyDescription": "Take on amazing quests with friends or on your own. Battle monsters, create Challenges, and help yourself stay accountable through Parties.",
"wantToJoinPartyTitle": "Want to join a Party?",
"wantToJoinPartyDescription": "Give your username to a friend who already has a Party, or head to the
Party Wanted Guild to meet potential comrades!",
- "copy": "Copy",
+ "copy": "Copiar",
"inviteToPartyOrQuest": "Invite Party to Quest",
"inviteInformation": "Clicking \"Invite\" will send an invitation to your Party members. When all members have accepted or denied, the Quest begins.",
"questOwnerRewards": "Quest Owner Rewards",
@@ -285,7 +285,7 @@
"selectPartyMember": "Select a Party Member",
"areYouSureDeleteMessage": "Are you sure you want to delete this message?",
"reverseChat": "Reverse Chat",
- "invites": "Invites",
+ "invites": "Invitacións",
"details": "Details",
"participantDesc": "Once all members have either accepted or declined, the Quest begins. Only those who clicked 'accept' will be able to participate in the Quest and receive the rewards.",
"groupGems": "Group Gems",
@@ -338,5 +338,8 @@
"sharedCompletion": "Shared Completion",
"recurringCompletion": "None - Group task does not complete",
"singleCompletion": "Single - Completes when any assigned user finishes",
- "allAssignedCompletion": "All - Completes when all assigned users finish"
+ "allAssignedCompletion": "All - Completes when all assigned users finish",
+ "features": "Funcionalidades",
+ "sendGiftTotal": "Total:",
+ "unassigned": "Sen asignar"
}
diff --git a/website/common/locales/gl/inventory.json b/website/common/locales/gl/inventory.json
index f9730a68bd..473d26874d 100755
--- a/website/common/locales/gl/inventory.json
+++ b/website/common/locales/gl/inventory.json
@@ -1,8 +1,10 @@
{
- "noItemsAvailableForType": "You have no <%= type %>.",
- "foodItemType": "Food",
- "eggsItemType": "Eggs",
- "hatchingPotionsItemType": "Hatching Potions",
- "specialItemType": "Special items",
- "lockedItem": "Locked Item"
+ "noItemsAvailableForType": "Non tes <%= type %>.",
+ "foodItemType": "Comida para mascotas",
+ "eggsItemType": "Ovos",
+ "hatchingPotionsItemType": "Pocións de eclosión",
+ "specialItemType": "Special items",
+ "lockedItem": "Obxecto bloqueado",
+ "petAndMount": "Mascota e montura",
+ "allItems": "Todos os elementos"
}
diff --git a/website/common/locales/gl/limited.json b/website/common/locales/gl/limited.json
index 055be05f93..54c54b38f5 100755
--- a/website/common/locales/gl/limited.json
+++ b/website/common/locales/gl/limited.json
@@ -1,10 +1,10 @@
{
"annoyingFriends": "Amigos Irritantes",
- "annoyingFriendsText": "Got snowballed <%= count %> times by party members.",
+ "annoyingFriendsText": "",
"alarmingFriends": "Amigos Alarmantes",
- "alarmingFriendsText": "Got spooked <%= count %> times by party members.",
+ "alarmingFriendsText": "",
"agriculturalFriends": "Amigos Agricultores",
- "agriculturalFriendsText": "Got transformed into a flower <%= count %> times by party members.",
+ "agriculturalFriendsText": "",
"aquaticFriends": "Amigos Acuáticos",
"aquaticFriendsText": "Got splashed <%= count %> times by party members.",
"valentineCard": "Tarxeta do día de San Valentin",
@@ -33,19 +33,19 @@
"seasonalShopSpringText": "Happy Spring Fling!! Would you like to buy some rare items? They’ll only be available until April 30th!",
"seasonalShopFallTextBroken": "Oh... Benvid@ á Tenda da Tempada... Temos actualmente obxectos da
Edición da Tempada outonal, ou algo así... Todo o que temos aquí estará dispoñible para a adquisición durante o evento Festival Outonal cada ano, pero só estaremos abertos ata o 31 de outubro... Supoño que deberías aprovisionarte agora, ou terás que esperar... e esperar... e esperar...
*suspiro*",
"seasonalShopBrokenText": "My pavilion!!!!!!! My decorations!!!! Oh, the Dysheartener's destroyed everything :( Please help defeat it in the Tavern so I can rebuild!",
- "seasonalShopRebirth": "Se mercaches pezas deste equipamento no pasado pero non as tes actualmente, podes volver mercalas na Columna das Recompensas. Inicialmente, só poderás adquirir os obxectos da túa clase actual (Guerreiro por defecto), pero non temas, os outros obxectos específicos dunha clase volveranse disponibles se te cambias a esa clase.",
+ "seasonalShopRebirth": "Se mercaches pezas deste equipamento no pasado pero non as tes actualmente, podes volver mercalas na columna «Recompensas». Ao principio só poderás adquirir os obxectos da túa clase actual («pugnaz» é a predeterminada), pero non temas, os outros obxectos de clases específicas pasarán a estar dispoñíbeis se cambias á súa clase.",
"candycaneSet": "Bastón de Caramelo (Mago)",
- "skiSet": "Esquí-sasino (Ladrón)",
+ "skiSet": "Esquíasasino (renarte)",
"snowflakeSet": "Folerpa (Curandeiro)",
- "yetiSet": "Domesticador de Yetis (Guerreiro)",
+ "yetiSet": "Domador de ietis (pugnaz)",
"northMageSet": "Mago do Norte (Mago)",
- "icicleDrakeSet": "Pato de Carambelo (Ladrón)",
+ "icicleDrakeSet": "Pato de carambelo (renarte)",
"soothingSkaterSet": "Patinador Calmante (Curandeiro)",
- "gingerbreadSet": "Guerreiro de Pan de Xenxibre (Guerreiro)",
+ "gingerbreadSet": "Pan de xenxibre (pugnaz)",
"snowDaySet": "Snow Day Warrior (Warrior)",
"snowboardingSet": "Snowboarding Sorcerer (Mage)",
"festiveFairySet": "Festive Fairy (Healer)",
- "cocoaSet": "Cocoa Rogue (Rogue)",
+ "cocoaSet": "Cacao (renarte)",
"toAndFromCard": "Para: <%= toName %>, De: <%= fromName %>",
"nyeCard": "Tarxeta de Ano Novo",
"nyeCardExplanation": "Por celebrardes o ano novo xunt@s, ambos recibides a insignia \"Vello Amigo\"!",
@@ -58,78 +58,78 @@
"nye2": "Feliz Ano Novo! Que obteñas un Día Perfecto.",
"nye3": "Feliz Ano Novo! Que a túa lista de Tarefas se manteña curta e fácil.",
"nye4": "Feliz Ano Novo! Que non che ataque un feroz Hipogrifo.",
- "mightyBunnySet": "Gran Coello (Guerreiro)",
+ "mightyBunnySet": "Coello poderoso (pugnaz)",
"magicMouseSet": "Rato Máxico (Mago)",
"lovingPupSet": "Canciño Afectuoso (Curandeiro)",
- "stealthyKittySet": "Gatiño Discreto (Ladrón)",
- "daringSwashbucklerSet": "Valente Espadachín (Guerreiro)",
+ "stealthyKittySet": "Gatiño discreto (renarte)",
+ "daringSwashbucklerSet": "Espadachín valente (pugnaz)",
"emeraldMermageSet": "Seremáxica de Esmeralda (Mago)",
"reefSeahealerSet": "Curandeiro do Arrecife (Curandeiro)",
- "roguishPirateSet": "Pirata Revoltoso (Ladrón)",
- "monsterOfScienceSet": "Monstro da Ciencia (Guerreiro)",
+ "roguishPirateSet": "Pirata revoltoso (renarte)",
+ "monsterOfScienceSet": "Monstro da ciencia (pugnaz)",
"witchyWizardSet": "Brux@ Feiticeir@ (Mago)",
"mummyMedicSet": "Médico da Momia (Curandeiro)",
- "vampireSmiterSet": "Aniquilador de Vampiros (Ladrón)",
- "bewareDogSet": "Coidado co Can (Guerreiro)",
+ "vampireSmiterSet": "Cazavampiros (renarte)",
+ "bewareDogSet": "Can protector (pugnaz)",
"magicianBunnySet": "Coello do Mago (Mago)",
"comfortingKittySet": "Gatiño Reconfortante (Curandeiro)",
- "sneakySqueakerSet": "Chirriador Engañoso (Ladrón)",
- "sunfishWarriorSet": "Guerreiro do Peixe Lúa (Guerreiro)",
+ "sneakySqueakerSet": "Rinchador enganoso (renarte)",
+ "sunfishWarriorSet": "Peixe lúa (pugnaz)",
"shipSoothsayerSet": "Adiviñ@ do Barco (Mago)",
"strappingSailorSet": "Mariñeiro Vendador (Curandeiro)",
- "reefRenegadeSet": "Rebelión do Arrecife (Ladrón)",
- "scarecrowWarriorSet": "Scarecrow Warrior (Warrior)",
+ "reefRenegadeSet": "Rebelde do arrecife (renarte)",
+ "scarecrowWarriorSet": "Espantallo (pugnaz)",
"stitchWitchSet": "Stitch Witch (Mage)",
"potionerSet": "Potioner (Healer)",
- "battleRogueSet": "Bat-tle Rogue (Rogue)",
+ "battleRogueSet": "Morcego (renarte)",
"springingBunnySet": "Springing Bunny (Healer)",
"grandMalkinSet": "Grand Malkin (Mage)",
- "cleverDogSet": "Clever Dog (Rogue)",
- "braveMouseSet": "Brave Mouse (Warrior)",
+ "cleverDogSet": "Can listo (renarte)",
+ "braveMouseSet": "Rato valente (pugnaz)",
"summer2016SharkWarriorSet": "Shark Warrior (Warrior)",
"summer2016DolphinMageSet": "Dolphin Mage (Mage)",
"summer2016SeahorseHealerSet": "Seahorse Healer (Healer)",
- "summer2016EelSet": "Eel Rogue (Rogue)",
- "fall2016SwampThingSet": "Swamp Thing (Warrior)",
+ "summer2016EelSet": "Anguila (renarte)",
+ "fall2016SwampThingSet": "Cousa do pantano (pugnaz)",
"fall2016WickedSorcererSet": "Wicked Sorcerer (Mage)",
"fall2016GorgonHealerSet": "Gorgon Healer (Healer)",
- "fall2016BlackWidowSet": "Black Widow Rogue (Rogue)",
- "winter2017IceHockeySet": "Ice Hockey (Warrior)",
+ "fall2016BlackWidowSet": "Viúva negra (renarte)",
+ "winter2017IceHockeySet": "Hóckey sobre xeo (pugnaz)",
"winter2017WinterWolfSet": "Winter Wolf (Mage)",
"winter2017SugarPlumSet": "Sugar Plum Healer (Healer)",
- "winter2017FrostyRogueSet": "Frosty Rogue (Rogue)",
+ "winter2017FrostyRogueSet": "Xeado (renarte)",
"spring2017FelineWarriorSet": "Feline Warrior (Warrior)",
"spring2017CanineConjurorSet": "Canine Conjuror (Mage)",
"spring2017FloralMouseSet": "Floral Mouse (Healer)",
- "spring2017SneakyBunnySet": "Sneaky Bunny (Rogue)",
+ "spring2017SneakyBunnySet": "Coello discreto (renarte)",
"summer2017SandcastleWarriorSet": "Sandcastle Warrior (Warrior)",
"summer2017WhirlpoolMageSet": "Whirlpool Mage (Mage)",
"summer2017SeashellSeahealerSet": "Seashell Seahealer (Healer)",
- "summer2017SeaDragonSet": "Sea Dragon (Rogue)",
+ "summer2017SeaDragonSet": "Dragón mariño (renarte)",
"fall2017HabitoweenSet": "Habitoween Warrior (Warrior)",
"fall2017MasqueradeSet": "Masquerade Mage (Mage)",
"fall2017HauntedHouseSet": "Haunted House Healer (Healer)",
- "fall2017TrickOrTreatSet": "Trick or Treat Rogue (Rogue)",
+ "fall2017TrickOrTreatSet": "Truco ou trato (renarte)",
"winter2018ConfettiSet": "Confetti Mage (Mage)",
"winter2018GiftWrappedSet": "Gift-Wrapped Warrior (Warrior)",
"winter2018MistletoeSet": "Mistletoe Healer (Healer)",
- "winter2018ReindeerSet": "Reindeer Rogue (Rogue)",
+ "winter2018ReindeerSet": "Reno (renarte)",
"spring2018SunriseWarriorSet": "Sunrise Warrior (Warrior)",
"spring2018TulipMageSet": "Tulip Mage (Mage)",
"spring2018GarnetHealerSet": "Garnet Healer (Healer)",
- "spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
+ "spring2018DucklingRogueSet": "Patiño (renarte)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
- "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
- "fall2018MinotaurWarriorSet": "Minotaur (Warrior)",
+ "summer2018FisherRogueSet": "Pescador (renarte)",
+ "fall2018MinotaurWarriorSet": "Minotauro (pugnaz)",
"fall2018CandymancerMageSet": "Candymancer (Mage)",
"fall2018CarnivorousPlantSet": "Carnivorous Plant (Healer)",
- "fall2018AlterEgoSet": "Alter Ego (Rogue)",
- "winter2019BlizzardSet": "Blizzard (Warrior)",
+ "fall2018AlterEgoSet": "Álter ego (renarte)",
+ "winter2019BlizzardSet": "Ventisca (pugnaz)",
"winter2019PyrotechnicSet": "Pyrotechnic (Mage)",
"winter2019WinterStarSet": "Winter Star (Healer)",
- "winter2019PoinsettiaSet": "Poinsettia (Rogue)",
+ "winter2019PoinsettiaSet": "Flor do Nadal (renarte)",
"eventAvailability": "Available for purchase until <%= date(locale) %>.",
"dateEndMarch": "April 30",
"dateEndApril": "April 19",
@@ -145,7 +145,22 @@
"winterPromoGiftHeader": "GIFT A SUBSCRIPTION AND GET ONE FREE!",
"winterPromoGiftDetails1": "Until January 15th only, when you gift somebody a subscription, you get the same subscription for yourself for free!",
"winterPromoGiftDetails2": "Please note that if you or your gift recipient already have a recurring subscription, the gifted subscription will only start after that subscription is cancelled or has expired. Thanks so much for your support! <3",
- "discountBundle": "bundle",
+ "discountBundle": "lote",
"g1g1Announcement": "
Gift a subscription and get a subscription free event going on now!",
- "g1g1Details": "Gift a sub to a friend from their profile and you’ll receive the same sub for free!"
+ "g1g1Details": "Gift a sub to a friend from their profile and you’ll receive the same sub for free!",
+ "spring2019CloudRogueSet": "Nube (renarte)",
+ "limitations": "Limitacións",
+ "fall2020TwoHeadedRogueSet": "Bicéfalo (renarte)",
+ "spring2021TwinFlowerRogueSet": "Flores xemelgas (renarte)",
+ "summer2020CrocodileRogueSet": "Crocodilo (renarte)",
+ "summer2022CrabRogueSet": "Cangrexo (renarte)",
+ "spring2022MagpieRogueSet": "Pega (renarte)",
+ "fall2021OozeRogueSet": "Lama (renarte)",
+ "summer2019HammerheadRogueSet": "Peixe martelo (renarte)",
+ "winter2020LanternSet": "Lanterna (renarte)",
+ "summer2021ClownfishRogueSet": "Peixe pallaso (renarte)",
+ "fall2019OperaticSpecterSet": "Espectro operístico (renarte)",
+ "spring2020LapisLazuliRogueSet": "Lapislázuli (renarte)",
+ "winter2021HollyIvyRogueSet": "Acivro e hedra (renarte)",
+ "winter2022FireworksRogueSet": "Fogos artificiais (renarte)"
}
diff --git a/website/common/locales/gl/loginincentives.json b/website/common/locales/gl/loginincentives.json
index 081ffe25c9..535dbd227c 100755
--- a/website/common/locales/gl/loginincentives.json
+++ b/website/common/locales/gl/loginincentives.json
@@ -1,25 +1,25 @@
{
- "unlockedReward": "You have received <%= reward %>",
- "earnedRewardForDevotion": "You have earned <%= reward %> for being committed to improving your life.",
- "nextRewardUnlocksIn": "Check-ins until your next prize: <%= numberOfCheckinsLeft %>",
- "awesome": "Awesome!",
- "countLeft": "Check-ins until next reward: <%= count %>",
- "incentivesDescription": "When it comes to building habits, consistency is key. Each day you check-in you get closer to a prize.",
- "checkinEarned": "Your Check-In Counter went up!",
- "unlockedCheckInReward": "You unlocked a Check-In Prize!",
- "checkinProgressTitle": "Progress until next",
- "incentiveBackgroundsUnlockedWithCheckins": "Locked Plain Backgrounds will unlock with Daily Check-Ins.",
- "oneOfAllPetEggs": "one of each standard Pet Egg",
- "twoOfAllPetEggs": "two of each standard Pet Egg",
- "threeOfAllPetEggs": "three of each standard Pet Egg",
- "oneOfAllHatchingPotions": "one of each standard Hatching Potion",
- "threeOfEachFood": "three of each standard Pet Food",
- "fourOfEachFood": "four of each standard Pet Food",
- "twoSaddles": "two Saddles",
- "threeSaddles": "three Saddles",
- "incentiveAchievement": "the Royally Loyal achievement",
- "royallyLoyal": "Royally Loyal",
- "royallyLoyalText": "This user has checked in over 500 times, and has earned every Check-In Prize!",
- "checkInRewards": "Check-In Rewards",
- "backloggedCheckInRewards": "You received Check-In Prizes! Visit your Inventory and Equipment to see what's new."
+ "unlockedReward": "Recibiches <%= reward %>",
+ "earnedRewardForDevotion": "Gañaches <%= reward %> por comprometerte a mellorar a túa vida.",
+ "nextRewardUnlocksIn": "Accesos ata o seguinte premio: <%= numberOfCheckinsLeft %>",
+ "awesome": "Xenial!",
+ "countLeft": "Check-ins until next reward: <%= count %>",
+ "incentivesDescription": "Para adoptar hábitos, a consistencia resulta primordial. Cada día que accedas estarás máis cerca de conseguir un premio.",
+ "checkinEarned": "O teu número de accesos subiu!",
+ "unlockedCheckInReward": "Desbloqueaches un premio por acceso!",
+ "checkinProgressTitle": "Progreso ata a seguinte",
+ "incentiveBackgroundsUnlockedWithCheckins": "Os fondos sinxelos bloqueados desbloquearanse con accesos diarios.",
+ "oneOfAllPetEggs": "un de cada ovo de mascota estándar",
+ "twoOfAllPetEggs": "dous de cada ovo de mascota estándar",
+ "threeOfAllPetEggs": "tres de cada ovo de mascota estándar",
+ "oneOfAllHatchingPotions": "unha de cada poción de eclosión estándar",
+ "threeOfEachFood": "tres de cada comida de mascota estándar",
+ "fourOfEachFood": "catro de cada comida de mascota estándar",
+ "twoSaddles": "dúas selas",
+ "threeSaddles": "tres selas",
+ "incentiveAchievement": "o logro «Realmente leal»",
+ "royallyLoyal": "Realmente leal",
+ "royallyLoyalText": "Este usuario accedeu máis de 500 veces, e gañou todos os premios de acceso!",
+ "checkInRewards": "Recompensas por acceder",
+ "backloggedCheckInRewards": "Recibiches premios de acceso! Consulta o teu inventario e equipo para ver as novidades."
}
diff --git a/website/common/locales/gl/messages.json b/website/common/locales/gl/messages.json
index 4a74032c7c..c61658f260 100755
--- a/website/common/locales/gl/messages.json
+++ b/website/common/locales/gl/messages.json
@@ -1,7 +1,7 @@
{
"messageLostItem": "O teu <%= itemText %> rompeu.",
- "messageTaskNotFound": "Tarefa non atopada",
- "messageTagNotFound": "Etiqueta non atopada",
+ "messageTaskNotFound": "Non se atopou a tarefa.",
+ "messageTagNotFound": "Non se atopou a etiqueta.",
"messagePetNotFound": ":pet non atopad@ en user.items.pets",
"messageFoodNotFound": ":food non atopad@ en user.items.food",
"messageNotAvailable": "Este obxecto non está disponible actualmente para a compra.",
diff --git a/website/common/locales/gl/npc.json b/website/common/locales/gl/npc.json
index d2a01e0736..811f82ba71 100755
--- a/website/common/locales/gl/npc.json
+++ b/website/common/locales/gl/npc.json
@@ -1,18 +1,18 @@
{
"npc": "Personaxes Non Xogables",
- "npcAchievementName": "<%= key %> NPC",
+ "npcAchievementName": "<%= key %> PNX",
"npcAchievementText": "Apoiou o proxecto Kickstarter ao nivel máximo!",
- "welcomeTo": "Welcome to",
- "welcomeBack": "Welcome back!",
- "justin": "Justin",
+ "welcomeTo": "Benvida a",
+ "welcomeBack": "Benvida de volta!",
+ "justin": "Xustino",
"justinIntroMessage1": "Hello there! You must be new here. My name is
Justin, and I'll be your guide in Habitica.",
"justinIntroMessage3": "Great! Now, what are you interested in working on throughout this journey?",
"justinIntroMessageUsername": "Before we begin, let’s figure out what to call you. Below you’ll find a display name and username I’ve generated for you. After you’ve picked a display name and username, we’ll get started by creating an avatar!",
"justinIntroMessageAppearance": "So how would you like to look? Don’t worry, you can change this later.",
"introTour": "Here we are! I've filled out some Tasks for you based on your interests, so you can get started right away. Click a Task to edit or add new Tasks to fit your routine!",
- "prev": "Prev",
+ "prev": "Anterior",
"next": "Next",
- "randomize": "Randomize",
+ "randomize": "Aleatorio",
"mattBoch": "Matt Boch",
"mattBochText1": "Welcome to the Stable! I'm Matt, the beast master. Starting at level 3, you will find eggs and potions to hatch pets with. When you hatch a pet in the Market, it will appear here! Click a pet's image to add it to your avatar. Feed them with the food you find after level 3, and they'll grow into hardy mounts.",
"welcomeToTavern": "Welcome to The Tavern!",
@@ -31,7 +31,7 @@
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
"howManyToSell": "How many would you like to sell?",
"yourBalance": "Your balance",
- "sell": "Sell",
+ "sell": "Vender",
"buyNow": "Buy Now",
"sortByNumber": "Number",
"featuredItems": "Featured Items!",
@@ -45,15 +45,15 @@
"purchaseGems": "Adquirir Xemas",
"items": "Items",
"AZ": "A-Z",
- "sort": "Sort",
+ "sort": "Ordenar",
"sortBy": "Sort By",
"groupBy2": "Group By",
"sortByName": "Name",
- "quantity": "Quantity",
- "cost": "Cost",
- "shops": "Shops",
- "custom": "Custom",
- "wishlist": "Wishlist",
+ "quantity": "Cantidade",
+ "cost": "Custo",
+ "shops": "Tendas",
+ "custom": "Personalizado",
+ "wishlist": "Lista de desexos",
"wrongItemType": "The item type \"<%= type %>\" is not valid.",
"wrongItemPath": "The item path \"<%= path %>\" is not valid.",
"unpinnedItem": "You unpinned <%= item %>! It will no longer display in your Rewards column.",
@@ -89,11 +89,11 @@
"paymentYouSentGems": "You sent
<%- name %>:",
"paymentYouSentSubscription": "You sent
<%- name %> a <%= months %>-months Habitica subscription.",
"paymentSubBilling": "Your subscription will be billed
$<%= amount %> every
<%= months %> months.",
- "success": "Success!",
+ "success": "Éxito!",
"classGear": "Equipamento de Clase",
"classGearText": "Congratulations on choosing a class! I've added your new basic weapon to your inventory. Take a look below to equip it!",
"autoAllocate": "Distribuír Automaticamente",
- "spells": "Skills",
+ "spells": "Habilidades",
"skillsTitle": "Skills",
"toDo": "Tarefa",
"tourStatsPage": "Esta é a túa páxina de Estatísticas! Gaña logros ao completares as tarefas listadas.",
diff --git a/website/common/locales/gl/overview.json b/website/common/locales/gl/overview.json
index c559cd3c76..a93281df98 100755
--- a/website/common/locales/gl/overview.json
+++ b/website/common/locales/gl/overview.json
@@ -1,14 +1,10 @@
{
- "needTips": "Need some tips on how to begin? Here's a straightforward guide!",
-
- "step1": "Step 1: Enter Tasks",
- "webStep1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them! All tasks can be added by clicking the green \"Create\" button.\n* **Set up [To-Dos](http://habitica.wikia.com/wiki/To-Dos):** Enter tasks you do once or rarely in the To-Dos column, one at a time. You can click on the tasks to edit them and add checklists, due dates, and more!\n* **Set up [Dailies](http://habitica.wikia.com/wiki/Dailies):** Enter activities you need to do daily or on a particular day of the week, month, or year in the Dailies column. Click task to edit when it will be due and/or set a start date. You can also make it due on a repeating basis, for example, every 3 days.\n* **Set up [Habits](http://habitica.wikia.com/wiki/Habits):** Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit :heavy_plus_sign: or a bad habit :heavy_minus_sign:\n* **Set up [Rewards](http://habitica.wikia.com/wiki/Rewards):** In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!\n* If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).",
-
- "step2": "Step 2: Gain Points by Doing Things in Real Life",
- "webStep2Text": "Now, start tackling your goals from the list! As you complete tasks and check them off in Habitica, you will gain [Experience](http://habitica.wikia.com/wiki/Experience_Points), which helps you level up, and [Gold](http://habitica.wikia.com/wiki/Gold_Points), which allows you to purchase Rewards. If you fall into bad habits or miss your Dailies, you will lose [Health](http://habitica.wikia.com/wiki/Health_Points). In that way, the Habitica Experience and Health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.",
-
- "step3": "Step 3: Customize and Explore Habitica",
- "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with [tags](http://habitica.wikia.com/wiki/Tags) (edit a task to add them).\n * Customize your [avatar](http://habitica.wikia.com/wiki/Avatar) by clicking the user icon in the upper-right corner.\n * Buy your [Equipment](http://habitica.wikia.com/wiki/Equipment) under Rewards or from the [Shops](<%= shopUrl %>), and change it under [Inventory > Equipment](<%= equipUrl %>).\n * Connect with other users via the [Tavern](http://habitica.wikia.com/wiki/Tavern).\n * Starting at Level 3, hatch [Pets](http://habitica.wikia.com/wiki/Pets) by collecting [eggs](http://habitica.wikia.com/wiki/Eggs) and [hatching potions](http://habitica.wikia.com/wiki/Hatching_Potions). [Feed](http://habitica.wikia.com/wiki/Food) them to create [Mounts](http://habitica.wikia.com/wiki/Mounts).\n * At level 10: Choose a particular [class](http://habitica.wikia.com/wiki/Class_System) and then use class-specific [skills](http://habitica.wikia.com/wiki/Skills) (levels 11 to 14).\n * Form a party with your friends (by clicking [Party](<%= partyUrl %>) in the navigation bar) to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [quests](http://habitica.wikia.com/wiki/Quests) (you will be given a quest at level 15).",
-
- "overviewQuestions": "Have questions? Check out the [FAQ](<%= faqUrl %>)! If your question isn't mentioned there, you can ask for further help in the [Habitica Help guild](<%= helpGuildUrl %>).\n\nGood luck with your tasks!"
+ "needTips": "",
+ "step1": "",
+ "webStep1Text": "Habitica resulta inútil sen metas do mundo real, así que engade algunhas tarefas. Máis adiante, a medida que se te ocorran outras, podes engadilas tamén! As tarefas poden engadirse premendo o botón verde «Crear».\n* **Prepara [pendentes](http://habitica.wikia.com/wiki/To-Dos):** engade tarefas puntuais ou pouco habituais na columna «Pendentes», dunha nunha. Podes premer as tarefas para editalas e engadirlles listas de comprobación, datas límite, e máis!\n* **Prepara [diarias](http://habitica.wikia.com/wiki/Dailies):** engade actividades que tes que completar a diario ou en días concretos da semana, do mes, ou do ano, na columna «Diarias». Preme unha tarefa para editar cando toca ou definir a data de inicio. Tamén podes facer que se repita, por exemplo, cada 3 días.\n* **Prepara [hábitos](http://habitica.wikia.com/wiki/Habits):** engade hábitos que queres adoptar na columna «Hábitos». Podes editar un hábito para convertelo nun bo hábito :heavy_plus_sign: ou un mal hábito :heavy_minus_sign:.\n* **Prepara [recompensas](http://habitica.wikia.com/wiki/Rewards):** ademais das recompensas que se ofrecen dentro do xogo, engade actividades ou premios que queres usar como motivación na columna «Recompensas». É importante que te deas un respiro ou te permitas un pouco de manga ancha!\n* Se necesitas inspiración á hora de escoller tarefas para engadir, bota un ollo a estas páxinas do wiki: [Hábitos de exemplo](http://habitica.wikia.com/wiki/Sample_Habits), [Diarias de exemplo](http://habitica.wikia.com/wiki/Sample_Dailies), [Pendentes de exemplo](http://habitica.wikia.com/wiki/Sample_To-Dos), e [Recompensas de exemplo](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).",
+ "step2": "",
+ "webStep2Text": "Agora comeza a cumprir os obxectivos da lista! A medida que completes tarefas e as marques como tal en Habitica, gañarás [experiencia](http://habitica.wikia.com/wiki/Experience_Points), que te permite subir de nivel, e [ouro](http://habitica.wikia.com/wiki/Gold_Points), que te permite comprar recompensas. Se caes en malos hábitos ou non completas as túas tarefas diarias, perderás [vida](http://habitica.wikia.com/wiki/Health_Points). Dese xeito, as barras de experiencia e de vida de Habitica son un indicador divertido do progreso nas túas metas. Empezarás a ver como mellora a túa vida real a medida que a túa personaxe avanza no xogo.",
+ "step3": "",
+ "webStep3Text": "Unha vez te afagas aos elementos básicos, podes sacarlle máis partido a Habitica con estas funcionalidades:\n * Organiza as túas tarefas con [etiquetas](https://habitica.fandom.com/wiki/Tags) (edita unha tarefa para engadilas).\n * Personaliza o teu [avatar](https://habitica.fandom.com/wiki/Avatar) premendo a icona de usuario na esquina superior dereita.\n * Compra o teu [equipo](https://habitica.fandom.com/wiki/Equipment) desde «Recompensas» ou nas [tendas](<%= shopUrl %>), e cámbiao desde [Inventario → Equipo](<%= equipUrl %>).\n * Conecta con outras persoas usuarias a través da [taberna](https://habitica.fandom.com/wiki/Tavern).\n * Recolle e abre [ovos](https://habitica.fandom.com/wiki/Eggs) de [mascotas](https://habitica.fandom.com/wiki/Pets) usando [pocións de eclosión](https://habitica.fandom.com/wiki/Hatching_Potions). [Aliméntaas](https://habitica.fandom.com/wiki/Food) para crear [monturas](https://habitica.fandom.com/wiki/Mounts).\n * No nivel 10, escolle unha [clase](https://habitica.fandom.com/wiki/Class_System) e usa as súas [habilidades](https://habitica.fandom.com/wiki/Skills) específicas (niveis do 11 ao 14).\n * Forma un grupo de amizades (preme [Grupo](<%= partyUrl %>) na barra de navegación) para controlarvos entre vós e gañar un pergameo de misión.\n * Derrota monstros e recolle obxectos durante [misións](https://habitica.fandom.com/wiki/Quests) (recibirás unha misión no nivel 15).",
+ "overviewQuestions": "Have questions? Check out the [FAQ](<%= faqUrl %>)! If your question isn't mentioned there, you can ask for further help in the [Habitica Help guild](<%= helpGuildUrl %>).\n\nGood luck with your tasks!"
}
diff --git a/website/common/locales/gl/pets.json b/website/common/locales/gl/pets.json
index f59973523d..f9930e10ac 100644
--- a/website/common/locales/gl/pets.json
+++ b/website/common/locales/gl/pets.json
@@ -86,5 +86,12 @@
"premiumPotionNoDropExplanation": "As Pocións Máxicas de eclosión non poder ser usadas nos ovos recibidos por Misións. A única maneira de conseguir Pocións Máxicas de eclosión é compralas máis abaixo, non aparecen no botín aleatorio.",
"beastMasterName": "Mestre das Bestas",
"beastAchievement": "¡Conseguiches o Logro \"Mestre das Bestas\" por conseguir tódalas mascotas!",
- "dropsExplanationEggs": "Gasta Xemas para conseguir ovos máis rápidamente, senón queres esperar a obterlos como botín ou repetir Misións para obter Ovos de Misión.
Máis información sobre o sistema de botín."
+ "dropsExplanationEggs": "Gasta Xemas para conseguir ovos máis rápidamente, senón queres esperar a obterlos como botín ou repetir Misións para obter Ovos de Misión.
Máis información sobre o sistema de botín.",
+ "hatch": "Abrir!",
+ "filterByWacky": "Tolaría",
+ "standard": "Estándar",
+ "filterByStandard": "Estándar",
+ "filterByQuest": "Misión",
+ "sortByColor": "Cor",
+ "sortByHatchable": "Eclosionábel"
}
diff --git a/website/common/locales/gl/quests.json b/website/common/locales/gl/quests.json
index 255f375307..fa63237569 100755
--- a/website/common/locales/gl/quests.json
+++ b/website/common/locales/gl/quests.json
@@ -3,7 +3,7 @@
"quest": "misión",
"petQuests": "Misións de Mascotas de Monturas",
"unlockableQuests": "Misións Desbloqueables",
- "goldQuests": "Masterclasser Quest Lines",
+ "goldQuests": "",
"questDetails": "Detalles da Misión",
"questDetailsTitle": "Quest Details",
"questDescription": "Quests allow players to focus on long-term, in-game goals with the members of their party.",
@@ -18,7 +18,7 @@
"askLater": "Preguntar Máis Tarde",
"buyQuest": "Mercar Misión",
"accepted": "Aceptada",
- "declined": "Declined",
+ "declined": "Recusado",
"rejected": "Rexeitada",
"pending": "Pendente",
"questCollection": "+ <%= val %> quest item(s) found",
@@ -71,5 +71,6 @@
"bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
"rageAttack": "Rage Attack:",
"bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
- "rageStrikes": "Rage Strikes"
+ "rageStrikes": "Rage Strikes",
+ "hatchingPotionQuests": "Misións de pocións máxicas de eclosión"
}
diff --git a/website/common/locales/gl/questscontent.json b/website/common/locales/gl/questscontent.json
index 599fccb5de..5389c60459 100755
--- a/website/common/locales/gl/questscontent.json
+++ b/website/common/locales/gl/questscontent.json
@@ -1,11 +1,11 @@
{
"questEvilSantaText": "Papá Noel cazador",
- "questEvilSantaNotes": "Oes ruxidos agonizantes ao lonxe nos campos de xeo. Segues os gruñidos, puntuados polo son de gargalladas, ata un claro no bosque, onde ves unha osa polar adulta. Está engaiolada e encadeada, loitando pola súa vida. Un pequeno diaño malintencionado, cun traxe recuperado no lixo, está bailando sobre a gaiola. Vence ao Papá Noel Cazador, e rescata a besta!",
+ "questEvilSantaNotes": "Oes ruxidos agonizantes ao lonxe nos campos de xeo. Segues os gruñidos, puntuados polo son de gargalladas, ata un claro no bosque, onde ves unha osa polar adulta. Está engaiolada e encadeada, loitando pola súa vida. Un pequeno diaño con malas intencións, cun traxe recuperado no lixo, está bailando sobre a gaiola. Vence ao Papá Noel Cazador, e rescata a besta!
Nota: o «Papá Noel Cazador» premia cun logro de misión acumulable, pero tamén concede unha montura rara que só podes engadir á túa corte unha vez.",
"questEvilSantaCompletion": "O Papá Noel Cazador berra furiosamente, e brinca para desaparecer na noite. A osa agradecida, entre ruxidos e gruñidos, intenta dicirche algo. Lévala de volta ao seu establo, onde Matt Boch o Mestra das Bestas escoita a súa historia cun bufido de horror. Ten un cachorro! Escapouse polos campos de xeo cando capturaron a mamá osa.",
"questEvilSantaBoss": "Papá Noel cazador",
"questEvilSantaDropBearCubPolarMount": "Oso Polar (montura)",
- "questEvilSanta2Text": "Atopa o Cachorro",
- "questEvilSanta2Notes": "Cando o Papá Noel Cazador capturou a montura oso polar, o seu cachorro se escapou nos campos de xeo. Oes crebaduras de pólas e cruxidos de neve a través do son cristalino do bosque. Pegadas de patas! Comezas a correr pola neve para seguir a pista. Atopa as pegadas e as pólas crebadas, e rescata o cachorro!",
+ "questEvilSanta2Text": "Atopa o cachorro",
+ "questEvilSanta2Notes": "Cando o Papá Noel Cazador capturou a montura oso polar, o seu cachorro se escapou nos campos de xeo. Oes crebaduras de pólas e pegadas na neve a través do son cristalino do bosque. Pegadas de patas! Comezas a correr pola neve para seguir a pista. Atopa as pegadas e as pólas crebadas, e rescata o cachorro!
Nota: «Atopa o cachorro» premia cun logro de misión acumulable, pero tamén concede unha montura rara que só podes engadir á túa corte unha vez.",
"questEvilSanta2Completion": "Atopou o cachorro! Gardarache compañía para sempre.",
"questEvilSanta2CollectTracks": "Rastros",
"questEvilSanta2CollectBranches": "Pólas Crebadas",
@@ -37,7 +37,7 @@
"questOctopusText": "A Chamada de Octothulu",
"questOctopusNotes": "@Urse, un escriba novo de ollos desorbitados, pediuvos axuda paraa explorar unha cova misteriosa preto da beira do mar. Entre as pozas de marea crepusculares érguese unha enorme porta de estalactitas e estalagmitas. A medida que vos acercades da porta, un remuíño escuro comeza a formarse na súa base. Mirades con admiración como un dragón parecido a unha lura ascende a través do abismo. \"A xeneración das estrelas pegañentas espertou\" ruxe @Urse tolamente. \"Despois de vixintillóns de anos, o gran Octothulu está solto de novo, e ávido de deleitarse!\"",
"questOctopusCompletion": "Cun golpe final, a criatura escapa ata o remuíño de onde veu. Non podedes distinguir se @Urse está contento da súa vitoria ou triste de ver marchar a besta. Sen palabras, o seu compañeiro móstravos tres ovos xigantescos e viscosos nunha poza cercana, pousados nun niño de moedas de ouro. \"Probablemente só sexan ovos de polbo\", dis, nervios@. Mentres voltades a casa, @Urse rabisca freneticamente nun xornal e sospeitades que esta non é a última vez que ides saber do gran Octothulu.",
- "questOctopusBoss": "Octothulu",
+ "questOctopusBoss": "Polbulhu",
"questOctopusDropOctopusEgg": "Polbo (Ovo)",
"questOctopusUnlockText": "Desbloquea os Ovos de Polbo adquiribles no Mercado",
"questHarpyText": "Axuda! Harpía!",
@@ -261,14 +261,14 @@
"questHorseText": "Ride the Night-Mare",
"questHorseNotes": "While relaxing in the Tavern with @beffymaroo and @JessicaChase, the talk turns to good-natured boasting about your adventuring accomplishments. Proud of your deeds, and perhaps getting a bit carried away, you brag that you can tame any task around. A nearby stranger turns toward you and smiles. One eye twinkles as he invites you to prove your claim by riding his horse.\nAs you all head for the stables, @UncommonCriminal whispers, \"You may have bitten off more than you can chew. That's no horse - that's a Night-Mare!\" Looking at its stamping hooves, you begin to regret your words...",
"questHorseCompletion": "It takes all your skill, but finally the horse stamps a couple of hooves and nuzzles you in the shoulder before allowing you to mount. You ride briefly but proudly around the Tavern grounds while your friends cheer. The stranger breaks into a broad grin.\n\"I can see that was no idle boast! Your determination is truly impressive. Take these eggs to raise horses of your own, and perhaps we'll meet again one day.\" You take the eggs, the stranger tips his hat... and vanishes.",
- "questHorseBoss": "Night-Mare",
+ "questHorseBoss": "Bestadelo",
"questHorseDropHorseEgg": "Cabalo (Ovo)",
"questHorseUnlockText": "Desbloquea os Ovos de Cabalo adquiribles no Mercado",
"questBurnoutText": "Burnout and the Exhaust Spirits",
"questBurnoutNotes": "It is well past midnight, still and stiflingly hot, when Redphoenix and scout captain Kiwibot abruptly burst through the city gates. \"We need to evacuate all the wooden buildings!\" Redphoenix shouts. \"Hurry!\"
Kiwibot grips the wall as she catches her breath. \"It's draining people and turning them into Exhaust Spirits! That's why everything was delayed. That's where the missing people have gone. It's been stealing their energy!\"
\"'It'?'\" asks Lemoness.
And then the heat takes form.
It rises from the earth in a billowing, twisting mass, and the air chokes with the scent of smoke and sulphur. Flames lick across the molten ground and contort into limbs, writhing to horrific heights. Smoldering eyes snap open, and the creature lets out a deep and crackling cackle.
Kiwibot whispers a single word.
\"Burnout.\"",
"questBurnoutCompletion": "
Burnout is DEFEATED!With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.
Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!
\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!
One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"
Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"
She claps her hands. \"Now - let's celebrate!\"",
"questBurnoutCompletionChat": "`Burnout is DEFEATED!`\n\nWith a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.\n\nIan, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!\n\n\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!\n\nOne of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"\n\nHer tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"\n\nShe claps her hands. \"Now - let's celebrate!\"\n\nAll Habiticans receive:\n\nPhoenix Pet\nPhoenix Mount\nAchievement: Savior of the Flourishing Fields\nBasic Candy\nVanilla Candy\nSand Candy\nCinnamon Candy\nChocolate Candy\nRotten Candy\nSour Pink Candy\nSour Blue Candy\nHoney Candy",
- "questBurnoutBoss": "Burnout",
+ "questBurnoutBoss": "Fatiga",
"questBurnoutBossRageTitle": "Exhaust Strike",
"questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!",
"questBurnoutDropPhoenixPet": "Fénix (Mascota)",
@@ -382,9 +382,9 @@
"questTaskwoodsTerror2Text": "Terror in the Taskwoods, Part 2: Finding the Flourishing Fairies",
"questTaskwoodsTerror2Notes": "Having fought through the swarm of burning skulls, you reach a large group of refugee farmers at the forest's edge. \"Their village was burnt down by a renegade autumn spirit,\" says a familiar voice. It's @Kiwibot, the legendary tracker! \"I managed to gather the survivors, but there's no sign of the Flourishing Fairies who help to grow the wild fruit of the Taskwoods. Please, you have to help me rescue them!\"",
"questTaskwoodsTerror2Completion": "You manage to locate the last dryad and lead her away from the monsters. When you return to the refugee farmers, you are greeted by the thankful faeries, who give you a robe woven of shining magic and silk. Suddenly, a deep rumbling sound echoes through the trees, shaking the very earth. \"That must be the renegade spirit,\" the Joyful Reaper says. \"Let's hurry!\"",
- "questTaskwoodsTerror2CollectPixies": "Pixies",
+ "questTaskwoodsTerror2CollectPixies": "Trasnos",
"questTaskwoodsTerror2CollectBrownies": "Brownies",
- "questTaskwoodsTerror2CollectDryads": "Dryads",
+ "questTaskwoodsTerror2CollectDryads": "Dríade",
"questTaskwoodsTerror2DropArmor": "Pyromancer's Robes (Armor)",
"questTaskwoodsTerror3Text": "Terror in the Taskwoods, Part 3: Jacko of the Lantern",
"questTaskwoodsTerror3Notes": "Ready for battle, your group marches to the heart of the forest, where the renegade spirit is trying to destroy an ancient apple tree surrounded by fruitful berry bushes. His pumpkin-like head radiates a terrible light wherever it turns, and in his left hand he holds a long rod, with a lantern hanging from its tip. Instead of fire or flame, however, the lantern contains a dark crystal that chills you to the very bone.
The Joyful Reaper raises a bony hand to her mouth. \"That's -- that's Jacko, the Lantern Spirit! But he's a helpful harvest ghost who guides our farmers. What could possibly drive the dear soul to act this way?\"
\"I don't know,\" says @bridgetteempress. \"But it looks like that 'dear soul' is about to attack us!\"",
@@ -407,12 +407,12 @@
"questMoon1Notes": "Habiticans have been distracted from their tasks by something strange: twisted shards of stone are appearing across the land. Worried, @Starsystemic the Seer summons you to her tower. She says, \"I've been reading alarming omens about these shards, which have been blighting the land and driving hardworking Habiticans to distraction. I can track the source, but first I'll need to examine the shards. Can you bring some to me?\"",
"questMoon1Completion": "@Starsystemic disappears into her tower to examine the shards you gathered. \"This may be more complicated than we feared,\" says @Beffymaroo, her trusted assistant. \"It will take us some time to discover the cause. Keep checking in every day, and when we know more, we'll send you the next quest scroll.\"",
"questMoon1CollectShards": "Lunar Shards",
- "questMoon1DropHeadgear": "Lunar Warrior Helm (Headgear)",
+ "questMoon1DropHeadgear": "Helmo pugnaz lunar (equipo de cabeza)",
"questMoon2Text": "Lunar Battle, Part 2: Stop the Overshadowing Stress",
"questMoon2Notes": "After studying the shards, @Starsystemic the Seer has some bad news. \"An ancient monster is approaching Habitica, and it is causing terrible stress to befall the citizens. I can draw the shadow out of people's hearts and into this tower, where it will take physical form, but you’ll need to defeat it before it breaks loose and spreads again.\" You nod, and she starts to chant. Dancing shadows fill the room, pressing tightly together. The cold wind swirls, the darkness deepens. The Overshadowing Stress rises from the floor, grins like a nightmare made real... and strikes!",
"questMoon2Completion": "The shadow explodes in a puff of dark air, leaving the room brighter and your hearts lighter. The stress blanketing Habitica is diminished, and you can all breathe a sigh of relief. Still, as you look up at the sky, you sense that this is not over: the monster knows someone destroyed its shadow. \"We'll keep careful watch in the coming weeks,\" says @Starsystemic, \"and I'll send you a quest scroll when it manifests.\"",
"questMoon2Boss": "Overshadowing Stress",
- "questMoon2DropArmor": "Lunar Warrior Armor (Armor)",
+ "questMoon2DropArmor": "Armadura pugnaz lunar (armadura)",
"questMoon3Text": "Lunar Battle, Part 3: The Monstrous Moon",
"questMoon3Notes": "You get @Starsystemic's urgent scroll at the stroke of midnight and gallop to her tower. \"The monster is using the full moon to try to cross over to our realm,\" she says. \"If it succeeds, the shockwave of stress will be overwhelming!\"
To your dismay, you see that the monster is indeed using the moon to manifest. A glowing eye opens in its rocky surface, and a long tongue rolls from a gaping, fanged mouth. There's no way you'll let it fully emerge!",
"questMoon3Completion": "The emerging monster bursts into shadow, and the moon turns silver as the danger passes. The dragons start singing again, and the stars sparkle with a soothing light. @Starsystemic the Seer bends down and picks up a lunar shard. It shines silver in her hand, before changing into a magnificent crystal scythe.",
@@ -519,18 +519,18 @@
"questGroupLostMasterclasser": "Mystery of the Masterclassers",
"questUnlockLostMasterclasser": "To unlock this quest, complete the final quests of these quest chains: 'Dilatory Distress', 'Mayhem in Mistiflying', 'Stoïkalm Calamity', and 'Terror in the Taskwoods'.",
"questLostMasterclasser1Text": "The Mystery of the Masterclassers, Part 1: Read Between the Lines",
- "questLostMasterclasser1Notes": "You’re unexpectedly summoned by @beffymaroo and @Lemoness to Habit Hall, where you’re astonished to find all four of Habitica’s Masterclassers awaiting you in the wan light of dawn. Even the Joyful Reaper looks somber.
“Oho, you’re here,” says the April Fool. “Now, we would not rouse you from your rest without a truly dire—”
“Help us investigate the recent bout of possessions,” interrupts Lady Glaciate. “All the victims blamed someone named Tzina.”
The April Fool is clearly affronted by the summary. “What about my speech?” he hisses to her. “With the fog and thunderstorm effects?”
“We’re in a hurry,” she mutters back. “And my mammoths are still soggy from your incessant practicing.”
“I’m afraid that the esteemed Master of Warriors is correct,” says King Manta. “Time is of the essence. Will you aid us?”
When you nod, he waves his hands to open a portal, revealing an underwater room. “Swim down with me to Dilatory, and we will scour my library for any references that might give us a clue.” At your look of confusion, he adds, “Don’t worry, the paper was enchanted long before Dilatory sank. None of the books are the slightest bit damp!” He winks.“Unlike Lady Glaciate’s mammoths.”
“I heard that, Manta.”
As you dive into the water after the Master of Mages, your legs magically fuse into fins. Though your body is buoyant, your heart sinks when you see the thousands of bookshelves. Better start reading…",
+ "questLostMasterclasser1Notes": "",
"questLostMasterclasser1Completion": "After hours of poring through volumes, you still haven’t found any useful information.
“It seems impossible that there isn’t even the tiniest reference to anything relevant,” says head librarian @Tuqjoi, and their assistant @stefalupagus nods in frustration.
King Manta’s eyes narrow. “Not impossible…” he says. “
Intentional.” For a moment, the water glows around his hands, and several of the books shudder. “Something is obscuring information,” he says. “Not just a static spell, but something with a will of its own. Something… alive.” He swims up from the table. “The Joyful Reaper needs to hear about this. Let’s pack a meal for the road.”",
"questLostMasterclasser1CollectAncientTomes": "Ancient Tomes",
"questLostMasterclasser1CollectForbiddenTomes": "Forbidden Tomes",
"questLostMasterclasser1CollectHiddenTomes": "Hidden Tomes",
"questLostMasterclasser2Text": "The Mystery of the Masterclassers, Part 2: Assembling the a'Voidant",
"questLostMasterclasser2Notes": "The Joyful Reaper drums her bony fingers on some of the books that you brought. “Oh, dear,” the Master of Healers says. “There is a malevolent life essence at work. I might have guessed, considering the attacks by reanimated skulls during each incident.” Her assistant @tricksy.fox brings in a chest, and you are startled to see the contents that @beffymaroo unloads: the very same objects once used by this mysterious Tzina to possess people.
“I’m going to use resonant healing magic to try to make this creature manifest,” the Joyful Reaper says, reminding you that the skeleton is a somewhat unconventional Healer. “You’ll need to read the revealed information quickly, in case it breaks loose.”
As she concentrates, a twisting mist begins to siphon from the books and twine around the objects. Quickly, you flip through the pages, trying to read the new lines of text that are writhing into view. You catch only a few snippets: “Sands of the Timewastes” — “the Great Disaster” —“split into four”— “permanently corrupted”— before a single name catches your eye: Zinnya.
Abruptly, the pages wrench free from your fingers and shred themselves as a howling creature explodes into being, coalescing around the possessed objects.
“It’s an a’Voidant!” the Joyful Reaper shouts, throwing up a protection spell. “They’re ancient creatures of confusion and obscurity. If this Tzina can control one, she must have a frightening command over life magic. Quickly, attack it before it escapes back into the books!”
",
- "questLostMasterclasser2Completion": "The a’Voidant succumbs at last, and you share the snippets that you read.
“None of those references sound familiar, even for someone as old as I,” the Joyful Reaper says. “Except… the Timewastes are a distant desert at the most hostile edge of Habitica. Portals often fail nearby, but swift mounts could get you there in no time. Lady Glaciate will be glad to assist.” Her voice grows amused. “Which means that the enamored Master of Rogues will undoubtedly tag along.” She hands you the glimmering mask. “Perhaps you should try to track the lingering magic in these items to its source. I’ll go harvest some sustenance for your journey.”",
+ "questLostMasterclasser2Completion": "",
"questLostMasterclasser2Boss": "The a'Voidant",
"questLostMasterclasser2DropEyewear": "Aether Mask (Eyewear)",
"questLostMasterclasser3Text": "The Mystery of the Masterclassers, Part 3: City in the Sands",
- "questLostMasterclasser3Notes": "As night unfurls over the scorching sands of the Timewastes, your guides @AnnDeLune, @Kiwibot, and @Katy133 lead you forward. Some bleached pillars poke from the shadowed dunes, and as you approach them, a strange skittering sound echoes across the seemingly-abandoned expanse.
“Invisible creatures!” says the April Fool, clearly covetous. “Oho! Just imagine the possibilities. This must be the work of a truly stealthy Rogue.”
“A Rogue who could be watching us,” says Lady Glaciate, dismounting and raising her spear. “If there’s a head-on attack, try not to irritate our opponent. I don’t want a repeat of the volcano incident.”
He beams at her. “But it was one of your most resplendent rescues.”
To your surprise, Lady Glaciate turns very pink at the compliment. She hastily stomps away to examine the ruins.
“Looks like the wreck of an ancient city,” says @AnnDeLune. “I wonder what…”
Before she can finish her sentence, a portal roars open in the sky. Wasn’t that magic supposed to be nearly impossible here? The hoofbeats of the invisible animals thunder as they flee in panic, and you steady yourself against the onslaught of shrieking skulls that flood the skies.",
+ "questLostMasterclasser3Notes": "",
"questLostMasterclasser3Completion": "The April Fool surprises the final skull with a spray of sand, and it blunders backwards into Lady Glaciate, who smashes it expertly. As you catch your breath and look up, you see a single flash of someone’s silhouette moving on the other side of the closing portal. Thinking quickly, you snatch up the amulet from the chest of previously-possessed items, and sure enough, it’s drawn towards the unseen person. Ignoring the shouts of alarm from Lady Glaciate and the April Fool, you leap through the portal just as it snaps shut, plummeting into an inky swath of nothingness.",
"questLostMasterclasser3Boss": "Void Skull Swarm",
"questLostMasterclasser3RageTitle": "Swarm Respawn",
@@ -545,7 +545,7 @@
"questLostMasterclasser4Text": "The Mystery of the Masterclassers, Part 4: The Lost Masterclasser",
"questLostMasterclasser4Notes": "You surface from the portal, but you’re still suspended in a strange, shifting netherworld. “That was bold,” says a cold voice. “I have to admit, I hadn’t planned for a direct confrontation yet.” A woman rises from the churning whirlpool of darkness. “Welcome to the Realm of Void.”
You try to fight back your rising nausea. “Are you Zinnya?” you ask.
“That old name for a young idealist,” she says, mouth twisting, and the world writhes beneath you. “No. If anything, you should call me the Anti’zinnya now, given all that I have done and undone.”
Suddenly, the portal reopens behind you, and as the four Masterclassers burst out, bolting towards you, Anti’zinnya’s eyes flash with hatred. “I see that my pathetic replacements have managed to follow you.”
You stare. “Replacements?”
“As the Master Aethermancer, I was the first Masterclasser — the only Masterclasser. These four are a mockery, each possessing only a fragment of what I once had! I commanded every spell and learned every skill. I shaped your very world to my whim — until the traitorous aether itself collapsed under the weight of my talents and my perfectly reasonable expectations. I have been trapped for millennia in this resulting void, recuperating. Imagine my disgust when I learned how my legacy had been corrupted.” She lets out a low, echoing laugh. “My plan was to destroy their domains before destroying them, but I suppose the order is irrelevant.” With a burst of uncanny strength, she charges forward, and the Realm of Void explodes into chaos.",
"questLostMasterclasser4Completion": "Under the onslaught of your final attack, the Lost Masterclasser screams in frustration, her body flickering into translucence. The thrashing void stills around her as she slumps forward, and for a moment, she seems to change, becoming younger, calmer, with an expression of peace upon her face… but then everything melts away with scarcely a whisper, and you’re kneeling once more in the desert sand.
“It seems that we have much to learn about our own history,” King Manta says, staring at the broken ruins. “After the Master Aethermancer grew overwhelmed and lost control of her abilities, the outpouring of void must have leached the life from the entire land. Everything probably became deserts like this.”
“No wonder the ancients who founded Habitica stressed a balance of productivity and wellness,” the Joyful Reaper murmurs. “Rebuilding their world would have been a daunting task requiring considerable hard work, but they would have wanted to prevent such a catastrophe from happening again.”
“Oho, look at those formerly possessed items!” says the April Fool. Sure enough, all of them shimmer with a pale, glimmering translucence from the final burst of aether released when you laid Anti’zinnya’s spirit to rest. “What a dazzling effect. I must take notes.”
“The concentrated remnants of aether in this area probably caused these animals to go invisible, too,” says Lady Glaciate, scratching a patch of emptiness behind the ears. You feel an unseen fluffy head nudge your hand, and suspect that you’ll have to do some explaining at the Stables back home. As you look at the ruins one last time, you spot all that remains of the first Masterclasser: her shimmering cloak. Lifting it onto your shoulders, you head back to Habit City, pondering everything that you have learned.
",
- "questLostMasterclasser4Boss": "Anti'zinnya",
+ "questLostMasterclasser4Boss": "Anticiña",
"questLostMasterclasser4RageTitle": "Siphoning Void",
"questLostMasterclasser4RageDescription": "Siphoning Void: This bar fills when you don't complete your Dailies. When it is full, Anti'zinnya will remove the party's Mana!",
"questLostMasterclasser4RageEffect": "`Anti'zinnya uses SIPHONING VOID!` In a twisted inversion of the Ethereal Surge spell, you feel your magic drain away into the darkness!",
@@ -563,7 +563,7 @@
"questPterodactylText": "The Pterror-dactyl",
"questPterodactylNotes": "You're taking a stroll along the peaceful Stoïkalm Cliffs when an evil screech rends the air. You turn to find a hideous creature flying towards you and are overcome by a powerful terror. As you turn to flee, @Lilith of Alfheim grabs you. \"Don't panic! It's just a Pterror-dactyl.\"
@Procyon P nods. \"They nest nearby, but they're attracted to the scent of negative Habits and undone Dailies.\"
\"Don't worry,\" @Katy133 says. \"We just need to be extra productive to defeat it!\" You are filled with a renewed sense of purpose and turn to face your foe.",
"questPterodactylCompletion": "With one last screech the Pterror-dactyl plummets over the side of the cliff. You run forward to watch it soar away over the distant steppes. \"Phew, I'm glad that's over,\" you say. \"Me too,\" replies @GeraldThePixel. \"But look! It's left some eggs behind for us.\" @Edge passes you three eggs, and you vow to raise them in tranquility, surrounded by positive Habits and blue Dailies.",
- "questPterodactylBoss": "Pterror-dactyl",
+ "questPterodactylBoss": "Terrordáctilo",
"questPterodactylDropPterodactylEgg": "Pterodactyl (Egg)",
"questPterodactylUnlockText": "Unlocks purchasable Pterodactyl eggs in the Market",
"questBadgerText": "Stop Badgering Me!",
@@ -622,7 +622,7 @@
"questAlligatorText": "The Insta-Gator",
"questAlligatorNotes": "“Crikey!” exclaims @gully. “An Insta-Gator in its natural habitat! Careful, it distracts its prey with things that seem urgent THIS INSTANT, and it feeds on the unchecked Dailies that result.” You fall silent to avoid attracting its attention, but to no avail. The Insta-Gator spots you and charges! Distracting voices rise up from Swamps of Stagnation, grabbing for your attention: “Read this post! See this photo! Pay attention to me THIS INSTANT!” You scramble to mount a counterattack, completing your Dailies and bolstering your good Habits to fight off the dreaded Insta-Gator.",
"questAlligatorCompletion": "With your attention focused on what’s important and not the Insta-Gator’s distractions, the Insta-Gator flees. Victory! “Are those eggs? They look like gator eggs to me,” asks @mfonda. “If we care for them correctly, they’ll be loyal pets or faithful steeds,” answers @UncommonCriminal, handing you three to care for. Let’s hope so, or else the Insta-Gator might make a return…",
- "questAlligatorBoss": "Insta-Gator",
+ "questAlligatorBoss": "Instaimán",
"questAlligatorDropAlligatorEgg": "Alligator (Egg)",
"questAlligatorUnlockText": "Unlocks purchasable Alligator eggs in the Market",
"oddballsText": "Oddballs Quest Bundle",
@@ -632,7 +632,15 @@
"questVelociraptorText": "The Veloci-Rapper",
"questVelociraptorNotes": "You’re sharing honey cakes with @*~Seraphina~*, @Procyon P, and @Lilith of Alfheim by a lake in the Stoïkalm Steppes. Suddenly, a mournful voice interrupts your picnic.
My Habits took a hit, I missed my Dailies,
I’m losing it, sinking with doubt and maybes,
At the top of my game I used to be so fly,
But now I just let my Due Dates go by.@*~Seraphina~* peers behind a stand of grass. “It’s the Veloci-Rapper. It seems... distraught?”
You pump a fist in determination. “There's only one thing to do. Rap battle time!”",
"questVelociraptorCompletion": "You burst through the grass, confronting the Veloci-Rapper.
See here, rapper, you’re no quitter,
You’re Bad Habits' hardest hitter!
Check off your To-Dos like a boss,
Don’t mourn over one day’s loss!Filled with renewed confidence, it bounds off to freestyle another day, leaving behind three eggs where it sat.",
- "questVelociraptorBoss": "Veloci-Rapper",
+ "questVelociraptorBoss": "Velocirapeiro",
"questVelociraptorDropVelociraptorEgg": "Velociraptor (Egg)",
- "questVelociraptorUnlockText": "Unlocks purchasable Velociraptor eggs in the Market"
+ "questVelociraptorUnlockText": "Unlocks purchasable Velociraptor eggs in the Market",
+ "questRobotCollectGears": "Engrenaxes",
+ "questBlackPearlBoss": "Asteroidea",
+ "questRobotCollectSprings": "Resortes",
+ "questAmberBoss": "Resinárbore",
+ "questWindupBoss": "Oxidón",
+ "questSolarSystemBoss": "Diversinoides",
+ "questRobotCollectBolts": "Parafusos",
+ "questVirtualPetBoss": "Gochimón"
}
diff --git a/website/common/locales/gl/settings.json b/website/common/locales/gl/settings.json
index 6ebaf093a1..36dff92b86 100755
--- a/website/common/locales/gl/settings.json
+++ b/website/common/locales/gl/settings.json
@@ -2,7 +2,7 @@
"settings": "Configuración",
"language": "Lingua",
"americanEnglishGovern": "No caso dunha diferencia nas traducións, a versión en Inglés Americano prevalece.",
- "helpWithTranslation": "Gustaríache axudar coa tradución de Habitica? Xenial! Visita
the Aspiring Linguists Guild!",
+ "helpWithTranslation": "Gustaríache axudar coa tradución de Habitica? Xenial! Visita
o Gremio de Aspirantes de Lingüística!",
"stickyHeader": "Encabezado adherente",
"newTaskEdit": "Abrir as tarefas novas en modo edición",
"dailyDueDefaultView": "Poñer por defecto as tarefas Diarias na pestana \"ata\" (data de vencemento)",
@@ -46,13 +46,13 @@
"misc": "Outros",
"showHeader": "Mostrar Encabezamento",
"changePass": "Cambiar Contrasinal",
- "changeUsername": "Change Username",
+ "changeUsername": "Cambiar o nome de usuario",
"changeEmail": "Cambiar Correo Electrónico",
"newEmail": "Novo Correo Electrónico",
"oldPass": "Antigo Contrasinal",
"newPass": "Novo Contrasinal",
"confirmPass": "Confirmar Nova Contrasinal",
- "newUsername": "New Username",
+ "newUsername": "Novo nome de usuario",
"dangerZone": "Zona Perigosa",
"resetText1": "COIDADO! Isto reinicializa moitas partes da túa conta. Está moi desaconsellado, pero algúns usuarios o atopan útil ao principio despois de xogar na páxina durante un rato.",
"resetText2": "You will lose all your levels, Gold, and Experience points. All your tasks (except those from challenges) will be deleted permanently and you will lose all of their historical data. You will lose all your equipment but you will be able to buy it all back, including all limited edition equipment or subscriber Mystery items that you already own (you will need to be in the correct class to re-buy class-specific gear). You will keep your current class and your pets and mounts. You might prefer to use an Orb of Rebirth instead, which is a much safer option and which will preserve your tasks and equipment.",
@@ -107,7 +107,7 @@
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
"weeklyRecaps": "Resumos da actividade da túa conta na semana pasada (Nota: isto está actualmente deshabilitado debido a problemas de rendemento, pero esperamos restablecer este servizo e poder volver a enviar e-mails pronto!)",
"onboarding": "Guidance with setting up your Habitica account",
- "majorUpdates": "Important announcements",
+ "majorUpdates": "Anuncios importantes",
"questStarted": "A túa Misión comezou",
"invitedQuest": "Invitad@ á Misión",
"kickedGroup": "Expulsad@ do grupo",
@@ -134,7 +134,7 @@
"generateCodes": "Xerar Códigos",
"generate": "Xerar",
"getCodes": "Obter Códigos",
- "webhooks": "Webhooks",
+ "webhooks": "Ganchos web",
"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
Webhooks page.",
"enabled": "Habilitado",
"webhookURL": "URL da Webhook",
@@ -154,7 +154,7 @@
"consecutiveMonths": "Meses Consecutivos:",
"gemCapExtra": "Límite Extra de Xemas:",
"mysticHourglasses": "Reloxos de Area Místicos:",
- "mysticHourglassesTooltip": "Mystic Hourglasses",
+ "mysticHourglassesTooltip": "Reloxos de area místicos",
"paypal": "PayPal",
"amazonPayments": "Pagos Amazon",
"amazonPaymentsRecurring": "Ticking the checkbox below is necessary for your subscription to be created. It allows your Amazon account to be used for ongoing payments for
this subscription. It will not cause your Amazon account to be automatically used for any future purchases.",
@@ -162,19 +162,28 @@
"timezoneUTC": "Habitica usa a zona horaria establecida no teu ordenador, é dicir:
<%= utc %>",
"timezoneInfo": "Se a zona horaria é errónea, primeiro reactualiza esta páxina usando o botón recargar ou actualizar do teu navigador para asegurarte de que Habitica ten a información máis recente. Se segue sendo errónea, axusta a zona horaria do teu ordenador e logo volve a reactualizar esta páxina.
Se usas Habitica noutros ordenadores ou dispositivos móbiles, a zona horaria debe ser a mesma en todos eles. Se as túas tarefas Diarias estiveron a reinicializarse á hora incorrecta, repite estas manipulacións en todos os outros ordenadores e nun navigador nos teus dispositivos móbiles.",
"push": "Push",
- "about": "About",
+ "about": "Sobre Habitica",
"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:",
+ "currentUsername": "Nome de usuario actual:",
"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.",
- "verifyUsernameVeteranPet": "One of these Veteran Pets will be waiting for you after you've finished confirming!"
+ "verifyUsernameVeteranPet": "One of these Veteran Pets will be waiting for you after you've finished confirming!",
+ "adjustment": "Axuste",
+ "subscriptionReminders": "Recordatorios de subscricións",
+ "everywhere": "Por todos lados",
+ "transactions": "Transaccións",
+ "mentioning": "Mencionando",
+ "resetAccount": "Restabelecer a conta",
+ "gemTransactions": "Transaccións de xemas",
+ "transaction_debug": "Acción de depuración",
+ "hourglassTransactions": "Transaccións de reloxos de area"
}
diff --git a/website/common/locales/gl/spells.json b/website/common/locales/gl/spells.json
index 03da5eee28..ea340d2303 100755
--- a/website/common/locales/gl/spells.json
+++ b/website/common/locales/gl/spells.json
@@ -1,12 +1,12 @@
{
"spellWizardFireballText": "Explosión de Chamas",
- "spellWizardFireballNotes": "You summon XP and deal fiery damage to Bosses! (Based on: INT)",
+ "spellWizardFireballNotes": "",
"spellWizardMPHealText": "Xurdimento Etéreo",
- "spellWizardMPHealNotes": "You sacrifice Mana so the rest of your Party, except Mages, gains MP! (Based on: INT)",
+ "spellWizardMPHealNotes": "",
"spellWizardEarthText": "Terremoto",
"spellWizardEarthNotes": "Your mental power shakes the earth and buffs your Party's Intelligence! (Based on: Unbuffed INT)",
"spellWizardFrostText": "Xeada Escalofriante",
- "spellWizardFrostNotes": "With one cast, ice freezes all your streaks so they won't reset to zero tomorrow!",
+ "spellWizardFrostNotes": "Cun encantamento, o xeo conxela as túas rachas para que non se poñan a cero mañá!",
"spellWizardFrostAlreadyCast": "Xa botaches este meigallo hoxe. As túas rachas están conxeladas, e non fai falla volver a botalo.",
"spellWarriorSmashText": "Choque Brutal",
"spellWarriorSmashNotes": "You make a task more blue/less red and deal extra damage to Bosses! (Based on: STR)",
@@ -56,4 +56,4 @@
"groupTasksNoCast": "Casting a skill on group tasks is not allowed.",
"spellNotOwned": "Non tes esta habilidade.",
"spellLevelTooHigh": "Tes que ser de nivel <%= level %> para usar esta habilidade."
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/gl/subscriber.json b/website/common/locales/gl/subscriber.json
index 96f6fe19b4..5c761558c4 100755
--- a/website/common/locales/gl/subscriber.json
+++ b/website/common/locales/gl/subscriber.json
@@ -1,17 +1,17 @@
{
"subscription": "Subscrición",
"subscriptions": "Subscricións",
- "sendGems": "Send Gems",
+ "sendGems": "Enviar xemas",
"buyGemsGold": "Merca Xemas con Ouro",
"mustSubscribeToPurchaseGems": "Tes que subscribirte para mercar Xemas con GP",
"reachedGoldToGemCap": "You've reached the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.",
"reachedGoldToGemCapQuantity": "Your requested amount <%= quantity %> exceeds the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.",
"mysteryItem": "Obxectos mensuais exclusivos",
"mysteryItemText": "Cada mes recibirás un obxecto cosmético único para o teu avatar! Ademais, por cada tres meses de subscrición consecutiva, os Misteriosos Viaxantes no Tempo concederanche acceso a obxectos cosméticos históricos (e futurísticos!).",
- "exclusiveJackalopePet": "Exclusive pet",
+ "exclusiveJackalopePet": "Mascota exclusiva",
"giftSubscription": "Want to gift a subscription to someone?",
"giftSubscriptionText4": "Thanks for supporting Habitica!",
- "groupPlans": "Group Plans",
+ "groupPlans": "Plans de grupo",
"subscribe": "Subscríbete",
"nowSubscribed": "You are now subscribed to Habitica!",
"cancelSub": "Cancelar Subscrición",
@@ -50,15 +50,15 @@
"mysterySet201508": "Lote de Disfraz de Onza",
"mysterySet201509": "Lote de Lobishome",
"mysterySet201510": "Lote de Trasno Cornudo",
- "mysterySet201511": "Lote de Guerreiro de Madeira",
+ "mysterySet201511": "Conxunto pugnaz de madeira",
"mysterySet201512": "Lote de Chama de Inverno",
"mysterySet201601": "Lote de Campión da Resolución",
"mysterySet201602": "Lote de Rompecorazóns",
"mysterySet201603": "Lote de Trébol da Sorte",
- "mysterySet201604": "Lote de Guerreiro de Folla",
+ "mysterySet201604": "Conxunto pugnaz de follas",
"mysterySet201605": "Lote de Bardo en Marcha",
"mysterySet201606": "Lote de Túnica Selkie",
- "mysterySet201607": "Lote de Ladrón do Fondo Mariño",
+ "mysterySet201607": "Conxunto de renarte do fondo mariño",
"mysterySet201608": "Lote de Tormenta de Tronos",
"mysterySet201609": "Cow Costume Set",
"mysterySet201610": "Spectral Flame Set",
@@ -71,7 +71,7 @@
"mysterySet201705": "Feathered Fighter Set",
"mysterySet201706": "Pirate Pioneer Set",
"mysterySet201707": "Jellymancer Set",
- "mysterySet201708": "Lava Warrior Set",
+ "mysterySet201708": "Conxunto pugnaz de lava",
"mysterySet201709": "Sorcery Student Set",
"mysterySet201710": "Imperious Imp Set",
"mysterySet201711": "Carpet Rider Set",
@@ -92,7 +92,7 @@
"mysterySet301405": "Lote de Accesorios Steampunk",
"mysterySet301703": "Peacock Steampunk Set",
"mysterySet301704": "Pheasant Steampunk Set",
- "mysterySetwondercon": "Wondercon",
+ "mysterySetwondercon": "WonderCon",
"subUpdateCard": "Actualizar Tarxeta",
"subUpdateTitle": "Actualizar",
"subUpdateDescription": "Actualizar a tarxeta a cobrar.",
@@ -132,5 +132,11 @@
"subscriptionBenefit6": "Earn Mystic Hourglasses for use in the Time Travelers' Shop!",
"purchaseAll": "Purchase Set",
"gemsRemaining": "gems remaining",
- "notEnoughGemsToBuy": "You are unable to buy that amount of gems"
+ "notEnoughGemsToBuy": "You are unable to buy that amount of gems",
+ "howManyGemsPurchase": "Cantas xemas queres comprar?",
+ "howManyGemsSend": "Cantas xemas queres enviar?",
+ "needToPurchaseGems": "Necesitas comprar xemas de regalo?",
+ "wantToSendOwnGems": "Queres enviar as túas propias xemas?",
+ "viewSubscriptions": "Ver as subscricións",
+ "organization": "Organización"
}
diff --git a/website/common/locales/gl/tasks.json b/website/common/locales/gl/tasks.json
index 68f40fa7ca..185a06316a 100755
--- a/website/common/locales/gl/tasks.json
+++ b/website/common/locales/gl/tasks.json
@@ -1,33 +1,33 @@
{
"clearCompleted": "Eliminado correctamente",
- "clearCompletedDescription": "Completed To-Dos are deleted after 30 days for non-subscribers and 90 days for subscribers.",
- "clearCompletedConfirm": "Are you sure you want to delete your completed To-Dos?",
- "addMultipleTip": "
Tip: To add multiple <%= taskType %>, separate each one using a line break (Shift + Enter) and then press \"Enter.\"",
+ "clearCompletedDescription": "As tarefas completadas elimínanse aos 30 días para a xente non subscrita e aos 90 días para a subscrita.",
+ "clearCompletedConfirm": "Seguro que queres eliminar as túas tarefas pendentes completadas?",
+ "addMultipleTip": "
Consello: para engadir varias <%= taskType %>, sepáraas cun salto de liña (Maiús + Intro) e a continuación preme «Intro».",
"addATask": "Add a <%= type %>",
- "editATask": "Edit a <%= type %>",
- "createTask": "Create <%= type %>",
+ "editATask": "Editar <%= type %>",
+ "createTask": "Crear <%= type %>",
"addTaskToUser": "Add Task",
- "scheduled": "Scheduled",
- "theseAreYourTasks": "These are your <%= taskType %>",
+ "scheduled": "Planificada",
+ "theseAreYourTasks": "Estas son as túas <%= taskType %>",
"habit": "Hábito",
"habits": "Hábitos",
- "habitsDesc": "Habits don't have a rigid schedule. You can check them off multiple times per day.",
- "positive": "Positive",
- "negative": "Negative",
+ "habitsDesc": "Os hábitos non teñen un horario ríxido. Podes marcalos varias veces ao día.",
+ "positive": "Positiva",
+ "negative": "Negativa",
"yellowred": "Débiles",
"greenblue": "Fortes",
"edit": "Editar",
"save": "Gardar",
"addChecklist": "Engadir Lista",
"checklist": "Lista",
- "newChecklistItem": "New checklist item",
- "expandChecklist": "Expand Checklist",
- "collapseChecklist": "Collapse Checklist",
+ "newChecklistItem": "Novo elemento de lista",
+ "expandChecklist": "Expandir a lista",
+ "collapseChecklist": "Contraer a lista",
"text": "Título",
"notes": "Notes",
- "advancedSettings": "Advanced Settings",
+ "advancedSettings": "Configuración avanzada",
"difficulty": "Dificultade",
- "difficultyHelp": "Difficulty describes how challenging a Habit, Daily, or To-Do is for you to complete. A higher difficulty results in greater rewards when a Task is completed, but also greater damage when a Daily is missed or a negative Habit is clicked.",
+ "difficultyHelp": "A dificultade indica o difícil que te resulta completar un hábito, unha tarefa diaria ou unha tarefa pendente. A maior dificultade, mellores recompensas ao completar, pero maior dano ao non completar ou ao premer un hábito negativo.",
"trivial": "Nimio",
"easy": "Fácil",
"medium": "Medio",
@@ -36,32 +36,32 @@
"progress": "Progreso",
"daily": "Tarefa Diaria",
"dailies": "Tarefas Diarias",
- "dailysDesc": "Dailies repeat on a regular basis. Choose the schedule that works best for you!",
+ "dailysDesc": "As tarefas diarias repítense regularmente. Escolle a regularidade que mellor te vaia!",
"streakCounter": "Contador de Rachas",
"repeat": "Repetir",
- "repeats": "Repeats",
+ "repeats": "Repítese",
"repeatEvery": "Repetir cada",
- "repeatOn": "Repeat On",
+ "repeatOn": "Repetir",
"day": "Día",
"days": "Días",
- "restoreStreak": "Adjust Streak",
- "resetStreak": "Reset Streak",
- "todo": "Tarefa",
- "todos": "Tarefas",
- "todosDesc": "To-Dos need to be completed once. Add checklists to your To-Dos to increase their value.",
+ "restoreStreak": "Axustar a serie",
+ "resetStreak": "Restabelecer a serie",
+ "todo": "Tarefa pendente",
+ "todos": "Tarefas pendentes",
+ "todosDesc": "As tarefas pendentes complétanse unha vez. Engádelles listas para aumentar o seu valor.",
"dueDate": "Data de Vencemento",
"remaining": "Activo",
"complete": "Feito",
- "complete2": "Complete",
- "today": "Today",
- "dueIn": "Due <%= dueIn %>",
+ "complete2": "Feita",
+ "today": "Hoxe",
+ "dueIn": "Vence <%= dueIn %>",
"due": "Para Hoxe",
"notDue": "Non para hoxe",
"grey": "Gris",
"score": "Marcador",
"reward": "Recompensa",
"rewards": "Recompensas",
- "rewardsDesc": "Rewards are a great way to use Habitica and complete your tasks. Try adding a few today!",
+ "rewardsDesc": "As recompensas son unha forma xenial de usar Habitica para completar as túas tarefas. Proba a engadir un par delas hoxe!",
"gold": "Ouro",
"silver": "Prata (100 pratas = 1 ouro)",
"price": "Prezo",
@@ -71,15 +71,15 @@
"editTags2": "Edit Tags",
"toRequired": "Debes aportar unha propiedade \"to\"",
"startDate": "Data de Comezo",
- "streaks": "Streak Achievements",
- "streakName": "<%= count %> Streak Achievements",
- "streakText": "Has performed <%= count %> 21-day streaks on Dailies",
+ "streaks": "Logros de series",
+ "streakName": "<%= count %> logros de series",
+ "streakText": "Realizou <%= count %> series de 21 días de tarefas diarias",
"streakSingular": "Rachador@",
"streakSingularText": "Realizou unha racha de 21 días nunha tarefa Diaria",
- "perfectName": "<%= count %> Perfect Days",
- "perfectText": "Completed all active Dailies on <%= count %> days. With this achievement you get a +level/2 buff to all Stats for the next day. Levels greater than 100 don't have any additional effects on buffs.",
+ "perfectName": "<%= count %> días perfectos",
+ "perfectText": "Completaches todas as tarefas diarias activas de <%= count %> días. Con este logro obtés unha bonificación da metade to teu nivel para todas as túas estatísticas durante o día seguinte. Os niveis superiores ao 100 non obteñen bonificación adicional.",
"perfectSingular": "Día Perfecto",
- "perfectSingularText": "Completed all active Dailies in one day. With this achievement you get a +level/2 buff to all Stats for the next day. Levels greater than 100 don't have any additional effects on buffs.",
+ "perfectSingularText": "Completaches todas as tarefas diarias activas dun día. Con este logro obtés unha bonificación da metade to teu nivel para todas as túas estatísticas durante o día seguinte. Os niveis superiores ao 100 non obteñen bonificación adicional.",
"fortifyName": "Poción Fortificante",
"fortifyPop": "Devolve todas as tarefas ao seu valor neutro (cor amarela), e recupera toda a Saúde perdida.",
"fortify": "Fortificación",
@@ -88,14 +88,14 @@
"sureDelete": "Are you sure you want to delete this task?",
"streakCoins": "Bonus de Racha!",
"taskToTop": "To top",
- "taskToBottom": "To bottom",
+ "taskToBottom": "Ao fondo",
"taskAliasAlreadyUsed": "O alcume da tarefa xa está sendo usado para outra tarefa.",
"taskNotFound": "Tarefa non atopada.",
"invalidTaskType": "O tipo de tarefa debe ser un dos seguintes: \"hábito\", \"diaria\", \"tarefa\", \"recompensa\".",
- "invalidTasksType": "Task type must be one of \"habits\", \"dailys\", \"todos\", \"rewards\".",
- "invalidTasksTypeExtra": "Task type must be one of \"habits\", \"dailys\", \"todos\", \"rewards\", \"completedTodos\".",
+ "invalidTasksType": "O tipo de tarefa debe ser un dos seguintes: «habits» (hábitos), «dailys» (tarefas diarias), «todos» (tarefas pendentes), «rewards» (recompensas).",
+ "invalidTasksTypeExtra": "O tipo de tarefa debe ser un dos seguintes: «habits» (hábitos), «dailys» (tarefas diarias), «todos» (tarefas pendentes), «rewards» (recompensas), «completedTodos» (tarefas pendentes completadas).",
"cantDeleteChallengeTasks": "Non se pode eliminar unha tarefa pertencente a un desafío.",
- "checklistOnlyDailyTodo": "Checklists are supported only on Dailies and To-Dos",
+ "checklistOnlyDailyTodo": "As listas só se permiten en tarefas diarias e pendentes",
"checklistItemNotFound": "Non se atopou ningún elemento da lista co id dado.",
"itemIdRequired": "\"itemId\" debe ser un UUID válido.",
"tagNotFound": "Non se atopou ningún elemento da etiqueta co id dado.",
@@ -104,28 +104,40 @@
"cantMoveCompletedTodo": "Non se pode mover unha tarefa completada.",
"directionUpDown": "\"position\" é requerida e debe ser 'up' ou 'down'",
"alreadyTagged": "A tarefa xa está etiquetada coa etiqueta dada.",
- "taskRequiresApproval": "This task must be approved before you can complete it. Approval has already been requested",
- "taskApprovalHasBeenRequested": "Approval has been requested",
- "taskApprovalWasNotRequested": "Only a task waiting for approval can be marked as needing more work",
- "approvals": "Approvals",
- "approvalRequired": "Needs Approval",
- "weekly": "Weekly",
- "monthly": "Monthly",
- "yearly": "Yearly",
- "summary": "Summary",
- "repeatsOn": "Repeats On",
- "dayOfWeek": "Day of the Week",
- "dayOfMonth": "Day of the Month",
- "month": "Month",
- "months": "Months",
- "week": "Week",
- "weeks": "Weeks",
- "year": "Year",
- "years": "Years",
- "resets": "Resets",
- "nextDue": "Next Due Dates",
- "checkOffYesterDailies": "Check off any Dailies you did yesterday:",
- "yesterDailiesCallToAction": "Start My New Day!",
- "sessionOutdated": "Your session is outdated. Please refresh or sync.",
- "errorTemporaryItem": "This item is temporary and cannot be pinned."
+ "taskRequiresApproval": "Esta tarefa necesita aprobación para poder completada. Xa solicitaches a aprobación",
+ "taskApprovalHasBeenRequested": "Solicitouse a aprobación",
+ "taskApprovalWasNotRequested": "Non se solicitou aprobación para esta tarefa.",
+ "approvals": "Aprobacións",
+ "approvalRequired": "Require aprobación",
+ "weekly": "Semanal",
+ "monthly": "Mensual",
+ "yearly": "Anual",
+ "summary": "Resumo",
+ "repeatsOn": "Repítese",
+ "dayOfWeek": "Día da semana",
+ "dayOfMonth": "Día do mes",
+ "month": "Mes",
+ "months": "Meses",
+ "week": "Semana",
+ "weeks": "Semanas",
+ "year": "Ano",
+ "years": "Anos",
+ "resets": "Restabelécese",
+ "nextDue": "Seguintes datas de vencemento",
+ "checkOffYesterDailies": "Marca as tarefas diarias que fixeses onte:",
+ "yesterDailiesCallToAction": "Comezar o día!",
+ "sessionOutdated": "A túa sesión caducou. Actualiza ou sincroniza.",
+ "errorTemporaryItem": "Este elemento é temporal e non pode fixarse.",
+ "addATitle": "Engadir un título",
+ "counter": "Contador",
+ "tomorrow": "Mañá",
+ "pressEnterToAddTag": "Preme Intro para engadir a etiqueta: «<%= tagName %>»",
+ "addNotes": "Engadir notas",
+ "adjustCounter": "Axustar o contador",
+ "resetCounter": "Restabelecer o contador",
+ "editTagsText": "Editar as etiquetas",
+ "deleteTaskType": "Eliminar esta <%= type %>",
+ "sureDeleteType": "Seguro que queres eliminar esta <%= type %>?",
+ "addTags": "Engadir etiquetas…",
+ "enterTag": "Escriba unha etiqueta"
}
diff --git a/website/common/locales/he/achievements.json b/website/common/locales/he/achievements.json
index d3440dc60f..b351a7244b 100644
--- a/website/common/locales/he/achievements.json
+++ b/website/common/locales/he/achievements.json
@@ -1,15 +1,15 @@
{
"achievement": "הישג",
"onwards": "הלאה!",
- "levelup": "על ידי ביצוע משימות מחייך האמיתיים, עלית רמה והחיים שלך עכשיו מלאים!",
+ "levelup": "בזכות ביצוע משימות בחיים האמיתיים, עלית רמה והדמות שלך נרפאה לחלוטין!",
"reachedLevel": "הגעת לשלב <%= level %>",
"achievementLostMasterclasser": "משלים ההרפתקאות: סדרת הרב-אמן",
- "achievementLostMasterclasserText": "השלימו את כל שש-עשר המשימות בסדרת הרפתקאות של הרב-אמנים ופתרו את תעלומת הרב-אמן האבוד!",
+ "achievementLostMasterclasserText": "השלמת את כל שש־עשרה המשימות בסדרת ההרפתקאות ופתרת את תעלומת הרב־אומן האבוד!",
"viewAchievements": "הצגת ההישגים",
"letsGetStarted": "בואו נתחיל!",
"yourProgress": "ההתקדמות שלך",
"onboardingProgress": "<%= percentage %>% התקדמות",
- "gettingStartedDesc": "בעת השלמת משימות ההסתגלות הללו מרוויחים
5 הישגים ו־
100 מטבעות זהב!",
+ "gettingStartedDesc": "בעת השלמת משימות ההסתגלות האלה מרוויחים
5 הישגים ו־
100 מטבעות זהב!",
"yourRewards": "הפרסים שלך",
"foundNewItems": "מצאת פריטים חדשים!",
"hideAchievements": "הסתרת <%= category %>",
@@ -27,7 +27,7 @@
"achievementPearlyPro": "לבן פנינה",
"achievementPrimedForPaintingModalText": "אימצתם את כל חיות המחמד הלבנות!",
"achievementPrimedForPaintingText": "אספו את כל החיות הלבנות.",
- "achievementPrimedForPainting": "שכבת בסיס לצביעה",
+ "achievementPrimedForPainting": "מוכן לצביעה",
"achievementPurchasedEquipmentModalText": "ציוד הוא דרך לעצב את הדמות שלך ולשפר את המדדים שלה",
"achievementPurchasedEquipmentText": "רכשו את פיסת הציוד הראשונה שלהם.",
"achievementPurchasedEquipment": "רכוש ציוד",
@@ -92,7 +92,8 @@
"achievementSkeletonCrewText": "אולפו כל חיות הרכיבה מסוג שלד.",
"achievementAllThatGlitters": "כל הנוצץ",
"achievementLostMasterclasserModalText": "השלמת את כל שש-עשר המשימות בסדרת הרפתקאות של הרב-אמנים ופתרת את תעלומת הרב-אמן האבוד!",
- "achievementGoodAsGold": "זהוב וטוב",
- "achievementBugBonanzaModalText": "השלמת את משימת חיות המחמד של החיפושית, הפרפר, החילזון והעכביש",
- "achievementBareNecessities": "רק את הטוב"
+ "achievementGoodAsGold": "זהב טהור",
+ "achievementBugBonanzaModalText": "השלמת את ההרפתקאות של חיות המחמד של החיפושית, הפרפר, החילזון והעכביש!",
+ "achievementBareNecessities": "רק את הטוב",
+ "achievementBoneCollector": "אספן עצמות"
}
diff --git a/website/common/locales/he/backgrounds.json b/website/common/locales/he/backgrounds.json
index 89a079c93d..aa4d57e620 100644
--- a/website/common/locales/he/backgrounds.json
+++ b/website/common/locales/he/backgrounds.json
@@ -51,8 +51,8 @@
"backgroundIcebergNotes": "היסחפו על קרחון.",
"backgroundTwinklyLightsText": "אורות חורף מנצנצים",
"backgroundTwinklyLightsNotes": "טיילו בין העצים מקושטים באורות חג.",
- "backgroundSouthPoleText": "קוטב דרומי",
- "backgroundSouthPoleNotes": "בקרו בקוטב הדרומי הקפוא.",
+ "backgroundSouthPoleText": "הקוטב הדרומי",
+ "backgroundSouthPoleNotes": "לבקר בקוטב הדרומי הקפוא.",
"backgrounds012015": "סט 8: פורסם בינואר 2015",
"backgroundIceCaveText": "מערת קרח",
"backgroundIceCaveNotes": "רדו אל מערת קרח.",
diff --git a/website/common/locales/he/challenge.json b/website/common/locales/he/challenge.json
index 72f1f20327..a7835cc945 100644
--- a/website/common/locales/he/challenge.json
+++ b/website/common/locales/he/challenge.json
@@ -68,39 +68,39 @@
"createdBy": "נוצר על ידי",
"joinChallenge": "הצטרף לאתגר",
"leaveChallenge": "עזיבת האתגר",
- "addTask": "הוסף משימה",
+ "addTask": "הוספת משימה",
"editChallenge": "עריכת אתגר",
"challengeDescription": "תיאור האתגר",
- "selectChallengeWinnersDescription": "בחר מנצח ממשתתפי האתגר",
- "awardWinners": "זוכה הפרס",
+ "selectChallengeWinnersDescription": "נא לבחור מנצח ממשתתפי האתגר",
+ "awardWinners": "הזוכה בפרס",
"doYouWantedToDeleteChallenge": "למחוק את האתגר הזה?",
- "deleteChallenge": "מחק אתגר",
+ "deleteChallenge": "מחיקת אתגר",
"challengeNamePlaceholder": "מה שם האתגר שלך?",
"challengeSummary": "סיכום",
"challengeSummaryPlaceholder": "רשום תיאור קצר המפרסם את האתגר שלך לשאר משתמשי הביטיקה. מהו המטרה העיקרית של האתגר שלך ומדוע אנשים צריכים להצטרף אליו? נסה לכלול מילות מפתח חשובות בתיאור בכדי שמשתמשי הביטיקה יוכלו למצוא אותו בקלות כאשר הם מחפשים!",
"challengeDescriptionPlaceholder": "השתמש בחלק זה כדי להיכנס לפרטים לגבי כל מה שמשתתפי האתגר צריכים לדעת לגבי האתגר.",
- "challengeGuild": "הוסף ל",
+ "challengeGuild": "הוספה אל",
"challengeMinimum": "יהלום אחד לפחות באתגרים ציבוריים (זה עוזר למנוע ספאם, זה באמת עוזר).",
"participantsTitle": "משתתפים",
"shortName": "שם קצר",
"shortNamePlaceholder": "איזה תג קצר צריך להיות משומש בכדי לזהות את האתגר שלך?",
"updateChallenge": "עדכן אתגר",
"haveNoChallenges": "לקבוצה זו אין אתגרים",
- "loadMore": "טען עוד",
- "exportChallengeCsv": "ייצא אתגר",
+ "loadMore": "לטעון עוד",
+ "exportChallengeCsv": "ייצוא אתגר",
"editingChallenge": "עריכת האתגר",
"nameRequired": "שם דרוש",
"tagTooShort": "תג השם קצר מדי",
"summaryRequired": "סיכום דרוש",
"summaryTooLong": "הסיכום ארוך מדי",
"descriptionRequired": "תיאור דרוש",
- "locationRequired": "מיקום האתגר דרוש ('הוסף ל')",
+ "locationRequired": "מיקום האתגר דרוש (\"הוספה אל\")",
"categoiresRequired": "לפחות קטגוריה אחת חייבת להיבחר",
- "viewProgressOf": "ראה את ההתקדמות של",
- "viewProgress": "ראה התקדמות",
- "selectMember": "בחר משתתף",
- "confirmKeepChallengeTasks": "לשמור את מטלות האתגר?",
- "selectParticipant": "בחר משתתף",
+ "viewProgressOf": "הצגת ההתקדמות של",
+ "viewProgress": "להצגת ההתקדמות",
+ "selectMember": "בחירת משתתף",
+ "confirmKeepChallengeTasks": "לשמור את המטלות מהאתגר?",
+ "selectParticipant": "בחירת משתתף",
"yourReward": "הפרס שלך",
"filters": "מסננים",
"wonChallengeDesc": "ניצחת באתגר \"<%= challengeName %>\"! הניצחון שלך נרשם בהישגים שלך.",
diff --git a/website/common/locales/he/character.json b/website/common/locales/he/character.json
index 8487a42737..7eba03c9d9 100644
--- a/website/common/locales/he/character.json
+++ b/website/common/locales/he/character.json
@@ -13,7 +13,7 @@
"displayBlurbPlaceholder": "נא להציג את עצמך",
"photoUrl": "כתובת התצלום",
"imageUrl": "קישור לתמונה",
- "inventory": "ציוד",
+ "inventory": "מלאי",
"social": "חברתי",
"lvl": "דרגה",
"buffed": "מוגבר",
@@ -31,12 +31,12 @@
"glasses": "משקפיים",
"hairSet1": "סדרת תסרוקות 1",
"hairSet2": "סדרת תסרוקות 2",
- "hairSet3": "",
+ "hairSet3": "סט תספורות 3",
"bodyFacialHair": "שיער פנים",
"beard": "זקן",
"mustache": "שפם",
"flower": "פרח",
- "accent": "",
+ "accent": "צבע נושא",
"headband": "רצועת ראש",
"wheelchair": "כיסא גלגלים",
"extra": "אקסטרה",
@@ -64,7 +64,7 @@
"gearAchievement": "הרווחת את תג ״הציוד המקסימלי״ על השגת הציוד הטוב ביותר למקצועות הבאים:",
"gearAchievementNotification": "הרווחת את השיג ״הציוד האידאלי״ על שדרוג לציוד הטוב ביותר במקצוע!",
"moreGearAchievements": "כדי להשיג את תגי הציוד הטוב ביותר, שנה את המקצוע שלך ב
הגדרות וקנה את הציוד של מקצוע החדש שלך!",
- "armoireUnlocked": "לציוד נוסף, נסה את ה
נשקיה המכושפת! לחץ על פרס הנשקיה המכושפת עבור סיכוי אקראי לזכות בציוד מיוחד! היא עלילה להעניק לך גם כמות אקראית של נקודות ניסיון או מזון.",
+ "armoireUnlocked": "בשביל ציוד נוסף, כדאי לנסות את
הנשקייה המכושפת! אפשר ללחוץ על פרס הנשקייה המכושפת ולקבל סיכוי אקראי לזכות בציוד מיוחד! הנשקייה עשויה גם להעניק לך מזון או כמות אקראית של נקודות ניסיון.",
"ultimGearName": "ציוד אידלי - <%= ultClass %>",
"ultimGearText": "שידרג לציוד המקסימלי עבור מקצוע ה<%= ultClass %>.",
"level": "דרגה",
@@ -73,19 +73,19 @@
"leveledUp": "על ידי השגת יעדיכם בעולם האמיתי, עליתם ל
דרגה <%= level %>!",
"huzzah": "קדימה!",
"mana": "מאנה",
- "hp": "נק\"פ",
+ "hp": "נקודות חיים",
"mp": "נק\"מ",
- "xp": "נק\"נ",
- "health": "בריאות",
- "allocateStr": "נקודות שהוקצו לכוח",
- "allocateStrPop": "הוסף נקודה לכוח שלך",
- "allocateCon": "נקודות שהוקצו לחוסן",
- "allocateConPop": "הוסף נקודה לחוסן שלך",
- "allocatePer": "נקודות שהוקצו לתפיסה",
- "allocatePerPop": "הוסף נקודה לתפיסה שלך",
- "allocateInt": "נקודות שהוקצו לתבונה",
- "allocateIntPop": "הוסף נקודה לתבונה שלך",
- "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Stat Points. You can continue leveling up, or start a new adventure at level 1 by using the
Orb of Rebirth, now available for free in the Market.",
+ "xp": "נקודות ניסיון",
+ "health": "חיים",
+ "allocateStr": "נקודות שהוקצו לכוח:",
+ "allocateStrPop": "הוספה נקודה לכוח שלך",
+ "allocateCon": "נקודות שהוקצו לחוסן:",
+ "allocateConPop": "הוספת נקודה לחוסן שלך",
+ "allocatePer": "נקודות שהוקצו לתפיסה:",
+ "allocatePerPop": "הוספת נקודה לתפיסה שלך",
+ "allocateInt": "נקודות שהוקצו לתבונה:",
+ "allocateIntPop": "הוספת נקודה לתבונה שלך",
+ "noMoreAllocate": "עכשיו כשהגעת לרמה 100, לא תקבל יותר נקודות למדדים. תוכל להמשיך לעלות ברמות, או להתחיל מסע חדש ברמה 1, באמצעות שימוש ב-
עין התחייה!",
"stats": "נתונים",
"achievs": "הישגים",
"strength": "כוח",
@@ -106,15 +106,15 @@
"warrior": "לוחם",
"healer": "מרפא",
"rogue": "נוכל",
- "mage": "מכשף",
- "wizard": "",
+ "mage": "קוסם",
+ "wizard": "קוסם",
"mystery": "מסתורין",
- "changeClass": "",
+ "changeClass": "שינוי מקצוע, החזרת נקודות מדדים",
"lvl10ChangeClass": "כדי לשנות מקצוע עליכם להיות לפחות בדרגה 10.",
- "changeClassConfirmCost": "",
+ "changeClassConfirmCost": "לשנות את המקצוע שלך תמורת 3 אבני חן?",
"invalidClass": "מקצוע שגוי. נא לציין 'warrior', 'rogue', 'wizard', או 'healer'.",
"levelPopover": "",
- "unallocated": "",
+ "unallocated": "נקודות לא מוקצות",
"autoAllocation": "הקצאה אוטומטית",
"autoAllocationPop": "",
"evenAllocation": "",
diff --git a/website/common/locales/he/communityguidelines.json b/website/common/locales/he/communityguidelines.json
index 34a84e8600..1ff18470fb 100644
--- a/website/common/locales/he/communityguidelines.json
+++ b/website/common/locales/he/communityguidelines.json
@@ -4,23 +4,23 @@
"commGuideHeadingWelcome": "ברוך בואך להביטיקה!",
"commGuidePara001": "ברכות, הרפתקן/ית! ברוך בואך להביטיקה, ארץ של פרודוקטיביות, חיים בריאים ולעיתים של הגרייפון המשתולל. יש לנו קהילת מאירת פנים מלאה באנשים שתומכים אחד בשני בדרך לשיפור עצמי. על מנת להשתלב, כל מה שנדרש זו גישה חיובית ומכבדת, וההבנה שלכל אחד יש כוחות והגבלות שונות -- לרבות אותך! ההביטיקאנים מראים סבלנות אחד כלפי השני ומנסים לעזור מתי שאפשר.",
"commGuidePara002": "כדי לשמור שכולם יהיו בטוחים, שמחים, ופרודקטיביים בקהילה, יש לנו מספר הנחיות. יצרנו אותן בקפידה כדי שהן יהיו חברותיות וקריאוֹת ככל שאפשר. נא לקחת זמן ולקרוא אותן לפני שתתחיל/י להתכתב.",
- "commGuidePara003": "ההנחיות הללו תקפות לגבי כל המרחבים החברתיים שאנו משתמשים בהם, הכוללים (בין היתר) את Trello, Github, Weblate ועמוד הוויקיא (בקיצור ויקי). מדי פעם מצבים בלתי צפויים יצוצו לפתע בדרכנו, כמו מחרחרי ריב זדוניים או בעלי אוב מרושעים. כאשר דבר מעין זה קורה, העורכים רשאים להגיב ע״י עריכת ההנחיות הללו כדי לשמור על הקהילה בטוחה מפני איומים חדשים. אל חשש: דוברת העיר שלנו, באילי, תודיע לכם על כל שינוי בהנחיות.",
+ "commGuidePara003": "ההנחיות הללו תקפות לגבי כל המרחבים החברתיים שאנו משתמשים בהם, הכוללים (בין היתר) את Trello, Github, Weblate ועמוד הוויקיא (בקיצור ויקי). מדי פעם מצבים בלתי צפויים יצוצו לפתע בדרכנו, כמו מחרחרי ריב זדוניים או בעלי אוב מרושעים. כאשר דבר מעין זה קורה, העורכים רשאים להגיב ע״י עריכת ההנחיות הללו כדי לשמור על הקהילה בטוחה מפני איומים חדשים. אל חשש: דוברת העיר שלנו, ביילי, תודיע לכם על כל שינוי בהנחיות.",
"commGuideHeadingInteractions": "אינטראקציה בהביטיקה",
- "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, Party chat, and Private Messages. All Display Names must comply with the public space guidelines. To change your Display Name, go on the website to User > Profile and click on the \"Edit\" button.",
+ "commGuidePara015": "",
"commGuidePara016": "בעודך נודד בין המרחבים הציבוריים של הביטיקה, ישנם מספר חוקים שנועדו לשמור את כולם בטוחים ומאושרים. אלו אמורים להיות קלים לשמירה עבור הרפתקן כמוך!",
"commGuideList02A": "
Respect each other. Be courteous, kind, friendly, and helpful. Remember: Habiticans come from all backgrounds and have had wildly divergent experiences. This is part of what makes Habitica so cool! Building a community means respecting and celebrating our differences as well as our similarities. Here are some easy ways to respect each other:",
"commGuideList02B": "
Obey all of the Terms and Conditions.",
"commGuideList02C": "
Do not post images or text that are violent, threatening, or sexually explicit/suggestive, or that promote discrimination, bigotry, racism, sexism, hatred, harassment or harm against any individual or group. Not even as a joke. This includes slurs as well as statements. Not everyone has the same sense of humor, and so something that you consider a joke may be hurtful to another. Attack your Dailies, not each other.",
"commGuideList02D": "
Keep discussions appropriate for all ages. We have many young Habiticans who use the site! Let's not tarnish any innocents or hinder any Habiticans in their goals.",
"commGuideList02E": "
Avoid profanity. This includes milder, religious-based oaths that may be acceptable elsewhere. We have people from all religious and cultural backgrounds, and we want to make sure that all of them feel comfortable in public spaces.
If a moderator or staff member tells you that a term is disallowed on Habitica, even if it is a term that you did not realize was problematic, that decision is final. Additionally, slurs will be dealt with very severely, as they are also a violation of the Terms of Service.",
- "commGuideList02F": "
Avoid extended discussions of divisive topics in the Tavern and where it would be off-topic. If you feel that someone has said something rude or hurtful, do not engage them. If someone mentions something that is allowed by the guidelines but which is hurtful to you, it’s okay to politely let someone know that. If it is against the guidelines or the Terms of Service, you should flag it and let a mod respond. When in doubt, flag the post.",
+ "commGuideList02F": "",
"commGuideList02G": "
Comply immediately with any Mod request. This could include, but is not limited to, requesting you limit your posts in a particular space, editing your profile to remove unsuitable content, asking you to move your discussion to a more suitable space, etc.",
- "commGuideList02J": "
Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, posting multiple promotional messages about a Guild, Party or Challenge, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming. If people clicking on a link will result in any benefit to you, you need to disclose that in the text of your message or that will also be considered spam.
It is up to the mods to decide if something constitutes spam or might lead to spam, even if you don’t feel that you have been spamming. For example, advertising a Guild is acceptable once or twice, but multiple posts in one day would probably constitute spam, no matter how useful the Guild is!",
+ "commGuideList02J": "",
"commGuideList02K": "",
- "commGuideList02L": "
We highly discourage the exchange of personal information -- particularly information that can be used to identify you -- in public chat spaces. Identifying information can include but is not limited to: your address, your email address, and your API token/password. This is for your safety! Staff or moderators may remove such posts at their discretion. If you are asked for personal information in a private Guild, Party, or PM, we highly recommend that you politely refuse and alert the staff and moderators by either 1) flagging the message if it is in a Party or private Guild, or 2) filling out the
Moderator Contact Form and including screenshots.",
+ "commGuideList02L": "",
"commGuidePara019": "",
"commGuidePara020": "
Private Messages (PMs) have some additional guidelines. If someone has blocked you, do not contact them elsewhere to ask them to unblock you. Additionally, you should not send PMs to someone asking for support (since public answers to support questions are helpful to the community). Finally, do not send anyone PMs begging for a gift of gems or a subscription, as this can be considered spamming.",
- "commGuidePara020A": "
If you see a post that you believe is in violation of the public space guidelines outlined above, or if you see a post that concerns you or makes you uncomfortable, you can bring it to the attention of Moderators and Staff by clicking the flag icon to report it. A Staff member or Moderator will respond to the situation as soon as possible. Please note that intentionally reporting innocent posts is an infraction of these Guidelines (see below in “Infractions”). PMs cannot be flagged at this time, so if you need to report a PM, please contact the Mods via the form on the “Contact Us” page, which you can also access via the help menu by clicking “
Contact the Moderation Team.” You may want to do this if there are multiple problematic posts by the same person in different Guilds, or if the situation requires some explanation. You may contact us in your native language if that is easier for you: we may have to use Google Translate, but we want you to feel comfortable about contacting us if you have a problem.",
+ "commGuidePara020A": "",
"commGuidePara021": "בנוסף לכך, לאזורים פרטיים מסוימים בהביטיקה יש כללים נוספים.",
"commGuideHeadingTavern": "הפונדק",
"commGuidePara022": "",
@@ -31,8 +31,8 @@
"commGuidePara029": "",
"commGuidePara031": "",
"commGuidePara033": "",
- "commGuidePara035": "
If the Guild in question has different kinds of sensitive issues, it is respectful to your fellow Habiticans to place your comment behind a warning (ex. \"Warning: references self-harm\"). These may be characterized as trigger warnings and/or content notes, and Guilds may have their own rules in addition to those given here. If possible, please use
markdown to hide the potentially sensitive content below line breaks so that those who may wish to avoid reading it can scroll past it without seeing the content. Habitica staff and moderators may still remove this material at their discretion.",
- "commGuidePara036": "Additionally, the sensitive material should be topical -- bringing up self-harm in a Guild focused on fighting depression may make sense, but is probably less appropriate in a music Guild. If you see someone who is repeatedly violating this guideline, especially after several requests, please flag the posts and notify the moderators via the
Moderator Contact Form.",
+ "commGuidePara035": "",
+ "commGuidePara036": "",
"commGuidePara037": "",
"commGuidePara038": "",
"commGuideHeadingInfractionsEtc": "עבירות, השלכות ותיקונן",
@@ -61,7 +61,7 @@
"commGuidePara056": "עבירות משניות, למרות שאינן רצויות, מובילות רק להשלכות משניות. אם ביצוע העבירות ממשיך לחזור, הן עשויות להוביל להשלכות חמורות יותר.",
"commGuidePara057": "להלן רשימת דוגמאות לעבירות משניות. זו איננה רשימה כוללת.",
"commGuideList07A": "הפרה ראשונה של חוקי המרחבים הציבוריים",
- "commGuideList07B": "Any statements or actions that trigger a \"Please Don't\". When a Mod has to say \"Please don't do this\" to a user, it can count as a very minor infraction for that user. An example might be \"Please don't keep arguing in favor of this feature idea after we've told you several times that it isn't feasible.\" In many cases, the Please Don't will be the minor consequence as well, but if Mods have to say \"Please Don't\" to the same user enough times, the triggering Minor Infractions will start to count as Moderate Infractions.",
+ "commGuideList07B": "",
"commGuidePara057A": "",
"commGuideHeadingConsequences": "השלכות",
"commGuidePara058": "במשחק, כמו בחיים האמיתיים, לכל פעולה יש תוצאה. בין אם זה להיכנס לכושר כתוצאה מאימונים וריצה, הופעת חורים בשיניים כתוצאה מאכילה מרובה מידי של מתוקים, או הצלחה בקורס כתוצאה מהשקעה בלימודים.",
@@ -77,7 +77,7 @@
"commGuideList09C": "מניעת (״הקפאת״) ההתקדמות ברמות תורם לצמיתות",
"commGuideHeadingModerateConsequences": "דוגמאות להשלכות מתונות",
"commGuideList10A": "",
- "commGuideList10A1": "If your actions result in revocation of your chat privileges, a Moderator or Staff member will PM you and/or post in the forum in which you were muted to notify you of the reason for your muting and the length of time for which you will be muted. At the end of that period, you will receive your chat privileges back, provided you are willing to correct the behavior for which you were muted and comply with the Community Guidelines.",
+ "commGuideList10A1": "",
"commGuideList10C": "",
"commGuideList10D": "מניעת (״הקפאת״) ההתקדמות ברמות תורם באופן זמני",
"commGuideList10E": "הורדה בדרגות תורם",
diff --git a/website/common/locales/he/content.json b/website/common/locales/he/content.json
index f7b776da4f..0d05d487df 100644
--- a/website/common/locales/he/content.json
+++ b/website/common/locales/he/content.json
@@ -1,6 +1,6 @@
{
"potionText": "שיקוי ריפוי",
- "potionNotes": "מרפא 15 נק\"פ (שימוש מיידי)",
+ "potionNotes": "מרפא 15 נקודות חיים (לשימוש מיידי)",
"armoireText": "ציוד קסום",
"armoireNotesFull": "אפשר לפתוח את תיבת הציוד הקסום ולקבל ציוד מיוחד, ניסיון או מזון! יחידות ציוד שנותרו:",
"armoireLastItem": "מצאת את פריט הציוד הקסום האחרון",
diff --git a/website/common/locales/he/contrib.json b/website/common/locales/he/contrib.json
index c3f888e198..eef6786184 100644
--- a/website/common/locales/he/contrib.json
+++ b/website/common/locales/he/contrib.json
@@ -1,5 +1,5 @@
{
- "playerTiersDesc": "The colored usernames you see in chat represent a person's contributor tier. The higher the tier, the more the person has contributed to habitica through art, code, the community, or more!",
+ "playerTiersDesc": "",
"tier1": "דרגה 1 (חבר)",
"tier2": "דרגה 2 (חבר)",
"tier3": "דרגה 3 (עילאי)",
@@ -9,7 +9,7 @@
"tier7": "דרגה 7 (אגדי)",
"tierModerator": "מנהל (שומר)",
"tierStaff": "חבר צוות (גיבור)",
- "tierNPC": "דב״ש",
+ "tierNPC": "דמות לא־אנושית",
"friend": "חבר",
"elite": "עילאי",
"champion": "אלוף",
@@ -20,12 +20,12 @@
"heroic": "הירואי",
"modalContribAchievement": "הישג תורמים!",
"contribModal": "",
- "contribLink": "See what prizes you've earned for your contribution!",
+ "contribLink": "",
"contribName": "תורמים",
- "contribText": "Has contributed to Habitica, whether via code, art, music, writing, or other methods. To learn more, join the Aspiring Legends Guild!",
- "kickstartName": "Kickstarter Backer - $<%= key %> Tier",
+ "contribText": "",
+ "kickstartName": "",
"kickstartText": "גיבה את פרויקט הקיקסטראטר שהתחיל את האתר.",
- "helped": "Helped Habitica Grow",
+ "helped": "עזר להביטיקה לגדול",
"hall": "היכל הגיבורים",
"contribTitle": "תואר תורם (למשל \"נפח\")",
"contribLevel": "דרגת תורם",
@@ -51,7 +51,7 @@
"tier": "רמה",
"conRewardsURL": "http://habitica.fandom.com/wiki/Contributor_Rewards",
"surveysSingle": "עזרת להביטיקה לגדול, באמצעות מילוי שאלון או מאמץ בדיקות גדול. תודה רבה!",
- "surveysMultiple": "Helped Habitica grow on <%= count %> occasions, either by filling out a survey or helping with a major testing effort. Thank you!",
+ "surveysMultiple": "",
"blurbHallPatrons": "זהו היכל התומכים, היכן שאנו מעניקים כבוד לשחקנים האדירים שתמכו ב־\"Kickstarter\" המקורי של האתר. אנו מודים להם על שהביאו את הביטיקה לחיים!",
"blurbHallContributors": "זהו היכל התורמים, המקום שבו עושים כבוד לתורמים במקור פתוח להביטיקה. בין אם מדובר בקוד, עיצוב, מנגינה, כתיבה, או אפילו רק עזרה באופן כללי, הם הרוויחו
אבני חן, ציוד אקסקלוסיבי, ו
תארים נחשבים. תוכלו לתרום גם אתם להביטיקה!
קראו על כך עוד כאן."
}
diff --git a/website/common/locales/he/death.json b/website/common/locales/he/death.json
index b6ac54a7cd..cc55aa0e9e 100644
--- a/website/common/locales/he/death.json
+++ b/website/common/locales/he/death.json
@@ -1,17 +1,17 @@
{
"lostAllHealth": "אזלו לך נקודות הבריאות!",
"dontDespair": "לא להתייאש!",
- "deathPenaltyDetails": "איבדת דרגה, את מטבעות הזהב שלך, ופריט כלשהו, אך אפשר לקבלם בחזרה באמצעות עבודה קשה! בהצלחה--יהיה בסדר.",
+ "deathPenaltyDetails": "ירדת בדרגה, איבדת את מטבעות הזהב שלך ופריט ציוד אחד, אבל אפשר להשיג אותם בחזרה עם עבודה קשה! בהצלחה – יהיה בסדר.",
"refillHealthTryAgain": "מילוי נקודות הבריאות וניסיון חוזר",
- "dyingOftenTips": "זה קורה לעיתים קרובות?
הינה כמה עצות!",
- "losingHealthWarning": "זהירות - נקודות הבריאות אוזלות!",
+ "dyingOftenTips": "זה קורה לעיתים קרובות?
הינה כמה עצות!",
+ "losingHealthWarning": "זהירות - נקודות הבריאות אוזלות לך!",
"losingHealthWarning2": "לא לתת לבריאות שלך לרדת לאפס! אחרת, הדמות שלך תרד בדרגה, תאבד את כל מטבעות הזהב, וגם פריט ציוד.",
- "toRegainHealth": "כדי לצבור בריאות בחזרה:",
+ "toRegainHealth": "כדי לצבור נקודות בריאות בחזרה:",
"lowHealthTips1": "יש לעלות בדרגה כדי להחלים לגמרי!",
"lowHealthTips2": "רכשו שיקוי בריאות בעמודת הפרסים כדי להחזיר 15 נקודות בריאות.",
"losingHealthQuickly": "נקודות הבריאות אוזלות מהר?",
"lowHealthTips3": "מטלות יומיומיות שלא הושלמו יפגעו בך במשך הלילה, יש להיזהר שלא להתחיל עם יותר מדי!",
- "lowHealthTips4": "אם משימה יומיומית לא בתוקף ביום מסוים, אפשר להשביתה בעזרת לחיצה על העיפרון.",
+ "lowHealthTips4": "אם משימה יומיומית לא תקפה ליום מסוים, אפשר להשבית אותה בעזרת לחיצה על סמל העיפרון.",
"goodLuck": "בהצלחה!",
"cannotRevive": "לא ניתן לקום לתחייה אם לא מתים"
}
diff --git a/website/common/locales/he/faq.json b/website/common/locales/he/faq.json
index 5a18bfe25f..40c33222c6 100644
--- a/website/common/locales/he/faq.json
+++ b/website/common/locales/he/faq.json
@@ -7,52 +7,52 @@
"faqQuestion1": "כיצד לארגן משימות?",
"iosFaqAnswer1": "הרגלים טובים (אלה עם +) הם משימות שאפשר לעשות הרבה פעמים ביום, כגון אכילת ירקות. הרגלים רעים (אלה עם -) הם משימות שכדאי להימנע מהן, כמו לכסוס ציפורניים. בהרגלים עם + וגם - יש בחירה טובה ובחירה גרועה, כמו לעלות במדרגות לעומת מעלית. הרגלים טובים מקנים ניסיון ומטבעות זהב. הרגלים רעים פוגעים בבריאות.\n\nמטלות יומיומיות הן משימות שצריך לעשות כל יום, כמו לצחצח שיניים או לבדוק את הדואר האלקטרוני. אפשר לשנות את הימים בהם יש לבצע את המטלה היומיומית בעזרת הקשה לעריכתה. אם מדלגים על מטלה יומיומית ביום בו יש לבצע אותה, הדמות תינזק במהלך הלילה. יש להיזהר שלא להוסיף יותר מדי מטלות יומיומיות בבת אחת!\n\n\"משימות לביצוע\" הן רשימת המשימות שלך לביצוע. השלמת משימה לביצוע מקנה מטבעות זהב וניסיון. אף פעם לא מאבדים בריאות ממשימות לביצוע. אפשר להוסיף תאריך יעד למשימות לביצוע בעזרת הקשה לעריכתן.",
"androidFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your character will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.",
- "webFaqAnswer1": "* Good Habits (the ones with a :heavy_plus_sign:) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a :heavy_minus_sign:) are tasks that you should avoid, like biting nails. Habits with a :heavy_plus_sign: and a :heavy_minus_sign: have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n* Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n* To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.",
+ "webFaqAnswer1": "",
"faqQuestion2": "מהן מספר משימות לדוגמה?",
"iosFaqAnswer2": "בוויקי יש ארבע רשימות של משימות לדוגמה להשראה:\n
\n* [הרגלים לדוגמה](http://habitica.fandom.com/wiki/Sample_Habits)\n* [מטלות יומיות לדוגמה](http://habitica.fandom.com/wiki/Sample_Dailies)\n* [משימות לדוגמה](http://habitica.fandom.com/wiki/Sample_To-Dos)\n* [פרסים מותאמים אישית לדוגמה](http://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
"androidFaqAnswer2": "The wiki has four lists of sample tasks to use as inspiration:\n
\n * [Sample Habits](http://habitica.fandom.com/wiki/Sample_Habits)\n * [Sample Dailies](http://habitica.fandom.com/wiki/Sample_Dailies)\n * [Sample To-Dos](http://habitica.fandom.com/wiki/Sample_To-Dos)\n * [Sample Custom Rewards](http://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
"webFaqAnswer2": "בוויקי יש ארבע רשימות של משימות לדוגמה להשראה:\n* [הרגלים לדוגמה](http://habitica.fandom.com/wiki/Sample_Habits)\n* [מטלות יומיות לדוגמה](http://habitica.fandom.com/wiki/Sample_Dailies)\n* [משימות לדוגמה](http://habitica.fandom.com/wiki/Sample_To-Dos)\n* [פרסים מותאמים אישית לדוגמה](http://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
- "faqQuestion3": "מדוע המשימות שלי מחליפות צבעים?",
+ "faqQuestion3": "למה המשימות שלי מחליפות צבעים?",
"iosFaqAnswer3": "צבעי המשימות שלך משתנים על סמך ההישגים שלך! כל משימה חדשה נוצרת בצבע צהוב ניטרלי. כשמבצעים מטלות יומיומיות או הרגלים חיוביים בתדירות גבוהה יותר, הצבע ישתנה לכחול. כשמפספסים מטלה יומיומית או נכנעים להרגל רע, צבע המשימה ישתנה בהדרגה לאדום. ככל שהמשימה אדומה יותר, כך היא תתגמל אותך יותר, אבל אם זו מטלה יומיומית או הרגל רע, כך זה יפגע בך יותר! זה עוזר להניע אותך להשלמת המשימות שעושות לך צרות.",
"androidFaqAnswer3": "צבעי המשימות שלך משתנים על סמך ההישגים שלך! כל משימה חדשה נוצרת בצבע צהוב ניטרלי. כשמבצעים מטלות יומיומיות או הרגלים חיוביים בתדירות גבוהה יותר, הצבע ישתנה לכחול. כשמפספסים מטלה יומיומית או נכנעים להרגל רע, צבע המשימה ישתנה בהדרגה לאדום. ככל שהמשימה אדומה יותר, כך היא תתגמל אותך יותר, אבל אם זו מטלה יומיומית או הרגל רע, כך זה יפגע בך יותר! זה עוזר להניע אותך להשלמת המשימות שעושות לך צרות.",
"webFaqAnswer3": "צבעי המשימות שלך משתנים על סמך ההישגים שלך! כל משימה חדשה נוצרת בצבע צהוב ניטרלי. כשמבצעים מטלות יומיומיות או הרגלים חיוביים בתדירות גבוהה יותר, הצבע ישתנה לכחול. כשמפספסים מטלה יומיומית או נכנעים להרגל רע, צבע המשימה ישתנה בהדרגה לאדום. ככל שהמשימה אדומה יותר, כך היא תתגמל אותך יותר, אבל אם זו מטלה יומיומית או הרגל רע, כך זה יפגע בך יותר! זה עוזר להניע אותך להשלמת המשימות שעושות לך צרות.",
- "faqQuestion4": "למה הדמות שלי איבדה בריאות, וכיצד אני יכול להחלים אותה?",
- "iosFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you tap a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your Party and one of your Party mates did not complete all their Dailies, the Boss will attack you.\n\n The main way to heal is to gain a level, which restores all your health. You can also buy a Health Potion with gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a Party with a Healer, they can heal you as well.",
- "androidFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you tap a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your Party and one of your Party mates did not complete all their Dailies, the Boss will attack you.\n\n The main way to heal is to gain a level, which restores all your health. You can also buy a Health Potion with gold from the Rewards tab on the Tasks page. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a Party with a Healer, they can heal you as well.",
- "webFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you click a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your party and one of your party mates did not complete all their Dailies, the Boss will attack you. The main way to heal is to gain a level, which restores all your Health. You can also buy a Health Potion with Gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. Other Healers can heal you as well if you are in a Party with them. Learn more by clicking \"Party\" in the navigation bar.",
+ "faqQuestion4": "למה הדמות שלי מאבדת נקודות חיים, ואיך להשיג אותן בחזרה?",
+ "iosFaqAnswer4": "",
+ "androidFaqAnswer4": "",
+ "webFaqAnswer4": "",
"faqQuestion5": "כיצד לשחק בהביטיקה עם החברים?",
- "iosFaqAnswer5": "הדרך הטובה ביותר היא להזמין אותם לחבורה יחד איתכם! חבורות יכולות לצאת להרפתקאות, להילחם במפלצות, ולהשתמש במיומנויות כדי לתמיכה הדדית. עברו לתפריט > חבורה ולחצו על \"צרו חבורה חדשה\" אם אין לכם כבר חבורה. לאחר מכן הקישו על רשימת החברים, והקישו ״הזמן״ בפינה הימנית עליונה כדי להזמין את החברים שלכם על ידי הזנת זיהוי המשתמש שלהם (מחרוזת של מספרים ואותיות שהם יכולים למצוא תחת הגדרות > פרטי חשבון על האפליקציה, והגדרות > API באתר האינטרנט). באתר האינטרנט, אתם גם יכולים להזמין חברים באמצעות דואר אלקטרוני, אשר נוסיף לאפליקציה בעדכון עתידי.\n\nבאתר, אתם וחבריכם יכולים גם להצטרף לגילדות, שהן חדרי צ'אט ציבוריים. גילדות יתווספו לאפליקציה בעדכון עתידי!",
- "androidFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to the [website](https://habitica.com/) to create one if you don't already have a Party. You can also join guilds together (Social > Guilds). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many guilds as you'd like, but only one party.\n\n For more detailed info, check out the wiki pages on [Parties](http://habitica.fandom.com/wiki/Party) and [Guilds](http://habitica.fandom.com/wiki/Guilds).",
- "webFaqAnswer5": "The best way is to invite them to a Party with you by clicking \"Party\" in the navigation bar! Parties can go on quests, battle monsters, and cast skills to support each other. You can also join Guilds together (click on \"Guilds\" in the navigation bar). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many Guilds as you'd like, but only one Party. For more detailed info, check out the wiki pages on [Parties](http://habitica.fandom.com/wiki/Party) and [Guilds](http://habitica.fandom.com/wiki/Guilds).",
+ "iosFaqAnswer5": "",
+ "androidFaqAnswer5": "",
+ "webFaqAnswer5": "",
"faqQuestion6": "איך אני משיג חיית מחמד או חיית רכיבה?",
"iosFaqAnswer6": "בכל השלמת משימה, יש סיכוי אקראי לקבלת ביצה, שיקוי בקיעה, או פיסת מזון. הם יאוחסנו תחת תפריט > מלאי ציוד.\n\nכדי להבקיע חיות מחמד, תצטרכו ביצה ושיקוי בקיעה. הקישו על הביצה כדי לקבוע את סוג החיה שאתם רוצים להבקיע. לאחר מכן בחרו את שיקוי הבקיעה כדי לקבוע את צבעה! עברו אל תפריט > חיות מחמד כדי לצייד את הדמות שלכם עם חיית המחמד החדשה על ידי לחיצה עליה.\n\nאתם גם יכולים לגדל חיות מחמד לחיות רכיבה על ידי האכלה שלהן תחת תפריט > חיות מחמד. הקישו על אוכל שאיתו תרצו להאכיל, ולאחר מכן בחרו את החיה שאותה תרצו להאכיל! תצטרכו להאכיל חיית מחמד פעמים רבות לפני שהיא תהפוך להיות חיית רכיבה, אבל אם אתם יכולים להבין את האוכל האהוב עליה, היא תגדל מהר יותר. השתמשו בניסוי וטעייה, או [ראו ספוילרים כאן](http://habitica.fandom.com/wiki/Food#Food_Preferences). ברגע שיש לכם חיית רכיבה, עברו אל תפריט > חיות רכיבה והקישו על חיה כדי לצייד את הדמות שלכם.\n\nאתם גם יכולים לקבל ביצים לחיות מחמד מהרפתקאות על ידי השלמת הרפתקאות מסוימות. (ראה למטה כדי ללמוד עוד על הרפתקאות.)",
- "androidFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored in Menu > Items.\n\n To hatch a Pet, you'll need an egg and a hatching potion. Tap on the egg to determine the species you want to hatch, and select \"Hatch with potion.\" Then choose a hatching potion to determine its color! To equip your new Pet, go to Menu > Stable > Pets, select a species, click on the desired Pet, and select \"Use\"(Your avatar doesn't update to reflect the change). \n\n You can also grow your Pets into Mounts by feeding them under Menu > Stable [ > Pets ]. Tap on a Pet, and then select \"Feed\"! You'll have to feed a pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.fandom.com/wiki/Food#Food_Preferences). To equip your Mount, go to Menu > Stable > Mounts, select a species, click on the desired Mount, and select \"Use\"(Your avatar doesn't update to reflect the change).\n\n You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)",
- "webFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored under Inventory > Items. To hatch a Pet, you'll need an egg and a hatching potion. Once you have both an egg and a potion, go to Inventory > Stable to hatch your pet by clicking on its image. Once you've hatched a pet, you can equip it by clicking on it. You can also grow your Pets into Mounts by feeding them under Inventory > Stable. Drag a piece of food from the action bar at the bottom of the screen and drop it on a pet to feed it! You'll have to feed a Pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.fandom.com/wiki/Food#Food_Preferences). Once you have a Mount, click on it to equip it to your avatar. You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)",
+ "androidFaqAnswer6": "",
+ "webFaqAnswer6": "",
"faqQuestion7": "איך אני נהיה לוחם, מכשף, נוכל, או מרפא?",
"iosFaqAnswer7": "בדרגה 10, אתם יכולים לבחור להיות לוחם, קוסם, נוכל, או מרפא. (כל השחקנים מתחילים כלוחמים כברירת מחדל.) לכל מקצוע יש אפשרויות וציוד שונה, מיומנויות שונות שהם יכולים להפעיל אחרי דרגה 11, ויתרונות שונים. לוחמים יכולים לפגוע באויבים בקלות, לעמוד ביותר נזק ממשימות שלהם, ולעזור להפוך את החבורה שלהם לקשוחה יותר. קוסמים יכולים גם להזיק לאויבים בקלות, כמו גם לעלות דרגות במהירות ולשחזר מאנה עבור חבורתם. הנוכלים יכולים להרוויח את הזהב הרב ביותר ולמצוא את הכי הרבה חפצי נפילה, והם יכולים לעזור לחבורה שלהם לעשות את אותו הדבר.\n\nלבסוף, מרפאים יכולים לרפא את עצמם ואת חברי החבורה שלהם אם אינכם רוצים לבחור במקצוע מיד - למשל, אם אתם עדיין עובדים כדי לקנות את כל הציוד של המקצוע הנוכחי שלכם - אתם יכולים ללחוץ על \"החלט מאוחר יותר\" ולבחור מאוחר יותר תחת תפריט > בחר מקצוע.",
- "androidFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their Party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most gold and find the most item drops, and they can help their Party do the same. Finally, Healers can heal themselves and their Party members.\n\n If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click “Opt Out” and choose later under Menu > Choose Class.",
- "webFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most Gold and find the most item drops, and they can help their party do the same. Finally, Healers can heal themselves and their party members. If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click \"Opt Out\" and re-enable it later under Settings.",
- "faqQuestion8": "What is the blue Stat bar that appears in the Header after level 10?",
- "iosFaqAnswer8": "המד הכחול שמופיע כאשר אתם מגיעים לדרגה 10 ובוחרים מקצוע הוא המד המאנה שלכם. ככל שאתם ממשיכים לדרגות הבאות, תוכלו לפתח כישורים מיוחדים שצריכים מאנה כדי להשתמש בהם. לכל מקצוע מיומנויות שונות, אשר מופיעות לאחר דרגה 11 תחת תפריט > השתמשו במיומנויות. בניגוד למד הבריאות שלכם, מד המאנה שלכם אינו מתאפס כאשר אתם עולים דרגה. במקום זאת, אתם זוכים במאנה כאשר אתם מבצעים הרגלים טובים, מטלות יומיות, ומשימות, ומאבדים מאנה כאשר אתם מתענגים על הרגלים רעים. כמו כן תרוויחו בחזרה קצת מאנה במהלך הלילה -- ככל שתשלימו יותר מטלות יומיות, תרוויחו יותר.",
- "androidFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 under Menu > Skills. Unlike your health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete Good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.",
- "webFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 in the action bar at the bottom of the screen. Unlike your Health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.",
+ "androidFaqAnswer7": "",
+ "webFaqAnswer7": "",
+ "faqQuestion8": "",
+ "iosFaqAnswer8": "",
+ "androidFaqAnswer8": "",
+ "webFaqAnswer8": "",
"faqQuestion9": "איך להלחם במפלצות ולצאת להרפתקאות?",
- "iosFaqAnswer9": "First, you need to join or start a Party (see above). 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!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\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 by pulling down on the screen 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. \n\n 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.",
- "androidFaqAnswer9": "First, you need to join or start a Party (see above). 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!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\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 by pulling down on the screen 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. \n\n 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.",
- "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.",
+ "iosFaqAnswer9": "",
+ "androidFaqAnswer9": "",
+ "webFaqAnswer9": "",
"faqQuestion10": "מהם יהלומים, וכיצד אפשר להשיג אותם?",
- "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.fandom.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.fandom.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!",
- "webFaqAnswer10": "Gems are purchased with real money, although [subscribers](https://habitica.com/user/settings/subscription) can purchase them with Gold. When people subscribe or buy Gems, they are helping us to keep the site running. We're very grateful for their support! In addition to buying Gems directly or becoming a subscriber, there are two other ways players can gain Gems:\n* Win a Challenge that has been set up by another player. Go to Challenges > Discover Challenges to join some.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica). Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the site without them!",
+ "iosFaqAnswer10": "",
+ "androidFaqAnswer10": "",
+ "webFaqAnswer10": "",
"faqQuestion11": "כיצד לדווח על תקלה או לבקש תכונה?",
- "iosFaqAnswer11": "You can report a bug, request a feature, or send feedback under Menu > About > Report a Bug and Menu > About > Send Feedback! We'll do everything we can to assist you.",
- "androidFaqAnswer11": "תוכלו לדווח על באג, לבקש תכולה חדשה במשחק, או לשלוח משוב תחת ״אודות״ > דווח על באג, ו ״אודות״ > שלחו משוב! נעשה ככל יכולתנו כדי לסייע לכם.",
- "webFaqAnswer11": "To report a bug, go to [Help > Report a Bug](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) and read the points above the chat box. If you're unable to log in to Habitica, send your login details (not your password!) to [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Don't worry, we'll get you fixed up soon! Feature requests are collected on Trello. Go to [Help > Request a Feature](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) and follow the instructions. Ta-da!",
+ "iosFaqAnswer11": "",
+ "androidFaqAnswer11": "",
+ "webFaqAnswer11": "",
"faqQuestion12": "כיצד להילחם באויב עולמי?",
- "iosFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual.\n\n You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n\n You can read more about [past World Bosses](http://habitica.fandom.com/wiki/World_Bosses) on the wiki.",
- "androidFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual.\n\n You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n\n You can read more about [past World Bosses](http://habitica.fandom.com/wiki/World_Bosses) on the wiki.",
- "webFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual. You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party. A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change. You can read more about [past World Bosses](http://habitica.fandom.com/wiki/World_Bosses) on the wiki.",
- "iosFaqStillNeedHelp": "אם יש לכם שאלה שאינה מופיעה ברשימה או ב[וויקי שאלות נפוצות](http://habitica.fandom.com/wiki/FAQ), בואו לשאול בשיחת הפונדק תחת תפריט > פונדק! נשמח לעזור.",
- "androidFaqStillNeedHelp": "אם יש לכם שאלה שאינה מופיעה ברשימה או ב[וויקי שאלות נפוצות](http://habitica.fandom.com/wiki/FAQ), בואו לשאול בשיחת הפונדק תחת תפריט > פונדק! נשמח לעזור.",
- "webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), come ask in the [Habitica Help guild](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help."
+ "iosFaqAnswer12": "",
+ "androidFaqAnswer12": "",
+ "webFaqAnswer12": "",
+ "iosFaqStillNeedHelp": "אם יש לך שאלה שאינה מופיעה ברשימה או ב[וויקי שאלות נפוצות](https://habitica.fandom.com/wiki/FAQ), אנחנו מזמינים אותך לשאול בשיחת הפונדק תחת תפריט > פונדק! נשמח לעזור.",
+ "androidFaqStillNeedHelp": "אם יש לך שאלה שאינה מופיעה ברשימה או ב[וויקי שאלות נפוצות](https://habitica.fandom.com/wiki/FAQ), אנחנו מזמינים אותך לשאול בשיחת הפונדק תחת תפריט > פונדק! נשמח לעזור.",
+ "webFaqStillNeedHelp": ""
}
diff --git a/website/common/locales/he/front.json b/website/common/locales/he/front.json
index 1e0322b37e..c6348afe33 100644
--- a/website/common/locales/he/front.json
+++ b/website/common/locales/he/front.json
@@ -1,11 +1,11 @@
{
"FAQ": "שאלות נפוצות",
- "termsAndAgreement": "By clicking the button below, you are indicating that you have read and agree to the
Terms of Service and
Privacy Policy.",
+ "termsAndAgreement": "לחיצה על הכפתור שלמטה מאשרת את קריאתך ואת הסכמתך ל
תנאי השימוש ול
מדיניות הפרטיות.",
"accept1Terms": "בלחיצה על הכפתור למטה אני מסכים עם",
"accept2Terms": "וגם עם",
"chores": "מטלות",
"clearBrowserData": "ניקוי הנתונים מהדפדפן",
- "communityExtensions": "
תוספים והרחבות",
+ "communityExtensions": "
תוספים והרחבות",
"communityFacebook": "פייסבוק",
"companyAbout": "איך זה עובד",
"companyBlog": "בלוג",
@@ -15,7 +15,7 @@
"emailNewPass": "שליחת דוא״ל עם קישור לאיפוס הסיסמה",
"forgotPasswordSteps": "נא לציין את שם המשתמש שלך או את כתובת הדוא״ל איתה נרשמת לחשבון הביטיקה שלך.",
"sendLink": "שליחת קישור",
- "featuredIn": "מוצגים נוספים",
+ "featuredIn": "ממליצים עלינו",
"footerDevs": "מפתחים",
"footerCommunity": "קהילה",
"footerCompany": "חברה",
@@ -28,58 +28,58 @@
"login": "כניסה",
"logout": "יציאה",
"marketing1Header": "שיפור ההרגלים שלך בעזרת משחק",
- "marketing1Lead1Title": "Your Life, the Role Playing Game",
+ "marketing1Lead1Title": "החיים שלך, בתור משחק תפקידים",
"marketing1Lead1": "הביטיקה הוא משחק שנועד לשפר את ההרגלים שלך בחיים האמיתיים. הוא הופך את המשימות שלך (הרגלים, מטלות יומיות, ומשימות) למפלצות קטנות שצריך להביס. ככל שמשתפרים במשחק, מתקדמים בו. אם נכשלים בביצוע המשימות בחיים האמיתיים, הדמות במשחק תתחיל גם היא להתדרדר.",
"marketing1Lead2Title": "השיגו ציוד מטריף",
- "marketing1Lead2": "Improve your habits to build up your avatar. Show off the sweet gear you've earned!",
+ "marketing1Lead2": "",
"marketing1Lead3Title": "מצאו פרסים מדהימים",
"marketing1Lead3": "For some, it's the gamble that motivates them: a system called \"stochastic rewards.\" Habitica accommodates all reinforcement and punishment styles: positive, negative, predictable, and random.",
"marketing2Header": "התחרו בחברייכם, הצטרפו לקבוצות עניין",
"marketing2Lead1Title": "Social Productivity",
"marketing2Lead1": "While you can play Habitica solo, the lights really turn on when you start collaborating, competing, and holding each other accountable. The most effective part of any self-improvement program is social accountability, and what better an environment for accountability and competition than a video game?",
- "marketing2Lead2Title": "Fight Monsters",
+ "marketing2Lead2Title": "לחימה במפלצות",
"marketing2Lead2": "What's a Role Playing Game without battles? Fight monsters with your party. Monsters are \"super accountability mode\" - a day you miss the gym is a day the monster hurts *everyone!*",
"marketing2Lead3Title": "Challenge Each Other",
"marketing2Lead3": "Challenges let you compete with friends and strangers. Whoever does the best at the end of a challenge wins special prizes.",
- "marketing3Header": "Apps and Extensions",
+ "marketing3Header": "יישומים והרחבות",
"marketing3Lead1": "The **iPhone & Android** apps let you take care of business on the go. We realize that logging into the website to click buttons can be a drag.",
"marketing3Lead2Title": "Integrations",
- "marketing3Lead2": "Other **3rd Party Tools** tie Habitica into various aspects of your life. Our API provides easy integration for things like the [Chrome Extension](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US), for which you lose points when browsing unproductive websites, and gain points when on productive ones. [See more here](http://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
+ "marketing3Lead2": "",
"marketing4Header": "שימוש ארגוני",
"marketing4Lead1": "Education is one of the best sectors for gamification. We all know how glued to phones and games students are these days; harness that power! Pit your students against each other in friendly competition. Reward good behavior with rare prizes. Watch their grades and behavior soar.",
"marketing4Lead1Title": "חינוך באמצעות משחקים",
"marketing4Lead2": "העלויות של טיפולים רפואיים בעלייה, וזה לא יכול להמשיך ככה. אין ספור תוכניות נבנו על מנת לעזור לנו לשפר את המצב הבריאותי וכתוצאה גם להפחית בהוצאות הרפואיות. אנחנו מאמינים שהביטיקה יכול לעזור לסלול דרך משמעותית לעבר סגנון חיים בריא יותר.",
"marketing4Lead2Title": "משחקים בתחום הבריאות",
- "marketing4Lead3-1": "רוצה להפוך את החיים שלך למשחק?",
+ "marketing4Lead3-1": "רוצה לשחק אותה בחיים האמיתיים?",
"marketing4Lead3-2": "מתעניין בניהול קבוצת חינוך, רווחה, ועוד?",
- "marketing4Lead3Title": "כל דבר הוא משחק",
+ "marketing4Lead3Title": "לשחק אותה בכל תחומי החיים",
"mobileAndroid": "אנדרואיד",
"mobileIOS": "iOS",
"oldNews": "חדשות",
- "newsArchive": "News archive on Wikia (multilingual)",
- "setNewPass": "Set New Password",
+ "newsArchive": "",
+ "setNewPass": "",
"password": "סיסמה",
"playButton": "שחק",
"playButtonFull": "כניסה להביטיקה",
"presskit": "ערכה לתקשורת",
- "presskitText": "Thanks for your interest in Habitica! The following images can be used for articles or videos about Habitica. For more information, please contact us at <%= pressEnquiryEmail %>.",
- "pkQuestion1": "What inspired Habitica? How did it start?",
- "pkAnswer1": "If you’ve ever invested time in leveling up a character in a game, it’s hard not to wonder how great your life would be if you put all of that effort into improving your real-life self instead of your avatar. We starting building Habitica to address that question.
Habitica officially launched with a Kickstarter in 2013, and the idea really took off. Since then, it’s grown into a huge project, supported by our awesome open-source volunteers and our generous users.",
- "pkQuestion2": "Why does Habitica work?",
- "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.
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",
- "pkQuestion3": "Why did you add social features?",
- "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": "Why does skipping tasks remove your avatar’s health?",
- "pkAnswer4": "If you skip one of your daily goals, your avatar will lose health the following day. This serves as an important motivating factor to encourage people to follow through with their goals because people really hate hurting their little avatar! Plus, the social accountability is critical for a lot of people: if you’re fighting a monster with your friends, skipping your tasks hurts their avatars, too.",
- "pkQuestion5": "What distinguishes Habitica from other gamification programs?",
- "pkAnswer5": "One of the ways that Habitica has been most successful at using gamification is that we've put a lot of effort into thinking about the game aspects to ensure that they are actually fun. We've also included many social components, because we feel that some of the most motivating games let you play with friends, and because research has shown that it's easier to form habits when you have accountability to other people.",
- "pkQuestion6": "Who is the typical user of Habitica?",
- "pkAnswer6": "Lots of different people use Habitica! More than half of our users are ages 18 to 34, but we have grandparents using the site with their young grandkids and every age in-between. Often families will join a party and battle monsters together.
Many of our users have a background in games, but surprisingly, when we ran a survey a while back, 40% of our users identified as non-gamers! So it looks like our method can be effective for anyone who wants productivity and wellness to feel more fun.",
- "pkQuestion7": "Why does Habitica use pixel art?",
- "pkAnswer7": "Habitica uses pixel art for several reasons. In addition to the fun nostalgia factor, pixel art is very approachable to our volunteer artists who want to chip in. It's much easier to keep our pixel art consistent even when lots of different artists contribute, and it lets us quickly generate a ton of new content!",
- "pkQuestion8": "How has Habitica affected people's real lives?",
- "pkAnswer8": "You can find lots of testimonials for how Habitica has helped people here: https://habitversary.tumblr.com",
- "pkMoreQuestions": "Do you have a question that’s not on this list? Send an email to admin@habitica.com!",
+ "presskitText": "",
+ "pkQuestion1": "מה מקור ההשראה של הביטיקה? איך זה התחיל?",
+ "pkAnswer1": "",
+ "pkQuestion2": "איך הביטיקה עובדת?",
+ "pkAnswer2": "",
+ "pkQuestion3": "",
+ "pkAnswer3": "",
+ "pkQuestion4": "",
+ "pkAnswer4": "",
+ "pkQuestion5": "",
+ "pkAnswer5": "",
+ "pkQuestion6": "",
+ "pkAnswer6": "",
+ "pkQuestion7": "",
+ "pkAnswer7": "",
+ "pkQuestion8": "",
+ "pkAnswer8": "",
+ "pkMoreQuestions": "",
"pkPromo": "פרומואים",
"pkLogo": "לוגואים",
"pkBoss": "אויבים",
@@ -94,26 +94,26 @@
"tasks": "משימות",
"teams": "צוותים",
"terms": "תנאי השימוש",
- "tumblr": "Tumblr",
- "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage and most cookies for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.",
+ "tumblr": "",
+ "localStorageTryFirst": "",
"localStorageTryNext": "אם הבעיה נמשכת, נא <%= linkStart %>לדווח על התקלה<%= linkEnd %> - אם לא עשית זאת כבר.",
"localStorageClear": "ניקוי הנתונים",
- "localStorageClearExplanation": "This button will clear local storage and most cookies, and log you out.",
+ "localStorageClearExplanation": "",
"username": "שם משתמש",
- "emailOrUsername": "Email or Username (case-sensitive)",
+ "emailOrUsername": "",
"work": "עבודה",
"reportAccountProblems": "דווח על בעיות בחשבון משתמש",
"reportCommunityIssues": "דווח על בעיות בקהילה",
"subscriptionPaymentIssues": "עינייני מנויים ותשלומים",
"generalQuestionsSite": "שאלות כלליות בנוגע לאתר",
- "businessInquiries": "Business/Marketing Inquiries",
+ "businessInquiries": "",
"merchandiseInquiries": "שאלות וברורים בנוגע לשוואגים (חולצות, מדבקות)",
"tweet": "צייץ",
"checkOutMobileApps": "בדקו את האפליקציות שלנו!",
"missingAuthHeaders": "חסרות ״כותרות אימות״.",
- "missingUsernameEmail": "Missing username or email.",
+ "missingUsernameEmail": "חסרים שם משתמש או כתובת דוא״ל.",
"missingEmail": "חסרה כתובת מייל.",
- "missingUsername": "Missing username.",
+ "missingUsername": "חסר שם משתמש.",
"missingPassword": "חסרה סיסמה.",
"missingNewPassword": "חסרה סיסמה חדשה.",
"invalidEmailDomain": "אינכם יכולים להרשם עם מיילים מהמתחמים (דומיינים) הבאים: <%= domains %>",
@@ -122,21 +122,21 @@
"notAnEmail": "כתובת מייל לא תקנית.",
"emailTaken": "כתובת המייל כבר בשימוש על ידי חשבון אחר.",
"newEmailRequired": "חסרה כתובת מייל חדשה.",
- "usernameTime": "It's time to set your username!",
- "usernameInfo": "Login names are now unique usernames that will be visible beside your display name and used for invitations, chat @mentions, and messaging.
If you'd like to learn more about this change,
visit our wiki.",
- "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.",
+ "usernameTime": "",
+ "usernameInfo": "",
+ "usernameTOSRequirements": "",
+ "usernameTaken": "שם המשתמש כבר תפוס.",
"passwordConfirmationMatch": "אימות הסיסמה לא תואם את הסיסמה הראשונה.",
"invalidLoginCredentials": "שם משתמש או מייל או סיסמה לא נכונים.",
"passwordResetPage": "Reset Password",
- "passwordReset": "If we have your email on file, instructions for setting a new password have been sent to your email.",
+ "passwordReset": "",
"passwordResetEmailSubject": "איפוס סיסמה עבור האביטיקה",
"passwordResetEmailText": "If you requested a password reset for <%= username %> on Habitica, head to <%= passwordResetLink %> to set a new one. The link will expire after 24 hours. If you haven't requested a password reset, please ignore this email.",
"passwordResetEmailHtml": "If you requested a password reset for
<%= username %> on Habitica,
\">click here to set a new one. The link will expire after 24 hours.
If you haven't requested a password reset, please ignore this email.",
- "invalidLoginCredentialsLong": "Uh-oh - your email address / username or password is incorrect.\n- Make sure they are typed correctly. Your username and password are case-sensitive.\n- You may have signed up with Facebook or Google-sign-in, not email so double-check by trying them.\n- If you forgot your password, click \"Forgot Password\".",
+ "invalidLoginCredentialsLong": "",
"invalidCredentials": "לא קיים חשבון המשתמש בפרטים אלו.",
- "accountSuspended": "This account, User ID \"<%= userId %>\", has been blocked for breaking the [Community Guidelines](https://habitica.com/static/community-guidelines) or [Terms of Service](https://habitica.com/static/terms). For details or to ask to be unblocked, please email our Community Manager at <%= communityManagerEmail %> or ask your parent or guardian to email them. Please copy your User ID into the email and include your username.",
- "accountSuspendedTitle": "Account has been suspended",
+ "accountSuspended": "",
+ "accountSuspendedTitle": "החשבון שלך הושעה",
"unsupportedNetwork": "רשת זאת לא נתמכת בשלב זה.",
"cantDetachSocial": "לחשבון אין אמצעי זיהוי אחר; לא ניתן לנתק את אמצעי הזיהוי הזה.",
"onlySocialAttachLocal": "אימות מקומי ניתן להוסיף אך ורק לחשבון שמקושר לרשת חברתית.",
@@ -144,44 +144,47 @@
"memberIdRequired": "״משתמש״ חייב להיות מזהה משתמש תקין.",
"heroIdRequired": "״heroId״ חייב להיות מזהה משתמש תקין.",
"cannotFulfillReq": "הבקשה שלכם לא יכולה להתמלא. שלחו מייל ל admin@habitica.com אם הבעיה נמשכת.",
- "modelNotFound": "This model does not exist.",
- "signUpWithSocial": "Sign up with <%= social %>",
+ "modelNotFound": "",
+ "signUpWithSocial": "הרשמה דרך with <%= social %>",
"loginWithSocial": "Log in with <%= social %>",
- "confirmPassword": "Confirm Password",
- "usernameLimitations": "Username must be 1 to 20 characters, containing only letters a to z, numbers 0 to 9, hyphens, or underscores, and cannot include any inappropriate terms.",
- "usernamePlaceholder": "e.g., HabitRabbit",
- "emailPlaceholder": "e.g., rabbit@example.com",
+ "confirmPassword": "אימות הסיסמה",
+ "usernameLimitations": "",
+ "usernamePlaceholder": "למשל, HabitRabbit",
+ "emailPlaceholder": "למשל: gryphon@example.com",
"passwordPlaceholder": "e.g., ******************",
- "confirmPasswordPlaceholder": "Make sure it's the same password!",
+ "confirmPasswordPlaceholder": "נא לוודא שהקלדת את אותה הסיסמה!",
"joinHabitica": "Join Habitica",
- "alreadyHaveAccountLogin": "Already have a Habitica account?
Log in.",
- "dontHaveAccountSignup": "Don’t have a Habitica account?
Sign up.",
- "motivateYourself": "Motivate yourself to achieve your goals.",
- "timeToGetThingsDone": "It's time to have fun when you get things done! Join over <%= userCountInMillions %> million Habiticans and improve your life one task at a time.",
- "singUpForFree": "Sign Up For Free",
- "or": "OR",
- "gamifyYourLife": "Gamify Your Life",
- "aboutHabitica": "Habitica is a free habit-building and productivity app that treats your real life like a game. With in-game rewards and punishments to motivate you and a strong social network to inspire you, Habitica can help you achieve your goals to become healthy, hard-working, and happy.",
- "trackYourGoals": "Track Your Habits and Goals",
- "trackYourGoalsDesc": "Stay accountable by tracking and managing your Habits, Daily goals, and To-Do list with Habitica’s easy-to-use mobile apps and web interface.",
- "earnRewards": "Earn Rewards for Your Goals",
- "earnRewardsDesc": "Check off tasks to level up your Avatar and unlock in-game features such as battle armor, mysterious pets, magic skills, and even quests!",
- "battleMonsters": "Battle Monsters with Friends",
- "battleMonstersDesc": "Fight monsters with other Habiticans! Use the Gold that you earn to buy in-game or custom rewards, like watching an episode of your favorite TV show.",
- "playersUseToImprove": "Players Use Habitica to Improve",
- "healthAndFitness": "Health and Fitness",
- "healthAndFitnessDesc": "Never motivated to floss? Can't seem to get to the gym? Habitica finally makes it fun to get healthy.",
- "schoolAndWork": "School and Work",
- "schoolAndWorkDesc": "Whether you're preparing a report for your teacher or your boss, it's easy to keep track of your progress as you tackle your toughest tasks.",
- "muchmuchMore": "And much, much more!",
- "muchmuchMoreDesc": "Our fully customizable task list means that you can shape Habitica to fit your personal goals. Work on creative projects, emphasize self-care, or pursue a different dream -- it's all up to you.",
- "levelUpAnywhere": "Level Up Anywhere",
- "levelUpAnywhereDesc": "Our mobile apps make it simple to keep track of your tasks on-the-go. Accomplish your goals with a single tap, no matter where you are.",
- "joinMany": "Join over 2,000,000 people having fun while accomplishing their goals!",
- "joinToday": "מצטרפים להביטיקה היום",
+ "alreadyHaveAccountLogin": "כבר יש לך חשבון הביטיקה?
אפשר להיכנס מכאן.",
+ "dontHaveAccountSignup": "אין לך חשבון הביטיקה?
אפשר להירשם.",
+ "motivateYourself": "לשיפור המוטיבציה והגעה ליעדים בחיים.",
+ "timeToGetThingsDone": "",
+ "singUpForFree": "הרשמה בחינם",
+ "or": "או",
+ "gamifyYourLife": "לשחק אותה בחיים האמיתיים",
+ "aboutHabitica": "",
+ "trackYourGoals": "מעקב אחר ההרגלים והיעדים",
+ "trackYourGoalsDesc": "",
+ "earnRewards": "צוברים פרסים על הגעה ליעדים",
+ "earnRewardsDesc": "",
+ "battleMonsters": "נלחמים במפלצות עם חברים",
+ "battleMonstersDesc": "",
+ "playersUseToImprove": "אנשים משתמשים בהביטיקה כדי להשתפר",
+ "healthAndFitness": "בריאות וכושר",
+ "healthAndFitnessDesc": "",
+ "schoolAndWork": "בית ספר ועבודה",
+ "schoolAndWorkDesc": "",
+ "muchmuchMore": "ועוד המון!",
+ "muchmuchMoreDesc": "",
+ "levelUpAnywhere": "אפשר להתקדם מכל מקום",
+ "levelUpAnywhereDesc": "היישומים שלנו לנייד הופכים את המעקב אחר המשימות לפשוט. אפשר להגיע ליעד בעזרת לחיצה פשוטה, בלי קשר למיקומך.",
+ "joinMany": "אנחנו מזמינים אותך להצטרף אל למעלה מ־<%= userCountInMillions %> משתמשים שמגיעים ליעדים שלהם בכיף!",
+ "joinToday": "הצטרפות להביטיקה",
"signup": "הרשמה",
- "getStarted": "Get Started!",
+ "getStarted": "מתחילים!",
"mobileApps": "יישומים לנייד",
"learnMore": "למידע נוסף",
- "communityInstagram": "אינסטגרם"
+ "communityInstagram": "אינסטגרם",
+ "minPasswordLength": "על הסיסמה להכיל 8 תווים ומעלה.",
+ "enterHabitica": "כניסה להביטיקה",
+ "emailUsernamePlaceholder": "למשל: habitrabbit או gryphon@example.com"
}
diff --git a/website/common/locales/he/gear.json b/website/common/locales/he/gear.json
index f0086d3a5b..58171fe5e5 100644
--- a/website/common/locales/he/gear.json
+++ b/website/common/locales/he/gear.json
@@ -170,7 +170,7 @@
"weaponSpecialSummer2015MageNotes": "כוח גלום מסתתר בנצנוצי התכשיטים של מטה זה. מגביר תבונה ב <%= int %> ותפיסה ב <%= per %>. מהדורה מוגבלת 2015, ציוד קיץ.",
"weaponSpecialSummer2015HealerText": "שרביט הגלים",
"weaponSpecialSummer2015HealerNotes": "מרפא מחלתים ומחלת ים! מגביר תבונה ב <%= int %>. מהדורה מוגבלת 2015, קיץ 2015.",
- "weaponSpecialFall2015RogueText": "גרזן ק-רב",
+ "weaponSpecialFall2015RogueText": "גרזן קרב־רב",
"weaponSpecialFall2015RogueNotes": "משימות מפחידות מתכווצות למראה הגרזן המתנפנף. מגביר כוח ב <%= str %>. מהדורה מוגבלת 2015, ציוד סתיו",
"weaponSpecialFall2015WarriorText": "לוח עץ",
"weaponSpecialFall2015WarriorNotes": "נהדר כדי להרים דברים בשדות תירס ו/או לחבוט במשימות. מגביר כוח ב-<%= str %>. מהדורה מוגבלת 2015 ציוד סתיו.",
@@ -380,13 +380,13 @@
"armorBase0Notes": "בגדים רגילים. לא מקנים יתרון.",
"armorWarrior1Text": "שריון עור",
"armorWarrior1Notes": "ג׳קט עור קשיח. מגביר את ערך החוסן שלך ב<%= con %> נקודות.",
- "armorWarrior2Text": "שריון טבעות",
+ "armorWarrior2Text": "שריון שרשראות",
"armorWarrior2Notes": "שריון העשוי טבעות השזורות זו בזו. מגביר את ערך החוסן שלך ב<%= con %> נקודות.",
"armorWarrior3Text": "שריון לוחות",
"armorWarrior3Notes": "סט פלדה העוטף את כולך, גאוותם של אבירים רבים מספור. מגביר את ערך החוסן שלך ב<%= con %> נקודות.",
"armorWarrior4Text": "שריון אדום",
- "armorWarrior4Notes": "שיריון כבד זה אוצר בתוכו שלל קסמים הגנתיים. מגביר את ערך החוסן שלך ב<%= con %> נקודות.",
- "armorWarrior5Text": "שיריון זהב",
+ "armorWarrior4Notes": "שריון כבד זה אוצר בתוכו שלל קסמים הגנתיים. מגביר את ערך החוסן שלך ב<%= con %> נקודות.",
+ "armorWarrior5Text": "שריון זהב",
"armorWarrior5Notes": "הוא נראה כלבוש טקסי, אך אין להב עלי אדמות שיחדור אותו. מגביר את ערך החוסן שלך ב<%= con %> נקודות.",
"armorRogue1Text": "עור משומן",
"armorRogue1Notes": "שריון זה טופל במיוחד כדי להפחית רעש. מגביר את ערך התפיסה שלך ב<%= per %> נקודות.",
@@ -524,8 +524,8 @@
"armorSpecialSummer2015MageNotes": "כוחות נחבאים נמצאים בין טפחות השרוולים הללו. מגבירות תבונה ב <%= int %>. מהדורה מוגבלת 2015, ציוד קיץ.",
"armorSpecialSummer2015HealerText": "שריון מלחים",
"armorSpecialSummer2015HealerNotes": "שריון זה מיידע את כולם שאתה מלח סוחר ישר שלא יחלום להתנהג כמו בוגד. מגביר חוסן ב <%= con %>. מהדורה מוגבלת 2015, ציוד קיץ.",
- "armorSpecialFall2015RogueText": "שריון ק-רב",
- "armorSpecialFall2015RogueNotes": "עוף לעבר ק-רב! מגביר תפיסה ב <%= per %>. מהדורה מוגבלת 2015, ציוד סתיו.",
+ "armorSpecialFall2015RogueText": "שריון קרב־רב",
+ "armorSpecialFall2015RogueNotes": "לעוף לעבר הקרב־רב! מגביר את התפיסה ב־<%= per %>. מהדורה מוגבלת 2015, ציוד סתיו.",
"armorSpecialFall2015WarriorText": "שריון דחליל",
"armorSpecialFall2015WarriorNotes": "על אף היותו מלא בקש, שריון זה הוא חסון באופן יוצא מן הכלל! מגביר חוסן ב <%= con %>. מהדורה מוגבלת 2015, ציוד סתיו.",
"armorSpecialFall2015MageText": "גלימות תפורות",
@@ -958,7 +958,7 @@
"headSpecialSummer2015MageNotes": "כוחות חבויים זוהרים בחוטי צעיף זה. מגביר תפיסה ב <%= per %>. מהדורה מוגבלת 2015, ציוד קיץ.",
"headSpecialSummer2015HealerText": "כובע מלחים",
"headSpecialSummer2015HealerNotes": "עם כובע המלחים שלכם חבוש ביציבות על ראשכם, תוכלו לנווט גם את הימים הסוערים ביותר! מגביר תבונה ב <%= int %>. מהדורה מוגבלת 2015, ציוד קיץ.",
- "headSpecialFall2015RogueText": "כנפי ק-רב",
+ "headSpecialFall2015RogueText": "כנפי קרב־רב",
"headSpecialFall2015RogueNotes": "אתרו-באמצעות-הד את אויבייכם עם קסדה עוצמתית זו! מגבירה תפיסה ב <%= per %>. מהדורה מוגבלת 2015, ציוד סתיו.",
"headSpecialFall2015WarriorText": "כובע דחליל",
"headSpecialFall2015WarriorNotes": "כולם היו רוצים את הכובע הזה--אילו רק לא היה להם מח. מגביר כוח ב <%= str %>. מהדורה מוגבלת, 2015, ציוד סתיו.",
@@ -977,7 +977,7 @@
"headSpecialWinter2016HealerText": "קסדת פיית כנפיים",
"headSpecialWinter2016HealerNotes": "כנפייםאלומתנפנפותכלכךמהרשהןמטשטשות! מגבירות תבונה ב <%= int %>. מהדורה מוגבלת 2015-2016, ציוד חורף.",
"headSpecialSpring2016RogueText": "מסכת כלבלב טוב",
- "headSpecialSpring2016RogueNotes": "אוו, איזה כלבלב חמוד! בוא הנה, תן לי ללטף אותך. ...הי, לאן נעלמו כל מטבעות הזהב שלי? מגביר תפיסה ב־<%= per %>. מהדורה מוגבלת 2016, ציוד אביב.",
+ "headSpecialSpring2016RogueNotes": "אוו, איזה כלבלב חמוד! בוא הנה, תן לי ללטף אותך. ...הי, לאן נעלמו כל מטבעות הזהב שלי? מגביר את התפיסה ב־<%= per %>. מהדורה מוגבלת 2016, ציוד אביב.",
"headSpecialSpring2016WarriorText": "קסדת שומר עכבר",
"headSpecialSpring2016WarriorNotes": "לעולם לא תחטפו יותר בראש! תנו להם לנסות! מגבירה חוסן ב <%= str %>. מהדורה מוגבלת 2016, ציוד אביב.",
"headSpecialSpring2016MageText": "כובע מלכין גדול",
diff --git a/website/common/locales/he/generic.json b/website/common/locales/he/generic.json
index e1bede7402..33118eda18 100644
--- a/website/common/locales/he/generic.json
+++ b/website/common/locales/he/generic.json
@@ -198,7 +198,7 @@
"contactForm": "יצירת קשר עם צוות המנהלים",
"onboardingAchievs": "הישגי הסתגלות",
"options": "אפשרויות",
- "finish": "לסיים",
+ "finish": "סיום",
"congratulations": "ברכות!",
"askQuestion": "לשאול שאלה"
}
diff --git a/website/common/locales/he/groups.json b/website/common/locales/he/groups.json
index ec0d53dde0..ff210c06e6 100644
--- a/website/common/locales/he/groups.json
+++ b/website/common/locales/he/groups.json
@@ -1,17 +1,17 @@
{
"tavern": "שיחת פונדק",
"tavernChat": "שיחת פונדק",
- "innCheckOutBanner": "You are currently checked into the Inn. Your Dailies won't damage you and you won't make progress towards Quests.",
- "innCheckOutBannerShort": "You are checked into the Inn.",
- "resumeDamage": "Resume Damage",
+ "innCheckOutBanner": "הדמות שלך נמצאת כרגע במצב תרדמת. המטלות היומיומיות שלך לא ייפגעו וההתקדמות שלך בהרפתקאות הושהתה.",
+ "innCheckOutBannerShort": "הדמות שלך נמצאת במצב תרדמת.",
+ "resumeDamage": "ביטול השהיית הנזק",
"helpfulLinks": "קישורים שימושיים",
"communityGuidelinesLink": "הנחיות הקהילה",
- "lookingForGroup": "Looking for Group (Party Wanted) Posts",
+ "lookingForGroup": "",
"dataDisplayTool": "כלי הצגת נתונים",
"requestFeature": "בקשת תכונה",
"askAQuestion": "לשאול שאלה",
"askQuestionGuild": "לשאול שאלה (בגילדת העזרה של הביטיקה)",
- "contributing": "Contributing",
+ "contributing": "",
"faq": "שאלות נפוצות",
"tutorial": "הדרכה",
"glossary": "
מונחון",
@@ -20,8 +20,8 @@
"dataTool": "כלי הצגת נתונים",
"resources": "משאבים",
"communityGuidelines": "הנחיות הקהילה",
- "bannedWordUsed": "Oops! Looks like this post contains a swearword, religious oath, or reference to an addictive substance or adult topic (<%= swearWordsUsed %>). Habitica has users from all backgrounds, so we keep our chat very clean. Feel free to edit your message so you can post it!",
- "bannedSlurUsed": "Your post contained inappropriate language, and your chat privileges have been revoked.",
+ "bannedWordUsed": "",
+ "bannedSlurUsed": "",
"party": "חבורה",
"usernameCopied": "שם המשתמש הועתק ללוח הגזירים.",
"createGroupPlan": "יצירה",
@@ -29,22 +29,22 @@
"userId": "מזהה משתמש",
"invite": "הזמנה",
"leave": "עזיבה",
- "invitedToParty": "You were invited to join the Party
<%- party %>",
- "invitedToPrivateGuild": "You were invited to join the private Guild
<%- guild %>",
- "invitedToPublicGuild": "You were invited to join the Guild
<%- guild %>",
- "invitationAcceptedHeader": "Your Invitation has been Accepted",
- "invitationAcceptedBody": "<%= username %> accepted your invitation to <%= groupName %>!",
+ "invitedToParty": "",
+ "invitedToPrivateGuild": "הוזמנת להצטרף לגילדה הפרטית
<%- guild %>",
+ "invitedToPublicGuild": "הוזמת להצטרף לגילדה
<%- guild %>",
+ "invitationAcceptedHeader": "",
+ "invitationAcceptedBody": "",
"systemMessage": "הודעת מערכת",
- "newMsgGuild": "
<%- name %> has new posts",
- "newMsgParty": "Your Party,
<%- name %>, has new posts",
+ "newMsgGuild": "יש פוסטים חדשים בגילדה
<%- name %>",
+ "newMsgParty": "",
"chat": "שיחה",
"sendChat": "שילחו הודעה",
- "group": "Group",
+ "group": "קבוצה",
"groupName": "שם קבוצה",
"groupLeader": "מנהיג החבורה",
"groupID": "מזהה קבוצה",
"members": "חברים",
- "memberList": "Member List",
+ "memberList": "",
"invited": "הוזמן",
"name": "שם",
"description": "תיאור",
@@ -57,52 +57,52 @@
"createGuild2": "יצירה",
"guild": "גילדה",
"guilds": "גילדות",
- "sureKick": "Do you really want to remove this member from the Party/Guild?",
+ "sureKick": "להסיר את החבר הזה מתוך החבורה/גילדה?",
"optionalMessage": "הודעה אופציונלית",
"yesRemove": "כן, הסר אותם",
- "sortBackground": "Sort by Background",
- "sortClass": "Sort by Class",
- "sortDateJoined": "Sort by Join Date",
- "sortLogin": "Sort by Login Date",
- "sortLevel": "Sort by Level",
- "sortName": "Sort by Name",
- "sortTier": "Sort by Tier",
- "ascendingAbbrev": "Asc",
- "descendingAbbrev": "Desc",
- "applySortToHeader": "Apply Sort Options to Party Header",
- "confirmGuild": "ליצור גילדה בתמורה ל־4 יהלומים?",
+ "sortBackground": "מיון לפי רקע",
+ "sortClass": "",
+ "sortDateJoined": "",
+ "sortLogin": "",
+ "sortLevel": "",
+ "sortName": "מיון לפי שם",
+ "sortTier": "",
+ "ascendingAbbrev": "עולה",
+ "descendingAbbrev": "יורד",
+ "applySortToHeader": "",
+ "confirmGuild": "ליצור גילדה תמורת 4 יהלומים?",
"confirm": "אישור",
"leaveGroup": "Leave Guild",
"leaveParty": "עזיבת החבורה",
"send": "שליחה",
- "pmsMarkedRead": "Your Private Messages have been marked as read",
+ "pmsMarkedRead": "",
"possessiveParty": "החבורה של <%= name %>",
- "PMPlaceholderTitle": "Nothing Here Yet",
- "PMPlaceholderDescription": "Select a conversation on the left",
- "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked",
+ "PMPlaceholderTitle": "",
+ "PMPlaceholderDescription": "",
+ "PMPlaceholderTitleRevoked": "",
"PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email
admin@habitica.com to discuss it with the staff.",
- "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.",
- "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.",
- "PMDisabledCaptionTitle": "Private Messages are disabled",
- "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.",
+ "PMEnabledOptPopoverText": "",
+ "PMDisabledOptPopoverText": "",
+ "PMDisabledCaptionTitle": "",
+ "PMDisabledCaptionText": "",
"block": "חסימה",
"unblock": "ביטול חסימה",
- "blockWarning": "Block - This will have no effect if the player is a moderator now or becomes a moderator in future.",
+ "blockWarning": "",
"inbox": "תיבת דואר",
"messageRequired": "נדרש למלא הודעה.",
"toUserIDRequired": "נדרש מזהה משתמש",
"gemAmountRequired": "נדרש מספר היהלומים",
- "notAuthorizedToSendMessageToThisUser": "You can't send a message to this player because they have chosen to block messages.",
- "privateMessageGiftGemsMessage": "Hello <%= receiverName %>, <%= senderName %> has sent you <%= gemAmount %> gems!",
+ "notAuthorizedToSendMessageToThisUser": "",
+ "privateMessageGiftGemsMessage": "",
"cannotSendGemsToYourself": "לא ניתן לשלוח יהלומים לעצמך. כדאי לנסות להירשם למינוי במקום.",
"badAmountOfGemsToSend": "הסכום חייב להיות בין 1 אל כמות אבני החן שכרגע ברשותך.",
"report": "Report",
- "abuseFlagModalHeading": "Report a Violation",
- "abuseFlagModalBody": "Are you sure you want to report this post? You should
only report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction.",
+ "abuseFlagModalHeading": "",
+ "abuseFlagModalBody": "",
"abuseReported": "תודה רבה על שדיווחת על הפרה זו. יידענו את המנהלים על כך.",
- "whyReportingPost": "Why are you reporting this post?",
- "whyReportingPostPlaceholder": "Please help our moderators by letting us know why you are reporting this post for a violation, e.g., spam, swearing, religious oaths, bigotry, slurs, adult topics, violence.",
- "optional": "Optional",
+ "whyReportingPost": "",
+ "whyReportingPostPlaceholder": "",
+ "optional": "רשות",
"needsTextPlaceholder": "הקלד את ההודעה שלך כאן.",
"copyMessageAsToDo": "העתקת ההודעה בתור משימה לביצוע",
"copyAsTodo": "העתקה בתור משימה לביצוע",
@@ -111,13 +111,13 @@
"sendGift": "הענקת מתנה",
"inviteFriends": "הזמנת חברים",
"inviteByEmail": "הזמנה בדוא״ל",
- "inviteMembersHowTo": "Invite people via a valid email or 36-digit User ID. If an email isn't registered yet, we'll invite them to join Habitica.",
- "sendInvitations": "Send Invites",
+ "inviteMembersHowTo": "",
+ "sendInvitations": "שליחת הזמנות",
"invitationsSent": "הזמנות נשלחו!",
"invitationSent": "הזמנה נשלחה!",
- "invitedFriend": "Invited a Friend",
- "invitedFriendText": "This user invited a friend (or friends) who joined them on their adventure!",
- "inviteLimitReached": "You have already sent the maximum number of email invitations. We have a limit to prevent spamming, however if you would like more, please contact us at <%= techAssistanceEmail %> and we'll be happy to discuss it!",
+ "invitedFriend": "הזמנת חבר",
+ "invitedFriendText": "",
+ "inviteLimitReached": "",
"sendGiftHeading": "שלחו מתנה ל<%= name %>",
"sendGiftGemsBalance": "החל מ־<%= number %> יהלומים",
"sendGiftCost": "סך הכול: $<%= cost %> USD",
@@ -125,54 +125,54 @@
"sendGiftPurchase": "רכוש",
"sendGiftMessagePlaceholder": "הודעה אישית (אופציונילי)",
"sendGiftSubscription": "<%= months %> חודש(ים): $<%= price %>",
- "gemGiftsAreOptional": "Please note that Habitica will never require you to gift gems to other players. Begging people for gems is a
violation of the Community Guidelines, and all such instances should be reported to <%= hrefTechAssistanceEmail %>.",
+ "gemGiftsAreOptional": "",
"battleWithFriends": "נלחמים במפלצות עם חברים",
"startAParty": "התחילו חבורה",
"partyUpName": "חגיגה",
"partyOnName": "מסיבה",
- "partyUpText": "Joined a Party with another person! Have fun battling monsters and supporting each other.",
- "partyOnText": "Joined a Party with at least four people! Enjoy your increased accountability as you unite with your friends to vanquish your foes!",
+ "partyUpText": "",
+ "partyOnText": "",
"groupNotFound": "קבוצה לא נמצאה או שאין לכם גישה.",
"groupTypesRequired": "חובה לספק שורת שאילתא \"type\" תקפה.",
- "questLeaderCannotLeaveGroup": "You cannot leave your Party when you have started a quest. Abort the quest first.",
- "cannotLeaveWhileActiveQuest": "You cannot leave Party during an active quest. Please leave the quest first.",
+ "questLeaderCannotLeaveGroup": "",
+ "cannotLeaveWhileActiveQuest": "",
"onlyLeaderCanRemoveMember": "רק מנהיגי החבורה יכולים להסיר ממנה חברים!",
- "cannotRemoveCurrentLeader": "You cannot remove the group leader. Assign a new a leader first.",
+ "cannotRemoveCurrentLeader": "",
"memberCannotRemoveYourself": "אינכם יכולים להסיר את עצמכם!",
"groupMemberNotFound": "המשתמשים לא נמצאו מבין חברי הקבוצה",
"mustBeGroupMember": "חייבים להיות חברים בקבוצה.",
"canOnlyInviteEmailUuid": "אפשר להזמין רק לפי מזהה משתמש, כתובת דוא״ל ושם משתמש.",
"inviteMissingEmail": "חסרה כתובת אימייל בהזמנה.",
- "inviteMustNotBeEmpty": "Invite must not be empty.",
+ "inviteMustNotBeEmpty": "",
"partyMustbePrivate": "חבורות חייבות להיות חסויות",
- "userAlreadyInGroup": "UserID: <%= userId %>, User \"<%= username %>\" already in that group.",
- "youAreAlreadyInGroup": "You are already a member of this group.",
+ "userAlreadyInGroup": "",
+ "youAreAlreadyInGroup": "",
"cannotInviteSelfToGroup": "אתם לא יכולים להזמין את עצמכם לקבוצה.",
- "userAlreadyInvitedToGroup": "UserID: <%= userId %>, User \"<%= username %>\" already invited to that group.",
- "userAlreadyPendingInvitation": "UserID: <%= userId %>, User \"<%= username %>\" already pending invitation.",
- "userAlreadyInAParty": "UserID: <%= userId %>, User \"<%= username %>\" already in a party.",
- "userWithIDNotFound": "משתמש/ת עם מספר זהות \"<%= userId %>\" לא נמצא/ה.",
- "userWithUsernameNotFound": "User with username \"<%= username %>\" not found.",
+ "userAlreadyInvitedToGroup": "",
+ "userAlreadyPendingInvitation": "",
+ "userAlreadyInAParty": "",
+ "userWithIDNotFound": "לא נמצא משתמש עם המזהה \"<%= userId %>\".",
+ "userWithUsernameNotFound": "לא נמצא משתמש עם שם המשתמש \"<%= username %>\".",
"userHasNoLocalRegistration": "למשתמש/ת אין רישום מקומי (שם משתמש, אימייל, סיסמה).",
"uuidsMustBeAnArray": "הזמנות של מספר זהות משתמש/ת חייבות להיות מערך.",
"emailsMustBeAnArray": "הזמנות של כתובת אימייל חייבות להיות מערך.",
- "usernamesMustBeAnArray": "Username invites must be an array.",
+ "usernamesMustBeAnArray": "",
"canOnlyInviteMaxInvites": "ניתן להזמין רק \"<%= maxInvites %>\" בכל פעם",
- "partyExceedsMembersLimit": "Party size is limited to <%= maxMembersParty %> members",
+ "partyExceedsMembersLimit": "",
"onlyCreatorOrAdminCanDeleteChat": "אין לך הרשאה למחוק את ההודעה הזאת!",
- "onlyGroupLeaderCanEditTasks": "Not authorized to manage tasks!",
- "onlyGroupTasksCanBeAssigned": "Only group tasks can be assigned",
+ "onlyGroupLeaderCanEditTasks": "",
+ "onlyGroupTasksCanBeAssigned": "",
"assignedTo": "שיוך אל",
"assignedToUser": "Assigned to <%- userName %>",
"assignedToMembers": "Assigned to <%= userCount %> members",
"assignedToYouAndMembers": "Assigned to you and <%= userCount %> members",
"youAreAssigned": "שויך לך",
- "taskIsUnassigned": "This task is unassigned",
- "confirmUnClaim": "Are you sure you want to unclaim this task?",
- "confirmNeedsWork": "Are you sure you want to mark this task as needing work?",
+ "taskIsUnassigned": "",
+ "confirmUnClaim": "",
+ "confirmNeedsWork": "",
"userRequestsApproval": "<%- userName %> requests approval",
"userCountRequestsApproval": "<%= userCount %> members request approval",
- "youAreRequestingApproval": "You are requesting approval",
+ "youAreRequestingApproval": "",
"chatPrivilegesRevoked": "You cannot do that because your chat privileges have been revoked.",
"cannotCreatePublicGuildWhenMuted": "You cannot create a public guild because your chat privileges have been revoked.",
"cannotInviteWhenMuted": "You cannot invite anyone to a guild or party because your chat privileges have been revoked.",
@@ -180,165 +180,165 @@
"from": "מאת:",
"assignTask": "הקצו משימה",
"claim": "Claim",
- "removeClaim": "Remove Claim",
- "onlyGroupLeaderCanManageSubscription": "Only the group leader can manage the group's subscription",
+ "removeClaim": "",
+ "onlyGroupLeaderCanManageSubscription": "",
"yourTaskHasBeenApproved": "Your task
<%- taskText %> has been approved.",
- "taskNeedsWork": "
<%- managerName %> marked
<%- taskText %> as needing additional work.",
- "userHasRequestedTaskApproval": "
<%- user %> requests approval for
<%- taskName %>",
- "approve": "Approve",
- "approveTask": "Approve Task",
- "needsWork": "Needs Work",
- "viewRequests": "View Requests",
- "groupSubscriptionPrice": "$9 every month + $3 a month for every additional group member",
- "groupBenefitsDescription": "We've just launched the beta version of our group plans! Upgrading to a group plan unlocks some unique features to optimize the social side of Habitica.",
- "teamBasedTasks": "Team-based Tasks",
- "cannotDeleteActiveGroup": "You cannot remove a group with an active subscription",
- "groupTasksTitle": "Group Tasks List",
- "userIsClamingTask": "`<%= username %> has claimed:` <%= task %>",
- "approvalRequested": "Approval Requested",
- "cantDeleteAssignedGroupTasks": "Can't delete group tasks that are assigned to you.",
- "groupPlanUpgraded": "
<%- groupName %> was upgraded to a Group Plan!",
- "groupPlanCreated": "
<%- groupName %> was created!",
- "onlyGroupLeaderCanInviteToGroupPlan": "Only the group leader can invite users to a group with a subscription.",
- "paymentDetails": "Payment Details",
- "aboutToJoinCancelledGroupPlan": "You are about to join a group with a canceled plan. You will NOT receive a free subscription.",
- "cannotChangeLeaderWithActiveGroupPlan": "You can not change the leader while the group has an active plan.",
- "leaderCannotLeaveGroupWithActiveGroup": "A leader can not leave a group while the group has an active plan",
+ "taskNeedsWork": "",
+ "userHasRequestedTaskApproval": "",
+ "approve": "",
+ "approveTask": "",
+ "needsWork": "",
+ "viewRequests": "",
+ "groupSubscriptionPrice": "",
+ "groupBenefitsDescription": "",
+ "teamBasedTasks": "",
+ "cannotDeleteActiveGroup": "",
+ "groupTasksTitle": "",
+ "userIsClamingTask": "",
+ "approvalRequested": "",
+ "cantDeleteAssignedGroupTasks": "",
+ "groupPlanUpgraded": "",
+ "groupPlanCreated": "",
+ "onlyGroupLeaderCanInviteToGroupPlan": "",
+ "paymentDetails": "פרטי תשלום",
+ "aboutToJoinCancelledGroupPlan": "",
+ "cannotChangeLeaderWithActiveGroupPlan": "",
+ "leaderCannotLeaveGroupWithActiveGroup": "",
"youHaveGroupPlan": "You have a free subscription because you are a member of a group that has a Group Plan. This will end when you are no longer in the group that has a Group Plan. Any months of extra subscription credit you have will be applied at the end of the Group Plan.",
- "cancelGroupSub": "Cancel Group Plan",
- "confirmCancelGroupPlan": "Are you sure you want to cancel the group plan and remove its benefits from all members, including their free subscriptions?",
+ "cancelGroupSub": "",
+ "confirmCancelGroupPlan": "",
"canceledGroupPlan": "Canceled Group Plan",
- "groupPlanCanceled": "Group Plan will become inactive on",
- "purchasedGroupPlanPlanExtraMonths": "You have <%= months %> months of extra group plan credit.",
- "addManager": "Assign Manager",
- "removeManager2": "Unassign Manager",
- "userMustBeMember": "User must be a member",
+ "groupPlanCanceled": "",
+ "purchasedGroupPlanPlanExtraMonths": "",
+ "addManager": "",
+ "removeManager2": "",
+ "userMustBeMember": "",
"userIsNotManager": "User is not manager",
- "canOnlyApproveTaskOnce": "This task has already been approved.",
+ "canOnlyApproveTaskOnce": "",
"addTaskToGroupPlan": "Create",
- "joinedGuild": "Joined a Guild",
- "joinedGuildText": "Ventured into the social side of Habitica by joining a Guild!",
- "badAmountOfGemsToPurchase": "Amount must be at least 1.",
- "groupPolicyCannotGetGems": "The policy of one group you're part of prevents its members from obtaining gems.",
+ "joinedGuild": "הצטרפת לגילדה",
+ "joinedGuildText": "",
+ "badAmountOfGemsToPurchase": "",
+ "groupPolicyCannotGetGems": "",
"viewParty": "View Party",
- "newGuildPlaceholder": "Enter your guild's name.",
- "guildBank": "Guild Bank",
- "chatPlaceholder": "Type your message to Guild members here",
- "partyChatPlaceholder": "Type your message to Party members here",
- "fetchRecentMessages": "Fetch Recent Messages",
- "like": "Like",
- "liked": "Liked",
- "inviteToGuild": "Invite to Guild",
- "inviteToParty": "Invite to Party",
- "inviteEmailUsername": "Invite via Email or Username",
- "inviteEmailUsernameInfo": "Invite users via a valid email or username. If an email isn't registered yet, we'll invite them to join.",
- "emailOrUsernameInvite": "Email address or username",
- "messageGuildLeader": "Message Guild Leader",
- "donateGems": "Donate Gems",
- "updateGuild": "Update Guild",
- "viewMembers": "View Members",
- "memberCount": "Member Count",
- "recentActivity": "Recent Activity",
- "myGuilds": "My Guilds",
- "guildsDiscovery": "Discover Guilds",
+ "newGuildPlaceholder": "נא לתת שם לגילדה שלך.",
+ "guildBank": "הבנק של הגילדה",
+ "chatPlaceholder": "כאן אפשר להקליד הודעה לחברי הגילדה",
+ "partyChatPlaceholder": "",
+ "fetchRecentMessages": "",
+ "like": "",
+ "liked": "",
+ "inviteToGuild": "הזמנה לגילדה",
+ "inviteToParty": "הזמנה לחבורה",
+ "inviteEmailUsername": "הזמנה באמצעות כתובת דוא״ל או שם משתמש",
+ "inviteEmailUsernameInfo": "",
+ "emailOrUsernameInvite": "כתובת דוא״ל או שם משתמש",
+ "messageGuildLeader": "כתיבת הודעה למנהל הגילדה",
+ "donateGems": "",
+ "updateGuild": "עדכון הגילדה",
+ "viewMembers": "",
+ "memberCount": "",
+ "recentActivity": "פעילות אחרונה",
+ "myGuilds": "הגילדות שלי",
+ "guildsDiscovery": "לגלות גילדות",
"role": "Role",
- "guildLeader": "Guild Leader",
- "member": "Member",
- "guildSize": "Guild Size",
- "goldTier": "Gold Tier",
- "silverTier": "Silver Tier",
- "bronzeTier": "Bronze Tier",
- "privacySettings": "Privacy Settings",
- "onlyLeaderCreatesChallenges": "Only the Leader can create Challenges",
- "onlyLeaderCreatesChallengesDetail": "With this option selected, ordinary group members cannot create Challenges for the group.",
- "privateGuild": "Private Guild",
- "charactersRemaining": "<%= characters %> characters remaining",
- "guildSummary": "Summary",
- "guildSummaryPlaceholder": "Write a short description advertising your Guild to other Habiticans. What is the main purpose of your Guild and why should people join it? Try to include useful keywords in the summary so that Habiticans can easily find it when they search!",
+ "guildLeader": "מנהל הגילדה",
+ "member": "",
+ "guildSize": "גודל הגילדה",
+ "goldTier": "דרגת זהב",
+ "silverTier": "דרגת כסף",
+ "bronzeTier": "דרגת ארד",
+ "privacySettings": "הגדרות פרטיות",
+ "onlyLeaderCreatesChallenges": "",
+ "onlyLeaderCreatesChallengesDetail": "",
+ "privateGuild": "גילדה פרטית",
+ "charactersRemaining": "",
+ "guildSummary": "סיכום",
+ "guildSummaryPlaceholder": "",
"groupDescription": "Description",
- "guildDescriptionPlaceholder": "Use this section to go into more detail about everything that Guild members should know about your Guild. Useful tips, helpful links, and encouraging statements all go here!",
+ "guildDescriptionPlaceholder": "",
"markdownFormattingHelp": "[Markdown formatting help](http://habitica.fandom.com/wiki/Markdown_Cheat_Sheet)",
- "partyDescriptionPlaceholder": "This is our Party's description. It describes what we do in this Party. If you want to learn more about what we do in this Party, read the description. Party on.",
- "guildGemCostInfo": "A Gem cost promotes high quality Guilds and is transferred into your Guild's bank.",
- "noGuildsTitle": "You aren't a member of any Guilds.",
- "noGuildsParagraph1": "Guilds are social groups created by other players that can offer you support, accountability, and encouraging chat.",
- "noGuildsParagraph2": "Click the Discover tab to see recommended Guilds based on your interests, browse Habitica's public Guilds, or create your own Guild.",
- "noGuildsMatchFilters": "We couldn't find any matching Guilds.",
- "privateDescription": "A private Guild will not be displayed in Habitica's Guild directory. New members can be added by invitation only.",
- "removeInvite": "Remove Invitation",
- "removeMember": "Remove Member",
+ "partyDescriptionPlaceholder": "",
+ "guildGemCostInfo": "",
+ "noGuildsTitle": "",
+ "noGuildsParagraph1": "",
+ "noGuildsParagraph2": "",
+ "noGuildsMatchFilters": "לא נמצאו גילדות מתאימות.",
+ "privateDescription": "",
+ "removeInvite": "הסרת ההזמנה",
+ "removeMember": "",
"sendMessage": "Send Message",
- "promoteToLeader": "Transfer Ownership",
+ "promoteToLeader": "העברת הבעלות",
"inviteFriendsParty": "מזמינים חברים להצטרף לחבורה ומקבלים מגילת הרפתקה
נדירה למלחמה נגד רשימת המלטלות!",
- "createParty": "Create a Party",
- "inviteMembersNow": "Would you like to invite members now?",
- "playInPartyTitle": "Play Habitica in a Party!",
- "playInPartyDescription": "Take on amazing quests with friends or on your own. Battle monsters, create Challenges, and help yourself stay accountable through Parties.",
- "wantToJoinPartyTitle": "Want to join a Party?",
- "wantToJoinPartyDescription": "Give your username to a friend who already has a Party, or head to the
Party Wanted Guild to meet potential comrades!",
- "copy": "Copy",
+ "createParty": "יצירת חבורה",
+ "inviteMembersNow": "",
+ "playInPartyTitle": "",
+ "playInPartyDescription": "",
+ "wantToJoinPartyTitle": "רוצה להצטרף לחבורה?",
+ "wantToJoinPartyDescription": "",
+ "copy": "העתקה",
"inviteToPartyOrQuest": "Invite Party to Quest",
"inviteInformation": "Clicking \"Invite\" will send an invitation to your Party members. When all members have accepted or denied, the Quest begins.",
- "questOwnerRewards": "Quest Owner Rewards",
+ "questOwnerRewards": "",
"updateParty": "Update Party",
"upgrade": "Upgrade",
- "selectPartyMember": "Select a Party Member",
- "areYouSureDeleteMessage": "Are you sure you want to delete this message?",
- "reverseChat": "Reverse Chat",
- "invites": "Invites",
+ "selectPartyMember": "",
+ "areYouSureDeleteMessage": "",
+ "reverseChat": "",
+ "invites": "הזמנות",
"details": "Details",
- "participantDesc": "Once all members have either accepted or declined, the Quest begins. Only those who clicked 'accept' will be able to participate in the Quest and receive the rewards.",
- "groupGems": "Group Gems",
- "groupGemsDesc": "Guild Gems can be spent to make Challenges! In the future, you will be able to add more Guild Gems.",
- "groupTaskBoard": "Task Board",
- "groupInformation": "Group Information",
- "groupBilling": "Group Billing",
+ "participantDesc": "",
+ "groupGems": "יהלומים קבוצתיים",
+ "groupGemsDesc": "",
+ "groupTaskBoard": "",
+ "groupInformation": "מידע על הקבוצה",
+ "groupBilling": "",
"wouldYouParticipate": "Would you like to participate?",
- "managerAdded": "Manager added successfully",
- "managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed",
- "groupNoNotifications": "This Guild does not have notifications due to member size. Be sure to check back often for replies to your messages!",
- "whatIsWorldBoss": "What is a World Boss?",
- "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
- "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
- "worldBossBullet1": "Complete tasks to damage the World Boss",
- "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
- "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
- "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks",
- "worldBoss": "World Boss",
- "groupPlanTitle": "Need more for your crew?",
- "groupPlanDesc": "Managing a small team or organizing household chores? Our group plans grant you exclusive access to a private task board and chat area dedicated to you and your group members!",
- "billedMonthly": "*billed as a monthly subscription",
- "teamBasedTasksList": "Team-Based Task List",
- "teamBasedTasksListDesc": "Set up an easily-viewed shared task list for the group. Assign tasks to your fellow group members, or let them claim their own tasks to make it clear what everyone is working on!",
- "groupManagementControls": "Group Management Controls",
- "groupManagementControlsDesc": "Use task approvals to verify that a task that was really completed, add Group Managers to share responsibilities, and enjoy a private group chat for all team members.",
- "inGameBenefits": "In-Game Benefits",
- "inGameBenefitsDesc": "Group members get an exclusive Jackalope Mount, as well as full subscription benefits, including special monthly equipment sets and the ability to buy gems with gold.",
- "inspireYourParty": "Inspire your party, gamify life together.",
- "letsMakeAccount": "First, let’s make you an account",
- "nameYourGroup": "Next, Name Your Group",
- "exampleGroupName": "Example: Avengers Academy",
- "exampleGroupDesc": "For those selected to join the training academy for The Avengers Superhero Initiative",
- "thisGroupInviteOnly": "This group is invitation only.",
- "gettingStarted": "Getting Started",
- "congratsOnGroupPlan": "Congratulations on creating your new Group! Here are a few answers to some of the more commonly asked questions.",
- "whatsIncludedGroup": "What's included in the subscription",
- "whatsIncludedGroupDesc": "All members of the Group receive full subscription benefits, including the monthly subscriber items, the ability to buy Gems with Gold, and the Royal Purple Jackalope mount, which is exclusive to users with a Group Plan membership.",
- "howDoesBillingWork": "How does billing work?",
- "howDoesBillingWorkDesc": "Group Leaders are billed based on group member count on a monthly basis. This charge includes the $9 (USD) price for the Group Leader subscription, plus $3 USD for each additional group member. For example: A group of four users will cost $18 USD/month, as the group consists of 1 Group Leader + 3 group members.",
- "howToAssignTask": "How do you assign a Task?",
- "howToAssignTaskDesc": "Assign any Task to one or more Group members (including the Group Leader or Managers themselves) by entering their usernames in the \"Assign To\" field within the Create Task modal. You can also decide to assign a Task after creating it, by editing the Task and adding the user in the \"Assign To\" field!",
- "howToRequireApproval": "How do you mark a Task as requiring approval?",
- "howToRequireApprovalDesc": "Toggle the \"Requires Approval\" setting to mark a specific task as requiring Group Leader or Manager confirmation. The user who checked off the task won't get their rewards for completing it until it has been approved.",
- "howToRequireApprovalDesc2": "Group Leaders and Managers can approve completed Tasks directly from the Task Board or from the Notifications panel.",
- "whatIsGroupManager": "What is a Group Manager?",
- "whatIsGroupManagerDesc": "A Group Manager is a user role that do not have access to the group's billing details, but can create, assign, and approve shared Tasks for the Group's members. Promote Group Managers from the Group’s member list.",
- "goToTaskBoard": "Go to Task Board",
+ "managerAdded": "",
+ "managerRemoved": "",
+ "leaderChanged": "",
+ "groupNoNotifications": "",
+ "whatIsWorldBoss": "",
+ "worldBossDesc": "",
+ "worldBossLink": "",
+ "worldBossBullet1": "",
+ "worldBossBullet2": "",
+ "worldBossBullet3": "",
+ "worldBossBullet4": "",
+ "worldBoss": "",
+ "groupPlanTitle": "",
+ "groupPlanDesc": "",
+ "billedMonthly": "",
+ "teamBasedTasksList": "",
+ "teamBasedTasksListDesc": "",
+ "groupManagementControls": "",
+ "groupManagementControlsDesc": "",
+ "inGameBenefits": "",
+ "inGameBenefitsDesc": "",
+ "inspireYourParty": "לתת השראה לחבורה שלך, ולשחק אותה יחד בחיים האמיתיים.",
+ "letsMakeAccount": "קודם כול, בואו ניצור לך חשבון",
+ "nameYourGroup": "לאחר מכן, יש לתת לקבוצה שלך שם",
+ "exampleGroupName": "למשל: אקדמיית הנוקמים",
+ "exampleGroupDesc": "",
+ "thisGroupInviteOnly": "",
+ "gettingStarted": "תחילת השימוש",
+ "congratsOnGroupPlan": "",
+ "whatsIncludedGroup": "מה כלול במינוי",
+ "whatsIncludedGroupDesc": "",
+ "howDoesBillingWork": "",
+ "howDoesBillingWorkDesc": "",
+ "howToAssignTask": "",
+ "howToAssignTaskDesc": "",
+ "howToRequireApproval": "",
+ "howToRequireApprovalDesc": "",
+ "howToRequireApprovalDesc2": "",
+ "whatIsGroupManager": "",
+ "whatIsGroupManagerDesc": "",
+ "goToTaskBoard": "",
"sharedCompletion": "Shared Completion",
- "recurringCompletion": "None - Group task does not complete",
- "singleCompletion": "Single - Completes when any assigned user finishes",
- "allAssignedCompletion": "All - Completes when all assigned users finish",
+ "recurringCompletion": "",
+ "singleCompletion": "",
+ "allAssignedCompletion": "",
"pmReported": "תודה רבה על שדיווחת על הודעה זו.",
"joinGuild": "הצטרפות לגילדה",
"editGuild": "עריכת הגילדה",
diff --git a/website/common/locales/he/limited.json b/website/common/locales/he/limited.json
index 43980983fa..ab0da364ad 100644
--- a/website/common/locales/he/limited.json
+++ b/website/common/locales/he/limited.json
@@ -4,36 +4,36 @@
"alarmingFriends": "חברים מפחידים",
"alarmingFriendsText": "Got spooked <%= count %> times by party members.",
"agriculturalFriends": "חברים חקלאיים",
- "agriculturalFriendsText": "Got transformed into a flower <%= count %> times by party members.",
+ "agriculturalFriendsText": "",
"aquaticFriends": "חברים ימיים",
- "aquaticFriendsText": "Got splashed <%= count %> times by party members.",
+ "aquaticFriendsText": "",
"valentineCard": "כרטיס יום האהבה",
"valentineCardExplanation": "על עמידתכם בשיר כל כך מתקתק, שניכם מקבלים תג של ״חברים מעריצים״!",
- "valentineCardNotes": "שלח כרטיס יום אהבה לשחקנים בחבורה.",
+ "valentineCardNotes": "שליחת כרטיס יום אהבה לאחד השחקנים בחבורה.",
"valentine0": "\"הוורדים אדומים\n\nמטלות הן כחולות\n\nנפלא שאנחנו מסיימים\n\nבחבורתך משימות!\"",
"valentine1": "\"הוורדים אדומים\n\nהסיגליות נחמדות\n\nבואו ביחד\n\nונילחם בָּעצלנות!\"",
"valentine2": "\"הוורדים אדומים\n\nוהסגנון כבר צהבהב\n\nמקווה שאהבת\n\nהשיר עולה עשרה מטבעות זהב.\"",
"valentine3": "\"הוורדים אדומים\n\nנטיפי הקרח כחולים\n\nאף אוצר לא טוב יותר\n\nמבילוי עם אהובים!\"",
"valentineCardAchievementTitle": "חברים מעריצים",
- "valentineCardAchievementText": "Aww, you and your friend must really care about each other! Sent or received <%= count %> Valentine's Day cards.",
+ "valentineCardAchievementText": "",
"polarBear": "דוב קוטב",
"turkey": "תרנגול הודו",
"gildedTurkey": "תרנגול הודו מוזהב",
"polarBearPup": "דובון קוטב",
- "jackolantern": "ג'ק-או-לנטרן",
- "ghostJackolantern": "Ghost Jack-O-Lantern",
- "glowJackolantern": "Glow-in-the-Dark Jack-O-Lantern",
+ "jackolantern": "",
+ "ghostJackolantern": "",
+ "glowJackolantern": "",
"seasonalShop": "חנות עונתית",
- "seasonalShopClosedTitle": "<%= linkStart %>לסלי<%= linkEnd %>",
+ "seasonalShopClosedTitle": "<%= linkStart %>לֶסְלי<%= linkEnd %>",
"seasonalShopTitle": "<%= linkStart %>מכשפה עונתית<%= linkEnd %>",
- "seasonalShopClosedText": "The Seasonal Shop is currently closed!! It’s only open during Habitica’s four Grand Galas.",
- "seasonalShopSummerText": "Happy Summer Splash!! Would you like to buy some rare items? They’ll only be available until July 31st!",
- "seasonalShopFallText": "Happy Fall Festival!! Would you like to buy some rare items? They’ll only be available until October 31st!",
- "seasonalShopWinterText": "Happy Winter Wonderland!! Would you like to buy some rare items? They’ll only be available until January 31st!",
- "seasonalShopSpringText": "Happy Spring Fling!! Would you like to buy some rare items? They’ll only be available until April 30th!",
- "seasonalShopFallTextBroken": "אה.... ברוכים הבאים לחנות העונתית... אנחנו אוגרים מהדורה עונתית סתווית של טובין, או משהו... כל מה שפה יהיה מוצע למכירה במהלך אירוע פסטיבל השלכת בכל שנה, אבל אנחנו פתוחים רק עד ה 31 באוקטובר... אני מתאר לעצמי שכדאי שתאגרו עכשיו, או שתאלצו להמתין... ולהמתין... ולהמתין...
*הםםם*",
- "seasonalShopBrokenText": "My pavilion!!!!!!! My decorations!!!! Oh, the Dysheartener's destroyed everything :( Please help defeat it in the Tavern so I can rebuild!",
- "seasonalShopRebirth": "If you bought any of this equipment in the past but don't currently own it, you can repurchase it in the Rewards Column. Initially, you'll only be able to purchase the items for your current class (Warrior by default), but fear not, the other class-specific items will become available if you switch to that class.",
+ "seasonalShopClosedText": "",
+ "seasonalShopSummerText": "",
+ "seasonalShopFallText": "",
+ "seasonalShopWinterText": "",
+ "seasonalShopSpringText": "",
+ "seasonalShopFallTextBroken": "",
+ "seasonalShopBrokenText": "",
+ "seasonalShopRebirth": "",
"candycaneSet": "סוכרייה על מקל הליכה (מכשף)",
"skiSet": "מתנקש-סקי (נוכל)",
"snowflakeSet": "פתית שלג (מרפא)",
@@ -41,31 +41,31 @@
"northMageSet": "מכשף הצפון (מכשף)",
"icicleDrakeSet": "נטיף קירחי (נוכל)",
"soothingSkaterSet": "מחליק מרגיע (מרפא)",
- "gingerbreadSet": "לוחם עוגיות זנגוויל (לוחם)",
- "snowDaySet": "Snow Day Warrior (Warrior)",
- "snowboardingSet": "Snowboarding Sorcerer (Mage)",
- "festiveFairySet": "Festive Fairy (Healer)",
- "cocoaSet": "Cocoa Rogue (Rogue)",
+ "gingerbreadSet": "",
+ "snowDaySet": "",
+ "snowboardingSet": "",
+ "festiveFairySet": "",
+ "cocoaSet": "",
"toAndFromCard": "אל: <%= toName %>, מאת: <%= fromName %>",
"nyeCard": "כרטיס לשנה החדשה",
"nyeCardExplanation": "על חגיגות השנה החדשה יחד, שניכם מקבלים את תג ״המכרים הוותיקים״!",
"nyeCardNotes": "שליחת כרטיס שנה טובה לחברי חבורה.",
"seasonalItems": "פריטים עונתיים",
- "nyeCardAchievementTitle": "מכרים וותיקים",
- "nyeCardAchievementText": "Happy New Year! Sent or received <%= count %> New Year's cards.",
- "nye0": "שנה טובה! שתחסלו הרבה הרגלים רעים.",
- "nye1": "שנה טובה! שתקטפו הרבה הצלחות.",
- "nye2": "שנה טובה! שתרוויחו הרבה ״יום מושלם״.",
- "nye3": "שנה טובה! שרשימת המשימות שלכם תהיה קצרה ומתוקה.",
- "nye4": "שנה טובה! שלא תותקפו על ידי היפוגריפון זועם.",
+ "nyeCardAchievementTitle": "מכרים ותיקים",
+ "nyeCardAchievementText": "",
+ "nye0": "שנה טובה! מי ייתן ותחסלו הרבה הרגלים רעים.",
+ "nye1": "שנה טובה! מי ייתן ויהיו לך הרבה פרסים חדשים.",
+ "nye2": "שנה טובה! מי ייתן ותרוויחו הרבה ״יום מושלם״.",
+ "nye3": "שנה טובה! מי ייתן ורשימת המשימות שלך תהיה קצרה ומתוקה.",
+ "nye4": "שנה טובה! מי ייתן ולא תותקפו על ידי היפוגריפון זועם.",
"mightyBunnySet": "ארנב כוחני (לוחם)",
"magicMouseSet": "עכבר קסום (מכשף)",
- "lovingPupSet": "כלבון אוהב (מרפא)",
+ "lovingPupSet": "כלבלב אוהב (מרפא)",
"stealthyKittySet": "חתלתולה חמקמקה (נוכל)",
"daringSwashbucklerSet": "הרפתקן מעז (לוחם)",
"emeraldMermageSet": "אשף-ים ברקת (מכשף)",
"reefSeahealerSet": "שונית מרפאת-ים (מרפא)",
- "roguishPirateSet": "פיראט נכלולי (נוכל)",
+ "roguishPirateSet": "שודד־ים נכלולי (נוכל)",
"monsterOfScienceSet": "מפלצת מדע (לוחם)",
"witchyWizardSet": "אשף קוסם (מכשף)",
"mummyMedicSet": "מומיה רופאה (מרפא)",
@@ -78,34 +78,34 @@
"shipSoothsayerSet": "מגיד עתידות בספינה (מכשף)",
"strappingSailorSet": "ימאי חסון (מרפא)",
"reefRenegadeSet": "עריק שונית (נוכל)",
- "scarecrowWarriorSet": "לוחם דחליל (לוחם)",
- "stitchWitchSet": "Stitch Witch (Mage)",
+ "scarecrowWarriorSet": "דחליל (לוחם)",
+ "stitchWitchSet": "",
"potionerSet": "רוקח שיקויים (מרפא)",
- "battleRogueSet": "Bat-tle Rogue (Rogue)",
- "springingBunnySet": "Springing Bunny (Healer)",
- "grandMalkinSet": "Grand Malkin (Mage)",
- "cleverDogSet": "Clever Dog (Rogue)",
- "braveMouseSet": "Brave Mouse (Warrior)",
+ "battleRogueSet": "קרב־רב (נוכל)",
+ "springingBunnySet": "",
+ "grandMalkinSet": "",
+ "cleverDogSet": "",
+ "braveMouseSet": "",
"summer2016SharkWarriorSet": "Shark Warrior (Warrior)",
"summer2016DolphinMageSet": "Dolphin Mage (Mage)",
"summer2016SeahorseHealerSet": "Seahorse Healer (Healer)",
"summer2016EelSet": "Eel Rogue (Rogue)",
- "fall2016SwampThingSet": "Swamp Thing (Warrior)",
- "fall2016WickedSorcererSet": "Wicked Sorcerer (Mage)",
+ "fall2016SwampThingSet": "",
+ "fall2016WickedSorcererSet": "",
"fall2016GorgonHealerSet": "Gorgon Healer (Healer)",
"fall2016BlackWidowSet": "Black Widow Rogue (Rogue)",
- "winter2017IceHockeySet": "Ice Hockey (Warrior)",
- "winter2017WinterWolfSet": "Winter Wolf (Mage)",
+ "winter2017IceHockeySet": "",
+ "winter2017WinterWolfSet": "",
"winter2017SugarPlumSet": "Sugar Plum Healer (Healer)",
"winter2017FrostyRogueSet": "Frosty Rogue (Rogue)",
"spring2017FelineWarriorSet": "Feline Warrior (Warrior)",
- "spring2017CanineConjurorSet": "Canine Conjuror (Mage)",
- "spring2017FloralMouseSet": "Floral Mouse (Healer)",
- "spring2017SneakyBunnySet": "Sneaky Bunny (Rogue)",
+ "spring2017CanineConjurorSet": "",
+ "spring2017FloralMouseSet": "",
+ "spring2017SneakyBunnySet": "",
"summer2017SandcastleWarriorSet": "Sandcastle Warrior (Warrior)",
"summer2017WhirlpoolMageSet": "Whirlpool Mage (Mage)",
- "summer2017SeashellSeahealerSet": "Seashell Seahealer (Healer)",
- "summer2017SeaDragonSet": "Sea Dragon (Rogue)",
+ "summer2017SeashellSeahealerSet": "",
+ "summer2017SeaDragonSet": "",
"fall2017HabitoweenSet": "Habitoween Warrior (Warrior)",
"fall2017MasqueradeSet": "Masquerade Mage (Mage)",
"fall2017HauntedHouseSet": "Haunted House Healer (Healer)",
@@ -120,17 +120,17 @@
"spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
- "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
- "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
- "fall2018MinotaurWarriorSet": "Minotaur (Warrior)",
- "fall2018CandymancerMageSet": "Candymancer (Mage)",
- "fall2018CarnivorousPlantSet": "Carnivorous Plant (Healer)",
- "fall2018AlterEgoSet": "Alter Ego (Rogue)",
- "winter2019BlizzardSet": "Blizzard (Warrior)",
- "winter2019PyrotechnicSet": "Pyrotechnic (Mage)",
- "winter2019WinterStarSet": "Winter Star (Healer)",
- "winter2019PoinsettiaSet": "Poinsettia (Rogue)",
- "eventAvailability": "Available for purchase until <%= date(locale) %>.",
+ "summer2018MerfolkMonarchSet": "",
+ "summer2018FisherRogueSet": "",
+ "fall2018MinotaurWarriorSet": "",
+ "fall2018CandymancerMageSet": "",
+ "fall2018CarnivorousPlantSet": "",
+ "fall2018AlterEgoSet": "",
+ "winter2019BlizzardSet": "",
+ "winter2019PyrotechnicSet": "",
+ "winter2019WinterStarSet": "",
+ "winter2019PoinsettiaSet": "",
+ "eventAvailability": "ניתן לרכישה עד <%= date(locale) %>.",
"dateEndMarch": "April 30",
"dateEndApril": "April 19",
"dateEndMay": "May 31",
@@ -144,8 +144,8 @@
"dateEndFebruary": "February 28",
"winterPromoGiftHeader": "GIFT A SUBSCRIPTION AND GET ONE FREE!",
"winterPromoGiftDetails1": "Until January 15th only, when you gift somebody a subscription, you get the same subscription for yourself for free!",
- "winterPromoGiftDetails2": "Please note that if you or your gift recipient already have a recurring subscription, the gifted subscription will only start after that subscription is cancelled or has expired. Thanks so much for your support! <3",
- "discountBundle": "bundle",
- "g1g1Announcement": "
Gift a subscription and get a subscription free event going on now!",
+ "winterPromoGiftDetails2": "",
+ "discountBundle": "",
+ "g1g1Announcement": "",
"g1g1Details": "Gift a sub to a friend from their profile and you’ll receive the same sub for free!"
}
diff --git a/website/common/locales/he/loginincentives.json b/website/common/locales/he/loginincentives.json
index dc4e403ca7..f71b8e0355 100644
--- a/website/common/locales/he/loginincentives.json
+++ b/website/common/locales/he/loginincentives.json
@@ -1,12 +1,12 @@
{
"unlockedReward": "קיבלת <%= reward %>",
"earnedRewardForDevotion": "זכית ב<%= reward %> עבור המחוייבות שלך לשפר את חייך.",
- "nextRewardUnlocksIn": "",
+ "nextRewardUnlocksIn": "כניסות שנותרו עד הפרס הבא שלך: <%= numberOfCheckinsLeft %>",
"awesome": "אחלה!",
"countLeft": "Check-ins until next reward: <%= count %>",
- "incentivesDescription": "",
- "checkinEarned": "",
- "unlockedCheckInReward": "",
+ "incentivesDescription": "כשזה מגיע לבניית הרגלים, עקביות היא המפתח. רצף של כניסה יומיומית יעניק לך פרס.",
+ "checkinEarned": "מספר הכניסות היומיומיות שלך עולה ועולה!",
+ "unlockedCheckInReward": "שחררת פרס של כניסה יומיומית!",
"checkinProgressTitle": "",
"incentiveBackgroundsUnlockedWithCheckins": "",
"oneOfAllPetEggs": "",
@@ -19,7 +19,7 @@
"threeSaddles": "שלושה אוכפים",
"incentiveAchievement": "",
"royallyLoyal": "",
- "royallyLoyalText": "",
- "checkInRewards": "",
- "backloggedCheckInRewards": ""
+ "royallyLoyalText": "המשתמש הזה נכנס לאתר יותר מ־500 ברצף, וקיבל את כל פרסי הכניסה היומיומית!",
+ "checkInRewards": "פרסי הכניסה היומיומית",
+ "backloggedCheckInRewards": "קיבלת פרסים של כניסה יומיומית! אפשר לבדוק את המלאי ואת הציוד שלך כדי לראות מה חדש."
}
diff --git a/website/common/locales/he/messages.json b/website/common/locales/he/messages.json
index a678e44fd7..df2b98c1cc 100644
--- a/website/common/locales/he/messages.json
+++ b/website/common/locales/he/messages.json
@@ -21,7 +21,7 @@
"messageTwoHandedUnequip": "אחיזה ב<%= twoHandedText %> דורשת שתי ידיים, ולכן הורדתם את הציוד הזה כשהתחמשתם ב<%= offHandedText %>.",
"messageDropFood": "מצאת <%= dropText %>!",
"messageDropEgg": "מצאת ביצת <%= dropText %>!",
- "messageDropPotion": "You've found a <%= dropText %> Hatching Potion!",
+ "messageDropPotion": "מצאת שיקוי הבקעת <%= dropText %>!",
"messageDropMysteryItem": "אתם פותחים קופסה ומוצאים <%= dropText %>!",
"messageAlreadyOwnGear": "כבר יש לך את הפריט הזה. אפשר להצטייד בו מדף הציוד.",
"previousGearNotOwned": "",
diff --git a/website/common/locales/he/npc.json b/website/common/locales/he/npc.json
index 6587db9eb8..2bb98d7e51 100644
--- a/website/common/locales/he/npc.json
+++ b/website/common/locales/he/npc.json
@@ -1,112 +1,112 @@
{
- "npc": "דב\"ש",
+ "npc": "דמות לא־אנושית",
"npcAchievementName": "<%= key %> NPC",
"npcAchievementText": "תמכו בפרויקט הקיקסארטר ברמה המקסימלית!",
"welcomeTo": "ברוך בואך אל",
"welcomeBack": "ברוך שובך!",
"justin": "ג׳סטין",
- "justinIntroMessage1": "Hello there! You must be new here. My name is
Justin, and I'll be your guide in Habitica.",
- "justinIntroMessage3": "Great! Now, what are you interested in working on throughout this journey?",
- "justinIntroMessageUsername": "Before we begin, let’s figure out what to call you. Below you’ll find a display name and username I’ve generated for you. After you’ve picked a display name and username, we’ll get started by creating an avatar!",
- "justinIntroMessageAppearance": "So how would you like to look? Don’t worry, you can change this later.",
- "introTour": "Here we are! I've filled out some Tasks for you based on your interests, so you can get started right away. Click a Task to edit or add new Tasks to fit your routine!",
- "prev": "Prev",
- "next": "Next",
- "randomize": "Randomize",
+ "justinIntroMessage1": "שלום לך! זאת בטח הפעם הראשונה שלך כאן. קוראים לי
ג׳סטין ואני אהיה המדריך שלך בהביטיקה.",
+ "justinIntroMessage3": "יופי! ועכשיו, על מה היית רוצה לעבוד במהלך המסע שלך?",
+ "justinIntroMessageUsername": "לפני שנתחיל, בואו נחליט על שם. למטה מופיעים שם תצוגה ושם משתמש שיצרתי בשבילך. לאחר שבחרת את שם התצוגה ואת שם המשתמש, יהיה אפשר להתחיל וליצור לך דמות!",
+ "justinIntroMessageAppearance": "עדיין לא נסגרת על הלוק? לא נורא, אפשר לשנות אותו אחר־כך.",
+ "introTour": "",
+ "prev": "",
+ "next": "קדימה",
+ "randomize": "",
"mattBoch": "מאט בוך",
"mattBochText1": "ברוך בואך לאורווה! אני מַאט, אדון החיות. בכל השלמת משימה, יש סיכוי אקראי לקבלת ביצה או שיקוי בקיעה שיעזור לחיות מחמד לבקוע מהביצים. כשחיית מחמד בוקעת מהביצה, היא מופיעה כאן! אפשר ללחוץ על התמונה של החיה כדי להוסיפה לתמונת הפרופיל שלך. אפשר להאכיל את חיות המחמד באוכל לחיות שאפשר למצוא, ואז הן יגדלו ויהיו חיות רכיבה חזקות.",
"welcomeToTavern": "ברוך בואך לפונדק!",
- "sleepDescription": "Need a break? Check into Daniel's Inn to pause some of Habitica's more difficult game mechanics:",
- "sleepBullet1": "Missed Dailies won't damage you",
+ "sleepDescription": "",
+ "sleepBullet1": "מטלות יומיומיות שפספסת לא יסבו לך נזק",
"sleepBullet2": "Tasks won't lose streaks or decay in color",
"sleepBullet3": "Bosses won't do damage for your missed Dailies",
- "sleepBullet4": "Your boss damage or collection Quest items will stay pending until check-out",
- "pauseDailies": "Pause Damage",
- "unpauseDailies": "Unpause Damage",
- "staffAndModerators": "Staff and Moderators",
- "communityGuidelinesIntro": "Habitica tries to create a welcoming environment for users of all ages and backgrounds, especially in public spaces like the Tavern. If you have any questions, please consult our
Community Guidelines.",
- "acceptCommunityGuidelines": "I agree to follow the Community Guidelines",
- "worldBossEvent": "World Boss Event",
- "worldBossDescription": "World Boss Description",
- "welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
- "howManyToSell": "How many would you like to sell?",
+ "sleepBullet4": "",
+ "pauseDailies": "השהיית הנזק",
+ "unpauseDailies": "ביטול השהיית הנזק",
+ "staffAndModerators": "צוות ומנהלים",
+ "communityGuidelinesIntro": "",
+ "acceptCommunityGuidelines": "אני מסכים/ה לעקוב אחר הנחיות הקהילה",
+ "worldBossEvent": "",
+ "worldBossDescription": "",
+ "welcomeMarketMobile": "",
+ "howManyToSell": "כמה ברצונך למכור?",
"yourBalance": "היתרה שלך:",
- "sell": "Sell",
- "buyNow": "Buy Now",
+ "sell": "מכירה",
+ "buyNow": "קנייה כעת",
"sortByNumber": "Number",
- "featuredItems": "Featured Items!",
- "hideLocked": "Hide locked",
- "hidePinned": "Hide pinned",
- "hideMissing": "Hide Missing",
- "amountExperience": "<%= amount %> Experience",
- "amountGold": "<%= amount %> Gold",
- "namedHatchingPotion": "<%= type %> Hatching Potion",
+ "featuredItems": "",
+ "hideLocked": "הסתרת הנעולים",
+ "hidePinned": "הסתרת המוצמדים",
+ "hideMissing": "הסתרת החסרים",
+ "amountExperience": "<%= amount %> ניסיון",
+ "amountGold": "<%= amount %> מטבעות זהב",
+ "namedHatchingPotion": "שיקוי הבקעה <%= type %>",
"buyGems": "קניית יהלומים",
"purchaseGems": "רכישת יהלומים",
"items": "פריטים",
"AZ": "א׳-ת׳",
"sort": "מיון",
"sortBy": "מיון לפי",
- "groupBy2": "Group By",
+ "groupBy2": "קיבוץ לפי",
"sortByName": "שם",
- "quantity": "Quantity",
+ "quantity": "",
"cost": "עלות",
"shops": "חנויות",
"custom": "בהתאמה אישית",
"wishlist": "רשימת משאלות",
- "wrongItemType": "The item type \"<%= type %>\" is not valid.",
- "wrongItemPath": "The item path \"<%= path %>\" is not valid.",
- "unpinnedItem": "You unpinned <%= item %>! It will no longer display in your Rewards column.",
+ "wrongItemType": "",
+ "wrongItemPath": "",
+ "unpinnedItem": "",
"cannotUnpinArmoirPotion": "The Health Potion and Enchanted Armoire cannot be unpinned.",
- "purchasedItem": "You bought <%= itemName %>",
- "ianTextMobile": "Can I interest you in some quest scrolls? Activate them to battle monsters with your Party!",
- "featuredQuests": "Featured Quests!",
+ "purchasedItem": "קנית <%= itemName %>",
+ "ianTextMobile": "",
+ "featuredQuests": "",
"cannotBuyItem": "אינכם יכולים לקנות פריט זה.",
"mustPurchaseToSet": "חייב לקנות <%= val %> כדי להגדיר את זה על <%= key %>.",
"typeRequired": "Type הוא הכרחי",
- "positiveAmountRequired": "Positive amount is required",
+ "positiveAmountRequired": "",
"notAccteptedType": "הסוג צריך להיות מתוך [eggs, hatchingPotions, premiumHatchingPotions, food, quests, gear]",
- "contentKeyNotFound": "מפתח לא נמצא עבור התוכן <%= type %>",
- "plusGem": "+<%= count %> Gem",
+ "contentKeyNotFound": "",
+ "plusGem": "",
"typeNotSellable": "הסוג אינו ניתן למכירה. חייב להיות אחד מהבאים: <%= acceptedTypes %>",
"userItemsKeyNotFound": "מפתח לא נמצא ברשותך",
- "userItemsNotEnough": "You do not have enough <%= type %>",
+ "userItemsNotEnough": "",
"pathRequired": "שורת הנתיב נדרשת",
"unlocked": "שוחררו פריטים",
"alreadyUnlocked": "סט מלא כבר נפתח.",
"alreadyUnlockedPart": "הסט המלא כבר נפתח חלקית. זול יותר לקנות את הפריטים הנותרים בנפרד.",
"invalidQuantity": "Quantity to purchase must be a number.",
"USD": "(דולר)",
- "newStuff": "New Stuff by Bailey",
- "newBaileyUpdate": "New Bailey Update!",
- "tellMeLater": "Tell Me Later",
+ "newStuff": "",
+ "newBaileyUpdate": "לביילי יש חדשות בשבילך!",
+ "tellMeLater": "ספרו לי אחר־כך",
"dismissAlert": "השתק התראה זו",
"donateText3": "הביטיקה הוא מיזם קוד פתוח שתלוי בתמיכת המשתמשים. הכסף שמשלמים על היהלומים עוזר לנו להשאיר את השרתים רצים, לשמר את הצוות הקטן שלנו, לפתח יכולות חדשות, ולספק תמריצים למתכנתים מתנדבים. תודה רבה על נדיבותך!",
"card": "כרטיס אשראי",
"paymentMethods": "רכשו באמצעות",
- "paymentSuccessful": "Your payment was successful!",
- "paymentYouReceived": "You received:",
+ "paymentSuccessful": "התשלום נעשה בהצלחה!",
+ "paymentYouReceived": "קיבלת:",
"paymentYouSentGems": "שלחת
<%- name %>:",
- "paymentYouSentSubscription": "You sent
<%- name %> a <%= months %>-months Habitica subscription.",
- "paymentSubBilling": "Your subscription will be billed
$<%= amount %> every
<%= months %> months.",
- "success": "Success!",
+ "paymentYouSentSubscription": "",
+ "paymentSubBilling": "",
+ "success": "הצלחה!",
"classGear": "ציוד מקצוע",
- "classGearText": "Congratulations on choosing a class! I've added your new basic weapon to your inventory. Take a look below to equip it!",
+ "classGearText": "",
"autoAllocate": "חלוקה אוטומטית",
- "spells": "Skills",
+ "spells": "יכולות",
"skillsTitle": "<%= classStr %> יכולות",
"toDo": "משימה",
"tourStatsPage": "זהו דף התכונות שלכם! הרוויחו הישגים על ידי השלמת המשימות מהרשימות.",
- "tourTavernPage": "Welcome to the Tavern, an all-ages chat room! You can keep your Dailies from hurting you in case of illness or travel by clicking \"Pause Damage\". Come say hi!",
+ "tourTavernPage": "",
"tourPartyPage": "החבורה שלכם תסייע לכם להישאר מחויבים. הזמינו חברים כדי לשחרר מגילת הרפתקה!",
- "tourGuildsPage": "Guilds are common-interest chat groups created by the players, for the players. Browse through the list and join the Guilds that interest you. Be sure to check out the popular Habitica Help: Ask a Question guild, where anyone can ask questions about Habitica!",
+ "tourGuildsPage": "",
"tourChallengesPage": "אתגרים הם רשימות של משימות לפי נושאים, שנוצרים על-ידי משתמשים! הצטרפות לאתגר תוסיף את המשימות שלו לחשבון שלכם. התחרו במשתמשים אחרים כדי לזכות בפרסים של אבני חן!",
"tourMarketPage": "בכל פעם בה משלימים משימה, יש סיכוי לקבלת ביצה, שיקוי בקיעה, או חתיכת מזון לחיות המחמד באקראי. אפשר גם לקנות פריטים אלו כאן.",
"tourHallPage": "ברוך בואך להיכל התהילה, המקום שבו עושים כבוד לתורמי הקוד הפתוח להביטיקה. אם בקוד, עיצוב, מוזיקה, כתיבה או אפילו \"רק\" הצעת עזרה, הם זכו ביהלומים, ציוד ייחודי, ותארים נחשבים. גם באפשרותך לתרום להביטיקה!",
"tourPetsPage": "This is the Stable! After reaching level 3, you will gather pet eggs and hatching potions as you complete tasks. When you hatch a pet in the Market, it will appear here! Click a pet's image to add it to your avatar. Feed them with the food you find after level 3, and they'll grow into powerful mounts.",
- "tourMountsPage": "Once you've fed a pet enough food to turn it into a mount, it will appear here. Click a mount to saddle up!",
- "tourEquipmentPage": "This is where your Equipment is stored! Your Battle Gear affects your Stats. If you want to show different Equipment on your avatar without changing your Stats, click \"Enable Costume.\"",
- "equipmentAlreadyOwned": "כבר יש לך את פריט הציוד הזה.",
+ "tourMountsPage": "",
+ "tourEquipmentPage": "",
+ "equipmentAlreadyOwned": "פריט הציוד הזה כבר בבעלותך",
"tourOkay": "אוקיי!",
"tourAwesome": "מדהים!",
"tourSplendid": "נפלא!",
diff --git a/website/common/locales/he/overview.json b/website/common/locales/he/overview.json
index 436c5b1e9f..b2b2e0a292 100644
--- a/website/common/locales/he/overview.json
+++ b/website/common/locales/he/overview.json
@@ -1,10 +1,10 @@
{
"needTips": "Need some tips on how to begin? Here's a straightforward guide!",
"step1": "Step 1: Enter Tasks",
- "webStep1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them! All tasks can be added by clicking the green \"Create\" button.\n* **Set up [To-Dos](http://habitica.fandom.com/wiki/To-Dos):** Enter tasks you do once or rarely in the To-Dos column, one at a time. You can click on the tasks to edit them and add checklists, due dates, and more!\n* **Set up [Dailies](http://habitica.fandom.com/wiki/Dailies):** Enter activities you need to do daily or on a particular day of the week, month, or year in the Dailies column. Click task to edit when it will be due and/or set a start date. You can also make it due on a repeating basis, for example, every 3 days.\n* **Set up [Habits](http://habitica.fandom.com/wiki/Habits):** Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit :heavy_plus_sign: or a bad habit :heavy_minus_sign:\n* **Set up [Rewards](http://habitica.fandom.com/wiki/Rewards):** In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!\n* If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.fandom.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.fandom.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.fandom.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.fandom.com/wiki/Sample_Custom_Rewards).",
+ "webStep1Text": "",
"step2": "Step 2: Gain Points by Doing Things in Real Life",
"webStep2Text": "Now, start tackling your goals from the list! As you complete tasks and check them off in Habitica, you will gain [Experience](http://habitica.fandom.com/wiki/Experience_Points), which helps you level up, and [Gold](http://habitica.fandom.com/wiki/Gold_Points), which allows you to purchase Rewards. If you fall into bad habits or miss your Dailies, you will lose [Health](http://habitica.fandom.com/wiki/Health_Points). In that way, the Habitica Experience and Health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.",
"step3": "שלב 3: התאמה אישית וסיור בהביטיקה",
- "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with [tags](http://habitica.fandom.com/wiki/Tags) (edit a task to add them).\n * Customize your [avatar](http://habitica.fandom.com/wiki/Avatar) by clicking the user icon in the upper-right corner.\n * Buy your [Equipment](http://habitica.fandom.com/wiki/Equipment) under Rewards or from the [Shops](<%= shopUrl %>), and change it under [Inventory > Equipment](<%= equipUrl %>).\n * Connect with other users via the [Tavern](http://habitica.fandom.com/wiki/Tavern).\n * Starting at Level 3, hatch [Pets](http://habitica.fandom.com/wiki/Pets) by collecting [eggs](http://habitica.fandom.com/wiki/Eggs) and [hatching potions](http://habitica.fandom.com/wiki/Hatching_Potions). [Feed](http://habitica.fandom.com/wiki/Food) them to create [Mounts](http://habitica.fandom.com/wiki/Mounts).\n * At level 10: Choose a particular [class](http://habitica.fandom.com/wiki/Class_System) and then use class-specific [skills](http://habitica.fandom.com/wiki/Skills) (levels 11 to 14).\n * Form a party with your friends (by clicking [Party](<%= partyUrl %>) in the navigation bar) to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [quests](http://habitica.fandom.com/wiki/Quests) (you will be given a quest at level 15).",
- "overviewQuestions": "Have questions? Check out the [FAQ](<%= faqUrl %>)! If your question isn't mentioned there, you can ask for further help in the [Habitica Help guild](<%= helpGuildUrl %>).\n\nGood luck with your tasks!"
+ "webStep3Text": "",
+ "overviewQuestions": ""
}
diff --git a/website/common/locales/he/quests.json b/website/common/locales/he/quests.json
index c3f6d11a73..1e9849beee 100644
--- a/website/common/locales/he/quests.json
+++ b/website/common/locales/he/quests.json
@@ -62,7 +62,7 @@
"onlyLeaderCancelQuest": "רק מנהיג החבורה או מוביל ההרפתקה יכולים לבטל את ההרפתקה.",
"questNotPending": "אין הרפתקאות זמינות.",
"questOrGroupLeaderOnlyStartQuest": "רק מוביל ההרפתקה או מנהיג החבורה יכולים להכריח את התחלת ההרפתקה",
- "loginIncentiveQuest": "כדי להפוך את ההרפתקה הזו לזמינה, עליך להתחבר להאביטיקה ב-<%= count %> ימים שונים!",
+ "loginIncentiveQuest": "כדי לשחרר את ההרפתקה הזאת, יש להיכנס להביטיקה <%= count %> ימים ברצף!",
"loginReward": "<%= count %> כניסות",
"questBundles": "אגד הרפתקאות בהנחה",
"noQuestToStart": "נסו לבקר את
\">חנות ההרפתקאות בשביל תכנים חדשים!",
@@ -82,7 +82,7 @@
"chatFindItems": "<%= username %> מצא <%= items %>.",
"tavernBossTired": "<%= bossName %> מנסה לשחרר את <%= rageName %> אבל הוא עייף מדי.",
"questOwner": "בעל ההרפתקה",
- "backToSelection": "בחזרה לבחירת הרפתקה",
+ "backToSelection": "חזרה לבחירת הרפתקה",
"noQuestToStartTitle": "לא מצאת הרפתקה להתחיל?",
"chatBossDefeated": "הבסתם את <%= bossName %>! החברים לקבוצה שהשתתפו בהרפתקה מקבלים את שלל הניצחון.",
"chatQuestCancelled": "<%= username %> ביטל את ההרפתקה <%= questName %>.",
diff --git a/website/common/locales/he/questscontent.json b/website/common/locales/he/questscontent.json
index 7e433640d6..245f30f53d 100644
--- a/website/common/locales/he/questscontent.json
+++ b/website/common/locales/he/questscontent.json
@@ -1,6 +1,6 @@
{
"questEvilSantaText": "סנטה הסוהר",
- "questEvilSantaNotes": "שאגה מיוסרת נשמעת הרחק בשדות הקרח. אתם עוקבים אחר הנהמות והשאגות - המלוות בקול צחקוק משונה - לקרחת יער בה נמצאת דובת קוטב בוגרת. היא כלואה ואזוקה, נלחמת על חייה. מעל הכלוב שלה מרקד שדון קטן ומרושע, לבוש בתחפושת חג מולד בלויה. חסל את סנטה הסוהר ושחרר את הדובה!
הערה: \"סנטה הסוהר\" מזכה בכל פעם בתג הרפתקה, אבל מעניק בהמת רכיבה נדירה שניתן להוסיף לאורווה שלך רק פעם אחת.",
+ "questEvilSantaNotes": "שאגה מיוסרת נשמעת הרחק בשדות הקרח. אתם עוקבים אחר הנהמות והשאגות - המלוות בקול צחקוק משונה - לקרחת יער בה נמצאת דובת קוטב בוגרת. היא כלואה ואזוקה, נלחמת על חייה. מעל הכלוב שלה מרקד שדון קטן ומרושע, לבוש בתחפושת חג מולד בלויה. יש לחסל את סנטה הסוהר ולשחרר את הדובה!
הערה: \"סנטה הסוהר\" מזכה בכל פעם בתג הרפתקה, אבל מעניק חיית רכיבה נדירה שניתן להוסיף לאורווה שלך רק פעם אחת.",
"questEvilSantaCompletion": "סנטה הסוהר צווח בכעס, ובורח לתוך הלילה. הדובה אסירת התודה, דרך נהמות ושאגות, מנסה לספר לך משהו. לאחר מסע לאורווה, אדון החיות - מאט בוך מקשיב לסיפורה ומזדעק באימה. יש לה גור! הוא רץ לשדות הקרח כשאמו נכלאה.",
"questEvilSantaBoss": "סנטה הסוהר",
"questEvilSantaDropBearCubPolarMount": "דוב קוטב (חיית רכיבה)",
@@ -12,7 +12,7 @@
"questEvilSanta2DropBearCubPolarPet": "דובון קוטב (חיית מחמד)",
"questGryphonText": "הגריפון הבוערת",
"questGryphonNotes": "אדון החיות הגדול,
בקונזאור, קורא לחבורה שלכם לעזרה. \"בבקשה, הרפתקנים, אתם חייבים לעזור לי! הגריפון המעולה שלי ברחה והתחילה לעשות שמות בהביטיקה! אם תוכלו לעצור אותה, אוכל לתת לכם כמה מהביצים שלה!\"",
- "questGryphonCompletion": "החיה העצומה חוזרת מובסת ומבוישת לאדון שלה. ״כה אחיה! כל הכבוד הרפתקנים!״
בקונזאור קורא, ״בבקשה, הנה כמה מהביצים של הגריפון. אני בטוח שתגדלו את הקטנים האלו היטב!״",
+ "questGryphonCompletion": "החיה העצומה חוזרת מובסת ומבוישת לאדונה. ״כה אחיה! כל הכבוד הרפתקנים!״
בקונזאור קורא, \"בבקשה, הינה כמה מהביצים של הגריפון. אני בטוח שתגדלו את הקטנים האלה היטב!\"",
"questGryphonBoss": "גריפון בוערת",
"questGryphonDropGryphonEgg": "גריפון (ביצה)",
"questGryphonUnlockText": "פותח אפשרות לקניית ביצי גריפון בשוק",
@@ -166,22 +166,22 @@
"questPenguinBoss": "פינגווין קרח",
"questPenguinDropPenguinEgg": "פינגווין (ביצה)",
"questPenguinUnlockText": "פותח אפשרות לקניית ביצי פינגווין בשוק",
- "questStressbeastText": "המפלחץ המתועבת של ערבות השארוגועים",
- "questStressbeastNotes": "השלימו מטלות יומיות ומשימות כדי לפגוע באויב העולמי! מטלות יומיות לא מושלמות ממלאות את מד מתקפת הלחץ. כאשר מד מתקפת הלחץ מלא, האויב העולמי יתקוף דב״ש. אויב עולמי לעולם לא יפגע בשחקנים בשום צורה. רק לחשבונות פעילים שלא נחים בפונדק יסוכמו המטלות שלא הושלמו.
~*~
הדבר הראשון שאנחנו שומעים הם את צעדיו הרועמים איטיים יותר ויותר ממנוסת הבהללה. אחד אחד, הביטיקנים מסתכלים מחוץ לדלתות שלהם, ומילים מכשילות אותם
כולנו ראינו את המפלחץ לפני כן, כמובן - יצורים מרושעים זעירים התוקפים בזמנים קשים. אבל זה? זה מתנשא גבוה יותר מהבניינים, עם טפרים שיכולים למחוץ דרקון בקלות. קרח מתנדנד מהפרווה המסריחה שלה, וכשהיא שואגת, פיצוץ קחוני קורע את הגגות מהבתים שלנו. מפלצת בסדר גודל כזה מעולם לא הוזכרה מחוץ לאגדה רחוקה.
\"היזהרו הביטיקנים!\" צועק חתול-ניב. \"חיסמו את עצמכם בתוך הבית - זוהי המפלחץ המתועבת בכבודה ובעצמה!\"
\"היא בטח נוצרה ממאות שנים של לחץ!\" קיוויבוט אומר, נועל את דלת הפונדק בחוזקה ומגיף את החלונות.
\"ערבות השארוגועים,\" למונס אומרת, בפנים עגומות. \"כל הזמן הזה, חשבנו שהם שלווים ורגועים, אבל הם בוודאי הסתירו את הלחץ שלהם אי שם. במהלך דורות, הם גדלו לתוך הדבר הזה, ועכשיו זה השתחרר ותקף אותם - ואותנו\"
יש רק דרך אחת לגרש מפלחץ - מתועבת או לא, וזה לתקוף אותה עם מטלות ומשימות מושלמות! בואו נתאחד כולנו ולהילחם באויב המפחיד הזה - אבל היו בטוחים שלא להתעצל במשימותיכם, או שהמטלות היומיות שלנו עשויות להכעיס את זה כל כך שהיא תשתלח...",
- "questStressbeastBoss": "המפלחץ המתועבת",
+ "questStressbeastText": "המפלחץ המתועב של ערבות השארוגועים",
+ "questStressbeastNotes": "השלימו מטלות יומיות ומשימות כדי לפגוע באויב העולמי! מטלות יומיות לא מושלמות ממלאות את מד מתקפת הלחץ. כאשר מד מתקפת הלחץ מלא, האויב העולמי יתקוף דמות לא־אנושית. אויב עולמי לעולם לא יפגע בשחקנים בשום צורה. רק לחשבונות פעילים שלא נחים בפונדק יסוכמו המטלות שלא הושלמו.
~*~
הדבר הראשון שאנחנו שומעים הם את צעדיו הרועמים איטיים יותר ויותר ממנוסת הבהלה. אחד אחד, הביטיקנים מסתכלים מחוץ לדלתות שלהם, ומילים מכשילות אותם
כולנו ראינו את המפלחץ לפני כן, כמובן - יצורים מרושעים זעירים התוקפים בזמנים קשים. אבל זה? זה מתנשא גבוה יותר מהבניינים, עם טפרים שיכולים למחוץ דרקון בקלות. קרח מתנדנד מהפרווה המסריחה שלה, וכשהיא שואגת, פיצוץ קחוני קורע את הגגות מהבתים שלנו. מפלצת בסדר גודל כזה מעולם לא הוזכרה מחוץ לאגדה רחוקה.
\"היזהרו הביטיקנים!\" צועק חתול-ניב. \"חיסמו את עצמכם בתוך הבית - זהו המפלחץ המתועב בכבודו ובעצמו!\"
\"הוא בטח נוצרה ממאות שנים של לחץ!\" קיוויבוט אומר, נועל את דלת הפונדק בחוזקה ומגיף את החלונות.
\"ערבות השארוגועים,\" למונס אומרת, בפנים עגומות. \"כל הזמן הזה, חשבנו שהם שלווים ורגועים, אבל הם בוודאי הסתירו את הלחץ שלהם אי שם. במהלך דורות, הם גדלו לתוך הדבר הזה, ועכשיו זה השתחרר ותקף אותם - ואותנו\"
יש רק דרך אחת לגרש מפלחץ - מתועב או לא, וזה לתקוף אותה עם מטלות ומשימות מושלמות! בואו נתאחד כולנו ולהילחם באויב המפחיד הזה - אבל היו בטוחים שלא להתעצל במשימותיכם, או שהמטלות היומיות שלנו עשויות להכעיס את זה כל כך שהיא תשתלח...",
+ "questStressbeastBoss": "המפלחץ המתועב",
"questStressbeastBossRageTitle": "מכת לחץ",
- "questStressbeastBossRageDescription": "כאשר מתמלא המד, המפלחץ המתועבת תשלח את מכת הלחץ שלה על הביטיקה!",
+ "questStressbeastBossRageDescription": "כאשר מתמלא המד, המפלחץ המתועב יטיח את מכת הלחץ שלו על הביטיקה!",
"questStressbeastDropMammothPet": "ממותה (חיית מחמד)",
"questStressbeastDropMammothMount": "ממותה (חיית רכיבה)",
- "questStressbeastBossRageStables": "`המפלחץ המתועבת משתמשת במכת לחץ!`\n\nפרץ המתח מרפא את המפלחץ המתועבת!\n\nהו לא! למרות מיטב מאמצינו, הנחנו לכמה מטלות יומיות לחמוק מאיתנו, צבען האדום הכהה הרגיז את המפלחץ המתועבת וגרמנו לחלק מבריאותה לחזור! היצור הנורא מזנק על האורוות, אבל מאט אדון החיות מזנק בגבורה לתוך הקלחת כדי להגן על חיות המחמד וחיות הרכיבה. המפלחץ תפסה את מאט באחיזתה המרשעת, אבל לפחות היא אינה מרוכזת כרגע. מהר! בואו נוודא שאנחנו מבצעים את המטלות היומיות שלנו ונביס את המפלצת הזאת לפני שהיא תוקפת שוב!",
- "questStressbeastBossRageBailey": "`המפלחץ המתועבת משתמשת במכת לחץ!`\n\nפרץ המתח מרפא את המפלחץ המתועבת!\n\nאהה!!! המטלות הלא מושלמות שלנו גרמו למפלחץ המתועבת להיות מטורפת מתמיד ולקבל חזרה חלק מבריאותה! ביילי, כרוז העיירה צעקה לאזרחים לסור למקום מבטחים, וכעת היא נתפסה ביד השנייה שלה! תראו אותה, מדווחת באומץ על החדשות בזמן שהמפלחץ מנופפת בה באכזריות... בואו נהיה ראויים לגבורתה על ידי כך שנהייה פרודוקטיביים כמו שאנחנו יכולים, כדי להציל את הדב״ש שלנו!",
- "questStressbeastBossRageGuide": "`המפלחץ המתועבת משתמשת במכת לחץ!`\n\nפרץ המתח מרפא את המפלחץ המתועבת!\n\nהיזהרו! ג'סטין המדריך מנסה להסיח את המפלחץעל ידי ריצה סביב הקרסוליים שלה, צועק עצות פרודוקטיביות! המפלחץ המתועבת דורכת בטירוף, אבל זה נראה כאילו אנחנו באמת מתישים את החיה. אני בספק אם יש לה מספיק אנרגיה לעוד מכה. אל תוותרו... אנחנו כל כך קרובים לחיסולה!",
- "questStressbeastDesperation": "`המפלחץ המתועבת מגיעה לבריאות 500K! המפלחץ המתועבת משתמשת בהגנה נואשת! `\n\nאנחנו כמעט שם, הביטיקנים! עם חריצות ומטלות יומיות, דירדרנו את בריאותה של המפלחץ ל 500K! היצור שואג ומנופף בייאוש, זעם הולך ומצטבר מהר יותר מאשר אי פעם. ביילי ומאט צועקים באימה כשהיא מתחילה לנופף אותם סביב בקצב מפחיד, מעלה סופת שלגים מסנוורת שמקשה לפגוע בה.\n\nנצטרך להכפיל את מאמצינו, אבל שימו לב - זהו סימן כי המפלחץ יודעת שהיא עומד להיות מובסת. אל תוותרו עכשיו!",
- "questStressbeastCompletion": "
המפלחץ הובסה!
עשינו זאת! בשאגתה הסופית, המפלחץ המתועבת מתפוגגת לתוך ענן שלג. הפתיתים יורדים ומנצנצים כשהביטיקנים מריעים אוחזים בחיות המחמד וחיות הרכיבה שלהם. בעלי החיים והדב״שים שלנו בטוחים שוב!
השארוגועים ניצלה!
חתול-ניב מדבר בעדינות לחתולוניב קטן. \"בבקשה מיצאו את אזרחי ערבות השארוגועים והביאו אותם אלינו\", הוא אומר. כמה שעות מאוחר יותר, חוזר חתולוניב, עם עדר של רוכבי ממותה מזדחל מאחוריו. אתם מזהים את הרוכבת בראש כליידי גלסיאט, מנהיגת השארוגועים.
\"הביטיקנים חזקים,\" היא אומרת, \"האזרחים שלי ואני חייבים לכם את התודה העמוקה ביותר, וההתנצלויות העמוקות ביותר. במאמץ להגן על ערבותינו ממהומה, התחלנו לגרש בסתר את כל הלחץ שלנו אל הרי הקרח. לא היה לנו מושג שזה יהפוך במשך דורות למפלחץ שראיתם! כשהשתחררה, היא לכדה את כולנו בהרים והמשיכה להשתולל נגד בעלי החיים האהובים שלנו.\" המבט העצוב שלה עקב אחר השלג הנופל. \"שמנו את כולם בסיכון עם הטיפשות שלנו. היו סמוכים ובטוחים כי בעתיד, אנחנו נבוא עם הבעיות שלנו אליכם לפני שהבעיות שלנו יבואו אליכם.\"
היא פונה למקום שבו בקונזאור מתכרבל עם כמה תינוקות הממותה. \"הבאנו לבעלי החיים שלכם מזון כדי להתנצל על הפחדתם, וכסמל של אמון, נשאיר כמה מחיות המחמד והממותות שלנו איתכם. אנחנו יודעים שתטפלו בהם היטב.\"",
- "questStressbeastCompletionChat": "`המפלחץ הובסה!`\n\nעשינו זאת! בשאגתה הסופית, המפלחץ המתועבת מתפוגגת לתוך ענן שלג. הפתיתים יורדים ומנצנצים כשהביטיקנים מריעים אוחזים בחיות המחמד וחיות הרכיבה שלהם. בעלי החיים והדב״שים שלנו בטוחים שוב!\n\n`השארוגועים ניצלה!`\n\nחתול-ניב מדבר בעדינות לחתולוניב קטן. \"בבקשה מיצאו את אזרחי ערבות השארוגועים והביאו אותם אלינו\", הוא אומר. כמה שעות מאוחר יותר, חוזר חתולוניב, עם עדר של רוכבי ממותה מזדחל מאחוריו. אתם מזהים את הרוכבת בראש כליידי גלסיאט, מנהיגת השארוגועים.\n\n\"הביטיקנים חזקים,\" היא אומרת, \"האזרחים שלי ואני חייבים לכם את התודה העמוקה ביותר, וההתנצלויות העמוקות ביותר. במאמץ להגן על ערבותינו ממהומה, התחלנו לגרש בסתר את כל הלחץ שלנו אל הרי הקרח. לא היה לנו מושג שזה יהפוך במשך דורות למפלחץ שראיתם! כשהשתחררה, היא לכדה את כולנו בהרים והמשיכה להשתולל נגד בעלי החיים האהובים שלנו.\" המבט העצוב שלה עקב אחר השלג הנופל. \"שמנו את כולם בסיכון עם הטיפשות שלנו. היו סמוכים ובטוחים כי בעתיד, אנחנו נבוא עם הבעיות שלנו אליכם לפני שהבעיות שלנו יבואו אליכם.\"\n\nהיא פונה למקום שבו בקונזאור מתכרבל עם כמה תינוקות הממותה. \"הבאנו לבעלי החיים שלכם מזון כדי להתנצל על הפחדתם, וכסמל של אמון, נשאיר כמה מחיות המחמד והממותות שלנו איתכם. אנחנו יודעים שתטפלו בהם היטב.\"",
+ "questStressbeastBossRageStables": "`המפלחץ המתועב משתמש במכת לחץ!`\n\nפרץ המתח מרפא את המפלחץ המתועב!\n\nהו לא! למרות מיטב מאמצינו, הנחנו לכמה מטלות יומיות לחמוק מאיתנו, צבען האדום הכהה הרגיז את המפלחץ המתועב וגרמנו לחלק מבריאותו לחזור! היצור הנורא מזנק על האורוות, אבל מַט אדון החיות מזנק בגבורה לתוך הקלחת כדי להגן על חיות המחמד וחיות הרכיבה. המפלחץ תפס את מַט באחיזתו המרושעת, אבל לפחות אינו מרוכזת כרגע. מהר! בואו נוודא שאנחנו מבצעים את המטלות היומיות שלנו ונביס את המפלצת הזאת לפני שתתקוף שוב!",
+ "questStressbeastBossRageBailey": "`המפלחץ המתועב משתמשת במכת לחץ!`\n\nפרץ המתח מרפא את המפלחץ המתועב!\n\nאהה!!! המטלות הלא מושלמות שלנו גרמו למפלחץ המתועב להיות מטורף מתמיד ולקבל חזרה חלק מבריאותו! ביילי, מבשרת העיירה צעקה לאזרחים לסור למקום מבטחים, וכעת היא נתפסה ביד השנייה שלה! תראו אותה, מדווחת באומץ על החדשות בזמן שהמפלחץ מנופף בה באכזריות... בואו נהיה ראויים לגבורתה על ידי כך שנהייה פרודוקטיביים כמו שאנחנו יכולים, כדי להציל את הדמות הלא־אנושית שלנו!",
+ "questStressbeastBossRageGuide": "`המפלחץ המתועב משתמש במכת לחץ!`\n\nפרץ המתח מרפא את המפלחץ המתועב!\n\nהיזהרו! דן המדריך מנסה להסיח את המפלחץ על ידי ריצה סביב קרסוליו, צועק עצות פרודוקטיביות! המפלחץ המתועב דורך בטירוף, אבל זה נראה כאילו אנחנו באמת מתישים את החיה. אני בספק אם יש לה מספיק אנרגיה לעוד מכה. אל תוותרו... אנחנו כל כך קרובים לחיסולה!",
+ "questStressbeastDesperation": "`המפלחץ המתועב מגיע לבריאות 500K! המפלחץ המתועב משתמשת בהגנה נואשת! `\n\nאנחנו כמעט שם, הביטיקנים! עם חריצות ומטלות יומיות, דרדרנו את הבריאות של המפלחץ לכדי 500K! היצור שואג ומנופף בייאוש, זעם הולך ומצטבר מהר יותר מאשר אי פעם. ביילי ומַאט צועקים באימה כשהיא מתחילה לנופף אותם סביב בקצב מפחיד, מעלה סופת שלגים מסנוורת שמקשה לפגוע בה.\n\nנצטרך להכפיל את מאמצינו, אבל שימו לב - זהו סימן כי המפלחץ יודע שהוא עומד להיות מובס. אל תוותרו עכשיו!",
+ "questStressbeastCompletion": "המפלחץ הובס!
עשינו זאת! בשאגתו האחרונה, המפלחץ המתועב מתפוגג לתוך ענן שלג. הפתיתים יורדים ומנצנצים כשהביטיקנים מריעים אוחזים בחיות המחמד וחיות הרכיבה שלהם. בעלי החיים והדמויות הלא־אנושיות שלנו בטוחים שוב!
השארוגועים ניצלה!
חתול-ניב מדבר בעדינות לחתולוניב קטן. \"בבקשה מיצאו את אזרחי ערבות השארוגועים והביאו אותם אלינו\", הוא אומר. כמה שעות מאוחר יותר, חוזר חתולוניב, עם עדר של רוכבי ממותה מזדחל מאחוריו. אתם מזהים את הרוכבת בראש כליידי גלסיאט, מנהיגת השארוגועים.
\"הביטיקנים חזקים,\" היא אומרת, \"האזרחים שלי ואני חייבים לכם את התודה העמוקה ביותר, וההתנצלויות העמוקות ביותר. במאמץ להגן על ערבותינו ממהומה, התחלנו לגרש בסתר את כל הלחץ שלנו אל הרי הקרח. לא היה לנו מושג שזה יהפוך במשך דורות למפלחץ שראיתם! כשהשתחררה, היא לכדה את כולנו בהרים והמשיכה להשתולל נגד בעלי החיים האהובים שלנו.\" המבט העצוב שלה עקב אחר השלג הנופל. \"שמנו את כולם בסיכון עם הטיפשות שלנו. היו סמוכים ובטוחים כי בעתיד, אנחנו נבוא עם הבעיות שלנו אליכם לפני שהבעיות שלנו יבואו אליכם.\"
היא פונה למקום שבו בקונזאור מתכרבל עם כמה תינוקות הממותה. \"הבאנו לבעלי החיים שלכם מזון כדי להתנצל על הפחדתם, וכסמל של אמון, נשאיר כמה מחיות המחמד והממותות שלנו איתכם. אנחנו יודעים שתטפלו בהם היטב.\"",
+ "questStressbeastCompletionChat": "`המפלחץ הובסה!`\n\nעשינו זאת! בשאגתה הסופית, המפלחץ המתועב מתפוגג לתוך ענן שלג. הפתיתים יורדים ומנצנצים כשהביטיקנים מריעים אוחזים בחיות המחמד וחיות הרכיבה שלהם. בעלי החיים והדמויות הלא־אנושיות שלנו בטוחים שוב!\n\n`השארוגועים ניצלה!`\n\nחתול-ניב מדבר בעדינות לחתולוניב קטן. \"בבקשה מיצאו את אזרחי ערבות השארוגועים והביאו אותם אלינו\", הוא אומר. כמה שעות מאוחר יותר, חוזר חתולוניב, עם עדר של רוכבי ממותה מזדחל מאחוריו. אתם מזהים את הרוכבת בראש כליידי גלסיאט, מנהיגת השארוגועים.\n\n\"הביטיקנים חזקים,\" היא אומרת, \"האזרחים שלי ואני חייבים לכם את התודה העמוקה ביותר, וההתנצלויות העמוקות ביותר. במאמץ להגן על ערבותינו ממהומה, התחלנו לגרש בסתר את כל הלחץ שלנו אל הרי הקרח. לא היה לנו מושג שזה יהפוך במשך דורות למפלחץ שראיתם! כשהשתחררה, היא לכדה את כולנו בהרים והמשיכה להשתולל נגד בעלי החיים האהובים שלנו.\" המבט העצוב שלה עקב אחר השלג הנופל. \"שמנו את כולם בסיכון עם הטיפשות שלנו. היו סמוכים ובטוחים כי בעתיד, אנחנו נבוא עם הבעיות שלנו אליכם לפני שהבעיות שלנו יבואו אליכם.\"\n\nהיא פונה למקום שבו בקונזאור מתכרבל עם כמה תינוקות הממותה. \"הבאנו לבעלי החיים שלכם מזון כדי להתנצל על הפחדתם, וכסמל של אמון, נשאיר כמה מחיות המחמד והממותות שלנו איתכם. אנחנו יודעים שתטפלו בהם היטב.\"",
"questTRexText": "מלך הדינוזאורים",
"questTRexNotes": "כעת כשיצורים עתיקים מערבות השארוגועים משוטטים ברחבי כל הביטיקה, @Urse החליט לאמץ טירנוזאור בוגר. מה כבר יכול להשתבש?
הכול.",
- "questTRexCompletion": "הדינוזאור הפראי סוף סוף עוצר את השתוללותו ומתיישב כדי להתחבר עם תרנגולי הענק. @Urse משקיף על כך מלמעלה. ״הם לא כאלו חיות מחמד גרועות, אחרי הכול! הן רק צריכים קצת משמעת. הנה, קחו כמה ביצי טירנוזאור לעצמכם.״",
+ "questTRexCompletion": "הדינוזאור הפראי סוף סוף עוצר את השתוללותו ומתיישב כדי להתחבר עם תרנגולי הענק. @Urse משקיף על כך מלמעלה. \"הן לא כאלה חיות מחמד גרועות אחרי הכול! הן רק צריכות קצת משמעת. הינה, קחו כמה ביצי טירנוזאור לעצמכם.\"",
"questTRexBoss": "טירנוזאור בשר ודם",
"questTRexUndeadText": "הדינוזאור קם לתחייה",
"questTRexUndeadNotes": "בזמן שהדינוזאור העתיק מערבות השארוגועים משוטט בהביטיקה, קריאה של אימה עולה מהמוזיאון הגדול. @Baconsaur צועק, ״שלד הטירנוזאור במוזיאון מתעורר! הוא בטח מרגיש את בן משפחתו!״ החיה העוצמתית נושאת את שיניה ומשקשקת בדרך אליכם. איך תוכלו להביס יצור שהוא כבר מת? תצטרכו להכות מהר לפני שהיא תחלים את עצמה!",
@@ -219,7 +219,7 @@
"questKrakenText": "הקראקן מלאמושלמייה",
"questKrakenNotes": "זה יום חם ושטוף שמש כשאתם מפליגים דרך מפרץ לאמושלמייה, אבל על מחשבותיכם מעיבות דאגות על כל מה שאתם עדיין צריכים לעשות. נראה כי ברגע שאתם מסיימים משימה אחת, מתגנבת אחרת, ואז עוד אחת...
לפתע, הסירה מטלטלת בצורה נוראה, וזרועות חלקלקות קופצות מתוך המים מכל עבר! \"אנחנו מותקפים על ידי הקראקן מלאמושלמייה!\" @Wolvenhalo זועק.
\"מהר!\" למונס קוראת לכם. \"חסלו זרועות ומשימות רבות ככל שאתם יכולים, לפני שחדשות יקחו את מקומן!\"",
"questKrakenBoss": "הקראקן מלאמושלמייה",
- "questKrakenCompletion": "בזמן שהקראקן בורח, כמה ביצים צפות אל פני המים. למונס בוחנת אותן, והחשד שלה הופך לשמחה. \"ביצי דיונון!\" היא אומרת. \"הנה, קחו אותן כגמול על כל מה שהשלמתם.\"",
+ "questKrakenCompletion": "בזמן שהקראקן בורח, כמה ביצים צפות אל פני המים. לֵמוֹנֶס בוחנת אותן, והחשד שלה הופך לשמחה. \"ביצי דיונון!\" היא אומרת. \"הינה, קחו אותן כגמול על כל מה שהשלמתם.\"",
"questKrakenDropCuttlefishEgg": "דיונון (ביצה)",
"questKrakenUnlockText": "פותח אפשרות לקניית ביצי דיונון בשוק",
"questWhaleText": "יללת הלוויתן",
@@ -274,11 +274,11 @@
"questBurnoutDropPhoenixPet": "פניקס (חיית מחמד)",
"questBurnoutDropPhoenixMount": "פניקס (חיית רכיבה)",
"questBurnoutBossRageQuests": "`איתלהבות משתמשת במכת יגיעה!`\n\nאוי לא! למרות מיטב מאמצינו, הנחנו לכמה מטלות לברוח מאיתנו, ועכשיו איתלהבות מתודלקת באנרגיה! בנהמה עם התפוצצויות, היא מקיפה איאן אדון ההרפתקאות בנחשול של אש רפאים. בזמן שנופלות מגילות הרפתקאות ועולות באש, העשן מתפזר, ואתם רואים שאיאן כבר סחוט מאנרגיה והופך ונסחף לרוח מיוגעת!\n\nרק להביס את איתלהבות יכול לשבור את הכישוף ולהחזיר את אדון ההרפתקאות האהוב שלנו. בואו נבצע את המטלות היומיות שלנו, ונביס את המפלצת הזאת לפני שהיא תוקפת שוב!",
- "questBurnoutBossRageSeasonalShop": "`איתלהבות משתמשת במכת יגיעה!`\n\nאהה!!! המטלות הלא מושלמות שלנו האכילו את הלהבות של איתלהבות, ועכשיו יש לה מספיק אנרגיה כדי להכות שוב! היא משחררת רוח רפאים של להבה קטנה על החנות העונתית. אתם מזועזעים לראות כי הקוסמת החייכנית מהחנות העונתית כבר הפכה לרוח מיוגעת.\n\nאנחנו צריכים להציל את הדב״שים שלנו! מהר, תושבים, להשלים את המשימות שלכם הביסו את איתלהבות לפני שהיא מכה בפעם השלישית!",
+ "questBurnoutBossRageSeasonalShop": "`איתלהבות משתמשת במכת יגיעה!`\n\nאהה!!! המטלות הלא מושלמות שלנו האכילו את הלהבות של איתלהבות, ועכשיו יש לה מספיק אנרגיה כדי להכות שוב! היא משחררת רוח רפאים של להבה קטנה על החנות העונתית. אתם מזועזעים לראות כי הקוסמת החייכנית מהחנות העונתית כבר הפכה לרוח מיוגעת.\n\nאנחנו צריכים להציל את הדמויות הלא־אנושיות שלנו! מהר, תושבים, להשלים את המשימות שלכם הביסו את איתלהבות לפני שהיא מכה בפעם השלישית!",
"questBurnoutBossRageTavern": "`איתלהבות משתמשת במכת יגיעה!` \n\nהביטיקנים רבים הסתתרו מפני איתלהבות בבית המרזח אבל לא עוד! עם יללת בלמים, איתלהבות מלהטת בפונדק בידיה המלובנות. כשהפטרונים בפונדק נסים, דניאל נתפס באחיזת איתלהבות, והופך לרוח מיוגעת ממש מולכם! \n\nחמומת-המוח הזו ממשיכה כבר יותר מדי זמן. אל תוותרו... אנחנו כל כך קרובים להביס את איתלהבות אחת ולתמיד!",
"questFrogText": "ביצת הצפרדע המבולגנת",
"questFrogNotes": "בזמן שאתה וחבריך מתבוססים דרך ביצות ההתקעות, @starsystemic מצביע על שלט גדול. \"הישארו על השביל - אם אתם יכולים.\"
\"זה בטח לא קשה!\" @RosemonkeyCT אומר. \"הוא רחב וברור.\"
אבל ככל שאתם ממשיכים, אתם מבחינים שעל הנתיב משתלט בהדרגה רפש של ביצה, מהול פיסות פסולת כחולות ובלגאן, עד שאי אפשר להמשיך.
כשאתם מסתכלים סביב, תוהים איך הגעתם לבלגאן הזה, @Jon Arjinborn צועק, \"היזהרו!\" צפרדע כועסת מזנקת מן הבוצה, עטויה בכביסה מלוכלכת ובוערת באש כחולה. תצטרכו להתגבר על צפרדע הבלגאן הרעילה כדי להתקדם!",
- "questFrogCompletion": "הצפרדע נסוגה בחזרה לתוך הרפש, מובסת. בזמן שהיא חומקת, הרפש הכחול נמוג, משאיר את הדרך שלפניכם ברורה.
יושבות באמצע הנתיב שלוש ביצים טהורות. \"אתם יכולים אפילו לראות את הראשנים הזעירים דרך המעטפת הברורה!\" @Breadstrings אומר. \"הנה, אתם צריכים לקחת אותן.\"",
+ "questFrogCompletion": "הצפרדע נסוגה בחזרה לתוך הרפש, מובסת. בזמן שהיא חומקת, הרפש הכחול נמוג, משאיר את הדרך שלפניכם ברורה.
יושבות באמצע הנתיב שלוש ביצים טהורות. \"אתם יכולים אפילו לראות את הראשנים הזעירים דרך המעטפת הברורה!\" @Breadstrings אומר. \"הינה, אתם צריכים לקחת אותן.\"",
"questFrogBoss": "צפרדע מבולגנת",
"questFrogDropFrogEgg": "צפרדע (ביצה)",
"questFrogUnlockText": "פותח אפשרות לקניית ביצי צפרדע בשוק",
@@ -314,18 +314,18 @@
"questSnailUnlockText": "פותח אפשרות לקניית ביצי חלזונות בשוק",
"questBewilderText": "המתפרע",
"questBewilderNotes": "המסיבה מתחילה כמו כל אחת אחרת.
המתאבנים מצוינים, המוזיקה מניעה, ואפילו פילי הריקוד הפכו לעניין שבשגרה. הביטיקנים צוחקים ומשתובבים בין סידורי הפרחים שעולים על גדותיהם, שמחים להסחת דעת מן המשימות הפחות אהובות עליהם, והשוטה של אפריל מתערבל מביניהם, ובשקיקה עושה טריק משעשע פה וטוויסט הומוריסטי שם.
בזמן ששעון החול המיסטי מצביע על חצות, השוטה של אפריל מזנק לבמה כדי לשאת נאום.
״חברים! אויבים! מכרים סובלניים! השאילו לי את אוזניכם.\" הקהל מגחך, בזמן שאוזניים של בעלי חיים מזדקרות מתוך ראשיהם, והם מדגמנים את אביזריהם החדשים.
\"כפי שאתם יודעים,\" השוטה ממשיך, \"האשליות המבלבלות שלי בדרך כלל אורכות רק יום אחד. אבל אני שמח לבשר כי גיליתי קיצור דרך שיבטיח לנו כיף ללא הפסקה, מבלי שנצטרך להתמודד עם האחריות המציקה שלנו. הביטיקנים מקסימים, הכירו את החבר החדש הקסום שלי... המתפרע!\"
למונס מחווירה לפתע, שומטת את המתאבנים שלה. \"חכו! אל תסמכו--\"
אבל פתאום ערפילים נשפכים לתוך החדר, נוצצים ועבים, והם מתערבלים סביב השוטה של אפריל, מתגבשים לנוצות מעוננות וצוואר שנמתח. הקהל נותר ללא מילים בזמן שציפור מפלצתית מופיעה בפניהם, כנפיה מנצנצות עם אשליות. היא פולטת צחוק חריקת בלמים נורא.
\"הא, זה כבר דורות מאז שהביטיקנים היו טיפשים מספיק כדי להזמין אותי! כמה נפלא זה, להיות מוחשית שוב.
מזמזמות בטרור, דבורי הקסם של מיסטיפיינג בורחות מהעיר המרחפת, אשר שוקעת מהשמים. בזה אחר זה, פרחי האביב המבריקים קומלים להם.
\"ידידיי היקרים, מדוע אתם כל כך מזועזעים?\" קורא המתפרע בקול עורבני, מכה בכנפיו. \"אין צורך לעמול עבור התגמולים שלכם יותר. אני פשוט אתן לכם את כל הדברים שאתם רוצים!\"
גשם של מטבעות נשפך מהשמים, בתנועת פטישים לתוך האדמה ובעוצמה ברוטלית, והקהל צורח ובורח למחסה. \"האם זו בדיחה?\" באקונזאור צועק, כשהזהב מתנפץ דרך חלונות ושובר לרסיסים רעפי גגות.
PainterProphet כורע בזמן שברקים מתפצחים מלמעלה, וכתמי ערפל מכסים את השמש. \"לא! הפעם, אני לא חושב שזו בדיחה!\"
במהירות, הביטיקנים, אל תתנו לאויב העולמי הזה להסיח את דעתנו מן המטרות שלנו! הישארו ממוקדים על המשימות שאתם צריכים להשלים כדי שנוכל להציל את מיסטיפיינג - ובתקווה, גם את עצמנו.",
- "questBewilderCompletion": "המתפרע הובס!
עשינו זאת! המתפרע פולט צעקה מייבבת בזמן שהוא מתפתל באוויר, משיל נוצות כמו גשם. לאט, בהדרגה, הוא מתפתל אל תוך ענן של ערפל נוצץ. כשהשמש שנחשפת שוב, מפלחת את הערפל שנשרף, חושפת את הדמויות האנושיות המשתעלות של ביילי, מאט, אלכס.... והשוטה של אפריל בכבודו ובעצמו.
מיסטיפיינג ניצלה!
השוטה של אפריל מסמיק מבושה ונראה קצת נבוך. \"אה, אה,\" הוא אומר. \"אולי קצת.... נסחפתי.\"
הקהל ממלמל. פרחים רטובים שוטפים את המדרכות. אי שם במרחק, גג מתמוטט בקול נפץ.
\"ארר, כן,\" אומר השוטה של אפריל. \"זה. מה שהתכוונתי לומר הוא, שאני נורא מצטער.\" הוא נאנח אנחה. \"אני מניח שלא הכל יכול להיות רק כיף ומשחקים, אחרי הכול. אולי זה לא נורא להתמקד מדי פעם. אולי אני אתכונן מראש קצת למתיחה של שנה הבאה.\"
רד-פניקס משתעל בקול.
\"אני מתכוון, אתקדם עם ניקיון האביב של השנה!״ השוטה של אפריל אומר. \"אין מה לחשוש, אני אביא את עיר ההרגלים לניקיון מבריק בקרוב. למרבה המזל אף אחד לא יודע טוב ממני להשתמש במגב כפול.\"
מעודדת, להקת המארש מתחילה.
לא לוקח הרבה זמן לדברים לחזור לקדמותם בעיר ההרגלים. בנוסף, עתה כשהמתפרע התאדה, הדבורים הקסומות של המולת מיסטיפיינג חוזרות לעבודה, ועד מהרה הפרחים פורחים והעיר צפה שוב.
כשהביטיקנים מחבקים את הדבורים הקסומות, עיניו של השוטה של אפריל מתחילות להאיר. \"אוהו, יש לי רעיון! למה שלא תשמרו כמה חיות מחמד וחיות רכיבה מהדבורים המזמזמות האלה? זו מתנה שמסמלת בצורה יוצאת מן הכלל את האיזון בין עבודה קשה ותגמולים מתוקים, אם להיות משעמם ואלגורי.\" הוא קורץ. \"מלבד זאת, אין להן עוקצים! נשבע בכבודו של השוטה.\"",
- "questBewilderCompletionChat": "`המתפרע הובס!`\n\nעשינו זאת! המתפרע פולט צעקה מייבבת בזמן שהוא מתפתל באוויר, משיל נוצות כמו גשם. לאט, בהדרגה, הוא מתפתל אל תוך ענן של ערפל נוצץ. כשהשמש שנחשפת שוב, מפלחת את הערפל שנשרף, חושפת את הדמויות האנושיות המשתעלות של ביילי, מאט, אלכס.... והשוטה של אפריל בכבודו ובעצמו.\n\nמיסטיפיינג ניצלה!\n\nהשוטה של אפריל מסמיק מבושה ונראה קצת נבוך. \"אה, אה,\" הוא אומר. \"אולי קצת.... נסחפתי.\"\n\nהקהל ממלמל. פרחים רטובים שוטפים את המדרכות. אי שם במרחק, גג מתמוטט בקול נפץ.\n\n\"ארר, כן,\" אומר השוטה של אפריל. \"זה. מה שהתכוונתי לומר הוא, שאני נורא מצטער.\" הוא נאנח אנחה. \"אני מניח שלא הכול יכול להיות רק כיף ומשחקים, אחרי הכול. אולי זה לא נורא להתמקד מדי פעם. אולי אני אתכונן מראש קצת למתיחה של שנה הבאה.\"\n\nרד-פניקס משתעל בקול.\n\n\"אני מתכוון, אתקדם עם ניקיון האביב של השנה!״ השוטה של אפריל אומר. \"אין מה לחשוש, אני אביא את עיר ההרגלים לניקיון מבריק בקרוב. למרבה המזל אף אחד לא יודע טוב ממני להשתמש במגב כפול.\"\n\nמעודדת, להקת המארש מתחילה.\n\nלא לוקח הרבה זמן לדברים לחזור לקדמותם בעיר ההרגלים. בנוסף, עתה כשהמתפרע התאדה, הדבורים הקסומות של המולת מיסטיפיינג חוזרות לעבודה, ועד מהרה הפרחים פורחים והעיר צפה שוב.\n\nכשהביטיקנים מחבקים את הדבורים הקסומות, עיניו של השוטה של אפריל מתחילות להאיר. \"אוהו, יש לי רעיון! למה שלא תשמרו כמה חיות מחמד וחיות רכיבה מהדבורים המזמזמות האלה? זו מתנה שמסמלת בצורה יוצאת מן הכלל את האיזון בין עבודה קשה ותגמולים מתוקים, אם להיות משעמם ואלגורי.\" הוא קורץ. \"מלבד זאת, אין להן עוקצים! נשבע בכבודו של השוטה.\"",
+ "questBewilderCompletion": "המתפרע הובס!
עשינו זאת! המתפרע פולט צעקה מייבבת בזמן שהוא מתפתל באוויר, משיל נוצות כמו גשם. לאט, בהדרגה, הוא מתפתל אל תוך ענן של ערפל נוצץ. כשהשמש שנחשפת שוב, מפלחת את הערפל שנשרף, חושפת את הדמויות האנושיות המשתעלות של ביילי, מַאט, אלכס.... והשוטה של אפריל בכבודו ובעצמו.
מיסטיפיינג ניצלה!
השוטה של אפריל מסמיק מבושה ונראה קצת נבוך. \"אה, אה,\" הוא אומר. \"אולי קצת.... נסחפתי.\"
הקהל ממלמל. פרחים רטובים שוטפים את המדרכות. אי שם במרחק, גג מתמוטט בקול נפץ.
\"ארר, כן,\" אומר השוטה של אפריל. \"זה. מה שהתכוונתי לומר הוא, שאני נורא מצטער.\" הוא נאנח אנחה. \"אני מניח שלא הכול יכול להיות רק כיף ומשחקים, אחרי הכול. אולי זה לא נורא להתמקד מדי פעם. אולי אני אתכונן מראש קצת למתיחה של שנה הבאה.\"
רד-פניקס משתעל בקול.
\"אני מתכוון, אתקדם עם ניקיון האביב של השנה!״ השוטה של אפריל אומר. \"אין מה לחשוש, אני אביא את עיר ההרגלים לניקיון מבריק בקרוב. למרבה המזל אף אחד לא יודע טוב ממני להשתמש במגב כפול.\"
מעודדת, להקת המארש מתחילה.
לא לוקח הרבה זמן לדברים לחזור לקדמותם בעיר ההרגלים. בנוסף, עתה כשהמתפרע התאדה, הדבורים הקסומות של המולת מיסטיפיינג חוזרות לעבודה, ועד מהרה הפרחים פורחים והעיר צפה שוב.
כשהביטיקנים מחבקים את הדבורים הקסומות, עיניו של השוטה של אפריל מתחילות להאיר. \"אוהו, יש לי רעיון! למה שלא תשמרו כמה חיות מחמד וחיות רכיבה מהדבורים המזמזמות האלה? זו מתנה שמסמלת בצורה יוצאת מן הכלל את האיזון בין עבודה קשה ותגמולים מתוקים, אם להיות משעמם ואלגורי.\" הוא קורץ. \"מלבד זאת, אין להן עוקצים! נשבע בכבודו של השוטה.\"",
+ "questBewilderCompletionChat": "`המתפרע הובס!`\n\nעשינו זאת! המתפרע פולט צעקה מייבבת בזמן שהוא מתפתל באוויר, משיל נוצות כמו גשם. לאט, בהדרגה, הוא מתפתל אל תוך ענן של ערפל נוצץ. כשהשמש שנחשפת שוב, מפלחת את הערפל שנשרף, חושפת את הדמויות האנושיות המשתעלות של ביילי, מַאט, אלכס.... והשוטה של אפריל בכבודו ובעצמו.\n\nמיסטיפיינג ניצלה!\n\nהשוטה של אפריל מסמיק מבושה ונראה קצת נבוך. \"אה, אה,\" הוא אומר. \"אולי קצת.... נסחפתי.\"\n\nהקהל ממלמל. פרחים רטובים שוטפים את המדרכות. אי שם במרחק, גג מתמוטט בקול נפץ.\n\n\"ארר, כן,\" אומר השוטה של אפריל. \"זה. מה שהתכוונתי לומר הוא, שאני נורא מצטער.\" הוא נאנח אנחה. \"אני מניח שלא הכול יכול להיות רק כיף ומשחקים, אחרי הכול. אולי זה לא נורא להתמקד מדי פעם. אולי אני אתכונן מראש קצת למתיחה של שנה הבאה.\"\n\nרד-פניקס משתעל בקול.\n\n\"אני מתכוון, אתקדם עם ניקיון האביב של השנה!״ השוטה של אפריל אומר. \"אין מה לחשוש, אני אביא את עיר ההרגלים לניקיון מבריק בקרוב. למרבה המזל אף אחד לא יודע טוב ממני להשתמש במגב כפול.\"\n\nמעודדת, להקת המארש מתחילה.\n\nלא לוקח הרבה זמן לדברים לחזור לקדמותם בעיר ההרגלים. בנוסף, עתה כשהמתפרע התאדה, הדבורים הקסומות של המולת מיסטיפיינג חוזרות לעבודה, ועד מהרה הפרחים פורחים והעיר צפה שוב.\n\nכשהביטיקנים מחבקים את הדבורים הקסומות, עיניו של השוטה של אפריל מתחילות להאיר. \"אוהו, יש לי רעיון! למה שלא תשמרו כמה חיות מחמד וחיות רכיבה מהדבורים המזמזמות האלה? זו מתנה שמסמלת בצורה יוצאת מן הכלל את האיזון בין עבודה קשה ותגמולים מתוקים, אם להיות משעמם ואלגורי.\" הוא קורץ. \"מלבד זאת, אין להן עוקצים! נשבע בכבודו של השוטה.\"",
"questBewilderBossRageTitle": "מכה מתערממת",
"questBewilderBossRageDescription": "כאשר מתמלא המד, המתפרע ישחרר את המכה המתערממת על הביטיקה!",
"questBewilderDropBumblebeePet": "דבורה קסומה (חיית מחמד)",
"questBewilderDropBumblebeeMount": "דבורה קסומה (חיית רכיבה)",
- "questBewilderBossRageMarket": "`המתפרע משתמש במכה המתערממת!`\n\nהו לא! למרות מיטב מאמצינו, דעתנו הוסחה על-ידי האשליות המקסימות של המתפרע ושכחנו לעשות חלק מהמטלות היומיות שלנו! בצעקה וקרקורים, הציפור הזורחת מכה בכנפיה, מעלה נחיל של ערפל סביב אלכס הסוחר. כאשר הערפל מתפזר, הוא כבר אחוז דיבוק! \"הנה כמה דוגמיות בחינם!\" הוא צועק בחדווה, ומתחיל להטיח ביצים ושיקויים מתפוצצים לעבר הביטיקנים שנסים על נפשם. לא הדרך הכי טובה למכור, זה בטוח.\n\nמהר! בואו נישאר ממוקדים על המטלות היומיות שלנו כדי להביס את המפלצת הזאת לפני שהיא משתלטת על עוד מישהו.",
+ "questBewilderBossRageMarket": "`המתפרע משתמש במכה המתערממת!`\n\nהו לא! למרות מיטב מאמצינו, דעתנו הוסחה על-ידי האשליות המקסימות של המתפרע ושכחנו לעשות חלק מהמטלות היומיות שלנו! בצעקה וקרקורים, הציפור הזורחת מכה בכנפיה, מעלה נחיל של ערפל סביב אלכס הסוחר. כאשר הערפל מתפזר, הוא כבר אחוז דיבוק! \"הינה כמה דוגמיות בחינם!\" הוא צועק בחדווה, ומתחיל להטיח ביצים ושיקויים מתפוצצים לעבר הביטיקנים שנסים על נפשם. לא הדרך הכי טובה למכור, זה בטוח.\n\nמהר! בואו נישאר ממוקדים על המטלות היומיות שלנו כדי להביס את המפלצת הזאת לפני שהיא משתלטת על עוד מישהו.",
"questBewilderBossRageStables": "`המתפרע משתמש במכה המתערממת!`\n\nאהה!!! שוב המתפרע סינוור אותנו להזניח את המטלות היומיות שלנו, ועכשיו הוא תקף את מאט אדון החיות! עם מערבולת של ערפל, מאט הופך ליצור מכונף ומפחיד, וכל חיות המחמד וחיות הרכיבה מייללות בעצב באורוות שלהן. בזריזות, הישארו ממוקדים במשימות שלכם כדי להביס את הסחת הדעת השפלה הזו!",
"questBewilderBossRageBailey": "`המתפרע משתמש במכה המתערממת!`\n\nתיזהרי! באמצע הדיווח על החדשות, ביילי כרוזת העיר כבר נאחזה דיבוק על ידי המתפרע! היא פולטת קול חריקה רע ולא אינפורמטיבי בזמן שהיא עולה לאוויר. עכשיו איך נדע מה קורה?\n\nלא לוותר... אנחנו כל כך קרובים להביס את הציפור הטורדנית הזו פעם אחת ולתמיד!",
"questFalconText": "ציפורי הרצחיינות",
"questFalconNotes": "ערמת מטלות שעולה על גדותיה מטילה צל על הר הביטיקה. זה היה אמור להיות מקום לפיקניק ולהנאה מתחושה של הישג, עד שהמשימות המוזנחות יצאו מכלל שליטה. עכשיו זהו ביתן של ציפורי הרצחיינות האימתניות, יצורים רעים אשר מונעים מההביטיקנים מלהשלים את המשימות שלהם!
\"זה קשה מדי!\" הן מקרקרות לעבר @JonArinbjorn ו־@Onheiron. \"זה ייקח זמן רב מדי לעשות זאת! זה לא ישנה כלום אם תחכו עד מחר! למה אתם לא עושים משהו כיפי במקום?\"
לא עוד, אתם נשבעים. אתם תטפסו על הר המטלות האישי שלכם ותביסו את ציפורי הרצחיינות!",
- "questFalconCompletion": "מרוצים מכך שסוף סוף ניצחתם את ציפורי הרצחיינות, אתם מתמקמים כדי להנות קצת מהנוף ומהמנוחה שכל כך מגיעה לכם.
״וואו!״ אומרת @Trogdorina. ״ניצחתם!״
@Squish מוסיף, ״הנה, קחו את הביצים שמצאתי בתור פרס.״",
+ "questFalconCompletion": "אתם מרוצים מכך שסוף סוף ניצחתם את ציפורי הרצחיינות, ומתמקמים כדי להנות קצת מהנוף ומהמנוחה שכל כך מגיעה לכם.
״וואו!״ אומרת @Trogdorina. ״ניצחתם!״
@Squish מוסיף, \"הינה, קחו את הביצים שמצאתי בתור פרס.\"",
"questFalconBoss": "ציפורי רצחיינות",
"questFalconDropFalconEgg": "פאלקון (ביצה)",
"questFalconUnlockText": "פותח אפשרות לקניית ביצי פאלקון בשוק",
@@ -613,7 +613,7 @@
"questSeaSerpentUnlockText": "Unlocks purchasable Sea Serpent eggs in the Market",
"questKangarooText": "Kangaroo Catastrophe",
"questKangarooNotes": "Maybe you should have finished that last task… you know, the one you keep avoiding, even though it always comes back around? But @Mewrose and @LilithofAlfheim invited you and @stefalupagus to see a rare kangaroo troop hopping through the Sloensteadi Savannah; how could you say no?! As the troop comes into view, something hits you on the back of the head with a mighty whack!
Shaking the stars from your vision, you pick up the responsible object--a dark red boomerang, with the very task you continually push back etched into its surface. A quick glance around confirms the rest of your party met a similar fate. One larger kangaroo looks at you with a smug grin, like she’s daring you to face her and that dreaded task once and for all!",
- "questKangarooCompletion": "“NOW!” You signal your party to throw the boomerangs back at the kangaroo. The beast hops further away with each hit until she flees, leaving nothing more than a dark red cloud of dust, a few eggs, and some gold coins.
@Mewrose walks forward to where the kangaroo once stood. “Hey, where did the boomerangs go?”
“They probably dissolved into dust, making that dark red cloud, when we finished our respective tasks,” @stefalupagus speculates.
@LilithofAlfheim squints at the horizon. “Is that another kangaroo troop heading our way?”
You all break into a run back to Habit City. Better to face your difficult tasks than take another lump to the back of the head!",
+ "questKangarooCompletion": "",
"questKangarooBoss": "Catastrophic Kangaroo",
"questKangarooDropKangarooEgg": "Kangaroo (Egg)",
"questKangarooUnlockText": "Unlocks purchasable Kangaroo eggs in the Market",
diff --git a/website/common/locales/he/rebirth.json b/website/common/locales/he/rebirth.json
index cda5f8d706..5d4fb608fa 100644
--- a/website/common/locales/he/rebirth.json
+++ b/website/common/locales/he/rebirth.json
@@ -5,9 +5,9 @@
"rebirthAchievement100": "התחלתם הרפתקה חדשה! זוהי הלידה ה<%= number %> שלכם מחדש, והדרגה הגבוהה ביותר אליה הגעתם היא 100 או יותר. כדי לקבל את הישג זה שוב, התחילו את ההרפתקה הבאה שלכם כאשר תגיעו לפחות לדרגה 100!",
"rebirthBegan": "התחילו הרפתקה חדשה",
"rebirthText": "התחילו <%= rebirths %> הרפתקאות חדשות",
- "rebirthOrb": "Used an Orb of Rebirth to start over after attaining Level <%= level %>.",
- "rebirthOrb100": "Used an Orb of Rebirth to start over after attaining Level 100 or higher.",
- "rebirthOrbNoLevel": "Used an Orb of Rebirth to start over.",
+ "rebirthOrb": "",
+ "rebirthOrb100": "",
+ "rebirthOrbNoLevel": "",
"rebirthPop": "",
"rebirthName": "כדור הלידה מחדש",
"rebirthComplete": "נולדת מחדש!"
diff --git a/website/common/locales/he/settings.json b/website/common/locales/he/settings.json
index c024a25626..6edba7a2c6 100644
--- a/website/common/locales/he/settings.json
+++ b/website/common/locales/he/settings.json
@@ -16,8 +16,8 @@
"suppressRaisePetModal": "לא להציג הודעה קופצת כשחיית מחמד הופכת לחיית רכיבה",
"suppressStreakModal": "לא להציג הודעה קופצת בהשגת הישג רצף",
"showTour": "הצגת הסיור",
- "showBailey": "הצג את באיילי",
- "showBaileyPop": "הוציאו את באיילי, המבשרת של העיירה, מהמחבוא, כדי שתבשר לכם על חדשות העבר.",
+ "showBailey": "להציג את ביילי",
+ "showBaileyPop": "הוציאו את ביילי דוברת העיריה מהמחבוא כדי שתבשר לכם על חדשות העבר.",
"fixVal": "תקן ערכי דמות",
"fixValPop": "אפשר לקבוע ערכים כמו בריאות, שלב, ומטבעות.",
"invalidLevel": "",
@@ -42,7 +42,7 @@
"sureChangeCustomDayStartTime": "",
"customDayStartHasChanged": "מועד תחילת היום המותאם אישית שהגדרתם שונה.",
"nextCron": "המטלות היומיות שלכם יאופסו בפעם הראשונה שתשתמשו בהביטיקה אחרי <%= time %>. יש לוודא שהשלמתם את המטלות היומיות שלכם לפני כן!",
- "customDayStartInfo1": "הביטיקה מכוונת לבדוק ולאפס את המטלות היומיות בחצות של אזור הזמן שלכם, מידי יום. אפשר לשנות זאת כאן.",
+ "customDayStartInfo1": "הביטיקה בודקת ומאפסת את המטלות היומיומיות בחצות של אזור הזמן שלך מדֵי יום. אפשר לשנות זאת כאן.",
"misc": "שונות",
"showHeader": "הראה כותרת",
"changePass": "שנו סיסמה",
@@ -51,14 +51,14 @@
"newEmail": "כתובת דוא\"ל חדשה",
"oldPass": "סיסמה ישנה",
"newPass": "סיסמה חדשה",
- "confirmPass": "וודאו סיסמה חדשה",
+ "confirmPass": "אימות הסיסמה החדשה",
"newUsername": "שם משתמש חדש",
"dangerZone": "אזור מסוכן",
"resetText1": "אזהרה! פעולה זו תמחק חלקים רבים מהמשתמש שלך. זה ממש לא מומלץ, כי יאבד מידע היסטורי, השימושי למעקב אחר התקדמותך לאורך זמן, אם כי, ישנם אנשים שהדבר שימושי עבורם אחרי שהם משחקים בהביטיקה מזה זמן.",
"resetText2": "",
"deleteLocalAccountText": "האם אתם בטוחים? פעולה זו תמחק את החשבון שלכם לצמיתות, ולא ניתן יהיה לשחזרו! עליכה יהיה ליצור חשבון חדש על מנת להשתמש בHabitica שוב. לא יתקבל החזר כספי עבור אבני-חן. אם אתם בטוחים לחלוטין, הקלידו את הסיסמה שלכם בתיבת הטקסט.",
- "deleteSocialAccountText": "",
- "API": "ממשק",
+ "deleteSocialAccountText": "להמשיך? פעולה זו תמחק את החשבון שלך לתמיד, ולעולם לא יהיה ניתן לשחזר אותו! יהיה עליך להירשם לחשבון חדש כדי להשתמש בהביטיקה שוב. אין החזרים על יהלומים שצברת או בזבזת. אם עדיין ברצונך להמשיך, יש להקליד \"<%= magicWord %>\" בתיבת הטקסט שלמטה.",
+ "API": "מנגנון API",
"APIv3": "API גרסה 3",
"APIText": "אפשר להעתיק את השדות הללו לשימוש ביישומים חיצוניים. עם זאת, יש לחשוב על אסימון הממשק כעל סיסמה, ואין לחלוק אותו בציבור. ייתכן שיבקשו ממך את מזהה המשתמש שלך במקום ציבורי, אבל לעולם לא את אסימון הממשק, גם לא ב־Github.",
"APIToken": "אסימון ממשק (זוהי סיסמה של ממש - כדאי לעיין באזהרה למעלה!)",
@@ -85,21 +85,21 @@
"passwordChangeSuccess": "",
"displayNameSuccess": "שם התצוגה השתנה בהצלחה",
"emailSuccess": "כתובת הדוא\"ל שונתה בהצלחה",
- "detachSocial": "",
+ "detachSocial": "ביטול הרישום דרך <%= network %>",
"detachedSocial": "",
"addedLocalAuth": "אימות מקומי נוסף בהצלחה",
"data": "נתונים",
"email": "דוא״ל",
"registerWithSocial": "הרשמה באמצעות <%= network %>",
- "registeredWithSocial": "",
+ "registeredWithSocial": "רשום דרך <%= network %>",
"emailNotifications": "הודעות",
"wonChallenge": "זכית באתגר!",
"newPM": "קיבלת הודעה פרטית חדשה",
"newPMInfo": "הודעה חדשה מאת <%= name %>: <%= message %>",
"giftedGems": "יהלומים שזכית בהם",
"giftedGemsInfo": "קיבלתם <%= amount %> אבני-חן כמתנה מ<%= name %>",
- "giftedGemsFull": "",
- "giftedSubscription": "מנוי שניתן במתנה",
+ "giftedGemsFull": "שלום <%= username %>, נשלחו אליך <%= gemAmount %> מ־<%= sender %>!",
+ "giftedSubscription": "מינוי במתנה",
"giftedSubscriptionInfo": "",
"giftedSubscriptionFull": "",
"invitedParty": "הוזמנת לחבורה",
@@ -130,7 +130,7 @@
"displayInviteToPartyWhenPartyIs1": "הצג כפתור ״הזמן לחבורה״ כאשר בחבורה יש חבר 1.",
"saveCustomDayStart": "שמור את מועד תחילת היום",
"registration": "הרשמה",
- "addLocalAuth": "",
+ "addLocalAuth": "הוספת כניסה באמצעות דוא״ל וסיסמה",
"generateCodes": "ייצר קודים",
"generate": "ייצר",
"getCodes": "קבלו קודים",
@@ -150,16 +150,16 @@
"buyGemsGoldCap": "מכסת היהלומים הועלתה ל־<%= amount %>",
"mysticHourglass": "<%= amount %> שעוני-חול מיסטיים",
"purchasedPlanExtraMonths": "יש לך <%= months %> חודשים נוספים ליתרת המינוי.",
- "consecutiveSubscription": "מנוי רצוף",
+ "consecutiveSubscription": "מינוי רצוף",
"consecutiveMonths": "חודשים רצופים:",
"gemCapExtra": "סף אבני-חן נוספות:",
"mysticHourglasses": "שעוני-חול מיסטיים:",
"mysticHourglassesTooltip": "",
"paypal": "פיי-פאל",
- "amazonPayments": "",
+ "amazonPayments": "תשלומי Amazon",
"amazonPaymentsRecurring": "",
"timezone": "אזור זמן",
- "timezoneUTC": "הביטיקה משתמשת באזור הזמן של המחשב שלכם, שהוא: <%= utc %>",
+ "timezoneUTC": "אזור הזמן נקבע על ידי המחשב שלך, ואזור הזמן שהוגדר הוא: <%= utc %>",
"timezoneInfo": "אם אזור הזמן הזה שגוי, קודם יש לנסות לטעון מחדש את העמוד באמצעות לחיצה על מקש הרענן או הטעינה מחדש של הדפדפן שלך, כדי לוודא שלHabitica יש את המידע העדכני ביותר. אם זה עדיין לא נכון, יש לכוון את אזור הזמן במחשב שלך, ואז לטעון מחדש את העמוד הזה.
אם עשית שימוש בHabitica על מחשבים או מכשירים ניידים אחרים, אזור הזמן חייב להיות זהה בכולם. אם המטלות היומיות שלך אופסו בזמן הלא נכון, יש לחזור על הבדיקה הזו בכל המחשבים האחרים, ובדפדפן שבמכשירים הניידים שלך.",
"push": "דחיפה",
"about": "מידע כללי",
@@ -192,5 +192,8 @@
"transaction_buy_money": "נקנה בכסף",
"transaction_buy_gold": "נקנה במטבעות זהב",
"transaction_contribution": "דרך תרומה",
- "addPasswordAuth": "הוספת סיסמה"
+ "addPasswordAuth": "הוספת סיסמה",
+ "adjustment": "כוונון",
+ "transaction_debug": "פעולות לניפוי שגיאות",
+ "transaction_create_challenge": "יצירת אתגר"
}
diff --git a/website/common/locales/he/spells.json b/website/common/locales/he/spells.json
index 3d5775f00d..5615195420 100644
--- a/website/common/locales/he/spells.json
+++ b/website/common/locales/he/spells.json
@@ -1,6 +1,6 @@
{
"spellWizardFireballText": "פרץ להבות",
- "spellWizardFireballNotes": "",
+ "spellWizardFireballNotes": "אפשר לצבור נקודות ניסיון ולהשתמש בלהבות כדי לפגוע בבוסים! (מבוסס על: תבונה)",
"spellWizardMPHealText": "פרץ אתרי",
"spellWizardMPHealNotes": "",
"spellWizardEarthText": "רעידת אדמה",
diff --git a/website/common/locales/he/subscriber.json b/website/common/locales/he/subscriber.json
index 45f80b3760..1880bda8c7 100644
--- a/website/common/locales/he/subscriber.json
+++ b/website/common/locales/he/subscriber.json
@@ -5,27 +5,27 @@
"buyGemsGold": "קניית יהלומים עם מטבעות זהב",
"mustSubscribeToPurchaseGems": "יש להירשם למינוי כדי לרכוש יהלומים עם מטבעות זהב",
"reachedGoldToGemCap": "You've reached the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.",
- "reachedGoldToGemCapQuantity": "Your requested amount <%= quantity %> exceeds the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.",
+ "reachedGoldToGemCapQuantity": "",
"mysteryItem": "פריטים חודשיים ייחודיים",
"mysteryItemText": "בכל חודש תקבל/י פריט קוסמטי חדש לדמות שלך! בנוסף, בעבור כל שלושה חודשים רצופים של הרשמה, נוסעי זמן מסתוריים ייתנו לך גישה לפריטים קוסמטיים היסטוריים (ועתידניים!).",
"exclusiveJackalopePet": "חיית מחמד אקסקלוסיבית",
- "giftSubscription": "Want to gift a subscription to someone?",
- "giftSubscriptionText4": "Thanks for supporting Habitica!",
- "groupPlans": "Group Plans",
+ "giftSubscription": "רוצה להעניק גם למישהו אחר את היתרונות של המינוי?",
+ "giftSubscriptionText4": "תודה על תמיכתך בהביטיקה!",
+ "groupPlans": "",
"subscribe": "תרום",
- "nowSubscribed": "You are now subscribed to Habitica!",
- "cancelSub": "ביטול תרומה",
+ "nowSubscribed": "כעת יש לך מינוי בהביטיקה!",
+ "cancelSub": "ביטול המינוי",
"cancelSubInfoGroupPlan": "Because you have a free subscription from a Group Plan, you cannot cancel it. It will end when you are no longer in the Group. If you are the Group leader and want to cancel the entire Group Plan, you can do that from the group's \"Payment Details\" tab.",
- "cancelingSubscription": "ביטול מנוי",
+ "cancelingSubscription": "ביטול המינוי",
"contactUs": "יצירת קשר",
"checkout": "התנתקות",
"sureCancelSub": "האם אתם בטוחים שאתם רוצים לבטל את המינוי שלכם?",
- "subGemPop": "Because you subscribe to Habitica, you can purchase a number of Gems each month using Gold.",
+ "subGemPop": "",
"subGemName": "יהלומים למנויים",
- "maxBuyGems": "You have bought all the Gems you can this month. More become available within the first three days of each month. Thanks for subscribing!",
+ "maxBuyGems": "",
"timeTravelers": "נוסעים בזמן",
- "timeTravelersPopoverNoSubMobile": "Looks like you’ll need a Mystic Hourglass to open the time portal and summon the Mysterious Time Travelers.",
- "timeTravelersPopover": "Your Mystic Hourglass has opened our time portal! Choose what you’d like us to fetch from the past or future.",
+ "timeTravelersPopoverNoSubMobile": "",
+ "timeTravelersPopover": "",
"mysterySetNotFound": "סט מסתורי לא נמצא, או שכבר יש לכם אותו",
"mysteryItemIsEmpty": "אין פריטים מסתוריים",
"mysteryItemOpened": "נפתח פריט מסתורי.",
@@ -60,7 +60,7 @@
"mysterySet201606": "סט בגדי כלב-ים",
"mysterySet201607": "סט נוכל קרקעית הים",
"mysterySet201608": "סט מסתער-ברקים",
- "mysterySet201609": "Cow Costume Set",
+ "mysterySet201609": "סט תחפושת של פרה",
"mysterySet201610": "Spectral Flame Set",
"mysterySet201611": "Cornucopia Set",
"mysterySet201612": "Nutcracker Set",
@@ -83,18 +83,18 @@
"mysterySet201805": "Phenomenal Peacock Set",
"mysterySet201806": "Alluring Anglerfish Set",
"mysterySet201807": "Sea Serpent Set",
- "mysterySet201808": "Lava Dragon Set",
+ "mysterySet201808": "סט דרקון לבה",
"mysterySet201809": "סט עונת הסתיו",
- "mysterySet201810": "Dark Forest Set",
+ "mysterySet201810": "סט היער השחור",
"mysterySet201811": "Splendid Sorcerer Set",
- "mysterySet201812": "Arctic Fox Set",
+ "mysterySet201812": "סט שועל ארקטי",
"mysterySet201901": "סט כוכב צפוני",
"mysterySet301404": "סט סטימפאנק רגיל",
"mysterySet301405": "סט סטימפאנק אקססוריז",
"mysterySet301703": "Peacock Steampunk Set",
"mysterySet301704": "Pheasant Steampunk Set",
"mysterySetwondercon": "וונדרקון",
- "subUpdateCard": "עדכן כרטיס",
+ "subUpdateCard": "עדכון כרטיס האשראי",
"subUpdateTitle": "עדכן",
"subUpdateDescription": "עדכן את הכרטיס שיחוייב.",
"notEnoughHourglasses": "אין לך די שעוני חול מיסטיים.",
@@ -103,11 +103,11 @@
"typeNotAllowedHourglass": "סוג זה של פריט לא ניתן לרכוש באמצעות שעון החול המיסטי. הסוגים המותרים הם: <%= allowedTypes %>",
"hourglassPurchase": "רכשת פריט באמצעות שעון החול המיסטי!",
"hourglassPurchaseSet": "רכשת סט פריטים באמצעות שעון חול מיסטי!",
- "missingUnsubscriptionCode": "חסר קוד מנוי.",
- "missingSubscription": "למשתמש זה אין מנוי",
- "missingSubscriptionCode": "חסר קוד מנוי. הערכים האפשריים הם: basic_earned, basic_3mo, basic_6mo, google_6mo, basic_12mo.",
+ "missingUnsubscriptionCode": "חסר קוד מינוי.",
+ "missingSubscription": "למשתמש הזה אין מינוי",
+ "missingSubscriptionCode": "חסר קוד מינוי. הערכים האפשריים הם: basic_earned, basic_3mo, basic_6mo, google_6mo, basic_12mo.",
"missingReceipt": "Missing Receipt.",
- "cannotDeleteActiveAccount": "יש לכם מנוי פעיל, בטלו את התוכנית שלכם לפני שתוכלו למחוק את החשבון.",
+ "cannotDeleteActiveAccount": "יש לך מינוי פעיל, יש לבטל את תוכנית המינוי שלך לפני שיהיה אפשר למחוק את החשבון.",
"paymentNotSuccessful": "התשלום לא הצליח",
"planNotActive": "התכנית לא החלה עדיין (עקב בעיה בPayPal). היא תחל ב<%= nextBillingDate %>, לאחר מכן תוכלו לבטל כדי לשמור על כל ההטבות שלכם.",
"notAllowedHourglass": "חיית מחמד/רכיבה לא זמינה לרכישה באמצעות שעון חול מיסטי.",
@@ -121,7 +121,7 @@
"choosePaymentMethod": "Choose your payment method",
"buyGemsSupportsDevs": "Purchasing Gems supports the developers and helps keep Habitica running",
"support": "SUPPORT",
- "gemBenefitLeadin": "Gems allow you to buy fun extras for your account, including:",
+ "gemBenefitLeadin": "מה אפשר לקנות עם יהלומים?",
"gemBenefit1": "Unique and fashionable costumes for your avatar.",
"gemBenefit2": "Backgrounds to immerse your avatar in the world of Habitica!",
"gemBenefit3": "Exciting Quest chains that drop pet eggs.",
@@ -132,11 +132,22 @@
"subscriptionBenefit5": "Receive the exclusive Royal Purple Jackalope pet!",
"subscriptionBenefit6": "Earn Mystic Hourglasses for use in the Time Travelers' Shop!",
"purchaseAll": "Purchase Set",
- "gemsRemaining": "gems remaining",
+ "gemsRemaining": "יהלומים שנותרו",
"notEnoughGemsToBuy": "You are unable to buy that amount of gems",
"mysterySet201902": "סט קריפטיק קראש",
"mysterySet201903": "סט ביצה טעימה",
"organization": "ארגון",
"giftASubscription": "הענקת מינוי במתנה",
- "viewSubscriptions": "הצגת המינויים"
+ "viewSubscriptions": "הצגת המינויים",
+ "monthlyMysteryItems": "פריטים מסתוריים בכל חודש",
+ "supportHabitica": "תמיכה בהביטיקה",
+ "subscriptionCanceled": "המינוי שלך בוטל",
+ "youAreSubscribed": "יש לך מינוי בהביטיקה",
+ "subCanceledTitle": "המינוי בוטל",
+ "lookingForMoreItems": "מחפשים עוד פריטים?",
+ "readyToResubscribe": "מוכנים לחידוש המינוי?",
+ "backgroundAlreadyOwned": "הרקע כבר בבעלותך.",
+ "needToUpdateCard": "יש צורך בעדכון כרטיס האשראי?",
+ "cancelYourSubscription": "לבטל את המינוי שלך?",
+ "dropCapReached": "מצאת את כל הפריטים להיום!"
}
diff --git a/website/common/locales/he/tasks.json b/website/common/locales/he/tasks.json
index c1675c1fa5..51df66b112 100644
--- a/website/common/locales/he/tasks.json
+++ b/website/common/locales/he/tasks.json
@@ -2,7 +2,7 @@
"clearCompleted": "מחיקת המשימות שהושלמו",
"clearCompletedDescription": "משימות לביצוע שהושלמו יימחקו לאחר 30 ימים למשתמשים שאינם מנויים ולאחר 90 ימים למשתמשים מנויים.",
"clearCompletedConfirm": "למחוק את המשימות לביצוע שהושלמו?",
- "addMultipleTip": "עצה: כדי להוסיף <%= taskType %> מרובות, הפרד אותן בשורות חדשות (Shift + Enter) ולסיום לחץ \"Enter.\"",
+ "addMultipleTip": "עצה: כדי להוסיף כמה <%= taskType %> בבת אחת, אפשר לפצל לשורות חדשות (Shift + Enter) ולסיום ללחוץ על \"Enter\".",
"addATask": "הוספת <%= type %>",
"editATask": "עריכת <%= type %>",
"createTask": "יצירת <%= type %>",
diff --git a/website/common/locales/it/achievements.json b/website/common/locales/it/achievements.json
index fdbcbc10b3..1438e8938b 100644
--- a/website/common/locales/it/achievements.json
+++ b/website/common/locales/it/achievements.json
@@ -135,5 +135,8 @@
"achievementReptacularRumbleText": "Ha schiuso tutti i rettili: Alligatore, Pterodattilo, Serpente, Triceratopo, Tartaruga, Tyrannosaurus Rex e Velociraptor, in tutte le colorazioni standard!",
"achievementGroupsBeta2022": "Beta Tester Interattivo",
"achievementGroupsBeta2022Text": "Tu e il tuo gruppo avete fornito feedback inestimabili per aiutare Habitica a testare.",
- "achievementGroupsBeta2022ModalText": "Tu e i tuoi gruppi avete aiutato Habitica testando e fornendo feedback!"
+ "achievementGroupsBeta2022ModalText": "Tu e i tuoi gruppi avete aiutato Habitica testando e fornendo feedback!",
+ "achievementWoodlandWizardModalText": "Hai collezionato tutti gli animali della foresta!",
+ "achievementWoodlandWizard": "Mago dei Boschi",
+ "achievementWoodlandWizardText": "Ha schiuso le creature della foresta: Tasso, Orso, Cervo, Rana, Riccio, Gufo, Chiocciola, Scoiattolo e Arbusto, in tutte le colorazioni standard!"
}
diff --git a/website/common/locales/it/backgrounds.json b/website/common/locales/it/backgrounds.json
index 981c7417df..b33cb01299 100644
--- a/website/common/locales/it/backgrounds.json
+++ b/website/common/locales/it/backgrounds.json
@@ -707,5 +707,26 @@
"backgroundMountainWaterfallText": "Cascata di Montagna",
"backgroundMountainWaterfallNotes": "Ammira una cascata di montagna.",
"backgroundSailboatAtSunsetText": "Barca a Vela al Tramonto",
- "backgroundSailboatAtSunsetNotes": "Goditi la bellezza di una barca a vela al tramonto."
+ "backgroundSailboatAtSunsetNotes": "Goditi la bellezza di una barca a vela al tramonto.",
+ "backgrounds072022": "SET 98: Rilasciato a luglio 2022",
+ "backgroundBioluminescentWavesText": "Onde Bioluminescenti",
+ "backgroundBioluminescentWavesNotes": "Ammira il bagliore delle Onde Bioluminescenti.",
+ "backgroundUnderwaterCaveText": "Grotta Sommersa",
+ "backgroundUnderwaterCaveNotes": "Esplora una Grotta Sommersa.",
+ "backgroundUnderwaterStatuesText": "Parco delle Sculture Sommerso",
+ "backgroundUnderwaterStatuesNotes": "Prova a non battere le ciglia in un Parco delle Sculture Sommerso.",
+ "backgroundMessyRoomText": "Stanza Disordinata",
+ "backgroundByACampfireNotes": "Goditi il caldo bagliore Accanto ad un Falò.",
+ "backgrounds082022": "SET 99: Rilasciato ad agosto 2022",
+ "backgroundRainbowEucalyptusText": "Eucalipto Arcobaleno",
+ "backgroundByACampfireText": "Accanto ad un Falò",
+ "backgroundRainbowEucalyptusNotes": "Ammira un boschetto di Eucalipto Arcobaleno.",
+ "backgroundMessyRoomNotes": "Riordina una Stanza Disordinata.",
+ "backgrounds092022": "SET 100: Rilasciato a settembre 2022",
+ "backgroundTheatreStageText": "Palcoscenico Teatrale",
+ "backgroundTheatreStageNotes": "Esibisciti su di un Palcoscenico Teatrale.",
+ "backgroundAutumnPicnicText": "Picnic Autunnale",
+ "backgroundAutumnPicnicNotes": "Goditi un Picnic Autunnale.",
+ "backgroundOldPhotoText": "Vecchia Foto",
+ "backgroundOldPhotoNotes": "Mettiti in posa in una Vecchia Foto."
}
diff --git a/website/common/locales/it/content.json b/website/common/locales/it/content.json
index 1562e6ddd8..93c52e3b3a 100644
--- a/website/common/locales/it/content.json
+++ b/website/common/locales/it/content.json
@@ -371,5 +371,6 @@
"hatchingPotionMoonglow": "Luce di Luna",
"hatchingPotionSolarSystem": "Sistema Solare",
"hatchingPotionOnyx": "Onice",
- "hatchingPotionVirtualPet": "Animaletto virtuale"
+ "hatchingPotionVirtualPet": "Animaletto virtuale",
+ "hatchingPotionPorcelain": "Porcellana"
}
diff --git a/website/common/locales/it/faq.json b/website/common/locales/it/faq.json
index d60c402283..0c10f5d3a0 100644
--- a/website/common/locales/it/faq.json
+++ b/website/common/locales/it/faq.json
@@ -54,5 +54,7 @@
"webFaqAnswer12": "I Boss Mondiali sono mostri speciali che appaiono nella Taverna. Tutti i giocatori attivi sul sito combattono automaticamente questo tipo di Boss e ogni attività compiuta e abilità reca danno al Boss come al solito. Puoi anche, allo stesso tempo, avere una normale Sfida. Le tue attività e abilità conteranno sia contro il Boss Mondiale sia nelle Sfida o Missione che la tua squadra sta portando avanti. Un Boss Mondiale non potrà mai danneggiare te o il tuo account, in nessun modo. Possiede però una barra indicatrice della rabbia che si riempie quando i giocatori saltano le loro Attività giornaliere. Se la barra della rabbia si riempie, il Boss Mondiale attaccherà uno dei personaggio non giocatori del sito, la cui immagine cambierà. Puoi leggere altri di più sui [Boss Mondiali precendenti](https://habitica.fandom.com/wiki/World_Bosses) sulla wiki.",
"iosFaqStillNeedHelp": "Se hai una domanda che non è presente in questa lista o nella [sezione FAQ della wiki](https://habitica.fandom.com/wiki/FAQ), vieni a chiederla nella Taverna in Menu > Taverna! Saremo felici di aiutarti.",
"androidFaqStillNeedHelp": "Se hai una domanda che non è presente in questa lista o nella [sezione FAQ della wiki](https://habitica.fandom.com/wiki/FAQ), vieni a chiedere nella chat della Taverna in Menu > Taverna! Saremo felici di aiutarti.",
- "webFaqStillNeedHelp": "Se hai una domanda che non è presente in questa lista o nella [sezione FAQ della Wiki](https://habitica.fandom.com/wiki/FAQ), vieni a chiederla nella gilda [Habitica Help](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Saremo felici di aiutarti."
+ "webFaqStillNeedHelp": "Se hai una domanda che non è presente in questa lista o nella [sezione FAQ della Wiki](https://habitica.fandom.com/wiki/FAQ), vieni a chiederla nella gilda [Habitica Help](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Saremo felici di aiutarti.",
+ "faqQuestion13": "Cos'è un Piano di Gruppo?",
+ "webFaqAnswer13": "## Come funzionano i Piani di Gruppo?\n\nUn [Piano di Gruppo](/piani di gruppo) dà alla tua Squadra o Gilda accesso ad una bacheca delle attività condivise, che è simile alla tua bacheca delle attività personale! È un'esperienza condivisa di Habitica in cui le attività possono essere create e verificate da qualsiasi membro nel gruppo.\n\nSono inoltre disponibili funzionalità come l'assegnare ruoli ai membri, la visualizzazione dello stato delle attività e l'assegnazione delle attività, che offrono un'esperienza più controllata. [Visita la nostra wiki](https://habitica.fandom.com/wiki/Group_Plans) per saperne di più sulle funzionalità dei nostri Piani di Gruppo!\n\n## Chi può beneficiare di un Piano di Gruppo?\n\nI piani di gruppo funzionano meglio con piccoli team di persone che vogliono collaborare insieme. Consigliamo 2-5 membri.\n\nI piani di gruppo sono ottimi per le famiglie, che si tratti di un genitore e figlio o di te e il tuo partner. È facile tenere traccia di obiettivi, incombenze o responsabilità in comune su un'unica bacheca.\n\nI Piani di Gruppo possono essere utili anche a team di colleghi con obiettivi comuni o a manager che vogliono introdurre i propri dipendenti alla ludicizzazione del lavoro.\n\n## Consigli per l'utilizzo veloce dei Gruppi\n\nEcco alcuni suggerimenti veloci per iniziare con il tuo nuovo Gruppo. Forniremo maggiori dettagli nelle seguenti sezioni:\n\n* Assegna il ruolo di manager ad un membro per dar loro la possibilità di creare e modificare le attività\n* Lascia come non assegnate le attività che possono essere completate da qualunque membro e che necessitano di essere eseguite una volta sola\n* Assegna un'attività ad una persona per assicurarti che nessun altro possa la loro attività\n* Assegna un'attività a più persone se han tutte bisogno di completarla\n* Attiva o disattiva la possibilità di visualizzare le attività condivise sulla tua bacheca personale per non perderti nulla\n* Vieni ricompensato per le attività che completi, anche per attività assegnate a più membri\n* I premi per il completamento delle attività non vengono condivisi o divisi tra i membri del team\n* Usa il colore delle attività sulla bacheca del team per giudicare il tasso medio di completamento delle attività\n* Rivedi regolarmente le attività sulla bacheca del tuo team per assicurarti che siano ancora pertinenti\n* Perdere un'attività giornaliera non danneggerà te o la tua squadra, ma il colore dell'attività cambierà\n\n## Come possono creare attività gli altri membri del gruppo?\n\nSolo il leader del gruppo e i manager possono creare attività. Se desideri che un membro del gruppo sia in grado di creare attività, dovresti promuoverlo a manager accedendo alla scheda Informazioni del Gruppo, visualizzando l'elenco dei membri e facendo clic sull'icona a pallino accanto al loro nome.\n\n## Come funziona l'assegnazione di un'attività?\n\nI piani di gruppo ti danno la possibilità esclusiva di poter assegnare attività ad altri membri del gruppo. Assegnare un'attività è ottimo per delegare compiti. Se assegni un'attività a qualcuno, gli altri membri non potranno ripeterla completandola a loro volta.\n\nPuoi anche assegnare un'attività a più persone se deve essere completata da più di un membro. Ad esempio, se tutti devono lavarsi i denti, crea un'attività ed assegnala a ciascun membro del gruppo. Saranno tutti in grado di spuntarla ed ottenere i propri premi individuali per averla completata. L'attività principale verrà visualizzata come completata una volta che tutti i membri l'avranno spuntata.\n\n## Come funzionano le attività non assegnate a nessuno?\n\nLe attività che non vengono assegnate possono essere completate da chiunque nel gruppo, quindi lascia un'attività non assegnata per consentire a qualsiasi membro di completarla. Ad esempio, portare fuori la spazzatura. Chiunque la porti fuori potrà spuntare l'attività non assegnata ed essa verrà mostrata come completata a tutti i membri.\n\n## Come funziona il reset sincronizzato del giorno?\n\nLe attività condivise verranno resettate contemporaneamente a tutti i membri per consentire a tutti di mantenere sincronizzata la bacheca delle attività condivise. Quest' ora è visibile sulla bacheca delle attività condivise ed è determinata dall'ora di inizio giornata del leader del gruppo. Poiché le attività condivise vengono resettate automaticamente, non avrai la possibilità di completare le Attività Giornaliere condivise non completate il giorno prima quando effettui il check-in la mattina successiva.\n\nLe Attività Giornaliere condivise non infliggeranno danni se non vengono completate, tuttavia cambieranno colore per aiutare a visualizzare i progressi. Non vogliamo che l'esperienza condivisa venga vissuta negativamente!\n\n## Come faccio ad utilizzare il mio Gruppo sulle app mobili?\n\nSebbene le app mobili non supportino ancora completamente tutte le funzionalità dei Piani di Gruppo, puoi comunque completare le attività in condivisione dall'app iOS e Android. Nella versione browser di Habitica, vai alla bacheca delle attività condivise del tuo gruppo e attiva la funzione \"attiva/disattiva\" copia delle attività. Fatto ciò, tutte le attività condivise disponibili ed assegnate verranno visualizzate sulla tua bacheca personale delle attività, su tutte le piattaforme.\n\n## Qual è la differenza tra le Attività condivise e le Sfide di un Gruppo?\n\nLe bacheche delle attività condivise del Piano di Gruppo sono più dinamiche delle Sfide, in quanto possono essere costantemente aggiornate e ci si può interagire. Le sfide sono eccellenti se hai una serie di attività da inviare a molte persone.\n\nI Piani di Gruppo sono pure una funzionalità a pagamento, mentre le Sfide sono disponibili a tutti, gratuitamente.\n\nNon puoi assegnare compiti specifici ai membri nelle Sfide e le Sfide non hanno un reset del giorno condiviso. In generale, le Sfide offrono meno controllo e interazione diretta dei Piani di Gruppo."
}
diff --git a/website/common/locales/it/gear.json b/website/common/locales/it/gear.json
index 87f0b7c0a4..5cf5dd3aec 100644
--- a/website/common/locales/it/gear.json
+++ b/website/common/locales/it/gear.json
@@ -2642,5 +2642,61 @@
"weaponArmoireGreenKiteNotes": "Non s'è mai visto un aquilone più stupefacente, con le sue sfumature gialle e verde. Aumenta tutti gli Attributi di <%= attrs %> ciascuno. Scrigno Incantato: Set Aquiloni (Oggetto 2 di 5)",
"weaponArmoireYellowKiteText": "Aquilone Giallo",
"weaponArmoireYellowKiteNotes": "Guarda il tuo allegro aquilone andare mentre piomba all'improvviso, zigzagando avanti e indietro. Aumenta tutti gli attributi di <%= attrs %> ciascuno. Scrigno Incantato: Set Aquiloni (Oggetto 5 di 5)",
- "weaponArmoirePinkKiteNotes": "Scendendo in picchiata, piroettando, volando in alto, il tuo aquilone si staglia contro il cielo. Aumenta tutti gli attributi di <%= attrs %> ciascuno. Scrigno Incantato: Set Aquiloni (Oggetto 4 di 5)"
+ "weaponArmoirePinkKiteNotes": "Scendendo in picchiata, piroettando, volando in alto, il tuo aquilone si staglia contro il cielo. Aumenta tutti gli attributi di <%= attrs %> ciascuno. Scrigno Incantato: Set Aquiloni (Oggetto 4 di 5)",
+ "weaponSpecialSummer2022RogueText": "Chela di Granchio",
+ "weaponSpecialSummer2022RogueNotes": "Se sei alle strette, non esitare a mostrare queste temibili chele! Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "weaponSpecialSummer2022WarriorText": "Ciclone Roteante",
+ "weaponSpecialSummer2022WarriorNotes": "Gira! Cambia direzione! E porta la tempesta! Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "weaponSpecialSummer2022HealerText": "Bollicine Benefiche",
+ "weaponSpecialSummer2022MageText": "Bastone della Manta",
+ "weaponSpecialSummer2022MageNotes": "Dirada magicamente le acque davanti a te con un giro di questo bastone. Aumenta l'Intelligenza di <%= int %> e la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "weaponSpecialSummer2022HealerNotes": "Queste bollicine rilasciano magia curativa nell'acqua con un schiocco soddisfacente! Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "armorSpecialSummer2022RogueNotes": "Perfetta per un'occasionale toccata e fuga in spiaggia. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "armorSpecialSummer2022RogueText": "Armatura del Granchio",
+ "armorSpecialSummer2022WarriorText": "Armatura della Tromba D'Acqua",
+ "armorSpecialSummer2022WarriorNotes": "Preparati ad una battaglia idrica mentre ti circondi di questa colonna d'aria e nebbia vorticosa e turbinosa. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "armorSpecialSummer2022MageText": "Armatura della Manta",
+ "armorSpecialSummer2022MageNotes": "Quando indossi questa armatura, ti librerai facilmente nel tuo lavoro come la manta si libra nell'acqua. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "armorSpecialSummer2022HealerText": "Coda di Pesce Angelo",
+ "armorSpecialSummer2022HealerNotes": "Usa le tue pinne colorate per scorrazzare fra la barriera corallina e aiuta chi ha bisogno di riposo e di cure. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "headSpecialSummer2022RogueText": "Elmo del Granchio",
+ "headSpecialSummer2022RogueNotes": "Non c'è tempo per essere crostacei, siamo qui per chelebrare con i giochi di parole più piccanti dell'estate. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "headSpecialSummer2022WarriorText": "Elmo della Tromba d'Acqua",
+ "headSpecialSummer2022WarriorNotes": "Convoglia il potere dell'acqua mentre trovi la concentrazione in questo intenso vortice. Aumenta la Forza di <%= str %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "headSpecialSummer2022MageText": "Elmo della Manta",
+ "headSpecialSummer2022MageNotes": "Tieni la testa protetta mentre ti immergi nei tuoi compiti o nelle acque più profonde. Aumenta la Percezione di <%= per %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "headSpecialSummer2022HealerText": "Pinne Pesce Angelo per le Orecchie",
+ "headSpecialSummer2022HealerNotes": "I pesci non hanno le orecchie, dici? Aspetta di dirglielo. Aumenta l'Intelligenza di <%= int %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "shieldSpecialSummer2022WarriorText": "Squalo Scontroso",
+ "shieldSpecialSummer2022WarriorNotes": "Scatta! Morde! E non si ferma mai e poi mai! Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "shieldSpecialSummer2022HealerText": "Increspature Curative",
+ "shieldSpecialSummer2022HealerNotes": "Manda magia ristoratrice in delicate increspature attraverso la barriera corallina. Aumenta la Costituzione di <%= con %>. Equipaggiamento in Edizione Limitata, Estate 2022.",
+ "armorMystery202207Text": "Armatura della Medusa Improvvisante",
+ "armorMystery202207Notes": "Quest'armatura ti farà sembrare favoloso e gelatinoso. Non conferisce alcun bonus. Oggetto abbonati luglio 2022.",
+ "headMystery202207Text": "Elmo della Medusa Improvvisante",
+ "headMystery202207Notes": "Hai bisogno di una mano con le tue attività? Diverse dozzine di tentacoli bioluminescenti bastano? Non conferisce alcun bonus. Oggetto abbonati luglio 2022.",
+ "armorArmoireFancyPirateSuitText": "Giacca Pirata Elegante",
+ "armorArmoireFancyPirateSuitNotes": "Vestiti bene con questa giacca raffinata mentre riordini la biblioteca della tua nave o discuti come equipaggio. Aumenta la Costituzione e l'Intelligenza di <%= attrs %> ciascuno. Scrigno Incantato: Set Pirata Elegante (Oggetto 1 di 3).",
+ "headArmoireFancyPirateHatText": "Cappello Pirata Elegante",
+ "headArmoireFancyPirateHatNotes": "Proteggiti dal sole e da eventuali gabbiani che volano sopra la tua testa mentre bevi il tè sul ponte della tua nave. Aumenta la Percezione di <%= attrs %>. Scrigno Incantato: Set Pirata Elegante (Oggetto 2 di 3).",
+ "shieldArmoireTreasureMapText": "Mappa del Tesoro",
+ "shieldArmoireTreasureMapNotes": "X segna il luogo del tesoro! Non sai mai cosa troverai quando segui questa pratica mappa per tesori leggendari: ori, gioielli, reliquie, o forse un'arancia pietrificata? Aumenta la Forza e l'Intelligenza di <%= attrs %> ciascuno. Scrigno Incantato: Set Pirata Elegante (Oggetto 3 di 3).",
+ "weaponArmoirePushBroomNotes": "Porta quest'utensile di pulizia nelle tue avventure e sarai sempre in grado di spazzare una scalinata esterna fuligginosa o eliminare le ragnatele dagli angoli. Aumenta la Forza e l'Intelligenza di <%= attrs %> ciascuno. Scrigno Incantato: Set Articoli per la Pulizia (Oggetto 1 di 3)",
+ "shieldArmoireDustpanNotes": "Tieni a portata di mano questa pratica paletta per la polvere ogni volta che pulisci. Grazie al suo incantesimo evanescente, non dovrai mai cercare un bidone della spazzatura in cui svuotarla. Aumenta l'Intelligenza e la Costituzione di <%= attrs %> ciascuna. Scrigno Incantato: Set Articoli per la Pulizia (Oggetto 3 di 3).",
+ "weaponArmoireFeatherDusterNotes": "Lascia che queste piume fantasiose si librino su tutti i tuoi vecchi oggetti per farli brillare come nuovi. Fai attenzione alla polvere sollevata per non starnutire! Aumenta la Costituzione e la Percezione di <%= attrs %> ciascuna. Scrigno Incantato: Set Articoli per la Pulizia (Oggetto 2 di 3)",
+ "weaponArmoirePushBroomText": "Scopa Larga",
+ "weaponArmoireFeatherDusterText": "Piumino Spolverino",
+ "shieldArmoireDustpanText": "Paletta",
+ "headMystery202208Text": "Coda di Cavallo Pimpante",
+ "headMystery202208Notes": "Divertiti a sfoggiare questi capelli voluminosi: possono raddoppiare tatticamente in un baleno! Non conferisce alcun bonus. Oggetto abbonati agosto 2022.",
+ "eyewearMystery202208Text": "Occhi Luccicosi",
+ "eyewearMystery202208Notes": "Induci i tuoi nemici in un falso senso di sicurezza con questi occhioni tremendamente carini. Non conferisce alcun bonus. Oggetto abbonati agosto 2022.",
+ "weaponMystery202209Text": "Manuale di Magia",
+ "weaponMystery202209Notes": "Questo libro ti guiderà lungo il viaggio di apprendimento nella creazione di magie. Non conferisce alcun bonus. Oggetto abbonati settembre 2022.",
+ "shieldMystery202209Notes": "Accrescere la tua conoscenza sulla magia richiede molto studio, ma puoi esser certo che apprezzerai la tua istruzione. Oggetto abbonati settembre 2022.",
+ "shieldMystery202209Text": "Pila di Libri Magici",
+ "eyewearArmoireComedyMaskText": "Maschera della Commedia",
+ "eyewearArmoireTragedyMaskText": "Maschera della Tragedia",
+ "eyewearArmoireComedyMaskNotes": "Urrà! Ecco una maschera pittoresca per il vostro cuor contento, ludico, che esprime gaiezza ed ilarità sul palco. Aumenta la Costituzione di <%= con %>. Scrigno Incantato: Set Maschere Teatrali (oggetto 1 di 2).",
+ "eyewearArmoireTragedyMaskNotes": "Ahimè! Ecco una maschera gravosa per il vostro povero attore, impettito, afflitto, che esprime affanno e rammarico sul palco. Aumenta l'Intelligenza di <%= int %>. Scrigno Incantato: Set Maschere Teatrali (oggetto 2 di 2)."
}
diff --git a/website/common/locales/it/groups.json b/website/common/locales/it/groups.json
index 7565dadcd4..e5f1b7632d 100644
--- a/website/common/locales/it/groups.json
+++ b/website/common/locales/it/groups.json
@@ -162,11 +162,11 @@
"onlyCreatorOrAdminCanDeleteChat": "Non autorizzato a rimuovere questo messaggio!",
"onlyGroupLeaderCanEditTasks": "Non autorizzato a modificare i compiti!",
"onlyGroupTasksCanBeAssigned": "Solo le attività del gruppo possono essere assegnate",
- "assignedTo": "Assegna a",
- "assignedToUser": "Assegnata a <%- userName %>",
- "assignedToMembers": "Assegnata a <%= userCount %> membri",
- "assignedToYouAndMembers": "Assegnata a te e <%= userCount %> membri",
- "youAreAssigned": "Assegnato a te",
+ "assignedTo": "Assegnato a",
+ "assignedToUser": "Assegnata: @<%- userName %>",
+ "assignedToMembers": "<%= userCount %> membri",
+ "assignedToYouAndMembers": "Tu, <%= userCount %> membri",
+ "youAreAssigned": "Assegnato: tu",
"taskIsUnassigned": "Questa attività non è assegnata a nessuno",
"confirmUnClaim": "Vuoi davvero rinunciare a questa attività?",
"confirmNeedsWork": "Vuoi davvero segnare che questa attività richiede altro lavoro?",
@@ -183,7 +183,7 @@
"removeClaim": "Rimuovi reclamo",
"onlyGroupLeaderCanManageSubscription": "Solo il leader del gruppo può gestire l'iscrizione del gruppo",
"yourTaskHasBeenApproved": "La tua attività <%- taskText %> è stata approvata.",
- "taskNeedsWork": "<%- managerName %> ha segnato che <%- taskText %> richiede altro lavoro.",
+ "taskNeedsWork": "<%- taskText %> è stato rimosso da @<%- managerName %>. Le ricompense per aver completato il lavoro sono state annullate.",
"userHasRequestedTaskApproval": "<%- user %> richiede approvazione per <%- taskName %>",
"approve": "Approva",
"approveTask": "Approva attività",
@@ -355,11 +355,11 @@
"PMCanNotReply": "Non puoi rispondere a questa conversazione",
"PMDisabled": "Disabilita i messaggi privati",
"claimRewards": "Richiedi Ricompense",
- "assignedDateAndUser": "Assegnato da @<%- username %> il <%= date %>",
+ "assignedDateAndUser": "Assegnato da @<%- username %>il<%= date %>",
"assignedDateOnly": "Assegnato il <%= date %>",
"managerNotes": "Note del manager",
"thisTaskApproved": "Questa attività è stata approvata",
- "chooseTeamMember": "Scegli un membro della squadra",
+ "chooseTeamMember": "Cerca un membro della squadra",
"unassigned": "Non assegnato",
"onlyPrivateGuildsCanUpgrade": "Solo le gilde private possono essere aggiornate ad un piano di gruppo.",
"bannedWordsAllowedDetail": "Selezionando questa opzione consentirai l'uso di parole vietate in questa gilda.",
@@ -379,5 +379,28 @@
"editGuild": "Modifica gilda",
"editParty": "Modifica squadra",
"leaveGuild": "Lascia la gilda",
- "sendGiftTotal": "Totale:"
+ "sendGiftTotal": "Totale:",
+ "chatTemporarilyUnavailable": "La chat è temporaneamente non disponibile. Per favore riprova più tardi.",
+ "lastCompleted": "Completato l'ultima volta il",
+ "youEmphasized": "Tu",
+ "newGroupsWelcome": "Benvenuto/a alla Nuova Bacheca delle Attività Condivise!",
+ "newGroupsWhatsNew": "Scopri le Novità:",
+ "newGroupsBullet02": "Chiunque può completare un'attività non assegnata",
+ "newGroupsBullet03": "Le attività condivise si resettano alla stessa ora per tutti per facilitare la collaborazione",
+ "newGroupsBullet06": "La visualizzazione dello stato delle attività ti permette di vedere velocemente quale assegnatario ha completato un'attività",
+ "newGroupsBullet08": "Il leader e gli amministratori del gruppo possono aggiungere attività velocemente dalla parte superiore delle colonne delle attività",
+ "newGroupsBullet10a": "Lascia un'attività non assegnata se qualunque membro può completarla",
+ "newGroupsBullet10c": "Assegna un'attività a più membri se hanno tutti bisogno di completarla",
+ "newGroupsVisitFAQ": "Visita le FAQ (Domande Frequenti) dal menù di Aiuto a tendina per maggiori informazioni.",
+ "newGroupsEnjoy": "Ci auguriamo che la nuova esperienza dei Piani di Gruppo ti piaccia!",
+ "assignTo": "Assegna a",
+ "newGroupsBullet01": "Interagisci con le attività direttamente dalla bacheca delle attività condivise",
+ "newGroupsBullet04": "Le Attività giornaliere condivise non arrecheranno danno quando non completate o quando appaiono nel messaggio Registra l'Attività di Ieri",
+ "newGroupsBullet07": "Attiva/disattiva la visualizzazione della schermata delle attività condivise sulla tua bacheca delle attività personale",
+ "dayStart": "Inizio giornata: <%= startTime %>",
+ "newGroupsBullet05": "Le attività condivise cambieranno colore se lasciate incomplete per aiutare a monitorarne il progresso",
+ "viewStatus": "Stato",
+ "newGroupsBullet09": "Un'attività condivisa può essere deselezionata per mostrare che necessita ancora di lavoro",
+ "newGroupsBullet10": "Lo stato delle assegnazioni determina le condizioni di completamento:",
+ "newGroupsBullet10b": "Assegna un'attività ad un membro cosicché solamente quel membro possa completarla"
}
diff --git a/website/common/locales/it/limited.json b/website/common/locales/it/limited.json
index e908bb0d15..5d41867cb9 100644
--- a/website/common/locales/it/limited.json
+++ b/website/common/locales/it/limited.json
@@ -131,13 +131,13 @@
"winter2019WinterStarSet": "Stella d'Inverno (Guaritore)",
"winter2019PoinsettiaSet": "Poinsettia (Ladro)",
"eventAvailability": "Disponibile fino al <%= date(locale) %>.",
- "dateEndMarch": "30 aprile",
- "dateEndApril": "19 aprile",
+ "dateEndMarch": "31 marzo",
+ "dateEndApril": "30 aprile",
"dateEndMay": "31 Maggio",
- "dateEndJune": "14 giugno",
+ "dateEndJune": "30 giugno",
"dateEndJuly": "31 Luglio",
"dateEndAugust": "31 agosto",
- "dateEndSeptember": "21 Settembre",
+ "dateEndSeptember": "30 settembre",
"dateEndOctober": "31 ottobre",
"dateEndNovember": "30 Novembre",
"dateEndJanuary": "31 gennaio",
@@ -220,5 +220,13 @@
"spring2022RainstormWarriorSet": "Tempesta (Guerriero)",
"spring2022ForsythiaMageSet": "Forsizia (Mago)",
"spring2022PeridotHealerSet": "Peridoto (Guaritore)",
- "aprilYYYY": "Aprile <%= year %>"
+ "aprilYYYY": "Aprile <%= year %>",
+ "summer2022MantaRayMageSet": "Manta (Mago)",
+ "summer2022AngelfishHealerSet": "Pesce Angelo (Guaritore)",
+ "dateEndDecember": "31 dicembre",
+ "februaryYYYY": "febbraio <%= year %>",
+ "octoberYYYY": "ottobre <%= year %>",
+ "summer2022CrabRogueSet": "Granchio (Ladro)",
+ "summer2022WaterspoutWarriorSet": "Tromba d'Acqua (Guerriero)",
+ "julyYYYY": "luglio <%= year %>"
}
diff --git a/website/common/locales/it/npc.json b/website/common/locales/it/npc.json
index 8992d33c29..cbf2ce303c 100644
--- a/website/common/locales/it/npc.json
+++ b/website/common/locales/it/npc.json
@@ -17,9 +17,9 @@
"mattBochText1": "Benvenuto alla Scuderia! Io sono Matt, il domatore.Ogni volta che completi una attività avrai una chance di ricevere un Uovo o una Pozione di Schiusa. Quando fai schiudere un uovo, apparirà qui! Fai click sull'immagine di un Animale per aggiungerlo al tuo Avatar. Dagli da mangiare il cibo che troverai e crescerà fino a diventare una potente Cavalcatura.",
"welcomeToTavern": "Benvenuto nella Taverna!",
"sleepDescription": "Hai bisogno di una pausa? Riposa nella locanda di Daniel per mettere in pausa alcune meccaniche di gioco di Habitica:",
- "sleepBullet1": "Le Attività Giornaliere incomplete non potranno danneggiarti",
- "sleepBullet2": "Le attività non perderanno la serie",
- "sleepBullet3": "I Boss non ti infliggeranno danni per le tue Attività Giornaliere incomplete",
+ "sleepBullet1": "Le tue Attività Giornaliere non completate non ti danneggeranno (i boss potranno causarti danno comunque in base alle Attività Giornaliere non completate dei tuoi compagni di Squadra)",
+ "sleepBullet2": "Il conteggio di serie delle tue attività giornaliere e delle tue abitudini non verranno resettate",
+ "sleepBullet3": "Il danno che provochi ai boss delle missioni o gli oggetti trovati nelle missioni di tipo collezione, rimarranno in sospeso fino al check out dalla Locanda",
"sleepBullet4": "Il tuo danno ai Boss o gli oggetti raccolti per le missioni rimarranno in pausa fino a quando esci dalla Locanda",
"pauseDailies": "Sospendi danni",
"unpauseDailies": "Riattiva danni",
diff --git a/website/common/locales/it/questscontent.json b/website/common/locales/it/questscontent.json
index 4562dec142..66f856b81c 100644
--- a/website/common/locales/it/questscontent.json
+++ b/website/common/locales/it/questscontent.json
@@ -1,7 +1,7 @@
{
"questEvilSantaText": "Babbo Bracconiere",
"questEvilSantaNotes": "Senti dei ruggiti di disperazione rimbombare attraverso le lande ghiacciate. Segui gli strazianti versi - scanditi da una malvagia risata - fino ad una radura nella foresta, dove vedi una grande orsa polare. È ingabbiata ed incatenata, ringhiando con forza il proprio desiderio di libertà. Sopra la gabbia, c'è un piccolo e malvagio folletto che danza indossando il tipico costume di Babbo Natale. Sconfiggi Babbo Bracconiere e salva la bestia!
Nota: \"Babbo Bracconiere\" può essere completato più di una volta ma ti darà solamente una cavalcatura rara.",
- "questEvilSantaCompletion": "Babbo Bracconiere strilla per la rabbia e scappa via, scomparendo nella notte. L'orsa, che ti è estremamente grata, cerca di dirti qualcosa con ruggiti e ringhi. La porti alla scuderia, dove il sussurratore Matt Boch ascolta la sua storia con un sussulto d'orrore. Ha un cucciolo! È scappato via quando la mamma orsa è stata catturata.",
+ "questEvilSantaCompletion": "Babbo Bracconiere strilla per la rabbia e scappa via, scomparendo nella notte. L'orsa, che ti è estremamente grata, cerca di dirti qualcosa con ruggiti e ringhi. La porti alla scuderia, dove il domatore Matt Boch ascolta la sua storia con un sussulto d'orrore. Ha un cucciolo! È scappato via quando la mamma orsa è stata catturata.",
"questEvilSantaBoss": "Babbo Bracconiere",
"questEvilSantaDropBearCubPolarMount": "Orso Polare (cavalcatura)",
"questEvilSanta2Text": "Trova il Cucciolo",
@@ -58,9 +58,9 @@
"questSpiderBoss": "Ragno del Gelo",
"questSpiderDropSpiderEgg": "Ragno (uovo)",
"questSpiderUnlockText": "Sblocca l'acquisto delle uova di Ragno nel Mercato",
- "questGroupVice": "Vice la Viverna Oscura",
- "questVice1Text": "Vyce, Parte 1: Liberati dall'Influsso del Drago",
- "questVice1Notes": "Dicono che una terribile minaccia si celi nelle caverne del monte Habitica. Un mostro la cui presenza stravolge la volontà dei forti eroi della terra, spingendoli verso le cattive abitudini e la pigrizia! La bestia è un enorme drago dall'immenso potere, ed è composto delle ombre stesse. Vyce, l'infida Viverna Oscura. Coraggiosi Habitanti, alzatevi e sconfiggete questa crudele creatura una volta per tutte, ma solo se vi ritenete all'altezza della sua incredibile potenza.
Vyce Parte 1:
Come potete aspettarvi di combattere la bestia se essa ha già il controllo su di voi? Non cadete vittime della pigrizia e del vizio! Lavorate duramente per liberarvi dall'influsso dell'oscuro drago!
",
+ "questGroupVice": "Vizio la Viverna Oscura",
+ "questVice1Text": "Vizio, Parte 1: Liberati dall'Influsso del Drago",
+ "questVice1Notes": "Dicono che una terribile minaccia si celi nelle caverne del monte Habitica. Un mostro la cui presenza stravolge la volontà dei forti eroi della terra, spingendoli verso le cattive abitudini e la pigrizia! La bestia è un enorme drago dall'immenso potere, ed è composto delle ombre stesse. Vizio, l'infida Viverna Oscura. Coraggiosi Habitanti, alzatevi e sconfiggete questa crudele creatura una volta per tutte, ma solo se vi ritenete all'altezza della sua incredibile potenza.
Come potete aspettarvi di combattere la bestia se essa ha già il controllo su di voi? Non cadete vittime della pigrizia e del vizio! Lavorate duramente per liberarvi dall'influsso dell'oscuro drago!",
"questVice1Boss": "Ombra di Vyce",
"questVice1Completion": "L'influenza di Vice su di te è dissipata, e senti il sorgere di una forza che non sapevi d'avere ritornare a te. Congratulazioni! Ma un nemico più spaventoso ti attende...",
"questVice1DropVice2Quest": "Vyce, Parte 2 (Pergamena)",
@@ -247,7 +247,7 @@
"questDilatoryDistress2DropHeadgear": "Tiara di Corallo di Fuoco (copricapo)",
"questDilatoryDistress3Text": "Dilatoria sotto Attacco, Parte 3: Non una semplice serva",
"questDilatoryDistress3Notes": "Segui le canocchie nelle profondità del Crepaccio, e scopri una fortezza subacquea. La Principessa Adva, scortata da altri teschi acquatici, ti aspetta nella sala principale. \"Mio padre ti ha mandato, vero? Digli che io rifiuto di tornare. Sono soddisfatta di rimanere qui ed esercitarmi nella mia stregoneria. Vattene ora, o scoprirai la furia della nuova regina dell'oceano!\" Ava sembra molto decisa, ma mentre parla, tu noti uno strano pendente di rubino sul suo collo brillare inquietantemente... Forse le sue illusioni cesserebbero se tu lo rompessi?",
- "questDilatoryDistress3Completion": "Finalmente riesci a strappare il pendente stregato dal collo di Adva e gettarlo via. Adva si stringe la testa. \"Dove sono? Cos'é successo qui?\" Dopo aver sentito la storia, si acciglia. \"Questa collana mi é stata data da uno strano ambasciatore - una donna chiama 'Tzina'. Non ricordo nulla dopo di ciò!\"
Tornato a Dilatoria, Manta é sopraffatto dalla gioia per il tuo successo. \"Permettimi di ricompensarti con questo tridente e scudo! Li ho ordinati da @aisean e @starsystemic come dono per Adva, ma... preferirei non mettere armi nelle sue mani nell'immediato futuro.\"",
+ "questDilatoryDistress3Completion": "Finalmente riesci a strappare il pendente stregato dal collo di Adva e gettarlo via. Adva si stringe la testa. \"Dove sono? Cos'é successo qui?\" Dopo aver sentito la storia, si acciglia. \"Questa collana mi é stata data da uno strano ambasciatore - una donna chiamata 'Tzina'. Non ricordo nulla dopo di ciò!\"
Tornato a Dilatoria, Manta é sopraffatto dalla gioia per il tuo successo. \"Permettimi di ricompensarti con questo tridente e scudo! Li ho ordinati da @aisean e @starsystemic come dono per Adva, ma... preferirei non mettere armi nelle sue mani nell'immediato futuro.\"",
"questDilatoryDistress3Boss": "Adva, la Sirena Usurpatrice",
"questDilatoryDistress3DropFish": "Pesce (cibo)",
"questDilatoryDistress3DropWeapon": "Tridente delle Maree Fragorose (Arma)",
@@ -446,7 +446,7 @@
"questStoikalmCalamity2Completion": "Le Monete dei Ghiacci vi guidano direttamente all'entrata nascosta di una caverna sapientemente celata. Sebbene il tempo fuori sia calmo e piacevole, con il sole che splende sulla distesa di neve, all'interno c'è un ululato come di un forte vento invernale. La Signora dei Ghiacci fa una smorfia e ti passa un elmo da Cavalcatore di Mammut. \"Mettiti questo,\" dice. \"Ne avrai bisogno.\"",
"questStoikalmCalamity2CollectIcicleCoins": "Monete di ghiaccio",
"questStoikalmCalamity2DropHeadgear": "Elmo del cavaliere di mammut (copricapo)",
- "questStoikalmCalamity3Text": "La Calamità di Stoikalm, Parte 3: il Terremoto del Drago Fatato dei Ghiacci",
+ "questStoikalmCalamity3Text": "La Calamità di Stoikalm, Parte 3: il Terremoto del Drago dei Ghiacci",
"questStoikalmCalamity3Notes": "I cunicoli contorti delle caverne del Drago Fatato dei Ghiacci luccicano con il ghiaccio...e con innumerevoli ricchezze. Tu guardi a bocca spalancata, ma la Signora dei Ghiacci continua a passo spedito senza degnarle di uno sguardo. \"Troppo appariscente,\" dice lei. \"Anche se è stato ottenuto ammirabilmente, da un rispettabile lavoro da mercenario e da prudenti investimenti bancari. Guarda più avanti.\" Strizzando gli occhi, individui una enorme pila di oggetti rubati nascosta nelle ombre.
Una voce sibilante ti sibila mentre avanzi. \"La mia deliziosa riserva! Non riuscirete a riappropriarvene rubandola a me!\" Un corpo sinuoso scivola dal mucchio: è la Regina dei Draghi Fatati dei Ghiacci in persona! Hai appena il tempo di notare gli strani braccialetti che splendono sui suoi polsi e il selvaggio bagliore dei suoi occhi prima che lei emetta un ululato che scuote la terra attorno a te.",
"questStoikalmCalamity3Completion": "Domi la Regina dei Draghi Fatati dei Ghiacci, dando alla Signora dei Ghiacci tempo per mandare in frantumi i braccialetti luminosi. La Regina si irrigidisce in una posa apparentemente mortificata, quindi la nasconde subita con una posa sprezzante. \"Sentiti libera di rimuovere questi oggetti estranei,\" dice. \"Ho paura che non ci stiano bene con le nostre decorazioni.\"
\"Questo è certo, anche perché gli avete rubati,\" dice @Beffymaroo. \"Evocando mostri dalla terra.\"
La Regina dei Draghi Fatati dei Ghiacci appare irritata. \"Prenditela con quel miserabile braccialetto, venditrice,\" dice. \"Tu vuoi Tzina. In pratica ero indipendente.\"
La Signora dei Ghiacci ti da una pacca sul braccio. \"Hai agito bene oggi,\" dice, offrendoti una lancia e un corno dalla pila di tesori. \"Siine orgoglioso.\"",
"questStoikalmCalamity3Boss": "Regina dei Draghi Fatati dei Ghiacci",
@@ -489,7 +489,7 @@
"questMayhemMistiflying2CollectBlueMistiflies": "Mosche Fatate Blu",
"questMayhemMistiflying2CollectGreenMistiflies": "Mosche Fatate Verdi",
"questMayhemMistiflying2DropHeadgear": "Cappello del Messaggero Malandrino Arcobaleno (Equipaggiamento per la testa)",
- "questMayhemMistiflying3Text": "Caos a Fantalata, Parte 3: un postino è estremamente rude",
+ "questMayhemMistiflying3Text": "Caos a Fantalata, Parte 3: Dove un Postino è Estremamente Maleducato",
"questMayhemMistiflying3Notes": "Le Mosche Fatate girano intensamente attraverso il tornado che quasi non si vedono. Strizzando gli occhi, noti molte sagome alate volare al centro della terribile tempesta.
\"Oh cielo,\" sospira il Giullare d'Aprile, quasi soffocato dall'ululato del tempo. \"Sembra che Winny sia andato ed è stato posseduto. Questo è un bel problema. Poteva succedere a chiunque.\"
\"Il Lavoratore del Vento!\" Ti urla @Beffymaroo. \"È il mago-messaggero più talentuoso di Fantalata da quando è così abile con la magia meteo. Normalmente è un postino molto educato!\"
Come se per contrastare questa affermazione, Il Lavoratore del Vento emette un urlo furioso e anche con le tue vesti magiche, la tempesta quasi ti strappa dalla tua cavalcatura.
\"Quella sgargiante maschera è nuova,\" commenta il Giullare d'Aprile. \"Forse dovresti togliergliela?\"
È una buona idea... ma il mago inferocito non ha intenzione di arrendersi senza un combattimento.",
"questMayhemMistiflying3Completion": "Proprio quando pensavi di non poter più resistere al vento, riesci a strappare la maschera dalla faccia del Lavoratore del Vento. Istantaneamente, il tornado viene risucchiato via lasciando solamente fragranti brezze e la luce del sole. Il Lavoratore del Vento si guarda intorno disorientato. \"Dov'è andata?\"
\"Chi?\" chiede il tuo amico @khdarkwolf.
\"Quella dolce donna che si è offerta di consegnare il pacco per me. Tzina.\" Mentre riconosce la città fluttuante, la sua espressione si inscurisce. \"Poi di nuovo, forse non era così dolce...\"
Il Giullare d'Aprile gli da delle pacche sulla schiena, poi vi consegna due buste scintillanti. \"Qui. Perché non lasci questo angosciato compagno riposare e prendiamo il controllo della posta per un po? Sento la magia in quelle buste, ne varrà la pena.\"",
"questMayhemMistiflying3Boss": "Il Lavoratore del Vento",
diff --git a/website/common/locales/it/settings.json b/website/common/locales/it/settings.json
index 72570f5496..bf6a3d8f52 100644
--- a/website/common/locales/it/settings.json
+++ b/website/common/locales/it/settings.json
@@ -215,5 +215,9 @@
"transaction_create_guild": "Gilda creata",
"transaction_subscription_perks": "Dai benefici dell'abbonamento",
"adjustment": "Regolazione",
- "dayStartAdjustment": "Regolazione Inizio Giornata"
+ "dayStartAdjustment": "Regolazione Inizio Giornata",
+ "passwordSuccess": "Password cambiata con successo",
+ "giftSubscriptionRateText": "$<%= price %> USD per <%= months %> months",
+ "transaction_create_bank_challenge": "Sfida della banca creata",
+ "transaction_admin_update_balance": "Dato dall'amministratore"
}
diff --git a/website/common/locales/it/subscriber.json b/website/common/locales/it/subscriber.json
index e9dc87bb70..1d3418e9a9 100644
--- a/website/common/locales/it/subscriber.json
+++ b/website/common/locales/it/subscriber.json
@@ -208,5 +208,8 @@
"howManyGemsPurchase": "Quante Gemme vorresti comprare?",
"needToPurchaseGems": "Vuoi acquistare Gemme come regalo?",
"sendAGift": "Invia regalo",
- "mysterySet202206": "Set Spiriti del Mare"
+ "mysterySet202206": "Set Spiriti del Mare",
+ "mysterySet202207": "Set Medusa Improvvisante",
+ "mysterySet202208": "Set Coda di Cavallo Pimpante",
+ "mysterySet202209": "Set dell'Erudito Magico"
}
diff --git a/website/common/locales/it/tasks.json b/website/common/locales/it/tasks.json
index 5448325a50..8e54270ea4 100644
--- a/website/common/locales/it/tasks.json
+++ b/website/common/locales/it/tasks.json
@@ -139,5 +139,6 @@
"resetCounter": "Resetta il Contatore",
"adjustCounter": "Aggiusta il Contatore",
"counter": "Contatore",
- "editTagsText": "Modifica etichette"
+ "editTagsText": "Modifica etichette",
+ "taskSummary": "<%= type %> Riepilogo"
}
diff --git a/website/common/locales/ja/achievements.json b/website/common/locales/ja/achievements.json
index 475a8add37..bee5b7913b 100644
--- a/website/common/locales/ja/achievements.json
+++ b/website/common/locales/ja/achievements.json
@@ -116,8 +116,8 @@
"achievementVioletsAreBlueText": "わたあめブルーのペットをすべて集めました。",
"achievementVioletsAreBlue": "スミレは青い",
"achievementDomesticated": "ゆかいな牧場",
- "achievementDomesticatedModalText": "飼育できるのペットクエストを完了しました!",
- "achievementDomesticatedText": "フェレット、モルモット、おんどり、空飛ぶ豚、ネズミ、ウサギ、馬、牛のペットクエストを完了しました!",
+ "achievementDomesticatedModalText": "飼いならされたペットをすべて集めました!",
+ "achievementDomesticatedText": "飼いならされたペット(フェレット、モルモット、おんどり、空飛ぶ豚、ネズミ、ウサギ、馬、牛)のすべての基本の色をたまごからかえしました!",
"achievementShadyCustomerModalText": "影のペットをすべて集めました!",
"achievementShadeOfItAll": "全てを影に染める",
"achievementShadeOfItAllText": "影の乗騎をすべて手なずけました。",
@@ -128,6 +128,15 @@
"achievementZodiacZookeeperModalText": "十二支のペットをすべて集めました!",
"achievementZodiacZookeeperText": "基本のネズミ、牛、トラ、ウサギ、ドラゴン、ヘビ、馬、羊、さる、雄鶏、狼、空飛ぶ豚のペットをすべて集めました!",
"achievementBirdsOfAFeather": "同じ羽の鳥は群れを作る",
- "achievementBirdsOfAFeatherText": "基本の空飛ぶペット(空飛ぶ豚、フクロウ、オウム、翼竜、フリフォン、たか、クジャク、おんどり)をすべて集めました。",
- "achievementBirdsOfAFeatherModalText": "空飛ぶペットをすべて集めました!"
+ "achievementBirdsOfAFeatherText": "基本の空飛ぶペット(空飛ぶ豚、フクロウ、オウム、翼竜、グリフォン、たか、クジャク、おんどり)をすべて集めました!",
+ "achievementBirdsOfAFeatherModalText": "空飛ぶペットをすべて集めました!",
+ "achievementGroupsBeta2022": "インタラクティブベータテスター",
+ "achievementGroupsBeta2022Text": "あなたとグループはHabiticaのテストを助ける非常に貴重なフィードバックを行いました。",
+ "achievementGroupsBeta2022ModalText": "あなたとあなたのグループは実験に参加しフィードバックを行うことでHabiticaを手伝いました!",
+ "achievementReptacularRumble": "爬虫類の轟き",
+ "achievementReptacularRumbleText": "基本の色の爬虫類のペット(アリゲーター、翼竜、ヘビ、トリケラトプス、ウミガメ、ティラノサウルス、ヴェロキラプトル)を全てたまごからかえしました!",
+ "achievementReptacularRumbleModalText": "爬虫類のペットを全て集めました!",
+ "achievementWoodlandWizard": "木の間の魔法使い",
+ "achievementWoodlandWizardModalText": "森のペットを全部集めました!",
+ "achievementWoodlandWizardText": "森の生き物――アナグマ、クマ、鹿、狐、カエル、ハリネズミ、フクロウ、カタツムリ、リス、木人を、すべての基本色で孵化させました!"
}
diff --git a/website/common/locales/ja/backgrounds.json b/website/common/locales/ja/backgrounds.json
index cd4726a677..3673f3db75 100644
--- a/website/common/locales/ja/backgrounds.json
+++ b/website/common/locales/ja/backgrounds.json
@@ -700,5 +700,33 @@
"backgrounds052022": "セット96:2022年5月リリース",
"backgroundOnACastleWallText": "城郭の上",
"backgroundEnchantedMusicRoomNotes": "魔法の音楽室で楽器を演奏しましょう。",
- "backgroundEnchantedMusicRoomText": "魔法の音楽室"
+ "backgroundEnchantedMusicRoomText": "魔法の音楽室",
+ "backgroundBeachWithDunesText": "海辺の砂丘",
+ "backgrounds062022": "セット97:2022年6月リリース",
+ "backgroundBeachWithDunesNotes": "海辺の砂丘を探検しましょう。",
+ "backgrounds072022": "セット98:2022年7月リリース",
+ "backgroundBioluminescentWavesText": "夜光虫の波",
+ "backgroundBioluminescentWavesNotes": "夜光虫の光にうっとりしましょう。",
+ "backgroundUnderwaterCaveText": "水中洞窟",
+ "backgroundUnderwaterCaveNotes": "水中洞窟を探検しましょう。",
+ "backgroundUnderwaterStatuesText": "水中彫像庭園",
+ "backgroundUnderwaterStatuesNotes": "水中彫像庭園にまばたきしないでいましょう。",
+ "backgroundMountainWaterfallNotes": "山の滝に見とれましょう。",
+ "backgroundMountainWaterfallText": "滝のある山",
+ "backgroundSailboatAtSunsetText": "夕焼けとヨット",
+ "backgroundSailboatAtSunsetNotes": "ヨットの上で夕焼けの美しさを楽しみましょう。",
+ "backgrounds082022": "セット99:2022年8月リリース",
+ "backgroundMessyRoomText": "散らかった部屋",
+ "backgroundMessyRoomNotes": "散らかった部屋は片付けましょう。",
+ "backgroundByACampfireText": "キャンプファイアのかたわらで",
+ "backgroundByACampfireNotes": "キャンプファイアの火にあたりましょう。",
+ "backgroundRainbowEucalyptusText": "虹のユーカリ",
+ "backgroundRainbowEucalyptusNotes": "虹のユーカリの木立を鑑賞しましょう。",
+ "backgrounds092022": "セット100:2022年9月リリース",
+ "backgroundTheatreStageText": "劇場の大舞台",
+ "backgroundTheatreStageNotes": "劇場の大舞台でパフォーマンスしよう。",
+ "backgroundAutumnPicnicText": "秋のピクニック",
+ "backgroundAutumnPicnicNotes": "秋のピクニックを楽しもう。",
+ "backgroundOldPhotoText": "古写真",
+ "backgroundOldPhotoNotes": "古写真風にポーズを決めよう。"
}
diff --git a/website/common/locales/ja/communityguidelines.json b/website/common/locales/ja/communityguidelines.json
index 380be912f1..11ccaced7c 100644
--- a/website/common/locales/ja/communityguidelines.json
+++ b/website/common/locales/ja/communityguidelines.json
@@ -16,7 +16,7 @@
"commGuideList02F": "キャンプ場やその話題がふさわしくない場所での、不和を引き起こす長い議論は避けましょう。誰かの発言がガイドラインに従ってはいるけれどもあなたにとって不快と感じる場合、それを丁寧に伝えるのは構いません。もし誰かから、あなたの発言が他者を不快にしたと指摘されたら、怒りにまかせて返信をしないで、落ち着く時間をとりましょう。でも、その会話があなたをムキにさせたり、ひどく感情的にさせたり、有害だと感じさせるならば、関わるのをやめましょう。代わりに、その投稿のことを運営までお知らせください。モデレーターができるだけ早く対応するでしょう。もしくはadmin@habitica.comへメールを送ってください。その際、役に立ちそうならスクリーンショットを添付してください。",
"commGuideList02G": "モデレーターからの要請にはすぐに従ってください。これには、以下に限ったことではありませんが、特定の場所での投稿を控えることや、不適切なコンテンツをプロフィールから削除すること、議論を続けるためによりふさわしい場所に移動することなどが含まれます。モデレーターと議論しないで下さい。モデレーションにコメントや懸念がある場合はコミュニティマネージャーまでメール(admin@habitica.com )をお願いします。",
"commGuideList02J": "スパム禁止 。スパム行為には以下の行為が含まれ、かつまたそれらに限定するものではありません : 同じコメントや質問を複数の場所に投稿すること、説明なしまたは話の流れと無関係にリンクを投稿すること、無意味なメッセージを投稿すること、ギルドやパーティ、チャレンジの宣伝を複数の場所に投稿すること、大量のメッセージを連続的に投稿すること。もしリンクがクリックされてあなたに何らかの利益が生じる場合、あなたはその旨をメッセージ内で開示しなければなりません。そうでなければ、これもまたスパム行為とみなされるでしょう。モデレーターは独自の裁量で何がスパムかを決定するでしょう。",
- "commGuideList02K": "公共のチャットスペースでは大きなヘッダーテキストを投稿するのは避けてください、特にキャンプ場においては。すべて大文字を使った投稿のように、あなたが叫んでいるような印象を与え、居心地のいい雰囲気を壊してしまいます。",
+ "commGuideList02K": "公共のチャットスペース、特にキャンプ場においては、過度に大きく表示したテキストを投稿するのは避けてください。全て大文字にした英文の投稿と同様に、あなたが叫んでいるような印象を与え、居心地のいい雰囲気を壊してしまいます。",
"commGuideList02L": "公共のチャットでは個人情報を交換しないことを強くお勧めします――特に、本人確認に使えるような情報は。個人情報の一例としては、次のようなものが含まれます:あなたの住所、メールアドレス、API トークン/パスワード。これはあなたの安全のためにお伝えしています! スタッフやモデレーターは各自の裁量により、そのような情報を含む投稿を削除することができます。もしあなたが非公開のギルドやパーティー、またはプライベート メッセージで個人情報を求められた際は、丁重に断ったうえで、以下の両方の方法でスタッフとモデレータに知らせることを強く推奨します。1) メッセージを報告する(メッセージ内の旗のアイコンをクリック)。2)スクリーンショットを添えて admin@habitica.comにメールを送る。",
"commGuidePara019": "プライベートスペースにおいては、より自由な話題で議論することができます。しかし、中傷的、差別的、暴力的、または脅迫的な内容を投稿するなどの利用規約違反は許されません。 チャレンジの名前は優勝者の公開プロフィールに表示されるため、たとえプライベートスペース内で開催するとしても、すべてのチャレンジの名前は公共スペースのガイドラインを守らなくてはならない点にご注意ください。",
"commGuidePara020": "プライベート メッセージ(PM)には、追加のガイドラインがあります。あなたがだれかにブロックされた場合、他のどんな手段であれ連絡してブロックの取り消しを求めることは禁止です。また、だれかにサポートに関するPMを送るべきではありません(サポートに関する質問と回答は、コミュニティ全体に役立つものだからです)。最後に、有料のコンテンツを求めるPMを誰かに送らないでください。",
@@ -122,10 +122,10 @@
"commGuidePara069": "以下の優秀なアーティスト達がこれらのイラストに貢献しました:",
"commGuidePara017": "以下は要約版です。できればさらに下にある詳細版をご覧下さい。",
"commGuideList01A": "利用規約はプライベートギルド、パーティーチャット、メッセージになど全てのスペースに適用されます。",
- "commGuideList01C": "すべての年齢のためにすべての会話は適当でなければなりません—猥褻さのない。",
- "commGuideList01D": "モデレーターの要求に準拠ください。",
- "commGuideList01B": "禁止:ミーム、画像、ジョークなどなど、暴力的、脅迫的、差別の助長などのコミュニケーション。",
- "commGuideList01F": "有料アイテムを要求しない。スパム行為禁止。過度に大きなフォントで投稿しない。",
+ "commGuideList01C": "全ての会話は、全ての年齢層に対して適切である必要があります。冒涜的な言葉は使ってはいけません。",
+ "commGuideList01D": "モデレーターの要請には従っていただくようお願いいたします。",
+ "commGuideList01B": "禁止:暴力的、脅迫的、差別の助長などにあたるコミュニケーション。これらはミーム、画像、ジョークにおいても禁止です。",
+ "commGuideList01F": "有料アイテムの物乞い、スパム行為は禁止です。過度に大きく表示したテキスト、全て大文字にして強調した英文は投稿しないでください。",
"commGuideList01E": "キャンプ場のチャットで争いをけしかけたり、争いに参加しないで下さい。",
"commGuideList02M": "ジェム、有料プラン、グループプランのメンバー権限をねだったり求めてはいけません。キャンプ場のチャット、プライベートギルドのチャット、公共ギルドチャット、PMのいずれでも許可されていません。もし有料アイテムを求めるようなメッセージを受け取ったら、そのメッセージ内の報告アイコン(旗のアイコン)で知らせて下さい。同じ行為を繰り返したり、あまりにひどいジェムや有料プランの要求をすると、アカウントを停止します。",
"commGuideList05H": "他のユーザーから現金やそれに相当するものを過度に(もしくは繰り返し)だまし取ろうとしたり、無理矢理貰おうとする行為",
diff --git a/website/common/locales/ja/content.json b/website/common/locales/ja/content.json
index 60a7d1a1f7..0914879051 100644
--- a/website/common/locales/ja/content.json
+++ b/website/common/locales/ja/content.json
@@ -371,5 +371,6 @@
"hatchingPotionMoonglow": "月光の",
"hatchingPotionSolarSystem": "太陽系の",
"hatchingPotionOnyx": "オニキスの",
- "hatchingPotionVirtualPet": "ヴァーチャルペットの"
+ "hatchingPotionVirtualPet": "ヴァーチャルペットの",
+ "hatchingPotionPorcelain": "白磁の"
}
diff --git a/website/common/locales/ja/faq.json b/website/common/locales/ja/faq.json
index 550ca95104..b8b506e3af 100644
--- a/website/common/locales/ja/faq.json
+++ b/website/common/locales/ja/faq.json
@@ -54,5 +54,7 @@
"webFaqAnswer12": "ワールドボスはキャンプ場に現れる特別なモンスターです。すべてのユーザーは自動的にこのボスと戦うことになっており、すべてのユーザーが達成した日課やスキルで、常にボスにダメージを与えます。通常のクエストに参加しながらでもワールドボスと戦うことができます。あなたのタスクやスキルの効果は、ワールドボスと、ボスまたはコレクション クエストとの両方にカウントされます。ワールドボスは、あなたにもあなたのアカウントにも一切ダメージを与えません。その代わり、ユーザーたちが消化しそこねた日課に応じて怒りゲージがたまっていきます。この怒りゲージがいっぱいになると、ワールドボスはサイト内のNPCのうち一人に攻撃を加え、そのキャラクターの姿が変わってしまいます。詳しくは [過去のワールドボス](https://habitica.fandom.com/ja/wiki/ワールドボス) をお読みください。",
"iosFaqStillNeedHelp": "このリストや [Wiki FAQ](https://habitica.fandom.com/ja/wiki/FAQ) にはない質問がある場合は、メニュー > キャンプ場 もしくは[日本語話者ギルド](https://habitica.com/groups/guild/1f99d3df-bb93-4505-bf3b-6f348e1896f3)にあるチャットで聞いてみましょう! 喜んで手助けします。",
"androidFaqStillNeedHelp": "このリストや [Wiki FAQ](https://habitica.fandom.com/ja/wiki/FAQ) にはない質問がある場合は、メニュー > キャンプ場 もしくは[日本語話者ギルド](https://habitica.com/groups/guild/1f99d3df-bb93-4505-bf3b-6f348e1896f3)にあるチャットで聞いてみましょう! 喜んで手助けします。",
- "webFaqStillNeedHelp": "このリストや [Wiki FAQ](https://habitica.fandom.com/ja/wiki/FAQ) にはない質問がある場合は、[Habitica Help ギルド](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)もしくは[日本語話者ギルド](https://habitica.com/groups/guild/1f99d3df-bb93-4505-bf3b-6f348e1896f3)で聞いてみましょう! 喜んで手助けします。"
+ "webFaqStillNeedHelp": "このリストや [Wiki FAQ](https://habitica.fandom.com/ja/wiki/FAQ) にはない質問がある場合は、[Habitica Help ギルド](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)もしくは[日本語話者ギルド](https://habitica.com/groups/guild/1f99d3df-bb93-4505-bf3b-6f348e1896f3)で聞いてみましょう! 喜んで手助けします。",
+ "faqQuestion13": "グループ プランとは?",
+ "webFaqAnswer13": "## グループ プランはどのように機能しますか?\n\n[グループ プラン](/group-plans) を使うと、パーティやギルドで、個人のタスクボードと同じような共有タスクボードにアクセスすることができます。これは Habitica の共有機能で、グループの誰でもタスクを作成し、チェックすることができます。\n\nまた、メンバーのロール、ステータス表示、タスクの割り当てなど、よりコントロールしやすい機能が利用できます。グループ プランの詳細については、[wiki を参照](https://habitica.fandom.com/wiki/Group_Plans) してください!\n\n## グループプランのメリットは?\n\nグループプランは、少人数で共同作業を行う場合に最適です。2〜5名程度での使用がおすすめです。\n\nグループ プランは、親子やパートナーなど、家族で利用する場合にも最適です。共通の目標、家事、責任などを1つのボード上で簡単に追跡できます。\n\nグループプランは、目標を共有する同僚のチームや、従業員にゲーミフィケーションを紹介したい管理職にも便利です。\n\n## グループ活用のための簡単なヒント\n\nここでは、新しいグループを使い始めるための簡単なヒントをいくつか紹介します。詳しくは、次のセクションで説明します。\n\n* タスクを作成・編集する権限を与えるために、メンバーを管理者にする\n* 誰にでもできて、一度だけ行えばよいタスクは未割り当てのままにする\n* タスクを1人に割り当てて、他の人がそのタスクを完了できないようにする\n* 複数の人がタスクを完了する必要がある場合は、複数の人にタスクを割り当てます\n* 共有タスクをパーソナルボードに表示し、見逃しを防止します\n* 複数の人に割り当てられたタスクでも、完了するとごほうびがもらえます\n* 完了したタスクのごほうびはチームメンバー間で共有または分割されません\n* チームボード上のタスクカラーを使用すると、タスクの平均完了率を判断できます\n* チームボード上のタスクを定期的にレビューし、それらがまだ適切であることを確認します\n* 日課を忘れても、あなたやあなたのチームにダメージを与えることはありませんが、タスクの色が劣化します\n\n## グループの他のメンバーがタスクを作成するには?\n\nグループリーダーと管理者だけがタスクを作成することができます。もし、グループのメンバーにタスクを作成させたい場合は、グループ情報タブでメンバーリストを表示し、そのメンバーの名前の横にあるドットアイコンをクリックして、そのメンバーを管理者に昇格させる必要があります。\n\n## タスクを割り当てる方法は?\n\nグループプランを使用すると、他のグループメンバにタスクを割り当てることができます。タスクの割り当ては、委任に最適です。誰かにタスクを割り当てると、他のメンバーはそのタスクを完了することができなくなります。\n\nまた、複数のメンバーで完了させる必要があるタスクは、複数の人に割り当てることができます。例えば、全員が歯を磨かなければならない場合、タスクを作成し、各メンバーに割り当てます。すると、全員がそのタスクにチェックを入れ、それぞれのごほうびをもらうことができます。メインタスクは、全員がチェックした時点で完了として表示されます。\n\n## 未割り当てのタスクはどのように機能しますか?\n\n未割り当てのタスクは、グループ内の誰でも完了することができます。そのため、タスクを未割り当てにしておくと、どのメンバーでも完了できるようになります。例えば、ゴミ出し。ゴミ出しをした人が未割り当てのタスクにチェックを入れれば、全員が完了したものとして表示されます。\n\n## 同期された日のリセットはどのように機能しますか?\n\n共有タスクは、すべてのユーザーが共有タスクボードの同期を維持できるように、同時にリセットされます。この時間は共有タスクボードに表示され、グループリーダーの1日の開始時間によって決定されます。共有タスクは自動的にリセットされるため、翌日のチェックイン時に前日の未完了の共有された日課を完了することはできません。\n\nなお、共有された日課が未達成でもダメージはありませんが、進捗状況を可視化するために色が劣化します。\n\n## モバイル アプリでグループを使用する方法は?\n\nモバイルアプリはまだすべてのグループプランの機能を完全にサポートしていませんが、iOS と Android アプリから共有タスクを完了させることはできます。ブラウザ版の Habitica で、グループの共有タスクボードに移動し、「タスクのコピー」を ON にすると、開いている共有タスクと割り当てられた共有タスクが全てのプラットフォームであなたの個人タスクボードに表示されるようになります。\n\n## グループの共有タスクとチャレンジの違いは?\n\nグループ プランの共有タスクボードは、常に更新され、対話することができるという点で、チャレンジよりも動的です。チャレンジは、多くの人に送信する1つのタスクセットがある場合に役立ちます。\n\nまた、グループプランは有料機能ですが、チャレンジは誰でも無料で利用できます。\n\nチャレンジでは、特定のタスクを割り当てることができず、共有日のリセットもありません。一般に、チャレンジはカスタマイズ性が低く、直接的な対話ができません。"
}
diff --git a/website/common/locales/ja/gear.json b/website/common/locales/ja/gear.json
index 112fba3292..9bcf0c4211 100644
--- a/website/common/locales/ja/gear.json
+++ b/website/common/locales/ja/gear.json
@@ -289,7 +289,7 @@
"weaponMystery201505Text": "緑の騎士のやり",
"weaponMystery201505Notes": "この緑と銀色のやりは、多くの敵を乗騎から引きずり下ろしました。効果なし。2015年5月有料会員アイテム。",
"weaponMystery201611Text": "豊穣の角",
- "weaponMystery201611Notes": "美味しくて栄養のある食べ物は全てこの角から溢れ出します。さあ祭りを楽しみましょう!効果なし。2016年11月購読者限定装備。",
+ "weaponMystery201611Notes": "美味しくて栄養のある食べ物は全てこの角から溢れ出します。さあ祭りを楽しみましょう!効果なし。2016年11月有料会員アイテム。",
"weaponMystery201708Text": "溶岩の剣",
"weaponMystery201708Notes": "この剣の燃えるような輝きは暗い赤のタスクさえも瞬時に消し去ります! 効果なし。2017年8月有料会員アイテム。",
"weaponMystery201811Text": "素晴らしい魔術師のつえ",
@@ -932,8 +932,8 @@
"headSpecialFallMageNotes": "この帽子のすべての繊維に魔法が編みこまれています。知覚が<%= per %>上がります。2014年秋の限定装備。",
"headSpecialFallHealerText": "ヘッドバンデージ",
"headSpecialFallHealerNotes": "きわめて衛生的でとてもオシャレ。知能が<%= int %>上がります。2014年秋の限定装備。",
- "headSpecialNye2014Text": "ばかげたパーティーハット",
- "headSpecialNye2014Notes": "ばかげたパーティーハットをもらいました! 新年を告げる鐘を聞きながら、誇りをもってかぶりましょう! 効果なし。",
+ "headSpecialNye2014Text": "おバカなパーティーハット",
+ "headSpecialNye2014Notes": "おバカなパーティーハットをもらいました! 新年を告げる鐘を聞きながら、誇りをもってかぶりましょう! 効果なし。",
"headSpecialWinter2015RogueText": "つららのドラゴンのマスク",
"headSpecialWinter2015RogueNotes": "あなたは本当に確かに本物のつららのドラゴンです。つららのドラゴンの群れに潜入することはありません。極寒のつららのドラゴンの巣穴にあると噂されている富の集積所にもまったく興味がありません。ガオー。知覚が<%= per %>上がります。2014年-2015年冬の限定装備。",
"headSpecialWinter2015WarriorText": "ジンジャークッキーのかぶと",
@@ -1127,7 +1127,7 @@
"headMystery201610Text": "霊的な炎",
"headMystery201610Notes": "この炎は、まとう者の霊力を目覚めさせるでしょう。効果なし。2016年10月有料会員アイテム。",
"headMystery201611Text": "意匠を凝らした祭りの帽子",
- "headMystery201611Notes": "この羽根帽子をかぶれば、あなたは祭りで最も目を引く人間違いなしです。効果なし。2016年購読者限定装備。",
+ "headMystery201611Notes": "この羽根帽子をかぶれば、あなたは祭りで最も目を引く人間違いなしです。効果なし。2016年11月有料会員アイテム。",
"headMystery201612Text": "くるみ割り人形の兜",
"headMystery201612Notes": "この背の高い素晴らしい兜は、あなたの休日のファッションをひときわ目立たせてくれるでしょう!効果なし。2016年12月有料会員アイテム。",
"headMystery201702Text": "恋盗人のフード",
@@ -1522,11 +1522,11 @@
"backMystery201510Text": "ゴブリンのしっぽ",
"backMystery201510Notes": "強力に巻きつきます! 効果なし。2015年10月有料会員アイテム。",
"backMystery201602Text": "罪作りな人のケープ",
- "backMystery201602Notes": "このケープを一振りすれば、敵はあなたにメロメロです! 効果なし。2016年2月購読者限定装備。",
+ "backMystery201602Notes": "このケープを一振りすれば、敵はあなたにメロメロです! 効果なし。2016年2月有料会員アイテム。",
"backMystery201608Text": "雷のケープ",
"backMystery201608Notes": "この渦巻きのケープで、嵐の空を飛びましょう! 効果なし。2016年8月有料会員アイテム。",
"backMystery201702Text": "恋盗人のケープ",
- "backMystery201702Notes": "このケープを一振りすれば、周囲のものは皆あなたの魅力にクラクラです!効果なし。2017年2月購読者限定装備。",
+ "backMystery201702Notes": "このケープを一振りすれば、周囲のものは皆あなたの魅力にクラクラです!効果なし。2017年2月有料会員アイテム。",
"backMystery201704Text": "おとぎ話の羽根",
"backMystery201704Notes": "このキラキラした羽根はあなたをどこへでも連れて行ってくれるでしょう。たとえ魔法生物が支配する隠された領域でさえも。効果なし。2017年4月有料会員アイテム。",
"backMystery201706Text": "ぼろぼろの海賊旗",
@@ -2616,9 +2616,9 @@
"eyewearMystery202204BNotes": "今日の気分は?この愉快な画面で自分を表現してみましょう。効果なし。2021年4月の有料会員アイテム。",
"eyewearMystery202204ANotes": "今日の気分は?この愉快な画面で自分を表現してみましょう。効果なし。2021年4月の有料会員アイテム。",
"backMystery202205Text": "黄昏の翼",
- "backMystery202205Notes": "雄大な翼の力強いはばたきが砂丘にこだまします。効果なし。2021年5月の有料会員アイテム。",
+ "backMystery202205Notes": "雄大な翼の力強いはばたきが砂丘にこだまします。効果なし。2022年5月の有料会員アイテム。",
"headAccessoryMystery202205Text": "黄昏の翼をもつドラゴンの角",
- "headAccessoryMystery202205Notes": "砂漠の日の入りのようにまばゆい角です。効果なし。2021年5月の有料会員アイテム。",
+ "headAccessoryMystery202205Notes": "砂漠の日の入りのようにまばゆい角です。効果なし。2022年5月の有料会員アイテム。",
"weaponArmoireHuntingHornText": "狩猟用ホルン",
"weaponArmoireHuntingHornNotes": "プオーーー!プオー!プオー!この角笛を吹いて冒険やクエストにパーティーを集めましょう。力が<%= str %>、知能が<%= int %>上がります。ラッキー宝箱:楽器セット(3個中1つ目のアイテム)",
"headArmoireStrawRainHatNotes": "この耐水の円錐形の帽子をかぶれば、あなたのゆく道の途上にある障害物を一目で見つけることができるようになるでしょう。知覚が<%= per %>上がります。ラッキー宝箱:蓑セット(2個中2個目のアイテム)。",
@@ -2628,5 +2628,75 @@
"shieldArmoireSpanishGuitarText": "クラシックギター",
"shieldArmoireSnareDrumText": "スネアドラム",
"shieldArmoireSpanishGuitarNotes": "ジャン!ジャン!ジャカジャーン!このギターを弾いてコンサートやお祝いのためにパーティーを集めましょう。知覚が<%= per %>、知能が<%= int %>上がります。ラッキー宝箱:楽器セット(3個中2つ目のアイテム)",
- "shieldArmoireSnareDrumNotes": "ラッタタッタタ!このドラムを演奏して、バトルに続くパレードや行進のためにパーティーを集めましょう。体質が <%= con %>、知能が <%= int %>上がります。ラッキー宝箱:楽器セット(3個中3つ目のアイテム)"
+ "shieldArmoireSnareDrumNotes": "ラッタタッタタ!このドラムを演奏して、バトルに続くパレードや行進のためにパーティーを集めましょう。体質が <%= con %>、知能が <%= int %>上がります。ラッキー宝箱:楽器セット(3個中3つ目のアイテム)",
+ "weaponSpecialSummer2022RogueText": "カニのハサミ",
+ "weaponSpecialSummer2022RogueNotes": "ピンチの時は、迷わずこのハサミを見せつけてください!力が<%= str %>上がります。2022年夏の限定装備。",
+ "weaponSpecialSummer2022WarriorText": "旋回サイクロン",
+ "weaponSpecialSummer2022WarriorNotes": "回転!向きを変えて!荒らしをもたらします!力が<%= str %>上がります。2022年夏の限定装備。",
+ "weaponSpecialSummer2022MageText": "マンタの杖",
+ "weaponSpecialSummer2022MageNotes": "この杖を一回くるっと回すとあなたの前方の水は魔法のように綺麗になります。知能が <%= int %> 、知覚が <%= per %>上がります。2022年夏の限定装備。",
+ "weaponSpecialSummer2022HealerText": "便利な泡",
+ "weaponSpecialSummer2022HealerNotes": "この泡は水中に楽しいぶくぶくと癒やしの魔法を放ちます!知能が<%= int %>上がります。2022年夏の限定装備。",
+ "weaponArmoireBlueKiteNotes": "青い空に高く舞あげて、どんなトリックをしましょうか?全てのステータスがそれぞれ<%= attrs %>上がります。ラッキー宝箱:凧セット(5個中1つ目のアイテム)",
+ "armorSpecialSummer2022RogueText": "カニのよろい",
+ "armorSpecialSummer2022RogueNotes": "ビーチでのちょっとしたおでかけに最適です。知覚が<%= per %>上がります。2022年夏の限定装備。",
+ "armorSpecialSummer2022WarriorText": "水上竜巻のよろい",
+ "armorSpecialSummer2022WarriorNotes": "空気と霧がグルグルしている柱の中に入って、水上バトルに備えましょう。体質が<%= con %>上がります。2022年夏の限定装備。",
+ "armorSpecialSummer2022MageText": "マンタのよろい",
+ "armorSpecialSummer2022MageNotes": "このよろいを着れば水中をすいすい泳ぐマンタのように仕事をすいすい終わらせられるでしょう。知能が<%= int %>上がります。2022年夏の限定装備。",
+ "armorSpecialSummer2022HealerText": "エンゼルフィッシュの尾",
+ "weaponArmoireBlueKiteText": "青い凧",
+ "armorSpecialSummer2022HealerNotes": "このカラフルな尾を使って海藻のなかを駆け回り、休息と癒やしが必要な人たちを助けてあげましょう。体質が<%= con %>上がります。2022年夏の限定装備。",
+ "headSpecialSummer2022RogueText": "カニのヘルメット",
+ "headSpecialSummer2022RogueNotes": "不機嫌になってる場合かに?この夏一番アツいダジャレを祝福するためにここに来ました。知覚が<%= per %>上がります。2022年夏の限定装備。",
+ "headSpecialSummer2022WarriorText": "水上竜巻のヘルメット",
+ "headSpecialSummer2022WarriorNotes": "激しい渦に身を置いて、水の力を伝えましょう。力が<%= str %>上がります。2022年夏の限定装備。",
+ "headSpecialSummer2022MageText": "マンタのヘルメット",
+ "shieldSpecialSummer2022WarriorText": "活きのいいサメ",
+ "headSpecialSummer2022HealerText": "エンゼルフィッシュの耳びれ",
+ "headSpecialSummer2022MageNotes": "深海やタスクの中に飛び込むときに、頭を保護しましょう。知覚が<%= per %>上がります。2022年夏の限定装備。",
+ "headSpecialSummer2022HealerNotes": "魚は耳がない、ですって?みんなにこのニュースを伝えたら驚きますね!知能が<%= int %>上がります。2022年夏の限定装備。",
+ "shieldSpecialSummer2022WarriorNotes": "バクリと喰らいつき!ガブガブ噛み!決して止まりません!体質が<%= con %>上がります。2022年夏の限定装備。",
+ "headMystery202206Text": "海原の妖精のサークレット",
+ "headMystery202206Notes": "サークレットの青い真珠が、あなたに水を操る力を与えます。賢く使いましょう!効果なし。2022年6月の有料会員アイテム。",
+ "weaponArmoireGreenKiteText": "緑の凧",
+ "weaponArmoireOrangeKiteText": "橙の凧",
+ "weaponArmoirePinkKiteText": "桃の凧",
+ "weaponArmoireOrangeKiteNotes": "朝日や夕日のような色のこの凧が、どこまで高く飛べるか試してみましょう!全てのステータスがそれぞれ<%= attrs %>上がります。(5個中3つ目のアイテム)",
+ "shieldSpecialSummer2022HealerNotes": "浅瀬に優しい波紋を描きながら、回復の魔法を送り出します。体質が<%= con %>上がります。2022年夏の限定装備。",
+ "shieldSpecialSummer2022HealerText": "癒しのさざ波",
+ "backMystery202206Text": "海原の妖精の翼",
+ "armorArmoireFancyPirateSuitNotes": "この上質なジャケットを着こなして、船の本棚を整理したり、船の一員として話し合いましょう。体質と知能がそれぞれ<%= attrs %>上がります。ラッキー宝箱:おしゃれ海賊セット(3個中1つ目のアイテム)。",
+ "armorArmoireFancyPirateSuitText": "おしゃれ海賊のジャケット",
+ "headMystery202207Text": "ローヤルゼリーフィッシュのかぶと",
+ "headMystery202207Notes": "タスクに手が足りませんか?海中で光る何十本もの触手はいかがですか?効果なし。2022年6月の有料会員アイテム。",
+ "headArmoireFancyPirateHatText": "おしゃれ海賊の帽子",
+ "headArmoireFancyPirateHatNotes": "船の甲板でお茶にするとき、日光や頭上を飛ぶカモメからあなたを守ります。知覚が<%= per %>上がります。ラッキー宝箱:おしゃれ海賊セット(3個中2つ目のアイテム)。",
+ "shieldArmoireTreasureMapText": "宝の地図",
+ "backMystery202206Notes": "この気まぐれな翼は、なんと水と波でできています!効果なし。2022年6月の有料会員アイテム。",
+ "weaponArmoireYellowKiteText": "黄の凧",
+ "shieldArmoireTreasureMapNotes": "X印がつけられています!この便利な地図に従って伝説の宝物を探しても、何が見つかるかは見当もつきません。あるのは金銀財宝か、はたまた石化したオレンジかも?力と知能がそれぞれ<%= attrs %>上がります。ラッキー宝箱:おしゃれ海賊セット(3個中3つ目のアイテム)。",
+ "weaponArmoireGreenKiteNotes": "目の覚めるような黄色と緑色の、見たことないほどすてきな凧です。全てのステータスがそれぞれ<%= attrs %>上がります。ラッキー宝箱:凧セット(5個中2つ目のアイテム)",
+ "weaponArmoirePinkKiteNotes": "飛び込み、くるくる回って、高く舞いあがる、そんなこの凧は空によく映えます。全てのステータスがそれぞれ<%= attrs %>上がります。(5個中4つ目のアイテム)",
+ "weaponArmoireYellowKiteNotes": "急降下してはあちこち飛び回る、この凧の元気な様子をごらんあれ。全てのステータスがそれぞれ<%= attrs %>上がります。(5個中5つ目のアイテム)",
+ "armorMystery202207Notes": "このよろいを着て魅力的なプルプル感を見せつけましょう。2022年6月の有料会員アイテム。",
+ "armorMystery202207Text": "ローヤルゼリーフィッシュのよろい",
+ "headMystery202208Text": "はつらつポニーテール",
+ "headMystery202208Notes": "いざという時にはムチにもなる、ボリューミーな髪型をお楽しみください!効果なし。2022年8月の有料会員アイテム。",
+ "shieldArmoireDustpanNotes": "掃除のたびに、このコンパクトで便利なちりとりを準備しておきましょう。集めたゴミに消失の呪文を唱えれば、もうゴミ箱を探す必要はありませんね。知能と体質がそれぞれ<%= attrs %>上がります。ラッキー宝箱:掃除用品セット(3個中3個目のアイテム)。",
+ "eyewearMystery202208Text": "キラキラの目",
+ "eyewearMystery202208Notes": "恐ろしいほどかわいい瞳で、敵をなだめて間違った安心感を与えましょう。効果なし。2022年8月の有料会員アイテム。",
+ "weaponArmoirePushBroomText": "押しぼうき",
+ "weaponArmoirePushBroomNotes": "この掃除用具を手に冒険に出かければ、すすけた玄関を一掃したり、すみっこのクモの巣を片付けたりできます。力と知能がそれぞれ<%= attrs %>上がります。ラッキー宝箱:掃除用品セット(3個中1つ目のアイテム)",
+ "weaponArmoireFeatherDusterText": "羽ぼうき",
+ "weaponArmoireFeatherDusterNotes": "この素敵な羽が古い物の上を飛び回れば、新品同然の輝きが戻ります。舞い上がったほこりでくしゃみをしないように注意して!体質と知覚がそれぞれ<%= attrs %>上がります。ラッキー宝箱:掃除用品セット(3個中2つ目のアイテム)",
+ "shieldArmoireDustpanText": "ちりとり",
+ "weaponMystery202209Text": "魔法マニュアル",
+ "weaponMystery202209Notes": "魔法使いへの道のりへと、あなたを導くのがこの本です。効果なし。2022年9月の有料会員アイテム。",
+ "shieldMystery202209Notes": "魔術の知識を身につけるには多くの本を読まなければいけませんが、その過程はきっと楽しいはず。効果なし。2022年9月有料会員アイテム。",
+ "shieldMystery202209Text": "山積みの魔法書",
+ "eyewearArmoireComedyMaskText": "喜劇の仮面",
+ "eyewearArmoireComedyMaskNotes": "さあ陽気に!この古風な仮面は、汝の幸せな心のためにある。その陽気さと賑わいを演じ、歓待し、舞台の上で表現しよう。体質が<%= con %>上がります。ラッキー宝箱:演劇の仮面セット(2個中1個目のアイテム)。",
+ "eyewearArmoireTragedyMaskText": "悲劇の仮面",
+ "eyewearArmoireTragedyMaskNotes": "何たる悲しみ!ここにあるのは重厚な仮面。汝は哀れを演じる者。舞台上で気取って歩き、頭を抱え、苦悩と悲痛を表現しよう。知能が<%= int %>上がります。ラッキー宝箱:演劇の仮面セット(2個中2個目のアイテム)。"
}
diff --git a/website/common/locales/ja/generic.json b/website/common/locales/ja/generic.json
index 98738b9621..1bbaf073c2 100644
--- a/website/common/locales/ja/generic.json
+++ b/website/common/locales/ja/generic.json
@@ -175,8 +175,8 @@
"self_care": "セルフケア",
"habitica_official": "Habitica 公式",
"academics": "学術分野",
- "advocacy_causes": "主張・提言",
- "entertainment": "エンタメ",
+ "advocacy_causes": "主義主張",
+ "entertainment": "エンターテイメント",
"finance": "ファイナンス",
"health_fitness": "健康・フィットネス",
"hobbies_occupations": "ホビー・趣味",
diff --git a/website/common/locales/ja/groups.json b/website/common/locales/ja/groups.json
index b86ab1126f..ee482b5d33 100644
--- a/website/common/locales/ja/groups.json
+++ b/website/common/locales/ja/groups.json
@@ -162,11 +162,11 @@
"onlyCreatorOrAdminCanDeleteChat": "このメッセージを削除する権限がありません!",
"onlyGroupLeaderCanEditTasks": "タスクを管理する権限がありません!",
"onlyGroupTasksCanBeAssigned": "グループのタスクのみ、割り当てできます",
- "assignedTo": "割り当て対象:",
- "assignedToUser": "<%- userName %>に割り当て",
- "assignedToMembers": "<%= userCount %>人のメンバーに割り当てました",
- "assignedToYouAndMembers": "あなたと<%= userCount %>人のメンバーに割り当てました",
- "youAreAssigned": "あなたに割り当てられています",
+ "assignedTo": "割り当て対象:",
+ "assignedToUser": "@<%- userName %> に割り当て",
+ "assignedToMembers": "<%= userCount %> ユーザー",
+ "assignedToYouAndMembers": "あなたと <%= userCount %> ユーザー",
+ "youAreAssigned": "あなた に割り当てられています",
"taskIsUnassigned": "このタスクは誰にも割り当てられていません",
"confirmUnClaim": "本当にこのタスクの担当を解除しますか?",
"confirmNeedsWork": "このタスクをもっと取り組みが必要なものとしてマークしますか?",
@@ -183,7 +183,7 @@
"removeClaim": "担当を解除",
"onlyGroupLeaderCanManageSubscription": "グループの登録管理は、グループリーダーだけが行います",
"yourTaskHasBeenApproved": "あなたのタスク<%- taskText %>は承認されました。",
- "taskNeedsWork": "<%- managerName %>が<%- taskText %>は追加の取り組みが必要であるとマークしました。",
+ "taskNeedsWork": "@<%- managerName %> が <%- taskText %> を未完了にしました。タスクのごほうびは元に戻されました。",
"userHasRequestedTaskApproval": "<%- user %>が<%- taskName %>の承認を求めています",
"approve": "承認",
"approveTask": "タスクの承認",
@@ -314,7 +314,7 @@
"groupManagementControls": "グループのマネジメント・コントロール",
"groupManagementControlsDesc": "タスクが本当に完了されたかを確認するためにタスク承認機能を使いましょう。グループメンバーへ任務を共有するためのグループマネージャーを追加し、全てのチームメンバーのためのプライベートなグループチャットを楽しみましょう。",
"inGameBenefits": "ゲーム中のメリット",
- "inGameBenefitsDesc": "グループメンバーは、限定のジャッカロープの乗騎だけでなく、毎月の特別な装備セットや、ゴールドでジェムを買う機能など、有料プランの特典を全て受けられます。",
+ "inGameBenefitsDesc": "グループメンバーは、限定のツノウサギの乗騎だけでなく、毎月の特別な装備セットや、ゴールドでジェムを買う機能など、有料プランの特典を全て受けられます。",
"inspireYourParty": "パーティーで刺激し合い、一緒に人生をゲーム化しましょう。",
"letsMakeAccount": "まずはアカウントを作成しましょう",
"nameYourGroup": "次に、あなたのグループの名前をつけましょう",
@@ -324,7 +324,7 @@
"gettingStarted": "はじめよう",
"congratsOnGroupPlan": "おめでとうございます! あなたの新しいグループが設立されました。こちらにいくつかのよくある質問と答えがあります。",
"whatsIncludedGroup": "有料プランに含まれるもの",
- "whatsIncludedGroupDesc": "グループのメンバー全員が有料プランの特典をすべて受けられます。毎月の有料会員アイテム、ゴールドでジェムを買う機能、そしてグループプランメンバーシップのユーザー限定のロイヤルパープルのジャッカロープの乗騎などです。",
+ "whatsIncludedGroupDesc": "グループのメンバー全員が有料プランの特典をすべて受けられます。毎月の有料会員アイテム、ゴールドでジェムを買う機能、そしてグループプランメンバーシップのユーザー限定のロイヤルパープルのツノウサギの乗騎などです。",
"howDoesBillingWork": "どのように課金しますか?",
"howDoesBillingWorkDesc": "グループリーダーは、月ごとの基準でグループメンバー数に基づいた請求をされます。この料金には、グループリーダーのための $9 (USD) がふくまれ、 さらに各グループメンバーごとに $3 USD が加算されます。 例えば、4人のユーザーのグループは、1人のグループリーダーと3人のグループメンバーで構成されるため、月ごとに $18 USD の費用がかかります。",
"howToAssignTask": "どのようにタスクを割り当てますか?",
@@ -354,7 +354,7 @@
"PMUserDoesNotReceiveMessages": "このユーザーはもはやプライベートメッセージを受信していません",
"PMCanNotReply": "この会話に返信することはできません",
"newPartyPlaceholder": "パーティーの名前を入力してください。",
- "assignedDateAndUser": "<%= date %>に@<%- username %>に割り当てられました",
+ "assignedDateAndUser": "<%= date %> に @<%- username %> へ割り当てられました",
"assignedDateOnly": "<%= date %>に割り当てられました",
"managerNotes": "管理者からのお知らせ",
"thisTaskApproved": "このタスクは承認されています",
@@ -379,5 +379,28 @@
"editGuild": "ギルドを編集",
"editParty": "パーティーを編集",
"leaveGuild": "ギルドを脱退する",
- "sendGiftTotal": "トータル:"
+ "sendGiftTotal": "トータル:",
+ "chatTemporarilyUnavailable": "チャットは一時的に利用できません。後でもう一度お試しください。",
+ "newGroupsBullet01": "共有タスク ボードから直接タスクを操作する",
+ "assignTo": "割り当てる",
+ "newGroupsWhatsNew": "新機能をチェック:",
+ "newGroupsBullet02": "割り当てられていないタスクは誰でも完了できます",
+ "dayStart": "1日の始まり: <%= startTime %>",
+ "viewStatus": "ステータス",
+ "lastCompleted": "最後の完了",
+ "youEmphasized": "あなた",
+ "newGroupsWelcome": "新しい共有タスク ボードへようこそ!",
+ "newGroupsBullet03": "共同作業を簡単にするため、全員の共有タスクは同時にリセットされます",
+ "newGroupsBullet04": "共有された日課を逃した場合、または前日分の活動記録の確認画面に表示された場合でも、ダメージは発生しません",
+ "newGroupsBullet05": "進行状況を追跡できるように、未完了のままの共有タスクの色は変化していきます",
+ "newGroupsBullet06": "タスク状態の画面では、タスクを完了した担当者をすばやく確認できます",
+ "newGroupsBullet07": "個人のタスク一覧に共有タスクを表示する",
+ "newGroupsBullet08": "グループリーダーとマネージャーは、タスク欄の上部からタスクをすばやく追加できます",
+ "newGroupsBullet09": "共有タスクのチェックを外して、まだ作業が必要であることを示すことができます",
+ "newGroupsBullet10": "ステータスを割り当てることで完了条件が決まります:",
+ "newGroupsBullet10a": "すべてのメンバーが取り組めるタスクは、未割り当てのままにしましょう",
+ "newGroupsBullet10b": "タスクを1人のメンバーに割り当てると、そのメンバーだけが完了できるようになります",
+ "newGroupsBullet10c": "メンバー全員がタスクを完了する必要がある場合は、複数のメンバーにタスクを割り当てましょう",
+ "newGroupsVisitFAQ": "詳細なガイダンスについては、[ヘルプ] ドロップダウンから FAQ にアクセスしてください。",
+ "newGroupsEnjoy": "新しくなったグループプランをお楽しみください!"
}
diff --git a/website/common/locales/ja/limited.json b/website/common/locales/ja/limited.json
index 69bfd6f152..912ee96a73 100644
--- a/website/common/locales/ja/limited.json
+++ b/website/common/locales/ja/limited.json
@@ -131,13 +131,13 @@
"winter2019WinterStarSet": "冬の星(治療師)",
"winter2019PoinsettiaSet": "ポインセチア(盗賊)",
"eventAvailability": "<%= date(locale) %>まで購入できます。",
- "dateEndMarch": "4月30日",
- "dateEndApril": "4月19日",
+ "dateEndMarch": "3月31日",
+ "dateEndApril": "4月30日",
"dateEndMay": "5月31日",
- "dateEndJune": "6月14日",
+ "dateEndJune": "6月30日",
"dateEndJuly": "7月31日",
"dateEndAugust": "8月31日",
- "dateEndSeptember": "9月21日",
+ "dateEndSeptember": "9月30日",
"dateEndOctober": "10月31日",
"dateEndNovember": "11月30日",
"dateEndJanuary": "1月31日",
@@ -221,5 +221,13 @@
"spring2022ForsythiaMageSet": "レンギョウ(魔道士)",
"spring2022PeridotHealerSet": "ペリドット(治療師)",
"spring2022MagpieRogueSet": "カササギ(盗賊)",
- "aprilYYYY": "<%= year %>年4月"
+ "aprilYYYY": "<%= year %>年4月",
+ "summer2022CrabRogueSet": "かに(盗賊)",
+ "summer2022WaterspoutWarriorSet": "水上竜巻(戦士)",
+ "summer2022MantaRayMageSet": "マンタ(魔道士)",
+ "summer2022AngelfishHealerSet": "エンゼルフィッシュ(治療師)",
+ "dateEndDecember": "12月31日",
+ "februaryYYYY": "<%= year %>年2月",
+ "julyYYYY": "<%= year %>年7月",
+ "octoberYYYY": "<%= year %>年10月"
}
diff --git a/website/common/locales/ja/npc.json b/website/common/locales/ja/npc.json
index c85323d854..29ed2cfabb 100644
--- a/website/common/locales/ja/npc.json
+++ b/website/common/locales/ja/npc.json
@@ -17,9 +17,9 @@
"mattBochText1": "動物小屋にようこそ! 私の名前はMatt、猛獣使いだ。タスクを達成するごとに、ペットをかえすための「たまご」と「たまごがえしの薬」を手に入れるランダムなチャンスがあるよ。ペットをかえしたときは、ここに現れるぞ! ペットの画像をクリックしてアバターに追加しよう。見つけた「ペットのえさ」をやると、ペットはたくましい乗騎へと育っていくんだ。",
"welcomeToTavern": "キャンプ場へようこそ!",
"sleepDescription": "休息が必要ですか? Danielのロッジにチェックインして、Habiticaにおける手ごわいゲーム要素を停止させましょう。",
- "sleepBullet1": "やり逃した日課によるダメージを受けません",
- "sleepBullet2": "タスクの連続実行回数は失われません",
- "sleepBullet3": "ボスはあなた自身が逃した日課によるダメージを与えません",
+ "sleepBullet1": "やり逃した日課によるダメージを受けません(パーティーメンバーが日課を逃した際のボスからのダメージは引き続き受けます)",
+ "sleepBullet2": "タスクの連続実行回数と習慣カウンターはリセットされません",
+ "sleepBullet3": "クエストのボスへのダメージまたは見つけたコレクション アイテムは、ロッジをチェックアウトするまで保留のままになります",
"sleepBullet4": "あなたがボスに与えたダメージと、アイテム集めのクエストアイテムは、チェックアウトするまで保留されます",
"pauseDailies": "日課を休む",
"unpauseDailies": "日課を休むのをやめる",
diff --git a/website/common/locales/ja/pets.json b/website/common/locales/ja/pets.json
index 001e39c697..67d89bb263 100644
--- a/website/common/locales/ja/pets.json
+++ b/website/common/locales/ja/pets.json
@@ -28,7 +28,7 @@
"magicalBee": "不思議なハチ",
"hopefulHippogriffPet": "希望に満ちたヒッポグリフ",
"hopefulHippogriffMount": "希望に満ちたヒッポグリフ",
- "royalPurpleJackalope": "ロイヤルパープルのジャッカロープ",
+ "royalPurpleJackalope": "ロイヤルパープルのツノウサギ",
"invisibleAether": "不可視のエーテル獣",
"potion": "<%= potionType %> 薬",
"egg": "<%= eggType %>のたまご",
diff --git a/website/common/locales/ja/quests.json b/website/common/locales/ja/quests.json
index be53e8385d..d50d61605a 100644
--- a/website/common/locales/ja/quests.json
+++ b/website/common/locales/ja/quests.json
@@ -17,16 +17,16 @@
"invitedToQuest": "<%= quest %> クエストに招待されました",
"askLater": "あとで答える",
"buyQuest": "クエストを買う",
- "accepted": "承認しました",
+ "accepted": "承認済み",
"declined": "辞退済み",
"rejected": "拒否しました",
"pending": "保留",
"questCollection": "+ <%= val %> 個のクエストアイテムを発見",
"questDamage": "+ <%= val %> のボスへのダメージ",
"begin": "はじめる",
- "bossHP": "ボスの体力",
+ "bossHP": "ボス体力",
"bossStrength": "ボスの強さ",
- "rage": "激怒",
+ "rage": "怒り",
"collect": "収集",
"collected": "収集済み",
"abort": "中断する",
@@ -35,7 +35,7 @@
"mustComplete": "<%= quest %>を先に完了してください。",
"mustLvlQuest": "このクエストを購入するためにはレベルが<%= level %>以上でなければなりません!",
"unlockByQuesting": "このクエストをアンロックするには、<%= title %>を完了してください。",
- "questConfirm": "本当にクエストを始めてもいいですか?全てのメンバーはクエストに参加していません。すべてのプレイヤーが参加または辞退するとクエストは自動的に始まります。",
+ "questConfirm": "本当にこのクエストを始めてもいいですか? まだ全てのメンバーがクエストの招待を承認していません。全てのプレイヤーが招待に応答すると、クエストは自動的に始まります。",
"sureCancel": "このクエストを中断します。よろしいですか?クエストをキャンセルすると招待への承認と保留の返答を全て無効にします。クエストの巻物はクエストの所有者の所持品に戻ります。",
"sureAbort": "このクエストをキャンセルします。よろしいですか? すべての進行状況は失われます。クエストの巻物はクエスト所有者の所持品に戻ります。",
"doubleSureAbort": "クエストを中断します。本当によろしいですか? パーティーの仲間から永遠に憎まれることのないように!",
@@ -92,7 +92,7 @@
"backToSelection": "クエスト選択画面に戻る",
"yourQuests": "あなたのクエスト",
"selectQuestModal": "クエストを選んでください",
- "newItem": "新しいアイテム",
+ "newItem": "新アイテム",
"ownerOnly": "所有者のみ",
"noQuestToStartTitle": "始めるクエストがみつかりませんか?",
"membersParticipating": "<%= accepted %> / <%= invited %> 人のメンバーが参加",
diff --git a/website/common/locales/ja/questscontent.json b/website/common/locales/ja/questscontent.json
index 530821e6f0..af8d99c25c 100644
--- a/website/common/locales/ja/questscontent.json
+++ b/website/common/locales/ja/questscontent.json
@@ -60,7 +60,7 @@
"questSpiderUnlockText": "市場でクモのたまごを買えるようになります",
"questGroupVice": "バイス、影のウィルム",
"questVice1Text": "バイス・第1部:ドラゴンの影響から自分を解放する",
- "questVice1Notes": "うわさでは、Habitica山の洞穴に、恐ろしい魔物がひそんでいるそうです。モンスターの存在によって、この国の勇者たちは意思をねじ曲げられ、悪い習慣と怠惰へと向かってしまいます! 彼ら自身の影から成るそのモンスターは、計り知れない力を持つ巨大なドラゴン、その名も「バイス」。堕落と名付けられた危険な影のウィルムです。勇敢な Habitica の挑戦者たちよ! 立ち上がり、力を合わせてこの汚らわしい魔物を打ち倒しましょう。ただし、奴の計り知れない力に立ち向かう自信のある者だけで。
バイス・第1部:
もしあなた自身がすでに魔物に支配されているとしたら、どうやってその魔物と戦うことができるでしょうか? 怠惰と堕落の餌食にならないで! ドラゴンの暗い影響と懸命に戦い、バイスからの支配をはねのけるのです!
",
+ "questVice1Notes": "うわさでは、Habitica山の洞穴に、恐ろしい魔物がひそんでいるそうです。モンスターの存在によって、この国の勇者たちは意思をねじ曲げられ、悪い習慣と怠惰へと向かってしまいます! 彼ら自身の影から成るそのモンスターは、計り知れない力を持つ巨大なドラゴン、その名も「バイス」。堕落と名付けられた危険な影のウィルムです。勇敢な Habitica の挑戦者たちよ! 立ち上がり、力を合わせてこの汚らわしい魔物を打ち倒しましょう。ただし、奴の計り知れない力に立ち向かう自信のある者だけで。
もしあなた自身がすでに魔物に支配されているとしたら、どうやってその魔物と戦うことができるでしょうか? 怠惰と堕落の餌食にならないで! ドラゴンの暗い影響と懸命に戦い、バイスからの支配をはねのけるのです!",
"questVice1Boss": "バイスの影",
"questVice1Completion": "あなたを支配していたバイスの影響力は消え去り、いつの間にか取り戻していた力が湧き上がるのをあなたは感じます。おめでとう!しかし、より恐ろしい敵があなたを待ち受けています……",
"questVice1DropVice2Quest": "バイス・第2部 ( 巻物 )",
@@ -604,7 +604,7 @@
"cuddleBuddiesText": "「抱っこ仲間」クエストセット",
"cuddleBuddiesNotes": "「殺し屋ウサギ」「ふとどきなフェレット」「モルモットギャング団」のセット。3月31日まで購入できます。",
"aquaticAmigosText": "「水棲のトモダチ」クエストセット",
- "aquaticAmigosNotes": "「魔のウーパールーパー」「ミスミの大イカ」「オクトゥルフの呼び声」のセット。8月31日まで購入できます。",
+ "aquaticAmigosNotes": "「魔のウーパールーパー」「ミスミの大イカ」「オクトゥルフの呼び声」のセット。7月30日まで購入できます。",
"questSeaSerpentText": "深淵における危険:シーサーペント・ストライク!",
"questSeaSerpentNotes": "連続実行が続くとあなたは幸運な気持ちになるでしょう。――タツノオトシゴのレースへ出かけるのに絶好のタイミングですね。あなたは勤勉波止場で潜水艦に乗り込み、サキノバシティーへの旅に落ち着きます。しかしちょうど沈み込むとき、衝撃が潜水艦を揺らして、乗っている人々をひっくり返しました。「何が起こってるの?」 @AriesFaries が叫びます。
あなたが近くの舷窓を通して見てみると、キラキラ光るウロコの壁が通りすぎてギョッとしました。「シーサーペントだ!」 艦長の @Witticaster が艦内放送を通じて叫びます。「気を引き締めろ、またこっちに曲がってくるぞ!」あなたが腕で座席につかまったとき、未完了のタスクが目の前で光りました。「これらを皆で協力して完了させれば、きっと…」 あなたは考えます。「私たちはこの怪物を撃退できるはずだ!」",
"questSeaSerpentCompletion": "あなたの貢献に打ちのめされて、シーサーペントは逃げ出し、深淵へと姿を消しました。あなたはサキノバシティーへ到着して安堵の息をつきます。そして@*~Seraphina~が腕に3つの半透明のたまごを抱いて近づいてくるのに気づきました。「ほら、この子たちはあなたが持っていくべきよ。」と彼女は言います。「あなたはシーサーペントをどう扱えばいいか知ってるものね!」たまごを受け取ったとき、あなたは確固としてタスクを完了して、くり返しの日課を残さないように努めることを改めて誓いました。",
diff --git a/website/common/locales/ja/settings.json b/website/common/locales/ja/settings.json
index 2d2d8f32a4..2873890776 100644
--- a/website/common/locales/ja/settings.json
+++ b/website/common/locales/ja/settings.json
@@ -114,11 +114,11 @@
"remindersToLogin": "Habitica へのチェックインを通知する",
"unsubscribedSuccessfully": "有料プランを正常に解約しました!",
"unsubscribedTextUsers": "Habitica からのメールをすべて停止しました。設定 > 通知受け取りたいメールだけを有効にすることができます(要ログイン)。",
- "unsubscribedTextOthers": "Habitica からの他のメールは発信されません。",
- "unsubscribeAllEmails": "チェックすると、メールの購読解除",
- "unsubscribeAllEmailsText": "私は、このボックスをチェックすることですべてのメールの購読を解除し、 サイトやアカウントの変更についての重要な内容であっても Habitica がメールを通じて私に告知することができなくなることを理解したことを証明します。",
- "unsubscribeAllPush": "チェックすると、すべてのプッシュ通知停止",
- "correctlyUnsubscribedEmailType": "「<%= emailType %>」からのメールを購読解除しました。",
+ "unsubscribedTextOthers": "Habitica から他のメールは届きません。",
+ "unsubscribeAllEmails": "チェックすると、メールを停止します",
+ "unsubscribeAllEmailsText": "私は、このボックスをチェックすることですべてのメールを停止し、 サイトやアカウントの変更についての重要な内容であっても Habitica がメールを通じて私に告知することができなくなることを理解したことを証明します。",
+ "unsubscribeAllPush": "チェックすると、すべてのプッシュ通知を停止します",
+ "correctlyUnsubscribedEmailType": "「<%= emailType %>」のメールを正常に停止しました。",
"subscriptionRateText": "<%= months %>カ月 ごとに <%= price %>米ドル ずつ",
"benefits": "メリット",
"coupon": "クーポン",
@@ -215,5 +215,9 @@
"nextHourglass": "次の神秘の砂時計",
"adjustment": "調整",
"dayStartAdjustment": "一日の始まりの時間の調整",
- "nextHourglassDescription": "有料会員は神秘の砂時計を\n月初めの3日以内に受け取ります。"
+ "nextHourglassDescription": "有料会員は神秘の砂時計を\n月初めの3日以内に受け取ります。",
+ "passwordSuccess": "パスワードは正常に変更されました",
+ "giftSubscriptionRateText": "<%= months %> か月ごとに$<%= price %> USD(米ドル)",
+ "transaction_create_bank_challenge": "作成された口座チャレンジ",
+ "transaction_admin_update_balance": "管理者より付与"
}
diff --git a/website/common/locales/ja/subscriber.json b/website/common/locales/ja/subscriber.json
index c9e21b26fc..d73fe322f6 100644
--- a/website/common/locales/ja/subscriber.json
+++ b/website/common/locales/ja/subscriber.json
@@ -129,7 +129,7 @@
"subscriptionBenefit1": "商人のAlexanderは、市場でジェムを1つにつき20ゴールドですぐ売ってくれます!",
"subscriptionBenefit3": "毎日の落とし物上限を2倍にして、Habiticaでより多くのアイテムを見つけましょう。",
"subscriptionBenefit4": "毎月、あなたのアバターを着飾るためのユニークでおしゃれなアイテムです。",
- "subscriptionBenefit5": "初めて有料会員になったときは、ロイヤルパープルのジャッカロープのペットを受け取れます。",
+ "subscriptionBenefit5": "初めて有料会員になったときは、ロイヤルパープルのツノウサギのペットを受け取れます。",
"subscriptionBenefit6": "タイムトラベラーの店でアイテムを買うために神秘の砂時計を手に入れましょう!",
"purchaseAll": "セットを購入する",
"gemsRemaining": "残りのジェム",
@@ -206,5 +206,10 @@
"howManyGemsSend": "いくつのジェムを贈りますか?",
"howManyGemsPurchase": "ジェムをいくつ購入しますか?",
"sendAGift": "プレゼントを贈る",
- "needToPurchaseGems": "ジェムを贈り物として購入する必要がありますか?"
+ "needToPurchaseGems": "ジェムを贈り物として購入する必要がありますか?",
+ "mysterySet202206": "海原の妖精セット",
+ "mysterySet202207": "ローヤルゼリーフィッシュセット",
+ "wantToSendOwnGems": "持っているジェムを贈りたいですか?",
+ "mysterySet202208": "はつらつポニーテールセット",
+ "mysterySet202209": "魔法学者セット"
}
diff --git a/website/common/locales/ja/tasks.json b/website/common/locales/ja/tasks.json
index 07f3547678..0229dac794 100644
--- a/website/common/locales/ja/tasks.json
+++ b/website/common/locales/ja/tasks.json
@@ -139,5 +139,6 @@
"resetCounter": "回数をリセット",
"counter": "回数",
"adjustCounter": "回数を修正",
- "editTagsText": "タグを編集"
+ "editTagsText": "タグを編集",
+ "taskSummary": "<%= type %>の概要"
}
diff --git a/website/common/locales/ko/achievements.json b/website/common/locales/ko/achievements.json
index faeaea0070..3c68bfed04 100755
--- a/website/common/locales/ko/achievements.json
+++ b/website/common/locales/ko/achievements.json
@@ -69,7 +69,7 @@
"foundNewItemsExplanation": "과제를 완수하면 알, 부화 포션, 펫 먹이 등을 얻을 수 있는 기회를 얻게 됩니다.",
"foundNewItems": "새로운 아이템을 찾았습니다!",
"onboardingCompleteDescSmall": "더 많은 것을 얻고 싶다면, 업적을 확인하고 수집을 시작하세요!",
- "onboardingComplete": "신규 사용자 과제를 완료했습니다!",
+ "onboardingComplete": "신규 사용자를 위한 과제를 완료했습니다!",
"yourProgress": "진행 상황",
"achievementRosyOutlookText": "모든 벚꽃색 탑승펫을 길들였습니다.",
"achievementRosyOutlookModalText": "모든 벚꽃색 탑승펫을 길들였습니다!",
@@ -79,7 +79,7 @@
"achievementRedLetterDayModalText": "빨간 탑승펫을 모두 모으셨습니다!",
"achievementRedLetterDayText": "빨간 탑승펫을 모두 모았다.",
"achievementSeeingRedModalText": "빨간 펫을 모두 모으셨습니다!",
- "achievementSeeingRedText": "빨간 펫을 모두 모았다.",
+ "achievementSeeingRedText": "빨간 펫을 모두 모았습니다.",
"achievementSeeingRed": "적색경보",
"achievementGoodAsGold": "친절은 금이다",
"achievementBugBonanza": "나는 곤충이 좋아",
@@ -102,5 +102,15 @@
"achievementBugBonanzaModalText": "딱정벌레, 나비, 달팽이, 거미 펫 퀘스트를 완료했습니다!",
"achievementBugBonanzaText": "딱정벌레, 나비, 달팽이, 거미 펫 퀘스트를 완료했습니다.",
"achievementRosyOutlook": "장밋빛 전망",
- "achievementTickledPink": "분홍빛 기쁨"
+ "achievementTickledPink": "분홍빛 기쁨",
+ "achievementLegendaryBestiary": "전설의 우화",
+ "achievementLegendaryBestiaryText": "기본 색 신화적 펫을 모두 부화시켰습니다. (드래곤, 비행 돼지, 그리폰, 바다뱀 그리고 유니콘!)",
+ "achievementLegendaryBestiaryModalText": "신화 펫을 모두 모았습니다!",
+ "achievementSeasonalSpecialist": "시즌 전문가",
+ "achievementSeasonalSpecialistText": "모든 봄과 겨울 시즌 퀘스트를 완료했습니다 : 알 찾기, 사냥꾼 산타 그리고 아기 곰 찾기!",
+ "achievementSeasonalSpecialistModalText": "모든 시즌 퀘스트를 완료하였습니다!",
+ "achievementVioletsAreBlue": "제비꽃은 파래요",
+ "achievementVioletsAreBlueText": "모든 솜사탕 파랑 펫을 모았습니다.",
+ "achievementVioletsAreBlueModalText": "모든 솜사탕 파랑 펫을 모았습니다!",
+ "achievementWildBlueYonderText": "솜사탕 파랑 탑승펫을 모두 길들였습니다."
}
diff --git a/website/common/locales/ko/backgrounds.json b/website/common/locales/ko/backgrounds.json
index 6a620a9647..21884be157 100755
--- a/website/common/locales/ko/backgrounds.json
+++ b/website/common/locales/ko/backgrounds.json
@@ -4,7 +4,7 @@
"backgroundShop": "배경 상점",
"backgroundShopText": "배경 상점",
"noBackground": "배경이 선택되지 않음",
- "backgrounds062014": "1 세트: 2014년 6월 발매",
+ "backgrounds062014": "1 세트: 2014년 6월 발매",
"backgroundBeachText": "해변",
"backgroundBeachNotes": "따뜻한 해변의 라운지.",
"backgroundFairyRingText": "요정 반지",
@@ -19,8 +19,8 @@
"backgroundSeafarerShipText": "Prau Layar",
"backgroundSeafarerShipNotes": "Numpak Prau Layar.",
"backgrounds082014": "SET 3: Dirilis Agustus 2014",
- "backgroundCloudsText": "Awan",
- "backgroundCloudsNotes": "Mumbul nang Awan.",
+ "backgroundCloudsText": "구름",
+ "backgroundCloudsNotes": "구름 위로 날아오르자.",
"backgroundDustyCanyonsText": "Jurang Mbledhug",
"backgroundDustyCanyonsNotes": "Wander through a Dusty Canyon.",
"backgroundVolcanoText": "Gunung Mrapi",
@@ -478,7 +478,7 @@
"backgroundSnowglobeText": "스노우글로브",
"backgroundDesertWithSnowNotes": "희귀하면서 정적인 아름다움이 있는 눈 내리는 사막을 보세요.",
"backgroundDesertWithSnowText": "눈 내리는 사막",
- "backgroundBirthdayPartyNotes": "좋아하는 해비티카 사용자의 생일을 축하하세요.",
+ "backgroundBirthdayPartyNotes": "좋아하는 Habitica 사용자의 생일을 축하하세요.",
"backgroundBirthdayPartyText": "생일 파티",
"backgrounds012020": "68 세트 : 2020년 1월에 발매",
"backgroundWinterNocturneNotes": "겨울 야상곡의 별빛을 즐기세요",
@@ -558,5 +558,19 @@
"backgroundWindmillsText": "풍차",
"backgrounds022021": "SET 81: 2021년 2월 출시",
"backgroundHeartShapedBubblesText": "하트 모양의 거품",
- "backgrounds032021": "SET 82: 2021년 3월 출시"
+ "backgrounds032021": "SET 82: 2021년 3월 출시",
+ "backgroundHallOfHeroesNotes": "감사와 존경을 담아 영웅들의 전당에 입장하세요.",
+ "backgroundTeaPartyNotes": "엄청난 티파티에 참여하세요.",
+ "backgroundAmongGiantFlowersNotes": "거대한 꽃들 사이에서 빈둥거리세요.",
+ "hideLockedBackgrounds": "잠긴 배경 숨기기",
+ "backgroundButterflyGardenNotes": "꽃가루 매개자들과 함께 나비 정원에서 파티를 즐겨보세요.",
+ "backgroundRainyBarnyardText": "비 내리는 헛간",
+ "backgroundHeatherFieldNotes": "헤더 꽃의 향기를 즐기세요.",
+ "backgroundHeatherFieldText": "헤더 꽃밭",
+ "backgroundRainyBarnyardNotes": "비오는 날에 물보라를 일으키며 헛간을 산책하세요.",
+ "backgroundRelaxationRiverText": "강가에서의 휴식",
+ "backgroundSaltLakeNotes": "소금 호수의 매력적인 붉은 잔물결을 바라보세요.",
+ "backgroundStrawberryPatchNotes": "딸기밭에서 신선한 진미를 골라보세요.",
+ "backgroundRelaxationRiverNotes": "강가를 따라 휴식하며 나른하게 흘러가세요.",
+ "backgroundHotAirBalloonNotes": "열기구를 타고 날아올라 아름다운 경치를 즐기세요."
}
diff --git a/website/common/locales/ko/challenge.json b/website/common/locales/ko/challenge.json
index aad00cc907..afe59794ba 100755
--- a/website/common/locales/ko/challenge.json
+++ b/website/common/locales/ko/challenge.json
@@ -1,6 +1,6 @@
{
- "challenge": "도전 과제",
- "challengeDetails": "도전 과제는 참가자가 주어진 작업을 완료하여 보상을 받는 커뮤니티 이벤트입니다.",
+ "challenge": "도전",
+ "challengeDetails": "도전은 참가자가 주어진 작업을 완료하여 보상을 받는 커뮤니티 이벤트입니다.",
"brokenChaLink": "중지된 도전 링크",
"brokenTask": "중지된 도전 링크: 이 과제는 도전의 일부였으나 삭제되었습니다. 어떻게 하시겠습니까?",
"keepIt": "유지",
@@ -22,7 +22,7 @@
"participating": "참가 중",
"createChallenge": "도전 만들기",
"createChallengeAddTasks": "도전 과제 추가",
- "createChallengeCloneTasks": "도전 과제 복제",
+ "createChallengeCloneTasks": "도전 과제 복사",
"addTaskToChallenge": "과제 추가",
"challengeTag": "태그 이름",
"prize": "보상",
@@ -44,8 +44,8 @@
"congratulations": "축하합니다!",
"hurray": "만세!",
"noChallengeOwner": "주인이 없음",
- "challengeMemberNotFound": "해당 유저를 도전 과제 멤버에서 찾을 수 없습니다",
- "onlyGroupLeaderChal": "그룹 리더만이 도전 과제를 만들 수 있습니다",
+ "challengeMemberNotFound": "해당 유저를 도전 참가자 중에서 찾을 수 없습니다",
+ "onlyGroupLeaderChal": "그룹장만이 도전을 만들 수 있습니다",
"tavChalsMinPrize": "공개 도전의 보상은 최소한 보석 1개여야 합니다.",
"cantAfford": "보상을 위한 보석이 모자랍니다. 보석을 더 구매하거나 좀 더 작은 값으로 설정하세요.",
"challengeIdRequired": "\"challengeId\"는 유효한 UUID 여야 합니다.",
diff --git a/website/common/locales/ko/character.json b/website/common/locales/ko/character.json
index f8ccffb090..c1cfe3de41 100755
--- a/website/common/locales/ko/character.json
+++ b/website/common/locales/ko/character.json
@@ -1,5 +1,5 @@
{
- "communityGuidelinesWarning": "Please keep in mind that your Display Name, profile photo, and blurb must comply with the Community Guidelines (e.g. no profanity, no adult topics, no insults, etc). If you have any questions about whether or not something is appropriate, feel free to email <%= hrefBlankCommunityManagerEmail %>!",
+ "communityGuidelinesWarning": "별명과 프로필 사진, 설명은 반드시 커뮤니티 가이드라인을 준수해야 합니다. (예: 욕설, 성적인 언어와 이미지, 모욕 등). 질문이 있으시거나 부적절한 것을 발견한다면 저희에게 이메일을 보내주세요 <%= hrefBlankCommunityManagerEmail %>!",
"profile": "프로필",
"avatar": "아바타 꾸미기",
"editAvatar": "아바타 수정",
@@ -19,7 +19,7 @@
"buffed": "버프",
"bodyBody": "몸",
"size": "크기",
- "locked": "잠긴",
+ "locked": "잠김",
"shirts": "상의",
"shirt": "상의",
"specialShirts": "스페셜 상의",
@@ -36,7 +36,7 @@
"beard": "턱수염",
"mustache": "콧수염",
"flower": "꽃",
- "accent": "액세서리",
+ "accent": "장식",
"headband": "머리띠",
"wheelchair": "휠체어",
"extra": "그 외",
@@ -58,14 +58,14 @@
"autoEquipBattleGear": "새로운 장비 자동 착용",
"costume": "의상",
"useCostume": "의상 착용",
- "costumePopoverText": "Select \"Use Costume\" to equip items to your avatar without affecting the Stats from your Battle Gear! This means that you can dress up your avatar in whatever outfit you like while still having your best Battle Gear equipped.",
+ "costumePopoverText": "\"의상 착용\"을 선택해 아바타에게 입혀보세요! 의상은 능력치에 영향을 주지 않습니다. 전투 장비를 그대로 착용한 채로 원하는 의상을 입혀보세요!",
"autoEquipPopoverText": "구입한 장비를 자동으로 착용하고 싶다면 이 옵션을 선택하세요.",
"costumeDisabled": "의상을 해제했습니다.",
"gearAchievement": "직업에 맞는 최고의 장비 세트로 업그레이드함으로써 \"궁극의 장비\" 업적을 달성하셨습니다! 완벽히 갖춘 세트:",
"gearAchievementNotification": "직업에 맞는 최고의 장비 세트로 업그레이드함으로써 \"궁극의 장비\" 업적을 달성하셨습니다!",
- "moreGearAchievements": "To attain more Ultimate Gear badges, change classes on the Settings > Site page and buy your new class's gear!",
- "armoireUnlocked": "더 많은 장비는 마법의 옷장에서 확인해 보세요. 마법의 옷장 보상을 클릭하면 특수 장비를 얻을 수 있는 램던한 기회가 주어집니다. 또 랜럼하게 경험치나 음식 아이템을 줄 수도 있어요.",
- "ultimGearName": "궁극의 장비 - <%= ultClass %>",
+ "moreGearAchievements": "궁극의 장비 배지를 더 얻고 싶다면 설정에서 > (이곳) 직업을 바꾸고 새 직업의 장비를 구입하세요!",
+ "armoireUnlocked": "더 많은 장비는 마법의 장비상자에서 확인해 보세요. 마법의 장비상자 보상을 클릭하면 특수 장비를 얻을 수 있는 랜덤한 기회가 주어집니다. 또 랜덤하게 경험치나 음식 아이템을 줄 수도 있어요.",
+ "ultimGearName": "궁극의 장비 - <%= ultClass %>",
"ultimGearText": "<%= ultClass %> 클래스를 위한 최대 무기와 갑옷 세트로 업그레이드했습니다.",
"level": "레벨",
"levelUp": "레벨 업!",
@@ -75,56 +75,56 @@
"mana": "마나",
"hp": "HP",
"mp": "MP",
- "xp": "XP",
+ "xp": "경험치",
"health": "체력",
"allocateStr": "근력에 분배된 포인트",
- "allocateStrPop": "Add a Point to Strength",
+ "allocateStrPop": "근력에 포인트를 추가하세요.",
"allocateCon": "생명력에 분배된 포인트",
- "allocateConPop": "Add a Point to Constitution",
- "allocatePer": "관찰력에 분배된 포인트",
- "allocatePerPop": "Add a Point to Perception",
- "allocateInt": "지력에 분배된 포인트",
- "allocateIntPop": "Add a Point to Intelligence",
+ "allocateConPop": "생명력에 포인트를 추가하세요.",
+ "allocatePer": "통찰력에 분배된 포인트",
+ "allocatePerPop": "통찰력에 포인트를 추가하세요.",
+ "allocateInt": "지력에 분배된 포인트:",
+ "allocateIntPop": "지력에 포인트를 추가하세요",
"noMoreAllocate": "레벨 100에 도달하면 능력치 포인트를 더 얻을 수 없습니다. 더 레벨을 올릴 수도 있고, 환생의 구를 사용해 레벨 1에서 새로운 모험을 시작할 수도 있습니다!",
- "stats": "스테이터스",
+ "stats": "능력치",
"achievs": "업적",
"strength": "근력",
"strText": "Strength increases the chance of random \"critical hits\" and the Gold, Experience, and drop chance boost from them. It also helps deal damage to boss monsters.",
"constitution": "생명력",
"conText": "생명력은 나쁜 습관과 빼먹은 일일과제에 의해 입는 데미지를 줄여줍니다.",
- "perception": "관찰력",
- "perText": "관찰력은 유저가 받는 골드의 양을 증가시키며, 시장이 열린 후에는 과제 완료시 아이템을 얻을 확률도 높입니다.",
+ "perception": "통찰력",
+ "perText": "통찰력은 유저가 받는 골드의 양을 증가시키며, 시장이 열린 후에는 과제 완료시 아이템을 얻을 확률도 높입니다.",
"intelligence": "지력",
- "intText": "지력은 유저가 받는 경험치의 양을 증가시키며, 직업을 정한 후에는 직업에 따른 최대 마나양을 결정해줍니다.",
+ "intText": "지력은 유저가 받는 경험치의 양을 증가시키며, 직업을 정한 후에는 직업 능력을 위한 최대 마나양을 결정해줍니다.",
"levelBonus": "레벨 보너스",
"allocatedPoints": "분배된 포인트",
- "allocated": "분배된 포인트",
+ "allocated": "할당됨",
"buffs": "버프",
"characterBuild": "캐릭터 빌드",
"class": "직업",
"experience": "경험치",
"warrior": "전사",
- "healer": "치료사",
+ "healer": "치유사",
"rogue": "도적",
"mage": "마법사",
- "wizard": "Mage",
+ "wizard": "마법사",
"mystery": "미스테리",
- "changeClass": "Change Class, Refund Stat Points",
- "lvl10ChangeClass": "클레스를 바꾸기 위해서는 최소 레벨 10이여야 합니다.",
- "changeClassConfirmCost": "Are you sure you want to change your class for 3 Gems?",
- "invalidClass": "인식불가능한 직업입니다. '전사', '도적', '마법사', '힐러' 중에서 선택해 주세요.",
- "levelPopover": "Each level earns you one Point to assign to a Stat of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options.",
- "unallocated": "Unallocated Stat Points",
+ "changeClass": "직업 변경, 능력치 반환",
+ "lvl10ChangeClass": "직업 바꾸기 위해서는 최소 레벨이 10이어야 합니다.",
+ "changeClassConfirmCost": "정말로 보석 3개를 소모하여 직업을 바꾸시겠습니까?",
+ "invalidClass": "불가능한 직업입니다. '전사', '도적', '마법사', '치유사' 중에서 선택해 주세요.",
+ "levelPopover": "레벨업을 할 때마다 원하는 스탯에 한 포인트씩 추가할 수 있습니다. 직접 하셔도 되며, 스탯 자동 분배를 통해서 게임이 알아서 하게 맡기셔도 됩니다.",
+ "unallocated": "분배되지 않은 능력치",
"autoAllocation": "자동 분배",
- "autoAllocationPop": "Places Points into Stats according to your preferences, when you level up.",
- "evenAllocation": "Distribute Stat Points evenly",
- "evenAllocationPop": "Assigns the same number of Points to each Stat.",
- "classAllocation": "Distribute Points based on Class",
- "classAllocationPop": "Assigns more Points to the Stats important to your Class.",
- "taskAllocation": "Distribute Points based on task activity",
- "taskAllocationPop": "Assigns Points based on the Strength, Intelligence, Constitution, and Perception categories associated with the tasks you complete.",
- "distributePoints": "사용되지 않은 포인트 분배하기",
- "distributePointsPop": "Assigns all unallocated Stat Points according to the selected allocation scheme.",
+ "autoAllocationPop": "레벨업을 할 때 능력치를 원하는 곳에 분배하세요.",
+ "evenAllocation": "능력치 고르게 분배하기",
+ "evenAllocationPop": "각 능력치에 동일한 수치를 분배합니다.",
+ "classAllocation": "직업에 맞게 분배하기",
+ "classAllocationPop": "직업에 중요한 능력치에 더 많은 수치를 분배합니다.",
+ "taskAllocation": "과제 성향에 맞게 분배하기",
+ "taskAllocationPop": "완료한 과제와 연관된 근력, 지력, 생명력, 통찰력 부분에 수치를 더합니다.",
+ "distributePoints": "사용되지 않은 수치 분배하기",
+ "distributePointsPop": "모든 할당되지 않은 능력치를 선택한 능력치에 배분합니다.",
"warriorText": "전사는 과제 완료시 랜덤하게 골드와 경험치 보너스, 그리고 아이템 획득 확률을 높이는 \"크리티컬 히트\"를 더 강하게 자주 터트릴 수 있으며, 보스몹에게도 더 강한 데미지를 입힙니다. 예측불가한 대박 찬스 보상이 동기 부여가 되시거나 보스 퀘스트를 시원하게 깨기 원하신다면 전사로 플레이하세요!",
"wizardText": "Mages learn swiftly, gaining Experience and Levels faster than other classes. They also get a great deal of Mana for using special abilities. Play a Mage if you enjoy the tactical game aspects of Habitica, or if you are strongly motivated by leveling up and unlocking advanced features!",
"mageText": "Mages learn swiftly, gaining Experience and Levels faster than other classes. They also get a great deal of Mana for using special abilities. Play a Mage if you enjoy the tactical game aspects of Habitica, or if you are strongly motivated by leveling up and unlocking advanced features!",
@@ -132,7 +132,7 @@
"healerText": "치료사는 해로운 영향으로부터 자신은 물론 다른 사람도 보호할 수 있습니다. 빼먹은 일일과제와 나쁜 습관의 영향을 받지 않으며, 실패로 인한 체력도 회복할 수 있습니다. 파티원 돕기를 즐기시거나 노력을 통해 죽음을 거스르는 것이 동기 부여가 되신다면 치료사로 플레이하세요!",
"optOutOfClasses": "나중에 선택하기",
"chooseClass": "Choose your Class",
- "chooseClassLearnMarkdown": "[해비티카의 직업 시스템에 대해 자세히 알아보세요](http://habitica.wikia.com/wiki/Class_System)",
+ "chooseClassLearnMarkdown": "[Habitica의 직업 시스템에 대해 자세히 알아보세요](http://habitica.wikia.com/wiki/Class_System)",
"optOutOfClassesText": "Can't be bothered with classes? Want to choose later? Opt out - you'll be a warrior with no special abilities. You can read about the class system later on the wiki and enable classes at any time under User Icon > Settings.",
"selectClass": "Select <%= heroClass %>",
"select": "선택",
diff --git a/website/common/locales/ko/communityguidelines.json b/website/common/locales/ko/communityguidelines.json
index e67b492126..762d33bd10 100755
--- a/website/common/locales/ko/communityguidelines.json
+++ b/website/common/locales/ko/communityguidelines.json
@@ -4,17 +4,17 @@
"commGuideHeadingWelcome": "Habitica에 오신 것을 환영합니다!",
"commGuidePara001": "반갑습니다, 모험자님! 생산성, 건강한 생활, 그리고 가끔은 미친 그리핀이 있는 땅, Habitica에 오신 것을 환영합니다. 이 곳엔 스스로의 발전을 위해 각자의 방법으로 도움을 주고자 하는 지원자로 가득한 활발한 커뮤니티가 있습니다. 이 곳에서 함께하기 위해, 모든 사람들은 긍정적인 태도와 서로를 존중하는 예의를 지니며, 모두가 다른 능력과 규칙을 가져야 한다는 사실을 알고 있어야 합니다- 물론 당신도요! Habitican은 항상 상대방에게 인내하고 할 수 있는 일이라면 언제든지 도우려 노력합니다.",
"commGuidePara002": "커뮤니티의 구성원이 안전하고 행복하며 활발한 활동을 유지하기 위해, 이 곳엔 지켜야 할 몇 가지 가이드라인이 있습니다. 가능한 친절하며, 읽기 쉽게 하기 위해 신중히 만들었습니다. 대화를 시작하기 전에 시간을 내어 꼭 읽어주세요.",
- "commGuidePara003": "이곳의 규칙은 Trello, GitHub, Weblate와 Wikia(위키)를 포함한 (그러나 여기에만 한정되지 않은) 모든 커뮤니티 소통 공간에 적용됩니다. 때때로 가이드라인에 언급이 되지 않은 종류의 충돌이 벌어지거나 사악한 네크로맨서가 나타나는 등 예측하지 못한 상황이 벌어지기도 합니다. 그럴 때면 커뮤니티를 새로운 위협에서 안전하게 보호하기 위해 관리자들이 가이드라인을 변경해야 할 수도 있습니다. 하지만 안심하세요: 가이드라인이 변경된다면 베일리가 여러분에게 소식을 알려드릴 것입니다.",
+ "commGuidePara003": "이곳의 규칙은 Trello, GitHub, Weblate와 Fandom에 있는 Habitica Wiki를 포함한 (그러나 여기에만 한정되지 않은) 모든 커뮤니티 소통 공간에 적용됩니다. 커뮤니티가 성장하고 변하면서 새로운 규칙이 적용될 수도 있습니다. 가이드라인이 변경된다면 베일리와 우리의 소셜미디어에서 여러분에게 소식을 알려드릴 것입니다!",
"commGuideHeadingInteractions": "Habitica에서의 상호작용",
- "commGuidePara015": "Habitica는 공용 공간과 개인 공간 두 종류의 공간을 가지고 있습니다. 공용 공간은 주막, 공개 길드 , GitHub, Treello, Wiki가 있습니다. 개인 공간은 개인 길드, 파티 대화, 개인 메시지가 있습니다. 표시되는 모든 이름은 공용 공간의 지침을 따라야 합니다.표시되는 이름을 변경하려면 웹 사이트에서사용자 > 프로필로 이동하여 \"편집\" 단추를 클릭하십시오.",
- "commGuidePara016": "모든 사람들을 안전하고 즐겁게 하기 위해서 Habitica의 공공장소를 돌아다닐 때에는 몇 가지 규칙이 있습니다. 여러분 같은 모험가에게는 쉬운 룰이죠!",
- "commGuideList02A": "서로를 존중하십시오 . 공손하고 착하고 친절하고 도움이 되십시오. 기억하십시오: Habitica의 주민들은 모든 배경에서 왔고 매우 다른 경험을 했습니다. 이것은 하비티카를 그렇게 멋있게 만드는 한 부분입니다! 공동체를 건설하는 것은 우리의 유사점뿐만 아니라 우리의 차이점을 존중하고 축하하는 것을 의미한다. 다음은 서로를 존중하는 몇 가지 쉬운 방법들이다:",
- "commGuideList02B": "모든 이용 약관에 따르세요.",
- "commGuideList02C": "Do not post images or text that are violent, threatening, or sexually explicit/suggestive, or that promote discrimination, bigotry, racism, sexism, hatred, harassment or harm against any individual or group. Not even as a joke. This includes slurs as well as statements. Not everyone has the same sense of humor, and so something that you consider a joke may be hurtful to another. Attack your Dailies, not each other.",
- "commGuideList02D": "Keep discussions appropriate for all ages. We have many young Habiticans who use the site! Let's not tarnish any innocents or hinder any Habiticans in their goals.",
- "commGuideList02E": "Avoid profanity. This includes milder, religious-based oaths that may be acceptable elsewhere. We have people from all religious and cultural backgrounds, and we want to make sure that all of them feel comfortable in public spaces. If a moderator or staff member tells you that a term is disallowed on Habitica, even if it is a term that you did not realize was problematic, that decision is final. Additionally, slurs will be dealt with very severely, as they are also a violation of the Terms of Service.",
- "commGuideList02F": "Avoid extended discussions of divisive topics in the Tavern and where it would be off-topic. If you feel that someone has said something rude or hurtful, do not engage them. If someone mentions something that is allowed by the guidelines but which is hurtful to you, it’s okay to politely let someone know that. If it is against the guidelines or the Terms of Service, you should flag it and let a mod respond. When in doubt, flag the post.",
- "commGuideList02G": "Comply immediately with any Mod request. This could include, but is not limited to, requesting you limit your posts in a particular space, editing your profile to remove unsuitable content, asking you to move your discussion to a more suitable space, etc.",
+ "commGuidePara015": "Habitica는 공용 공간과 개인 공간 두 종류의 공간을 가지고 있습니다. 공용 공간은 주막, 공개 길드 , GitHub, Treello, Wiki가 있습니다. 개인 공간은 개인 길드, 파티 대화, 개인 메시지가 있습니다. 표시되는 모든 이름과 아이디는 공용 공간의 지침을 따라야 합니다.표시되는 이름과 아이디를 변경하려면 웹 사이트에서 사용자 > 프로필로 이동하여 \"편집\" 단추를 클릭하십시오.",
+ "commGuidePara016": "모든 사람들을 안전하고 즐겁게 하기 위해서 Habitica의 공공장소를 돌아다닐 때에는 몇 가지 규칙이 있습니다.",
+ "commGuideList02A": "서로를 존중하십시오 . 공손하고 착하고 친절하고 도움이 되십시오. 기억하십시오: Habitica의 주민들은 모든 문화에서 왔고 매우 다른 경험을 했습니다. 이것은 Habitica를 멋있게 만드는 한 부분입니다! 공동체를 건설하는 것은 우리의 유사점뿐만 아니라 우리의 차이점을 존중하고 축하하는 것을 의미합니다.",
+ "commGuideList02B": "모든 공용/사적 공간에서 이용 약관을 따라주세요.",
+ "commGuideList02C": "폭력적이거나 위협적인, 성적인, 편견이나 차별을 조장하는, 인종차별적인, 성차별적인, 증오심을 표현하는, 개인이나 단체에 대한 괴롭힘이나 위해를 가하는 표현이나 이미지를 게시하지 마십시오.. 이는 불분명한 표현, 농담이나 밈으로도 허용되지 않습니다. 모든 사용자가 위와 같은 내용으로 웃을 수 있는 것은 아닙니다. 이런 농담이 누군가를 상처입힌다는 걸 명심해 주십시오.",
+ "commGuideList02D": "모든 연령대에 알맞는 대화 주제를 유지하십시오. 이것은 공용 공간에서 성인을 위한 대화를 하는 것을 방지하기 위함입니다. 우리의 공간은 많은 어린 헤비티칸들을 포함해 각계각층의 사람들이 모이는 곳입니다. 우리는 우리의 커뮤니티가 최대한 편안하고 포용적인 공간이 되길 원합니다.",
+ "commGuideList02E": "종교에 대한 모욕적 행동을 피하십시오. 여기에는 다른 곳에서는 받아들일 수 있는 온화하고 종교적인 맹세와 축약되거나 불분명한 모독이 포함됩니다. 이곳에는 모든 종교적, 문화적 배경을 가진 사람들이 있고, 그들 모두가 공공장소에서 편안함을 느끼도록 하고 싶습니다. 관리자 또는 직원이 Habitica에서 해당 용어가 허용되지 않는다고 말하는 경우, 문제가 있다는 것을 깨닫지 못한 용어일지라도, 그 결정은 최종적인 것입니다. 또한 비방은 서비스 이용 약관 위반이므로 매우 엄중하게 처리될 것입니다.",
+ "commGuideList02F": "선술집에서 분열적인 주제와 주제에서 벗어난 주제에 대한 추가적 논의를 피하십시오. 만약 누군가가 가이드라인에 의해선 허용되지만 당신에게 상처를 주는 것을 언급한다면, 그 분에게 정중하게 대화하는 것은 괜찮습니다. 만약 누군가가 여러분이 그 분을 불편하게 만들었다고 말한다면, 화가 나서 대답하는 대신 반성하는 시간을 가지세요. 하지만 만약 여러분이 대화가 과열되고, 지나치게 감정적이거나, 상처를 준다고 느낀다면, 관여하는 것을 그만두세요. 대신 게시물을 보고하여 저희에게 알려주시기 바랍니다. 관리자는 가능한 한 빨리 응답할 것입니다. 또한 admin@habitica.com로 이메일을 보내세요. 도움이 될 경우 스크린샷을 포함할 수 있습니다.",
+ "commGuideList02G": "모든 관리자의 요청에 따라주십시오. 이 요청에는 특정 장소에 글을 올리는 것을 금지하거나, 프로필에 있는 부적절한 내용을 수정하거나, 토의 내용을 다른 적절한 장소에 작성할 것을 부탁하는 것 등을 포함할 수 있습니다. 또한 요청은 위 내용에 국한되지 않습니다. 관리자와 말다툼을 하지 말아주십시오. 만약 이 요청이나 관리자에 대한 의견/이견이 있을 경우 커뮤니티 관리자의 소통창구인 admin@habitica.com 해당 이메일로 연락주시길 바랍니다.",
"commGuideList02J": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, posting multiple promotional messages about a Guild, Party or Challenge, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming. If people clicking on a link will result in any benefit to you, you need to disclose that in the text of your message or that will also be considered spam.
It is up to the mods to decide if something constitutes spam or might lead to spam, even if you don’t feel that you have been spamming. For example, advertising a Guild is acceptable once or twice, but multiple posts in one day would probably constitute spam, no matter how useful the Guild is!",
"commGuideList02K": "Avoid posting large header text in the public chat spaces, particularly the Tavern. Much like ALL CAPS, it reads as if you were yelling, and interferes with the comfortable atmosphere.",
"commGuideList02L": "We highly discourage the exchange of personal information -- particularly information that can be used to identify you -- in public chat spaces. Identifying information can include but is not limited to: your address, your email address, and your API token/password. This is for your safety! Staff or moderators may remove such posts at their discretion. If you are asked for personal information in a private Guild, Party, or PM, we highly recommend that you politely refuse and alert the staff and moderators by either 1) flagging the message if it is in a Party or private Guild, or 2) filling out the Moderator Contact Form and including screenshots.",
@@ -119,5 +119,13 @@
"commGuideLink05": "The Mobile Trello: for mobile feature requests.",
"commGuideLink06": "The Art Trello: for submitting pixel art.",
"commGuideLink07": "The Quest Trello: for submitting quest writing.",
- "commGuidePara069": "본문의 일러스트는 아래의 재능있는 아티스트들의 도움을 받았습니다:"
+ "commGuidePara069": "본문의 일러스트는 아래의 재능있는 아티스트들의 도움을 받았습니다:",
+ "commGuidePara017": "여기 짧은 요약문이 준비되어 있습니다. 하지만 자세한 설명을 읽어보시길 권장드립니다. :",
+ "commGuideList01B": "금지 사항: 폭력적이거나 위협적인, 차별적 발언을 포함하는 밈과 이미지, 농담 등.",
+ "commGuideList01A": "이용 약관은 비공개 길드, 파티 채팅, 메시지 등을 포함한 모든 공간에서 적용됩니다.",
+ "commGuideList01C": "모든 토의는 모든 연령에게 적절해야만 합니다. 또한 공격적인 언어를 피해주세요.",
+ "commGuideList01E": "여관에서 논란이 될만한 대화를 시작하거나 참여하지 말아주세요.",
+ "commGuideList01F": "아이템 구걸, 도배 또는 큰 폰트 사이즈나 대문자로만 이뤄진 문장을 작성하지 말아주세요.",
+ "commGuideList01D": "관리자의 부탁에 따라주시길 부탁드립니다.",
+ "commGuideList02M": "그룹 플랜에서 구독, 멤버쉽, 보석을 구걸하거나 달라고 요청하지 마십시오. 이는 여관이나 공용, 사적 공간에서도 모두 허용되지 않습니다. 아이템을 달라는 쪽지를 받거나 하는 경우 깃발 버튼을 눌러 신고하십시오. 반복적이거나 많은 양의 보석 구걸/구독 구걸은 경고 이후, 영구 정지로 이어질 수 있습니다."
}
diff --git a/website/common/locales/ko/content.json b/website/common/locales/ko/content.json
index 7e392540fa..59f062f4eb 100755
--- a/website/common/locales/ko/content.json
+++ b/website/common/locales/ko/content.json
@@ -2,9 +2,9 @@
"potionText": "체력 물약",
"potionNotes": "체력 15 회복 (일회용)",
"armoireText": "마법의 장롱",
- "armoireNotesFull": "랜덤으로 특별한 장비, 경험치 혹은 펫 먹이를 받으려면 장롱문을 열어주세요! 아직 못찾은 특별장비:",
+ "armoireNotesFull": "랜덤으로 특별한 장비, 경험치 혹은 펫 먹이를 받으려면 장롱문을 열어주세요! 아직 못 찾은 특별장비:",
"armoireLastItem": "마법의 장롱에서 마지막 남은 레어 장비를 찾았습니다!",
- "armoireNotesEmpty": "매달 첫주마다 새로운 장비가 준비될 것입니다. 그때까지는 경험치와 펫 먹이를 받으러 클릭하세요!",
+ "armoireNotesEmpty": "매달 첫 주마다 새로운 장비가 구비될 것입니다. 그 때까지는 경험치와 펫 먹이를 받으러 클릭하세요!",
"dropEggWolfText": "늑대",
"dropEggWolfMountText": "늑대",
"dropEggWolfAdjective": "충직한",
@@ -20,8 +20,8 @@
"dropEggFoxText": "여우",
"dropEggFoxMountText": "여우",
"dropEggFoxAdjective": "약삭빠른",
- "dropEggFlyingPigText": "나는 돼지",
- "dropEggFlyingPigMountText": "날으는 돼지",
+ "dropEggFlyingPigText": "하늘을 나는 돼지",
+ "dropEggFlyingPigMountText": "하늘을 나는 돼지",
"dropEggFlyingPigAdjective": "변덕스러운",
"dropEggDragonText": "용",
"dropEggDragonMountText": "용",
@@ -243,9 +243,9 @@
"foodHoney": "꿀",
"foodHoneyThe": "꿀",
"foodHoneyA": "꿀 한 스푼",
- "foodCakeSkeleton": "말라빠진 케이크",
- "foodCakeSkeletonThe": "말라빠진 케이크",
- "foodCakeSkeletonA": "말라빠진 케이크 한 조각",
+ "foodCakeSkeleton": "뼈만 남은 케이크",
+ "foodCakeSkeletonThe": "뼈만 남은 케이크",
+ "foodCakeSkeletonA": "뼈만 남은 케이크 한 조각",
"foodCakeBase": "기본 케이크",
"foodCakeBaseThe": "기본 케이크",
"foodCakeBaseA": "기본 케이크 한 조각",
@@ -273,9 +273,9 @@
"foodCakeRed": "딸기 케이크",
"foodCakeRedThe": "딸기 케이크",
"foodCakeRedA": "딸기 케이크 한 조각",
- "foodCandySkeleton": "말라빠진 사탕",
- "foodCandySkeletonThe": "말라빠진 사탕",
- "foodCandySkeletonA": "말라빠진 사탕 한 개",
+ "foodCandySkeleton": "뼈만 남은 사탕",
+ "foodCandySkeletonThe": "뼈만 남은 사탕",
+ "foodCandySkeletonA": "뼈만 남은 사탕 한 개",
"foodCandyBase": "기본 사탕",
"foodCandyBaseThe": "기본 사탕",
"foodCandyBaseA": "기본 사탕 한 개",
@@ -344,16 +344,16 @@
"hatchingPotionSunshine": "햇빛",
"hatchingPotionRoseQuartz": "로즈쿼츠",
"hatchingPotionAutumnLeaf": "낙엽",
- "hatchingPotionBronze": "구리",
+ "hatchingPotionBronze": "청동",
"hatchingPotionBirchBark": "자작나무 껍질",
"hatchingPotionVampire": "뱀파이어",
"questEggDolphinAdjective": "쾌활한",
"hatchingPotionWatery": "물로 된",
"hatchingPotionFluorite": "형석",
- "hatchingPotionAmber": "호박",
+ "hatchingPotionAmber": "호박석",
"hatchingPotionVeggie": "밭",
"questEggRobotAdjective": "미래적인",
- "hatchingPotionCelestial": "천상",
+ "hatchingPotionCelestial": "천상의",
"hatchingPotionDessert": "디저트",
"hatchingPotionWindup": "태엽장치",
"foodPieSkeleton": "골수 파이",
@@ -370,5 +370,6 @@
"hatchingPotionStainedGlass": "스테인드글라스",
"hatchingPotionSunset": "노을",
"foodPieSkeletonA": "골수 파이 한 조각",
- "hatchingPotionOnyx": "오닉스"
+ "hatchingPotionOnyx": "오닉스",
+ "hatchingPotionVirtualPet": "가상 펫"
}
diff --git a/website/common/locales/ko/defaulttasks.json b/website/common/locales/ko/defaulttasks.json
index ccf4aa01c0..0836c0b08e 100755
--- a/website/common/locales/ko/defaulttasks.json
+++ b/website/common/locales/ko/defaulttasks.json
@@ -4,21 +4,21 @@
"defaultHabit3Text": "계단/엘리베이터로 오르기 (수정하려면 연필을 클릭하세요)",
"defaultHabit4Text": "Habitica에 과제를 추가하세요",
"defaultHabit4Notes": "습관, 매일 과제, 할 일을 말이죠",
- "defaultTodo1Text": "해비티카에 가입하기 (체크하세요!)",
+ "defaultTodo1Text": "Habitica에 가입하기 (체크하세요!)",
"defaultTodoNotes": "이 해야 할 일을 완료하거나, 수정하거나, 삭제할 수 있습니다.",
"defaultReward1Text": "15분간 휴식",
"defaultReward2Text": "스스로에게 보상을 주세요",
"defaultReward2Notes": "TV를 보거나, 게임을 하거나, 간식을 먹거나, 당신이 정하세요!",
- "defaultTag1": "회사업무",
+ "defaultTag1": "회사 업무",
"defaultTag2": "운동",
"defaultTag3": "웰빙, 건강 유지",
"defaultTag4": "학교",
"defaultTag5": "팀",
"defaultTag6": "집안일",
"defaultTag7": "창조적인 작업",
- "workTodoProject": "업무 프로젝트 >> 업무 프로젝트를 완성해라",
- "workDailyImportantTask": "가장 중요한 할 일 >> 오늘의 가장 중요한 할 일로 일해라",
- "workHabitMail": "이메일 과정",
+ "workTodoProject": "업무 프로젝트 >> 업무 프로젝트 완성하기",
+ "workDailyImportantTask": "가장 중요한 할 일 >> 오늘의 가장 중요한 할 일을 완료",
+ "workHabitMail": "이메일 처리",
"choresDailyText": "설거지 하기",
"selfCareDailyText": "5분 심호흡하기",
"healthTodoNotes": "눌러서 체크리스트를 추가하세요!",
@@ -27,19 +27,19 @@
"exerciseTodoNotes": "눌러서 체크리스트를 추가하세요!",
"choresDailyNotes": "일정을 선택하려면 누르세요!",
"choresHabit": "10분 청소",
- "selfCareTodoNotes": "실천할 계획을 지정하려면 누르세요!",
+ "selfCareTodoNotes": "눌러서 구체적인 계획을 설정해보세요!",
"selfCareTodoText": "재미있는 활동에 참여하기",
"selfCareDailyNotes": "일정을 선택하려면 누르세요!",
- "selfCareHabit": "휴식하기",
- "schoolTodoText": "학교 과제하기",
+ "selfCareHabit": "잠깐 휴식하기",
+ "schoolTodoText": "학교 과제 끝내기",
"schoolDailyNotes": "과제 일정을 선택하려면 누르세요!",
"schoolDailyText": "과제 하기",
- "healthTodoText": "일정 확인 >> 건강한 변화를 생각하기",
- "healthHabit": "건강식품/정크 푸드를 먹으세요",
- "exerciseDailyNotes": "눌러서 스케줄 및 운동을 지정하세요!",
- "exerciseTodoText": "운동 일정 설정",
- "exerciseDailyText": "스트레칭 >> 일일 운동 순서",
- "workDailyImportantTaskNotes": "가장 중요한 할 일로 지정하려면 누르세요",
+ "healthTodoText": "건강 관련 검진 예약하기 >> 건강해진 나를 상상해보기",
+ "healthHabit": "건강하게 먹기/정크 푸드 먹기",
+ "exerciseDailyNotes": "눌러서 운동 일정과 종목을 지정하세요!",
+ "exerciseTodoText": "운동 계획 세우기",
+ "exerciseDailyText": "스트레칭 >> 일일 운동 루틴",
+ "workDailyImportantTaskNotes": "가장 중요한 할 일을 구체적으로 적고 싶다면 누르세요",
"creativityTodoNotes": "눌러서 프로젝트 이름을 지정하세요.",
"creativityDailyNotes": "눌러서 현재 프로젝트 이름과 일정을 지정하세요!",
"defaultHabitNotes": "아니면 수정 화면에서 삭제할 수 있어요",
@@ -47,5 +47,8 @@
"schoolTodoNotes": "눌러서 과제 이름과 마감일을 설정하세요!",
"schoolHabit": "공부하기/미루기",
"healthDailyText": "치실 사용하기",
- "exerciseHabit": "유산소 운동 10분 >> 유산소 운동 10분 더하기(+)"
+ "exerciseHabit": "유산소 운동 10분 >> 유산소 운동 10분 더하기(+)",
+ "choresTodoText": "옷장 정리>>깔끔하게 정리하기",
+ "choresTodoNotes": "지저분한 곳을 지정하려면 이곳을 누르세요!",
+ "creativityDailyText": "창의적인 프로젝트 하기"
}
diff --git a/website/common/locales/ko/faq.json b/website/common/locales/ko/faq.json
index 4dfa03f7ab..eea9f7edd4 100755
--- a/website/common/locales/ko/faq.json
+++ b/website/common/locales/ko/faq.json
@@ -21,10 +21,10 @@
"androidFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you tap a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your Party and one of your Party mates did not complete all their Dailies, the Boss will attack you.\n\n The main way to heal is to gain a level, which restores all your health. You can also buy a Health Potion with gold from the Rewards tab on the Tasks page. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a Party with a Healer, they can heal you as well.",
"webFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you click a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your party and one of your party mates did not complete all their Dailies, the Boss will attack you. The main way to heal is to gain a level, which restores all your Health. You can also buy a Health Potion with Gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. Other Healers can heal you as well if you are in a Party with them. Learn more by clicking \"Party\" in the navigation bar.",
"faqQuestion5": "친구들과 함께 Habitica를 즐기려면 어떻게 하나요?",
- "iosFaqAnswer5": "가장 좋은 방법은 그들을 파티에 초대하는 것입니다! 파티는 퀘스트를 함께 하고, 몬스터를 물리치고, 서로를 돕기 위해 마법을 쓸 수 있습니다.\n\n파티를 시작하고 싶다면 메뉴 > [파티](https://habitica.com/party)로 가서 \"새 파티 만들기\"를 클릭하세요. 친구들을 추가하기 위해 \"멤버 초대\"를 누르고 @사용자 ID를 입력하세요. 만약 다른 사람이 만든 파티에 들어가고 싶다면 그 사람에게 여러분의 사용자 ID를 알려주면 됩니다!\n\n또한 여러분은 친구와 함께 공통 관심사를 가진 사람들의 모임인 길드에 가입할 수 있습니다! 유익하고 재미있는 커뮤니티가 많으므로 꼭 확인하세요.\n\n좀 더 경쟁적인 것을 원한다면 여러분은 일련의 할 일을 완수해야 하는 챌린지를 만들거나 기존 챌린지에 참여할 수 있습니다. 광범위한 흥미와 목표에 걸쳐 이용 가능한 모든 종류의 챌린지가 있습니다. 몇몇 공공 챌린지에서는 우승자로 선정되면 젬 상을 받을 수도 있습니다.",
+ "iosFaqAnswer5": "가장 좋은 방법은 그들을 파티에 초대하는 것입니다! 파티는 퀘스트를 함께 하고, 몬스터를 물리치고, 서로를 돕기 위해 마법을 쓸 수 있습니다.\n\n파티를 시작하고 싶다면 메뉴 > [파티](https://habitica.com/party)로 가서 \"새 파티 만들기\"를 클릭하세요. 친구들을 추가하기 위해 \"멤버 초대\"를 누르고 @사용자 ID를 입력하세요. 만약 다른 사람이 만든 파티에 들어가고 싶다면 그 사람에게 여러분의 사용자 ID를 알려주면 됩니다!\n\n또한 여러분은 친구와 함께 공통 관심사를 가진 사람들의 모임인 길드에 가입할 수 있습니다! 유익하고 재미있는 커뮤니티가 많으므로 꼭 확인하세요.\n\n좀 더 경쟁적인 것을 원한다면 여러분은 일련의 할 일을 완수해야 하는 챌린지를 만들거나 기존 챌린지에 참여할 수 있습니다. 광범위한 흥미와 목표에 걸쳐 이용 가능한 모든 종류의 챌린지가 있습니다. 몇몇 공공 챌린지에서는 우승자로 선정되면 보석(젬) 보상을 받을 수도 있습니다.",
"androidFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to the [website](https://habitica.com/) to create one if you don't already have a Party. You can also join guilds together (Social > Guilds). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many guilds as you'd like, but only one party.\n\n For more detailed info, check out the wiki pages on [Parties](http://habitica.wikia.com/wiki/Party) and [Guilds](http://habitica.wikia.com/wiki/Guilds).",
"webFaqAnswer5": "The best way is to invite them to a Party with you by clicking \"Party\" in the navigation bar! Parties can go on quests, battle monsters, and cast skills to support each other. You can also join Guilds together (click on \"Guilds\" in the navigation bar). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many Guilds as you'd like, but only one Party. For more detailed info, check out the wiki pages on [Parties](http://habitica.wikia.com/wiki/Party) and [Guilds](http://habitica.wikia.com/wiki/Guilds).",
- "faqQuestion6": "펫이나 탈것은 어떻게 얻나요?",
+ "faqQuestion6": "펫이나 탑승펫은 어떻게 얻나요?",
"iosFaqAnswer6": "레벨 3이되면 아이템 드롭 시스템이 잠금해제됩니다. 당신이 과제를 완료할 때마다 알이나 부화의 묘약, 음식 조각을 받을 수 있는 무작위의 기회가 주어집니다. 이것은 메뉴 > 아이템에 저장됩니다.\n\n펫을 부화시키려면 알과 부화의 묘약이 필요합니다. 부화시킬 종류의 알을 누르고 \"알 부화시키기\"를 선택하세요. 그런 다음 부화될 펫의 색상을 결정할 부화의 묘약을 선택하세요! 아바타 곁에 새 펫을 두려면 메뉴 > 펫으로 가서 펫을 클릭하세요.\n\n펫은 탑승펫으로 기를 수도 있습니다. 메뉴 > 펫으로 가서 펫에게 먹이를 주세요. 펫을 선택하고 \"펫에게 먹이주기\"를 선택하세요! 펫을 탑승펫으로 기르려면 먹이를 여러번 줘야 합니다. 만약 펫이 좋아하는 음식을 알아낸다면, 더 빨리 키울 수 있습니다. 실험과 실패를 통해 배우거나 [여기서 스포일 당하기](http://habitica.wikia.com/wiki/Food#Food_Preferences)를 통해 배워보세요. 탑승펫이 생겼다면, 메뉴 > 탑승펫으로 가서 아바타가 탈 탑승펫을 누르세요.\n\n특정 퀘스트를 완료하면 퀘스트 펫의 알도 얻을 수 있습니다. (퀘스트에 대해 더 알고 싶으면 다음을 보세요)",
"androidFaqAnswer6": "레벨 3이되면 아이템 드롭 시스템이 잠금해제됩니다. 당신이 과제를 완료할 때마다 알이나 부화의 묘약, 음식 조각을 받을 수 있는 무작위의 기회가 주어집니다. 이것은 메뉴 > 아이템에 저장됩니다.\n\n펫을 부화시키려면 알과 부화의 묘약이 필요합니다. 부화시킬 종류의 알을 누르고 \"알 부화시키기\"를 선택하세요. 그런 다음 부화될 펫의 색상을 결정할 부화의 묘약을 선택하세요! 아바타 곁에 새 펫을 두려면 메뉴 > 동물훈련소 > 펫으로 가서 펫 종류를 선택하고, 원하는 펫을 클릭한 후 \"사용\"을 선택하세요(아바타는 변화를 바로 반영하진 않습니다).\n\n펫은 탑승펫으로 기를 수도 있습니다. 메뉴 > 동물훈련소 [> 펫]으로 가서 펫에게 먹이를 주세요. 펫을 선택하고 \"먹이주기\"를 선택하세요! 펫을 탑승펫으로 기르려면 먹이를 여러번 줘야 합니다. 만약 펫이 좋아하는 음식을 알아낸다면, 더 빨리 키울 수 있습니다. 실험과 실패를 통해 배우거나 [여기서 스포일 당하기](http://habitica.wikia.com/wiki/Food#Food_Preferences)를 통해 배워보세요. 탑승펫을 타려면, 메뉴 > 동물훈련소 > 탑승펫으로 가서 원하는 종을 선택하고 아바타가 탈 탑승펫을 클릭한 후 \"사용\"을 선택하세요(아바타는 변화를 바로 반영하진 않습니다).\n\n특정 퀘스트를 완료하면 퀘스트 펫의 알도 얻을 수 있습니다. (퀘스트에 대해 더 알고 싶으면 다음을 보세요)",
"webFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored under Inventory > Items. To hatch a Pet, you'll need an egg and a hatching potion. Once you have both an egg and a potion, go to Inventory > Stable to hatch your pet by clicking on its image. Once you've hatched a pet, you can equip it by clicking on it. You can also grow your Pets into Mounts by feeding them under Inventory > Stable. Drag a piece of food from the action bar at the bottom of the screen and drop it on a pet to feed it! You'll have to feed a Pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). Once you have a Mount, click on it to equip it to your avatar. You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)",
@@ -54,5 +54,6 @@
"webFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual. You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party. A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change. You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.",
"iosFaqStillNeedHelp": "[Wiki FAQ](http://habitica.wikia.com/wiki/FAQ)에 없는 질문을 하고 싶으시다면, 메뉴 > 선술집에 오셔서 선술집 채팅에서 물어보세요! 도움을 드릴게요.",
"androidFaqStillNeedHelp": "이 목록이나 [위키 FAQ](http://habitica.wikia.com/wiki/FAQ)에 없는 질문을 하고 싶다면, 메뉴 > 주막에 와서 물어보세요! 기꺼이 도와드립니다.",
- "webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Habitica Help guild](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help."
+ "webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Habitica Help guild](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help.",
+ "faqQuestion13": "그룹 플랜(Group Plan)이 무엇입니까?"
}
diff --git a/website/common/locales/ko/front.json b/website/common/locales/ko/front.json
index 756c084827..8a0492eaa9 100644
--- a/website/common/locales/ko/front.json
+++ b/website/common/locales/ko/front.json
@@ -2,7 +2,7 @@
"termsAndAgreement": "아래에 있는 버튼을 클릭함으로써, 당신은 서비스 약관 과 개인정보 정책을 읽었고 이에 동의했음을 표시합니다.",
"FAQ": "자주 하는 질문",
"sendLink": "링크 보내기",
- "forgotPasswordSteps": "Habitica 계정등록에 사용한 아이디•이메일 주소를 입력하세요.",
+ "forgotPasswordSteps": "Habitica 계정 등록에 사용한 아이디•이메일 주소를 입력하세요.",
"emailNewPass": "메일로 비밀번호 재설정 링크 보내기",
"forgotPassword": "비밀번호를 잊으셨습니까?",
"companyDonate": "기부하기",
@@ -41,7 +41,7 @@
"wrongPassword": "잘못된 암호.",
"muchmuchMore": "그리고 훨씬 더!",
"marketing1Lead2Title": "좋은 장비를 얻으세요",
- "marketing1Lead1": "해비티카는 실생활의 습관들을 향상시키도록 돕는 비디오 게임입니다. 당신의 모든 과제들(습관, 일과 및 해야할 일)을 당신이 정복해야할 작은 괴물들로 바꾸어서 당신의 삶을 게임화하는 것입니다. 당신이 잘 할수록 게임에서 더 큰 성과를 얻습니다. 만약 잘못한다면 당신의 캐릭터는 게임에서 퇴보하게 될 것입니다.",
+ "marketing1Lead1": "Habitica는 실생활의 습관들을 향상시키도록 돕는 비디오 게임입니다. 당신의 모든 과제들(습관, 일과 및 해야할 일)을 당신이 정복해야할 작은 괴물들로 바꾸어서 당신의 삶을 게임화하는 것입니다. 당신이 잘 할수록 게임에서 더 큰 성과를 얻습니다. 만약 잘못한다면 당신의 캐릭터는 게임에서 퇴보하게 될 것입니다.",
"marketing1Header": "게임을 해서 당신의 습관들을 향상시키세요",
"invalidEmail": "암호 재설정을 수행하려면 유효한 전자 메일 주소가 필요합니다.",
"guidanceForBlacksmiths": "대장장이를 위한 안내",
@@ -50,11 +50,33 @@
"mobileAndroid": "안드로이드",
"marketing4Lead1": "조직적 사용",
"marketing2Lead2Title": "몬스터와 싸우기",
- "marketing2Lead1": "해비티카를 혼자서 하는 동안에도 당신이 협력하거나 경쟁 그리고 서로 책임을 묻기 시작할 때 더 빛이 나게 됩니다. 자기계발 프로그램의 가장 효과적인 부분은 사회적 책임이며, 비디오 게임보다 더 책임과 경쟁을 위한 환경이 어디 있겠습니까?",
+ "marketing2Lead1": "Habitica를 혼자서 하는 동안에도 당신이 협력하거나 경쟁 그리고 서로 책임을 묻기 시작할 때 더 빛이 나게 됩니다. 자기계발 프로그램의 가장 효과적인 부분은 사회적 책임이며, 비디오 게임보다 더 책임과 경쟁을 위한 환경이 어디 있겠습니까?",
"marketing2Lead2": "전투가 없으면 롤플레잉 게임이겠어요? 파티와 함께 몬스터와 싸우세요. 몬스터들은 \"초책임모드\"입니다. - 당신이 운동을 빼먹은 날은 몬스터가 *모두*를 다치게 만드는 날입니다.",
"marketing2Lead3Title": "서로에게 도전심이 들게 해 보세요",
"marketing2Lead3": "도전과제는 친구들과 낯선 사람들과 경쟁을 하게 해줍니다. 도전과제가 끝났을때 최고인 사람이 특별한 상을 받게 됩니다.",
"marketing4Lead1Title": "교육의 게임화",
"marketing4Header": "조직적 용도",
- "marketing4Lead2": "건강 관리 비용이 증가하고 있으며 무엇인가를 제공해야 합니다. 수백개의 프로그램들이 비용절감과 건강개선을 위해 만들어지고 있습니다. 우리는 해비티카가 건강한 생활 방식을 향한 실질적인 길을 열 수 있다고 믿습니다."
+ "marketing4Lead2": "건강 관리 비용이 증가하고 있으며 무엇인가를 제공해야 합니다. 수백개의 프로그램들이 비용절감과 건강개선을 위해 만들어지고 있습니다. 우리는 Habitica가 건강한 생활 방식을 향한 실질적인 길을 열 수 있다고 믿습니다.",
+ "username": "아이디",
+ "emailOrUsername": "이메일 혹은 아이디 (대소문자 구별)",
+ "missingUsernameEmail": "아이디 혹은 이메일을 찾을 수 없습니다.",
+ "missingUsername": "아이디를 찾을 수 없습니다.",
+ "usernameTime": "아이디를 설정할 시간이에요!",
+ "usernameInfo": "로그인 이름은 고유한 아이디로 보여지는 이름과 함께 다른 사람에게 보여집니다. 또한 초대, @아이디 채팅, 쪽지 주고받기에 이용됩니다.
이 변경 사항에 대해 더 알고 싶으시다면, 위키에서 알아보세요.",
+ "usernameTOSRequirements": "아이디는 반드시 이용약관 과 커뮤니티 가이드라인을 준수해야 합니다. 만약 이전에 로그인 이름을 설정하지 않으셨다면, 아이디는 임의로 부여되어 있습니다.",
+ "usernameTaken": "이미 존재하는 아이디입니다.",
+ "passwordReset": "만약 저희가 고객님의 이메일이나 아이디를 가지고 있다면, 새 비밀번호를 설정하는 방법을 이메일로 보내드렸습니다.",
+ "invalidLoginCredentialsLong": "이런! 당신의 이메일 주소 / 아이디 혹은 비밀번호가 바르지 않습니다.\n- 올바르게 입력됐는지 확인해주세요. 아이디와 비밀번호는 대소문자를 구별합니다.\n- Facebook이나 Google 연동으로 계정을 생성하셨다면, 다시 한 번 시도해보세요.\n- 만약 비밀번호를 잊으셨다면, \"비밀번호 찾기\"를 누르세요.",
+ "usernamePlaceholder": "예: Honggildong",
+ "emailUsernamePlaceholder": "예: Honggildong 또는 gildong@example.com",
+ "marketing1Lead3": "\"확률적 보상\" 시스템을 통해 도박처럼 스릴 있는 동기 부여를 얻으세요. Habitica는 스스로를 다양한 방식으로 격려할 수 있습니다. 스스로에게 긍정적인 보상을 주거나, 부정적인 습관에 벌을 주거나, 정해진 보상도 얻고, 랜덤한 보상도 노릴 수 있죠.",
+ "marketing3Lead1": "**아이폰과 안드로이드** 앱은 이동 중에도 업무를 처리할 수 있게 돕습니다. 웹사이트에 로그인해서 작업 완료 버튼을 누리는 것이 귀찮을 때가 있지요.",
+ "marketing2Lead1Title": "친구와 함께 올라가는 생산성",
+ "marketing3Lead2": "**서드 파티 툴**은 Habitica를 삶의 다양한 측면과 연결합니다. 우리의 API 서비스는 [Chrome 확장 프로그램](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US) 등과 손쉬운 통합을 가능하게 합니다. 비생산적인 웹서핑할 때 포인트를 잃게 하거나, 생산적일 때는 포인트를 얻게할 수 있죠. [자세한 정보는 여기를 클릭하세요](https://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
+ "marketing3Lead2Title": "서드 파티 지원",
+ "marketing4Lead3-1": "삶을 게임화하고 싶으세요?",
+ "joinMany": "목표를 달성하면서 <%= userCountInMillions %> million이 넘는 유저들과 함께 즐기세요!",
+ "marketing4Lead2Title": "건강과 웰빙의 게임화",
+ "marketing4Lead3-2": "교육, 건강 등의 주제로 그룹을 운영하고 싶으신가요?",
+ "marketing4Lead3Title": "모든 것을 게임화하기"
}
diff --git a/website/common/locales/ko/gear.json b/website/common/locales/ko/gear.json
index 3712ec1dcf..b9d3a362ca 100755
--- a/website/common/locales/ko/gear.json
+++ b/website/common/locales/ko/gear.json
@@ -82,7 +82,7 @@
"weaponSpecial0Notes": "사악한 일격으로 작동하여 적들의 생명을 포식합니다. 근력을 <%= str %> 만큼 올려줍니다.",
"weaponSpecial1Text": "수정 검",
"weaponSpecial1Notes": "검의 반짝이는 부분이 영웅의 이야기를 들려줍니다. 모든 능력치를 <%= attrs %>만큼 올려줍니다.",
- "weaponSpecial2Text": "Stephen Weber의 드래곤의 지팡이",
+ "weaponSpecial2Text": "스티븐 웨버의 용 지팡이",
"weaponSpecial2Notes": "안에서 끓어오르는 용의 권세를 느껴라! 근력과 통찰력을 각각 <%= attrs %> 만큼 올려줍니다.",
"weaponSpecial3Text": "머스테인의 이정표 박살내는 모르겐슈테른",
"weaponSpecial3Notes": "만남, 몬스터, 불안: 통제하다! 짓이기다! 근력, 통찰력 그리고 생명력을 각각 <%= attrs %> 만큼 올려줍니다.",
@@ -280,7 +280,7 @@
"weaponSpecialWinter2019WarriorNotes": "This snowflake was grown, ice crystal by ice crystal, into a diamond-hard blade! Increases Strength by <%= str %>. Limited Edition 2018-2019 Winter Gear.",
"weaponSpecialWinter2019MageText": "Fiery Dragon Staff",
"weaponSpecialWinter2019MageNotes": "Watch out! This explosive staff is ready to help you take on all comers. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
- "weaponSpecialWinter2019HealerText": "Wand of Winter",
+ "weaponSpecialWinter2019HealerText": "겨울의 지팡이",
"weaponSpecialWinter2019HealerNotes": "Winter can be a time of rest and healing, and so this wand of winter magic can help to soothe the most grievous hurts. Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
"weaponMystery201411Text": "향연의 쇠스랑",
"weaponMystery201411Notes": "Stab your enemies or dig in to your favorite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.",
@@ -339,9 +339,9 @@
"weaponArmoireWoodElfStaffText": "나무 엘프 지팡이",
"weaponArmoireWoodElfStaffNotes": "Made from a fallen limb of an ancient tree, this staff will help you communicate with forest denizens great and small. Increases Intelligence by <%= int %>. Enchanted Armoire: Wood Elf Set (Item 3 of 3).",
"weaponArmoireWandOfHeartsText": "심장의 지팡이",
- "weaponArmoireWandOfHeartsNotes": "이 지팡이는 따뜻한 빨간 빛으로 반짝입니다. 당신의 심장에 지혜를 불어 넣습니다. 지력을 <%= int %> 높여줍니다. 마법의 옷장: 심장의 여왕 세트 (아이템 3중 3).",
+ "weaponArmoireWandOfHeartsNotes": "이 지팡이는 따뜻한 빨간 빛으로 반짝입니다. 당신의 심장에 지혜를 불어 넣습니다. 지력을 <%= int %> 높여줍니다. 마법의 장비상자: 심장의 여왕 세트 (아이템 3중 3).",
"weaponArmoireForestFungusStaffText": "숲 곰팡이 지팡이",
- "weaponArmoireForestFungusStaffNotes": "이 울퉁불퉁한 지팡이로 곰팡이 마법을 부려보세요! 지능을 <%= int %>, 통찰력을 <%= per %> 높여줍니다. 마법의 옷장: 독립 아이템.",
+ "weaponArmoireForestFungusStaffNotes": "이 울퉁불퉁한 지팡이로 곰팡이 마법을 부려보세요! 지능을 <%= int %>, 통찰력을 <%= per %> 높여줍니다. 마법의 장비상자: 독립 아이템.",
"weaponArmoireFestivalFirecrackerText": "Festival Firecracker",
"weaponArmoireFestivalFirecrackerNotes": "Enjoy this delightful sparkler responsibly. Increases Perception by <%= per %>. Enchanted Armoire: Festival Attire Set (Item 3 of 3).",
"weaponArmoireMerchantsDisplayTrayText": "Merchant's Display Tray",
@@ -715,15 +715,15 @@
"armorMystery301704Text": "Steampunk Pheasant Dress",
"armorMystery301704Notes": "This fine outfit is perfect for a night out and about or a day in your gadget workshop! Confers no benefit. April 3017 Subscriber Item.",
"armorArmoireLunarArmorText": "잔잔한 달빛의 갑옷",
- "armorArmoireLunarArmorNotes": "달빛이 당신을 강하고 똑똑하게 만들어 줄꺼에요. 힘 <%= str %> 상승, 지력 <%= int %> 상승. 마법의 옷장: 잔잔한 달빛 세트 (아이템2/3).",
+ "armorArmoireLunarArmorNotes": "달빛이 당신을 강하고 똑똑하게 만들어 줄꺼에요. 힘 <%= str %> 상승, 지력 <%= int %> 상승. 마법의 장비상자: 잔잔한 달빛 세트 (아이템2/3).",
"armorArmoireGladiatorArmorText": "검투사 갑옷",
- "armorArmoireGladiatorArmorNotes": "검투사가 되기 위해서는 교활할 뿐만 아니라 강해야 합니다. 통찰력 <%= per %>상승, 힘 <%= str %>상승. 마법의 옷장 : 검투사 세트 (아이템2/3).",
+ "armorArmoireGladiatorArmorNotes": "검투사가 되기 위해서는 교활할 뿐만 아니라 강해야 합니다. 통찰력 <%= per %>상승, 힘 <%= str %>상승. 마법의 장비상자 : 검투사 세트 (아이템2/3).",
"armorArmoireRancherRobesText": "목장 주인의 로브",
- "armorArmoireRancherRobesNotes": "이 마법의 목장 주인의 로브를 입고 탈것들과 펫을 다뤄보세요! 힘 <%= str %>상승, 통찰력 <%= per %>상승, 지력 <%= int %>상승. 마법의 옷장: 목장 주인 세트 (아이템 2/3).",
+ "armorArmoireRancherRobesNotes": "이 마법의 목장 주인의 로브를 입고 탑승펫들과 펫을 다뤄보세요! 힘 <%= str %>상승, 통찰력 <%= per %>상승, 지력 <%= int %>상승. 마법의 장비상자: 목장 주인 세트 (아이템 2/3).",
"armorArmoireGoldenTogaText": "황금빛 겉옷",
- "armorArmoireGoldenTogaNotes": "진정한 영웅만이 입는 황금의 겉옷입니다. 힘과 생명력 각각 <%= attrs %> 상승. 마법의 옷장: 황금 겉옷 세트 (아이템 1/3).",
+ "armorArmoireGoldenTogaNotes": "진정한 영웅만이 입는 황금의 겉옷입니다. 힘과 생명력 각각 <%= attrs %> 상승. 마법의 장비상자: 황금 겉옷 세트 (아이템 1/3).",
"armorArmoireHornedIronArmorText": "강철 뿔 갑옷",
- "armorArmoireHornedIronArmorNotes": "수많은 망치질로 만들어진 이 강철 뿔 갑옷을 뚫기란 불가능입니다. 생명력 <%= con %> 상승, 통찰력 <%= per %>상승. 마법의 옷장 : 강철 뿔 세트 (아이템 2/3).",
+ "armorArmoireHornedIronArmorNotes": "수많은 망치질로 만들어진 이 강철 뿔 갑옷을 뚫기란 불가능입니다. 생명력 <%= con %> 상승, 통찰력 <%= per %>상승. 마법의 장비상자 : 강철 뿔 세트 (아이템 2/3).",
"armorArmoirePlagueDoctorOvercoatText": "흑사병 의사의 외투",
"armorArmoirePlagueDoctorOvercoatNotes": "An authentic overcoat worn by the doctors who battle the Plague of Procrastination! Increases Intelligence by <%= int %>, Strength by <%= str %>, and Constitution by <%= con %>. Enchanted Armoire: Plague Doctor Set (Item 3 of 3).",
"armorArmoireShepherdRobesText": "양치기의 로브",
@@ -737,7 +737,7 @@
"armorArmoireBarristerRobesText": "법조인 로브",
"armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).",
"armorArmoireJesterCostumeText": "어릿광대 의상",
- "armorArmoireJesterCostumeNotes": "트랄-랄-라! 이 의상이 보기엔 좀 그래도, 당신은 바보가 아니에요. 지력을 <%= int %> 높여줍니다. 마법의 옷장: 어릿광대 세트 (아이템 3 중 2).",
+ "armorArmoireJesterCostumeNotes": "트랄-랄-라! 이 의상이 보기엔 좀 그래도, 당신은 바보가 아니에요. 지력을 <%= int %> 높여줍니다. 마법의 장비상자: 어릿광대 세트 (아이템 3 중 2).",
"armorArmoireMinerOverallsText": "Miner Overalls",
"armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Increases Constitution by <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).",
"armorArmoireBasicArcherArmorText": "기본 궁수 갑옷",
@@ -757,13 +757,13 @@
"armorArmoireIronBlueArcherArmorText": "철의 푸른 궁수 갑옷",
"armorArmoireIronBlueArcherArmorNotes": "This armor will protect you from flying arrows on the battlefield! Increases Strength by <%= str %>. Enchanted Armoire: Iron Archer Set (Item 2 of 3).",
"armorArmoireRedPartyDressText": "빨간 파티 드레스",
- "armorArmoireRedPartyDressNotes": "당신은 강하고, 터프하고, 똑똑하며, 무척 패셔너블합니다! 근력과 생명력, 지력을 각각 <%= attrs %> 높여줍니다. 마법의 옷장: 빨간 리본 세트(아이템 2/2).",
+ "armorArmoireRedPartyDressNotes": "당신은 강하고, 터프하고, 똑똑하며, 무척 패셔너블합니다! 근력과 생명력, 지력을 각각 <%= attrs %> 높여줍니다. 마법의 장비상자: 빨간 리본 세트(아이템 2/2).",
"armorArmoireWoodElfArmorText": "나무 엘프 갑옷",
"armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
"armorArmoireRamFleeceRobesText": "Ram Fleece Robes",
"armorArmoireRamFleeceRobesNotes": "These robes keep you warm even through the fiercest blizzard. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Ram Barbarian Set (Item 2 of 3).",
"armorArmoireGownOfHeartsText": "심장의 가운",
- "armorArmoireGownOfHeartsNotes": "이 가운은 프릴로 가득합니다! 그 뿐만 아니라 당신의 심장에 불굴의 정신을 키웁니다. 생명력을 <%= con %> 높여줍니다. 마법의 옷장: 심장의 여왕 세트 (아이템 3중 2).",
+ "armorArmoireGownOfHeartsNotes": "이 가운은 프릴로 가득합니다! 그 뿐만 아니라 당신의 심장에 불굴의 정신을 키웁니다. 생명력을 <%= con %> 높여줍니다. 마법의 장비상자: 심장의 여왕 세트 (아이템 3중 2).",
"armorArmoireMushroomDruidArmorText": "버섯 드루이드 갑옷",
"armorArmoireMushroomDruidArmorNotes": "This woody brown armor, capped with tiny mushrooms, will help you hear the whispers of forest life. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Mushroom Druid Set (Item 2 of 3).",
"armorArmoireGreenFestivalYukataText": "Green Festival Yukata",
@@ -1169,15 +1169,15 @@
"headArmoireLunarCrownText": "잔잔한 달빛의 왕관",
"headArmoireLunarCrownNotes": "This crown strengthens health and sharpens senses, especially when the moon is full. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Soothing Lunar Set (Item 1 of 3).",
"headArmoireRedHairbowText": "빨간 리본",
- "headArmoireRedHairbowNotes": "강하고, 터프하고, 똑똑해지세요! 이 아름다운 빨간 리본을 쓰고서요! 근력을 <%= str %>, 생명력을 <%= con %>, 지력을 <%= int %> 높여줍니다. 마법의 옷장: 빨간 리본 세트 (아이템 1/2).",
+ "headArmoireRedHairbowNotes": "강하고, 터프하고, 똑똑해지세요! 이 아름다운 빨간 리본을 쓰고서요! 근력을 <%= str %>, 생명력을 <%= con %>, 지력을 <%= int %> 높여줍니다. 마법의 장비상자: 빨간 리본 세트 (아이템 1/2).",
"headArmoireVioletFloppyHatText": "보라색 헐렁한 모자",
- "headArmoireVioletFloppyHatNotes": "많은 주문들이 이 단순한 모자에 꿰메어졌습니다. 행복한 보라색을 띄고 있네요. 통찰력을 <%= per %>, 지력을 <%= int %>, 그리고 생명력을 <%= con %> 높여줍니다. 마법의 옷장: 독립 아이템.",
+ "headArmoireVioletFloppyHatNotes": "많은 주문들이 이 단순한 모자에 꿰메어졌습니다. 행복한 보라색을 띄고 있네요. 통찰력을 <%= per %>, 지력을 <%= int %>, 그리고 생명력을 <%= con %> 높여줍니다. 마법의 장비상자: 독립 아이템.",
"headArmoireGladiatorHelmText": "검투사 투구",
- "headArmoireGladiatorHelmNotes": "검투사가 되려면 강해야 할 뿐만 아니라.... 교활해야 합니다. 지력을 <%= int %> 높여주고, 통찰력을 <%= per %> 높여줍니다. 마법의 옷장: 검투사 세트(아이템 1/3).",
+ "headArmoireGladiatorHelmNotes": "검투사가 되려면 강해야 할 뿐만 아니라.... 교활해야 합니다. 지력을 <%= int %> 높여주고, 통찰력을 <%= per %> 높여줍니다. 마법의 장비상자: 검투사 세트(아이템 1/3).",
"headArmoireRancherHatText": "Rancher Hat",
"headArmoireRancherHatNotes": "Round up your pets and wrangle your mounts while wearing this magical Rancher Hat! Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 1 of 3).",
"headArmoireBlueHairbowText": "파란 리본",
- "headArmoireBlueHairbowNotes": "강하고, 터프하고, 똑똑해지세요! 이 아름다운 파란 리본을 쓰고서요! 통찰력을 <%= per %>, 생명력을 <%= con %>, 지력을 <%= int %> 높여줍니다. 마법의 옷장, 독립 아이템",
+ "headArmoireBlueHairbowNotes": "이 아름다운 파란 리본을 매고 있는 동안 예리하고, 터프하고, 똑똑해지세요! 통찰력을 <%= per %>, 생명력을 <%= con %>, 지력을 <%= int %> 높여줍니다. 마법의 장비상자: 파란 리본 세트(아이템 1/2).",
"headArmoireRoyalCrownText": "왕가의 왕관",
"headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Increases Strength by <%= str %>. Enchanted Armoire: Royal Set (Item 1 of 3).",
"headArmoireGoldenLaurelsText": "황금빛 월계수",
@@ -1191,9 +1191,9 @@
"headArmoirePlagueDoctorHatText": "흑사병 의사의 모자",
"headArmoirePlagueDoctorHatNotes": "An authentic hat worn by the doctors who battle the Plague of Procrastination! Increases Strength by <%= str %>, Intelligence by <%= int %>, and Constitution by <%= con %>. Enchanted Armoire: Plague Doctor Set (Item 1 of 3).",
"headArmoireBlackCatText": "검은 고양이 모자",
- "headArmoireBlackCatNotes": "이 검은 모자는... 갸르릉거립니다. 그리고 꼬리를 씰룩거리네요. 게다가 숨도 쉬네요? 네, 당신은 머리 위에 잠든 고양이를 얹고 있습니다. 지력과 통찰력을 각각 <%= attrs %> 씩 높여줍니다. 마법의 옷장: 독립 아이템",
+ "headArmoireBlackCatNotes": "이 검은 모자... 갸르릉거리네요. 꼬리도 씰룩거리고... 숨도 쉬는...? 음, 그냥 머리 위에 잠든 고양이를 얹고 있는거네요. 지력과 통찰력을 각각 <%= attrs %> 씩 높여줍니다. 마법의 장비상자: 독립 아이템.",
"headArmoireOrangeCatText": "오렌지색 고양이 모자",
- "headArmoireOrangeCatNotes": "이 오렌지색 모자는... 갸르릉거립니다. 그리고 꼬리를 씰룩거리네요. 게다가 숨도 쉬네요? 네, 당신은 머리 위에 잠든 고양이를 얹고 있습니다. 지력과 통찰력을 각각 <%= attrs %> 씩 높여줍니다. 마법의 옷장: 독립 아이템",
+ "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).",
"headArmoireShepherdHeaddressText": "양치기의 두건",
@@ -1201,17 +1201,17 @@
"headArmoireCrystalCrescentHatText": "수정 초승달 모자",
"headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).",
"headArmoireDragonTamerHelmText": "용 조련사 투구",
- "headArmoireDragonTamerHelmNotes": "당신은 완전히 용처럼 보입니다. 완벽한 위장이예요... 지력을 <%= int %> 높여줍니다. 마법의 옷장: 용 조련사 세트(아이템 3 중 1)",
+ "headArmoireDragonTamerHelmNotes": "당신은 완.전.히. 용처럼 보입니다. 완벽한 위장... 지력을 <%= int %> 높여줍니다. 마법의 장비상자: 용 조련사 세트(아이템 1/3)",
"headArmoireBarristerWigText": "법조인 가발",
- "headArmoireBarristerWigNotes": "이 법조인 가발은 사나운 적마저 놀라 도망가게 합니다. 근력을 <%= str %> 높여줍니다. 마법의 옷장: 법조인 세트 (아이템 3 중 1)",
+ "headArmoireBarristerWigNotes": "이 법조인 가발은 사나운 적마저 놀라 도망가게 합니다. 근력을 <%= str %> 높여줍니다. 마법의 장비상자: 법조인 세트 (아이템 3 중 1)",
"headArmoireJesterCapText": "어릿광대 모자",
- "headArmoireJesterCapNotes": "이 모자에 달린 종들이 당신을 반대하는 사람들을 산만하게 만들고, 당신이 집중할 수 있게끔 돕게 됩니다. 통찰력을 <%= per %> 높여줍니다. 마법의 옷장: 어릿광대 세트(아이템 3 중 1)",
+ "headArmoireJesterCapNotes": "이 모자에 달린 종들이 당신을 반대하는 사람들을 산만하게 만들고, 당신이 집중할 수 있게끔 돕게 됩니다. 통찰력을 <%= per %> 높여줍니다. 마법의 장비상자: 어릿광대 세트(아이템 3 중 1)",
"headArmoireMinerHelmetText": "광부 헬멧",
- "headArmoireMinerHelmetNotes": "실패하는 과제로부터 당신의 머리를 보호합니다! 지력을 <%= int %> 높여줍니다. 마법의 옷장: 광부 세트 (3 중 1)",
+ "headArmoireMinerHelmetNotes": "실패하는 과제로부터 당신의 머리를 보호합니다! 지력을 <%= int %> 높여줍니다. 마법의 장비상자: 광부 세트 (3 중 1)",
"headArmoireBasicArcherCapText": "기본 궁수 모자",
"headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).",
"headArmoireGraduateCapText": "학사모",
- "headArmoireGraduateCapNotes": "축하합니다! 당신의 깊은 생각으로 이 생각하는 모자를 얻게 됐군요. 지력을 <%= int %> 높여줍니다. 마법의 옷장: 졸업 세트 (아이템 3 중 3)",
+ "headArmoireGraduateCapNotes": "축하합니다! 당신의 깊은 생각으로 이 생각하는 모자를 얻게 됐군요. 지력을 <%= int %> 높여줍니다. 마법의 장비상자: 졸업 세트 (아이템 3 중 3)",
"headArmoireGreenFloppyHatText": "초록색 헐렁한 모자",
"headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Green Loungewear Set (Item 1 of 3).",
"headArmoireCannoneerBandannaText": "Cannoneer Bandanna",
@@ -1221,15 +1221,15 @@
"headArmoireVermilionArcherHelmText": "붉은 궁수 투구",
"headArmoireVermilionArcherHelmNotes": "The magic ruby in this helm will help you aim with laser focus! Increases Perception by <%= per %>. Enchanted Armoire: Vermilion Archer Set (Item 3 of 3).",
"headArmoireOgreMaskText": "오거 가면",
- "headArmoireOgreMaskNotes": "당신의 적들은 오거가 그들에게 오는 것을 보고 달아날 것입니다! 생명력과 근력을 각각 <%= attrs %> 높여줍니다. 마법의 옷장: 오거 복장(아이템 3 중 1)",
+ "headArmoireOgreMaskNotes": "당신의 적들은 오거가 그들에게 오는 것을 보고 달아날 것입니다! 생명력과 근력을 각각 <%= attrs %> 높여줍니다. 마법의 장비상자: 오거 복장(아이템 3 중 1)",
"headArmoireIronBlueArcherHelmText": "철의 푸른 궁수 투구",
- "headArmoireIronBlueArcherHelmNotes": "손이 거칠어졌다고요? 아니예요, 당신은 잘 막았을 뿐이예요. 생명력을 <%= con %> 높여줍니다. 마법의 옷장: 철의 궁수 세트 (아이템 3 중 1)",
+ "headArmoireIronBlueArcherHelmNotes": "손이 거칠어졌다고요? 아니예요, 당신은 잘 막았을 뿐이예요. 생명력을 <%= con %> 높여줍니다. 마법의 장비상자: 철의 궁수 세트 (아이템 3 중 1)",
"headArmoireWoodElfHelmText": "나무 엘프 투구",
- "headArmoireWoodElfHelmNotes": "나뭇잎들로 만든 이 투구는 여려 보이지만, 궂은 날씨와 위험한 적들로부터 당신을 보호해 줍니다. 생명력을 <%= con %> 높여줍니다. 마법의 옷장: 나무 엘프 세트(아이템 3 중 1)",
+ "headArmoireWoodElfHelmNotes": "나뭇잎들로 만든 이 투구는 여려 보이지만, 궂은 날씨와 위험한 적들로부터 당신을 보호해 줍니다. 생명력을 <%= con %> 높여줍니다. 마법의 장비상자: 나무 엘프 세트(아이템 3 중 1)",
"headArmoireRamHeaddressText": "Ram Headdress",
"headArmoireRamHeaddressNotes": "This elaborate helm is fashioned to look like a ram's head. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Ram Barbarian Set (Item 1 of 3).",
"headArmoireCrownOfHeartsText": "심장의 왕관",
- "headArmoireCrownOfHeartsNotes": "이 붉은 장미빛 왕관은 눈길만 사로잡는 것이 아닙니다! 당신의 힘든 과제로 부터 당신의 심장을 강하게 합니다. 근력을 <%= str %> 높여줍니다. 마법의 옷장: 심장의 여왕 세트 (아이템 3 중 1).",
+ "headArmoireCrownOfHeartsNotes": "이 붉은 장미빛 왕관은 눈길만 사로잡는 것이 아닙니다! 당신의 힘든 과제로 부터 당신의 심장을 강하게 합니다. 근력을 <%= str %> 높여줍니다. 마법의 장비상자: 심장의 여왕 세트 (아이템 3 중 1).",
"headArmoireMushroomDruidCapText": "Mushroom Druid Cap",
"headArmoireMushroomDruidCapNotes": "Harvested deep in a misty forest, this cap grants the wearer knowledge of medicinal plants. Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Mushroom Druid Set (Item 1 of 3).",
"headArmoireMerchantChaperonText": "Merchant Chaperon",
@@ -1453,7 +1453,7 @@
"shieldArmoireMysticLampText": "신비로운 등불",
"shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
"shieldArmoireFloralBouquetText": "부케 꽃다발",
- "shieldArmoireFloralBouquetNotes": "전투에 도움은 딱히 안되지만, 예쁘지 않나요? 생명력을 <%= con %> 증가시킵니다. 마법의 옷장: 독립 아이템",
+ "shieldArmoireFloralBouquetNotes": "전투에 도움은 딱히 안되지만, 예쁘지 않나요? 생명력을 <%= con %> 증가시킵니다. 마법의 장비상자: 독립 아이템",
"shieldArmoireSandyBucketText": "모래 양동이",
"shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
"shieldArmoirePerchingFalconText": "앉아 있는 매",
@@ -1747,5 +1747,8 @@
"backMystery202012Text": "서리화염 날개",
"headMystery202012Text": "서리화염 가면",
"weaponSpecialKS2019Notes": "그리폰의 부리와 발톱처럼 구부러진 이 화려한 폴암은 다가올 목표가 벅차게 느껴질 때 힘을 발휘하도록 상기시켜줍니다. 근력을 <%= str %> 만큼 올려줍니다.",
- "weaponSpecialKS2019Text": "신화적인 그리폰 글레이브"
+ "weaponSpecialKS2019Text": "신화적인 그리폰 글레이브",
+ "weaponSpecialSpring2019RogueNotes": "이 무기들은 하늘과 비의 힘을 가지고 있습니다. 이 무기를 사용할 땐 물 속에 있지 않도록 주의하세요! 힘이 <%= str %>만큼 증가합니다. 2019 Spring Gear 한정판.",
+ "weaponSpecialSpring2019WarriorText": "줄기 검",
+ "weaponSpecialSpring2019RogueText": "번개 화살"
}
diff --git a/website/common/locales/ko/generic.json b/website/common/locales/ko/generic.json
index 64388b9c27..bcbdd8d7cd 100755
--- a/website/common/locales/ko/generic.json
+++ b/website/common/locales/ko/generic.json
@@ -53,11 +53,11 @@
"veteranText": "Habit The Grey (Angular 업데이트 전의 사이트)를 견뎌내며 수많은 버그에 의한 상처를 남겼습니다.",
"originalUser": "오리지널 유저!",
"originalUserText": "완전 오리지널 얼리 어답터 중 하나입니다. 알파 테스터시군요!",
- "habitBirthday": "해비티카 생일 파티",
- "habitBirthdayText": "해비티카 생일 파티를 축하하였습니다!",
- "habitBirthdayPluralText": "해비티카 생일 파티를 <%= count %>번 축하했습니다!",
- "habiticaDay": "해비티카 명명일",
- "habiticaDaySingularText": "해비티카 명명일을 축하했습니다! 좋은 유저가 되어주셔서 감사합니다.",
+ "habitBirthday": "Habitica 생일 파티",
+ "habitBirthdayText": "Habitica 생일 파티를 축하하였습니다!",
+ "habitBirthdayPluralText": "Habitica 생일 파티를 <%= count %>번 축하했습니다!",
+ "habiticaDay": "Habitica 명명일",
+ "habiticaDaySingularText": "Habitica 명명일을 축하했습니다! 좋은 유저가 되어주셔서 감사합니다.",
"habiticaDayPluralText": "명명일을 <%= count %>번 축하했습니다! 좋은 유저가 되어주셔서 감사합니다.",
"achievementDilatory": "지연의 구세주",
"achievementDilatoryText": "2014 Summer Splash 이벤트 기간 중 Dread Drag'on of Dilatory를 물리치는 데 도움이 되었습니다!",
diff --git a/website/common/locales/ko/groups.json b/website/common/locales/ko/groups.json
index bb941330d8..f677068d38 100755
--- a/website/common/locales/ko/groups.json
+++ b/website/common/locales/ko/groups.json
@@ -44,7 +44,7 @@
"groupLeader": "그룹 리더",
"groupID": "그룹 ID",
"members": "멤버",
- "memberList": "Member List",
+ "memberList": "멤버 목록",
"invited": "초대됨",
"name": "이름",
"description": "묘사",
@@ -105,7 +105,7 @@
"optional": "Optional",
"needsTextPlaceholder": "메세지를 여기에 입력하세요.",
"copyMessageAsToDo": "메시지를 할 일로 복사하기",
- "copyAsTodo": "Copy as To-Do",
+ "copyAsTodo": "할 일로 복사하기",
"messageAddedAsToDo": "메시지가 할 일로 복사되었습니다.",
"leaderOnlyChallenges": "그룹 리더만이 도전과제를 시작할 수 있습니다",
"sendGift": "선물 보내기",
@@ -150,10 +150,10 @@
"cannotInviteSelfToGroup": "자기 자신을 그룹에 초대할 수 없습니다.",
"userAlreadyInvitedToGroup": "UserID: <%= userId %>, User \"<%= username %>\" already invited to that group.",
"userAlreadyPendingInvitation": "UserID: <%= userId %>, User \"<%= username %>\" already pending invitation.",
- "userAlreadyInAParty": "UserID: <%= userId %>, User \"<%= username %>\" already in a party.",
+ "userAlreadyInAParty": "아이디: <%= userId %>, \"<%= username %>\" 님은 이미 파티에 있습니다.",
"userWithIDNotFound": "\"<%= userId %>\" ID를 사용하는 사용자를 찾을 수 없습니다.",
"userWithUsernameNotFound": "User with username \"<%= username %>\" not found.",
- "userHasNoLocalRegistration": "User does not have a local registration (username, email, password).",
+ "userHasNoLocalRegistration": "사용자가 등록되어있지 않습니다. (아이디, 이메일, 비밀번호)",
"uuidsMustBeAnArray": "User ID invites must be an array.",
"emailsMustBeAnArray": "Email address invites must be an array.",
"usernamesMustBeAnArray": "Username invites must be an array.",
@@ -341,11 +341,22 @@
"allAssignedCompletion": "All - Completes when all assigned users finish",
"pmReported": "이 메시지를 신고해주셔서 감사합니다.",
"blockedToSendToThisUser": "당신은 이 유저을 차단했기에 이 유저에게 메시지를 보낼 수 없습니다.",
- "PMDisabled": "개인적인 메시지를 해제",
+ "PMDisabled": "쪽지 비활성화하기",
"features": "기능",
"joinParty": "파티 가입",
"joinGuild": "길드 가입",
"editGuild": "길드 수정",
"leaveGuild": "길드 탈퇴",
- "editParty": "파티 수정"
+ "editParty": "파티 수정",
+ "blockYourself": "본인을 차단할 수 없습니다",
+ "PMUnblockUserToSendMessages": "이 사용자를 차단 해제해야 메세지를 주고 받을 수 있습니다.",
+ "PMCanNotReply": "이 대화에 답장을 보낼 수 없습니다",
+ "sendGiftToWhom": "누구에게 선물을 보내시겠습니까?",
+ "PMUserDoesNotReceiveMessages": "개인 메세지를 받지 않는 유저입니다",
+ "cannotRemoveQuestOwner": "퀘스트 도중에 퀘스트의 주최자를 없앨 수 없습니다. 퀘스트를 먼저 중지하여 주세요.",
+ "userWithUsernameOrUserIdNotFound": "아이디 혹은 User ID를 찾을 수 없습니다.",
+ "selectSubscription": "구독 선택하기",
+ "usernameOrUserId": "@아이디 혹은 User ID를 입력하세요",
+ "selectGift": "선물 선택하기",
+ "giftMessageTooLong": "선물 메세지의 최대 길이는 <%= maxGiftMessageLength %>입니다."
}
diff --git a/website/common/locales/ko/messages.json b/website/common/locales/ko/messages.json
index 3657db1efe..e672acfc5f 100755
--- a/website/common/locales/ko/messages.json
+++ b/website/common/locales/ko/messages.json
@@ -27,9 +27,9 @@
"previousGearNotOwned": "이번 장비를 구입하기 전에 더 낮은 기어를 구매해야 합니다.",
"messageHealthAlreadyMax": "이미 체력이 가득 차 있습니다.",
"messageHealthAlreadyMin": "이런! 벌써 체력이 바닥나서 체력 포션을 사기에는 너무 늦어버렸습니다. 하지만 걱정하지 마세요.당신은 되살아 날 수 있습니다!",
- "armoireEquipment": "<%= image %> 옷장에서 희귀장비를 발견했습니다: <%= dropText %>! 오예!",
+ "armoireEquipment": "<%= image %> 장비상자에서 희귀장비를 발견했습니다: <%= dropText %>! 오예!",
"armoireFood": "<%= image %> Armoire를 뒤적거리다가 <%= dropText %>을(를) 발견합니다. 여기서 뭐 하는 거야?",
- "armoireExp": "옷장과 씨름을 하다가 경험치를 얻었습니다. 가져가세요!",
+ "armoireExp": "장비상자과 씨름을 하다가 경험치를 얻었습니다. 가져가세요!",
"messageInsufficientGems": "보석이 부족합니다!",
"messageGroupAlreadyInParty": "파티에 이미 가입되어 있습니다. 새로고침 해보세요.",
"messageGroupOnlyLeaderCanUpdate": "그룹 리더만이 그룹을 갱신할 수 있습니다!",
diff --git a/website/common/locales/ko/npc.json b/website/common/locales/ko/npc.json
index 3a24b93b62..d83706ba26 100755
--- a/website/common/locales/ko/npc.json
+++ b/website/common/locales/ko/npc.json
@@ -30,7 +30,7 @@
"worldBossDescription": "World Boss Description",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
"howManyToSell": "How many would you like to sell?",
- "yourBalance": "Your balance",
+ "yourBalance": "잔고:",
"sell": "Sell",
"buyNow": "Buy Now",
"sortByNumber": "Number",
@@ -118,5 +118,10 @@
"welcome3": "삶과 게임에서 진행하세요!",
"welcome3notes": "당신의 삶을 개선할수록, 당신의 아바타는 레벨업을 하고, 펫과 퀘스트, 장비, 그 이상을 잠금해제할 것입니다!",
"imReady": "Habitica 들어가기",
- "limitedOffer": "Available until <%= date %>"
+ "limitedOffer": "Available until <%= date %>",
+ "nGemsGift": "<%= nGems %> 젬 (선물)",
+ "amountExp": "<%= amount %> 경험치",
+ "nGems": "<%= nGems %> 젬",
+ "nMonthsSubscriptionGift": "<%= nMonths %>개월 구독권 (선물)",
+ "cannotUnpinItem": "이 아이템은 즐겨찾기 해제할 수 없습니다."
}
diff --git a/website/common/locales/ko/pets.json b/website/common/locales/ko/pets.json
index 29a49ab15a..7034440cf1 100644
--- a/website/common/locales/ko/pets.json
+++ b/website/common/locales/ko/pets.json
@@ -98,7 +98,7 @@
"standard": "일반",
"filterByWacky": "엉터리",
"filterByQuest": "퀘스트",
- "filterByMagicPotion": "마법 포션",
+ "filterByMagicPotion": "마법 물약",
"filterByStandard": "일반",
"petLikeToEatText": "펫은 당신이 어떤 먹이를 주든 성장하지만, 선호하는 먹이를 주면 더욱 빨리 성장합니다. 규칙을 찾기 위해 여러 시도를 해보거나, 이곳
을 확인해 정답을 알아낼 수 있습니다.",
"petLikeToEat": "내 펫이 어떤 먹이를 좋아할까?",
diff --git a/website/common/locales/ko/questscontent.json b/website/common/locales/ko/questscontent.json
index 8c66760adf..486cf09634 100755
--- a/website/common/locales/ko/questscontent.json
+++ b/website/common/locales/ko/questscontent.json
@@ -5,7 +5,7 @@
"questEvilSantaBoss": "사냥꾼 산타",
"questEvilSantaDropBearCubPolarMount": "북극곰 (탑승펫)",
"questEvilSanta2Text": "아기곰 찾기",
- "questEvilSanta2Notes": "사냥꾼 산타가 북극곰을 탈것으로 사로 잡았을 때 새끼곰은 얼음 평원으로 도망쳤습니다. 당신은 숲의 맑은 소리들 사이에 나뭇가지가 부러지는 소리를 들었고 눈을 밟는 소리를 듣습니다. 발자국 흔적이 있군요! 흔적을 따라 달리기 시작합니다. 모든 흔적과 부서진 나뭇가지를 찾으세요! 그리고 새끼곰을 찾아주세요!",
+ "questEvilSanta2Notes": "사냥꾼 산타가 북극곰을 탑승펫으로 사로 잡았을 때 새끼곰은 얼음 평원으로 도망쳤습니다. 당신은 숲의 맑은 소리들 사이에 나뭇가지가 부러지는 소리를 들었고 눈을 밟는 소리를 듣습니다. 발자국 흔적이 있군요! 흔적을 따라 달리기 시작합니다. 모든 흔적과 부서진 나뭇가지를 찾으세요! 그리고 새끼곰을 찾아주세요!",
"questEvilSanta2Completion": "네가 새끼를 찾았어! 그 애는 영원히 너의 곁을 지켜줄꺼야.",
"questEvilSanta2CollectTracks": "발자국",
"questEvilSanta2CollectBranches": "부러진 나뭇가지",
@@ -59,12 +59,12 @@
"questSpiderDropSpiderEgg": "거미 (알)",
"questSpiderUnlockText": "시장에서 거미의 알을 구매할 수 있습니다.",
"questGroupVice": "Vice the Shadow Wyrm",
- "questVice1Text": "범죄, 파트 1 : 드래곤의 영향으로부터의 자유",
+ "questVice1Text": "범죄, 파트 1 : 용의 영향으로부터 자유로워지세요",
"questVice1Notes": "They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.
Vice Part 1:
How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel his hold on you!
",
"questVice1Boss": "범죄의 그림자",
"questVice1Completion": "With Vice's influence over you dispelled, you feel a surge of strength you didn't know you had return to you. Congratulations! But a more frightening foe awaits...",
"questVice1DropVice2Quest": "범죄 파트 2(스크롤)",
- "questVice2Text": "범죄, 파트2 : 드래곤의 레어를 찾아라",
+ "questVice2Text": "범죄, 파트2 : 용의 둥지를 찾아라",
"questVice2Notes": "Confident in yourselves and your ability to withstand the influence of Vice the Shadow Wyrm, your Party makes its way to Mt. Habitica. You approach the entrance to the mountain's caverns and pause. Swells of shadows, almost like fog, wisp out from the opening. It is near impossible to see anything in front of you. The light from your lanterns seem to end abruptly where the shadows begin. It is said that only magical light can pierce the dragon's infernal haze. If you can find enough light crystals, you could make your way to the dragon.",
"questVice2CollectLightCrystal": "빛나는 수정",
"questVice2Completion": "As you lift the final crystal aloft, the shadows are dispelled, and your path forward is clear. With a quickening heart, you step forward into the cavern.",
@@ -72,8 +72,8 @@
"questVice3Text": "Vice, Part 3: Vice Awakens",
"questVice3Notes": "After much effort, your party has discovered Vice's lair. The hulking monster eyes your party with distaste. As shadows swirl around you, a voice whispers through your head, \"More foolish citizens of Habitica come to stop me? Cute. You'd have been wise not to come.\" The scaly titan rears back its head and prepares to attack. This is your chance! Give it everything you've got and defeat Vice once and for all!",
"questVice3Completion": "The shadows dissipate from the cavern and a steely silence falls. My word, you've done it! You have defeated Vice! You and your party may finally breathe a sigh of relief. Enjoy your victory, brave Habiteers, but take the lessons you've learned from battling Vice and move forward. There are still Habits to be done and potentially worse evils to conquer!",
- "questVice3Boss": "그림자 드래곤의 폭정",
- "questVice3DropWeaponSpecial2": "스테픈 웨버의 드래곤 화살",
+ "questVice3Boss": "그림자 용의 폭정",
+ "questVice3DropWeaponSpecial2": "스티븐 웨버의 용 지팡이",
"questVice3DropDragonEgg": "용 (알)",
"questVice3DropShadeHatchingPotion": "쉐이드 부화의 묘약",
"questGroupMoonstone": "Recidivate Rising",
@@ -172,7 +172,7 @@
"questStressbeastBossRageTitle": "Stress Strike",
"questStressbeastBossRageDescription": "When this gauge fills, the Abominable Stressbeast will unleash its Stress Strike on Habitica!",
"questStressbeastDropMammothPet": "맘모스 (펫)",
- "questStressbeastDropMammothMount": "맘모스 (탈것)",
+ "questStressbeastDropMammothMount": "맘모스 (탑승펫)",
"questStressbeastBossRageStables": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and their dark-red color has infuriated the Abominable Stressbeast and caused it to regain some of its health! The horrible creature lunges for the Stables, but Matt the Beast Master heroically leaps into the fray to protect the pets and mounts. The Stressbeast has seized Matt in its vicious grip, but at least it's distracted for the moment. Hurry! Let's keep our Dailies in check and defeat this monster before it attacks again!",
"questStressbeastBossRageBailey": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nAhh!!! Our incomplete Dailies caused the Abominable Stressbeast to become madder than ever and regain some of its health! Bailey the Town Crier was shouting for citizens to get to safety, and now it has seized her in its other hand! Look at her, valiantly reporting on the news as the Stressbeast swings her around viciously... Let's be worthy of her bravery by being as productive as we can to save our NPCs!",
"questStressbeastBossRageGuide": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nLook out! Justin the Guide is trying to distract the Stressbeast by running around its ankles, yelling productivity tips! The Abominable Stressbeast is stomping madly, but it seems like we're really wearing this beast down. I doubt it has enough energy for another strike. Don't give up... we're so close to finishing it off!",
@@ -272,7 +272,7 @@
"questBurnoutBossRageTitle": "Exhaust Strike",
"questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!",
"questBurnoutDropPhoenixPet": "불사조 (펫)",
- "questBurnoutDropPhoenixMount": "불사조 (탈것)",
+ "questBurnoutDropPhoenixMount": "불사조 (탑승펫)",
"questBurnoutBossRageQuests": "`Burnout uses EXHAUST STRIKE!`\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and now Burnout is inflamed with energy! With a crackling snarl, it engulfs Ian the Quest Master in a surge of spectral fire. As fallen quest scrolls smolder, the smoke clears, and you see that Ian has been drained of energy and turned into a drifting Exhaust Spirit!\n\nOnly defeating Burnout can break the spell and restore our beloved Quest Master. Let's keep our Dailies in check and defeat this monster before it attacks again!",
"questBurnoutBossRageSeasonalShop": "`Burnout uses EXHAUST STRIKE!`\n\nAhh!!! Our incomplete Dailies have fed the flames of Burnout, and now it has enough energy to strike again! It lets loose a gout of spectral flame that sears the Seasonal Shop. You're horrified to see that the cheery Seasonal Sorceress has been transformed into a drooping Exhaust Spirit.\n\nWe have to rescue our NPCs! Hurry, Habiticans, complete your tasks and defeat Burnout before it strikes for a third time!",
"questBurnoutBossRageTavern": "`Burnout uses EXHAUST STRIKE!`\n\nMany Habiticans have been hiding from Burnout in the Tavern, but no longer! With a screeching howl, Burnout rakes the Tavern with its white-hot hands. As the Tavern patrons flee, Daniel is caught in Burnout's grip, and transforms into an Exhaust Spirit right in front of you!\n\nThis hot-headed horror has gone on for too long. Don't give up... we're so close to vanquishing Burnout for once and for all!",
@@ -319,7 +319,7 @@
"questBewilderBossRageTitle": "Beguilement Strike",
"questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!",
"questBewilderDropBumblebeePet": "마법의 벌 (펫)",
- "questBewilderDropBumblebeeMount": "마법의 벌 (탈것)",
+ "questBewilderDropBumblebeeMount": "마법의 벌 (탑승펫)",
"questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.",
"questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!",
"questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!",
@@ -634,5 +634,7 @@
"questVelociraptorCompletion": "You burst through the grass, confronting the Veloci-Rapper.
See here, rapper, you’re no quitter,
You’re Bad Habits' hardest hitter!
Check off your To-Dos like a boss,
Don’t mourn over one day’s loss!
Filled with renewed confidence, it bounds off to freestyle another day, leaving behind three eggs where it sat.",
"questVelociraptorBoss": "Veloci-Rapper",
"questVelociraptorDropVelociraptorEgg": "Velociraptor (Egg)",
- "questVelociraptorUnlockText": "Unlocks purchasable Velociraptor eggs in the Market"
+ "questVelociraptorUnlockText": "Unlocks purchasable Velociraptor eggs in the Market",
+ "evilSantaAddlNotes": "주의: '사냥꾼 산타'와 '아기곰 찾기' 퀘스트는 누적 가능한 퀘스트 업적이지만, 해당 펫과 탑승펫은 마구간에 하나만 추가됩니다.",
+ "questVirtualPetDropVirtualPetPotion": "다마고치 펫 부화 물약"
}
diff --git a/website/common/locales/ko/rebirth.json b/website/common/locales/ko/rebirth.json
index 1577508328..094bce0f96 100755
--- a/website/common/locales/ko/rebirth.json
+++ b/website/common/locales/ko/rebirth.json
@@ -8,7 +8,8 @@
"rebirthOrb": "레벨 <%= level %>을 달성하고 환생의 구슬을 사용하여 다시 시작했습니다.",
"rebirthOrb100": "100레벨이나 그 이상을 달성하고 환생의 구슬을 사용하여 다시 시작했습니다.",
"rebirthOrbNoLevel": "다시 시작하기 위해 환생의 구슬을 사용했습니다.",
- "rebirthPop": "Instantly restart your character as a Level 1 Warrior while retaining achievements, collectibles, and equipment. Your tasks and their history will remain but they will be reset to yellow. Your streaks will be removed except from challenge tasks. Your Gold, Experience, Mana, and the effects of all Skills will be removed. All of this will take effect immediately. For more information, see the wiki's Orb of Rebirth page.",
+ "rebirthPop": "캐릭터를 레벨1 전사로 즉시 다시 시작합니다. 업적달성, 수집품 및 장비는 사라지지 않습니다. 할 일 목록과 그 기록은 유지되지만, 노란색으로 재설정됩니다. 진행 중인 챌린지와 그룹 플랜에 속한 할 일 목록을 제외하고, 연속 기록은 0일로 지워집니다. 골드, 경험치, 마나 및 모든 스킬 효과도 제거됩니다. 이 모든 것들은 환생과 동시에 즉시 적용됩니다. 자세한 내용은 위키의 Orb of Rebirth 페이지를 참조하세요.",
"rebirthName": "환생의 구슬",
- "rebirthComplete": "다시 태어났습니다!"
+ "rebirthComplete": "다시 태어났습니다!",
+ "nextFreeRebirth": "무료로 환생의 구슬을 사용할 수 있을 때까지 <%= days %> 일이 남았습니다."
}
diff --git a/website/common/locales/ko/subscriber.json b/website/common/locales/ko/subscriber.json
index c320a741b5..516996ab29 100755
--- a/website/common/locales/ko/subscriber.json
+++ b/website/common/locales/ko/subscriber.json
@@ -5,27 +5,27 @@
"buyGemsGold": "골드로 보석을 구입하세요",
"mustSubscribeToPurchaseGems": "보석으로 GP를 구매하기 위해서는 정기 후원하세요",
"reachedGoldToGemCap": "이달의 골드=>보석 전환 제한치 <%= convCap %> 에 도달했습니다. 남용/파밍을 막기 위해 제한치를 둡니다. 제한치는 매월 3일 안에 초기화됩니다.",
- "reachedGoldToGemCapQuantity": "Your requested amount <%= quantity %> exceeds the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.",
+ "reachedGoldToGemCapQuantity": "요청해주신 양은 <%= quantity %> 이번 달에 구매할 수 있는 양을 초과했습니다<%= convCap %>. 이 양은 매달 초 3일 안에 복구됩니다. 구독해 주셔서 감사합니다!",
"mysteryItem": "매월마다 새로운 특권층인 아이템들",
"mysteryItemText": "매달 당신의 아바타를 위한 독특한 꾸미기 아이템을 받으실 겁니다! 그리고 3달마다 연속 후원해 주시는 분들께, 신비한 시간 여행자가 전통적인 (혹인 미래지향적인) 꾸미기 아이템을 얻을 수 있게 해드립니다.",
"exclusiveJackalopePet": "Exclusive pet",
- "giftSubscription": "정기 후원을 다른 분에게 선물하고 싶으세요?",
+ "giftSubscription": "정기 후원의 혜택을 다른 분에게 선물하고 싶으세요?",
"giftSubscriptionText4": "Habitica를 지원해 주셔서 고맙습니다!",
- "groupPlans": "Group Plans",
+ "groupPlans": "그룹플랜(Group Plans)",
"subscribe": "정기 후원하기",
- "nowSubscribed": "You are now subscribed to Habitica!",
- "cancelSub": "정기 후원을 취소합니다",
- "cancelSubInfoGroupPlan": "Because you have a free subscription from a Group Plan, you cannot cancel it. It will end when you are no longer in the Group. If you are the Group leader and want to cancel the entire Group Plan, you can do that from the group's \"Payment Details\" tab.",
+ "nowSubscribed": "당신은 이제 해비티카의 구독자가 되셨습니다!",
+ "cancelSub": "정기 후원을 취소합니다",
+ "cancelSubInfoGroupPlan": "그룹 플랜(Group Plans)에 소속되어 있으므로 취소할 수 없습니다. 그룹 플랜(Group Plans)에서 탈퇴 시 구독이 종료됩니다. 그룹장이고 그룹 플랜(Group Plans)을 취소하고 싶다면, 그룹 플랜(Group Plans)의 \"그룹결제\"(Group Billing) 탭에서 취소할 수 있습니다.",
"cancelingSubscription": "정기 후원을 취소중입니다",
"contactUs": "저희에게 연락하세요",
"checkout": "결제",
"sureCancelSub": "정기 후원을 정말 취소하시겠습니까?",
- "subGemPop": "Because you subscribe to Habitica, you can purchase a number of Gems each month using Gold.",
+ "subGemPop": "해비티카에 구독하셨으므로, 골드로 상당량의 젬을 매월 구입할 수 있습니다.",
"subGemName": "정기 후원자의 보석",
"maxBuyGems": "이번 달에 가능한 모든 젬을 구입하였습니다. 매월 첫 3일동안 더 구입 가능합니다. 후원 감사해요!",
"timeTravelers": "시간여행자",
- "timeTravelersPopoverNoSubMobile": "Looks like you’ll need a Mystic Hourglass to open the time portal and summon the Mysterious Time Travelers.",
- "timeTravelersPopover": "Your Mystic Hourglass has opened our time portal! Choose what you’d like us to fetch from the past or future.",
+ "timeTravelersPopoverNoSubMobile": "시간 차원문을 열고 미스터리 시간 여행자를 소환하기 위해, 신비한 모래시계가 필요해 보이는군요.",
+ "timeTravelersPopover": "당신의 신비한 모래시계가 시간 차원문을 개방했습니다! 과거나 미래에서 가져오고 싶은 물건을 선택하세요.",
"mysterySetNotFound": "미스터리 세트를 찾을 수 없거나, 이미 보유하고 있습니다.",
"mysteryItemIsEmpty": "미스터리 아이템이 없습니다",
"mysteryItemOpened": "미스터리 아이템이 열렸습니다.",
@@ -98,7 +98,7 @@
"subUpdateDescription": "지불할 카드를 갱신하세요.",
"notEnoughHourglasses": "신비로운 모래시계가 부족합니다.",
"petsAlreadyOwned": "이미 보유하고 있는 펫입니다.",
- "mountsAlreadyOwned": "이미 보유하고 있는 탈것입니다.",
+ "mountsAlreadyOwned": "이미 보유하고 있는 탑승펫입니다.",
"typeNotAllowedHourglass": "신비로운 모래시계로 구입할 수 없는 아이템입니다. 구입 가능한 아이템: <%= allowedTypes %>",
"hourglassPurchase": "신비로운 모래시계로 아이템을 구매했습니다!",
"hourglassPurchaseSet": "신비로운 모래시계로 아이템 세트를 구매했습니다!",
@@ -134,5 +134,16 @@
"gemsRemaining": "gems remaining",
"notEnoughGemsToBuy": "You are unable to buy that amount of gems",
"mysterySet202011": "잎 장식 마법사 세트",
- "viewSubscriptions": "구독 관리"
+ "viewSubscriptions": "구독 관리",
+ "howManyGemsSend": "얼마나 많은 보석을 보내고 싶으신가요?",
+ "needToPurchaseGems": "선물을 위한 보석을 구매하시고 싶으신가요?",
+ "wantToSendOwnGems": "현재 가진 보석을 보내고 싶으신가요?",
+ "howManyGemsPurchase": "얼마나 많은 보석을 구매하시겠습니까?",
+ "giftASubscription": "구독 선물하기",
+ "organization": "단체",
+ "cancelSubInfoApple": "구독을 취소하시려면 애플 공식 지침을 따라 구독을 취소하거나 이미 취소하셨다면 이곳에서 구독 만료 일자를 확인해 주세요. 이 화면은 구독이 완전히 취소되었다면 확인하실 수 없습니다.",
+ "cancelSubInfoGoogle": "구글 플레이 스토어에서 계정 > 구독 란에서 구독을 취소하실 수 있습니다. 이미 구독을 취소하셨다면 구독이 만료되는 날짜를 확인하실 수 있습니다. 이 화면은 구독이 완전히 취소되었다면 확인하실 수 없습니다.",
+ "confirmCancelSub": "정말 구독을 취소하고 싶으세요? 지금까지 누리셨던 모든 구독자 혜택을 잃게 됩니다.",
+ "mysticHourglassNeededNoSub": "이 아이템을 구입하려면 신비한 모래시계가 필요합니다. 신비한 모래시계는 해비티카 구독자가 되시면 얻을 수 있습니다.",
+ "subWillBecomeInactive": "구독 취소하기"
}
diff --git a/website/common/locales/ko/tasks.json b/website/common/locales/ko/tasks.json
index 5cd4e40615..49d85d5d67 100755
--- a/website/common/locales/ko/tasks.json
+++ b/website/common/locales/ko/tasks.json
@@ -18,7 +18,7 @@
"greenblue": "강함",
"edit": "수정",
"save": "저장",
- "addChecklist": "체크리스트 사용",
+ "addChecklist": "체크리스트 추가",
"checklist": "체크리스트",
"newChecklistItem": "새로운 체크리스트 항목",
"expandChecklist": "체크리스트 확장",
@@ -32,7 +32,7 @@
"easy": "쉬움",
"medium": "보통",
"hard": "어려움",
- "attributes": "Stats",
+ "attributes": "능력치",
"progress": "진행상황",
"daily": "일일 과제",
"dailies": "일일 과제 목록",
@@ -95,7 +95,7 @@
"invalidTasksType": "Task type must be one of \"habits\", \"dailys\", \"todos\", \"rewards\".",
"invalidTasksTypeExtra": "Task type must be one of \"habits\", \"dailys\", \"todos\", \"rewards\", \"completedTodos\".",
"cantDeleteChallengeTasks": "변경 중인 과제는 삭제할 수 없습니다.",
- "checklistOnlyDailyTodo": "Checklists are supported only on Dailies and To-Dos",
+ "checklistOnlyDailyTodo": "체크리스트는 일일과제와 할 일에서만 지원됩니다.",
"checklistItemNotFound": "주어진 ID에 체크리스트 아이템이 발견되지 않았습니다.",
"itemIdRequired": "\"아이템ID\"는 유효한 UUID 여야 합니다.",
"tagNotFound": "주어진 ID에 맞는 태그 아이템이 발견되지 않았습니다.",
@@ -131,5 +131,11 @@
"addATitle": "제목 추가",
"enterTag": "태그를 입력하세요",
"addTags": "태그 추가하기...",
- "addNotes": "노트 추가"
+ "addNotes": "노트 추가",
+ "adjustCounter": "횟수 조정",
+ "counter": "횟수",
+ "resetCounter": "횟수 초기화",
+ "sureDeleteType": "<%= type %>을(를) 정말로 삭제할까요?",
+ "tomorrow": "내일",
+ "deleteTaskType": "<%= type %> 삭제"
}
diff --git a/website/common/locales/lv/front.json b/website/common/locales/lv/front.json
index 0967ef424b..659a490f75 100644
--- a/website/common/locales/lv/front.json
+++ b/website/common/locales/lv/front.json
@@ -1 +1,62 @@
-{}
+{
+ "footerSocial": "Sociālā vietne",
+ "free": "Pievienojieties bez maksas",
+ "history": "Vēsture",
+ "companyDonate": "Donārs",
+ "companyBlog": "Emuārs",
+ "marketing3Lead1": "Ar **iPhone un Android** lietotnēm varat veikt darījumus, atrodoties ceļā. Mēs apzināmies, ka pieslēgšanās vietnei, lai noklikšķinātu uz pogām, var būt apgrūtinoša.",
+ "presskit": "Preses komplekts",
+ "FAQ": "Biežāk uzdotie jautājumi",
+ "emailNewPass": "Nosūtīt saiti, lai atiestatītu paroli",
+ "marketing1Lead2Title": "Iegūt saldo aprīkojumu",
+ "guidanceForBlacksmiths": "Rokasgrāmata kalējiem",
+ "marketing2Lead1Title": "Sociālā produktivitāte",
+ "companyContribute": "Veicināt",
+ "marketing4Lead2": "Veselības aprūpes izmaksas pieaug, un kaut kas ir jādara. Ir izveidoti simtiem programmu, lai samazinātu izmaksas un uzlabotu labsajūtu. Mēs uzskatām, ka Habitica var pavērt būtisku ceļu uz veselīgu dzīvesveidu.",
+ "newsArchive": "Ziņu arhīvs vietnē Wikia (daudzvalodu)",
+ "marketing4Header": "Izmantošana organizācijā",
+ "marketing4Lead2Title": "Ģamifikācija veselības un labsajūtas jomā",
+ "marketing4Lead3-1": "Vēlaties uzlabot savu dzīvi?",
+ "marketing4Lead3Title": "Spēlējiet ar visu",
+ "marketing2Lead3Title": "Izaiciniet cits citu",
+ "marketing1Header": "Uzlabojiet savus ieradumus, spēlējot spēli",
+ "footerCompany": "Uzņēmums",
+ "footerCommunity": "Kopiena",
+ "companyAbout": "Kā tas darbojas",
+ "setNewPass": "Jaunas paroles iestatīšana",
+ "sendLink": "Sūtīt saiti",
+ "forgotPassword": "Aizmirsāt paroli?",
+ "mobileAndroid": "Android",
+ "marketing2Lead3": "Izaicinājumi ļauj sacensties ar draugiem un svešiniekiem. Tas, kurš uzdevuma beigās paveiks vislabāk, iegūs īpašas balvas.",
+ "marketing2Header": "Sacentieties ar draugiem, pievienojieties interešu grupām",
+ "marketing2Lead2Title": "Cīņa ar monstriem",
+ "chores": "Mājasdarbi",
+ "pkQuestion1": "Kas iedvesmoja Habitica? Kā tas sākās?",
+ "mobileIOS": "iOS",
+ "learnMore": "Uzzināt",
+ "marketing1Lead1Title": "Tava dzīve, lomu spēle",
+ "logout": "Iziet no sistēmas",
+ "login": "Pieteikšanās",
+ "forgotPasswordSteps": "Ievadiet savu lietotājvārdu vai e-pasta adresi, kuru izmantojāt, lai reģistrētos vietnē Habitica.",
+ "marketing3Header": "Lietotnes un paplašinājumi",
+ "invalidEmail": "Lai veiktu paroles atiestatīšanu, ir nepieciešama derīga e-pasta adrese.",
+ "marketing1Lead3Title": "Atrast nejaušas balvas",
+ "footerMobile": "Mobilais",
+ "oldNews": "Ziņas",
+ "password": "Parole",
+ "playButton": "Spēlēt",
+ "footerDevs": "Izstrādātāji",
+ "enterHabitica": "Ievadiet habitica",
+ "clearBrowserData": "Izdzēst pārlūkošanas datus",
+ "marketing1Lead1": "Habitica ir videospēle, kas palīdz uzlabot reālās dzīves paradumus. Tā \"spēlē\" jūsu dzīvi, pārvēršot visus jūsu uzdevumus (ieradumus, ikdienas darbus un darāmos darbus) par maziem monstriem, kas jums ir jāuzvar. Jo labāk jums tas izdodas, jo vairāk progresējat spēlē. Ja dzīvē kļūdīsieties, jūsu varonis sāks atkāpties no spēles.",
+ "marketing1Lead2": "Uzlabojiet savus ieradumus, lai izveidotu savu avatāru. Parādiet saldo ekipējumu, ko esat nopelnījis!",
+ "marketing3Lead2Title": "Integrācija",
+ "communityFacebook": "Facebook",
+ "marketing1Lead3": "Dažus motivē azartspēles - sistēma, ko dēvē par \"stohastisko atlīdzību\". Habitica ir piemērota visiem pastiprināšanas un sodīšanas stiliem: pozitīvam, negatīvam, paredzamam un nejaušam.",
+ "marketing4Lead1": "Izglītība ir viena no labākajām nozarēm, kurā vislabāk var izmantot spēlēšanu. Mēs visi zinām, cik ļoti skolēni mūsdienās ir pieķērušies telefoniem un spēlēm; izmantojiet šo spēku! Sastādiet savus skolēnus draudzīgā sacensībā cits pret citu. Atalgojiet par labu uzvedību ar retām balvām. Vērojiet, kā uzlabojas skolēnu sekmes un uzvedība.",
+ "communityInstagram": "Instagram",
+ "marketing2Lead1": "Lai gan jūs varat spēlēt Habitica patstāvīgi, gaisma patiešām iedegas, kad sākat sadarboties, sacensties un prasīt viens no otra atbildību. Jebkuras pašpilnveides programmas visefektīvākā daļa ir sociālā atbildība, un kas var būt labāka vide atbildībai un sacensībai par videospēli?",
+ "marketing4Lead1Title": "Ģamifikācija izglītībā",
+ "marketing2Lead2": "Kas ir lomu spēle bez kaujām? Cīnieties ar monstriem kopā ar savu komandu. Monstri ir \"superatbildības režīmā\" - diena, kad izlaižat sporta zāli, ir diena, kad monstrs sāpina *visus!*.",
+ "marketing4Lead3-2": "Vai vēlaties vadīt izglītības, labsajūtas un citu jomu grupu?"
+}
diff --git a/website/common/locales/lv/pets.json b/website/common/locales/lv/pets.json
index 0967ef424b..937fa1451d 100644
--- a/website/common/locales/lv/pets.json
+++ b/website/common/locales/lv/pets.json
@@ -1 +1,51 @@
-{}
+{
+ "magicPets": "Burvju eliksīri mājdzīvnieki",
+ "noActivePet": "Nav aktīva mājdzīvnieka",
+ "activeMount": "Aktīvs stiprinājums",
+ "questPets": "Quest mājdzīvnieki",
+ "mounts": "Stiprinājumi",
+ "wackyPets": "Trakie mājdzīvnieki",
+ "petsFound": "Atrasti mājdzīvnieki",
+ "mountsTamed": "Pieradināti stiprinājumi",
+ "activePet": "Aktīvs mājdzīvnieks",
+ "noActiveMount": "Nav aktīva stiprinājuma",
+ "pets": "Mājdzīvnieki",
+ "stable": "Stabils",
+ "questMounts": "Kvesta stiprinājumi",
+ "veteranFox": "Veterāns lapsa",
+ "magicHatchingPotions": "Burvju izšķirošie eliksīri",
+ "invisibleAether": "Neredzamais ēters",
+ "veteranWolf": "Veterāns vilks",
+ "quickInventory": "Ātra inventarizācija",
+ "hatchingPotion": "inkubējamais eliksīrs",
+ "orca": "Orka",
+ "cerberusPup": "Cerberus kucēns",
+ "mammoth": "Vilnainais mamuts",
+ "hopefulHippogriffPet": "Cerību pilns hipogrifs",
+ "hopefulHippogriffMount": "Cerību pilns hipogrifs",
+ "phoenix": "Fēnikss",
+ "veteranLion": "Veterāns Lauva",
+ "potion": "<%=EliksīrsType%>Eliksīrs",
+ "noSaddlesAvailable": "Jums nav nekādu seglu.",
+ "magicalBee": "Burvju bite",
+ "eggs": "Olas",
+ "royalPurpleJackalope": "Karaliski violeta šakalope",
+ "hydra": "Hydra",
+ "veteranTiger": "Tīģeris veterāns",
+ "beastMasterName": "Zvēru meistars",
+ "mountMasterName": "Stiprinājumu meistars",
+ "etherealLion": "Ēteriskais lauva",
+ "food": "Mājdzīvnieku barība un segli",
+ "veteranBear": "Lācis veterāns",
+ "gryphatrice": "Grifatrice",
+ "beastMasterProgress": "Zvēru meistara progress",
+ "royalPurpleGryphon": "Karaliskais purpursarkanais grifons",
+ "eggSingular": "Ola",
+ "noFoodAvailable": "Jums nav lolojumdzīvnieku barības.",
+ "mountMasterText": "Ir pieradinājis visus 90 stiprinājumus (vēl grūtāk, apsveicam šo lietotāju!)",
+ "magicMounts": "Burvju eliksīru stiprinājumi",
+ "beastAchievement": "Jūs esat nopelnījis \"Zvēru meistara\" sasniegumu par visu mājdzīvnieku savākšanu!",
+ "beastMasterText": "Ir atradis visus 90 mājdzīvniekus (neticami grūti, apsveicam šo lietotāju!)",
+ "hatchingPotions": "Inkubācijas eliksīri",
+ "premiumPotionNoDropExplanation": "Maģiskos inkubatoru eliksīrus nevar izmantot olu olu inkubēšanai, kas saņemtas no uzdevumiem. Vienīgais veids, kā iegūt burvju perēšanas eliksīrus, ir tos iegādāties, nevis iegūt no nejauši izkritušām olām."
+}
diff --git a/website/common/locales/lv/subscriber.json b/website/common/locales/lv/subscriber.json
index f6f35a01bc..23e3ab3c51 100755
--- a/website/common/locales/lv/subscriber.json
+++ b/website/common/locales/lv/subscriber.json
@@ -120,7 +120,7 @@
"choosePaymentMethod": "Choose your payment method",
"buyGemsSupportsDevs": "Purchasing Gems supports the developers and helps keep Habitica running",
"support": "SUPPORT",
- "gemBenefitLeadin": "Gems allow you to buy fun extras for your account, including:",
+ "gemBenefitLeadin": "Ko var iegādāties par dārgakmeņiem?",
"gemBenefit1": "Unique and fashionable costumes for your avatar.",
"gemBenefit2": "Backgrounds to immerse your avatar in the world of Habitica!",
"gemBenefit3": "Exciting Quest chains that drop pet eggs.",
diff --git a/website/common/locales/nl/gear.json b/website/common/locales/nl/gear.json
index 98225ef083..0e7d740096 100644
--- a/website/common/locales/nl/gear.json
+++ b/website/common/locales/nl/gear.json
@@ -292,8 +292,8 @@
"weaponMystery201611Notes": "Allerlei heerlijke en gezonde soorten voedsel sijpelen uit deze hoorn. Geniet van het feest! Verleent geen voordelen. Abonnee-uitrusting november 2016.",
"weaponMystery201708Text": "Lava Zwaard",
"weaponMystery201708Notes": "De vurige gloed van dit zwaard maakt snel werk van zelfs donkerrode taken! Geen voordeel uitbetaald. Augustus 2017 abonnee-item.",
- "weaponMystery201811Text": "Splendid Sorcerer's Staff",
- "weaponMystery201811Notes": "This magical stave is as powerful as it is elegant. Confers no benefit. November 2018 Subscriber Item.",
+ "weaponMystery201811Text": "Schitterende Magiërsstaf",
+ "weaponMystery201811Notes": "Deze magische staf is net zo krachtig als dat hij elegant is. Verleent geen voordelen. Abonnee-uitrusting november 2018.",
"weaponMystery301404Text": "Steampunk Staf",
"weaponMystery301404Notes": "Perfect om door de stad te flaneren. Abonnee-uitrusting maart 3015. Verleent geen voordelen.",
"weaponArmoireBasicCrossbowText": "Standaard Kruisboog",
@@ -350,19 +350,19 @@
"weaponArmoireBattleAxeNotes": "Deze schitterende ijzeren bijl is zeer geschikt om je meest woeste of moeilijkste taken mee te bestrijden. Verhoogt Intelligentie met <%= int %> en Weerbaarheid met <%= con %>. Betoverd kabinet: onafhankelijk voorwerp.",
"weaponArmoireHoofClippersText": "Hoefschaar",
"weaponArmoireHoofClippersNotes": "Trim de hoeven van je hardwerkende rijdieren om hen gezond te houden terwijl zij je dragen door je avonturen! Verhoogt Kracht, Intelligentie, en Weerbaarheid met <%= attrs %> ieder. Betoverd Kabinet: Hoefsmid Set (Item 1 uit 3).",
- "weaponArmoireWeaversCombText": "Weaver's Comb",
- "weaponArmoireWeaversCombNotes": "Use this comb to pack your weft threads together to make a tightly woven fabric. Increases Perception by <%= per %> and Strength by <%= str %>. Enchanted Armoire: Weaver Set (Item 2 of 3).",
- "weaponArmoireLamplighterText": "Lamp aansteker",
- "weaponArmoireLamplighterNotes": "This long pole has a wick on one end for lighting lamps, and a hook on the other end for putting them out. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Lamplighter's Set (Item 1 of 4).",
+ "weaponArmoireWeaversCombText": "Weverskam",
+ "weaponArmoireWeaversCombNotes": "Gebruik deze kam om je gewoven draden te bundelen om zo een strakgespannen weefsel te creëren. Verhoogt Perceptie met <%= per %> en Kracht met <%= str %>. Betoverde Kast: Weversverzameling (Voorwerp 2 van 3).",
+ "weaponArmoireLamplighterText": "Lantaarnopsteker",
+ "weaponArmoireLamplighterNotes": "Deze lange stok heeft een lont aan het uiteinde voor het aansteken van lantaarns, en een haak aan het andere eind om ze uit te doven. Verhoogt Weerbaarheid met <%= con %> en Perceptie met <%= per %>. Betoverde Kast: Lantaarnopstekersverzameling (Voorwerp 1 van 4).",
"weaponArmoireCoachDriversWhipText": "Wagenrijders zweep",
- "weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 3 of 3).",
+ "weaponArmoireCoachDriversWhipNotes": "Je rijdieren weten waar ze mee bezig zijn, dus deze zweep is slechts voor de show (en het prettige zweepgeluid!). Verhoogt Intelligentie met <%= int %> en Kracht met <%= str %>. Betoverde Kast: Wagenrijdersverzameling (Voorwerp 3 van 3).",
"weaponArmoireScepterOfDiamondsText": "Scepter van Diamanten",
"weaponArmoireScepterOfDiamondsNotes": "Deze scepter schittert met een warme rode gloed wanneer het je verhoogde wilskracht verleent. Verhoogt kracht met <%= str %>. Betoverd kabinet: Koning van de Diamanten Set (voorwerp 3 uit 4).",
- "weaponArmoireFlutteryArmyText": "Fluttery Army",
- "weaponArmoireFlutteryArmyNotes": "This group of scrappy lepidopterans is ready to flap fiercely and cool down your reddest tasks! Increases Constitution, Intelligence, and Strength by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 3 of 4).",
- "weaponArmoireCobblersHammerText": "Cobbler's Hammer",
- "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).",
- "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe",
+ "weaponArmoireFlutteryArmyText": "Fladderend Leger",
+ "weaponArmoireFlutteryArmyNotes": "Deze groep vechtlustige geschubvleugelden staat klaar om flink te fladderen, om zo jouw roodste taken te verkoelen! Verhoogt Weerbaarheid, Intelligentie en Kracht met <%= attrs %> elk. Betoverde Kast: Fladderende Jurk Verzameling (Voorwerp 3 van 4).",
+ "weaponArmoireCobblersHammerText": "Schoenmakershamer",
+ "weaponArmoireCobblersHammerNotes": "Deze hamer is speciaal gemaakt voor het bewerken van leer. Het kan echter ook flink wat schade veroorzaken aan een rode Dagtaak. Verhoogt Weerbaarheid en Kracht met <%= attrs %> elk. Betoverde Kast: Schoenmakersverzameling (Voorwerp 2 van 3).",
+ "weaponArmoireGlassblowersBlowpipeText": "Glazblazerspijp",
"weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).",
"weaponArmoirePoisonedGobletText": "Poisoned Goblet",
"weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).",
@@ -2372,7 +2372,7 @@
"weaponSpecialSummer2021HealerText": "Staf van Mais",
"weaponSpecialSummer2021RogueNotes": "Elk roofzuchtig monster dat durft te naderen zal de steek van je beschetmende vrienden voelen! Verhoogt Kracht met <%= str %>. Beperkte oplage 2021 zomeruitrusting.",
"weaponSpecialSummer2021WarriorNotes": "Dit schimmerende mes stroomt misschien als water, maar het kan tot de hart van de lastigste problemen snijden! Verhoogt Kracht met <%= str %>. Beperkte oplage 2021 zomeruitrusting.",
- "weaponSpecialSummer2021MageNotes": "Of je magische ambities nou twintig duizend competities diep liggen, of als je alleen meent te duiken in het ondiepe van de kunst, dit glanzende werktuig zal je goed dienen! Verhoogt Intelligentie met <%= int %> en Perceptie met <%= per =%>. Beperkte oplage 2021 zomeruitrusting.",
+ "weaponSpecialSummer2021MageNotes": "Of je magische ambities nou twintig duizend competities diep liggen, of als je alleen meent te duiken in het ondiepe van de kunst, dit glanzende werktuig zal je goed dienen! Verhoogt Intelligentie met <%= int %> en Perceptie met <%= per %>. Beperkte oplage 2021 zomeruitrusting.",
"weaponSpecialSummer2021HealerNotes": "Niet om flauw te doen, maar deze staf is een levenredder. Verhoogt Intelligentie met <%= int %>. Beperkte oplage 2021 zomeruitrusting.",
"weaponSpecialFall2021RogueText": "Druipende Smurrie",
"weaponSpecialFall2021RogueNotes": "Waar ben je in hemelsnaam terecht in gekomen? Wanneer mensen zeggen dat Dieven plakkerige vingers hebben, is dit niet wat ze bedoelen! Verhoogt Kracht met <%= str %>. Beperkte oplage 2021 herfstuitrusting.",
@@ -2393,10 +2393,25 @@
"headSpecialNye2021Notes": "Je hebt een Belachelijke Feesthoed ontvangen! Draag het met trots terwijl je het nieuwe jaar inluidt! Geeft geen voordelen.",
"weaponSpecialWinter2022HealerNotes": "Raak de nek van een vriend met dit uit vast water bestaande werktuig en zie ze van hun stoel springen! Verhoogt Intelligentie met <%= int %>. Beperkte oplage 2021-2022 winteruitrusting.",
"weaponSpecialSpring2022RogueText": "Gigantische Oorbel Knop",
- "weaponSpecialSpring2022RogueNotes": "Een glanzende! Het is zo glimmend and glanzend en mooi en leuk en helemaal van jou! Verhoogt Kracht met <%= str %>. Beperkte oplage 2022 lenteuitrusting.",
+ "weaponSpecialSpring2022RogueNotes": "Een glanzende! Het is zo glimmend en glanzend en mooi en leuk en helemaal van jou! Verhoogt Kracht met <%= str %>. Beperkte Oplage Lente-uitrusting 2022.",
"weaponSpecialSpring2022WarriorText": "Binnenstebuiten Paraplu",
"weaponSpecialSpring2022WarriorNotes": "Jakkes! Die wind was misschien iets sterker dan je dacht, he? Verhoogt Kracht met <%= str %>. Beperkte oplage 2022 lenteuitrusting.",
"weaponSpecialSpring2022MageText": "Forsythia Staf",
"armorArmoireSoftVioletSuitNotes": "Paars is een luxe kleur. Ontspan in stijl na je al je dagelijke taken hebt volbracht. Verhoogt Weerbaarheid en Kracht met <%= attrs %> elk. Betoverde kast: Violette Loungewear (voorwerp 2 van 3).",
- "shieldArmoireSoftVioletPillowNotes": "De slimme krijger pakt een kussen in voor elke expeditie. Bescherm jezelf van door uitstel veroorzaakte paniek... zelfs terwijl je een dutje doet. Verhoogt Intelligentie met <%= int %>. Betoverde kast: Violette Loungewear (voorwerp 3 van 3)."
+ "shieldArmoireSoftVioletPillowNotes": "De slimme krijger pakt een kussen in voor elke expeditie. Bescherm jezelf van door uitstel veroorzaakte paniek... zelfs terwijl je een dutje doet. Verhoogt Intelligentie met <%= int %>. Betoverde kast: Violette Loungewear (voorwerp 3 van 3).",
+ "weaponMystery202201Text": "Middennacht Confetti Kanon",
+ "weaponMystery202111Text": "Staf van de Tijdsbezweerder",
+ "weaponSpecialSummer2022RogueText": "Krabschaar",
+ "weaponSpecialSummer2022MageText": "Mantarog Staf",
+ "weaponSpecialSummer2022WarriorNotes": "Het draait! Het kaatst terug! En het brengt de storm met zich mee! Verhoogt Kracht met <%= str %>. Beperkte Oplage Zomeruitrusting 2022.",
+ "weaponSpecialSpring2022MageNotes": "Deze helder gele bellen zijn klaar om jouw lente-magie in een krachtige baan te leiden. Verhoogt Intelligentie met <%= int %> en Perceptie met <%= int %>. Beperkte Oplage Lente-uitrusting 2022.",
+ "weaponMystery202111Notes": "Vorm het verloop van de tijd met deze mysterieuze en krachtige staf. Verleent geen voordelen. Abonnee-uitrusting november 2021.",
+ "weaponMystery202201Notes": "Laat een wolk van gouden en zilveren glitters los wanneer de klok middennacht slaat. Gelukkig Nieuwjaar! Wie gaat dit nu opruimen?! Verleent geen voordelen. Abonnee-uitrusting januari 2022.",
+ "weaponSpecialSpring2022HealerText": "Peridoten Toverstok",
+ "weaponSpecialSummer2022HealerText": "Voordelige Bubbels",
+ "weaponSpecialSpring2022HealerNotes": "Gebruik deze toverstok om de helende eigenschappen van peridoot te benuttigen, zij het om kalmte, positiviteit of juist barmhartigheid teweeg te brengen. Verhoogt Intelligentie met <%= int %>. Beperkte Oplage Lente-uitrusting 2022.",
+ "weaponSpecialSummer2022RogueNotes": "Als je in het nauw gedreven bent, twijfel dan niet om deze angstaanjagende krabscharen te laten zien! Verhoogt Kracht met <%= str %>. Beperkte Oplage Zomeruitrusting 2022.",
+ "weaponSpecialSummer2022MageNotes": "Laat op magische wijze de wateren voor je wijken met één zwaai van deze staf. Verhoogt Intelligentie met <%= str %> en Perceptie met <%= per %>. Beperkte Oplage Zomeruitrusting 2022.",
+ "weaponSpecialSummer2022HealerNotes": "Deze bubbels laten helende magie los in het water met een bevredigende plop! Verhoogt Intelligentie met <%= int %>. Beperkte Oplage Zomeruitrusting 2022.",
+ "weaponSpecialSummer2022WarriorText": "Wervelende Cycloon"
}
diff --git a/website/common/locales/nl/settings.json b/website/common/locales/nl/settings.json
index 290351beb0..be683e9f0a 100644
--- a/website/common/locales/nl/settings.json
+++ b/website/common/locales/nl/settings.json
@@ -8,7 +8,7 @@
"dailyDueDefaultView": "Standaard de 'Onvoltooid' tab laten zien in Dagelijkse Taken",
"dailyDueDefaultViewPop": "Deze optie toont voor Dagelijkse Taken standaard de 'Onvoltooid' tab in plaats van 'Alle'",
"reverseChatOrder": "Laat chatberichten zien in omgekeerde volgorde",
- "startAdvCollapsed": "Geavanceerde Instellingen in taken zijn aanvakelijk ingeklapt",
+ "startAdvCollapsed": "Geavanceerde Instellingen in taken zijn aannvakelijk ingeklapt",
"startAdvCollapsedPop": "Deze optie verbergt de geavanceerde instellingen wanneer je voor het eerst een taak opent om hem te bewerken.",
"dontShowAgain": "Laat dit niet meer zien",
"suppressLevelUpModal": "Geen pop-up tonen wanneer ik een hoger niveau bereik",
@@ -215,5 +215,7 @@
"nextHourglass": "Volgende Zandloper",
"nextHourglassDescription": "Abonnees krijgen Mystieke Zandlopers binnen\nde eerste drie dagen van de maand.",
"adjustment": "Aanpassing",
- "dayStartAdjustment": "Dag Begin Aanpassing"
+ "dayStartAdjustment": "Dag Begin Aanpassing",
+ "passwordSuccess": "Wachtwoord succesvol aangepast",
+ "transaction_admin_update_balance": "Door beheerder gegeven"
}
diff --git a/website/common/locales/pl/achievements.json b/website/common/locales/pl/achievements.json
index ec96624927..d3300d28ad 100644
--- a/website/common/locales/pl/achievements.json
+++ b/website/common/locales/pl/achievements.json
@@ -123,5 +123,6 @@
"achievementShadyCustomerModalText": "Oswoiłeś wszystkie cieniste chowańce!",
"achievementShadeOfItAllText": "Oswojono wszystkie cieniste wierzchowce.",
"achievementShadeOfItAllModalText": "Oswoiłeś wszystkie cieniste wierzchowce!",
- "achievementShadeOfItAll": "Cień nad Cieniami"
+ "achievementShadeOfItAll": "Cień nad Cieniami",
+ "achievementZodiacZookeeper": "Zodiakalny Dozorca Zoo"
}
diff --git a/website/common/locales/pt/achievements.json b/website/common/locales/pt/achievements.json
index 79274c6cf2..64fdbb3a5a 100644
--- a/website/common/locales/pt/achievements.json
+++ b/website/common/locales/pt/achievements.json
@@ -68,13 +68,13 @@
"achievementFedPetModalText": "Existem muitos tipos diferentes de comida, mas as Mascotes podem ser exigentes",
"achievementMonsterMagus": "Mago dos Monstros",
"achievementAridAuthority": "Autoridade Árida",
- "achievementDustDevil": "Demônio da Poeira",
+ "achievementDustDevil": "Demónio da Poeira",
"achievementAllYourBase": "Tudo Básico",
"achievementLostMasterclasserModalText": "Você completou todas as dezesseis missões da Série de Mestre de Classes e solucionou o mistério do Mestre de Classes Perdido!",
"achievementPrimedForPainting": "Pronto a Pintar",
"achievementKickstarter2019Text": "Apoiou o Projeto Pin do Kickstarter de 2019",
"achievementKickstarter2019": "Apoiante do Pin Kickstarter",
- "yourRewards": "Recompensas",
+ "yourRewards": "As suas recompensas",
"achievementUndeadUndertaker": "Domador de Mortos-vivos",
"achievementFreshwaterFriendsModalText": "Você completou as missões dos Mascotes Salamandra, Sapo e Hipopótamo!",
"achievementFreshwaterFriendsText": "Completou as missões dos Mascotes Salamandra, Sapo e Hipopótamo.",
@@ -114,5 +114,6 @@
"achievementDomesticated": "I-A-I-A-OH",
"achievementVioletsAreBlueModalText": "Coletou todas as Mascotes Algodão-doce Rosa!",
"achievementDomesticatedModalText": "Coletou todas as mascotes domesticadas!",
- "achievementWildBlueYonderText": "Domesticou todas as Montarias de Algodão Doce Azul."
+ "achievementWildBlueYonderText": "Domesticou todas as Montarias de Algodão Doce Azul.",
+ "achievementSeasonalSpecialistModalText": "Completaste todas as jornadas sazonais!"
}
diff --git a/website/common/locales/pt/backgrounds.json b/website/common/locales/pt/backgrounds.json
index 41b9c588ee..59b5b0b5b0 100644
--- a/website/common/locales/pt/backgrounds.json
+++ b/website/common/locales/pt/backgrounds.json
@@ -640,5 +640,13 @@
"backgrounds062022": "Conjunto 97: Lançado em Julho de 2022",
"hideLockedBackgrounds": "Ocultar cenários bloqueados",
"backgroundHolidayHearthText": "Lareira Natalina",
- "backgroundHolidayHearthNotes": "Relaxe, aqueça-se e seque-se ao lado de uma Lareira Natalina."
+ "backgroundHolidayHearthNotes": "Relaxe, aqueça-se e seque-se ao lado de uma Lareira Natalina.",
+ "backgroundAutumnLakeshoreText": "Margem Outonal do Lago",
+ "backgroundCrypticCandlesText": "Velas Misteriosas",
+ "backgroundCrypticCandlesNotes": "Invoque forças arcanas através das Velas Misteriosas.",
+ "backgroundHauntedPhotoText": "Foto Assombrada",
+ "backgroundWindmillsNotes": "Prepare-se e aventure-se contra os Moinhos de Vento.",
+ "backgroundAutumnLakeshoreNotes": "Repouse na Margem Outonal do Lago para apreciar as reflexões do bosque na água.",
+ "backgroundUndeadHandsText": "Mãos Mortas-vivas",
+ "backgroundUndeadHandsNotes": "Tente escapar das garras das Mãos Mortas-vivas."
}
diff --git a/website/common/locales/pt/communityguidelines.json b/website/common/locales/pt/communityguidelines.json
index fd0fa2bb83..117949ae6c 100644
--- a/website/common/locales/pt/communityguidelines.json
+++ b/website/common/locales/pt/communityguidelines.json
@@ -4,12 +4,12 @@
"commGuideHeadingWelcome": "Bem-vindo ao Habitica!",
"commGuidePara001": "Saudações, aventureiro! Bem-vindo a Habitica, terra da produtividade, estilo de vida saudável e o ocasional grifo tumultuoso. Temos uma comunidade alegre e cheia de pessoas amigáveis e disponíveis para se ajudarem entre si ao longo do caminho para o seu auto-aperfeiçoamento. Para te integrares, só precisas de trazer uma atitude positiva, uma postura respeitadora e a noção de que todos temos diferentes qualidades e limitações -- incluindo tu! Os Habiticanos são pacientes uns com os outros e tentam ajudar sempre que podem.",
"commGuidePara002": "Para mantermos toda a gente segura, feliz e produtiva dentro da nossa comunidade, temos algumas regras. Estas foram cuidadosamente elaboradas para que sejam tão amigáveis e fáceis de ler quanto possível. Por favor, dispensa-lhes o tempo necessário para as leres antes de começares a conversar.",
- "commGuidePara003": "Essas regras se aplicam a todos os espaços sociais que usamos, incluindo (mas não necessariamente limitado a) o Trello, o GitHub, o Weblate e a Wikia (a wiki). Algumas vezes, imprevistos irão surgir, como uma nova fonte de conflito ou um necromante perverso. Quando isso acontece, os moderadores podem editar essas diretrizes para manter a comunidade a salvo dessas novas ameaças. Não tenha medo: você será notificado através de um dos Pronunciamentos de Bailey se as diretrizes mudarem.",
+ "commGuidePara003": "Estas regras aplicam-se a todos os espaços sociais que usamos, incluindo (mas não necessariamente limitado a) o Trello, o GitHub, o Weblate e a Wiki do Habitica no Fandom. À medida que as comunidades crescem e mudam, as suas regras podem adaptar-se. Quando uma alteração significativa ocorre, vai ouvir falar dela num anúncio do Bailey e/ou nas nossas redes sociais!",
"commGuideHeadingInteractions": "Interacções no Habitica",
- "commGuidePara015": "O Habitica tem dois tipos de espaços sociais: público e privado. os espaços públicos incluem a Estalagem, Guildas Públicas, o Trello e a Wiki. Espaços privados são Guildas privadas, a conversação da Equipa e Mensagens privadas. Todos os Nomes de Utilizador devem cumprir as Diretrizes de Espaço Público. Para alterar o Nome de Utilizador, utiliza o website para consultar Utilizador > Perfil e clica no botão \"Editar\".",
- "commGuidePara016": "Ao navegar os espaços públicos em Habitica, existem algumas regras gerais para manter todo mundo seguro e feliz. Elas devem ser fáceis para aventureiros como você!",
- "commGuideList02A": "Respeitem-se mutuamente. Sejam corteses, gentis, amigáveis e estejam disponíveis para ajudar. Lembrem-se: os Habiticanos têm origens diferentes e tiveram experiências muito divergentes entre si. Isto é parte do que faz o Habitica tão porreiro. Construir uma comunidade implica respeitar e celebrar as nossas diferenças, assim como as nossas semelhanças. Eis algumas formas simples de se respeitarem mutuamente:",
- "commGuideList02B": "Obedecer a todos os Termos e Condições de Utilização.",
+ "commGuidePara015": "O Habitica tem dois tipos de espaços sociais: público e privado. os espaços públicos incluem a Estalagem, Guildas Públicas, o GitHub, o Trello e a Wiki. Espaços privados são Guildas privadas, a conversação da Equipa e Mensagens privadas. Todos os Nomes de Utilizador e @nomedeutilizador devem cumprir as Diretrizes do Espaço Público. Para alterar o Nome de Utilizador e/ou @nomedeutilizador na aplicação, vá a Menu > Definições > Perfil. No site, vá a Utilizador > Definições.",
+ "commGuidePara016": "Ao navegar os espaços públicos em Habitica, existem algumas regras gerais para manter todo mundo seguro e feliz.",
+ "commGuideList02A": "Respeitem-se mutuamente. Sejam corteses, gentis, amigáveis e estejam disponíveis para ajudar. Lembrem-se: os Habiticanos têm origens diferentes e tiveram experiências muito divergentes entre si. Isto é parte do que faz o Habitica tão porreiro. Construir uma comunidade implica respeitar e celebrar as nossas diferenças, assim como as nossas semelhanças.",
+ "commGuideList02B": "Obedeça a todos os Termos e Condições de Utilização, tanto em espaços públicos como privados.",
"commGuideList02C": "Não publiquem imagens ou textos que contenham violência, ameaças, ou sejam sexualmente explícitas/sugestivas, ou que promovam discriminação, preconceito, racismo, sexismo, ódio, assédio ou qualquer prejuízo contra qualquer indivíduo ou grupo. Nem sequer a brincar. Isto inclui insultos e afirmações. Nem todas as pessoas possuem o mesmo sentido de humor, como tal, algo que consideres engraçado pode ser prejudicial para outros. Ataquem as vossas Tarefas Diárias, não os vossos pares.",
"commGuideList02D": "Mantenham os debates apropriados para todas as idades. Temos muitos jovens Habiticanos a usar este site! Vamos tentar não manchar os inocentes nem dificultar a qualquer Habiticano a chegada às suas metas.",
"commGuideList02E": "Evita a profanidade. Isto inclui declarações mais brandas sobre religião que possam ser consideradas aceitáveis noutros contextos. Temos pessoas de todas as origens culturais e religiosas e queremos que todas se sintam confortáveis nos espaços públicos. Se um moderador ou membro do staff te diz que determinado termo não é permitido no Habitica, mesmo que seja um termo que tu não entendas como problemático, essa decisão é final. Além disto, insultos serão tratados com severidade, uma vez que são também uma violação dos Termos de Serviço.",
diff --git a/website/common/locales/pt/content.json b/website/common/locales/pt/content.json
index e1379c155d..572366bc3b 100644
--- a/website/common/locales/pt/content.json
+++ b/website/common/locales/pt/content.json
@@ -369,5 +369,7 @@
"hatchingPotionMoonglow": "de Brilho da Lua",
"hatchingPotionOnyx": "Ônix",
"hatchingPotionSolarSystem": "Sistema Solar",
- "hatchingPotionPolkaDot": "Bolinhas"
+ "hatchingPotionPolkaDot": "Bolinhas",
+ "hatchingPotionWindup": "de Corda",
+ "hatchingPotionVirtualPet": "Mascote Virtual"
}
diff --git a/website/common/locales/pt/contrib.json b/website/common/locales/pt/contrib.json
index 492848ae4f..abce26c5f7 100644
--- a/website/common/locales/pt/contrib.json
+++ b/website/common/locales/pt/contrib.json
@@ -49,9 +49,10 @@
"balance": "Equilibrar",
"playerTiers": "Níveis de Jogador",
"tier": "Nível",
- "conRewardsURL": "http://habitica.fandom.com/wiki/Contributor_Rewards",
+ "conRewardsURL": "https://habitica.fandom.com/pt-br/wiki/Recompensas_de_Contribuidor",
"surveysSingle": "Ajudou o Habitica a crescer, preenchendo um questionário ou ajudando com um grande esforço em testes. Obrigado!",
"surveysMultiple": "Ajudou Habitica a crescer em <%= count %> ocasiões, seja ao preencher um inquérito ou ao ajudar com grandes esforços de testes. Obrigado!",
"blurbHallPatrons": "Este é o Salão dos Patrocinadores, onde honramos os nobres aventureiros que apoiaram Habitica no Kickstarter. Agradecemos a eles por nos ajudar a trazer Habitica à vida!",
- "blurbHallContributors": "Isto é o Salão dos Colaboradores, onde os colaboradores de código aberto para o Habitica são homenageados. Quer seja através de programação, arte, música, escrita ou apenas prestabilidade, eles ganharam gemas, equipamento exclusivo e títulos de prestígio. Você também pode colaborar para o Habitica! Saiba mais aqui."
+ "blurbHallContributors": "Isto é o Salão dos Colaboradores, onde os colaboradores de código aberto para o Habitica são homenageados. Quer seja através de programação, arte, música, escrita ou apenas prestabilidade, eles ganharam gemas, equipamento exclusivo e títulos de prestígio. Você também pode colaborar para o Habitica! Saiba mais aqui.",
+ "noPrivAccess": "Não tem os privilégios necessários."
}
diff --git a/website/common/locales/pt/faq.json b/website/common/locales/pt/faq.json
index 184ce87935..502b11055d 100644
--- a/website/common/locales/pt/faq.json
+++ b/website/common/locales/pt/faq.json
@@ -9,9 +9,9 @@
"androidFaqAnswer1": "Bons Hábitos (aqueles com um +) são tarefas que você pode fazer várias vezes por dia, como comer vegetais. Maus Hábitos (aqueles com um -) são tarefas que você deve evitar, como roer as unhas. Hábitos com um + e um - tem uma escolha boa e uma escolha ruim, como usar as escadas vs pegar o elevador. Bons Hábitos concedem ouro e experiência. Maus Hábitos diminuem sua vida.\n\nDiárias são tarefas que você deve fazer todos os dias, como escovar os dentes ou conferir seu e-mail. Você pode ajustar os dias em que deve realizar uma Diária tocando-a para editá-la. Se você não fizer uma Diária que está ativa, seu Avatar sofrerá dano no final do dia. Tome cuidado para não adicionar muitas Diárias de uma só vez!\n\nAfazeres é a sua lista de afazeres. Concluindo um Afazer, você ganha ouro e experiência. Você nunca perde vida com Afazeres. Você pode adicionar um prazo para um Afazer tocando-o para editar.",
"webFaqAnswer1": "* Bons Hábitos (os que tem um :heavy_plus_sign:) são tarefas que você pode fazer muitas vezes ao dia, como comer vegetais. Maus Hábitos (os que tem :heavy_minus_sign:) são tarefas que você deve evitar, como roer as unhas. Hábitos com :heavy_plus_sign: e :heavy_minus_sign: tem uma escolha boa e uma escolha ruim, como subir escadas vs pegar o elevador. Bons Hábitos concedem Experiência e Ouro. Maus Hábitos diminuem sua Vida.\n* Diárias são tarefas que você faz todos os dias, como escovar dentes ou checar seu e-mail. Você pode ajustar os dias em que uma Diária deve ser cumprida clicando no item do lápis para editá-la. Se você não realizar uma Diária ativa, seu Avatar sofrerá dano no final do dia. Tenha cuidado para não adicionar muitas Diárias de uma só vez!\n* Afazeres são a sua lista de afazeres. Concluindo um Afazer você ganha Ouro e Experiência. Você nunca perderá Vida com Afazeres. Você pode estabelecer um prazo para um Afazer clicando no ícone do lápis para editar.",
"faqQuestion2": "Há algumas tarefas modelo?",
- "iosFaqAnswer2": "A wiki tem quatro listas de exemplos de tarefas para usar como inspiração:\n\n* [Exemplos de Hábitos](https://habitica.fandom.com/pt-br/wiki/Sample_Habits)\n* [Exemplos de Diárias](https://habitica.fandom.com/pt-br/wiki/Sample_Dailies)\n* [Exemplos de Afazeres](https://habitica.fandom.com/pt-br/wiki/Sample_To-Dos)\n* [Exemplos de Recompensas Pessoais](https://habitica.fandom.com/pt-br/wiki/Sample_Custom_Rewards)",
+ "iosFaqAnswer2": "A wiki tem quatro listas de tarefas modelo para usar como inspiração:\n\n* [Amostras de Hábitos](https://habitica.fandom.com/pt-br/wiki/Sample_Habits)\n* [Amostras de Tarefas Diárias](https://habitica.fandom.com/pt-br/wiki/Sample_Dailies)\n* [Amostras de Afazeres](https://habitica.fandom.com/pt-br/wiki/Sample_To-Dos)\n* [Amostras de Recompensas Personalizadas](https://habitica.fandom.com/pt-br/wiki/Sample_Custom_Rewards)",
"androidFaqAnswer2": "A wiki tem quatro listas de exemplos de tarefas para usar como inspiração:\n\n* [Exemplos de Hábitos](http://habitica.fandom.com/wiki/Sample_Habits)\n* [Exemplos de Diárias](http://habitica.fandom.com/wiki/Sample_Dailies)\n* [Exemplos de Afazeres](http://habitica.fandom.com/wiki/Sample_To-Dos)\n* [Exemplos de Recompensas Pessoais](http://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
- "webFaqAnswer2": "A wiki tem quatro listas de exemplos de tarefas para usar como inspiração:\n\n* [Exemplos de Hábitos](https://habitica.fandom.com/pt-br/wiki/Sample_Habits)\n* [Exemplos de Diárias](https://habitica.fandom.com/pt-br/wiki/Sample_Dailies)\n* [Exemplos de Afazeres](https://habitica.fandom.com/pt-br/wiki/Sample_To-Dos)\n* [Exemplos de Recompensas Pessoais](https://habitica.fandom.com/pt-br/wiki/Sample_Custom_Rewards)",
+ "webFaqAnswer2": "A wiki tem quatro listas de tarefas modelo para usar como inspiração:\n* [Amostras de Hábitos](https://habitica.fandom.com/pt-br/wiki/Sample_Habits)\n* [Amostras de Tarefas Diárias](https://habitica.fandom.com/pt-br/wiki/Sample_Dailies)\n* [Amostras de Afazeres](https://habitica.fandom.com/pt-br/wiki/Sample_To-Dos)\n* [Amostras de Recompensas Personalizadas](https://habitica.fandom.com/pt-br/wiki/Sample_Custom_Rewards)",
"faqQuestion3": "Porque é que as minhas tarefas mudam de cor?",
"iosFaqAnswer3": "Suas tarefas mudam de cor a medida que você as cumpre! Cada tarefa nova começa como um amarelo neutro. Conclua uma tarefa diária ou habitos positivos mais frequentemente e elas caminharão em direção ao azul. Perca uma tarefa diária ou tenha um hábito ruim e a tarefa vai para o vermelho. Quanto mais vermelha for a tarefa, maior será sua recompensa, mas se for uma diária ou um hábito ruim, mais elas irão te machucar! Isso te ajuda a motivar-se a completar tarefas que estão te dando problemas.",
"androidFaqAnswer3": "Suas tarefas mudam de cor a medida que você as cumpre! Cada tarefa nova começa como um amarelo neutro. Conclua uma tarefa diária ou hábitos positivos mais frequentemente e elas caminharão em direção ao azul. Perca uma tarefa diária ou tenha um hábito ruim e a tarefa vai para o vermelho. Quanto mais vermelha for a tarefa, maior será sua recompensa, mas se for uma diária ou um hábito ruim, mais elas irão te machucar! Isso te ajuda a motivar-se a completar tarefas que estão te dando problemas.",
diff --git a/website/common/locales/pt/gear.json b/website/common/locales/pt/gear.json
index ffe46a4890..9eabb71ed1 100644
--- a/website/common/locales/pt/gear.json
+++ b/website/common/locales/pt/gear.json
@@ -228,7 +228,7 @@
"weaponSpecialSpring2017HealerNotes": "A verdadeira magia desta varinha é o segredo da nova vida no interior da casca colorida. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada da Primavera de 2017.",
"weaponSpecialSummer2017RogueText": "Barbatanas de Dragão Marinho",
"weaponSpecialSummer2017RogueNotes": "As bordas destas barbatanas são afiadas como uma navalha. Aumenta Força em <%= str %>. Equipamento de Edição Limitada do Verão de 2017.",
- "weaponSpecialSummer2017WarriorText": "O Guarda-Sol mais Poderoso",
+ "weaponSpecialSummer2017WarriorText": "Guarda-Sol mais Poderoso",
"weaponSpecialSummer2017WarriorNotes": "Todos o temem. Aumenta Força em <%= str %>. Equipamento de Edição Limitada do Verão de 2017.",
"weaponSpecialSummer2017MageText": "Chicotes de Remoinho",
"weaponSpecialSummer2017MageNotes": "Invoque chicotes mágicos de água a ferver para ferir as suas tarefas! Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Edição Limitada do Verão de 2017.",
@@ -1784,5 +1784,9 @@
"armorArmoireBathtubNotes": "Hora de fazer uma pausa e relaxar um pouco? Aqui esta a sua própria banheira pessoal – e a garantia de que a água estará sempre na temperatura que você gosta! Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto Banho de Espuma (Item 2 de 4).",
"weaponArmoireBuoyantBubblesNotes": "Estas bolhas continuam a flutuar eternamente, não se sabe como... Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto Banho de Espuma (Item 3 de 4).",
"armorArmoireBagpipersKiltText": "Kilt do Gaiteiro",
- "weaponArmoirePinkLongbowText": "Arco Longo Cor de Rosa"
+ "weaponArmoirePinkLongbowText": "Arco Longo Cor de Rosa",
+ "weaponSpecialWinter2020HealerText": "Cetro de Cravinho",
+ "weaponSpecialSpring2020WarriorText": "Asa Aguçada",
+ "weaponSpecialSpring2020RogueText": "Lâmina de Lazurita",
+ "weaponSpecialWinter2020WarriorText": "Pinha Pontiaguda"
}
diff --git a/website/common/locales/pt/generic.json b/website/common/locales/pt/generic.json
index 57ca60694f..68ad1a06ea 100644
--- a/website/common/locales/pt/generic.json
+++ b/website/common/locales/pt/generic.json
@@ -24,7 +24,7 @@
"help": "Ajuda",
"user": "Utilizador",
"market": "Mercado",
- "newSubscriberItem": "Você tem Items Mistério novos",
+ "newSubscriberItem": "Tem Itens Mistério novos",
"subscriberItemText": "A cada mês, assinantes receberão um item misterioso. Ele normalmente é liberado cerca de uma semana antes do final do mês. Veja a página \"Item Misterioso\" da wiki para mais informações.",
"all": "Todos",
"none": "Nenhum",
diff --git a/website/common/locales/pt/groups.json b/website/common/locales/pt/groups.json
index 3add274a4a..27452dec9e 100644
--- a/website/common/locales/pt/groups.json
+++ b/website/common/locales/pt/groups.json
@@ -1,16 +1,16 @@
{
- "tavern": "Conversação da Taverna",
+ "tavern": "Conversa da Estalagem",
"tavernChat": "Conversa da Estalagem",
"innCheckOutBanner": "Deste entrada na Pousada. As tuas Tarefas Diárias não te vão causar dano e não vais progredir nas Missões.",
"innCheckOutBannerShort": "Você está a repousar na Estalagem.",
"resumeDamage": "Retomar Dano",
"helpfulLinks": "Links Prestáveis",
"communityGuidelinesLink": "Guia de Comunidade",
- "lookingForGroup": "Procurar por Mensagens de Grupo (Procura-se Equipa)",
+ "lookingForGroup": "Procurar por Mensagens de Grupo (Equipe necessária)",
"dataDisplayTool": "Ferramenta de Exibição de Dados",
"requestFeature": "Solicitar uma Funcionalidade",
"askAQuestion": "Fazer uma Pergunta",
- "askQuestionGuild": "Coloque uma Pergunta (Habitica - Ajuda de guilda)",
+ "askQuestionGuild": "Faça uma Pergunta (Habitica - Ajuda de guilda)",
"contributing": "Contribuições",
"faq": "FAQ",
"tutorial": "Tutorial",
diff --git a/website/common/locales/pt/settings.json b/website/common/locales/pt/settings.json
index 45f9c0d0eb..e7627c3fd7 100644
--- a/website/common/locales/pt/settings.json
+++ b/website/common/locales/pt/settings.json
@@ -39,10 +39,10 @@
"xml": "(XML)",
"json": "(JSON)",
"customDayStart": "Início do Dia Personalizado",
- "sureChangeCustomDayStartTime": "Tens certeza que quer cambiar o horário de Início do seu Dia Customizado? Suas Tarefas Diárias irão reinicializar na primeira vez que usar o Habitica depois das <%= time %>. Certifique-se de ter realizado suas Tarefas Diárias anteriormente!",
- "customDayStartHasChanged": "O seu início do dia personalizado foi alterado.",
+ "sureChangeCustomDayStartTime": "Tem a certeza que quer mudar o horário de Início de Dia Personalizado? As suas Tarefas Diárias irão reiniciar na primeira vez que usar o Habitica depois de <%= time %>. Certifique-se de ter realizado as suas Tarefas Diárias antes disso!",
+ "customDayStartHasChanged": "O seu início de dia personalizado foi alterado.",
"nextCron": "As suas tarefas diárias serão reiniciadas ao utilizar Habitica depois de <%= time %>. Certifique-se de que completou as suas tarefas diárias antes deste horário!",
- "customDayStartInfo1": "Habitica está predefinido para verificar e reiniciar as suas tarefas diárias à meia noite de seu fuso horária a cada dia. Você pode personalizar esse horário aqui.",
+ "customDayStartInfo1": "Habitica está predefinido para verificar e reiniciar as suas tarefas diárias à meia noite do seu fuso horário a cada dia. Pode personalizar esse horário aqui.",
"misc": "Variados",
"showHeader": "Mostrar Cabeçalho",
"changePass": "Alterar Palavra-passe",
@@ -55,7 +55,7 @@
"newUsername": "Novo nome de utilizador",
"dangerZone": "Zona de Perigo",
"resetText1": "ATENÇÃO! Isso redefine várias partes da sua conta. Isso é altamente desencorajado, mas algumas pessoas acham útil no início, após brincarem com o site por um curto período de tempo.",
- "resetText2": "Você perderá todos os seus níveis, ouro e pontos de experiência. Todas as suas tarefa (excepto as criadas por desafios) serão apagadas permanentemente e perderá toda a informação de histórico das mesmas. Perderá todo o seu equipamento mas ser-lhe-á possível comprá-lo todo de volta, incluindo equipamento de edição limitada ou itens Mistério de subscrição que já possua (deverá ter a classe correcta para poder comprar equipamento específico a uma classe outra vez). Manterá a sua classe corrente bem como os seus mascotes e montarias. Talvez prefira utilizar uma Orbe de Renascimento, uma opção mais segura e que preservará todas as suas tarefas e equipamento.",
+ "resetText2": "Perderá todos os seus níveis, Ouro e Pontos de Experiência. Todas as suas tarefa (excepto as criadas por desafios) serão apagadas permanentemente e perderá toda a informação histórica das mesmas. Perderá todo o seu equipamento exceto Itens Mistério de Subscritores e itens comemorativos grátis. Ser-lhe-á possível comprá-lo todo de volta, incluindo equipamento de edição limitada (deverá ter a classe correcta para poder comprar equipamento específico a uma classe de novo). Manterá a sua classe atual bem como as seus mascotes e montarias. Talvez prefira utilizar uma Orbe de Renascimento, uma opção mais segura e que preservará todas as suas tarefas e equipamento.",
"deleteLocalAccountText": "Tem a certeza? Isto irá eliminar a sua conta para sempre, e esta nunca mais poderá ser restaurada! Irá precisar de registar uma nova conta para utilizar novamente o Habitica. As Gemas gastas ou guardadas não serão reembolsadas. Se tiver a certeza absoluta, digite a sua palavra-passe na caixa de texto abaixo.",
"deleteSocialAccountText": "Tem a certeza? Isto irá apagar a sua conta para sempre e esta não poderá nunca ser restaurada! Terá de registar uma nova conta para usar Habitica outra vez. Gemas em reserva ou gastas não serão restituidas. Se tem a certeza absoluta, escreva \"<%= magicWord %>\" na caixa de texto abaixo.",
"API": "API",
@@ -71,7 +71,7 @@
"beeminderDesc": "Deixe o Beeminder monitorar automaticamente as suas tarefas do Habitica. Você pode se propor a manter um número alvo de tarefas completadas por dia ou por semana, ou você pode propor reduzir o seu numero de tarefas remanescentes incompletas gradualmente. (Por \"propor\" Beeminder quer dizer sobre aviso de pagar dinheiro real! Mas você também pode gostar dos gráficos chiques do Beeminder.)",
"chromeChatExtension": "Extensão de Conversação do Chrome",
"chromeChatExtensionDesc": "A extensão de Chat em Habitica para o Chrome adiciona uma caixa de Chat intuitiva em habitica.com. Isso permite os usuários conversarem na Taverna, com sua equipe e qualquer guilda que esteja participando.",
- "otherExtensions": "Outras Extensões",
+ "otherExtensions": "Outras Extensões",
"otherDesc": "Encontre outras aplicações, extensões, e ferramentas na Wiki do Habitica.",
"resetDo": "Faça, reinicie minha conta!",
"resetComplete": "Reset completo!",
@@ -102,8 +102,8 @@
"giftedSubscription": "Assinaturas Presenteadas",
"giftedSubscriptionInfo": "<%= name %> ofereceu-lhe um <%= months %> mês de subscrição",
"giftedSubscriptionFull": "Olá <%= username %>, <%= sender %> enviou-lhe <%= monthCount %> meses de subscrição!",
- "invitedParty": "Convidado para a Equipa",
- "invitedGuild": "Convidado para Guilda",
+ "invitedParty": "Foi convidado para uma Equipa",
+ "invitedGuild": "Foi convidado(a) para uma Guilda",
"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",
@@ -180,5 +180,7 @@
"chatExtension": "Extensão de conversa Chrome and Extensão de conversa Firefox",
"resetAccount": "Formatar Conta",
"newPMNotificationTitle": "Nova Mensagem de <%= name %>",
- "mentioning": "Mencionando"
+ "mentioning": "Mencionando",
+ "adjustment": "Ajuste",
+ "dayStartAdjustment": "Alterar Início de Dia"
}
diff --git a/website/common/locales/pt_BR/achievements.json b/website/common/locales/pt_BR/achievements.json
index 262dafbdf5..9c9bec0830 100644
--- a/website/common/locales/pt_BR/achievements.json
+++ b/website/common/locales/pt_BR/achievements.json
@@ -128,11 +128,15 @@
"achievementZodiacZookeeper": "Guarda dos Animais do Zodíaco",
"achievementZodiacZookeeperText": "Chocou todas as cores padrão dos mascotes do zodíaco: Rato, Vaca, Coelho, Cobra, Cavalo, Ovelha, Macaco, Galo, Lobo, Tigre, Porco Voador e Dragão!",
"achievementBirdsOfAFeather": "Valeu a Pena",
- "achievementBirdsOfAFeatherText": "Coletou todas as cores padrão dos mascotes voadores: Porco Voador, Coruja, Papagaio, Pterodáctilo, Grifo e Falcão.",
+ "achievementBirdsOfAFeatherText": "Coletou todas as cores padrão dos mascotes voadores: Porco Voador, Coruja, Papagaio, Pterodátilo, Grifo, Falcão, Pavão e Galo!",
"achievementBirdsOfAFeatherModalText": "Você coletou todos os mascotes voadores!",
"achievementGroupsBeta2022Text": "Você e seu grupo deram um feedback inestimável para ajudar a testar o Habitica.",
"achievementGroupsBeta2022ModalText": "Você e seu grupo ajudaram o Habitica, testando e dando o seu feedback!",
"achievementReptacularRumbleModalText": "Você coletou todos os mascotes do tipo réptil!",
"achievementReptacularRumble": "Répteis Reptumbantes",
- "achievementReptacularRumbleText": "Coletou todos os mascotes comuns do tipo réptil: Cobra, Jacaré, Pterodáctilo, Tartaruga, Tiranossauro, Tricerátops e Velociraptor!"
+ "achievementReptacularRumbleText": "Coletou todos os mascotes comuns do tipo réptil: Cobra, Jacaré, Pterodáctilo, Tartaruga, Tiranossauro, Tricerátops e Velociraptor!",
+ "achievementGroupsBeta2022": "Testador Beta Interativo",
+ "achievementWoodlandWizardModalText": "Você coletou todos os mascotes da floresta!",
+ "achievementWoodlandWizard": "Feiticeiro da Floresta",
+ "achievementWoodlandWizardText": "Chocou todos os ovos de cor padrão das criaturas da floresta: Texugo, Urso, Cervo, Raposa, Sapo, Ouriço, Coruja, Caracol, Esquilo e Arvorezinha!"
}
diff --git a/website/common/locales/pt_BR/backgrounds.json b/website/common/locales/pt_BR/backgrounds.json
index 3c4379c1a6..0975219d32 100644
--- a/website/common/locales/pt_BR/backgrounds.json
+++ b/website/common/locales/pt_BR/backgrounds.json
@@ -641,7 +641,7 @@
"backgrounds092021": "Conjunto 88: Lançado em Setembro de 2021",
"backgroundAutumnLakeshoreText": "Margem do Lago Outonal",
"backgrounds102021": "Conjunto 89: Lançado em Outubro de 2021",
- "backgroundCrypticCandlesText": "Velas enigmáticas",
+ "backgroundCrypticCandlesText": "Velas Enigmáticas",
"backgroundCrypticCandlesNotes": "Invoca forças misteriosas entre velas enigmáticas.",
"backgroundHauntedPhotoText": "Foto Assombrada",
"backgroundHauntedPhotoNotes": "Se encontre preso no mundo monocromático de uma Foto Assombrada.",
@@ -703,5 +703,26 @@
"backgroundBlossomingTreesNotes": "Brinque sob as Árvores em Flor.",
"backgroundFlowerShopText": "Floricultura",
"backgroundSpringtimeLakeText": "Lago Primaveril",
- "backgroundSpringtimeLakeNotes": "Aprecie a vista nas margens de um Lago Primaveril."
+ "backgroundSpringtimeLakeNotes": "Aprecie a vista nas margens de um Lago Primaveril.",
+ "backgrounds072022": "Conjunto 98: Lançado em Julho de 2022",
+ "backgroundBioluminescentWavesText": "Ondas Bioluminescentes",
+ "backgroundBioluminescentWavesNotes": "Admire o brilho das Ondas Bioluminescentes.",
+ "backgroundUnderwaterCaveNotes": "Explore uma Caverna Subaquática.",
+ "backgroundUnderwaterCaveText": "Caverna Subaquática",
+ "backgroundUnderwaterStatuesText": "Jardim das Estátuas Subaquáticas",
+ "backgroundUnderwaterStatuesNotes": "Tente não piscar em um Jardim das Estátuas Subaquáticas.",
+ "backgroundMessyRoomText": "Quarto Bagunçado",
+ "backgroundMessyRoomNotes": "Arrume um Quarto Bagunçado.",
+ "backgroundByACampfireText": "Perto de Uma Fogueira",
+ "backgroundByACampfireNotes": "Aqueça-se na faísca Perto de uma Fogueira.",
+ "backgrounds082022": "Conjunto 99: Lançado em Agosto de 2022",
+ "backgroundRainbowEucalyptusText": "Eucalipto Arco-íris",
+ "backgroundRainbowEucalyptusNotes": "Admire um bosque de Eucalipto Arco-íris.",
+ "backgrounds092022": "CONJUNTO 100: Lançado em setembro de 2022",
+ "backgroundOldPhotoNotes": "Faça uma pose em um Retrato Antigo.",
+ "backgroundOldPhotoText": "Retrato Antigo",
+ "backgroundAutumnPicnicNotes": "Aproveite um Piquenique de Outono.",
+ "backgroundAutumnPicnicText": "Piquenique de Outono",
+ "backgroundTheatreStageText": "Palco de Teatro",
+ "backgroundTheatreStageNotes": "Performe em um Palco de Teatro."
}
diff --git a/website/common/locales/pt_BR/character.json b/website/common/locales/pt_BR/character.json
index 5c6dde4347..e9581237ee 100644
--- a/website/common/locales/pt_BR/character.json
+++ b/website/common/locales/pt_BR/character.json
@@ -105,7 +105,7 @@
"experience": "Experiência",
"warrior": "Guerreiro",
"healer": "Curandeiro",
- "rogue": "Gatuno",
+ "rogue": "Gatuno(a)",
"mage": "Mago",
"wizard": "Mago",
"mystery": "Mistério",
diff --git a/website/common/locales/pt_BR/content.json b/website/common/locales/pt_BR/content.json
index 1d19f1498d..3ef336d57f 100644
--- a/website/common/locales/pt_BR/content.json
+++ b/website/common/locales/pt_BR/content.json
@@ -196,9 +196,9 @@
"hatchingPotionSpooky": "Abóbora",
"hatchingPotionPeppermint": "Hortelã",
"hatchingPotionFloral": "Floral",
- "hatchingPotionAquatic": "Aquática",
+ "hatchingPotionAquatic": "do Mar",
"hatchingPotionEmber": "Flamejante",
- "hatchingPotionThunderstorm": "Tempestade",
+ "hatchingPotionThunderstorm": "da Tempestade",
"hatchingPotionGhost": "Espectral",
"hatchingPotionRoyalPurple": "Roxo Real",
"hatchingPotionHolly": "Arbusto",
@@ -209,7 +209,7 @@
"hatchingPotionRainbow": "Arco-Íris",
"hatchingPotionGlass": "de Vidro",
"hatchingPotionGlow": "que Brilha-no-Escuro",
- "hatchingPotionFrost": "Geada",
+ "hatchingPotionFrost": "da Geada",
"hatchingPotionIcySnow": "de Gelo de Nevasca",
"hatchingPotionNotes": "Use-a em um ovo e ele chocará como um mascote <%= potText(locale) %>.",
"premiumPotionAddlNotes": "Não utilizável em ovos de mascote de missões. Disponível para compra até <%= date(locale) %>.",
@@ -367,9 +367,10 @@
"hatchingPotionStainedGlass": "de Vitral Colorido",
"hatchingPotionPolkaDot": "com Bolinhas",
"hatchingPotionMossyStone": "de Pedra com Musgo",
- "hatchingPotionMoonglow": "de Brilho da Lua",
+ "hatchingPotionMoonglow": "do Brilho da Lua",
"hatchingPotionSunset": "do Pôr do Sol",
"hatchingPotionSolarSystem": "do Sistema Solar",
"hatchingPotionOnyx": "Ônix",
- "hatchingPotionVirtualPet": "Mascote Virtual"
+ "hatchingPotionVirtualPet": "Mascote Virtual",
+ "hatchingPotionPorcelain": "de Porcelana"
}
diff --git a/website/common/locales/pt_BR/faq.json b/website/common/locales/pt_BR/faq.json
index c3d3081bd5..6653f85bc1 100644
--- a/website/common/locales/pt_BR/faq.json
+++ b/website/common/locales/pt_BR/faq.json
@@ -28,7 +28,7 @@
"iosFaqAnswer6": "Toda vez que você completar uma tarefa, você terá uma chance aleatória de receber um Ovo, uma Poção de eclosão ou uma Comida para mascote. Eles serão guardados em Menu > Itens.\n\nPara chocar um Mascote, você precisará de um Ovo e uma Poção de eclosão. Toque no Ovo para determinar que espécie você quer chocar e selecione \"Chocar Ovo.\" Depois escolha uma Poção de eclosão para determinar sua cor! Vá para Menu > Mascotes e clique em seu novo Mascote para equipá-lo ao seu seu Avatar.\n\nVocê também pode transformar seus Mascotes em Montarias ao alimentá-los em Menu > Mascotes. Selecione um Mascote e depois escolha \"Alimentar Mascote\"! Você terá que alimentar um Mascote várias vezes antes dele se tornar uma Montaria, mas se você conseguir descobrir qual é sua comida favorita, ele crescerá mais rápido. Use tentativa e erro, ou [veja os spoilers aqui](https://habitica.fandom.com/pt-br/wiki/Comida#Prefer.C3.AAncias_de_Comida). Logo que conseguir uma Montaria, vá para Menu > Montarias e clique nela para equipá-la ao seu Avatar.\n\nVocê também pode conseguir Ovos em Missões de Mascotes ao completar certas Missões. (para aprender mais sobre Missões, veja [Como eu batalho contra monstros e participo de Missões](https://habitica.com/static/faq/#monsters-quests)).",
"androidFaqAnswer6": "Toda vez que você completar uma tarefa, você terá uma chance aleatória de receber um Ovo, uma Poção de eclosão ou uma Comida para mascote. Eles serão guardados em Menu > Itens.\n\nPara chocar um Mascote, você precisará de um Ovo e uma Poção de eclosão. Toque no Ovo para determinar que espécie você quer chocar e selecione \"Chocar com poção.\" Depois escolha uma Poção de eclosão para determinar sua cor! Para equipar o novo Mascote vá para Menu > Estábulo > Mascotes , escolha a espécie, clique no Mascote desejado e selecione \"Usar\" (Seu Avatar não atualiza para refletir a mudança).\n\nVocê também pode transformar seus Mascotes em Montarias ao alimentá-los em Menu > Estábulo [ > Mascotes]. Selecione um Mascote e depois escolha \"Alimentar Mascote\"! Você terá que alimentar um Mascote várias vezes antes dele se tornar uma Montaria, mas se você conseguir descobrir qual é sua comida favorita, ele crescerá mais rápido. Use tentativa e erro, ou [veja os spoilers aqui](https://habitica.fandom.com/pt-br/wiki/Comida#Prefer.C3.AAncias_de_Comida). Para equipar sua Montaria vá para Menu > Estábulo > Montarias, escolha uma espécie e clique em \"Usar\" (Seu Avatar não atualiza para refletir a mudança).\n\nVocê também pode conseguir Ovos em Missões de Mascotes ao completar certas Missões. (Veja abaixo para aprender mais sobre Missões.)",
"webFaqAnswer6": "Cada vez que você completar uma tarefa, terá uma chance aleatória de receber um Ovo, uma Poção de Eclosão ou uma Comida para Mascote. Eles ficarão guardados em Inventário > Itens. Para chocar um Mascote, você precisará tanto de um Ovo quanto uma Poção de Eclosão. Uma vez que tiver ambos, o Ovo e a Poção, vá até Inventário > Estábulo e clique na imagem de seu Mascote para chocá-lo. Quando tiver chocado o Mascote, você poderá equipá-lo simplesmente clicando nele. Você também pode evoluir seus Mascotes em Montarias alimentando-os em Inventário > Estábulo. Arraste uma comida da barra de ação na parte inferior da tela e solte-a em um mascote para alimentá-lo! Você terá de alimentar o Mascote diversas vezes antes dele se tornar uma Montaria, mas se você descobrir a comida favorita dele, ele crescerá mais rápido. Use tentativa e erro ou [veja spoilers aqui](https://habitica.fandom.com/pt-br/wiki/Food_Preferences). Uma vez que você tiver uma Montaria, clique nela para equipá-la junto do seu Avatar. Você também pode conseguir Ovos de Missões de Mascotes ao completar certas Missões. (Veja abaixo para aprender mais sobre Missões.)",
- "faqQuestion7": "Como me tornar Guerreiro(a), Mago(a), Gatuno(a) ou Curandeiro(a)?",
+ "faqQuestion7": "Como me tornar Guerreiro, Mago, Gatuno ou Curandeiro?",
"iosFaqAnswer7": "No nível 10, você poderá escolher entre se tornar um(a) Guerreiro, Mago, Gatuno ou Curandeiro. (Todo jogador começa como Guerreiro por padrão). Cada Classe tem diferentes opções de equipamento, diferentes Habilidades que podem ser usadas após o nível 11 e diferentes vantagens. Guerreiros podem causar dano a Chefões com facilidade, aguentar mais dano pelas suas tarefas e ajudar seu Grupo a ficar mais forte. Magos também podem facilmente causar dano a Chefões, além de ganhar níveis rapidamente e restaurar a Mana de seu Grupo. Gatunos ganham mais ouro e encontram mais itens, além de poder ajudar seu Grupo a fazer o mesmo. Finalmente, Curandeiros podem curar a si mesmos e seus companheiros de Grupo.\n\nSe você não quer escolher uma Classe imediatamente -- por exemplo, se você ainda está se esforçando para comprar todo o equipamento de sua classe atual -- você pode clicar em \"Cancelar\" e escolher mais tarde ao abrir o Menu, clicando no ícone de Configurações, e então clicando em \"Habilitar Sistema de Classes\".",
"androidFaqAnswer7": "No nível 10, você poderá escolher entre se tornar um Guerreiro, Mago, Gatuno ou Curandeiro. (Todo jogador começa como Guerreiro por padrão). Cada Classe tem diferentes opções de equipamento, diferentes Habilidades que podem ser usadas após o nível 11, e diferentes vantagens. Guerreiros podem causar dano a Chefões com facilidade, aguentar mais dano pelas suas tarefas e ajudar seu Grupo a ficar mais forte. Magos também podem facilmente causar dano a Chefões, além de ganhar níveis rapidamente e restaurar a Mana de seu Grupo. Gatunos ganham mais ouro e encontram mais itens, além de poder ajudar seu Grupo a fazer o mesmo. Finalmente, Curandeiros podem curar a si mesmos e seus companheiros de Grupo. \n\nSe você não quer escolher uma Classe imediatamente -- por exemplo, se você ainda está se esforçando para comprar todo o equipamento de sua classe atual -- você pode clicar em \"Decidir Depois\" e escolher mais tarde ao abrir o Menu, clicando no ícone de Configurações, então clicando em \"Habilitar Sistema de Classes\".",
"webFaqAnswer7": "No nível 10, você poderá escolher se juntar aos Guerreiros, Magos, Gatunos ou Curandeiros. (Todo jogador começa como Guerreiro por padrão). Cada Classe tem diferentes opções de equipamento, diferentes Habilidades que podem ser usadas após o nível 11 e diferentes vantagens. Guerreiros podem causar dano a Chefões com facilidade, aguentar mais dano pelas suas tarefas e ajudar seu Grupo a ficar mais forte. Magos também podem facilmente causar dano a Chefões, além de ganhar níveis rapidamente e restaurar a Mana de seu Grupo. Gatunos ganham mais ouro e encontram mais itens, além de poder ajudar seu Grupo a fazer o mesmo. Por último, Curandeiros podem curar a si mesmos e seus companheiros de Grupo. Se você não quer escolher uma Classe imediatamente -- por exemplo, se você ainda está se esforçando para comprar todo o equipamento de sua classe atual -- você pode clicar em \"Recusar\" e depois reabilitar em nas Configurações.",
@@ -54,5 +54,7 @@
"webFaqAnswer12": "Chefões Globais são monstros especiais que aparecem na Taverna. Todos os usuários ativos o enfrentam automaticamente e suas tarefas e habilidades causarão dano no Chefão como de costume. Você pode estar em uma Missão normal ao mesmo tempo. Suas tarefas e Habilidades contarão para ambos Chefão Global e missões de Chefão/Coleta do seu grupo. Um Chefão Global nunca irá machucar você ou sua conta de qualquer maneira. Ao invés disso, ele tem uma Barra de Fúria que encherá quando usuários não fizerem as Diárias. Se a Barra de Fúria encher, ele atacará um dos NPC do site e a imagem dele mudará. Você pode ler mais sobre [Chefões Globais anteriores](https://habitica.fandom.com/pt-br/wiki/World_Bosses) na wiki.",
"iosFaqStillNeedHelp": "Se você tem uma pergunta que não está no [FAQ da Wiki](https://habitica.fandom.com/pt-br/wiki/FAQ), venha perguntar no bate-papo da Taverna em Menu > Taverna! Ficamos felizes em ajudar.",
"androidFaqStillNeedHelp": "Se você tem uma pergunta que não está nessa lista ou no [FAQ da Wiki](https://habitica.fandom.com/pt-br/wiki/FAQ), venha perguntar no bate-papo da Taverna em Menu > Taverna! Ficamos felizes em ajudar.",
- "webFaqStillNeedHelp": "Se você tiver uma dúvida que não estiver nesta lista ou no [FAQ da Wiki](https://habitica.fandom.com/pt-br/wiki/FAQ), pergunte na [Guilda Brasil](https://habitica.com/groups/guild/ac9ff1fd-50fc-46a6-9791-e1833173dab3)! Ficaremos felizes em ajudar."
+ "webFaqStillNeedHelp": "Se você tiver uma dúvida que não estiver nesta lista ou no [FAQ da Wiki](https://habitica.fandom.com/pt-br/wiki/FAQ), pergunte na [Guilda Brasil](https://habitica.com/groups/guild/ac9ff1fd-50fc-46a6-9791-e1833173dab3)! Ficaremos felizes em ajudar.",
+ "faqQuestion13": "O que é Plano de Time?",
+ "webFaqAnswer13": "## Como Planos de Time funcionam?\n\nUm [Plano de Time](/group-plans) dá acesso a um quadro compartilhado de tarefas para seu Grupo ou Guilda, similar ao seu quadro de tarefas pessoal! É experienciar o Habitica compartilhado, onde tarefas podem ser criadas e feitas por qualquer um do time.\n\nHá também funcionalidades disponíveis, como cargos para membros, visualizar estado e atribuição de tarefas, proporcionando uma experiência mais controlada. [Visite nossa wiki](https://habitica.fandom.com/wiki/Group_Plans) para saber mais sobre as funcionalidades dos Planos de Time!\n\n## Para quem se destina um Plano de Time?\n\nPlanos de Time funcionam melhor em times pequenos, com poucas pessoas que desejam colaborar juntos. Recomendamos de 2 até 5 membros.\n\nPlanos de Time são ótimos para famílias, seja pais e filhos ou cônjuges. Objetivos compartilhados, tarefas ou responsabilidades são fáceis de monitorar no quadro.\n\nPlanos de Time também podem ser úteis para equipes de colegas que possuem objetivos compartilhados ou empresários que desejam apresentar a gamificação aos seus funcionários.\n\n## Dicas rápidas ao usar Planos\n\nAqui estão algumas dicas para começar em seu novo Time. Vamos providenciar mais detalhes nas seguintes seções:\n\n* Torne alguém administrador para que possa criar e editar tarefas\n* Deixe tarefas sem atribuição se qualquer um pode completá-la e apenas precisa ser feita uma vez\n* Atribua uma tarefa para alguém para que ninguém mais possa fazê-la\n* Atribua uma tarefa para várias pessoas se todas elas precisam fazê-la\n* Alterne entre a possibilidade de mostrar e ocultar tarefas compartilhadas em seu quadro pessoal para não perder nada\n* Você recebe recompensas por tarefas feitas, mesmo se houver múltiplas atribuições\n* Recompensas por completar tarefas não são compartilhadas ou divididas entre membros do Time\n* Use a cor da tarefa no quadro do time para avaliar a taxa média de conclusão das tarefas\n* Revise regularmente as tarefas no seu Quadro de Time para garantir que ainda são relevantes\n* Não fazer uma Tarefa não irá causar dano em ninguém, porém a tarefa ficará com cor mais clara\n\n## Como os outros do time podem criar tarefas?\n\nApenas o líder do grupo e administradores podem criar tarefas. Se você quiser que um membro do grupo crie tarefas, então deve torná-lo administrador indo na aba de Informações do Time, na lista de membros e clicando no ícone perto dos nomes.\n\n## Como funciona a atribuição de tarefas?\n\nPlanos de Time possibilitam atribuir tarefas a outros membros do time. Atribuir uma tarefa é ótimo para delegar. Se você atribuir uma tarefa a alguém, então outros membros não poderão completá-la.\n\nVocê também pode atribuir uma tarefa para várias pessoas se ela precisar ser feita por mais do que um membro. Por exemplo, se todos devem escovar os dentes, crie uma tarefa e atribua para cada membro do time. Todos irão poder completar e receber suas recompensas individuais. A tarefa principal irá aparecer como feita uma vez que todos concluírem.\n\n## Como tarefas não atribuídas funcionam?\n\nTarefas não atribuídas podem ser feitas por qualquer um do time, então não coloque atribuição em uma tarefa para que qualquer membro possa fazê-la. Por exemplo, retirar o lixo. Qualquer pessoa que retirar o lixo poderá marcá-la e a tarefa aparecerá como feita para todos.\n\n## Como a reinicialização compartilhada do dia funciona?\n\nTarefas compartilhadas irão reiniciar ao mesmo tempo para todos, mantendo o quadro sincronizado. O tempo fica visível no quadro compartilhado de tarefas e é determinado pelo horário de início de um novo dia do líder. Por causa que as tarefas compartilhadas reiniciam automaticamente, você não terá chance de completar Diárias compartilhadas do dia anterior, quando você entrar na manhã seguinte.\n\nDiárias compartilhadas não causarão dano se não forem feitas, porém sua cor irá clarear, para visualização de progresso. Não queremos que a experiência compartilhada seja negativa!\n\n##:Como uso meu Time no aplicativo?\n\nNão há suporte para todas as funcionalidades do Plano de Time no aplicativo, mas você ainda pode completar tarefas compartilhadas a partir do aplicativo para iOS e Android. No site do Habitica, vá até o quadro compartilhado de tarefas do seu time e habilite a possibilidade de copiar tarefas. Agora todas as tarefas compartilhadas abertas e atribuídas irão aparecer em seu quadro pessoal de tarefas em todas as plataformas.\n\n## Qual a diferença entre tarefas compartilhadas de Time e Desafios?\n\nQuadros compartilhados de tarefas são mais dinâmicos que Desafios, podem ser interagidos e atualizados constantemente. Desafios são ótimos quando você possui um conjunto de tarefas que deseja enviar para várias pessoas.\n\nPlanos de Time também são uma funcionalidade paga, enquanto que Desafios estão disponíveis gratuitamente para todos.\n\nVocê não pode atribuir tarefas específicas em Desafios e Desafios não possuem reinicio compartilhado. Em geral, Desafios oferecem menos controle direto e interação."
}
diff --git a/website/common/locales/pt_BR/gear.json b/website/common/locales/pt_BR/gear.json
index 13177b0ef2..484b60a3e5 100644
--- a/website/common/locales/pt_BR/gear.json
+++ b/website/common/locales/pt_BR/gear.json
@@ -253,11 +253,11 @@
"weaponSpecialSpring2018RogueText": "Junco Vigoroso",
"weaponSpecialSpring2018RogueNotes": "Talvez pareçam ser fofos rabos de gato, mas são armas muito efetivas nas asas certas. Aumenta Força em <%= str %>. Equipamento de Edição Limitada. Primavera de 2018.",
"weaponSpecialSpring2018WarriorText": "Machado da Alvorada",
- "weaponSpecialSpring2018WarriorNotes": "Feito de ouro brilhante, esse machado é poderoso o suficiente para atacar a tarefa mais vermelha! Aumenta Força em <%= str %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "weaponSpecialSpring2018WarriorNotes": "Feito de ouro brilhante, esse machado é poderoso o suficiente para atacar a tarefa mais vermelha! Aumenta Força em <%= str %>. Equipamento de Edição Limitada da Primavera de 2018.",
"weaponSpecialSpring2018MageText": "Bastão de Tulipa",
- "weaponSpecialSpring2018MageNotes": "Essa flor mágica nunca murcha! Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "weaponSpecialSpring2018MageNotes": "Essa flor mágica nunca murcha! Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Edição Limitada da Primavera de 2018.",
"weaponSpecialSpring2018HealerText": "Bastão de Granada",
- "weaponSpecialSpring2018HealerNotes": "As pedras deste cajado irão focar seu poder quando você lançar feitiços de cura! Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "weaponSpecialSpring2018HealerNotes": "As pedras deste cajado irão focar seu poder quando você lançar feitiços de cura! Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada da Primavera de 2018.",
"weaponSpecialSummer2018RogueText": "Vara de Pescar",
"weaponSpecialSummer2018RogueNotes": "Esta leve, e praticamente inquebrável, vara com carretel pode ser usada com ambas as mãos para maximizar seu DPS (Douradas Por Segundo). Aumenta Força em <%= str %>. Equipamento de Edição Limitada. Verão de 2018.",
"weaponSpecialSummer2018WarriorText": "Lança Peixe Betta",
@@ -283,7 +283,7 @@
"weaponSpecialWinter2019HealerText": "Varinha Invernal",
"weaponSpecialWinter2019HealerNotes": "O inverno pode ser uma época de descanso e cura, e assim essa varinha invernal mágica pode ajudar a aliviar as mágoas mais graves. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada Inverno de 2018-2019.",
"weaponMystery201411Text": "Garfo de Banquete",
- "weaponMystery201411Notes": "Apunhale seus inimigos ou empilhe suas comidas favoritas - esse versátil garfão faz de tudo! Não concede benefícios. Item de Assinante, Novembro de 2014.",
+ "weaponMystery201411Notes": "Apunhale seus inimigos ou empilhe suas comidas favoritas - esse versátil garfão faz de tudo! Não confere benefícios. Item de Assinante, Novembro de 2014.",
"weaponMystery201502Text": "Cajado Brilhante Alado do Amor e Também da Verdade",
"weaponMystery201502Notes": "Por ASAS! Por AMOR! Por VERDADE TAMBÉM! Não concede benefícios. Item de Assinante, Fevereiro de 2015.",
"weaponMystery201505Text": "Lança do Cavaleiro Verde",
@@ -607,11 +607,11 @@
"armorSpecialSpring2018RogueText": "Traje de Penas",
"armorSpecialSpring2018RogueNotes": "Com este fofo traje amarelo seus inimigos pensarão que é apenas um patinho inofensivo. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada. Primavera de 2018.",
"armorSpecialSpring2018WarriorText": "Armadura da Alvorada",
- "armorSpecialSpring2018WarriorNotes": "Esta colorida armadura foi forjada com o fogo do nascer do sol. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "armorSpecialSpring2018WarriorNotes": "Esta colorida armadura foi forjada com o fogo do nascer do sol. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada da Primavera de 2018.",
"armorSpecialSpring2018MageText": "Túnica de Tulipa",
- "armorSpecialSpring2018MageNotes": "Suas habilidades mágicas serão ampliadas enquanto envolto nestas macias e sedosas pétalas. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "armorSpecialSpring2018MageNotes": "Suas habilidades mágicas serão ampliadas enquanto envolto nestas macias e sedosas pétalas. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada da Primavera de 2018.",
"armorSpecialSpring2018HealerText": "Armadura Escarlate",
- "armorSpecialSpring2018HealerNotes": "Deixe esta reluzente armadura aquecer seu coração com poder de cura. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "armorSpecialSpring2018HealerNotes": "Deixe esta reluzente armadura aquecer seu coração com poder de cura. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada da Primavera de 2018.",
"armorSpecialSummer2018RogueText": "Colete de Pesca (com bolsos!)",
"armorSpecialSummer2018RogueNotes": "Boias guias? Caixas de anzóis? Linha de reposição? Gazuas? Bombas de fumaça? Tudo o que você precisar para a sua fuga de verão, esse colete tem um bolso para isso! Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada.Verão de 2018.",
"armorSpecialSummer2018WarriorText": "Armadura Cauda Betta",
@@ -1047,11 +1047,11 @@
"headSpecialSpring2018RogueText": "Elmo Bico de Pato",
"headSpecialSpring2018RogueNotes": "Quack quack! Sua fofura esconde sua natureza esperta e sorrateira. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada. Primavera de 2018.",
"headSpecialSpring2018WarriorText": "Elmo de Raios",
- "headSpecialSpring2018WarriorNotes": "O brilho desse elmo irá atordoar qualquer inimigo próximo! Aumenta Força em <%= str %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "headSpecialSpring2018WarriorNotes": "O brilho desse elmo irá atordoar qualquer inimigo próximo! Aumenta Força em <%= str %>. Equipamento de Edição Limitada da Primavera de 2018.",
"headSpecialSpring2018MageText": "Elmo Tulipa",
- "headSpecialSpring2018MageNotes": "As pétalas elegantes desse elmo te abençoarão com a magia da primavera. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "headSpecialSpring2018MageNotes": "As pétalas elegantes desse elmo te abençoarão com a magia da primavera. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada da Primavera de 2018.",
"headSpecialSpring2018HealerText": "Tiara Escarlate",
- "headSpecialSpring2018HealerNotes": "As gemas polidas dessa tiara potencializarão sua energia mental. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "headSpecialSpring2018HealerNotes": "As gemas polidas dessa tiara potencializarão sua energia mental. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada da Primavera de 2018.",
"headSpecialSummer2018RogueText": "Chapéu de Pesca",
"headSpecialSummer2018RogueNotes": "Proporciona conforto e proteção contra o brilho intenso do sol sobre a água. Especialmente importante para quem só fica nas sombras de modo furtivo. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada. Verão de 2018.",
"headSpecialSummer2018WarriorText": "Barbatana Betta",
@@ -1415,9 +1415,9 @@
"shieldSpecialWinter2018HealerText": "Sino de Visco",
"shieldSpecialWinter2018HealerNotes": "Que som é esse? Som de aconchego e esplendor para todos ouvirem! Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Inverno de 2017 e 2018.",
"shieldSpecialSpring2018WarriorText": "Escudo da Manhã",
- "shieldSpecialSpring2018WarriorNotes": "Esse escudo resistente brilha com a glória do amanhecer. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "shieldSpecialSpring2018WarriorNotes": "Esse escudo resistente brilha com a glória do amanhecer. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada da Primavera de 2018.",
"shieldSpecialSpring2018HealerText": "Escudo Escarlate",
- "shieldSpecialSpring2018HealerNotes": "Apesar de sua aparência elegante, este escudo escarlate é bem resistente. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Primavera de 2018.",
+ "shieldSpecialSpring2018HealerNotes": "Apesar de sua aparência elegante, este escudo escarlate é bem resistente. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada da Primavera de 2018.",
"shieldSpecialSummer2018WarriorText": "Escudo Carcaça Betta",
"shieldSpecialSummer2018WarriorNotes": "Talhado em pedra, este temível escudo em forma de crânio enche os peixefóbicos de medo ao lhe ver trotando com sua montaria e mascote de ossos. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Verão de 2018.",
"shieldSpecialSummer2018HealerText": "Brasão do Monarca Atlântico",
@@ -1611,7 +1611,7 @@
"bodyMystery201901Notes": "Estas pauldrons cintilantes são fortes, mas repousam sobre seus ombros tão leves quanto um raio de luz dançante. Não confere nenhum benefício. Janeiro de 2019 Item de Assinante.",
"bodyArmoireCozyScarfText": "Cachecol Aconchegante",
"bodyArmoireCozyScarfNotes": "Este agradável cachecol te manterá aquecido enquanto fizer suas tarefas de invernais. Aumenta Constituição e Percepção em <%= attrs %> cada. Armário Encantado: Conjunto do Acendedor de Lampiões (Item 4 de 4).",
- "headAccessory": "acessório de cabeça",
+ "headAccessory": "Acessório de Cabeça",
"headAccessoryCapitalized": "Acessório de Cabeça",
"accessories": "Acessórios",
"animalEars": "Orelhas de Animais",
@@ -1738,7 +1738,7 @@
"eyewearMystery201701Text": "Óculos Atemporal",
"eyewearMystery201701Notes": "Esses óculos escuros protegerão seus olhos e te farão parecer estiloso não importa em que tempo você esteja! Não concede benefícios. Item de Assinante, Janeiro de 2017.",
"eyewearMystery301404Text": "Óculos de Proteção",
- "eyewearMystery301404Notes": "Nenhum acessório é tão chique quanto óculos de proteção - exceto, talvez, um monóculo. Não concede benefícios. Item de Assinante, Abril de 3015.",
+ "eyewearMystery301404Notes": "Nenhum acessório de olhos é tão chique quanto um par de óculos de proteção - exceto, talvez, por um monóculo. Não concede benefícios. Item de Assinante de Abril de 3015.",
"eyewearMystery301405Text": "Monóculo",
"eyewearMystery301405Notes": "Nenhum acessório é tão chique quanto um monóculo - exceto, talvez, um óculos de proteção. Não concede benefícios. Item de Assinante, Julho de 3015.",
"eyewearMystery301703Text": "Máscara do Pavão Mascarado",
@@ -1904,7 +1904,7 @@
"headArmoireDeerstalkerCapNotes": "Este chapéu é perfeito para excursões rurais, mas também é um equipamento aceitável para a solução de mistérios! Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto do Detetive (Item 1 de 4).",
"headArmoireDeerstalkerCapText": "Chapéu de Detetive",
"headArmoireBoaterHatNotes": "Este chapéu de palha é realmente incrível! Aumenta a Força, Constituição e Percepção em <%= attrs %>, cada. Armário Encantado: Conjunto do Barqueiro (Item 2 de 3).",
- "headArmoireAstronomersHatNotes": "Um chapéu perfeito para observação celestial ou um _brunch_ chique de um mago. Armário Encantado: Conjunto do(a) Mago(a) Astrônomo(a) (Item 2 de 3).",
+ "headArmoireAstronomersHatNotes": "Um chapéu perfeito para observação celestial ou ir a um almoço chique de mago. Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto Mago Astrônomo (Item 2 de 3).",
"headArmoireAstronomersHatText": "Chapéu do Astrônomo",
"headArmoireBoaterHatText": "Chapéu do Barqueiro",
"headArmoireNephriteHelmNotes": "A pluma de jade esculpida no topo deste elmo é encantada para aprimorar seu objetivo. Aumenta a Percepção em <%= per %> e a Inteligência em <%= int %>. Armário Encantado: Conjunto do Arqueiro de Nefrita (Item 2 de 3).",
@@ -2054,7 +2054,7 @@
"weaponArmoireBaseballBatNotes": "Faça um bom negócio com esses bons hábitos! Aumenta a Constituição em <%= con %>. Armário encantado: Conjunto Beisebol (Item 3 de 4).",
"headSpecialSpring2020RogueText": "Kabuto Lazulita",
"shieldSpecialSpring2020HealerNotes": "Afaste as tarefas velhas e mofadas com este escudo de cheiro doce. Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada da Primavera de 2020.",
- "shieldSpecialSpring2020HealerText": "Escudo perfumado",
+ "shieldSpecialSpring2020HealerText": "Escudo Perfumado",
"shieldSpecialSpring2020WarriorNotes": "Não deixe que as cores delicadas te enganem. Este escudo te mantém protegido(a)! Aumenta a Constituição em <%= con %>. Equipamento de edição limitada da primavera de 2020.",
"shieldSpecialSpring2020WarriorText": "Escudo iridescente",
"headSpecialSpring2020HealerNotes": "Engane seus inimigos com este capacete feito de flores! Aumenta a Inteligência em <%= int %>. Equipamento de edição limitada da primavera de 2020.",
@@ -2065,7 +2065,7 @@
"headSpecialSpring2020WarriorText": "Elmo de besouro",
"headSpecialSpring2020RogueNotes": "Tão vibrante e valioso que você será tentado a roubá-lo de sua própria cabeça. Aumenta a percepção em <%= per %>. Equipamento de edição limitada da primavera de 2020.",
"armorSpecialSpring2020HealerNotes": "Envolva-se em folhas e pétalas de íris macias para enganar os inimigos e subestimar o seu poder de cura. Aumenta a Constituição em <%= con %>. Equipamento de edição limitada da primavera de 2020.",
- "armorSpecialSpring2020HealerText": "Pétalas de proteção",
+ "armorSpecialSpring2020HealerText": "Pétalas de Proteção",
"armorSpecialSpring2020MageNotes": "Se você não consegue resistir a pisar nos restos das tempestades, esta armadura é para você! Transforme um impulso infantil em uma exibição de arte mística. Aumenta a Inteligência em <%= int %>. Equipamento de edição limitada da primavera de 2020.",
"armorSpecialSpring2020MageText": "Vestido de Redemoinho",
"armorSpecialSpring2020WarriorNotes": "Essa carapaça rígida pode mantê-lo seguro até dos ataques mais esmagadores. Aumenta a Constituição em <%= con %>. Equipamento de edição limitada da primavera de 2020.",
@@ -2320,13 +2320,13 @@
"shieldSpecialSpring2021HealerText": "Escudo Salicílico",
"shieldSpecialSpring2021WarriorNotes": "A beleza desse esboço de pedra do sol vai iluminar até as cavernas mais profundas e as masmorras mais escuras. Mantenha-a no alto! Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada da Primavera de 2021.",
"headSpecialSpring2021RogueNotes": "Vamos deixar a linguagem das flores no mínimo: esse chapéu vai te ajudar a se misturar com as flores da primavera! Aumenta a Percepção em <%= per %>. Equipamento de Edição Limitada da Primavera de 2021.",
- "headSpecialSpring2021MageText": "Diadema do Filhote de Cisne",
+ "headSpecialSpring2021MageText": "Coroa do Filhote de Cisne",
"headSpecialSpring2021HealerText": "Guirlanda de Salgueiro",
"headSpecialSpring2021MageNotes": "Coloque essa coroa de penas em sua testa e os pássaros da água virão até você. Para qual missão você vai chamá-los? Aumenta a Percepção em <%= per %>. Equipamento de Edição Limitada da Primavera de 2021.",
- "headSpecialSpring2021RogueText": "Chapéu de Duas Flores",
- "armorSpecialSpring2021RogueText": "Caule com Duas Flores",
+ "headSpecialSpring2021RogueText": "Chapéu Flores Gêmeas",
+ "armorSpecialSpring2021RogueText": "Caule Flores Gêmeas",
"weaponSpecialSpring2021RogueNotes": "Sabe o que é melhor que empunhar duas flores? Empunhar QUATRO flores! Aumenta a Força em <%= str %>. Equipamento de Edição Limitada da Primavera de 2021.",
- "weaponSpecialSpring2021RogueText": "Desabrochar de Duas Flores",
+ "weaponSpecialSpring2021RogueText": "Desabrochar das Flores Gêmeas",
"armorSpecialSpring2021HealerNotes": "Esta armadura ajuda você a se curvar ao invés de se quebrar ao ser atingido pelo vento ou por uma arma. Aumenta a Constituição em <%= con %>. Equipamento de Edição Limitada da Primavera de 2021.",
"shieldArmoireClownsBalloonsText": "Balões de Palhaço",
"eyewearArmoireClownsNoseText": "Nariz de Palhaço",
@@ -2475,7 +2475,7 @@
"weaponSpecialSpring2022HealerText": "Varinha de Peridoto",
"weaponSpecialSpring2022HealerNotes": "Use esta varinha para acessar as propriedades curativas do peridoto, seja para trazer calma, positividade ou generosidade. Aumenta Inteligência em <%= int %>. Edição Limitada de Equipamento de Primavera 2022.",
"weaponSpecialSpring2022WarriorNotes": "Eita! Aquele vento foi um pouco mais forte do que você esperava, hein? Aumenta Força em <%= str %>. Edição Limitada do Equipamento de Primavera 2022.",
- "weaponSpecialSpring2022RogueNotes": "Um brilhante! É tão brilhante e reluzente e bonito e legal e todo seu! Aumenta Força em <%= str %>. Edição Limitada do Equipamento de Primavera 2022.",
+ "weaponSpecialSpring2022RogueNotes": "Brilhante! É tão brilhante e reluzente e bonito e legal e é todo seu! Aumenta a Força em <%= str %>. Edição Limitada do Equipamento de Primavera 2022.",
"weaponMystery202201Notes": "Libere uma nuvem de brilho dourado e prateado quando o relógio bater meia-noite. Feliz Ano Novo! Agora quem vai limpar isso? Não confere benefícios. Item de Assinante de Janeiro 2022.",
"weaponArmoirePotionRedNotes": "É um dia de festa pois esta poção de eclosão não é um sinal vermelho! Aumenta Força e Constituição em <%= attrs %> cada. Armário Encantado: Conjunto de Poção (Item 4 de 10)",
"weaponSpecialSpring2022RogueText": "Tacha de Brinco Gigante",
@@ -2510,7 +2510,7 @@
"armorSpecialFall2021RogueText": "Armadura Infelizmente Não à Prova de Lodo",
"armorSpecialFall2021MageText": "Túnica da Escuridão Profunda",
"weaponArmoireShootingStarSpellText": "Centelhas de Pó Estelar",
- "armorSpecialSpring2022RogueText": "Fantasia de Pega-Rabuda",
+ "armorSpecialSpring2022RogueText": "Fantasia de Gralha",
"armorSpecialSpring2022MageText": "Túnica de Forsítia",
"armorSpecialSpring2022HealerText": "Armadura de Peridoto",
"weaponArmoirePotionPinkNotes": "A vida é um pouco mais doce e um bocado mais rosa com esta poção rosa algodão-doce! Aumenta Inteligência em <%= int %> e Constituição em <%= con %>. Armário Encantado: Conjunto de Poção (Item 8 de 10)",
@@ -2545,5 +2545,158 @@
"armorArmoireGardenersOverallsText": "Macacão de Jardineiro",
"armorArmoireShootingStarCostumeNotes": "Ditas caídas do céu, estas vestes o elevam acima de quaisquer obstáculos em seu caminho. Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto de Pó Estelar (Item 2 de 3).",
"headMystery202206Text": "Coroa da Sílfide do Mar",
- "backMystery202206Text": "Asas da Sílfide do Mar"
+ "backMystery202206Text": "Asas da Sílfide do Mar",
+ "weaponArmoireHuntingHornText": "Trompa de Caçada",
+ "weaponArmoireHuntingHornNotes": "Tuouuuuuu! Tuouu! Tuouu! Junte o seu grupo para uma aventura ou missão ao tocar essa trompa. Aumenta a Força em <%=str%> e a Inteligência em <%=int%>. Armário Encantado: Conjunto de Instrumentos Musicais 1 (Item 1 de 3)",
+ "eyewearMystery202202Text": "Olhos Turquesa com Bochechas Coradas",
+ "weaponSpecialSummer2022RogueText": "Garra de Caranguejo",
+ "weaponSpecialSummer2022WarriorText": "Ciclone Rodopiante",
+ "weaponSpecialSummer2022HealerText": "Bolhas Benéficas",
+ "weaponSpecialSummer2022RogueNotes": "Se você estiver em um aperto, não hesite em mostrar essas garras assustadoras! Aumenta a Força em <%=str%>. Edição Limitada do Equipamento de Inverno de 2022.",
+ "weaponSpecialSummer2022MageText": "Bastão de Arraia",
+ "weaponArmoireBlueKiteText": "Pipa Azul",
+ "weaponArmoirePinkKiteText": "Pipa Rosa",
+ "weaponArmoireYellowKiteText": "Pipa Amarela",
+ "eyewearMystery202201Notes": "Avise que chegou o ano novo com um ar de mistério usando essa máscara emplumada estilosa. Não confere benefícios. Item de Assinante de janeiro de 2022.",
+ "weaponArmoireGreenKiteText": "Pipa Verde",
+ "weaponArmoireOrangeKiteText": "Pipa Laranja",
+ "eyewearMystery202204AText": "Rosto Virtual",
+ "eyewearMystery202204BText": "Rosto Virtual",
+ "eyewearMystery202204BNotes": "Qual o seu humor hoje? Se expresse com essas telas divertidas. Não confere benefícios. Item de Assinante de abril de 2022.",
+ "eyewearMystery202204ANotes": "Qual o seu humor hoje? Se expresse com essas telas divertidas. Não confere benefícios. Item de Assinante de abril de 2022.",
+ "eyewearMystery202201Text": "Máscara do Folião da Meia-Noite",
+ "eyewearMystery202202Notes": "Cantar alegremente faz corar as suas bochechas. Não confere benefícios. Item de Assinante de fevereiro de 2022",
+ "weaponSpecialSummer2022HealerNotes": "Essas bolhas liberam magia curativa na água e fazem \"pop\"! Aumenta a Inteligência em <%=int%>. Edição Limitada do Equipamento de Verão de 2022.",
+ "armorSpecialSummer2022WarriorNotes": "Prepare-se para uma batalha aquática ao cercar-se por esta coluna de ar e névoa girando e rodopiando. Aumenta Constituição em <%= con %>. Edição limitada Equipamento de Verão 2022.",
+ "weaponSpecialSummer2022WarriorNotes": "Gire! Redirecione! E traga a tempestade! Aumenta Força em <%= str %>. Edição limitada Equipamento de Verão 2022.",
+ "weaponSpecialSummer2022MageNotes": "Magicamente limpe as águas à frente com um redemoinho deste cajado. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Edição limitada Equipamento de Verão 2022.",
+ "armorSpecialSummer2022RogueText": "Armadura de Caranguejo",
+ "armorSpecialSummer2022RogueNotes": "Perfeito para uma corrida na praia. Aumenta Percepção em <%= per %>. Edição limitada Equipamento de Verão 2022.",
+ "armorSpecialSummer2022WarriorText": "Armadura Tromba D'água",
+ "armorSpecialSummer2022MageText": "Armadura de Arraia",
+ "armorSpecialSummer2022MageNotes": "Quando usar esta armadura, você irá deslizar facilmente pelos seus afazares como uma arraia desliza dentro d'água. Aumenta Inteligência em <%= int %>. Edição limitada Equipamento de Verão 2022.",
+ "armorSpecialSummer2022HealerText": "Cauda de Peixe-Anjo",
+ "armorArmoireGardenersOverallsNotes": "Não tenha medo de trabalhar na sujeira quando estiver usando esse macacão. Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto jardineiro (Item 1 de 4).",
+ "armorMystery202207Notes": "Esta armadura te deixará glamouroso(a) e gelatinoso(a). Não confere benefícios. Item de assinante de julho de 2022.",
+ "armorArmoireStrawRaincoatText": "Capa de Chuva de Palha",
+ "armorArmoireFancyPirateSuitText": "Jaqueta Pirata Chique",
+ "headSpecialSummer2022RogueText": "Elmo de Caranguejo",
+ "headSpecialSummer2022WarriorText": "Elmo de Tromba D'água",
+ "headSpecialSummer2022MageText": "Elmo de Arraia",
+ "headSpecialSummer2022HealerText": "Barbatanas de Orelha de Peixe-anjo",
+ "headSpecialSummer2022HealerNotes": "Peixes não têm orelhas? Espere até você contar as fofocas para eles. Aumenta Inteligência em <%= int %>. Edição limitada Equipamento de Verão 2022.",
+ "headSpecialSummer2022MageNotes": "Mantenha sua cabeça protegida enquanto mergulha nas suas tarefas ou nas águas mais profundas. Aumenta Percepção em <%= per %>. Edição limitada Equipamento de Verão 2022.",
+ "armorArmoireStrawRaincoatNotes": "Esta capa de palha te deixará seco(a) e sua armadura não irá enferrujar quando estiver em uma missão. Só não se aproxime de uma vela! Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto Capa de Chuva de Palha (Item 1 de 2).",
+ "weaponArmoirePinkKiteNotes": "Mergulhando, girando, subindo alto, sua pipa se destaca no céu. Aumenta todos os atributos em <%= attrs %> cada. Armário Encantado: Conjunto de pipas (Item 4 de 5)",
+ "armorArmoireFancyPirateSuitNotes": "Vista esta fina jaqueta enquanto organiza a biblioteca do seu navio ou fala sobre organização enquanto uma tripulação. Aumenta Constituição e Inteligência em <%= attrs %> cada. Armário Encantado: Conjunto Pirata Chique (Item 1 de 3).",
+ "weaponArmoireYellowKiteNotes": "Mergulhando e desviando, veja sua alegre pipa voando. Aumenta todos os atributos em <%= attrs %> cada. Armário Encantado: Conjunto de pipas (Item 5 de 5)",
+ "weaponArmoireOrangeKiteNotes": "Com cores do nascer e pôr do sol, vamos ver quão alto sua pipa pode chegar! Aumenta todos os atributos em <%= attrs %> cada. Armário Encantado: Conjunto de pipas (Item 3 de 5)",
+ "armorSpecialSummer2022HealerNotes": "Use suas barbatanas coloridas para correr pelo recife e ajudar os que precisam de cura e descanso. Aumenta Constituição em <%= con %>. Edição limitada Equipamento de Verão 2022.",
+ "weaponArmoireBlueKiteNotes": "Navegando pelo horizonte azul, que truques você pode fazer com sua pipa? Aumenta todos os atributos em <%= attrs %> cada. Armário Encantado: Conjunto de pipas (Item 1 de 5)",
+ "weaponArmoireGreenKiteNotes": "Uma pipa esplêndida que você nunca viu, com seus tons de amarelo e verde. Aumenta todos os atributos em <%= attrs %> cada. Armário Encantado: Conjunto de pipas (Item 2 de 5)",
+ "armorMystery202207Text": "Armadura Água Viva",
+ "headSpecialSummer2022WarriorNotes": "Centralize o poder da água conforme entra neste redemoinho intenso. Aumenta Força em <%= str %>. Edição limitada Equipamento de Verão 2022.",
+ "headSpecialSummer2022RogueNotes": "Sem mau humor por aqui, estamos celebrando os trocadilhos casca grossa sobre crustáceos. Aumenta Percepção em <%= per %>. Edição limitada Equipamento de Verão 2022.",
+ "headSpecialWinter2022RogueText": "Final Trovejante",
+ "headSpecialWinter2022WarriorText": "Touca Felpuda",
+ "headSpecialFall2021HealerText": "Máscara do Invocador",
+ "headSpecialFall2021HealerNotes": "Sua mágica transforma seu cabelo em chamas brilhantes e chocantes quando você veste esta máscara. Aumenta Inteligência em <%= int %>. Edição limitada Equipamento de Outono 2021.",
+ "headSpecialFall2021RogueNotes": "Bem, você está preso. Agora está amaldiçoado a vagar pelos corredores das masmorras, coletando restos. AMALDIÇOADO! Aumenta Percepção em <%= per %>. Edição limitada Equipamento de Outono 2021.",
+ "headSpecialWinter2022WarriorNotes": "Com um verde e vermelho natalício, este chapéu garante que você fique aquecido(a) por todo verão. Aumenta Força em <%= str %>. Edição limitada Equipamento de Inverno 2021-2022.",
+ "headSpecialWinter2022MageText": "Capacete de Romã",
+ "headSpecialWinter2022HealerNotes": "Pequenas imperfeições e impurezas fazem com que os braços desta coroa se estiquem em direções imprevisíveis. É simbólica! E também muito, muito bonita. Aumenta Inteligência em <%= int %>. Edição limitada Equipamento de Inverno 2021-2022.",
+ "headSpecialSpring2022RogueNotes": "Seja tão inteligente quanto uma gralha quando usar esta máscara. Talvez você irá assobiar, gritar e imitar uma também. Aumenta Percepção em <%= per %>. Edição limitada Equipamento de Primavera 2022.",
+ "headSpecialSpring2022WarriorText": "Capuz Capa de Chuva",
+ "headSpecialWinter2022MageNotes": "Por causa de sua carcaça densa, este capacete frutífero e divertido é muito forte. Aumenta Percepção em <%= per %>. Edição limitada Equipamento de Inverno 2021-2022.",
+ "headSpecialWinter2022RogueNotes": "Quê? Ãn? Tem um(a) Gatuno(a) onde? Desculpe, não consigo ouvir nada com estes fogos de artifício! Aumenta Percepção em <%= per %>. Edição limitada Equipamento de Inverno 2021-2022.",
+ "headSpecialSpring2022WarriorNotes": "Aí vem chuva! Fique de pé e coloque seu capuz para não se molhar. Aumenta Força em <%= str %>. Edição limitada Equipamento de Primavera 2022.",
+ "headSpecialFall2021WarriorText": "Gravata sem Cabeça",
+ "headSpecialSpring2022RogueText": "Máscara de Gralha",
+ "headSpecialFall2021WarriorNotes": "Perca sua cabeça por esta gola e gravata formais que completam seu terno. Aumenta Força em <%= str %>. Edição limitada Equipamento de Outono 2021.",
+ "headSpecialFall2021MageNotes": "Os tentáculos ao redor da boca pegam a presa e guardam seus deliciosos pensamentos para você saborear. Aumenta Percepção em <%= per %>. Edição limitada Equipamento de Outono 2021.",
+ "headSpecialFall2021MageText": "Máscara Devora Cérebro",
+ "headSpecialWinter2022HealerText": "Coroa Cristalina de Gelo",
+ "headArmoireShootingStarCrownText": "Coroa Estrela",
+ "headSpecialSpring2022MageText": "Capacete Forsítia",
+ "headMystery202111Text": "Chapéu Cronovisão",
+ "headArmoireStrawRainHatText": "Chapéu Chuva de Palha",
+ "headArmoireGardenersSunHatNotes": "A luz brilhante da estrela do dia não chegará em seus olhos quando você usar esse chapéu de abas largas. Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto jardineiro (item 2 de 4).",
+ "shieldSpecialWinter2022HealerNotes": "Apesar de derreter em sua mão, o poder do gelo elemental o reabastece por dentro. Aumenta Constituição em <%= con %>. Edição limitada Equipamento de inverno 2021-2022.",
+ "headArmoireRegalCrownNotes": "Qualquer soberano(a) teria sorte de ter uma coroa tão majestosa e inteligente. Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto Régio (Item 1 de 2).",
+ "headSpecialSpring2022MageNotes": "Fique seco(a) durante uma tempestade com este capacete protetor feito de pétalas caídas. Aumenta Percepção em <%= per %>. Edição limitada Equipamento de Primavera 2022.",
+ "headSpecialSpring2022HealerText": "Capacete Peridoto",
+ "headArmoireFancyPirateHatText": "Chapéu Pirata Chique",
+ "shieldSpecialSummer2022WarriorText": "Tubarão Mal-humorado",
+ "shieldSpecialSummer2022HealerText": "Ondulações Corretivas",
+ "headArmoireBlackFloppyHatText": "Chapéu de Disquete Preto",
+ "shieldSpecialFall2021HealerText": "Criatura Invocada",
+ "headSpecialSpring2022HealerNotes": "Este capacete misterioso preserva sua privacidade enquanto você enfrenta suas tarefas. Aumenta Inteligência em <%= int %>. Edição limitada Equipamento de Primavera 2022.",
+ "headMystery202111Notes": "Um chapéu fino e chique, com óculos que te deixam ver através do tempo. Bem legal, né? Não confere benefícios. Item de assinante de novembro de 2021.",
+ "headMystery202206Notes": "A pérola azul nesta coroa te dá poderes para dominar a água. Use-os com sabedoria! Não confere benefícios. Item de assinante de junho de 2022.",
+ "headMystery202207Notes": "Precisa de uma mãozinha com suas tarefas? Talvez vários tentáculos bioluminescentes te ajudam? Não confere benefícios. Item de assinante de julho de 2022.",
+ "headArmoireShootingStarCrownNotes": "Com este ornamento brilhantemente brilhante, você literalmente irá ser a estrela da sua própria aventura! Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto Poeira Estelar (Item 1 de 3).",
+ "headArmoireFancyPirateHatNotes": "Esteja protegido do sol e qualquer gaivota voando pela sua cabeça enquanto você toma chá no convés de seu navio. Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto pirata chique (item 2 de 3).",
+ "shieldSpecialWinter2022WarriorText": "Escudo Toca o Sino",
+ "shieldSpecialSummer2022WarriorNotes": "Ele bate! Ele morde! E ele nunca, nunca para! Aumenta Constituição em <%= con %>. Edição limitada Equipamento de verão 2022.",
+ "headMystery202110Notes": "O rosto assustador deste elmo pedregoso com certeza irá distanciar forças malévolas ou maus hábitos. Não confere benefícios. Item de assinante de outubro de 2021.",
+ "shieldSpecialFall2021HealerNotes": "Um ser celestial surge de suas chamas mágicas para te dar proteção extra. Aumenta Constituição em <%= con %>. Edição limitada Equipamento de outono 2021.",
+ "shieldSpecialSpring2022HealerText": "Escudo Peridoto",
+ "headMystery202110Text": "Elmo Gárgula Mossy",
+ "headMystery202112Text": "Coroa Ondina Antártica",
+ "headMystery202112Notes": "Esta coroa congelada brilha como as profundezas ocultas de um iceberg. Não confere benefícios. Item de assinante de dezembro de 2021.",
+ "headArmoireBlackFloppyHatNotes": "Muitas magias foram lançadas com este chapéu simples, dando-lhe uma cor escura ousada. Aumenta Constituição, Percepção e Força em <%= attrs %> cada. Armário Encantado: Conjunto Roupas Pretas para Ficar em Casa (Item 1 de 3).",
+ "shieldSpecialWinter2022WarriorNotes": "Este é um escudo bate o sino, sino de Belém. Sino de Belém protege e sino de Belém bate. Aumenta Constituição em <%= con %>. Edição limitada Equipamento de inverno 2021-2022.",
+ "shieldSpecialWinter2022HealerText": "Cristal de Gelo Duradouro",
+ "shieldSpecialSpring2022HealerNotes": "Formado por rocha derretida, este escudo pode suportar qualquer golpe que vier. Aumenta Constituição em <%= con %>. Edição limitada Equipamento de primavera 2022.",
+ "shieldSpecialSpring2022WarriorText": "Nuvem de Chuva",
+ "shieldSpecialSpring2022WarriorNotes": "Já teve aqueles dias quando parece que uma nuvem de chuva te segue? Bem, você está com sorte, as flores mais belas irão crescer em seus pés! Aumenta Constituição em <%= con %>. Edição limitada Equipamento de primavera 2022.",
+ "headMystery202202Text": "Cachinhos Turquesa",
+ "headMystery202202Notes": "Você fica bem de cabelo azul! Não confere benefícios. Item de assinante de fevereiro de 2022.",
+ "shieldSpecialFall2021WarriorText": "Escudo Lanterna Jack",
+ "headArmoireRegalCrownText": "Coroa Régio",
+ "shieldSpecialFall2021WarriorNotes": "Este alegre escudo com seu sorriso torto irá te proteger e iluminar seu caminho numa noite escura. Ele é flexível, apesar de sua cabeça, você precisa de um desses! Aumenta Constituição em <%= con %>. Edição limitada Equipamento de outono 2021.",
+ "headMystery202207Text": "Capacete Água Viva",
+ "headArmoireGardenersSunHatText": "Chapéu Sol do Jardineiro",
+ "headArmoireStrawRainHatNotes": "Você verá qualquer obstáculo em seu caminho quando usar este chapéu cônico, resistente a água. Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto capa de chuva de palha (item 2 de 2).",
+ "offHandCapitalized": "Item Secundário",
+ "backMystery202205Text": "Asas de Crepúsculo",
+ "headAccessoryMystery202205Text": "Chifres de Dragão Alado Crepúsculo",
+ "headAccessoryMystery202205Notes": "Esses chifres deslumbrantes são tão brilhantes quanto o pôr do Sol do deserto. Não confere benefícios. Item de assinante de maio de 2022.",
+ "headAccessoryMystery202203Notes": "Precisa de mais velocidade? As pequenas asas nesta coroa são mais poderosas do que parecem! Não confere benefícios. Item de assinante de março de 2022.",
+ "shieldArmoireSoftBlackPillowText": "Travesseiro Preto Macio",
+ "shieldArmoireTreasureMapText": "Mapa do Tesouro",
+ "shieldArmoireTreasureMapNotes": "O x marca o local! Você nunca sabe o que encontrará quando seguir este mapa até tesouros lendários: ouro, jóias, relíquias ou talvez uma laranja petrificada? Aumenta Força e Inteligência em <%= attrs %> cada. Armário Encantado: Conjunto pirata chique (item 3 de 3).",
+ "backMystery202203Text": "Asas de Libélula Destemida",
+ "backMystery202205Notes": "O poderoso bater dessas grandes asas pode ser ouvido ecoando entre as dunas. Não confere benefícios. Item de assinante de maio de 2022.",
+ "shieldSpecialSummer2022HealerNotes": "Mande magia restauradora usando ondulações suaves pelo recife. Aumenta Constituição em <%= con %>. Edição limitada Equipamento de verão 2022.",
+ "shieldArmoireGardenersSpadeNotes": "Se você está escavando no jardim, buscando pelo tesouro enterrado, ou criando um túnel secreto, esta fiel pá será sua melhor amiga. Aumenta Força em <%= str %>. Armário Encantado: Conjunto jardineiro (item 3 de 4).",
+ "shieldArmoireSnareDrumNotes": "Ra-ta-ta-ta! Reúna seu grupo para uma parada ou marchinha tocando este tambor. Aumenta Constituição em <%= con %> e Inteligência em <%= int %>. Armário Encantado: Conjunto instrumento musical 1 (item 3 de 3)",
+ "backMystery202203Notes": "Vença todas as outras criaturas do céu com essas asas cintilantes. Não confere benefícios. Item de assinante de março de 2022.",
+ "backMystery202206Notes": "Asas extravagantes feitas de água e ondas! Não confere benefícios. Item de assinante de junho de 2022.",
+ "shieldArmoireSpanishGuitarNotes": "Tink! Tink! Thrummm! Reúna seu grupo para um show ou celebração tocando este violão. Aumenta Percepção em <%= per %> e Inteligência em <%= int %>. Armário Encantado: Conjunto instrumento musical 1 (item 2 de 3)",
+ "shieldArmoireSnareDrumText": "Tarola",
+ "shieldArmoireSpanishGuitarText": "Violão Espanhol",
+ "headAccessoryMystery202203Text": "Coroa da Libélula Destemida",
+ "shieldArmoireGardenersSpadeText": "Pá do Jardineiro",
+ "shieldArmoireSoftBlackPillowNotes": "O(A) corajoso(a) guerreiro(a) leva um travesseiro para qualquer expedição. Evite tarefas cansativas... até mesmo enquanto dorme. Aumenta Inteligência e Percepção em <%= attrs %> cada. Armário Encantado: Conjunto Roupas Pretas para Ficar em Casa (item 3 de 3).",
+ "shieldArmoireSoftVioletPillowText": "Travesseiro Violeta Macio",
+ "shieldArmoireSoftVioletPillowNotes": "O(A) esperto(a) guerreiro(a) leva um travesseiro para qualquer expedição. Proteja-se do pânico induzido pela procrastinação... até mesmo enquanto dorme. Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto Roupas Violetas para Ficar em Casa (item 3 de 3).",
+ "weaponArmoirePushBroomText": "Vassoura Empurra",
+ "weaponArmoirePushBroomNotes": "Leve esta ferramenta de arrumação em suas aventuras e sempre consiga varrer um piso com fuligem ou limpar teias de aranha. Aumenta Força e Inteligência em <%= attrs %> cada. Armário Encantado: Conjunto Suprimentos de Limpeza (item 1 de 3)",
+ "weaponArmoireFeatherDusterText": "Espanador de Penas",
+ "shieldArmoireDustpanText": "Pá de Lixo",
+ "weaponArmoireFeatherDusterNotes": "Deixe essas penas chiques passarem por suas velharias para fazê-las brilharem como novas. Apenas tome cuidado com a poeira para não espirrar! Aumenta Constituição e Percepção em <%= attrs %> cada. Armário Encantado: Conjunto Suplementos de Limpeza (item 2 de 3)",
+ "shieldArmoireDustpanNotes": "Tenha essa esta pá de lixo portátil pronta toda vez que você limpar. Lançar uma mágia de desaparecimento nela faz com que você não precise buscar uma lata de lixo para esvaziar. Aumenta Inteligência e Constituição em <%= attrs %> cada. Armário Encantado: Conjunto Suplementos de Limpeza (item 3 de 3).",
+ "headMystery202208Text": "Rabo de Cavalo Jeitoso",
+ "headMystery202208Notes": "Revele este cabelo volumoso - pode se dobrar como um chicote! Não confere benefícios! Não confere benefícios. Item de Assinante de agosto de 2022.",
+ "eyewearMystery202208Text": "Olhos Reluzentes",
+ "eyewearMystery202208Notes": "Iluda seus inimigos com uma falsa sensação de segurança com esses olhos terrivelmente fofos. Não confere benefícios. Item de Assinante de agosto de 2022.",
+ "weaponMystery202209Notes": "Este livro irá te guiar durante sua jornada de mágicas. Não confere benefícios. Item de Assinante de setembro de 2022",
+ "shieldMystery202209Text": "Monte dos Livros Mágicos",
+ "shieldMystery202209Notes": "Construir seu conhecimento sobre feitiçaria precisa de muita leitura, mas com certeza irá aproveitar sua educação. Não confere benefícios. Item de Assinante de setembro de 2022.",
+ "weaponMystery202209Text": "Manual Mágico",
+ "eyewearArmoireComedyMaskText": "Máscara da Comédia",
+ "eyewearArmoireComedyMaskNotes": "Com alegria! Aqui está uma máscara pitoresca para seu coração feliz, tocando, anunciando e expressando alegria no palco. Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto Máscaras de Teatro (Item 1 de 2).",
+ "eyewearArmoireTragedyMaskText": "Máscara da Tragédia",
+ "eyewearArmoireTragedyMaskNotes": "Com lástima! Aqui está uma máscara pesada para seu pobre personagem, se escorando, se preocupando e expressando aflição e tristeza no palco. Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto Máscaras de Teatro (Item 2 de 2)."
}
diff --git a/website/common/locales/pt_BR/generic.json b/website/common/locales/pt_BR/generic.json
index 9659e8c52f..918168e9d5 100644
--- a/website/common/locales/pt_BR/generic.json
+++ b/website/common/locales/pt_BR/generic.json
@@ -211,5 +211,7 @@
"submitBugReport": "Enviar relatório de erro",
"reportSent": "Relatório de erro enviado!",
"reportSentDescription": "Responderemos assim que nossa equipe conseguir verificar. Obrigado por relatar o problema.",
- "askQuestion": "Faça uma Pergunta"
+ "askQuestion": "Faça uma Pergunta",
+ "reportDescriptionText": "Inclua fotos da tela ou erros do console Javascript se ajudar ou for necessário.",
+ "emptyReportBugMessage": "Mensagem de Reporte de Erros vazia"
}
diff --git a/website/common/locales/pt_BR/groups.json b/website/common/locales/pt_BR/groups.json
index 7ec5e92526..4b2a29170f 100644
--- a/website/common/locales/pt_BR/groups.json
+++ b/website/common/locales/pt_BR/groups.json
@@ -162,11 +162,11 @@
"onlyCreatorOrAdminCanDeleteChat": "Não autorizado a deletar essa mensagem!",
"onlyGroupLeaderCanEditTasks": "Não tem autorização para gerenciar tarefas!",
"onlyGroupTasksCanBeAssigned": "Apenas tarefas de grupo podem ser designadas",
- "assignedTo": "Atribuir a",
- "assignedToUser": "Designada para <%- userName %>",
- "assignedToMembers": "Designada para <%= userCount %> membros",
- "assignedToYouAndMembers": "Designada para você e <%= userCount %> membros",
- "youAreAssigned": "Designada a você",
+ "assignedTo": "Atribuída para",
+ "assignedToUser": "Atribuída: <%- userName %>",
+ "assignedToMembers": "<%= userCount %> usuários",
+ "assignedToYouAndMembers": "Você, <%= userCount %> usuários",
+ "youAreAssigned": "Atribuída: você",
"taskIsUnassigned": "Ninguém assumiu esta tarefa",
"confirmUnClaim": "Você tem certeza que quer abandonar esta tarefa?",
"confirmNeedsWork": "Você tem certeza de que quer marcar esta tarefa para revisão?",
@@ -183,7 +183,7 @@
"removeClaim": "Remover Tarefa",
"onlyGroupLeaderCanManageSubscription": "Apenas o líder do grupo pode gerenciar a assinatura do grupo",
"yourTaskHasBeenApproved": "Sua tarefa <%- taskText %> foi aprovada.",
- "taskNeedsWork": "<%- managerName %> marcou <%- taskText %> como tarefa a ser realizada.",
+ "taskNeedsWork": "<%- taskText %> foi desmarcado por @<%- managerName %>. Suas recompensas por completar a tarefa foram revertidas.",
"userHasRequestedTaskApproval": "<%- user %> solicitou aprovação para <%- taskName %>",
"approve": "Aprovar",
"approveTask": "Aprovar Tarefa",
@@ -257,7 +257,7 @@
"guildSummaryPlaceholder": "Escreva uma breve descrição anunciando sua Guilda para outros Habiticanos. Qual o principal propósito de sua Guilda e por que as pessoas deveriam entrar nela? Tente incluir palavras chave no resumo de forma que Habiticanos possam encontrar sua Guilda facilmente quando a procurarem!",
"groupDescription": "Descrição",
"guildDescriptionPlaceholder": "Utilize essa parte para dar maiores detalhes sobre tudo que os membros de sua Guilda devem saber sobre ela. Boas dicas, links úteis e orientações de conduta entram aqui!",
- "markdownFormattingHelp": "[Ajuda na formatação do texto](https://habitica.fandom.com/pt-br/wiki/Markdown_Cheat_Sheet)",
+ "markdownFormattingHelp": "[Ajuda na formatação do texto em Markdown](https://habitica.fandom.com/pt-br/wiki/Markdown_Cheat_Sheet)",
"partyDescriptionPlaceholder": "Essa é a descrição do seu grupo. Aqui é descrito o que nós fazemos neste grupo. Se você quiser aprender mais sobre o que fazemos juntos, leia a descrição. Junte-se a nós.",
"guildGemCostInfo": "O custo em Gemas promove Guildas de alta qualidade e é transferido para o banco da Guilda.",
"noGuildsTitle": "Você não participa de nenhuma Guilda.",
@@ -355,11 +355,11 @@
"PMCanNotReply": "Você não pode responder a essa conversa",
"newPartyPlaceholder": "Insira o nome do seu grupo.",
"claimRewards": "Reivindicar Recompensas",
- "assignedDateAndUser": "Designado por @<%- username %> em <%= date %>",
+ "assignedDateAndUser": "Atribuída por @<%- username %> em <%= date %>",
"assignedDateOnly": "Designado em <%= date %>",
"managerNotes": "Notas do Administrador",
"thisTaskApproved": "Esta tarefa foi aprovada",
- "chooseTeamMember": "Escolha um membro do time",
+ "chooseTeamMember": "Pesquise por um membro do time",
"unassigned": "Não designado",
"onlyPrivateGuildsCanUpgrade": "Apenas guildas privadas podem ser atualizadas para um plano de grupo.",
"bannedWordsAllowedDetail": "Com esta opção selecionada, será permitido o uso de palavras banidas nesta guilda.",
@@ -378,5 +378,29 @@
"leaveGuild": "Deixar a Guilda",
"invitedToThisQuest": "Você recebeu um convite para esta Missão!",
"upgradeToGroup": "Aprimorar para Plano de Time",
- "blockYourself": "Você não pode se autobloquear"
+ "blockYourself": "Você não pode se autobloquear",
+ "sendGiftTotal": "Total:",
+ "chatTemporarilyUnavailable": "O bate papo está temporariamente indisponível. Por favor, tente de novo mais tarde.",
+ "viewStatus": "Estado",
+ "youEmphasized": "Você",
+ "newGroupsWhatsNew": "Confira as novidades:",
+ "newGroupsBullet01": "Interaja com tarefas diretamente do quadro compartilhado",
+ "newGroupsBullet02": "Qualquer um pode completar tarefas não atribuídas",
+ "lastCompleted": "Última completa",
+ "newGroupsBullet06": "A exibição do estado da tarefa te permite ver rapidamente quem completou uma tarefa",
+ "newGroupsBullet07": "Alterne a habilidade de mostrar as tarefas compartilhadas em seu quadro pessoal",
+ "newGroupsBullet09": "Uma tarefa compartilhada pode ser desmarcada para mostrar que ainda precisa ser completada",
+ "newGroupsBullet10": "Estados de atribuição determinam condição para finalização:",
+ "newGroupsBullet10c": "Atribua uma tarefa para vários membros se todos eles precisam completa-la",
+ "newGroupsVisitFAQ": "Visite o FAQ na opção de Ajuda para saber mais.",
+ "newGroupsEnjoy": "Esperamos que aproveite a nova experiência de Planos de Grupo!",
+ "dayStart": "Dia de início: <%= startTime %>",
+ "newGroupsWelcome": "Bem vindas ao Novo Quadro Compartilhado de Tarefas!",
+ "assignTo": "Atribuída Para",
+ "newGroupsBullet03": "Tarefas compartilhadas restauram ao mesmo tempo para todos, deixando a colaboração mais fácil",
+ "newGroupsBullet04": "Diárias compartilhadas não causarão dano quando não feitas nem aparecerão na janela de Registrar Atividade de Ontem",
+ "newGroupsBullet05": "Tarefas compartilhadas irão escurecer na cor se deixadas incompletas para ajudar no monitoramento do progresso",
+ "newGroupsBullet08": "O líder do grupo e administradores podem adicionar tarefas rapidamente a partir do topo das colunas",
+ "newGroupsBullet10a": "Não atribua uma tarefa para ninguém se qualquer membro pode completa-la",
+ "newGroupsBullet10b": "Atribua a tarefa para uma pessoa para que apenas ela possa completa-la"
}
diff --git a/website/common/locales/pt_BR/limited.json b/website/common/locales/pt_BR/limited.json
index b28e993e25..b00dd78f82 100644
--- a/website/common/locales/pt_BR/limited.json
+++ b/website/common/locales/pt_BR/limited.json
@@ -41,8 +41,8 @@
"northMageSet": "Mago do Norte (Mago)",
"icicleDrakeSet": "Dragão de Gelo (Gatuno)",
"soothingSkaterSet": "Patinante Alentador (Curandeiro)",
- "gingerbreadSet": "Pão de Gengibre (Guerreiro(a))",
- "snowDaySet": "Dia de Neve (Guerreiro(a))",
+ "gingerbreadSet": "Pão de Gengibre (Guerreiro)",
+ "snowDaySet": "Dia de Neve (Guerreiro)",
"snowboardingSet": "Feiticeiro Snowboarding (Mago)",
"festiveFairySet": "Fada Festiva (Curandeiro)",
"cocoaSet": "Cacau (Gatuno)",
@@ -78,7 +78,7 @@
"shipSoothsayerSet": "Navio Vidente (Mago)",
"strappingSailorSet": "Forte Marinheiro (Curandeiro)",
"reefRenegadeSet": "Renegado dos Corais (Gatuno)",
- "scarecrowWarriorSet": "Espantalho (Guerreiro(a))",
+ "scarecrowWarriorSet": "Espantalho (Guerreiro)",
"stitchWitchSet": "Bruxa da Costura (Mago)",
"potionerSet": "Poçãoneiro (Curandeiro)",
"battleRogueSet": "Morcego (Gatuno)",
@@ -131,13 +131,13 @@
"winter2019WinterStarSet": "Estrela Invernal (Curandeiro)",
"winter2019PoinsettiaSet": "Flor-Do-Natal (Gatuno)",
"eventAvailability": "Disponível para compra até <%= date(locale) %>.",
- "dateEndMarch": "30 de Abril",
- "dateEndApril": "19 de Abril",
+ "dateEndMarch": "31 de Março",
+ "dateEndApril": "30 de abril",
"dateEndMay": "31 de Maio",
- "dateEndJune": "14 de Junho",
+ "dateEndJune": "30 de junho",
"dateEndJuly": "31 de Julho",
"dateEndAugust": "31 de Agosto",
- "dateEndSeptember": "21 de Setembro",
+ "dateEndSeptember": "30 de setembro",
"dateEndOctober": "31 de Outubro",
"dateEndNovember": "30 de Novembro",
"dateEndJanuary": "31 de Janeiro",
@@ -174,35 +174,35 @@
"spring2020LapisLazuliRogueSet": "Lazulita (Gatuno)",
"spring2020IrisHealerSet": "Íris (Curandeiro)",
"spring2020PuddleMageSet": "Poça d'água (Mago)",
- "spring2020BeetleWarriorSet": "Besouro Rinoceronte (Guerreiro(a))",
+ "spring2020BeetleWarriorSet": "Besouro Rinoceronte (Guerreiro)",
"mayYYYY": "Maio <%= year %>",
"juneYYYY": "Junho <%= year %>",
- "summer2020CrocodileRogueSet": "Crocodilo (Gatuno(a))",
- "summer2020SeaGlassHealerSet": "Vidro do Mar (Curandeiro(a))",
- "summer2020OarfishMageSet": "Peixe-Remo (Mago(a))",
- "summer2020RainbowTroutWarriorSet": "Truta arco-íris (Guerreiro(a))",
- "fall2020WraithWarriorSet": "Espectro (Guerreiro(a))",
- "fall2020DeathsHeadMothHealerSet": "Mariposa da Cabeça da Morte (Curandeiro(a))",
- "fall2020TwoHeadedRogueSet": "Duas Cabeças (Gatuno(a))",
- "fall2020ThirdEyeMageSet": "Terceiro Olho (Mago(a))",
+ "summer2020CrocodileRogueSet": "Crocodilo (Gatuno)",
+ "summer2020SeaGlassHealerSet": "Vidro do Mar (Curandeiro)",
+ "summer2020OarfishMageSet": "Peixe-Remo (Mago)",
+ "summer2020RainbowTroutWarriorSet": "Truta arco-íris (Guerreiro)",
+ "fall2020WraithWarriorSet": "Espectro (Guerreiro)",
+ "fall2020DeathsHeadMothHealerSet": "Mariposa da Cabeça da Morte (Curandeiro)",
+ "fall2020TwoHeadedRogueSet": "Duas Cabeças (Gatuno)",
+ "fall2020ThirdEyeMageSet": "Terceiro Olho (Mago)",
"septemberYYYY": "Setembro <%= year %>",
"royalPurpleJackolantern": "Abóbora de Halloween Roxo Real",
"novemberYYYY": "Novembro <%= year %>",
- "winter2021IceFishingWarriorSet": "Pescador(a) do Gelo (Guerreiro(a))",
- "winter2021WinterMoonMageSet": "Lua de Inverno (Mago(a))",
- "winter2021ArcticExplorerHealerSet": "Explorador(a) do Ártico (Curandeiro(a))",
+ "winter2021IceFishingWarriorSet": "Pescador(a) do Gelo (Guerreiro)",
+ "winter2021WinterMoonMageSet": "Lua de Inverno (Mago)",
+ "winter2021ArcticExplorerHealerSet": "Explorador(a) do Ártico (Curandeiro)",
"limitations": "Limitações",
"g1g1Event": "A promoção Presenteie uma, Ganhe outra está acontecento agora mesmo!",
"g1g1": "Presenteie uma, Ganhe outra",
"g1g1Returning": "Em homenagem à estação, nós trouxemos de volta uma promoção muito especial. Agora quando você der uma assinatura de presente, receberá uma idêntica de volta!",
- "winter2021HollyIvyRogueSet": "Azevinho e Hera (Gatuno(a))",
+ "winter2021HollyIvyRogueSet": "Azevinho e Hera (Gatuno)",
"g1g1HowItWorks": "Digite o nome de usuário que você gostaria de presentear. Depois disso, escolha a duração da assinatura e finalize a compra. Sua conta será automaticamente recompensada com a mesma assinatura que você acabou de presentear.",
"howItWorks": "Como funciona",
"g1g1Limitations": "Este é um evento de tempo limitado que começa no dia 16 de Dezembro (13:00 UTC, Horário de Brasília: 10:00) e terminará no dia 6 de Janeiro (01:00 UTC, Horário de Brasília: 22:00 do dia anterior). Essa promoção só se aplica quando você presenteia outro(a) habiticano(a). Se você ou o destinatário do presente já for assinante, a assinatura presenteada adicionará meses de crédito que só serão usados após a assinatura atual ser cancelada ou expirar.",
- "spring2021TwinFlowerRogueSet": "Flores Gêmeas (Gatuno(a))",
- "spring2021SwanMageSet": "Cisne (Mago(a))",
- "spring2021SunstoneWarriorSet": "Pedra Solar (Guerreiro(a))",
- "spring2021WillowHealerSet": "Salgueiro (Curandeiro(a))",
+ "spring2021TwinFlowerRogueSet": "Flores Gêmeas (Gatuno)",
+ "spring2021SwanMageSet": "Cisne (Mago)",
+ "spring2021SunstoneWarriorSet": "Pedra Solar (Guerreiro)",
+ "spring2021WillowHealerSet": "Salgueiro (Curandeiro)",
"noLongerAvailable": "Esse item não está mais disponível.",
"summer2021ParrotHealerSet": "Papagaio (Curandeiro)",
"summer2021NautilusMageSet": "Nautilus (Mago)",
@@ -216,5 +216,18 @@
"winter2022PomegranateMageSet": "Romã (Mago/a)",
"winter2022IceCrystalHealerSet": "Cristal de Gelo (Curandeiro/a)",
"januaryYYYY": "Janeiro <%= year %>",
- "aprilYYYY": "Abril <%= year %>"
+ "aprilYYYY": "Abril <%= year %>",
+ "spring2022MagpieRogueSet": "Gralha (Gatuno)",
+ "spring2022RainstormWarriorSet": "Tempestade (Guerreiro)",
+ "octoberYYYY": "Outubro de <%= year %>",
+ "winter2022StockingWarriorSet": "Estocamento (Guerreiro)",
+ "summer2022WaterspoutWarriorSet": "Tromba d'água (Guerreiro)",
+ "spring2022ForsythiaMageSet": "Forsítia (Mago)",
+ "spring2022PeridotHealerSet": "Perídoto (Curandeiro)",
+ "summer2022CrabRogueSet": "Caranguejo (Gatuno)",
+ "summer2022MantaRayMageSet": "Arraia (Mago)",
+ "summer2022AngelfishHealerSet": "Peixe-anjo (Curandeiro)",
+ "dateEndDecember": "31 de dezembro",
+ "februaryYYYY": "Fevereiro de <%= year %>",
+ "julyYYYY": "Julho de <%= year %>"
}
diff --git a/website/common/locales/pt_BR/npc.json b/website/common/locales/pt_BR/npc.json
index c77b4aaadb..9902245cbd 100644
--- a/website/common/locales/pt_BR/npc.json
+++ b/website/common/locales/pt_BR/npc.json
@@ -17,9 +17,9 @@
"mattBochText1": "Bem-vindo(a) ao Estábulo! Sou Matt, o mestre das bestas. Sempre que você completar uma tarefa, poderá obter, aleatoriamente, um Ovo ou uma Poção de Eclosão para chocar Mascotes. Quando você chocar um Mascote ele aparecerá aqui! Clique na imagem de um Mascote para adicioná-lo ao seu Avatar. Alimente-os usando a comida que você encontrar e eles se transformarão em poderosas Montarias.",
"welcomeToTavern": "Boas-Vindas à Taverna!",
"sleepDescription": "Precisa de um descanso? Fique um tempo na Hospedaria do Daniel e dê uma pausa nas mecânicas de jogo mais difíceis do Habitica:",
- "sleepBullet1": "Diárias que você não fez, não causarão dano",
- "sleepBullet2": "Tarefas não perderão combos",
- "sleepBullet3": "Os Chefões não causam danos pelas suas Diárias não concluídas",
+ "sleepBullet1": "Suas Diárias não feitas não irão causar dano em você (chefões ainda causarão dano devido a outras tarefas não feitas de membros do Grupo)",
+ "sleepBullet2": "O progresso de suas Tarefas e Hábitos não irá reiniciar",
+ "sleepBullet3": "Seu dano para a Missão de chefão ou itens de coleção encontrados irão permanecer pendentes até que você saia da taverna",
"sleepBullet4": "Seu dano no Chefão ou itens de Missão de coleta ficarão acumulados até o fim do dia",
"pauseDailies": "Pausar dano",
"unpauseDailies": "Reativar dano",
diff --git a/website/common/locales/pt_BR/overview.json b/website/common/locales/pt_BR/overview.json
index f5ea43d0c1..7de640c613 100644
--- a/website/common/locales/pt_BR/overview.json
+++ b/website/common/locales/pt_BR/overview.json
@@ -3,7 +3,7 @@
"step1": "1º Passo: Inserir Tarefas",
"webStep1Text": "Habitica não é nada sem objetivos reais, então coloque algumas tarefas. Você pode adicionar mais depois! Todas as tarefas podem ser criadas clicando no botão verde \"Adicionar Tarefa\".\n* **Crie [Afazeres](https://habitica.fandom.com/pt-br/wiki/To-Dos):** Coloque tarefas que você precisa fazer uma vez (ou raramente) na coluna de Afazeres, uma de cada vez. Você pode clicar no lápis para editá-los, adicionar listas de tarefas, datas, dentre outros!\n* **Crie [Diárias](https://habitica.fandom.com/pt-br/wiki/Dailies):** Insira atividades que você precisa fazer diariamente ou em dias específicos da semana, mês ou ano na coluna de Diárias. Clique na tarefa para editar os dias da semana e/ou data de início. Também é possível pôr a Diária para reaparecer a cada 3 dias, por exemplo.\n* **Crie [Hábitos](https://habitica.fandom.com/pt-br/wiki/Habits):** Adicione hábitos que você quer fortalecer ou eliminar na coluna Hábitos. Você pode editar os Hábitos para torna-los bons :heavy_plus_sign: ou ruins :heavy_minus_sign:\n* **Crie [Recompensas](https://habitica.fandom.com/pt-br/wiki/Rewards):** Além das recompensas oferecidas pelo jogo, adicione atividades ou recompensas que você queira usar como motivação na coluna de Recompensas. É importante se dar uma pausa ou se permitir relaxar um pouco!\n* Se você precisa de inspiração sobre quais tarefas adicionar, você pode consultar na wiki alguns [Exemplos de Hábitos](https://habitica.fandom.com/pt-br/wiki/Sample_Habits), [Exemplos de Diárias](https://habitica.fandom.com/pt-br/wiki/Sample_Dailies), [Exemplos de Afazeres](https://habitica.fandom.com/pt-br/wiki/Sample_To-Dos) e [Exemplos de Recompensas](https://habitica.fandom.com/pt-br/wiki/Sample_Custom_Rewards) na Wiki.",
"step2": "2º Passo: Ganhe pontos completando tarefas na vida real",
- "webStep2Text": "Agora, comece enfrentando seus objetivos da lista! Quando completar as tarefas e marcar no Habitica você ganhará [Experiência](https://habitica.fandom.com/pt-br/wiki/Experience_Points), que ajudará você a subir de nível e [Ouro](https://habitica.fandom.com/pt-br/wiki/Gold_Points) que possibilitará você comprar recompensas. Se você cair em maus hábitos ou falhar nas suas Diárias, você vai perder [Vida](https://habitica.fandom.com/pt-br/wiki/Health_Points). Dessa forma, as barras de Experiência e de Vida servem como um divertido indicador de seu progresso em direção a seus objetivos. Você começará a ver sua vida real melhorar à medida que seu personagem avança no jogo.",
+ "webStep2Text": "Agora, comece enfrentando seus objetivos da lista! Quando completar as tarefas e marcar no Habitica você ganhará [Pontos de Experiência](https://habitica.fandom.com/pt-br/wiki/Experience_Points), que ajudará você a subir de nível e [Ouro](https://habitica.fandom.com/pt-br/wiki/Gold_Points) que possibilitará você comprar recompensas. Se você cair em maus hábitos ou falhar nas suas Diárias, você vai perder [Pontos de Vida](https://habitica.fandom.com/pt-br/wiki/Health_Points). Dessa forma, as barras de Experiência e de Vida servem como um divertido indicador de seu progresso em direção a seus objetivos. Você começará a ver sua vida real melhorar à medida que seu personagem avança no jogo.",
"step3": "3º Passo: Personalizar e explorar o Habitica",
"webStep3Text": "Uma vez familiarizado(a) com o básico, você pode tirar ainda mais proveito do Habitica com estas características sofisticadas:\n * Organize suas Tarefas com [etiquetas](https://habitica.fandom.com/pt-br/wiki/Etiquetas) (edite uma Tarefa para adicioná-las).\n * Personalize o seu [Avatar](https://habitica.fandom.com/pt-br/wiki/Avatar) clicando no ícone de usuário no canto superior direito.\n * Compre seu [equipamento](http://habitica.fandom.com/wiki/Equipment) nas Recompensas ou nas [Lojas](<%= shopUrl %>) e modifique-o em [Inventário > Equipamento](<%= equipUrl %>)\n * Conecte-se com outros usuários através da [Taverna](https://habitica.fandom.com/pt-br/wiki/Taverna).\n * Crie [Mascotes](https://habitica.fandom.com/pt-br/wiki/Pets) coletando [Ovos](https://habitica.fandom.com/pt-br/wiki/Eggs) e [Poções de eclosão](https://habitica.fandom.com/pt-br/wiki/Hatching_Potions). [Alimente-os](https://habitica.fandom.com/pt-br/wiki/Food) para transformá-los em [Montarias](https://habitica.fandom.com/pt-br/wiki/Mounts).\n * No nível 10: Escolha uma [Classe](https://habitica.fandom.com/pt-br/wiki/Class_System) e então use as [habilidades específicas da Classe](https://habitica.fandom.com/pt-br/wiki/Skills) (Níveis 11 a 14).\n * Forme um Grupo com seus amigos(as) (clicando em [Grupo](<%= partyUrl %>) na barra de navegação) para se manter responsável e ganhar um Pergaminho de Missão.\n * Derrote monstros e colete objetos em [Missões](https://habitica.fandom.com/pt-br/wiki/Quests) (você receberá uma missão no nível 15).",
"overviewQuestions": "Tem alguma dúvida? Confira as [Perguntas Frequentes](<%= faqUrl %>)! Se a sua pergunta ainda não foi mencionada lá, você pode pedir ajuda na Guilda [Habitica Help](<%= helpGuildUrl %>).\n\nBoa sorte com as suas tarefas!"
diff --git a/website/common/locales/pt_BR/pets.json b/website/common/locales/pt_BR/pets.json
index 7bebada076..5410ac143d 100644
--- a/website/common/locales/pt_BR/pets.json
+++ b/website/common/locales/pt_BR/pets.json
@@ -44,8 +44,8 @@
"noFoodAvailable": "Você não tem comida para Mascotes.",
"noSaddlesAvailable": "Você não tem Selas.",
"noFood": "Você não possui comida ou selas.",
- "dropsExplanation": "Consiga estes itens mais rapidamente com Gemas, caso você não queira esperar que apareçam ao completar uma tarefa. Aprenda mais sobre o sistema de Drops.",
- "dropsExplanationEggs": "Use gemas para conseguir ovos mais rápidamente, se você não quiser esperar por drops de ovos comuns, ou repetir Missões para ganhar ovos de Missões. Aprenda mais sobre o sistema de Drops.",
+ "dropsExplanation": "Consiga esses itens mais rapidamente com Gemas, caso você não queira esperar que apareçam ao completar uma tarefa. Aprenda mais sobre o sistema de Drops.",
+ "dropsExplanationEggs": "Use gemas para conseguir ovos mais rapidamente, se você não quiser esperar por drops de ovos comuns, ou repetir Missões para ganhar ovos de Missões. Aprenda mais sobre o sistema de Drops.",
"premiumPotionNoDropExplanation": "Poções Mágicas de Eclosão não podem ser usadas em ovos recebidos em Missões. A única forma de conseguir Poções Mágicas de Eclosão é comprando-as abaixo. Elas não serão encontradas através de drops aleatórios.",
"beastMasterProgress": "Progresso para Mestre das Bestas",
"beastAchievement": "Você adquiriu a Conquista \"Mestre das Bestas\" por coletar todos os mascotes!",
@@ -90,7 +90,7 @@
"welcomeStable": "Boas-vindas ao Estábulo!",
"welcomeStableText": "Bem-vindo(a) ao Estábulo! Eu sou Matt, o Mestre das Bestas. Toda vez que você completar uma tarefa, terá a chance de receber, randomicamente, um Ovo ou Poção de eclosão para chocar Mascotes. Quando você chocar um Mascote, ele aparecerá aqui! Clique na imagem de um Mascote para adicioná-lo ao seu Avatar. Alimente-o com Comidas para mascotes que encontrar e eles se tornarão em incríveis Montarias.",
"petLikeToEat": "O que meu Mascote gosta de comer?",
- "petLikeToEatText": "Mascotes crescerão não importa com o que você os alimentar, mas eles crescerão ainda mais rápido se você alimentá-los com as Comidas que eles preferem. Experimente até encontrar o padrão ou veja a resposta aqui:
https://habitica.fandom.com/pt-br/wiki/Food_Preferences",
+ "petLikeToEatText": "Mascotes crescerão não importa com o que você os alimentar, mas eles crescerão ainda mais rápido se você alimentá-los com as Comidas que eles preferem. Experimente até encontrar o padrão ou veja a resposta aqui:
https://habitica.fandom.com/pt-br/wiki/Food_Preferences",
"filterByStandard": "Padrão",
"filterByMagicPotion": "Poção Mágica",
"filterByQuest": "Missão",
diff --git a/website/common/locales/pt_BR/questscontent.json b/website/common/locales/pt_BR/questscontent.json
index 40b798013c..45a5d02eee 100644
--- a/website/common/locales/pt_BR/questscontent.json
+++ b/website/common/locales/pt_BR/questscontent.json
@@ -60,7 +60,7 @@
"questSpiderUnlockText": "Desbloqueia Ovos de Aranha para compra no Mercado",
"questGroupVice": "Vício, o Dragão Sombrio",
"questVice1Text": "Vício, Parte 1: Liberte-se do Controle do Dragão",
- "questVice1Notes": "Dizem que um mal horrível vive nas cavernas do Monte Habitica. Um monstro cuja presença corrompe a mente dos heróis mais fortes da terra, levando-os a maus hábitos e preguiça! A besta é um grande dragão de poder imenso e composto pelas próprias sombras: Vício, o traiçoeiro Dragão das Sombras. Bravos Habiticanos, se acreditam que podem sobreviver a este poder imenso, peguem as suas armas e derrotem esta besta imunda de uma vez por todas.
Vício, Parte 1:
Como podem pensar que podem lutar contra a besta se ela já tem controle sobre vocês? Não sejam vítimas da preguiça e do vício! Trabalhem arduamente e libertem-se da influência negra que o dragão tem sobre vocês!
",
+ "questVice1Notes": "Dizem que um mal horrível vive nas cavernas do Monte Habitica. Um monstro cuja presença corrompe a mente dos heróis mais fortes da terra, levando-os a maus hábitos e preguiça! A besta é um grande dragão de poder imenso e composto pelas próprias sombras: Vício, o traiçoeiro Dragão das Sombras. Bravos Habiticanos, se acreditam que podem sobreviver a este poder imenso, peguem as suas armas e derrotem esta besta imunda de uma vez por todas.
Vício, Parte 1:
Como podem pensar que podem lutar contra a besta se ela já tem controle sobre vocês? Não sejam vítimas da preguiça e do vício! Trabalhem arduamente e libertem-se da influência negra que o dragão tem sobre vocês!",
"questVice1Boss": "A Sombra do Vício",
"questVice1Completion": "Com a influência de Vício sob você dissipada, você sente uma onda de força que não sabia que tinha voltar para você. Parabéns! Mas um inimigo ainda mais assustador está à sua espera...",
"questVice1DropVice2Quest": "Vício, Parte 2 (Pergaminho)",
@@ -604,7 +604,7 @@
"cuddleBuddiesText": "Pacote de Missões Amiguinhos Fofos",
"cuddleBuddiesNotes": "Contém 'A Coelhinha Ladra', 'O Furão Nefasto' e 'A Gangue do Porquinho da Índia'. Disponível até 31 de Março.",
"aquaticAmigosText": "Pacote de Missões Amigos Aquáticos",
- "aquaticAmigosNotes": "Contém 'O Axolote Mágico', 'O Kraken do Incorpleto', e 'O Chamado do Octothulu'. Disponível até 31 de Agosto.",
+ "aquaticAmigosNotes": "Contém 'O Axolote Mágico', 'O Kraken do Incorpleto', e 'O Chamado do Octothulu'. Disponível até 30 de junho.",
"questSeaSerpentText": "Perigo nas Profundezas: Ataque da Serpente Marinha!",
"questSeaSerpentNotes": "Seus combos fizeram você se sentir sortudo - é a hora perfeita para uma viagem até os campos de corrida de cavalos marinhos. Você embarca no submarino nas Docas Diligentes e relaxa para a viagem até Lentópolis, mas quando você mal submerge um impacto atinge o submarino, lançando os tripulantes ao chão. \"O que está acontecendo?\" grita @AriesFaries.
Você olha através de uma janela próxima e fica chocado com a parede de escamas cintilantes passando por ela. \"Serpente Marinha!\" declara Capitão @Witticaster através do comunicador. \"Segurem-se, vai acontecer de novo!\" Enquanto você agarra os braços do seu assento, as suas tarefas incompletas brilham ante seus olhos. 'Talvez se nós trabalharmos juntos e as completarmos,' você pensa, 'nós podemos assustar esse monstro!'",
"questSeaSerpentCompletion": "Desgastada pelo seu comprometimento, a Serpente Marinha foge, desaparecendo nas profundezas. Quando você desembarca em Lentopólis você dá um suspiro de alívio antes de notar @*~Seraphina~ se aproximando com três ovos translúcidos em seus braços. \"Aqui, você deveria ficar com eles,\" ela fala. \"Você sabe mesmo como lidar com a Serpente Marinha!\" Logo que você aceita os ovos, você faz um novo voto para permanecer firme completando seus afazeres para garantir que isso não aconteça novamente.",
@@ -657,7 +657,7 @@
"questDolphinCompletion": "Sua batalha de vontades com o golfinho te deixou cansado(a), mas vitorioso(a). Com sua determinação e encorajamento, @mewrose, @khdarkwolf e @confusedcicada levantam-se e sacudem a insidiosa telepatia do golfinho. Vocês quatro se protegem com um senso de realização em suas Diárias consistentes, Hábitos fortes e Afazeres concluídos até fecharem os olhos brilhantes em reconhecimento silencioso de seus sucessos. Com isso, ele cai de volta na baía. Ao trocar cumprimentos e congratulações, você percebe que três ovos são trazidos até a praia.
“Hum, eu me pergunto o que podemos fazer com eles”, reflete @khdarkwolf.",
"questDolphinBoss": "Golfinho da Dúvida",
"questDolphinNotes": "Você anda pelas margens da Baía de Inkompleto, ponderando sobre o trabalho assustador à sua frente. Um respingo na água chama sua atenção. Um golfinho magnífico surge sobre as ondas. A luz do sol brilha nas barbatanas e na cauda do golfinho. Mas espere... isso não é luz do sol, e o golfinho não volta a mergulhar no mar. Ele fixa seu olhar em @khdarkwolf.
\"Eu nunca terminarei todas essas Diárias\", disse @khdarkwolf.
\"Eu não sou bom o suficiente para alcançar meus objetivos\", disse @confusedcicada quando o golfinho olhou para eles.
“Por que eu me incomodei em tentar?”, perguntou @mewrose, enconlhendo-se sob o olhar da besta.
Seus olhos encontram os seus e você sente que sua mente começa a afundar sob a maré crescente de dúvida. Você se fortalece; alguém tem que derrotar essa criatura, e será você!",
- "questDolphinText": "O Golfinho da Dúvida",
+ "questDolphinText": "O Golfinho Engolfante",
"rockingReptilesNotes": "Contém 'O Éprajá-caré', 'A Serpente da Distração' e 'O Veloci-Rapper'. Disponível até 30 de Setembro.",
"rockingReptilesText": "Pacote de Missões de Répteis Bamboleantes",
"questRobotUnlockText": "Tornam os Ovos de Robô compráveis no Mercado",
@@ -667,7 +667,7 @@
"questRobotCollectBolts": "Parafusos",
"questRobotCompletion": "@Rev e seu Amigo de Responsabilidade colocam o último parafuso no lugar e a máquina do tempo começa a vibrar. @FolleMente e @McCoyly saltam a bordo. \"Obrigado pela ajuda! Nos vemos no futuro! A propósito, isto deve ajudá-lo com sua próxima invenção!\" Com isso, os viajantes do tempo desaparecem, mas deixam para trás, nos destroços do antigo Estabilizador de Produtividade, três ovos mecânicos. Talvez esses sejam os componentes cruciais para uma nova linha de produção de Amigos de Responsabilidade!",
"questRobotNotes": "Nos laboratórios Capacidade Máxima, @Rev está dando os últimos retoques em sua mais nova invenção, um robótico Amigo de Responsabilidade, quando um estranho veículo metálico aparece de repente em uma nuvem de fumaça, a centímetros do Detector de Flutuação do robô! Seus ocupantes, duas figuras estranhas vestidas de prata, emergem e tiram seus capacetes espaciais, revelando-se como @FolleMente e @McCoyly.
“Suponho que houve uma anomalia em nossa implementação de produtividade\", diz @FolleMente timidamente.
@McCoyly cruza os braços. “Isso significa que eles deixaram de concluir suas Diárias, o que deve ter levado à desintegração do nosso Estabilizador de Produtividade, suponho. É um componente essencial para viajar no tempo e precisa de consistência para funcionar corretamente. Nossas conquistas impulsionam nosso movimento através do tempo e do espaço! Eu não tenho tempo para explicar mais, @Rev. Você descobrirá isso em 37 anos, ou talvez seus aliados Misteriosos Viajantes do Tempo possam lhe informar. Por enquanto, você pode nos ajudar a consertar nossa máquina do tempo?”",
- "delightfulDinosNotes": "Contém 'O Pterror-dáctilo', 'O Triceratops Pisoteador' e 'O Dinossauro Volta à Vida'. Disponível até o dia 30 de Novembro.",
+ "delightfulDinosNotes": "Contém 'O Pterror-dáctilo', 'O Triceratops Pisoteador' e 'O Dinossauro Volta à Vida'. Disponível até 31 de maio.",
"delightfulDinosText": "Pacote de Missões Dinossauros Deliciosos",
"questAmberUnlockText": "Desbloqueia Poções de Eclosão Âmbar para compra no Mercado",
"questAmberDropAmberPotion": "Poção de Eclosão Âmbar",
diff --git a/website/common/locales/pt_BR/rebirth.json b/website/common/locales/pt_BR/rebirth.json
index 17a5f91fa3..2a5f897683 100644
--- a/website/common/locales/pt_BR/rebirth.json
+++ b/website/common/locales/pt_BR/rebirth.json
@@ -8,7 +8,7 @@
"rebirthOrb": "Usou um Orbe do Renascimento para recomeçar depois de alcançar o Nível <%= level %>.",
"rebirthOrb100": "Usou um Orbe do Renascimento para recomeçar depois de alcançar Nível 100 ou mais.",
"rebirthOrbNoLevel": "Usou um Orbe do Renascimento para recomeçar.",
- "rebirthPop": "Recomece seu personagem no Nível 1 enquanto mantém conquistas, colecionáveis e equipamentos. Suas tarefas, incluindo o histórico, continuarão, mas se tornarão amarelas. Seus combos das tarefas serão removidos, com exceção das tarefas pertencentes a Desafios ativos ou a Planos de Grupo. Seu Ouro, Experiência, Mana e efeitos de todas as Habilidades serão removidos. Tudo isso terá efeito imediatamente. Para mais informações, confira Orbe de Renascimento na Wiki.",
+ "rebirthPop": "Recomece seu personagem no Nível 1 enquanto mantém conquistas, colecionáveis e equipamentos. Suas tarefas, incluindo o histórico, continuarão, mas se tornarão amarelas. Seus combos das tarefas serão removidos, com exceção das tarefas pertencentes a Desafios ativos ou a Planos de Grupo. Seu Ouro, Experiência, Mana e efeitos de todas as Habilidades serão removidos. Tudo isso terá efeito imediatamente. Para mais informações, confira Orbe de Renascimento na Wiki.",
"rebirthName": "Orbe do Renascimento",
"rebirthComplete": "Você renasceu!",
"nextFreeRebirth": "<%= days %> dias até Orbe de Renascimento GRÁTIS"
diff --git a/website/common/locales/pt_BR/settings.json b/website/common/locales/pt_BR/settings.json
index ea7fb00d72..5e84999380 100644
--- a/website/common/locales/pt_BR/settings.json
+++ b/website/common/locales/pt_BR/settings.json
@@ -215,5 +215,9 @@
"transaction_subscription_perks": "Dos privilégios de assinante",
"hourglassTransactions": "Transações de Ampulhetas",
"noGemTransactions": "Você não possui nenhuma transação de gemas ainda.",
- "noHourglassTransactions": "Você não possui nenhuma transação de ampulhetas ainda."
+ "noHourglassTransactions": "Você não possui nenhuma transação de ampulhetas ainda.",
+ "passwordSuccess": "Senha alterada com sucesso",
+ "giftSubscriptionRateText": "$<%= price %> BRL por <%= months %> meses",
+ "transaction_create_bank_challenge": "Desafio bancário criado",
+ "transaction_admin_update_balance": "Administração concedida"
}
diff --git a/website/common/locales/pt_BR/subscriber.json b/website/common/locales/pt_BR/subscriber.json
index d835b88641..e53d31de20 100644
--- a/website/common/locales/pt_BR/subscriber.json
+++ b/website/common/locales/pt_BR/subscriber.json
@@ -204,5 +204,14 @@
"mysterySet202201": "Conjunto de Folião da Meia-Noite",
"mysterySet202204": "Conjunto de Aventureiro Virtual",
"mysterySet202111": "Conjunto do Cronomante Cósmico",
- "mysterySet202205": "Conjunto Dragão do Crepúsculo"
+ "mysterySet202205": "Conjunto Dragão do Crepúsculo",
+ "mysterySet202206": "Conjunto da Sílfide do Mar",
+ "mysterySet202207": "Conjunto Valsa da Água-Viva",
+ "howManyGemsPurchase": "Quantas Gemas você gostaria de comprar?",
+ "needToPurchaseGems": "Precisa comprar Gemas como presente?",
+ "wantToSendOwnGems": "Deseja enviar suas próprias Gemas?",
+ "howManyGemsSend": "Quantas Gemas você gostaria de enviar?",
+ "sendAGift": "Enviar presente",
+ "mysterySet202208": "Conjunto Rabo de Cavalo Radiante",
+ "mysterySet202209": "Conjunto Mágico Escolar"
}
diff --git a/website/common/locales/pt_BR/tasks.json b/website/common/locales/pt_BR/tasks.json
index 512f2e3139..07e019f075 100644
--- a/website/common/locales/pt_BR/tasks.json
+++ b/website/common/locales/pt_BR/tasks.json
@@ -139,5 +139,6 @@
"resetCounter": "Resetar Contador",
"adjustCounter": "Ajustar Contador",
"counter": "Contador",
- "editTagsText": "Editar Etiquetas"
+ "editTagsText": "Editar Etiquetas",
+ "taskSummary": "<%= type %> Resumo"
}
diff --git a/website/common/locales/ro/achievements.json b/website/common/locales/ro/achievements.json
index 48b5544fe9..f46438a0dd 100644
--- a/website/common/locales/ro/achievements.json
+++ b/website/common/locales/ro/achievements.json
@@ -2,78 +2,78 @@
"achievement": "Realizare",
"onwards": "Înainte!",
"levelup": "Prin atingerea scopurilor în viață, ai trecut la următorul nivel și viața îți este complet refăcută!",
- "reachedLevel": "Ai Atins Nivelul <%= level %>",
- "achievementLostMasterclasser": "Săvârșitorul de expediții: Seria Masterclass",
- "achievementLostMasterclasserText": "Ai terminat toate cele șaisprezece expediții în Seria de Expediții Masterclass și ai rezolvat misterul Masterclasser-ului Pierdut!",
- "achievementJustAddWater": "Doar adaugă apă",
+ "reachedLevel": "Ai atins nivelul <%= level %>",
+ "achievementLostMasterclasser": "Săvârșitorul de Aventuri: Seria Masterclass",
+ "achievementLostMasterclasserText": "A terminat toate cele șaisprezece aventuri în Seria de Aventuri Masterclasser și a rezolvat misterul Masterclasser-ului Pierdut!",
+ "achievementJustAddWater": "Doar Adaugă Apă",
"onboardingProgress": "<%= percentage %>% progres",
"letsGetStarted": "Să începem!",
"hideAchievements": "Ascunde <%= category %>",
- "foundNewItems": "Ai găsit obiecte noi!",
- "foundNewItemsExplanation": "Completând sarcini primești șansa de a găsi obiecte, precum Ouă, Poțiuni de Eclozat, și Mâncare de Animale.",
+ "foundNewItems": "Ai găsit elemente noi!",
+ "foundNewItemsExplanation": "Completând sarcini primești șansa de a găsi elemente, precum Ouă, Poțiuni de Eclozat, și Mâncare de Animale.",
"foundNewItemsCTA": "Mergi la Inventar și încearcă să combini noua ta poțiune de eclozat cu un ou!",
- "achievementLostMasterclasserModalText": "Ai completat toate cele șaisprezece sarcini din Seria de Sarcini Masterclasser și ai rezolvat misterul Masterclasser-ului Pierdut!",
+ "achievementLostMasterclasserModalText": "Ai terminat toate cele șaisprezece aventuri în Seria de Aventuri Masterclasser și ai rezolvat misterul Masterclasser-ului Pierdut!",
"achievementMindOverMatter": "Cu gândul pe chestiuni",
- "achievementMindOverMatterText": "A completat sarcinile pet Piatră, Slime și Fire.",
- "achievementMindOverMatterModalText": "Ai completat sarcinile animal de companie Piatră, Slime și Fire!",
- "achievementJustAddWaterText": "A completat sarcinile pet Caracatiță, Cal de Mare, Sepie, Balenă, Țestoasă, Nudibranhii, Șarpe de Mare, și Delfin!",
- "achievementJustAddWaterModalText": "Ai completat sarcinile pet Caracatiță, Cal de Mare, Sepie, Balenă, Țestoasă, Nudibranhii, Șarpe de Mare, și Delfin!",
+ "achievementMindOverMatterText": "A completat aventurile de animal de companie Piatră, Noroi și Fire.",
+ "achievementMindOverMatterModalText": "Ai completat aventurile de animal de companie Piatră, Noroi și Fire!",
+ "achievementJustAddWaterText": "A completat aventurile de animal de companie Caracatiță, Cal de Mare, Sepie, Balenă, Țestoasă, Nudibranhii, Șarpe de Mare, și Delfin.",
+ "achievementJustAddWaterModalText": "Ai completat aventurile de animal de companie Caracatiță, Cal de Mare, Sepie, Balenă, Țestoasă, Nudibranhii, Șarpe de Mare, și Delfin!",
"achievementBackToBasics": "Înapoi la începuturi",
- "achievementBackToBasicsText": "A colecționat toate Animalele de companie de Bază.",
- "achievementBackToBasicsModalText": "Ai colecționat toate Animalele de companie de Bază!",
+ "achievementBackToBasicsText": "A colecționat toate Animalele de Companie de Bază.",
+ "achievementBackToBasicsModalText": "Ai colecționat toate Animalele de Companie de Bază!",
"achievementAllYourBase": "Toată Baza ta",
- "achievementAllYourBaseText": "A îmblânzit toate Monturile de Bază.",
- "achievementAllYourBaseModalText": "Ai îmblânzit toate Monturile de Bază!",
- "achievementDustDevil": "Diavolul de praf",
- "achievementDustDevilText": "A colecționat toate Animalele de companie de Deșert.",
- "achievementDustDevilModalText": "Ai colecționat toate Animalele de companie de Deșert!",
+ "achievementAllYourBaseText": "A îmblânzit toate Animalele de Călărit de Bază.",
+ "achievementAllYourBaseModalText": "Ai îmblânzit toate Animalele de Călărit de Bază!",
+ "achievementDustDevil": "Diavolul de Praf",
+ "achievementDustDevilText": "A colecționat toate Animalele de Companie de Deșert.",
+ "achievementDustDevilModalText": "Ai colecționat toate Animalele de Companie de Deșert!",
"achievementPartyUp": "Te-ai aliat cu un membru al partidului!",
"achievementAridAuthority": "Autoritate Aridă",
- "achievementAridAuthorityText": "A îmblânzit toate Monturile de Deșert.",
- "achievementAridAuthorityModalText": "Ai îmblânzit toate Monturile de Deșert!",
- "achievementKickstarter2019": "Pin Kickstarter Backer",
- "achievementKickstarter2019Text": "Backed the 2019 Pin Kickstarter Project",
- "achievementPartyOn": "Your party grew to 4 members!",
- "achievementMonsterMagus": "Monster Magus",
- "achievementMonsterMagusText": "Has collected all Zombie Pets.",
- "achievementMonsterMagusModalText": "You collected all the Zombie Pets!",
- "achievementUndeadUndertaker": "Undead Undertaker",
- "achievementUndeadUndertakerText": "Has tamed all Zombie Mounts.",
- "achievementUndeadUndertakerModalText": "You tamed all the Zombie Mounts!",
- "achievementCreatedTask": "Create your first task",
- "achievementCreatedTaskText": "Created their first task.",
- "achievementCreatedTaskModalText": "Add a task for something you would like to accomplish this week",
- "achievementCompletedTask": "Complete a task",
- "achievementCompletedTaskText": "Completed their first task.",
- "achievementCompletedTaskModalText": "Check off any of your tasks to earn rewards",
- "achievementHatchedPet": "Hatch a Pet",
- "achievementHatchedPetText": "Hatched their first pet.",
- "achievementHatchedPetModalText": "Head over to your inventory and try combining a hatching Potion and an Egg",
- "achievementFedPet": "Feed a Pet",
- "achievementFedPetText": "Fed their first pet.",
- "achievementFedPetModalText": "There are many different types of food, but Pets can be picky",
- "achievementPurchasedEquipment": "Purchase a piece of Equipment",
- "achievementPurchasedEquipmentText": "Purchased their first piece of equipment.",
- "achievementPurchasedEquipmentModalText": "Equipment is a way to customize your avatar and improve your Stats",
- "achievementPrimedForPainting": "Primed for Painting",
- "achievementPrimedForPaintingText": "Has collected all White Pets.",
- "achievementPrimedForPaintingModalText": "You collected all the White Pets!",
- "achievementPearlyPro": "Pearly Pro",
- "achievementPearlyProText": "Has tamed all White Mounts.",
- "achievementPearlyProModalText": "You tamed all the White Mounts!",
- "achievementTickledPink": "Tickled Pink",
- "achievementTickledPinkText": "Has collected all Cotton Candy Pink Pets.",
- "achievementTickledPinkModalText": "You collected all the Cotton Candy Pink Pets!",
- "achievementRosyOutlook": "Rosy Outlook",
- "achievementRosyOutlookText": "Has tamed all Cotton Candy Pink Mounts.",
- "achievementRosyOutlookModalText": "You tamed all the Cotton Candy Pink Mounts!",
- "achievementBugBonanza": "Bug Bonanza",
- "achievementBugBonanzaText": "Has completed Beetle, Butterfly, Snail, and Spider pet quests.",
- "achievementBugBonanzaModalText": "You completed the Beetle, Butterfly, Snail, and Spider pet quests!",
- "showAllAchievements": "Arată tot <%= category %>",
+ "achievementAridAuthorityText": "A îmblânzit toate Animalele de Călărit de Deșert.",
+ "achievementAridAuthorityModalText": "Ai îmblânzit toate Animalele de Călărit de Deșert!",
+ "achievementKickstarter2019": "Susținător Pin Kickstarter",
+ "achievementKickstarter2019Text": "A susținut proiectul Pin Kickstarter 2019",
+ "achievementPartyOn": "Echipa ta a crescut la 4 membri!",
+ "achievementMonsterMagus": "Monstrul Magus",
+ "achievementMonsterMagusText": "A colecționat toate Animalele de Companie Zombie.",
+ "achievementMonsterMagusModalText": "Ai colecționat toate Animalele de Companie Zombie!",
+ "achievementUndeadUndertaker": "Gropar Strigoi",
+ "achievementUndeadUndertakerText": "A îmblănzit toate Animalele de Călărit Zombie.",
+ "achievementUndeadUndertakerModalText": "Ai îmblănzit toate Animalele de Călărit Zombie!",
+ "achievementCreatedTask": "Creează-ți prima sarcină",
+ "achievementCreatedTaskText": "Au creat prima lor sarcină.",
+ "achievementCreatedTaskModalText": "Adăugă o sarcină pentru ceva ce dorești să realizezi în această săptămână",
+ "achievementCompletedTask": "Finalizează o sarcină",
+ "achievementCompletedTaskText": "Au îndeplinit prima lor sarcină.",
+ "achievementCompletedTaskModalText": "Bifează oricare dintre sarcinile tale pentru a câștiga recompense",
+ "achievementHatchedPet": "Eclozează un Animal de Companie",
+ "achievementHatchedPetText": "Au eclozat primul lor animal de companie.",
+ "achievementHatchedPetModalText": "Mergi la inventarul tău și încercă să combini o Poțiune de eclozat și un Ou",
+ "achievementFedPet": "Hrănește un Animal de Companie",
+ "achievementFedPetText": "Au hrănit primul lor animal de companie.",
+ "achievementFedPetModalText": "Există multe tipuri diferite de alimente, dar Animalele de Companie pot fi pretențioase",
+ "achievementPurchasedEquipment": "Achiziționează o bucată de Echipament",
+ "achievementPurchasedEquipmentText": "Și-au cumpărat prima bucată de echipament.",
+ "achievementPurchasedEquipmentModalText": "Echipamentul este o modalitate de ați personaliza avatarul și de ați îmbunătăți Statisticile",
+ "achievementPrimedForPainting": "Grunduit pentru Pictură",
+ "achievementPrimedForPaintingText": "A strâns toate Animalele de Companie Albe.",
+ "achievementPrimedForPaintingModalText": "Ai colecționat toate Animalele de Companie Albe!",
+ "achievementPearlyPro": "Profesional Perlat",
+ "achievementPearlyProText": "A îmblânzit toate Animalele de Călărit Albe.",
+ "achievementPearlyProModalText": "Ai îmblânzit toate Animalele de Călărit Albe!",
+ "achievementTickledPink": "Roz Gâdilat",
+ "achievementTickledPinkText": "A colecționat toate Animalele de Companie Roz ca Vata de Zahăr.",
+ "achievementTickledPinkModalText": "Ai colecționat toate Animalele de Companie Roz ca Vata de Zahăr!",
+ "achievementRosyOutlook": "Perspectiva Roz",
+ "achievementRosyOutlookText": "A îmblânzit toate Animalele de Călărit Roz ca Vata de Zahăr.",
+ "achievementRosyOutlookModalText": "Ai îmblânzit toate Animalele de Călărit Roz ca Vata de Zahăr!",
+ "achievementBugBonanza": "Gândacul Prețios",
+ "achievementBugBonanzaText": "A completat aventurile de animal de companie Gândacul, Fluturele, Melcul și Păianjenul.",
+ "achievementBugBonanzaModalText": "Ai completat aventurile de animal de companie Gândacul, Fluturele, Melcul și Păianjenul!",
+ "showAllAchievements": "Arată Tot <%= category %>",
"onboardingCompleteDesc": "Ai obținut5 Realizări și100 Aur pentru completarea listei.",
"earnedAchievement": "Ai obținut o realizare!",
- "viewAchievements": "View Achievements",
+ "viewAchievements": "Vezi Realizările",
"gettingStartedDesc": "Completează aceste sarcini de acomodare și vei primi5 Realizări și100 Aur de îndată ce termini!",
"onboardingCompleteDescSmall": "Dacă vrei mai multe, aruncă o privire la Realizări și începe să colecționezi!",
"onboardingComplete": "Ai completat sarcinile de acomodare!",
@@ -82,46 +82,61 @@
"achievementBareNecessities": "Strictul necesar",
"achievementDomesticatedText": "A eclozat toate culorile standard ale animalelor de companie domesticate: Dihor, Porc de Guineea, Cocoș, Porc Zburător, Șobolan, Iepuraș, Cal, și Vacă!",
"achievementDomesticated": "E-I-E-I-O",
- "achievementAllThatGlitters": "Tot ce strălucește",
- "achievementSeeingRedModalText": "Ai colecționat toate Animalele de companie Roșii!",
+ "achievementAllThatGlitters": "Tot ce Strălucește",
+ "achievementSeeingRedModalText": "Ai colecționat toate Animalele de Companie Roșii!",
"achievementSeasonalSpecialist": "Specialist Sezonier",
- "achievementWildBlueYonderText": "A îmblânzit toate Monturile Vată Albastră.",
- "achievementWildBlueYonderModalText": "Ai îmblânzit toate Monturile Vată Albastră!",
- "achievementGoodAsGoldText": "A colecționat toate Animalele de companie Auri.",
- "achievementAllThatGlittersText": "A îmblânzit toate Monturile Aurii.",
+ "achievementWildBlueYonderText": "A îmblânzit toate Animalele de Călărit Albastre ca Vata de Zahăr.",
+ "achievementWildBlueYonderModalText": "Ai îmblânzit toate Animalele de Călărit Albastre ca Vata de Zahăr!",
+ "achievementGoodAsGoldText": "A colecționat toate Animalele de Companie Auri.",
+ "achievementAllThatGlittersText": "A îmblânzit toate Animalele de Călărit Aurii.",
"achievementDomesticatedModalText": "Ai colecționat toate animalele de companie domesticate!",
- "achievementBareNecessitiesText": "A completat sarcinile pet Maimuță, Leneș și Pomișor.",
- "achievementGoodAsGoldModalText": "Ai colecționat toate Animalele de companie Auri!",
- "achievementAllThatGlittersModalText": "Ai îmblânzit toate Monturile Aurii!",
- "achievementBareNecessitiesModalText": "Ai completat sarcinile pet Maimuță, Leneș și Pomișor!",
- "achievementBoneCollector": "Colecționar de oase",
- "achievementFreshwaterFriends": "Prieteni de apă dulce",
- "achievementBoneCollectorText": "A colecționat toate Animalele de companie Skeleton.",
- "achievementFreshwaterFriendsText": "A completat sarcinile pet Axolotl, Broască și Hipopotam.",
- "achievementBoneCollectorModalText": "Ai colecționat toate Animalele de companie Skeleton!",
- "achievementFreshwaterFriendsModalText": "Ai completat sarcinile pet Axolotl, Broască și Hipopotam!",
- "achievementSkeletonCrew": "Gașca Skeleton",
- "achievementGoodAsGold": "Bun precum aurul",
- "achievementSkeletonCrewText": "A îmblânzit toate Monturile Skeleton.",
- "achievementSkeletonCrewModalText": "Ai îmblânzit toate Monturile Skeleton!",
- "achievementSeeingRed": "Văzând roșu",
- "achievementSeeingRedText": "A colecționat toate Animalele de companie Roșii.",
+ "achievementBareNecessitiesText": "A completat aventurile de animal de companie Maimuță, Leneș și Pomișor.",
+ "achievementGoodAsGoldModalText": "Ai colecționat toate Animalele de Companie Auri!",
+ "achievementAllThatGlittersModalText": "Ai îmblânzit toate Animalele de Călărit Aurii!",
+ "achievementBareNecessitiesModalText": "Ai completat aventurile de animal de companie Maimuță, Leneș și Pomișor!",
+ "achievementBoneCollector": "Colecționar de Oase",
+ "achievementFreshwaterFriends": "Prieteni de Apă Dulce",
+ "achievementBoneCollectorText": "A colecționat toate Animalele de Companie Schelet.",
+ "achievementFreshwaterFriendsText": "A completat aventurile de animal de companie Axolotl, Broască și Hipopotam.",
+ "achievementBoneCollectorModalText": "Ai colecționat toate Animalele de Companie Schelet!",
+ "achievementFreshwaterFriendsModalText": "Ai completat aventurile de animal de companie Axolotl, Broască și Hipopotam!",
+ "achievementSkeletonCrew": "Gașca Schelet",
+ "achievementGoodAsGold": "Bun Precum Aurul",
+ "achievementSkeletonCrewText": "A îmblânzit toate Animalele de Călărit Schelet.",
+ "achievementSkeletonCrewModalText": "Ai îmblânzit toate Animalele de Călărit Schelet!",
+ "achievementSeeingRed": "Văzând Roșu",
+ "achievementSeeingRedText": "A colecționat toate Animalele de Companie Roșii.",
"achievementRedLetterDay": "Ziua Literei Roșii",
- "achievementRedLetterDayText": "A îmblânzit toate Monturile Roșii.",
- "achievementRedLetterDayModalText": "Ai îmblânzit toate Monturile Roșii!",
+ "achievementRedLetterDayText": "A îmblânzit toate Animalele de Călărit Roșii.",
+ "achievementRedLetterDayModalText": "Ai îmblânzit toate Animalele de Călărit Roșii!",
"achievementLegendaryBestiary": "Bestiar Legendar",
"achievementLegendaryBestiaryText": "A eclozat toate culorile standard ale animalelor de companie mitice: Dragon, Porc Zburător, Gryphon, Șarpe de Mare, și Unicorn!",
"achievementLegendaryBestiaryModalText": "Ai colecționat toate animalele de companie mitice!",
- "achievementSeasonalSpecialistText": "A completat toate sarcinile de Primăvară și Iarnă: Vânătoarea de Ouă, Moșul Trapper, și Găsește cubul!",
- "achievementSeasonalSpecialistModalText": "Ai completat toate sarcinile sezoniere!",
+ "achievementSeasonalSpecialistText": "A completat aventurile sezoniere de Primăvară și Iarnă: Vânătoarea de Ouă, Moșul Trapper, și Găsește Cubul!",
+ "achievementSeasonalSpecialistModalText": "Ai completat toate aventurile sezoniere!",
"achievementVioletsAreBlue": "Violetele sunt Albastre",
- "achievementVioletsAreBlueText": "A colecționat toate Animalele de companie Vată Albastră.",
- "achievementVioletsAreBlueModalText": "Ai colecționat toate Animalele de companie Vată Albastră!",
+ "achievementVioletsAreBlueText": "A colecționat toate Animalele de Companie Albastre ca Vata de Zahăr.",
+ "achievementVioletsAreBlueModalText": "A colecționat toate Animalele de Companie Albastre ca Vata de Zahăr!",
"achievementWildBlueYonder": "În depărtări",
"achievementShadyCustomer": "Client Dubios",
- "achievementShadyCustomerText": "Ai colecționat toate Animalele de companie Umbrite.",
- "achievementShadyCustomerModalText": "Ai colecționat toate Animalele de companie Umbrite!",
- "achievementShadeOfItAll": "Umbra a toate",
- "achievementShadeOfItAllText": "A îmblânzit toate Monturile Umbrite.",
- "achievementShadeOfItAllModalText": "Ai îmblânzit toate Monturile Umbrite!"
+ "achievementShadyCustomerText": "Ai colecționat toate Animalele de Companie Umbrite.",
+ "achievementShadyCustomerModalText": "Ai colecționat toate Animalele de Companie Umbrite!",
+ "achievementShadeOfItAll": "Umbra a Toate",
+ "achievementShadeOfItAllText": "A îmblânzit toate Animalele de Călărit Umbrite.",
+ "achievementShadeOfItAllModalText": "Ai îmblânzit toate Animalele de Călărit Umbrite!",
+ "achievementZodiacZookeeper": "Îngrijitor Zoo Zodiac",
+ "achievementBirdsOfAFeatherText": "A eclozat toate culorile standard ale animalelor de companie zburătoare: Porc Zburător, Bufniță, Papagal, Pterodactil, Grifon, Șoim, Păun și Cocoș!",
+ "achievementBirdsOfAFeather": "Păsări Dintr-o Penă",
+ "achievementBirdsOfAFeatherModalText": "Ai colecționat toate animalele de companie zburătoare!",
+ "achievementZodiacZookeeperText": "A eclozat toate culorile standard ale animalelor de companie zodiacale: Șobolan, Vacă, Iepuraș, Șarpe, Cal, Oaie, Maimuță, Cocoș, Lup, Tigru, Porc Zburător și Dragon!",
+ "achievementZodiacZookeeperModalText": "Ai colecționat toate animalele de companie din zodiac!",
+ "achievementGroupsBeta2022": "Tester Interactiv Beta",
+ "achievementGroupsBeta2022Text": "Tu și grupul tău ați oferit feedback neprețuit pentru a ajuta Habitica să testeze.",
+ "achievementGroupsBeta2022ModalText": "Tu și grupurile tale ați ajutat Habitica testând și oferind feedback!",
+ "achievementWoodlandWizard": "Vrăjitorul Pădurii",
+ "achievementWoodlandWizardText": "A eclozat toate culorile standard ale creaturilor din pădure: Bursucul, Ursul, Căprioara, Vulpea, Broasca, Ariciul, Bufnița, Melcul, Veverița și Copacul!",
+ "achievementWoodlandWizardModalText": "Ai colecționat toate animalele de companie din pădure!",
+ "achievementReptacularRumble": "Bubuit Reptacular",
+ "achievementReptacularRumbleText": "A eclozat toate culorile standard ale animalelor de companie reptile: Aligator, Pterodactil, Șarpe, Triceratops, Țestoasă, Tiranozaur Rex și Velociraptor!",
+ "achievementReptacularRumbleModalText": "Ai colecționat toate animalele de companie reptile!"
}
diff --git a/website/common/locales/ro/challenge.json b/website/common/locales/ro/challenge.json
index 638d898d43..faafa7d3bb 100644
--- a/website/common/locales/ro/challenge.json
+++ b/website/common/locales/ro/challenge.json
@@ -63,7 +63,7 @@
"findChallenges": "Descoperă Provocări",
"noChallengeTitle": "Nu ai nici o Provocare.",
"challengeDescription1": "Provocările sunt evenimente comunitare în care jucătorii concurează și câștigă premii prin completarea unui grup de sarcini înrudite.",
- "challengeDescription2": "Găsește Provocări recomandate în funcție de interesele tale, navighează Provocările publice din Habitica sau crează propriile Provocări.",
+ "challengeDescription2": "Găsește Provocări recomandate în funcție de interesele tale, navighează Provocările publice din Habitica sau crează propriile Provocări.",
"noChallengeMatchFilters": "Nu am putut găsi nicio Provocare.",
"createdBy": "Creat de",
"joinChallenge": "Alătură-te Provocării",
@@ -103,5 +103,6 @@
"selectParticipant": "Alege un Participant",
"wonChallengeDesc": "<%= challengeName %> te-a ales câștigător! Victoria ta a fost înregistrată în realizările tale.",
"yourReward": "Recompensa ta",
- "filters": "Filtre"
+ "filters": "Filtre",
+ "removeTasks": "Șterge Țelurile"
}
diff --git a/website/common/locales/ro/character.json b/website/common/locales/ro/character.json
index c5c88087d2..3b0313798b 100644
--- a/website/common/locales/ro/character.json
+++ b/website/common/locales/ro/character.json
@@ -72,7 +72,7 @@
"gainedLevel": "Ai crescut un nivel!",
"leveledUp": "Îndeplinindu-ți obiectivele din viața reală, ai crescut până la Level <%= level %>!",
"huzzah": "Uraaa!",
- "mana": "Mana",
+ "mana": "Mană",
"hp": "PV",
"mp": "PM",
"xp": "XP",
@@ -85,7 +85,7 @@
"allocatePerPop": "Adaugă un Punct la Percepție",
"allocateInt": "Puncte atribuite la INT:",
"allocateIntPop": "Adaugă un Punct la Inteligență",
- "noMoreAllocate": "Acum că ai atins nivelul 100, nu vei mai primi Puncte de Status suplimentare. Poți continua să îți crești nivelul, sau să începi o nouă aventură de la nivelul 1, folosind Globul Renașterii!",
+ "noMoreAllocate": "Acum că ai atins nivelul 100, nu vei mai primi Puncte de Status suplimentare. Poți continua să îți crești nivelul, sau să începi o nouă aventură de la nivelul 1, folosind Globul Renașterii!",
"stats": "Status",
"achievs": "Realizari",
"strength": "Forță",
@@ -166,7 +166,7 @@
"notEnoughAttrPoints": "Nu ai suficiente Puncte.",
"classNotSelected": "Ca să poți atribui Punctele, trebuie mai întâi să selectezi o Clasă.",
"style": "Stil",
- "facialhair": "Facial",
+ "facialhair": "facial",
"photo": "Poză",
"info": "Info",
"joined": "Alăturat",
diff --git a/website/common/locales/ro/npc.json b/website/common/locales/ro/npc.json
index 0ce5f47c9a..98d423b4ca 100644
--- a/website/common/locales/ro/npc.json
+++ b/website/common/locales/ro/npc.json
@@ -129,5 +129,6 @@
"invalidUnlockSet": "Acest set de obiecte este nevalid și nu poate fi deblocat.",
"nMonthsSubscriptionGift": "<%= nMonths %> Abonament(e) Lunar (Cadou)",
"nGemsGift": "<%= nGems %> Nestemate (Cadou)",
- "nGems": "<%= nGems %> Nestemate"
+ "nGems": "<%= nGems %> Nestemate",
+ "amountExp": "<%= amount %> Exp"
}
diff --git a/website/common/locales/ro/overview.json b/website/common/locales/ro/overview.json
index 90afa62c23..5c5a44b371 100644
--- a/website/common/locales/ro/overview.json
+++ b/website/common/locales/ro/overview.json
@@ -1,10 +1,10 @@
{
"needTips": "Ai nevoie de ponturi pentru început? Poftim un ghid!",
"step1": "Pasul 1: Introdu Sarcina",
- "webStep1Text": "Habitica nu este nimic fără obiective din lumea reală, așa că introduceți câteva sarcini. Poți adăuga mai multe mai târziu! Toate sarcinile pot fi adăugate făcând click pe butonul verde „Creare”.\n* **Configurare [Sarcini](http://habitica.fandom.com/wiki/To-Dos):** Introdu sarcini pe care le faci o dată sau mai rar în coloana Sarcini, câte una pe rând. Poți face click pe sarcini pentru a le edita și adăuga liste de verificare, date scadente și multe altele!\n* **Configurare [Cotidiene](http://habitica.fandom.com/wiki/Dailies):** Introdu activități pe care trebuie să le efectuezi zilnic sau într-o anumită zi a săptămânii, lunii sau anului în coloana Cotidienelor. Fă click pe sarcină pentru a edita data la care va fi scadent și/sau setează o dată de început. Poți, de asemenea, să-l pui scadent în mod repetat, de exemplu, la fiecare 3 zile.\n* **Configurați [Obiceiuri](http://habitica.fandom.com/wiki/Habits):** Introdu obiceiurile pe care dorești să le stabilești în coloana Obiceiuri. Puteți edita Obiceiul pentru a-l schimba doar într-un obicei bun: :heavy_plus_sign: sau un obicei rău :heavy_minus_sign:\n* **Configurare [Recompense](http://habitica.fandom.com/wiki/Rewards):** Pe lângă Recompensele oferite în joc, adăugă activități sau tratamente pe care dorești să le utilizezi ca motivare la coloana de Recompense. Este important să îți oferi o pauză sau să îți permiți o îngăduință cu moderație!\n* Dacă ai nevoie de inspirație pentru ce sarcini să adaugi, poți consulta paginile wiki din [Exemple de Obiceiuri](http://habitica.fandom.com/wiki/Sample_Habits), [Exemple de Cotidiene](http: //habitica.fandom .com / wiki / Sample_Dailies), [Exemple de Sarcini](http://habitica.fandom.com/wiki/Sample_To-Dos) și [Exemple de Recompense](http://habitica.fandom.com/wiki/ Sample_Custom_Rewards).",
+ "webStep1Text": "Habitica nu este nimic fără obiective din lumea reală, așa că introduceți câteva sarcini. Poți adăuga mai multe mai târziu! Toate sarcinile pot fi adăugate făcând click pe butonul verde „Creare”.\n* **Configurare [Sarcini](https://habitica.fandom.com/wiki/To_Do%27s):** Introdu sarcini pe care le faci o dată sau mai rar în coloana Sarcini, câte una pe rând. Poți face click pe sarcini pentru a le edita și adăuga liste de verificare, date scadente și multe altele!\n* **Configurare [Cotidiene](https://habitica.fandom.com/wiki/Dailies):** Introdu activități pe care trebuie să le efectuezi zilnic sau într-o anumită zi a săptămânii, lunii sau anului în coloana Cotidienelor. Fă click pe sarcină pentru a edita data la care va fi scadent și/sau setează o dată de început. Poți, de asemenea, să-l pui scadent în mod repetat, de exemplu, la fiecare 3 zile.\n* **Configurați [Obiceiuri](https://habitica.fandom.com/wiki/Habits):** Introdu obiceiurile pe care dorești să le stabilești în coloana Obiceiuri. Puteți edita Obiceiul pentru a-l schimba doar într-un obicei bun: :heavy_plus_sign: sau un obicei rău :heavy_minus_sign:\n* **Configurare [Recompense](https://habitica.fandom.com/wiki/Rewards):** Pe lângă Recompensele oferite în joc, adăugă activități sau tratamente pe care dorești să le utilizezi ca motivare la coloana de Recompense. Este important să îți oferi o pauză sau să îți permiți o îngăduință cu moderație!\n* Dacă ai nevoie de inspirație pentru ce sarcini să adaugi, poți consulta paginile wiki din [Exemple de Obiceiuri](https://habitica.fandom.com/wiki/Sample_Habits), [Exemple de Cotidiene](https: //habitica.fandom .com / wiki / Sample_Dailies), [Exemple de Sarcini](https://habitica.fandom.com/wiki/Sample_To_Do%27s) și [Exemple de Recompense](https://habitica.fandom.com/wiki/ Sample_Custom_Rewards).",
"step2": "Pasul 2: Câștigă puncte Făcând Lucruri în Viața Reală",
- "webStep2Text": "Acum, începe să abordezi obiectivele din listă! Pe măsură ce finalizezi sarcinile și le verifici în Habitica, vei câștiga [Experiență](http://habitica.fandom.com/wiki/Experience_Points), care te ajută să crească nivelul, și [Aur](http: // habitica. fandom.com/wiki/Gold_Points), care îți permite să cumperi Recompense. Dacă pici în mrejele obiceiurilor proaste sau nu îți faci Cotidianele, vei pierde [Sănătate](http://habitica.fandom.com/wiki/Health_Points). În acest sens, barele Habitica de Experiență și de Sănătate sunt un indicator distractiv al progresului tău către obiectivele tale. Vei începe să vezi că viața ta reală se îmbunătățește pe măsură ce personajul tău avansează în joc.",
- "step3": "Pasul 3: Personalizați și explorați Habitica",
- "webStep3Text": "După ce vă familiarizați cu elementele de bază, puteți să vă extrageți și mai mult din Habitica cu aceste caracteristici extraordinare:\n * Organizați-vă sarcinile cu [tag-uri](https://habitica.fandom.com/wiki/Tags) (editați o Sarcină pentru a le adăuga).\n * Personalizați-vă [Avatarul](https://habitica.fandom.com/wiki/Avatar) făcând clic pe pictograma utilizatorului din colțul din dreapta sus.\n * Cumpărați-vă [Echipamentul](https://habitica.fandom.com/wiki/Equipment) de sub Recompense sau de la [Magazine](<%= shopUrl %>), și schimbați-l în [Inventar> Echipament](<%= equipUrl %>).\n * Conectați-vă cu alți utilizatori prin [Taclale la cârciumă](https://habitica.fandom.com/wiki/Tavern).\n * Eclozați [Companioni](https://habitica.fandom.com/wiki/Pets) colectând [Ouă](https://habitica.fandom.com/wiki/Eggs) și [Poțiuni de Eclozat(https://habitica.fandom.com/wiki/Hatching_Potions). [Hrănește-i](https://habitica.fandom.com/wiki/Food) pentru a crea [Animale de Călărit](https://habitica.fandom.com/wiki/Mounts).\n * La nivelul 10: Alegeți o anumită [Clasă](https://habitica.fandom.com/wiki/Class_System) și apoi utilizați [Abilități] specifice clasei (https://habitica.fandom.com/wiki/Skills) (nivelurile 11 - 14).\n * Formați o Echipă cu prietenii dvs. (făcând clic pe [Echipă](<%= partyUrl %>) în bara de navigare) pentru a rămâne responsabil și pentru a câștiga o Aventură.\n * Învingeți monștrii și colectați obiecte în [Aventuri](https://habitica.fandom.com/wiki/Quests) (vi se va da o misiune la nivelul 15).",
+ "webStep2Text": "Acum, începe să abordezi obiectivele din listă! Pe măsură ce finalizezi sarcinile și le verifici în Habitica, vei câștiga [Experiență](https://habitica.fandom.com/wiki/Experience_Points), care te ajută să crească nivelul, și [Aur](https: // habitica. fandom.com/wiki/Gold_Points), care îți permite să cumperi Recompense. Dacă pici în mrejele obiceiurilor proaste sau nu îți faci Cotidianele, vei pierde [Sănătate](https://habitica.fandom.com/wiki/Health_Points). În acest sens, barele Habitica de Experiență și de Sănătate sunt un indicator distractiv al progresului tău către obiectivele tale. Vei începe să vezi că viața ta reală se îmbunătățește pe măsură ce personajul tău avansează în joc.",
+ "step3": "Pasul 3: Personalizați și Explorați Habitica",
+ "webStep3Text": "După ce vă familiarizați cu elementele de bază, puteți să vă extrageți și mai mult din Habitica cu aceste caracteristici extraordinare:\n * Organizați-vă sarcinile cu [tag-uri](https://habitica.fandom.com/wiki/Tags) (editați o Sarcină pentru a le adăuga).\n * Personalizați-vă [Avatarul](https://habitica.fandom.com/wiki/Avatar) făcând clic pe pictograma utilizatorului din colțul din dreapta sus.\n * Cumpărați-vă [Echipamentul](https://habitica.fandom.com/wiki/Equipment) de sub Recompense sau de la [Magazine](<%= shopUrl %>), și schimbați-l în [Inventar> Echipament](<%= equipUrl %>).\n * Conectați-vă cu alți utilizatori prin [Taclale la cârciumă](https://habitica.fandom.com/wiki/Tavern).\n * Eclozați [Companioni](https://habitica.fandom.com/wiki/Pets) colectând [Ouă](https://habitica.fandom.com/wiki/Eggs) și [Poțiuni de Eclozat](https://habitica.fandom.com/wiki/Hatching_Potions). [Hrănește-i](https://habitica.fandom.com/wiki/Food) pentru a crea [Animale de Călărit](https://habitica.fandom.com/wiki/Mounts).\n * La nivelul 10: Alegeți o anumită [Clasă](https://habitica.fandom.com/wiki/Class_System) și apoi utilizați [Abilități] specifice clasei (https://habitica.fandom.com/wiki/Skills) (nivelurile 11 - 14).\n * Formați o Echipă cu prietenii dvs. (făcând clic pe [Echipă](<%= partyUrl %>) în bara de navigare) pentru a rămâne responsabil și pentru a câștiga o Aventură.\n * Învingeți monștrii și colectați obiecte în [Aventuri](https://habitica.fandom.com/wiki/Quests) (vi se va da o misiune la nivelul 15).",
"overviewQuestions": "Ai întrebări? Vezi [FAQ](<%= faqUrl %>)! Dacă întrebarea ta nu este menționată acolo, poți solicita ajutor suplimentar în [Ghilda de asistență Habitica](<%= helpGuildUrl %>).\n\nMult noroc cu sarcinile tale!"
}
diff --git a/website/common/locales/ro/quests.json b/website/common/locales/ro/quests.json
index 1733191497..c0f1252cd7 100644
--- a/website/common/locales/ro/quests.json
+++ b/website/common/locales/ro/quests.json
@@ -1,71 +1,71 @@
{
"quests": "Aventuri",
"quest": "aventură",
- "petQuests": "Pet and Mount Quests",
- "unlockableQuests": "Unlockable Quests",
- "goldQuests": "Masterclasser Quest Lines",
- "questDetails": "Quest Details",
+ "petQuests": "Aventuri de Animale de Companie și Călărit",
+ "unlockableQuests": "Aventuri deblocabile",
+ "goldQuests": "Linii Aventurii Masterclasser",
+ "questDetails": "Detalii de Aventură",
"questDetailsTitle": "Detalii despre Expediție",
- "questDescription": "Quests allow players to focus on long-term, in-game goals with the members of their party.",
- "invitations": "Invitations",
+ "questDescription": "Aventurile le permit jucătorilor să se concentreze asupra obiectivelor în joc pe termen lung cu membrii grupului lor.",
+ "invitations": "Invitații",
"completed": "Încheiat!",
"rewardsAllParticipants": "Recompense pentru toți Participanții la Expediție",
"rewardsQuestOwner": "Recompense suplimentare pentru Deținătorul Expediției",
- "inviteParty": "Invite Party to Quest",
+ "inviteParty": "Invită o Echipă la Aventură",
"questInvitation": "Invitație la Aventuri: ",
"questInvitationInfo": "Invitation for the Quest <%= quest %>",
- "invitedToQuest": "You were invited to the Quest <%= quest %>",
+ "invitedToQuest": "Ai fost invitat la Aventura <%= quest %>",
"askLater": "Întreabă-mă mai târziu",
"buyQuest": "Cumpără Aventură",
"accepted": "Acceptat",
- "declined": "Declined",
+ "declined": "Refuzat",
"rejected": "Refuzat",
"pending": "În așteptare",
- "questCollection": "+ <%= val %> quest item(s) found",
+ "questCollection": "+ <%= val %> Element(e) de Aventură găsit(e)",
"questDamage": "+ <%= val %> damage to boss",
"begin": "Începe",
- "bossHP": "Boss HP",
- "bossStrength": "Boss Strength",
- "rage": "Rage",
- "collect": "Collect",
+ "bossHP": "HP Căpcăun",
+ "bossStrength": "Putere Căpcăun",
+ "rage": "Furie",
+ "collect": "Colectează",
"collected": "Adunate",
"abort": "Abandon",
- "leaveQuest": "Leave Quest",
- "sureLeave": "Are you sure you want to leave the active quest? All your quest progress will be lost.",
+ "leaveQuest": "Părăsește Aventura",
+ "sureLeave": "Ești sigur că vrei să părăsești Aventura? Tot progresul tău va fi pierdut.",
"mustComplete": "Trebuie mai întâi să termini <%= quest %>.",
"mustLvlQuest": "Trebuie să ai nivelul <%= level %> ca să cumperi această aventură!",
- "unlockByQuesting": "To unlock this quest, complete <%= title %>.",
- "questConfirm": "Are you sure? Only <%= questmembers %> of your <%= totalmembers %> party members have joined this quest! Quests start automatically when all players have joined or rejected the invitation.",
- "sureCancel": "Ești sigur că vrei să anulezi această aventură? Toate invitațiile acceptate vor fi pierdute. Posesorul aventurii va păstra răvașul aventurii.",
- "sureAbort": "Ești sigur că vrei să abandonezi această misiune? Ea va fi abandonată pentru toți din echipa ta și tot progresul va fi pierdut.",
+ "unlockByQuesting": "Pentru a debloca această aventură, finalizează <%= title %>.",
+ "questConfirm": "Sigur vrei să începi această Aventură? Nu toți membrii partidului au acceptat invitația la Aventură. Aventurile încep automat după ce toți membrii răspund la invitație.",
+ "sureCancel": "Sigur dorești să anulezi această Aventură? Anularea Aventuri va anula toate invitațiile acceptate și în așteptare. Aventura va fi returnată în inventarul proprietarului.",
+ "sureAbort": "Sigur doriți să anulați această Aventură? Toate progresele vor fi pierdute. Aventura va fi returnată în inventarul proprietarului.",
"doubleSureAbort": "Ești sigur sigur ? Asigură-te că nu te vor urî pentru totdeauna!",
"bossRageTitle": "Furie",
- "bossRageDescription": "When this bar fills, the boss will unleash a special attack!",
+ "bossRageDescription": "Când această bară se umple, căpcăunul va declanșa un atac special!",
"startAQuest": "START A QUEST",
- "startQuest": "Start Quest",
- "questInvitationDoesNotExist": "No quest invitation has been sent out yet.",
- "questInviteNotFound": "No quest invitation found.",
- "guildQuestsNotSupported": "Guilds cannot be invited on quests.",
- "questNotOwned": "You don't own that quest scroll.",
- "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.",
- "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.",
- "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.",
- "questAlreadyAccepted": "You already accepted the quest invitation.",
+ "startQuest": "Începe Aventura",
+ "questInvitationDoesNotExist": "Nu a fost trimisă încă nicio invitație la aventură.",
+ "questInviteNotFound": "Nu a fost găsită nicio invitație la aventură.",
+ "guildQuestsNotSupported": "Ghilde nu pot fi invitate în aventuri.",
+ "questNotOwned": "Nu deții acel pergament de aventură.",
+ "questNotGoldPurchasable": "Aventura \"<%= key %>\" nu poate fi cumpărată de aur.",
+ "questNotGemPurchasable": "Aventura \"<%= key %>\" nu se poate cumpăra cu nestemate.",
+ "questAlreadyUnderway": "Petrecerea ta este deja într-o aventură. Încercați din nou când aventura curentă s-a încheiat.",
+ "questAlreadyAccepted": "Ați acceptat deja invitația la aventura.",
"noActiveQuestToLeave": "No active quest to leave",
- "questLeaderCannotLeaveQuest": "Quest leader cannot leave quest",
- "notPartOfQuest": "You are not part of the quest",
- "youAreNotOnQuest": "You're not on a quest",
- "noActiveQuestToAbort": "There is no active quest to abort.",
- "onlyLeaderAbortQuest": "Only the group or quest leader can abort a quest.",
- "questAlreadyRejected": "You already rejected the quest invitation.",
- "cantCancelActiveQuest": "You can not cancel an active quest, use the abort functionality.",
- "onlyLeaderCancelQuest": "Only the group or quest leader can cancel the quest.",
- "questNotPending": "There is no quest to start.",
- "questOrGroupLeaderOnlyStartQuest": "Only the quest leader or group leader can force start the quest",
+ "questLeaderCannotLeaveQuest": "Liderul aventurii nu poate părăsi aventura",
+ "notPartOfQuest": "Nu faci parte din aventură",
+ "youAreNotOnQuest": "Nu ești într-o aventură",
+ "noActiveQuestToAbort": "Nu există nicio aventură activă pentru a avorta.",
+ "onlyLeaderAbortQuest": "Doar grupul sau liderul aventurii poate anula o aventură.",
+ "questAlreadyRejected": "Ai respins deja invitația la aventură.",
+ "cantCancelActiveQuest": "Nu poți anula o aventură activă, utilizează funcția de avort.",
+ "onlyLeaderCancelQuest": "Doar grupul sau liderul aventurii poate anula o aventură.",
+ "questNotPending": "Nu există nicio aventură pentru a începe.",
+ "questOrGroupLeaderOnlyStartQuest": "Numai liderul aventurii sau liderul grupului poate forța începerea aventurii",
"loginIncentiveQuest": "To unlock this quest, check in to Habitica on <%= count %> different days!",
"loginReward": "<%= count %> Check-ins",
"questBundles": "Discounted Quest Bundles",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "noQuestToStart": "Încearcă să verifici \">Quest Shop pentru a găsi noile versiuni!",
"pendingDamage": "<%= damage %> pending damage",
"pendingDamageLabel": "pending damage",
"bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
@@ -81,9 +81,22 @@
"chatBossDontAttack": "<%= username %> attacks <%= bossName %> for <%= userDamage %> damage. <%= bossName %> does not attack, because it respects the fact that there are some bugs post-maintenance, and it doesn't want to hurt anyone unfairly. It will continue its rampage soon!",
"chatBossDamage": "<%= username %> attacks <%= bossName %> for <%= userDamage %> damage. <%= bossName %> attacks party for <%= bossDamage %> damage.",
"chatQuestStarted": "Your quest, <%= questName %>, has started.",
- "questAlreadyStartedFriendly": "The quest has already started, but you can always catch the next one!",
- "questAlreadyStarted": "The quest has already started.",
- "questInvitationNotificationInfo": "You were invited to join a quest",
- "hatchingPotionQuests": "Magic Hatching Potion Quests",
- "bossDamage": "L-ai deteriorat pe Căpcăun!"
+ "questAlreadyStartedFriendly": "Aventura a început deja, dar o poți prinde oricând pe următoarea!",
+ "questAlreadyStarted": "Aventura a început deja.",
+ "questInvitationNotificationInfo": "Ai fost invitat să te alăturați unei Aventuri",
+ "hatchingPotionQuests": "Aventuri de poțiune de eclozat magic",
+ "bossDamage": "L-ai deteriorat pe Căpcăun!",
+ "noQuestToStartTitle": "Nu poți găsi o Aventură pentru a începe?",
+ "yourPartyIsNotOnQuest": "Echipa ta nu este într-o Aventură",
+ "questItemsPending": "<%= amount %> Elemente în așteptare",
+ "sureLeaveInactive": "Ești sigur că vrei să părăsești Aventura? Nu vei putea participa.",
+ "selectQuest": "Selectează Aventura",
+ "membersParticipating": "<%= accepted %> / <%= invited %> Membrii participanti",
+ "ownerOnly": "Numai proprietarul",
+ "newItem": "Element nou",
+ "selectQuestModal": "Selectează o Aventură",
+ "yourQuests": "Aventurile tale",
+ "backToSelection": "Înapoi la selecția de Aventuri",
+ "cancelQuest": "Anulează Aventura",
+ "questOwner": "Proprietar de Aventuri"
}
diff --git a/website/common/locales/ro/rebirth.json b/website/common/locales/ro/rebirth.json
index e5252d1184..b3c6ee0e26 100644
--- a/website/common/locales/ro/rebirth.json
+++ b/website/common/locales/ro/rebirth.json
@@ -8,7 +8,7 @@
"rebirthOrb": "A folosit Globul Renașterii pentru a începe din nouă după atingerea Nivelului <%= level %>.",
"rebirthOrb100": "A folosit un Glob al Renașterii pentru a începe din nou după atingerea unui Nivel 100 sau mai mare.",
"rebirthOrbNoLevel": "A folosit un Glob al Renașterii pentru a începe din nou.",
- "rebirthPop": "Resetează-ți automat personajul la Luptător de Nivelul 1 păstrând realizările, lucrurile de colecție și echipamentul. Sarcinile tale și istoricul lor va rămâne, dar vor fi resetat pe galben. Șirurile tale vor fi eliminate cu excepția cele ale sarcinilor din Provocări active sau din Planurile Grupului. Aurul, Experiența, Mana și efectele Atributelor tale vor fi eliminate. Toate acestea vor avea loc instant. Pentru mai multe informații, intră pe pagina de informații de pe wiki despre Globul Renașterii.",
+ "rebirthPop": "Resetează-ți automat personajul la Războinic de Nivelul 1 păstrând realizările, lucrurile de colecție și echipamentul. Sarcinile tale și istoricul lor va rămâne, dar vor fi resetat pe galben. Șirurile tale vor fi eliminate cu excepția cele ale sarcinilor din Provocări active sau din Planurile Grupului. Aurul, Experiența, Mana și efectele Atributelor tale vor fi eliminate. Toate acestea vor avea loc instant. Pentru mai multe informații, intră pe pagina de informații de pe wiki despre Globul Renașterii.",
"rebirthName": "Globul Renașterii",
"rebirthComplete": "V-ați renăscut!",
"nextFreeRebirth": "<%= days %>zile până la Globului Renașterii GRATUIT"
diff --git a/website/common/locales/ru/achievements.json b/website/common/locales/ru/achievements.json
index 0123a506a7..66481f8241 100644
--- a/website/common/locales/ru/achievements.json
+++ b/website/common/locales/ru/achievements.json
@@ -132,5 +132,11 @@
"achievementBirdsOfAFeatherModalText": "Вы собрали всех летающих питомцев!",
"achievementReptacularRumble": "Рокот рептилий",
"achievementReptacularRumbleText": "Собраны все пресмыкающиеся питомцы: аллигатора, птеродактиля, змею, трицератопса, черепаху, тираннозавра и велоцираптора!",
- "achievementReptacularRumbleModalText": "Вы собрали всех пресмыкающихся питомцев!"
+ "achievementReptacularRumbleModalText": "Вы собрали всех пресмыкающихся питомцев!",
+ "achievementGroupsBeta2022Text": "Вы и ваша команда оказали неоценимую помощь в тестировании Habitica.",
+ "achievementGroupsBeta2022ModalText": "Вы и ваша команда помогли Habitica, участвуя в тестировании и предоставляя обратную связь!",
+ "achievementGroupsBeta2022": "Интерактивный бета-тестер",
+ "achievementWoodlandWizardModalText": "Вы собрали всех лесных питомцев!",
+ "achievementWoodlandWizard": "Лесной волшебник",
+ "achievementWoodlandWizardText": "Собраны все лесные питомцы: Барсук, Медведь, Олень, Лиса, Лягушонок, Еж, Сова, Улитка, Белка и Куст!"
}
diff --git a/website/common/locales/ru/backgrounds.json b/website/common/locales/ru/backgrounds.json
index 67399bef16..cef11441a8 100644
--- a/website/common/locales/ru/backgrounds.json
+++ b/website/common/locales/ru/backgrounds.json
@@ -695,10 +695,38 @@
"backgroundSpringtimeLakeNotes": "Полюбуйтесь видами вдоль берегов весеннего озера.",
"backgroundEnchantedMusicRoomText": "Зачарованная музыкальная комната",
"backgrounds052022": "Набор 96: Выпущен в мае 2022",
- "backgroundEnchantedMusicRoomNotes": "Играйте а зачарованный музыкальной комнате.",
+ "backgroundEnchantedMusicRoomNotes": "Играйте в зачарованной музыкальной комнате.",
"backgrounds042022": "Набор 95: Выпущен в апреле 2022",
"backgroundBlossomingTreesText": "Цветущие деревья",
"backgroundFlowerShopText": "Цветочный магазин",
"backgroundFlowerShopNotes": "Насладитесь сладким ароматом цветочного магазина.",
- "backgroundSpringtimeLakeText": "Весеннее озеро"
+ "backgroundSpringtimeLakeText": "Весеннее озеро",
+ "backgroundBioluminescentWavesText": "Биолюминесцентные волны",
+ "backgrounds072022": "Набор 98: Выпущен в июле 2022",
+ "backgroundBioluminescentWavesNotes": "Полюбуйтесь свечением биолюминесцентных волн.",
+ "backgroundUnderwaterCaveText": "Подводная пещера",
+ "backgroundUnderwaterCaveNotes": "Исследуйте подводную пещеру.",
+ "backgroundUnderwaterStatuesText": "Сад подводных скульптур",
+ "backgroundUnderwaterStatuesNotes": "Постарайтесь не моргать в саду подводных скульптур.",
+ "backgroundRainbowEucalyptusText": "Радужный эвкалипт",
+ "backgroundRainbowEucalyptusNotes": "Полюбуйтесь рощей радужных эвкалиптов.",
+ "backgroundMessyRoomText": "Грязная комната",
+ "backgroundByACampfireText": "У костра",
+ "backgroundByACampfireNotes": "Погрейтесь у костра.",
+ "backgrounds082022": "Набор 99: Выпущен в августе 2022",
+ "backgroundMessyRoomNotes": "Наведите порядок в комнате.",
+ "backgroundBeachWithDunesText": "Дюнный пляж",
+ "backgroundBeachWithDunesNotes": "Исследуйте дюнный пляж.",
+ "backgroundMountainWaterfallText": "Горный водопад",
+ "backgroundMountainWaterfallNotes": "Полюбуйтесь горным водопадом.",
+ "backgroundSailboatAtSunsetText": "Парусник на закате",
+ "backgroundSailboatAtSunsetNotes": "Насладитесь красотой парусника на закате.",
+ "backgrounds062022": "Набор 97: Выпущен в июне 2022",
+ "backgrounds092022": "Набор 100 : Выпущен в сентябре 2022",
+ "backgroundTheatreStageText": "Театральная сцена",
+ "backgroundTheatreStageNotes": "Выступайте на театральной сцене.",
+ "backgroundAutumnPicnicText": "Осенний пикник",
+ "backgroundAutumnPicnicNotes": "Насладитесь осенним пикником.",
+ "backgroundOldPhotoText": "Старая фотография",
+ "backgroundOldPhotoNotes": "Примите таинственную позу на старом фото."
}
diff --git a/website/common/locales/ru/challenge.json b/website/common/locales/ru/challenge.json
index 52bc56959c..a8b41be8f6 100644
--- a/website/common/locales/ru/challenge.json
+++ b/website/common/locales/ru/challenge.json
@@ -98,7 +98,7 @@
"categoiresRequired": "Должна быть выбрана как минимум одна категория",
"viewProgressOf": "Показать прогресс",
"viewProgress": "Показать прогресс",
- "selectMember": "Выбрать учасника",
+ "selectMember": "Выбрать участника",
"confirmKeepChallengeTasks": "Вы хотите оставить задания испытания?",
"selectParticipant": "Выбрать участника",
"filters": "Фильтры",
diff --git a/website/common/locales/ru/content.json b/website/common/locales/ru/content.json
index ba35572e38..87408ec164 100644
--- a/website/common/locales/ru/content.json
+++ b/website/common/locales/ru/content.json
@@ -371,5 +371,6 @@
"hatchingPotionSolarSystem": "Гелиосистемный",
"hatchingPotionMoonglow": "Луносветный",
"hatchingPotionOnyx": "Оникс",
- "hatchingPotionVirtualPet": "Виртуальный питомец"
+ "hatchingPotionVirtualPet": "Виртуальный питомец",
+ "hatchingPotionPorcelain": "Фарфоровый"
}
diff --git a/website/common/locales/ru/faq.json b/website/common/locales/ru/faq.json
index 025fecdcba..821dd55e4e 100644
--- a/website/common/locales/ru/faq.json
+++ b/website/common/locales/ru/faq.json
@@ -54,5 +54,6 @@
"webFaqAnswer12": "Всемирные Боссы - это особые монстры, которые появляются в Таверне. Все активные игроки автоматически начинают сражение с Боссом, и их задачи и умения наносят повреждения Боссу, так же, как и обычно. Также вы можете брать обычные Квесты, в тоже самое время, когда сражаетесь с Всемирным Боссом. Ваши задачи и умения будут влиять и на Всемирного Босса, и на Босса/Собираемый Квест в вашей команде. Всемирный Босс никогда не побьёт вас лично, и не сломает ваш аккаунт. Но у него есть индикатор Ярости, который заполняется, когда игроки пропускают ежедневные задания. Если Ярость Босса достигнет предела, он злобно нападёт на одного из неигровых жителей славной Хабитики, и тому придётся настолько несладко, что сменится даже его внешний облик. Вы можете почитать о [приходивших Всемирных Боссах](https://habitica.fandom.com/ru/wiki/Мировые_боссы) в нашей вики.",
"iosFaqStillNeedHelp": "Если у вас есть вопрос, которого нет в этом списке или в [ЧаВо на Вики](https://habitica.fandom.com/ru/wiki/ЧаВО), задайте его в чате Таверны через Меню > Таверна! Мы с радостью поможем вам.",
"androidFaqStillNeedHelp": "Если у вас есть вопрос, которого нет в этом списке или в [ЧаВо на Вики](https://habitica.fandom.com/ru/wiki/ЧаВо), задайте его в чате Таверны через Меню > Таверна! Мы с радостью поможем вам.",
- "webFaqStillNeedHelp": "Если у вас есть вопрос, которого нет в этом списке или в [ЧаВо на Вики](https://habitica.fandom.com/ru/wiki/ЧаВО), задайте его в [Гильдии новичков](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Мы с радостью поможем вам."
+ "webFaqStillNeedHelp": "Если у вас есть вопрос, которого нет в этом списке или в [ЧаВо на Вики](https://habitica.fandom.com/ru/wiki/ЧаВО), задайте его в [Гильдии новичков](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Мы с радостью поможем вам.",
+ "faqQuestion13": "Что такое групповые тарифы?"
}
diff --git a/website/common/locales/ru/gear.json b/website/common/locales/ru/gear.json
index e4f5dd8193..eae64d779d 100644
--- a/website/common/locales/ru/gear.json
+++ b/website/common/locales/ru/gear.json
@@ -1175,7 +1175,7 @@
"headArmoireRedHairbowText": "Красный бант",
"headArmoireRedHairbowNotes": "Стать сильным, выносливым и умным, надев этот чудесный Красный бант. Увеличивает силу на <%= str %>, телосложение на <%= con %> и интеллект на <%= int %>. Зачарованный сундук: Набор Красного банта (предмет 1 из 2).",
"headArmoireVioletFloppyHatText": "Фиолетовая широкополая шляпа",
- "headArmoireVioletFloppyHatNotes": "Множество заклинаний было вплетено в эту простенькую шляпу, придавая ей приятный фиолетовый цвет. Увеличивает восприятие на <%= per %>, интеллект на <%= int %> и телосложение на <%= con %>. Зачарованный сундук: Независимый предмет.",
+ "headArmoireVioletFloppyHatNotes": "Множество заклинаний было вплетено в эту простенькую шляпу, придавая ей приятный фиолетовый цвет. Увеличивает восприятие на <%= per %>, интеллект на <%= int %> и телосложение на <%= con %>. Зачарованный сундук: Набор фиолетовой домашней одежды (предмет 1 из 3).",
"headArmoireGladiatorHelmText": "Шлем Гладиатора",
"headArmoireGladiatorHelmNotes": "Чтобы быть гладиатором, вы должны быть не только сильным... но и хитрым. Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Зачарованный сундук: Набор Гладиатора (предмет 1 из 3).",
"headArmoireRancherHatText": "Ковбойская шляпа",
@@ -1297,7 +1297,7 @@
"shieldSpecial1Text": "Хрустальный щит",
"shieldSpecial1Notes": "Раскалывает стрелы и отражает слова скептиков. Повышет все характеристики на <%= attrs %>.",
"shieldSpecialTakeThisText": "Щит Take This",
- "shieldSpecialTakeThisNotes": "Этот шит был заслужен участием в спонируемом испытании, созданным Take This. Поздравляем! Увеличивает все характеристики на <%= attrs %>.",
+ "shieldSpecialTakeThisNotes": "Этот щит был заслужен участием в спонсируемом испытании, созданным Take This. Поздравляем! Увеличивает все характеристики на <%= attrs %>.",
"shieldSpecialGoldenknightText": "Моргенштерн Мастейна, сминающий мильные метки",
"shieldSpecialGoldenknightNotes": "Встречи, монстры, недуг: выполнено! Раздавлено! Увеличивает телосложение и восприятие на <%= attrs %>.",
"shieldSpecialMoonpearlShieldText": "Щит из лунного жемчуга",
@@ -2581,5 +2581,112 @@
"armorSpecialSpring2022RogueText": "Костюм сороки",
"armorSpecialSpring2022WarriorText": "Дождевик",
"armorSpecialSpring2022WarriorNotes": "Этот дождевик и сапоги так великолепны, что вы можете петь под дождём или прыгать в каждой луже, но все равно оставаться в тепле и сухости! Увеличивает телосложение на <%= con %>. Ограниченный выпуск весны 2022.",
- "armorSpecialSpring2022HealerText": "Хризолитовый доспех"
+ "armorSpecialSpring2022HealerText": "Хризолитовый доспех",
+ "weaponSpecialSummer2022RogueNotes": "Если вы в затруднительном положении, не колеблясь, покажите эти устрашающие когти! Увеличивает силу на <%= str %>. Ограниченный выпуск лета 2022.",
+ "weaponSpecialSummer2022RogueText": "Крабовая клешня",
+ "weaponSpecialSummer2022WarriorText": "Вихревой циклон",
+ "weaponSpecialSummer2022HealerText": "Целительные пузырьки",
+ "weaponSpecialSummer2022MageText": "Посох ската Манты",
+ "weaponSpecialSummer2022MageNotes": "Волшебным образом лишь взмахнув этим посохом вы очистите воду перед собой. Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Ограниченный выпуск лета 2022.",
+ "weaponArmoireBlueKiteNotes": "Паря высоко в небе, какие трюки вы можете заставить свой воздушный змей выполнять? Увеличивает все характеристики на <%= attrs %>. Зачарованный сундук: набор воздушного змея (предмет 1 из 5)",
+ "weaponArmoireGreenKiteText": "Зелёный воздушный змей",
+ "weaponArmoireOrangeKiteText": "Оранжевый воздушный змей",
+ "weaponArmoirePinkKiteText": "Розовый воздушный змей",
+ "weaponArmoireYellowKiteText": "Желтый воздушный змей",
+ "weaponArmoireBlueKiteText": "Синий воздушный змей",
+ "weaponSpecialSummer2022HealerNotes": "Эти пузырьки высвобождают целительную магию в воду с приятным хлопком! Увеличивает интеллект на <%= int %>. Ограниченный выпуск лета 2022.",
+ "weaponArmoireGreenKiteNotes": "Более потрясающего воздушного змея, отливающего оттенками желтого и зеленого, вы еще не видели. Увеличивает все характеристики на <%= attrs %>. Зачарованный сундук: набор воздушного змея (предмет 2 из 5)",
+ "weaponArmoirePinkKiteNotes": "Пикируя, кружась, взмывая ввысь, ваш воздушный змей эффектно выделяется на фоне неба. Увеличивает все характеристики на <%= attrs %>. Зачарованный сундук: набор воздушного змея (предмет 4 из 5)",
+ "weaponArmoireYellowKiteNotes": "Смотрите как летит ваш веселый воздушный змей, пикируя и отклоняясь в разные стороны. Увеличивает все характеристики на <%= attrs %>. Зачарованный сундук: набор воздушного змея (предмет 5 из 5)",
+ "weaponArmoirePushBroomText": "Швабра",
+ "weaponArmoireOrangeKiteNotes": "Давайте посмотрим, как высоко сможет подняться ваш воздушный змей, раскрашенный подобно восходу и закату солнца! Увеличивает все характеристики на <%= attrs %>. Зачарованный сундук: набор воздушного змея (предмет 3 из 5)",
+ "weaponArmoireFeatherDusterText": "Перьевая метёлка",
+ "weaponArmoirePushBroomNotes": "Возьмите этот инструмент для уборки в свои приключения и вы всегда сможете подмести копоть на крыльце или убрать паутину из углов. Увеличивает силу и ителлект на <%= attrs %>. Зачарованный сундук: набор уборочного инвентаря (предмет 1 из 3)",
+ "weaponArmoireFeatherDusterNotes": "Пусть эти причудливые перья облетят все ваши старые предметы, чтобы они засияли как новые. Только берегитесь потревоженной пыли, чтобы не чихнуть! Увеличивает телосложение и восприятие на <%= attrs %>. Зачарованный сундук: набор уборочного инвентаря (предмет 2 из 3)",
+ "armorSpecialSpring2022MageNotes": "Покажите свою готовность к весеннему сезону с помощью этой мантии, украшенной лепестками цветов форзиции. Увеличивает интеллект на <%= int %>. Ограниченный выпуск весны 2022.",
+ "armorSpecialSpring2022MageText": "Мантия из форзиции",
+ "armorSpecialSummer2022WarriorNotes": "Приготовьтесь к водной битве, окружив себя этой вихрящейся колонной воздуха и тумана. Увеличивает телосложение на <%= con %>. Ограниченный выпуск лета 2022.",
+ "armorSpecialSummer2022MageText": "Доспехи ската Манты",
+ "armorSpecialSummer2022HealerText": "Хвост Рыбы-ангела",
+ "armorSpecialSummer2022RogueText": "Крабовые доспехи",
+ "armorSpecialSummer2022RogueNotes": "Идеально подходит для непринужденной прогулки по пляжу. Увеличивает восприятие на <%= per %>. Ограниченный выпуск лета 2022.",
+ "armorSpecialSummer2022WarriorText": "Доспех водяного смерча",
+ "armorSpecialSummer2022MageNotes": "Надев эти доспехи, вы будете также легко выполнять свою работу, как скат Манта легко передвигается сквозь толщу воды. Увеличивает интеллект на <%= int %>. Ограниченный выпуск лета 2022.",
+ "armorSpecialSpring2022HealerNotes": "Отгоните страхи и кошмары, просто надев это одеяние с зеленым самоцветом. Увеличивает телосложение на <%= con %>. Ограниченный выпуск весны 2022.",
+ "armorSpecialSummer2022HealerNotes": "Используйте свои разноцветные плавники, чтобы передвигаться по рифу и помогать тем, кто нуждается в отдыхе и исцелении. Увеличивает телосложение на <%= con %>. Ограниченный выпуск лета 2022.",
+ "armorMystery202204Notes": "Похоже, что для выполнения ваших задач теперь нужно нажимать на эти загадочные кнопки! Что же будет если на них нажать? Бонусов не дает. Подарок подписчикам апреля 2022.",
+ "armorArmoireSoftVioletSuitText": "Мягкий фиолетовый костюм",
+ "armorMystery202204Text": "Капсула виртуального искателя приключений",
+ "armorMystery202207Notes": "В этих доспехах вы будете выглядеть гламурно и желейно. Бонусов не дает. Подарок подписчикам июля 2022.",
+ "armorArmoireSoftVioletSuitNotes": "Фиолетовый - цвет роскоши. Расслабься со стилем после того, как завершишь все ежедневные дела. Увеличивает телосложение и силу на <%= attrs %>. Зачарованный сундук: набор фиолетовой домашней одежды (предмет 2 из 3).",
+ "armorArmoireGardenersOverallsText": "Комбинезон садовника",
+ "armorArmoireGardenersOverallsNotes": "Не бойтесь работать в грязи, когда на вас надет этот защитный комбинезон. Увеличивает телосложение на <%= con %>. Зачарованный сундук: Набор садовника (предмет 1 из 4).",
+ "armorArmoireStrawRaincoatText": "Соломенный дождевик",
+ "armorArmoireStrawRaincoatNotes": "Эта накидка из плетеной соломы не даст вам промокнуть, а вашим доспехам заржаветь во время выполнения ваших квестов. Только не подходите слишком близко к свече! Увеличивает телосложение на <%= con %>. Зачарованный сундук: Набор дождевиков (предмет 1 из 2).",
+ "headSpecialSummer2022RogueText": "Крабовый шлем",
+ "armorArmoireFancyPirateSuitText": "Модная пиратская куртка",
+ "headSpecialSummer2022WarriorText": "Шлем водяного смерча",
+ "weaponSpecialSummer2022WarriorNotes": "Он вращает! Он перенаправляет! И он приносит шторм! Увеличивает силу на <%= str %>. Ограниченный выпуск лета 2022.",
+ "armorArmoireFancyPirateSuitNotes": "Носите эту прекрасную куртку, когда будете организовывать свою корабельную библиотеку или обсуждать ее с членами экипажа. Увеличивает телосложение и интеллект на <%= attrs %>. Зачарованный сундук: Набор модного пирата (предмет 1 из 3).",
+ "headSpecialSummer2022WarriorNotes": "Обратитесь к силе воды, сосредоточившись в этом интенсивном вихре. Увеличивает силу на <%= str %>. Ограниченный выпуск лета 2022.",
+ "headSpecialSpring2022HealerText": "Хризолитовый шлем",
+ "headSpecialSpring2022MageText": "Шлем из форзиции",
+ "headMystery202206Text": "Диадема Морской Феи",
+ "headMystery202208Text": "Задорный хвостик",
+ "headArmoireGardenersSunHatText": "Солнцезащитная шляпа садовника",
+ "headArmoireFancyPirateHatText": "Модная пиратская шляпа",
+ "headSpecialSummer2022MageText": "Шлем ската Манты",
+ "headSpecialSummer2022MageNotes": "Надежно защитите свою голову, когда будете погружаться в свои задачи или в самые глубинные воды. Увеличивает восприятие на <%= per %>. Ограниченный выпуск лета 2022.",
+ "headSpecialSummer2022HealerText": "Ушные плавники Рыбы-ангела",
+ "headSpecialSummer2022HealerNotes": "Говорите, у рыб нет ушей? Подождите, до тех пор, пока вы не расскажете им новости. Увеличивает интеллект на <%= int %>. Ограниченный выпуск лета 2022.",
+ "shieldSpecialSpring2022WarriorText": "Дождевое облако",
+ "headSpecialSpring2022WarriorText": "Капюшон дождевика",
+ "headSpecialSpring2022RogueText": "Маска сороки",
+ "headArmoireStrawRainHatText": "Соломенная дождевая шляпа",
+ "headAccessoryMystery202203Text": "Венец бесстрашной стрекозы",
+ "shieldArmoireTreasureMapText": "Карта сокровищ",
+ "shieldSpecialSpring2022HealerText": "Хризолитовый щит",
+ "shieldArmoireGardenersSpadeText": "Садовая лопата",
+ "backMystery202203Text": "Крылья бесстрашной стрекозы",
+ "backMystery202205Text": "Сумеречные крылья",
+ "backMystery202206Text": "Крылья Морской Феи",
+ "headAccessoryMystery202205Text": "Рога крылатого сумеречного дракона",
+ "eyewearMystery202204BText": "Виртуальное лицо",
+ "eyewearMystery202208Text": "Сверкающие глаза",
+ "shieldArmoireSpanishGuitarText": "Испанская гитара",
+ "shieldArmoireSnareDrumText": "Малый барабан",
+ "shieldArmoireDustpanText": "Совок для мусора",
+ "shieldSpecialSummer2022WarriorText": "Смелая акула",
+ "eyewearMystery202204AText": "Виртуальное лицо",
+ "shieldArmoireSoftVioletPillowText": "Мягкая фиолетовая подушка",
+ "headSpecialSpring2022HealerNotes": "Этот таинственный шлем сохраняет вашу конфиденциальность, пока вы выполняете свои задачи. Увеличивает интеллект на <%= int %>. Ограниченный выпуск весны 2022.",
+ "headSpecialSpring2022WarriorNotes": "Кап-кап-кап, это похоже на дождь! Встаньте во весь рост и накиньте капюшон, чтобы остаться сухим. Увеличивает силу на <%= str %>. Ограниченный выпуск весны 2022.",
+ "headMystery202207Notes": "Нужна помощь в выполнении задач? Как насчёт нескольких десятков биолюминесцентных щупалец? Бонусов не дает. Подарок подписчикам июля 2022.",
+ "headSpecialSpring2022MageNotes": "Оставайтесь сухими во время дождя с помощью этого защитного шлема с ниспадающими лепестками. Увеличивает восприятие на <%= per %>. Ограниченный выпуск весны 2022.",
+ "headMystery202206Notes": "Синяя жемчужина в этой диадеме наделяет вас силой магии воды. Используйте ее с умом! Бонусов не дает. Подарок подписчикам июня 2022.",
+ "headMystery202208Notes": "С удовольствием демонстрируйте эту роскошную прическу - в крайнем случае, ее можно использовать как хлыст! Бонусов не дает. Подарок подписчикам августа 2022.",
+ "shieldSpecialSpring2022HealerNotes": "Сформированный из расплавленной породы верхней мантии, этот щит может выдержать любой удар, который будет нанесен по нему. Увеличивает телосложение на <%= con %>. Ограниченный выпуск весны 2022.",
+ "headArmoireGardenersSunHatNotes": "Яркий свет дневной звезды не будет светить вам в глаза, когда вы наденете эту широкополую шляпу. Увеличивает восприятие на <%= per %>. Зачарованный сундук: Набор садовника (предмет 2 из 4).",
+ "shieldSpecialSpring2022WarriorNotes": "Бывают ли у вас такие дни, когда кажется, что дождевая туча нависла над вами и преследует повсюду? Считайте, что вам повезло, потому что самые красивые цветы скоро будут расти у ваших ног! Увеличивает телосложение на <%= con %>. Ограниченный выпуск весны 2022.",
+ "headArmoireFancyPirateHatNotes": "Будьте защищены от солнца и чаек, пролетающих над головой, когда вы пьете чай на палубе вашего корабля. Увеличивает восприятие на <%= per %>. Зачарованный сундук: Набор модного пирата (предмет 2 из 3).",
+ "headArmoireStrawRainHatNotes": "Вы сможете обнаружить любое препятствие на своем пути, если наденете эту водонепроницаемую коническую шляпу. Увеличивает восприятие на <%= per %>. Зачарованный сундук: Набор дождевиков (предмет 2 из 2).",
+ "shieldSpecialSummer2022WarriorNotes": "Он огрызается! Он кусается! И никогда не останавливается! Увеличивает телосложение на <%= con %>. Ограниченный выпуск лета 2022.",
+ "shieldSpecialSummer2022HealerText": "Лечебная водная рябь",
+ "shieldArmoireSoftVioletPillowNotes": "Умный воин берет с собой подушку в каждую экспедицию. Защитите себя от тревоги, вызванной прокрастинацией... даже во время сна. Увеличивает интеллект на <%= int %>. Зачарованный сундук: Набор фиолетовой домашней одежды (предмет 3 из 3).",
+ "shieldArmoireGardenersSpadeNotes": "Если вы проводите раскопки в саду, ищете зарытые сокровища или прокладываете секретный туннель, эта надежная лопата всегда будет под рукой. Увеличивает силу на <%= str %>. Зачарованный сундук: Набор садовника (предмет 3 из 4).",
+ "shieldSpecialSummer2022HealerNotes": "Посылайте восстанавливающую магию в виде легкой ряби вдоль рифа. Увеличивает телосложение на <%= con %>. Ограниченный выпуск лета 2022.",
+ "shieldArmoireSpanishGuitarNotes": "Дзынь! Дзынь! Соберитесь со своей командой на концерте или празднике, играя на этой гитаре. Увеличивает восприятие на <%= per %> и интеллект на <%= int %>. Зачарованный сундук: Набор музыкальных инструментов 1 (предмет 2 из 3)",
+ "shieldArmoireSnareDrumNotes": "Бум-Бум-Бум! Соберитесь со своей командой на парад или отправляйтесь в бой, играя на этом барабане. Увеличивает телосложение на <%= con %> и интеллект на <%= int %>. Зачарованный сундук: Набор музыкальных инструментов 1 (предмет 3 из 3)",
+ "shieldArmoireTreasureMapNotes": "Сокровище зарыто в месте отмеченном X! Никогда не знаешь, что найдешь, следуя этой удобной карте к сказочным сокровищам: золото, драгоценности, реликвии, а может быть, окаменелый апельсин? Увеличивает силу и ителлект на <%= attrs %>. Зачарованный сундук: Набор модного пирата (предмет 3 из 3).",
+ "shieldArmoireDustpanNotes": "Держите этот удобный ручной совок наготове при каждой уборке. Наложенное на него заклинание исчезновения позволяет вам никогда не искать мусорное ведро, в которое можно выбросить мусор. Увеличивает интеллект и телосложение на <%= attrs %>. Зачарованный сундук: Набор уборочного инвентаря (предмет 3 из 3).",
+ "backMystery202206Notes": "Причудливые крылья из воды и морских волн! Бонусов не дает. Подарок подписчикам июня 2022.",
+ "headAccessoryMystery202203Notes": "Нужен ли вам дополнительный прирост скорости? Крошечные декоративные крылышки на этом венце гораздо мощнее, чем кажутся! Бонусов не дает. Подарок подписчикам марта 2022.",
+ "headAccessoryMystery202205Notes": "Эти ослепительные рога такие же яркие, как пустынный закат. Бонусов не дает. Подарок подписчикам мая 2022.",
+ "eyewearMystery202208Notes": "Внушите своим врагам ложное чувство безопасности с помощью этих пугающе милых глазок. Бонусов не дает. Подарок подписчикам августа 2022.",
+ "backMystery202203Notes": "Обгоните всех небесных существ с помощью этих мерцающих крыльев. Бонусов не дает. Подарок подписчикам марта 2022.",
+ "backMystery202205Notes": "Могучие взмахи этих огромных крыльев разносятся эхом среди дюн. Бонусов не дает. Подарок подписчикам мая 2022.",
+ "weaponMystery202209Text": "Руководство по магии",
+ "weaponMystery202209Notes": "Эта книга станет вашим путеводителем на пути к созданию магии. Бонусов не дает. Подарок подписчикам сентября 2022.",
+ "shieldMystery202209Notes": "Чтобы приобрести знания в области колдовства, нужно много читать, но вы непременно будете наслаждаться учёбой. Бонусов не дает. Подарок подписчикам сентября 2022.",
+ "shieldMystery202209Text": "Гора волшебных книг"
}
diff --git a/website/common/locales/ru/groups.json b/website/common/locales/ru/groups.json
index d117f50f0e..1189eb7352 100644
--- a/website/common/locales/ru/groups.json
+++ b/website/common/locales/ru/groups.json
@@ -162,11 +162,11 @@
"onlyCreatorOrAdminCanDeleteChat": "Вы не авторизованы чтобы удаить это сообщение!",
"onlyGroupLeaderCanEditTasks": "Вы не авторизованы, чтобы редактировать задачи!",
"onlyGroupTasksCanBeAssigned": "Можно назначать только командные задачи",
- "assignedTo": "Назначить",
- "assignedToUser": "Назначено для <%- userName %>",
- "assignedToMembers": "Назначено <%= userCount %> участникам",
- "assignedToYouAndMembers": "Назначено вам и <%= userCount %> участникам",
- "youAreAssigned": "Назначено вам",
+ "assignedTo": "Назначено",
+ "assignedToUser": "Назначено для: @<%- userName %>",
+ "assignedToMembers": "<%= userCount %> пользователям",
+ "assignedToYouAndMembers": "Вам, <%= userCount %> пользователям",
+ "youAreAssigned": "Назначено: вам",
"taskIsUnassigned": "Эта задача не назначена",
"confirmUnClaim": "Вы уверены, что хотите освободить эту задачу?",
"confirmNeedsWork": "Вы уверены, что хотите пометить эту задачу как нуждающуюся в работе?",
@@ -183,7 +183,7 @@
"removeClaim": "Удалить претензию",
"onlyGroupLeaderCanManageSubscription": "Только предводитель группы может управлять общей подпиской",
"yourTaskHasBeenApproved": "Ваше задание <%- taskText %> было одобрено.",
- "taskNeedsWork": "<%- managerName %> отметил <%- taskText %> как требующей дополнительной работы.",
+ "taskNeedsWork": "<%- taskText %> отправлено на доработку @<%- managerName %>. Ваши награды за выполнение задачи были аннулированы.",
"userHasRequestedTaskApproval": "<%- user %> просит одобрить <%- taskName %>",
"approve": "Одобрить",
"approveTask": "Одобрить задание",
@@ -361,14 +361,14 @@
"assignedDateOnly": "Назначено на <%= date %>",
"cannotRemoveQuestOwner": "Вы не можете удалить владельца активного задания. Сначала отмените задание.",
"blockYourself": "Вы не можете заблокировать себя",
- "assignedDateAndUser": "Назначено @<%- username %> на <%= date %>",
+ "assignedDateAndUser": "Назначено @<%- username %> на <%= date %>",
"bannedWordsAllowedDetail": "Выбрав эту опцию, вы разрешаете использование запрещенных слов в этой гильдии.",
"bannedWordsAllowed": "Разрешить запрещенные слова",
"thisTaskApproved": "Это задание было одобрено",
"giftMessageTooLong": "Максимальная длина поздравительных сообщений <%= maxGiftMessageLength %>.",
"onlyPrivateGuildsCanUpgrade": "Только приватные гильдии могут быть улучшены до группы.",
"managerNotes": "Заметки менеджера",
- "chooseTeamMember": "Выберете члена команды",
+ "chooseTeamMember": "Найдите члена команды",
"unassigned": "Не назначено",
"viewDetails": "Посмотреть детали",
"upgradeToGroup": "Улучшить до группы",
@@ -379,5 +379,20 @@
"editGuild": "Редактировать гильдию",
"editParty": "Редактировать команду",
"leaveGuild": "Покинуть гильдию",
- "sendGiftTotal": "Всего:"
+ "sendGiftTotal": "Всего:",
+ "chatTemporarilyUnavailable": "Чат временно недоступен. Пожалуйста, повторите попытку позже.",
+ "assignTo": "Назначить",
+ "youEmphasized": "Вы",
+ "dayStart": "Начало суток: <%= startTime %>",
+ "viewStatus": "Статус",
+ "newGroupsBullet02": "Любой может выполнить неназначенное задание",
+ "newGroupsBullet03": "Общие задачи сбрасываются одновременно для всех, что облегчает совместную работу",
+ "newGroupsWelcome": "Добро пожаловать в новый общий список задач!",
+ "newGroupsWhatsNew": "Посмотрите, что нового:",
+ "newGroupsBullet01": "Взаимодействуйте с задачами непосредственно через общий список задач",
+ "newGroupsBullet05": "Цвет общих задач будет меняться, если они не были завершены, чтобы было легче отслеживать прогресс",
+ "lastCompleted": "Последнее выполненное",
+ "newGroupsBullet06": "Просмотр статуса задания позволяет быстро увидеть, кто его выполнил",
+ "newGroupsBullet07": "Включите функцию отображения общих задач на вашей персональной доске задач",
+ "newGroupsBullet08": "Лидер группы и менеджеры могут быстро добавлять задачи из верхней части столбцов задач"
}
diff --git a/website/common/locales/ru/limited.json b/website/common/locales/ru/limited.json
index 881241d509..581bc85624 100644
--- a/website/common/locales/ru/limited.json
+++ b/website/common/locales/ru/limited.json
@@ -131,13 +131,13 @@
"winter2019WinterStarSet": "Зимняя звезда (Целитель)",
"winter2019PoinsettiaSet": "Пуансеттия (Разбойник)",
"eventAvailability": "Доступно для покупки до <%= date(locale) %>.",
- "dateEndMarch": "30 апреля",
- "dateEndApril": "19 апреля",
+ "dateEndMarch": "31 марта",
+ "dateEndApril": "30 апреля",
"dateEndMay": "31 мая",
- "dateEndJune": "14 июня",
+ "dateEndJune": "30 июня",
"dateEndJuly": "31 июля",
"dateEndAugust": "31 августа",
- "dateEndSeptember": "21 сентября",
+ "dateEndSeptember": "30 сентября",
"dateEndOctober": "31 октября",
"dateEndNovember": "30 ноября",
"dateEndJanuary": "31 января",
@@ -221,5 +221,13 @@
"spring2022MagpieRogueSet": "Сорока (Разбойник)",
"spring2022ForsythiaMageSet": "Форзиция (Маг)",
"spring2022PeridotHealerSet": "Хризолит (Целитель)",
- "aprilYYYY": "Апрель <%= year %>"
+ "aprilYYYY": "Апрель <%= year %>",
+ "summer2022WaterspoutWarriorSet": "Водяной смерч (Воин)",
+ "summer2022CrabRogueSet": "Краб (Разбойник)",
+ "summer2022MantaRayMageSet": "Скат Манта (Маг)",
+ "summer2022AngelfishHealerSet": "Рыба-ангел (Целитель)",
+ "dateEndDecember": "31 декабря",
+ "februaryYYYY": "Февраль <%= year %>",
+ "julyYYYY": "Июль <%= year %>",
+ "octoberYYYY": "Октябрь <%= year %>"
}
diff --git a/website/common/locales/ru/npc.json b/website/common/locales/ru/npc.json
index 9b84dbac77..f83359a545 100644
--- a/website/common/locales/ru/npc.json
+++ b/website/common/locales/ru/npc.json
@@ -17,9 +17,9 @@
"mattBochText1": "Добро пожаловать в Стойла! Я повелитель зверей Мэтт. Каждый раз, когда вы выполняете задачу, вы можете получить яйцо или инкубационный эликсир для выведения питомцев. Как только вы выведете питомца, он появится здесь! Нажмите на изображение питомца, чтобы добавить его к своему аватару. Кормите питомцев едой, и они вырастут в выносливых скакунов.",
"welcomeToTavern": "Добро пожаловать в таверну!",
"sleepDescription": "Нужен отдых? Заселитесь в гостиницу Даниэля, чтобы приостановить некоторые игровые механики Habitica:",
- "sleepBullet1": "Пропущенные ежедневные задания не нанесут урон",
- "sleepBullet2": "Серии заданий не сбросятся",
- "sleepBullet3": "Боссы не нанесут урон за ваши пропущенные ежедневные задания",
+ "sleepBullet1": "Ваши пропущенные ежедневные задания не нанесут вам урон (боссы по-прежнему будут наносить урон, вызванный пропущенными ежедневными заданиями других членов команды)",
+ "sleepBullet2": "Ваши серии задач и счетчик привычек не обнулятся",
+ "sleepBullet3": "Ваш урон, нанесенный квестовому боссу или найденные квестовые предметы, останутся \"замороженными\" до тех пор, пока вы не выйдете из таверны",
"sleepBullet4": "Ваш урон боссу или количество собранных предметов в квестах не изменятся пока вы не отметите выполненные дела",
"pauseDailies": "Отдохнуть в гостинице",
"unpauseDailies": "Возобновить получение урона",
@@ -50,7 +50,7 @@
"groupBy2": "Сгруппировать по",
"sortByName": "имени",
"quantity": "количеству",
- "cost": "цене",
+ "cost": "Цена",
"shops": "Лавки",
"custom": "Сезонные",
"wishlist": "Отложенные",
diff --git a/website/common/locales/ru/questscontent.json b/website/common/locales/ru/questscontent.json
index 5d33aab51b..745d2cc895 100644
--- a/website/common/locales/ru/questscontent.json
+++ b/website/common/locales/ru/questscontent.json
@@ -60,7 +60,7 @@
"questSpiderUnlockText": "Позволяет покупать на рынке паука в яйце",
"questGroupVice": "Вайс, Змей Теней",
"questVice1Text": "Вайс, часть 1: Освободитесь от влияния дракона",
- "questVice1Notes": "
Говорят, что в пещерах горы Habitica кроется ужасное зло. Монстр, одно присутствие которого может сломить волю сильнейших героев, направив их в пучину лени и вредных привычек! Это чудовище — великий дракон, сотканный из собственных теней и обладающий огромной силой. Это Вайс, коварный змей теней. Отважные хабитяне, поднимитесь и сокрушите это гадкое чудовище, раз и навсегда, но только, если чувствуете в себе силы противостоять его огромной власти.
Вайс. Часть 1:
Как можно бороться с чудовищем, если оно уже взяло верх над вами? Не станьте жертвой лени и слабостей! Тяжелым трудом можно побороть темное влияние дракона и разжать его хватку!
",
+ "questVice1Notes": "Говорят, что в пещерах горы Habitica кроется ужасное зло. Монстр, одно присутствие которого может сломить волю сильнейших героев, направив их в пучину лени и вредных привычек! Это чудовище — великий дракон, сотканный из собственных теней и обладающий огромной силой. Это Вайс, коварный змей теней. Отважные хабитяне, поднимитесь и сокрушите это гадкое чудовище, раз и навсегда, но только, если чувствуете в себе силы противостоять его огромной власти.
Как можно бороться с чудовищем, если оно уже взяло верх над вами? Не станьте жертвой лени и слабостей! Тяжелым трудом можно побороть темное влияние дракона и разжать его хватку!",
"questVice1Boss": "Тень Вайса",
"questVice1Completion": "Когда влияние Вайса над вами рассеялось, вы чувствуете возвратившийся прилив сил, о которых не подозревали. Поздравляем! Но еще более пугающий враг ждет...",
"questVice1DropVice2Quest": "Вайс, часть 2 (свиток)",
@@ -604,7 +604,7 @@
"cuddleBuddiesText": "Набор квестов «Плюшевая команда»",
"cuddleBuddiesNotes": "Содержит квесты «Убийца кролик!», «Хорек-плохиш» и «Братство свинок из Гвинеи». Доступен до 31 марта.",
"aquaticAmigosText": "Набор квестов «Водные амигос»",
- "aquaticAmigosNotes": "Содержит «Волшебный Аксолотль», «Недоделанный Кракен», и «Зов Октотулху». Доступен до 31 августа.",
+ "aquaticAmigosNotes": "Содержит «Волшебный Аксолотль», «Недоделанный Кракен», и «Зов Октотулху». Доступен до 30 июня.",
"questSeaSerpentText": "Беда в глубинах: Нападение морского змея!",
"questSeaSerpentNotes": "Вам везет с повторением побед над задачами — а это значит идеальный момент, чтобы отправиться в путешествие к забегу морских коньков. Вы садитесь в подводную лодку у «порта Прилежности» и подготовились к поездке к морским путям «Медлительности». Но едва погрузившись в воду, неожиданно с силой волна ударяется об борт лодки, вводя в ужас пассажиров. «Что происходит?» — @AriesFaries выкрикивает.
Вы смотрите в ближайший иллюминатор и впадаете в ужас видя целое полотно из мерцающих чешуек, проходящих мимо вас. «Морской змей! — передает капитан @Witticaster через рацию. — Держитесь, он снова атакует!» Как только вы вцепились руками за свое сидение, ваши все незавершенные задачи пролетели перед вашими глазами. \"Может быть, если мы начнем работать в команде, мы сможем завершить их? - подумали вы, - мы сможем победить этого монстра!\"",
"questSeaSerpentCompletion": "Измученный вашим упорством, морской змей уплывает прочь, скрываясь в глубины. Когда вы приплыли в город «Промедления», вы выдохнули с облегчением, не заметив, как @*~Seraphina~ приближается к вам с тремя отливающими яйцами на руках. «Вот, это принадлежит вам, — говорит она. — Вы знаете, как укрощать морского змея!» Вместе с тем, как вы принимаете питомцев, клянетесь оставаться непоколебимыми в выполнении своих задач, чтобы таких проблем больше не происходило.",
@@ -747,5 +747,11 @@
"questOnyxDropOnyxPotion": "Ониксовые инкубационные эликсиры",
"questVirtualPetText": "Виртуальный хаос в День дурака: Пиликанье",
"questVirtualPetBoss": "Тамагочимон",
- "questVirtualPetRageTitle": "Пиликанье"
+ "questVirtualPetRageTitle": "Пиликанье",
+ "questVirtualPetRageEffect": "",
+ "questVirtualPetDropVirtualPetPotion": "Виртуальный инкубационный эликсир",
+ "questVirtualPetRageDescription": "Эта шкала заполняется, когда вы не выполняете свои ежедневные дела. Когда она заполнится, Вотчимон заблокирует часть наносимого вашей командой урона!",
+ "questVirtualPetNotes": "Тихим и уютным весенним утром в Хабитике, за неделю до памятного Дня Апрельского Шута. Вы и @Beffymaroo находились в стойле, ухаживая за вашими питомцами (которые все еще пребывали в некотором замешательстве от времени, проведенного виртуально!).
Вдалеке вы услышали гул и пищащий звук, сначала тихий, но постепенно звучащий все громче, как будто он приближается. На горизонте появляется яйцеобразная фигура, и когда она приближается, пища все громче, вы видите, что это гигантский виртуальный питомец!
“О нет,” - воскликнул @Beffymaroo, - “кажется, Апрельский шут не успел закончить дела с этим здоровяком, похоже, он жаждет внимания!”
Виртуальный питомец сердито пискнул, закатил виртуальную истерику и стал приближаться.",
+ "questVirtualPetCompletion": "Несколько осторожных нажатий на кнопки, кажется, удовлетворили мистические потребности виртуального питомца, и, наконец он успокоился и стал выглядеть довольным.
Вдруг во взрыве конфетти появился Апрельский Шут с корзиной, полной странных эликсиров, издающих тихие звуковые сигналы.
“Как вовремя, Апрельский Шут,” сказал @Beffymaroo с кривой улыбкой. “Я полагаю, что этот большой пищащий парень - твой знакомый.”
“Э-э, ну да”, - потупившись ответил Шут. “Я сожалею об этом, и спасибо вам за то, что позаботились о Тамагочимоне! Примите эти эликсиры в знак благодарности, они могут оживить ваших виртуальных питомцев в любое время!”.
Вы не уверены на 100%, что справитесь со всеми этими пищалками, но они очень милые, так что стоит попробовать!",
+ "questVirtualPetUnlockText": "Позволяет покупать на рынке виртуальные инкубационные эликсиры"
}
diff --git a/website/common/locales/ru/settings.json b/website/common/locales/ru/settings.json
index 3c48de107f..1d9bc9585c 100644
--- a/website/common/locales/ru/settings.json
+++ b/website/common/locales/ru/settings.json
@@ -215,5 +215,7 @@
"hourglassTransactions": "Переводы песочных часов",
"noGemTransactions": "У вас пока что нет переводов самоцветов.",
"noHourglassTransactions": "У вас пока что нет переводов песочных часов.",
- "transaction_debug": "Действие по отладке"
+ "transaction_debug": "Действие по отладке",
+ "passwordSuccess": "Пароль успешно изменен",
+ "giftSubscriptionRateText": "$<%= price %> долларов США за <%= months %> месяц(-а/-ев)"
}
diff --git a/website/common/locales/ru/subscriber.json b/website/common/locales/ru/subscriber.json
index 85f8641e88..0346647337 100644
--- a/website/common/locales/ru/subscriber.json
+++ b/website/common/locales/ru/subscriber.json
@@ -209,5 +209,9 @@
"sendAGift": "Послать подарок",
"mysterySet202203": "Набор бесстрашной стрекозы",
"mysterySet202204": "Набор виртуального искателя приключений",
- "mysterySet202205": "Набор крылатого дракона заката"
+ "mysterySet202205": "Набор крылатого сумеречного дракона",
+ "mysterySet202206": "Набор Морской Феи",
+ "mysterySet202208": "Набор Задорный хвостик",
+ "mysterySet202209": "Набор магического учёного",
+ "mysterySet202207": "Набор желейной медузы"
}
diff --git a/website/common/locales/sr/achievements.json b/website/common/locales/sr/achievements.json
index 1a9b1bb880..df8c1ee64f 100644
--- a/website/common/locales/sr/achievements.json
+++ b/website/common/locales/sr/achievements.json
@@ -36,5 +36,6 @@
"letsGetStarted": "Hajde da počnemo!",
"gettingStartedDesc": "Završi ove zadatke i zaradićeš 5 dostignuća i 100 zlata kada su gotovi!",
"yourRewards": "Vaše nagrade",
- "onboardingProgress": "<%= percentage %>% završeno"
+ "onboardingProgress": "<%= percentage %>% završeno",
+ "achievementReptacularRumbleModalText": "Prikupili ste sve ljubimce gmizavce!"
}
diff --git a/website/common/locales/tr/generic.json b/website/common/locales/tr/generic.json
index 399a62d6c1..6d6b49b8ef 100644
--- a/website/common/locales/tr/generic.json
+++ b/website/common/locales/tr/generic.json
@@ -55,10 +55,10 @@
"originalUserText": "En erken katılımcılarımızdan biri. Alfa test ne kelime!",
"habitBirthday": "Habitica Yaş Günü Partisi",
"habitBirthdayText": "Habitica Yaş Günü Partisine katıldı!",
- "habitBirthdayPluralText": "Tam <%= number %> tane Habitica Yaş Günü Partisine katıldı!",
+ "habitBirthdayPluralText": "Tam <%= count %> tane Habitica Yaş Günü Partisine katıldı!",
"habiticaDay": "Habitica Adlandırma Günü",
"habiticaDaySingularText": "Habitica'nın Adlandırma Günü'nü kutladı! Harikulade bir üye olduğun için teşekkürler.",
- "habiticaDayPluralText": "Tam <%= number %> tane Habitica Adlandırma Günü'nü kutladı! Harikulade bir üye olduğun için teşekkürler.",
+ "habiticaDayPluralText": "Tam <%= count %> tane Habitica Adlandırma Günü'nü kutladı! Harikulade bir üye olduğun için teşekkürler.",
"achievementDilatory": "Tembelistan'ın Kurtarıcısı",
"achievementDilatoryText": "2014 Yaz Partisi Etkinliğinde Tembelistan'ın Dehşet Ejderi'ni mağlup etmekte yardımcı oldu!",
"costumeContest": "Kostüm Yarışmacısı",
@@ -119,13 +119,13 @@
"thankyou2": "Ne kadar teşekkür etsem azdır.",
"thankyou3": "Sana minnettarım - teşekkürler!",
"thankyouCardAchievementTitle": "Çok Minnettar",
- "thankyouCardAchievementText": "Minnettarlığı dile getirdiğin için minnettarız! <%= cards %> tane Teşekkür kartı gönderdi ya da aldı.",
+ "thankyouCardAchievementText": "Minnettarlığı dile getirdiğin için minnettarız! <%= count %> tane Teşekkür kartı gönderdi ya da aldı.",
"birthdayCard": "Doğum Günü Kartı",
"birthdayCardExplanation": "İkiniz de Doğum Günü Bolluğu başarısını kazandınız!",
"birthdayCardNotes": "Bir takım üyesine doğum günü kartı gönder.",
"birthday0": "Mutlu yıllar sana!",
"birthdayCardAchievementTitle": "Doğum Günü Bolluğu",
- "birthdayCardAchievementText": "Nice mutlu yıllara! <%= cards %> tane doğum günü kartı gönderdi ya da aldı.",
+ "birthdayCardAchievementText": "Nice mutlu yıllara! <%= count %> tane doğum günü kartı gönderdi ya da aldı.",
"congratsCard": "Tebrik Kartı",
"congratsCardExplanation": "İkiniz de Tebrik Kardeşliği başarısını kazandınız!",
"congratsCardNotes": "Bir takım üyesine Tebrik kartı gönder.",
diff --git a/website/common/locales/uk/achievements.json b/website/common/locales/uk/achievements.json
index 08c251810d..e2a5b865d1 100644
--- a/website/common/locales/uk/achievements.json
+++ b/website/common/locales/uk/achievements.json
@@ -3,8 +3,8 @@
"onwards": "Вперед!",
"levelup": "Завдяки досягненню цілей у реальному житті, Ваш рівень підвищився, а персонаж був зцілений!",
"reachedLevel": "Ви досягнули <%= level %>-го рівня",
- "achievementLostMasterclasser": "Виконувач Квестів: Серія Мастерклассера",
- "achievementLostMasterclasserText": "Завершено всі шістнадцять квестів з Серії Мастерклассера та розгадана таємниця Загубленного Мастерклассера!",
+ "achievementLostMasterclasser": "Виконувач квестів: Серія орден Майстра",
+ "achievementLostMasterclasserText": "Завершено всі 16 квестів з серії ордену Майстра та розгадана таємниця останнього із ордену Майстрів!",
"foundNewItemsExplanation": "За виконання завдань ви можете отримати яйця, зілля дозрівання та їжу для улюбленців.",
"onboardingCompleteDescSmall": "Хочете більше? Перегляньте список досягнень і почніть збирати їх!",
"onboardingComplete": "Ви виконали свої перші завдання!",
@@ -13,7 +13,7 @@
"gettingStartedDesc": "Виконайте ці завдання й ви отримаєте 5 досягнень і 100 золота!",
"yourRewards": "Ваші нагороди",
"achievementMindOverMatter": "Перемога Розуму над Матерією",
- "achievementLostMasterclasserModalText": "Ви виконали всі шістнадцять завдань у Завданнях Майстра і розгадали таємницю Загубленого Майстра!",
+ "achievementLostMasterclasserModalText": "Ви виконали всі 16 завдань із серії квестів Орден Майстра і розгадали таємницю Останнього із ордену Майстра!",
"foundNewItemsCTA": "Зайдіть до вашого інвентарю та спробуйте поєднати нове зілля дозрівання та яйце!",
"foundNewItems": "Ви знайшли нові предмети!",
"showAllAchievements": "Показати все в <%= category %>",
@@ -130,10 +130,13 @@
"achievementBirdsOfAFeatherText": "Зібрав(-ла) усіх літаючих тварин: летюче порося, сову, папугу, птеродактиля, ґрифона, сокола, павича та півня!",
"achievementBirdsOfAFeatherModalText": "Ви зібрали всіх тварин, що літають!",
"achievementBirdsOfAFeather": "Повітряний легіон",
- "achievementReptacularRumbleText": "Вилупи(-в/ла) усі стандартні кольори рептилій: алігатора, птеродактиля, змії, трицератопса, черепахи, тиранозавра і велоцираптора!",
+ "achievementReptacularRumbleText": "Зібрали усіх рептилій стандартних кольорів, а саме: алігатора, птеродактиля, змію, трицератопса, черепаху, тиранозавра і велоцираптора!",
"achievementReptacularRumble": "Гул рептилій",
"achievementReptacularRumbleModalText": "Ви зібрали всіх вихованців рептилій!",
"achievementGroupsBeta2022": "Інтерактивний бета-тестер",
"achievementGroupsBeta2022Text": "Ви та Ваша команда надали неоціненний відгук, щоб допомогти тестувати Habitica.",
- "achievementGroupsBeta2022ModalText": "Ви та Ваші команди допомогли Habitica, тестуючи та надаючи відгуки!"
+ "achievementGroupsBeta2022ModalText": "Ви та Ваші команди допомогли Habitica, тестуючи та надаючи відгуки!",
+ "achievementWoodlandWizardModalText": "Ви зібрали всіх лісових тваринок!",
+ "achievementWoodlandWizard": "Лісовий чарівник",
+ "achievementWoodlandWizardText": "Зібрали усіх лісових істот стандартних кольорів: борсука, ведмедя, оленя, лисицю, жабу, їжака, сову, равлика, білку та деревце!"
}
diff --git a/website/common/locales/uk/backgrounds.json b/website/common/locales/uk/backgrounds.json
index 32b898cffc..7da88a1469 100644
--- a/website/common/locales/uk/backgrounds.json
+++ b/website/common/locales/uk/backgrounds.json
@@ -1,213 +1,213 @@
{
"backgrounds": "Задні плани",
"background": "Тло",
- "backgroundShop": "Магазин тла",
+ "backgroundShop": "Магазин фонів",
"backgroundShopText": "Магазин тла",
"noBackground": "Тло не вибрано",
- "backgrounds062014": "Набір 1: Випущений у червні 2014",
+ "backgrounds062014": "Набір 1: червнь 2014",
"backgroundBeachText": "Пляж",
"backgroundBeachNotes": "Відпочиньте на теплому пляжі.",
"backgroundFairyRingText": "Чарівне коло",
"backgroundFairyRingNotes": "Потанцюйте у чарівному колі.",
"backgroundForestText": "Ліс",
"backgroundForestNotes": "Прогуляйтесь літнім лісом.",
- "backgrounds072014": "ЦИКЛ 2: Вихід у липні 2014",
+ "backgrounds072014": "Набір 2: липень 2014",
"backgroundCoralReefText": "Кораловий риф",
"backgroundCoralReefNotes": "Поплавайте у кораловому рифі.",
"backgroundOpenWatersText": "Відкрите море",
"backgroundOpenWatersNotes": "Помилуйтесь відкритим морем.",
"backgroundSeafarerShipText": "Морський корабель",
"backgroundSeafarerShipNotes": "Попливіть на борту морського корабля.",
- "backgrounds082014": "ЦИКЛ 3: Вихід у серпні 2014",
+ "backgrounds082014": "Набір 3: серпень 2014",
"backgroundCloudsText": "Хмари",
"backgroundCloudsNotes": "Політайте у хмарах.",
"backgroundDustyCanyonsText": "Піщаний каньйон",
"backgroundDustyCanyonsNotes": "Поблукайте запиленим каньйоном.",
"backgroundVolcanoText": "Вулкан",
"backgroundVolcanoNotes": "Розігрійтеся у вулкані.",
- "backgrounds092014": "ЦИКЛ 4: Вихід у вересні 2014",
+ "backgrounds092014": "Набір 4: вересень 2014",
"backgroundThunderstormText": "Гроза",
"backgroundThunderstormNotes": "Отримайте блискавкою під час грози.",
"backgroundAutumnForestText": "Осінній ліс",
"backgroundAutumnForestNotes": "Прогуляйтеся осіннім лісом.",
"backgroundHarvestFieldsText": "Урожайні поля",
"backgroundHarvestFieldsNotes": "Обробіть свої врожайні поля.",
- "backgrounds102014": "ЦИКЛ 5: Вихід у жовтні 2014",
+ "backgrounds102014": "Набір 5: жовтень 2014",
"backgroundGraveyardText": "Цвинтар",
"backgroundGraveyardNotes": "Зайдіть на моторошний цвинтар.",
"backgroundHauntedHouseText": "Дім з привидами",
"backgroundHauntedHouseNotes": "Прокрадіться через дім з привидами.",
"backgroundPumpkinPatchText": "Гарбузова грядка",
"backgroundPumpkinPatchNotes": "Виріжте на гарбузовій грядці кілька ліхтарів Джека.",
- "backgrounds112014": "ЦИКЛ 6: Вихід у листопаді 2014",
+ "backgrounds112014": "Набір 6: листопад 2014",
"backgroundHarvestFeastText": "Свято Врожаю",
"backgroundHarvestFeastNotes": "Повеселіться на святі Врожаю.",
"backgroundStarrySkiesText": "Зоряне небо",
"backgroundStarrySkiesNotes": "Позаглядайте на зоряне небо.",
"backgroundSunsetMeadowText": "Сонячна левада",
"backgroundSunsetMeadowNotes": "Помилуйтесь сонячною левадою.",
- "backgrounds122014": "Цикл 7: Запроваджений у грудні 2014",
+ "backgrounds122014": "Набір 7: грудень 2014",
"backgroundIcebergText": "Айсберг",
"backgroundIcebergNotes": "Дрейфувати на айсберзі.",
"backgroundTwinklyLightsText": "Зимові Мерехтливі Вогники",
"backgroundTwinklyLightsNotes": "Прогуляйтеся між деревами, прикрашеними святковими гирляндами.",
"backgroundSouthPoleText": "Південний Полюс",
"backgroundSouthPoleNotes": "Відвідайте засніжений Південний Полюс.",
- "backgrounds012015": "Набір 8: Випущений у січні 2015",
+ "backgrounds012015": "Набір 8: січень 2015",
"backgroundIceCaveText": "Льодяна печера",
"backgroundIceCaveNotes": "Спустіться в льодяну печеру.",
"backgroundFrigidPeakText": "Холодна вершина",
"backgroundFrigidPeakNotes": "Покоріть холодну вершину.",
"backgroundSnowyPinesText": "Засніжені сосни",
"backgroundSnowyPinesNotes": "Сховайтесь серед засніжених сосен.",
- "backgrounds022015": "Набір 9: Випущений у лютому 2015",
+ "backgrounds022015": "Набір 9: лютий 2015",
"backgroundBlacksmithyText": "Ковальська",
"backgroundBlacksmithyNotes": "Попрацюйте в Ковальні.",
"backgroundCrystalCaveText": "Кришталева печера",
"backgroundCrystalCaveNotes": "Дослідіть кришталеву печеру.",
"backgroundDistantCastleText": "Далекий замок",
"backgroundDistantCastleNotes": "Захистіть Далекий замок.",
- "backgrounds032015": "Набір 10: Випущено у березні 2015",
+ "backgrounds032015": "Набір 10: березень 2015",
"backgroundSpringRainText": "Весняний дощ",
"backgroundSpringRainNotes": "Потанцюйте під Весняним Дощем.",
"backgroundStainedGlassText": "Вітражне скло",
"backgroundStainedGlassNotes": "Помилуйтеся вітражами.",
"backgroundRollingHillsText": "Пагорби",
"backgroundRollingHillsNotes": "Попустуйте поміж Пагорбів.",
- "backgrounds042015": "Набір 11: Випущений у квітні 2015",
+ "backgrounds042015": "Набір 11: квітень 2015",
"backgroundCherryTreesText": "Вишневі дерева",
"backgroundCherryTreesNotes": "Помилуйтеся виглядом цвітучих Вишневих дерев.",
"backgroundFloralMeadowText": "Квітучий луг",
"backgroundFloralMeadowNotes": "Влаштуйте пікнік на квітучому лузі.",
"backgroundGumdropLandText": "Мармеладний край",
"backgroundGumdropLandNotes": "Поласуйте пейзажем Мармеладового краю.",
- "backgrounds052015": "Набір 12: Випущений у травні 2015",
+ "backgrounds052015": "Набір 12: травень 2015",
"backgroundMarbleTempleText": "Мармуровий храм",
"backgroundMarbleTempleNotes": "Попозуйте перед Мармуровим храмом.",
"backgroundMountainLakeText": "Гірське озеро",
"backgroundMountainLakeNotes": "Перевірте, як водичка в Гірському озері.",
"backgroundPagodasText": "Пагоди",
"backgroundPagodasNotes": "Підніміться на вершини Пагод.",
- "backgrounds062015": "Набір 13: Випущений у червні 2015",
+ "backgrounds062015": "Набір 13: червень 2015",
"backgroundDriftingRaftText": "Дрейфуючий пліт",
"backgroundDriftingRaftNotes": "Попливіть на Дрейфуючому плоті.",
"backgroundShimmeryBubblesText": "Мерехтливі бульбашки",
"backgroundShimmeryBubblesNotes": "Пропливіть через море Мерехтливих бульбашок.",
"backgroundIslandWaterfallsText": "Острів водоспадів",
"backgroundIslandWaterfallsNotes": "Влаштуйте пікнік на Острові водоспадів.",
- "backgrounds072015": "Набір 14: випущений у липні 2015",
+ "backgrounds072015": "Набір 14: липень 2015",
"backgroundDilatoryRuinsText": "Руїни Неквапливості",
"backgroundDilatoryRuinsNotes": "Пірніть до руїн Неквапливості.",
"backgroundGiantWaveText": "Гігантська хвиля",
"backgroundGiantWaveNotes": "Осідлайте гігантську хвилю!",
"backgroundSunkenShipText": "Потонулий корабель",
"backgroundSunkenShipNotes": "Дослідіть потонулий корабель.",
- "backgrounds082015": "Набір 15: випущений у серпні 2015",
+ "backgrounds082015": "Набір 15: серпень 2015",
"backgroundPyramidsText": "Піраміди",
"backgroundPyramidsNotes": "Насолодіться пірамідами.",
"backgroundSunsetSavannahText": "Призахідна савана",
"backgroundSunsetSavannahNotes": "Вистежте здобич у призахідній савані.",
"backgroundTwinklyPartyLightsText": "Святкові мерехтливі вогники",
"backgroundTwinklyPartyLightsNotes": "Потанцюйте під святковими мерехтливими вогникиками!",
- "backgrounds092015": "Набір 16: випущений у вересні 2015",
+ "backgrounds092015": "Набір 16: вересень 2015",
"backgroundMarketText": "Ринок Habitica",
"backgroundMarketNotes": "Купуйте на ринку Habitica.",
"backgroundStableText": "Стайня Habitica",
"backgroundStableNotes": "Попіклуйтеся про їздових тварин у стайні Habitica.",
"backgroundTavernText": "Таверна Habitica",
"backgroundTavernNotes": "Відвідайте таверну Habitica.",
- "backgrounds102015": "Набір 17: випущений у жовтні 2015",
+ "backgrounds102015": "Набір 17: жовтень 2015",
"backgroundHarvestMoonText": "Повний Місяць перед осіннім рівноденням",
"backgroundHarvestMoonNotes": "Посмійтеся під повнім Місяцем.",
"backgroundSlimySwampText": "Тванисте болото",
"backgroundSlimySwampNotes": "Проберіться крізь тванисте болото.",
"backgroundSwarmingDarknessText": "Суцільна темрява",
"backgroundSwarmingDarknessNotes": "Тремтіть від жаху в суцільній темряві.",
- "backgrounds112015": "Набір 18: випущений у листопаді 2015",
+ "backgrounds112015": "Набір 18: листопад 2015",
"backgroundFloatingIslandsText": "Летючі острови",
"backgroundFloatingIslandsNotes": "Пострибайте по летючих островах.",
"backgroundNightDunesText": "Нічні дюни",
"backgroundNightDunesNotes": "Мирно прогуляйтеся нічними дюнами.",
"backgroundSunsetOasisText": "Призахідний оазис",
"backgroundSunsetOasisNotes": "Зігрійтеся у призахідному оазисі.",
- "backgrounds122015": "Набір 19: випущений у грудні 2015",
+ "backgrounds122015": "Набір 19: грудень 2015",
"backgroundAlpineSlopesText": "Альпійські схили",
"backgroundAlpineSlopesNotes": "Покатайтеся на лижах серед альпійських схилів.",
"backgroundSnowySunriseText": "Засніжений світанок",
"backgroundSnowySunriseNotes": "Поспостерігайте за засніженим світанком.",
"backgroundWinterTownText": "Зимове місто",
"backgroundWinterTownNotes": "Пройдіться зимовим містом.",
- "backgrounds012016": "Набір 20: випущений у січні 2016",
+ "backgrounds012016": "Набір 20: січень 2016",
"backgroundFrozenLakeText": "Замерзле озеро",
"backgroundFrozenLakeNotes": "Покатайтеся по замерзлому озеру.",
"backgroundSnowmanArmyText": "Армія сніговиків",
"backgroundSnowmanArmyNotes": "Очольте армію сніговиків.",
"backgroundWinterNightText": "Зимова ніч",
"backgroundWinterNightNotes": "Погляньте на зорі зимової ночі.",
- "backgrounds022016": "Набір 21: випущений у лютому 2016",
+ "backgrounds022016": "Набір 21: лютий 2016",
"backgroundBambooForestText": "Бамбуковий ліс",
"backgroundBambooForestNotes": "Прогуляйтеся бамбуковим лісом.",
"backgroundCozyLibraryText": "Затишна бібліотека",
"backgroundCozyLibraryNotes": "Почитайте в затишній бібліотеці.",
"backgroundGrandStaircaseText": "Парадні сходи",
"backgroundGrandStaircaseNotes": "Спустіться парадними сходами.",
- "backgrounds032016": "Набір 22: випущений у березні 2016",
+ "backgrounds032016": "Набір 22: березень 2016",
"backgroundDeepMineText": "Глибока копальня",
"backgroundDeepMineNotes": "Знайдіть дорогоцінні метали в глибокій копальні.",
"backgroundRainforestText": "Тропічний ліс",
"backgroundRainforestNotes": "Відправтеся у тропічний ліс.",
"backgroundStoneCircleText": "Кам’яне коло",
"backgroundStoneCircleNotes": "Почаклуйте у кам’яному колі.",
- "backgrounds042016": "Набір 23: випущений в квітні 2016",
+ "backgrounds042016": "Набір 23: квітень 2016",
"backgroundArcheryRangeText": "Стрільбище",
"backgroundArcheryRangeNotes": "Попрактикуйтеся на стрільбищі.",
"backgroundGiantFlowersText": "Гігантські квітки",
"backgroundGiantFlowersNotes": "Пограйтеся на гігантських квітках.",
"backgroundRainbowsEndText": "Кінець райдуги",
"backgroundRainbowsEndNotes": "Знайдіть золото на тому кінці райдуги.",
- "backgrounds052016": "Набір 24: випущений у травні 2016",
+ "backgrounds052016": "Набір 24: травень 2016",
"backgroundBeehiveText": "Вулик",
"backgroundBeehiveNotes": "Подзижчіть та потанцюйте у вулику.",
"backgroundGazeboText": "Дача",
"backgroundGazeboNotes": "Викличіть дачу на бій.",
"backgroundTreeRootsText": "Коріння дерева",
"backgroundTreeRootsNotes": "Дослідіть коріння дерева.",
- "backgrounds062016": "Набір 25: випущений у червні 2016",
+ "backgrounds062016": "Набір 25: червень 2016",
"backgroundLighthouseShoreText": "Берег поруч з маяком",
"backgroundLighthouseShoreNotes": "Прогуляйтеся на березі поруч з маяком.",
"backgroundLilypadText": "Латаття",
"backgroundLilypadNotes": "Застрибніть на латаття.",
"backgroundWaterfallRockText": "Камінь під водоспадом",
"backgroundWaterfallRockNotes": "Побризкайтеся на камені під водоспадом.",
- "backgrounds072016": "Набір 26: випущений у липні 2016",
+ "backgrounds072016": "Набір 26: липень 2016",
"backgroundAquariumText": "Акваріум",
"backgroundAquariumNotes": "Порибальте в акваріумі.",
"backgroundDeepSeaText": "Глибоке море",
"backgroundDeepSeaNotes": "Пірніть у глибоке море.",
"backgroundDilatoryCastleText": "Замок Неквапливості",
"backgroundDilatoryCastleNotes": "Пропливіть повз замок Неквапливості.",
- "backgrounds082016": "Набір 27: випущений у серпні 2016",
+ "backgrounds082016": "Набір 27: серпень 2016",
"backgroundIdyllicCabinText": "Затишна хатинка",
"backgroundIdyllicCabinNotes": "Заховайтеся у затишній хатинці.",
"backgroundMountainPyramidText": "Гірська піраміда",
"backgroundMountainPyramidNotes": "Підніміться по багатьох сходинах гірської піраміди.",
"backgroundStormyShipText": "Штормовий корабель",
"backgroundStormyShipNotes": "Тримайтеся міцно проти вітру на цьому штормовому кораблі.",
- "backgrounds092016": "Набір 28: випущений у вересні 2016",
+ "backgrounds092016": "Набір 28: вересень 2016",
"backgroundCornfieldsText": "Ниви",
"backgroundCornfieldsNotes": "Насолодіться чудовим днем на нивах.",
"backgroundFarmhouseText": "Ферма",
"backgroundFarmhouseNotes": "Привітайтеся з тваринами дорогою на ферму.",
"backgroundOrchardText": "Фруктовий сад",
"backgroundOrchardNotes": "Зірвіть спілий фрукт у фруктовому саду.",
- "backgrounds102016": "Набір 29: випущений у жовтні 2016",
+ "backgrounds102016": "Набір 29: жовтень 2016",
"backgroundSpiderWebText": "Павутиння",
"backgroundSpiderWebNotes": "Зачепіться за павутиння.",
"backgroundStrangeSewersText": "Дивна каналізація",
"backgroundStrangeSewersNotes": "Прослизніть у дивну каналізацію.",
"backgroundRainyCityText": "Дощове місто",
"backgroundRainyCityNotes": "Похлюпайтеся у дощовому місті.",
- "backgrounds112016": "Набір 30: випущений у листопаді 2016",
+ "backgrounds112016": "Набір 30: листопад 2016",
"backgroundMidnightCloudsText": "Опівнічні хмари",
"backgroundMidnightCloudsNotes": "Пролетіть крізь опівнічні хмари.",
"backgroundStormyRooftopsText": "Штормові дахи",
@@ -227,193 +227,193 @@
"backgroundRedNotes": "Світло-червоне тло.",
"backgroundYellowText": "Жовте",
"backgroundYellowNotes": "Смачне жовте тло.",
- "backgrounds122016": "Набір 31: випущений у грудні 2016",
+ "backgrounds122016": "Набір 31: грудень 2016",
"backgroundShimmeringIcePrismText": "Мерехтливі льодяні призми",
"backgroundShimmeringIcePrismNotes": "Потанцюйте поміж мерехтривих льодяних призм.",
"backgroundWinterFireworksText": "Зимові феєрверки",
"backgroundWinterFireworksNotes": "Запустіть зимові феєрверки.",
"backgroundWinterStorefrontText": "Зимова крамниця",
"backgroundWinterStorefrontNotes": "Придбайте подарунки у зимовій крамниці.",
- "backgrounds012017": "Набір 32: випущений у січні 2017",
+ "backgrounds012017": "Набір 32: січень 2017",
"backgroundBlizzardText": "Заметіль",
"backgroundBlizzardNotes": "Не злякайтеся заметілі.",
"backgroundSparklingSnowflakeText": "Лискучі сніжинки",
"backgroundSparklingSnowflakeNotes": "Поковзайте на лискучих сніжинках.",
"backgroundStoikalmVolcanoesText": "Вулкани Стойкхельма",
"backgroundStoikalmVolcanoesNotes": "Дослідіть вулкани Стойкхельма.",
- "backgrounds022017": "Набір 33: випущений в лютому 2017",
+ "backgrounds022017": "Набір 33: лютий 2017",
"backgroundBellTowerText": "Дзвіниця",
"backgroundBellTowerNotes": "Підніміться на дзвіницю.",
"backgroundTreasureRoomText": "Скарбниця",
"backgroundTreasureRoomNotes": "Прокрадіться у багату скарбницю.",
"backgroundWeddingArchText": "Весільна арка",
"backgroundWeddingArchNotes": "Попозуйте під весільною аркою.",
- "backgrounds032017": "Набір 34: Випущений у березні 2017",
+ "backgrounds032017": "Набір 34: березень 2017",
"backgroundMagicBeanstalkText": "Чарівне бобове дерево",
"backgroundMagicBeanstalkNotes": "Підніміться вгору бобовим деревом.",
"backgroundMeanderingCaveText": "Звивиста Печера",
"backgroundMeanderingCaveNotes": "Дослідіть звивисту печеру.",
"backgroundMistiflyingCircusText": "Чаруючий цирк",
"backgroundMistiflyingCircusNotes": "Відпочиньте у чаруючому цирку.",
- "backgrounds042017": "Набір 35: Випущений у квітні 2017",
+ "backgrounds042017": "Набір 35: квітень 2017",
"backgroundBugCoveredLogText": "Колода в жуках",
"backgroundBugCoveredLogNotes": "Огляньте колоду в жуках.",
"backgroundGiantBirdhouseText": "Величезна шпаківня",
"backgroundGiantBirdhouseNotes": "Величезна шпаківня.",
"backgroundMistShroudedMountainText": "Туманна гора",
"backgroundMistShroudedMountainNotes": "Підніміться на верхівку туманної гори.",
- "backgrounds052017": "Набір 36: Випущений у травні 2017",
+ "backgrounds052017": "Набір 36: травень 2017",
"backgroundGuardianStatuesText": "Статуї вартових",
"backgroundGuardianStatuesNotes": "Предстаньте перед статуями вартових.",
"backgroundHabitCityStreetsText": "Вулицями Habit City",
"backgroundHabitCityStreetsNotes": "Дослідіть вулиці Habit City.",
"backgroundOnATreeBranchText": "Гілка дерева",
"backgroundOnATreeBranchNotes": "Посидіть на гілці дерева.",
- "backgrounds062017": "Набір 37: Випущений у червні 2017",
+ "backgrounds062017": "Набір 37: червень 2017",
"backgroundBuriedTreasureText": "Закопаний скарб",
"backgroundBuriedTreasureNotes": "Розкопайте скарб.",
"backgroundOceanSunriseText": "Океанський світанок",
"backgroundOceanSunriseNotes": "Насолодіться світанком біля океану.",
"backgroundSandcastleText": "Пісочний замок",
"backgroundSandcastleNotes": "Правте пісочним замком.",
- "backgrounds072017": "Набір 38: Випущений у липні 2017",
+ "backgrounds072017": "Набір 38: липень 2017",
"backgroundGiantSeashellText": "Гігантська мушля",
"backgroundGiantSeashellNotes": "Відпочиньте у гігантській мушлі.",
"backgroundKelpForestText": "Ліс водоростей",
"backgroundKelpForestNotes": "Пропливіть лісом водоростей.",
"backgroundMidnightLakeText": "Опівнічне Озеро",
"backgroundMidnightLakeNotes": "Відпочиньте біля опівнічного озера.",
- "backgrounds082017": "Набір 39: Випущений у серпні 2017",
+ "backgrounds082017": "Набір 39: серпень 2017",
"backgroundBackOfGiantBeastText": "Спина гігантського чудовиська",
"backgroundBackOfGiantBeastNotes": "Проїдьтесь на спині гігантського чудовиська.",
"backgroundDesertDunesText": "Пустельні дюни",
"backgroundDesertDunesNotes": "Сміливо досліджуйте пустельні дюни.",
"backgroundSummerFireworksText": "Літні феєрверки",
"backgroundSummerFireworksNotes": "Відсвяткуйте день найменування Habitica літніми феєрверками!",
- "backgrounds092017": "Набір 40: Випущений у вересні 2017",
+ "backgrounds092017": "Набір 40: вересень 2017",
"backgroundBesideWellText": "Поруч із колодязем",
"backgroundBesideWellNotes": "Прогуляйтеся біля колодязя.",
"backgroundGardenShedText": "Садовий сарай",
"backgroundGardenShedNotes": "Попрацюйте в садовому сараї.",
"backgroundPixelistsWorkshopText": "Майстерня пікселіста",
"backgroundPixelistsWorkshopNotes": "Створіть шедевр у майстерні пікселіста.",
- "backgrounds102017": "Набір 41: Випущений у жовтні 2017",
+ "backgrounds102017": "Набір 41: жовтень 2017",
"backgroundMagicalCandlesText": "Магічні свічки",
"backgroundMagicalCandlesNotes": "Насолодіться теплом в світлі магічних свічок.",
"backgroundSpookyHotelText": "Моторошний готель",
"backgroundSpookyHotelNotes": "Прокрадіться до зали Моторошного готелю.",
"backgroundTarPitsText": "Смоляні ями",
"backgroundTarPitsNotes": "Пройдіть навшпиньках смоляними ямами.",
- "backgrounds112017": "Набір 42: Випущений у листопаді 2017",
+ "backgrounds112017": "Набір 42: листопад 2017",
"backgroundFiberArtsRoomText": "Прядильна кімната",
"backgroundFiberArtsRoomNotes": "Сплетіть нитку в прядильній кімнаті.",
"backgroundMidnightCastleText": "Опівнічний замок",
"backgroundMidnightCastleNotes": "Прогуляйтеся біля Опівнічного замку.",
"backgroundTornadoText": "Торнадо",
"backgroundTornadoNotes": "Пролетіть крізь торнадо.",
- "backgrounds122017": "Набір 43: Випущений у грудні 2017",
+ "backgrounds122017": "Набір 43: грудень 2017",
"backgroundCrosscountrySkiTrailText": "Перехресна лижна доріжка",
"backgroundCrosscountrySkiTrailNotes": "З'їдьте лижним схилом.",
"backgroundStarryWinterNightText": "Зоряна зимова ніч",
"backgroundStarryWinterNightNotes": "Насолодіться зоряною зимовою ніччю.",
"backgroundToymakersWorkshopText": "Іграшкова майстерня",
"backgroundToymakersWorkshopNotes": "Пориньте у диво майстерні розробника іграшок.",
- "backgrounds012018": "Набір 44: Від січня 2018",
+ "backgrounds012018": "Набір 44: січень 2018",
"backgroundAuroraText": "Полярне сяйво",
"backgroundAuroraNotes": "Насолодіться зимовим полярним сяйвом.",
"backgroundDrivingASleighText": "Сани",
"backgroundDrivingASleighNotes": "Покатайтесь на санях по засніженим полям.",
"backgroundFlyingOverIcySteppesText": "Крижані степи",
"backgroundFlyingOverIcySteppesNotes": "Політайте над крижаними степами.",
- "backgrounds022018": "Набір 45: випущений у лютому 2018",
+ "backgrounds022018": "Набір 45: лютий 2018",
"backgroundChessboardLandText": "Земля шахової дошки",
"backgroundChessboardLandNotes": "Зіграйте партію на землях шахової дошки.",
"backgroundMagicalMuseumText": "Магічний музей",
"backgroundMagicalMuseumNotes": "Відвідайте екскурсію в магічному музеї.",
"backgroundRoseGardenText": "Трояндовий сад",
"backgroundRoseGardenNotes": "Проведіть час в запашному розарію.",
- "backgrounds032018": "Набір 46: Випущено в березні 2018",
+ "backgrounds032018": "Набір 46: березень 2018",
"backgroundGorgeousGreenhouseText": "Чудова оранжерея",
"backgroundGorgeousGreenhouseNotes": "Прогуляйтеся серед флори, що зберігається у чудовій оранжереї.",
"backgroundElegantBalconyText": "Елегантний балкон",
"backgroundElegantBalconyNotes": "Подивіться на пейзаж з елегантного балкона.",
"backgroundDrivingACoachText": "Водіння карети",
"backgroundDrivingACoachNotes": "Насолоджуйтесь проїздом на кареті повз квіткові поля.",
- "backgrounds042018": "Набір 47: випущений у квітні 2018",
+ "backgrounds042018": "Набір 47: квітень 2018",
"backgroundTulipGardenText": "Сад тюльпанів",
"backgroundTulipGardenNotes": "Пройдіться навшиньках через сад тюльпанів.",
"backgroundFlyingOverWildflowerFieldText": "Поле польових квітів",
"backgroundFlyingOverWildflowerFieldNotes": "Політайте над полем польових квітів.",
"backgroundFlyingOverAncientForestText": "Ancient Forest",
"backgroundFlyingOverAncientForestNotes": "Пролетіть над навісом стародавнього лісу.",
- "backgrounds052018": "Набір 48: випущений у травні 2018",
+ "backgrounds052018": "Набір 48: травень 2018",
"backgroundTerracedRiceFieldText": "Терасове рисове поле",
"backgroundTerracedRiceFieldNotes": "Насолодіться рисовим полем у період дозрівання.",
"backgroundFantasticalShoeStoreText": "Фантастичний магазин взуття",
"backgroundFantasticalShoeStoreNotes": "Знайдіть нову пару веселого взуття у взуттєвому магазині.",
"backgroundChampionsColosseumText": "Колізей чемпіонів",
"backgroundChampionsColosseumNotes": "Насолоджуйтеся славою Колізею чемпіонів.",
- "backgrounds062018": "Набір 49: випущений у червні 2018",
+ "backgrounds062018": "Набір 49: червень 2018",
"backgroundDocksText": "Доки",
"backgroundDocksNotes": "Порибачте з доків.",
"backgroundRowboatText": "Гребний човен",
"backgroundRowboatNotes": "Співайте в гребному човні.",
"backgroundPirateFlagText": "Піратський прапор",
"backgroundPirateFlagNotes": "Повістьте страшний піратський прапор.",
- "backgrounds072018": "Набір 50: випущений у липні 2018",
+ "backgrounds072018": "Набір 50: липень 2018",
"backgroundDarkDeepText": "Темна глибина",
"backgroundDarkDeepNotes": "Плавайте в темряві серед біолюмінесцентних створінь.",
"backgroundDilatoryCityText": "Місто Неквапливості",
"backgroundDilatoryCityNotes": "Поблукайте підводним містом Неквапливості.",
"backgroundTidePoolText": "Припливний басейн",
"backgroundTidePoolNotes": "Поспостерігайте за океанічним життям біля заводі.",
- "backgrounds082018": "Набір 51: випущений у серпні 2018",
+ "backgrounds082018": "Набір 51: серпень 2018",
"backgroundTrainingGroundsText": "Тренувальні полігони",
"backgroundTrainingGroundsNotes": "Позмагайтесь на полігонах.",
"backgroundFlyingOverRockyCanyonText": "Скелястий каньйон",
"backgroundFlyingOverRockyCanyonNotes": "Подивіться вниз на захопливий вид, коли летітимете над скелястим каньйоном.",
"backgroundBridgeText": "Міст",
"backgroundBridgeNotes": "Прогуляйтесь чарівним мостом.",
- "backgrounds092018": "Набір 52: випущений у вересні 2018",
+ "backgrounds092018": "Набір 52: вересень 2018",
"backgroundApplePickingText": "Збір яблук",
"backgroundApplePickingNotes": "Ідіть на збір яблук і принесіть додому корзину.",
"backgroundGiantBookText": "Гігантська книга",
"backgroundGiantBookNotes": "Читайте, прогулюючись сторінками гігантської книги.",
"backgroundCozyBarnText": "Затишний сарай",
"backgroundCozyBarnNotes": "Відпочиньте зі своїми домашніми тваринами та верховими тваринами в їхньому затишному сараї.",
- "backgrounds102018": "Набір 53: Випущено в жовтні 2018",
+ "backgrounds102018": "Набір 53: жовтень 2018",
"backgroundBayouText": "Болото",
"backgroundBayouNotes": "Насолоджуйтесь сяйвом світлячків на туманному болоті.",
"backgroundCreepyCastleText": "Жахливий замок",
"backgroundCreepyCastleNotes": "Наважтесь підійти до моторошного замку.",
"backgroundDungeonText": "Підземелля",
"backgroundDungeonNotes": "Врятуйте в'язнів моторошного підземелля.",
- "backgrounds112018": "Набір 54: випущено в листопаді 2018",
+ "backgrounds112018": "Набір 54: листопад 2018",
"backgroundBackAlleyText": "Глухий провулок",
"backgroundBackAlleyNotes": "Виглядайте підозріло, тиняючись в провулку.",
"backgroundGlowingMushroomCaveText": "Сяюча грибна печера",
"backgroundGlowingMushroomCaveNotes": "Подивіться з трепетом на печеру, що світиться.",
"backgroundCozyBedroomText": "Затишна спальня",
"backgroundCozyBedroomNotes": "Згорніться калачиком в затишній спальні.",
- "backgrounds122018": "Набір 55: випущено в грудні 2018",
+ "backgrounds122018": "Набір 55: грудень 2018",
"backgroundFlyingOverSnowyMountainsText": "Засніжені гори",
"backgroundFlyingOverSnowyMountainsNotes": "Злітайте над засніженими горами вночі.",
"backgroundFrostyForestText": "Морозний ліс",
"backgroundFrostyForestNotes": "Зберіться в похід морозним лісом.",
"backgroundSnowyDayFireplaceText": "Камін у сніговий день",
"backgroundSnowyDayFireplaceNotes": "У сніжний день погрійтесь біля каміна.",
- "backgrounds012019": "Набір 56: випущений у січні 2019",
+ "backgrounds012019": "Набір 56: січень 2019",
"backgroundAvalancheText": "Лавина",
"backgroundAvalancheNotes": "Втікайте від громової могутності лавини.",
"backgroundArchaeologicalDigText": "Археологічні розкопки",
"backgroundArchaeologicalDigNotes": "Розкрийте таємниці стародавнього минулого під час археологічних розкопок.",
"backgroundScribesWorkshopText": "Майстерня писаря",
"backgroundScribesWorkshopNotes": "Напишіть свій наступний чудовий сувій у Майстерні писаря.",
- "backgrounds022019": "Набір S7: Випуск від лютого 2019",
+ "backgrounds022019": "Набір 57: лютий 2019",
"backgroundMedievalKitchenText": "Середньовічна кухня",
"backgroundMedievalKitchenNotes": "Приготуйте вихор в середньовічній кухні.",
"backgroundOldFashionedBakeryText": "Старомодна пекарня",
- "backgrounds032019": "Набір 58: випущений у березні 2019",
+ "backgrounds032019": "Набір 58: березень 2019",
"backgroundDuckPondText": "Качиний ставок",
"backgroundValentinesDayFeastingHallText": "Святковий зал до дня святого Валентина",
"backgroundFlowerMarketText": "Квітковий базар",
@@ -426,12 +426,12 @@
"backgroundRainbowMeadowNotes": "Знайдіть горщик золота у місці, де закінчується веселка.",
"backgroundDojoNotes": "Вивчіть нові рухи у Доджо.",
"backgroundDojoText": "Доджо",
- "backgrounds052019": "Набір 60: випущено в травні 2019",
+ "backgrounds052019": "Набір 60: травень 2019",
"backgroundBlossomingDesertNotes": "Милуйтеся рідкісним цвітом Квітучої пустелі.",
"backgroundHalflingsHouseNotes": "Відвідайте гарний будинок напівростика.",
"backgroundHalflingsHouseText": "Будинок Напівростика",
"backgroundBirchForestNotes": "Прогуляйтеся у тихому березовому лісі.",
- "backgrounds042019": "Набір 59: Випущено у квітні 2019",
+ "backgrounds042019": "Набір 59: квітень 2019",
"backgroundFlowerMarketNotes": "Знайдіть ідеальні кольори для букету або саду на квітковому баразі.",
"backgroundValentinesDayFeastingHallNotes": "Відчуйте любов у святковому залі до Дня закоханих.",
"backgroundRainbowMeadowText": "Веселковий Луг",
@@ -442,64 +442,64 @@
"backgroundHolidayWreathNotes": "Прикрасьте свій аватар запашним святковим вінком.",
"backgroundHolidayWreathText": "Святковий вінок",
"backgroundHolidayMarketNotes": "Знайдіть найкращі подарунки та прикраси на святковій ярмарці.",
- "backgroundHolidayMarketText": "Святкова ярмарка",
- "backgrounds122019": "Набір 67: випущений у грудні 2019",
+ "backgroundHolidayMarketText": "Святковий ярмарок",
+ "backgrounds122019": "Набір 67: грудень 2019",
"backgroundPotionShopNotes": "Знайдіть зілля від будь-якої недуги у лавці.",
"backgroundPotionShopText": "Лавка зілль",
"backgroundFlyingInAThunderstormNotes": "Наблизьтесь до епіцентру грози настільки близько, настільки осмелитесь.",
"backgroundFlyingInAThunderstormText": "Бурхлива гроза",
"backgroundFarmersMarketNotes": "Купуйте найсвіжіші продукти на фермерському ринку.",
"backgroundFarmersMarketText": "Фермерський ринок",
- "backgrounds112019": "Набір 66: випущений у листопаді 2019",
+ "backgrounds112019": "Набір 66: листопад 2019",
"backgroundMonsterMakersWorkshopNotes": "Експериментуйте з сумнівними науками в майстерні монстрів.",
"backgroundMonsterMakersWorkshopText": "Майстерня монстрів",
"backgroundPumpkinCarriageNotes": "Проїдьтеся у чарівній гарбузовій кареті, поки годинник не проб'є північ.",
"backgroundPumpkinCarriageText": "Карета з гарбуза",
"backgroundFoggyMoorNotes": "Дивіться під ноги, блукаючи Туманною долиною.",
"backgroundFoggyMoorText": "Туманна долина",
- "backgrounds102019": "Набір 65: випущений у жовтні 2019",
+ "backgrounds102019": "Набір 65: жовтень 2019",
"backgroundInAClassroomNotes": "Гризіть граніт науки в класі.",
"backgroundInAClassroomText": "Клас",
"backgroundInAnAncientTombNotes": "Розгадайте таємниці стародавньої гробниці.",
"backgroundInAnAncientTombText": "Стародавня гробниця",
"backgroundAutumnFlowerGardenNotes": "Насолодіться теплом осіннього саду.",
"backgroundAutumnFlowerGardenText": "Осінній квітковий сад",
- "backgrounds092019": "Набір 64: випущений у вересні 2019",
+ "backgrounds092019": "Набір 64: вересень 2019",
"backgroundTreehouseNotes": "Відпочиньте у Вашій схованці — власному будиночку на дереві.",
"backgroundTreehouseText": "Будинок на дереві",
"backgroundGiantDandelionsNotes": "Прогуляйтеся серед гігантських кульбаб.",
"backgroundGiantDandelionsText": "Гігантські кульбаби",
"backgroundAmidAncientRuinsNotes": "Висловіть пошану таємничому минулому стародавніх руїн.",
"backgroundAmidAncientRuinsText": "Серед стародавніх руїн",
- "backgrounds082019": "Набір 63:випущено у серпні 2019",
+ "backgrounds082019": "Набір 63: серпень 2019",
"backgroundAmongGiantAnemonesNotes": "Дослідіть рифове життя серед велетенських анемон.",
"backgroundAmongGiantAnemonesText": "Посеред велетенських анемон",
"backgroundFlyingOverTropicalIslandsNotes": "Від краєвиду тропічних островів у Вас перехопить подих.",
"backgroundFlyingOverTropicalIslandsText": "Політ над тропічними островами",
"backgroundLakeWithFloatingLanternsNotes": "Споглядайте зорі на озері з плавучими ліхтарями.",
"backgroundLakeWithFloatingLanternsText": "Озеро плавучих ліхтарів",
- "backgrounds072019": "Набір 62: випущено у липні 2019",
+ "backgrounds072019": "Набір 62: липень 2019",
"backgroundUnderwaterVentsText": "Глибоководні гідротермальні джерела",
"backgroundUnderwaterVentsNotes": "Зануртеся до гідротермальних джерел.",
"backgroundSeasideCliffsNotes": "Відпочиньте на пляжі з красивими приморськими скелями.",
"backgroundSeasideCliffsText": "Приморські скелі",
"backgroundSchoolOfFishNotes": "Поплавайте серед риб.",
"backgroundSchoolOfFishText": "Косяк риб",
- "backgrounds062019": "Набір 61: випущено у червні 2019",
+ "backgrounds062019": "Набір 61: червень 2019",
"backgroundTeaPartyNotes": "Візьміть участь у вишуканому чаюванні.",
"backgroundTeaPartyText": "Чаювання",
"backgroundHallOfHeroesNotes": "Пройдіться по залі героїв з повагою та подякою.",
"backgroundElegantBallroomText": "Елегантна бальна зала",
"backgroundElegantBallroomNotes": "Танцюйте всю ніч в елегантній бальній залі.",
"backgroundHallOfHeroesText": "Зал героїв",
- "backgrounds022020": "Набір 69: випущений у лютому 2020",
+ "backgrounds022020": "Набір 69: лютий 2020",
"backgroundSnowglobeNotes": "Струсіть снігову кулю та пориньте у мікросвіт зимового пейзажу.",
"backgroundSnowglobeText": "Снігова куля",
"backgroundDesertWithSnowNotes": "Насолодіться рідкісною й тихою красою сніжної пустелі.",
"backgroundDesertWithSnowText": "Сніжна пустеля",
"backgroundBirthdayPartyNotes": "Відсвяткуйте день народження свого улюбленого жителя Habitica.",
"backgroundBirthdayPartyText": "Вечірка в честь дня народження",
- "backgrounds012020": "Набір 68: випущений у січні 2020",
+ "backgrounds012020": "Набір 68: січень 2020",
"backgroundRainyBarnyardText": "Дощовий Сад",
"backgroundHeatherFieldNotes": "Насолоджуйтесь ароматом поля вересу.",
"backgroundHeatherFieldText": "Хізардове поле",
@@ -510,7 +510,7 @@
"backgroundButterflyGardenText": "Сад метеликів",
"backgroundAmongGiantFlowersNotes": "Деллі серед гігантських квітів.",
"backgroundAmongGiantFlowersText": "Серед гігантських квітів",
- "backgroundHabitCityRooftopsText": "Дах міста звичок",
+ "backgroundHabitCityRooftopsText": "Дахи Звичко-сіті",
"backgroundAnimalCloudsNotes": "Вправляйте свою уяву, знаходячи фігури тварин у хмарах.",
"backgrounds032020": "Сет 70: Випущено в березні 2020 року",
"backgrounds042020": "Сет 71: Випущений у квітні 2020 року",
@@ -521,7 +521,7 @@
"backgroundHotAirBalloonText": "Повітряна куля",
"backgroundJungleCanopyText": "Навіс джунглів",
"backgroundCampingOutText": "Кемпінг",
- "backgrounds082020": "Сет 75: Випущено в серпні 2020 року",
+ "backgrounds082020": "Набір 75: серпень 2020",
"backgroundUnderwaterRuinsText": "Підводні руїни",
"backgroundSwimmingAmongJellyfishText": "Плавання серед медуз",
"backgroundBeachCabanaNotes": "Відпочиньте в тіні пляжу Кабана.",
@@ -529,7 +529,7 @@
"backgrounds072020": "Сет 74: Випущено в липні 2020 року",
"backgroundVikingShipText": "Корабель вікінгів",
"backgroundSaltLakeText": "Солоне озеро",
- "backgrounds052020": "Сет 72: Випущений у травні 2020 року",
+ "backgrounds052020": "Набір 72: травень 2020",
"backgroundHabitCityRooftopsNotes": "Авантюрно стрибніть між дахами міста звичок.",
"backgroundClocktowerText": "Годинникова вежа",
"backgroundAirshipText": "Дирижабль",
@@ -542,16 +542,16 @@
"backgroundAirshipNotes": "Станьте моряком неба на борту власного дирижабля.",
"timeTravelBackgrounds": "Фони в стилі стімпанк",
"backgroundInTheArmoryNotes": "Одягніться в зброярні.",
- "backgrounds032021": "Набір 82: Випущено у березні 2021 року",
+ "backgrounds032021": "Набір 82: березень 2021",
"backgroundThroneRoomNotes": "Подаруйте аудиторію у вашій розкішній Тронній залі.",
"backgroundHeartShapedBubblesNotes": "Весело плавайте серед бульбашок у формі серця.",
"backgroundHeartShapedBubblesText": "Бульбашки у формі серця",
"backgroundFlyingOverGlacierNotes": "Побачте велич морозу, пролітаючи над льодовиком.",
"backgroundHerdingSheepInAutumnNotes": "Змішайтеся зі стадом овець.",
- "backgrounds092020": "Набір 76: Випущений у вересні 2020 року",
+ "backgrounds092020": "Набір 76: вересень 2020",
"backgroundProductivityPlazaText": "Продуктивність Плаза",
"backgroundCrescentMoonText": "Півмісяць",
- "backgrounds102020": "Набір 77: Випущений у жовтні 2020 року",
+ "backgrounds102020": "Набір 77: жовтень 2020",
"backgroundSpookyScarecrowFieldText": "Моторошне опудало поля",
"backgroundHauntedForestNotes": "Постарайтеся не загубитися в лісі привидів.",
"backgroundHauntedForestText": "Ліс з привидами",
@@ -568,7 +568,7 @@
"backgroundRelaxationRiverNotes": "Дрейфуйте мляво вниз по релаксуючій річці.",
"backgroundRainyBarnyardNotes": "Пройдіться змоченою бризкою прогулянкою по дощовому садовому двору.",
"backgroundHotAirBalloonNotes": "Літайте над краєвидом на повітряній кулі.",
- "backgrounds112020": "Набір 78: Випущено в листопаді 2020 року",
+ "backgrounds112020": "Набір 78: листопад 2020",
"backgroundMysticalObservatoryNotes": "Прочитайте свою долю по зірках в Містичній обсерваторії.",
"backgroundRestingInTheInnNotes": "Працюйте в комфорті та в безпеці готельного номеру.",
"backgroundRiverOfLavaText": "Річка лави",
@@ -585,12 +585,12 @@
"backgroundRiverOfLavaNotes": "Киньте виклик потоку, прогулявшись поблизу річки лави.",
"backgroundGingerbreadHouseNotes": "Насолоджуйтесь пам’ятками, запахами та (якщо посмієте) смаками пряникового будиночка.",
"backgroundIcicleBridgeText": "Бурульковий міст",
- "backgrounds012021": "Набір 80: Випущено в січні 2021",
+ "backgrounds012021": "Набір 80: січень 2021",
"backgroundWintryCastleText": "Зимовий замок",
- "backgrounds122020": "Набір 79: Випущено в грудні 2020 року",
+ "backgrounds122020": "Набір 79: грудень 2020",
"backgroundHotSpringText": "Гаряче джерело",
"backgroundIcicleBridgeNotes": "Обережно переходьте через Бурульковий міст.",
- "backgrounds022021": "Набір 81: Випущено в лютому 2021",
+ "backgrounds022021": "Набір 81: лютий 2021",
"backgroundWintryCastleNotes": "Спогляньте обриси зимового замоку крізь холодні тумани.",
"backgroundFlyingOverGlacierText": "Політ над льодовиком",
"backgroundDragonsLairText": "Лігво дракона",
@@ -602,19 +602,19 @@
"backgroundElegantGardenText": "Елегантний сад",
"backgroundInsideAnOrnamentText": "Всередині скляної кулі",
"backgroundRagingRiverNotes": "Стійте серед могутньої течії бурхливої річки.",
- "backgrounds082021": "Набір 87: Випущено в серпні 2021",
+ "backgrounds082021": "Набір 87: серпень 2021",
"backgroundAutumnPoplarsNotes": "Насолоджуйтесь блискучими відтінками коричневого та золотого в осінньому тополиному лісі.",
"backgroundSplashInAPuddleNotes": "Насолоджуйтесь наслідками шторму, поплюскавшись в калюжі.",
"backgroundForestedLakeshoreText": "Лісистий берег озера",
"backgroundVineyardNotes": "Дослідіть віти плодоносного виноградника.",
- "backgrounds052021": "Набір 84: Випущено в травні 2021",
+ "backgrounds052021": "Набір 84: травень 2021",
"backgroundCottageConstructionText": "Будівництво котеджу",
"backgroundInsideAnOrnamentNotes": "Нехай ваш святковий настрій сяє зсередини снігової кулі.",
"backgroundAmongCattailsNotes": "Помилуйтеся дикою природою болотних угідь, стоячи серед рогозу.",
"backgroundCottageConstructionNotes": "Допоможіть або принаймні проконтролюйте будівництво котеджу.",
"backgroundElegantGardenNotes": "Пройдіться доглянутими стежками елегантного саду.",
"backgroundAfternoonPicnicNotes": "Влаштуйте післяобідній пікнік наодинці або зі своїм домашнім улюбленцем.",
- "backgrounds062021": "Набір 85: Випущено в червні 2021",
+ "backgrounds062021": "Набір 85: червень 2021",
"backgroundForestedLakeshoreNotes": "Будьте предметом заздрості вашого гурту, зробивши фото на лісистому березі озера.",
"backgroundSpringThawNotes": "Спостерігайте за врожаєм озимини під час весняної відлиги.",
"backgroundClotheslineNotes": "Потусуйтеся, поки одяг сохне на мотузці.",
@@ -625,11 +625,11 @@
"backgroundStoneTowerNotes": "Подивіться з парапетів однієї кам’яної вежі на іншу.",
"backgroundRopeBridgeNotes": "Продемонструйте тим, хто сумнівається, що цей мотузковий міст абсолютно безпечний.",
"backgroundDaytimeMistyForestNotes": "Купайтеся в сяйві денного світла, що ллється крізь Туманний ліс.",
- "backgrounds092021": "Набір 88: Випущено у вересні 2021",
+ "backgrounds092021": "Набір 88: вересень 2021",
"backgroundVineyardText": "Виноградник",
"backgroundWindmillsText": "Вітряки",
"backgroundUnderwaterAmongKoiText": "Під водою серед коропів",
- "backgrounds042021": "Набір 83: Випущено у квітні 2021",
+ "backgrounds042021": "Набір 83: квітень 2021",
"backgroundSpringThawText": "Весняна відлига",
"backgroundAfternoonPicnicText": "Післяобідній пікнік",
"backgroundStoneTowerText": "Кам'яна вежа",
@@ -637,20 +637,20 @@
"backgroundClotheslineText": "Мотузка для білизни",
"backgroundWaterMillText": "Водяний млин",
"backgroundRopeBridgeText": "Мотузковий міст",
- "backgrounds072021": "Набір 86: Випущено в липні 2021",
+ "backgrounds072021": "Набір 86: липень 2021",
"backgroundDragonsLairNotes": "Намагайтеся не турбувати мешканця лігва дракона.",
"backgroundAutumnLakeshoreNotes": "Зупиніться на осінньому березі озера, щоб оцінити відображення лісу на воді.",
- "backgrounds122021": "Набір 91: Випущено в грудні 2021",
+ "backgrounds122021": "Набір 91: грудень 2021",
"backgroundFrozenPolarWatersText": "Замерзлі полярні води",
"backgroundFrozenPolarWatersNotes": "Досліджуйте замерзлі полярні води.",
- "backgrounds112021": "Набір 90: Випущено в листопаді 2021",
+ "backgrounds112021": "Набір 90: листопад 2021",
"backgroundFortuneTellersShopText": "Магазин ворожки",
"backgroundFortuneTellersShopNotes": "Відшукайте спокусливі натяки на своє майбутнє у ворожки.",
"backgroundInsideAPotionBottleText": "Всередині пляшки з зіллям",
"backgroundInsideAPotionBottleNotes": "Вдивляйтесь крізь скло, сподіваючись на порятунок із пляшки з зіллям.",
"backgroundSpiralStaircaseText": "Гвинтові сходи",
"backgroundSpiralStaircaseNotes": "Піднімайтеся вгору або ж спускайтесь, коло за колом гвинтовими сходами.",
- "backgrounds102021": "Набіри 89: Випущено в жовтні 2021",
+ "backgrounds102021": "Набіри 89: жовтень 2021",
"backgroundCrypticCandlesText": "Загадкові свічки",
"backgroundCrypticCandlesNotes": "Викличте таємничі сили посеред загадкових свічок.",
"backgroundHauntedPhotoText": "Фото з привидами",
@@ -658,7 +658,7 @@
"backgroundUndeadHandsText": "Руки нежиті",
"backgroundUndeadHandsNotes": "Спробуйте вирватися з лап нежиті.",
"backgroundWinterCanyonText": "Зимовий каньйон",
- "backgrounds012022": "Набір 92: Випущено в січні 2022",
+ "backgrounds012022": "Набір 92: січень 2022",
"backgroundWinterCanyonNotes": "Пригода в зимовому каньйоні!",
"backgroundIcePalaceText": "Льодяний палац",
"backgroundIcePalaceNotes": "Пануйте в льодовому палаці.",
@@ -673,28 +673,56 @@
"backgroundOrangeGroveNotes": "Прогуляйтесь по запашному апельсиновому гаю.",
"backgroundIridescentCloudsText": "Райдужні хмари",
"backgroundIridescentCloudsNotes": "Поплавайте в райдужних хмарах.",
- "backgrounds022022": "Набір 93: Випущено в лютому 2022",
+ "backgrounds022022": "Набір 93: лютий 2022",
"backgroundWinterWaterfallNotes": "Помилуйтесь зимовим водоспадом.",
"backgroundBrickWallWithIvyText": "Цегляна стіна з плющом",
"backgroundFloweringPrairieText": "Квітуча прерія",
"backgroundFloweringPrairieNotes": "Пограйте в квітучій прерії.",
- "backgrounds032022": "Набір 94: Випущено в березні 2022",
+ "backgrounds032022": "Набір 94: березень 2022",
"backgroundAnimalsDenNotes": "Затишно в лігві лісових тварин.",
"backgroundAnimalsDenText": "Лігво лісових тварин",
"backgroundBrickWallWithIvyNotes": "Помилуйтеся цегляною стіною з плющем.",
- "hideLockedBackgrounds": "Сховати заблоковані фони",
+ "hideLockedBackgrounds": "Сховати недоступні задні плани",
"backgroundBlossomingTreesNotes": "Погуляйте під квітучими деревами.",
"backgroundFlowerShopText": "Магазин квітів",
"backgroundFlowerShopNotes": "Насолоджуйтесь солодким ароматом квіткового магазину.",
"backgroundSpringtimeLakeText": "Весняне озеро",
"backgroundSpringtimeLakeNotes": "Ознайомтеся з визначними пам'ятками вздовж берегів весняного озера.",
- "backgrounds042022": "Набір 95: Випущено у квітні 2022",
+ "backgrounds042022": "Набір 95: квітень 2022",
"backgroundBlossomingTreesText": "Квітучі дерева",
"backgroundOnACastleWallText": "На стіні замку",
"backgroundOnACastleWallNotes": "Огляньте все зі стіни замку.",
"backgroundEnchantedMusicRoomNotes": "Грайте в зачарованій музичній кімнаті.",
- "backgrounds052022": "Набір 96: Випущено в травні 2022",
+ "backgrounds052022": "Набір 96: травень 2022",
"backgroundCastleGateText": "Ворота замку",
"backgroundCastleGateNotes": "Постійте на варті біля воріт замку.",
- "backgroundEnchantedMusicRoomText": "Зачарована музична кімната"
+ "backgroundEnchantedMusicRoomText": "Зачарована музична кімната",
+ "backgrounds072022": "Набір 98: липень 2022",
+ "backgroundBioluminescentWavesText": "Біолюмінесцентні хвилі",
+ "backgroundBioluminescentWavesNotes": "Помилуйтеся сяйвом біолюмінесцентних хвиль.",
+ "backgroundUnderwaterCaveText": "Підводна печера",
+ "backgroundUnderwaterCaveNotes": "Дослідіть підводну печеру.",
+ "backgroundUnderwaterStatuesText": "Підводний сад статуй",
+ "backgroundUnderwaterStatuesNotes": "Намагайтеся не моргати в підводному саду статуй.",
+ "backgrounds062022": "Набір 97: червень 2022",
+ "backgroundBeachWithDunesText": "Пляж з дюнами",
+ "backgroundBeachWithDunesNotes": "Дослідіть пляж із дюнами.",
+ "backgroundMountainWaterfallText": "Гірський водоспад",
+ "backgroundSailboatAtSunsetText": "Вітрильник на заході сонця",
+ "backgroundSailboatAtSunsetNotes": "Насолодіться красою вітрильника на заході сонця.",
+ "backgroundMountainWaterfallNotes": "Помилуйтесь гірським водоспадом.",
+ "backgroundRainbowEucalyptusText": "Райдужний евкаліпт",
+ "backgroundRainbowEucalyptusNotes": "Помилуйтеся райдужним евкаліптовим гаєм.",
+ "backgroundMessyRoomText": "Безладна кімната",
+ "backgroundByACampfireNotes": "Грійтеся в сяйві поблизу багаття.",
+ "backgrounds082022": "Набір 99: серпень 2022",
+ "backgroundMessyRoomNotes": "Наведіть порядок у безладній кімнаті.",
+ "backgroundByACampfireText": "Біля багаття",
+ "backgrounds092022": "Набір 100: вересень 2022",
+ "backgroundTheatreStageText": "Театральна сцена",
+ "backgroundTheatreStageNotes": "Зіграйте на театральній сцені.",
+ "backgroundAutumnPicnicText": "Осінній пікнік",
+ "backgroundAutumnPicnicNotes": "З'їздіть на осінній пікнік.",
+ "backgroundOldPhotoText": "Старе фото",
+ "backgroundOldPhotoNotes": "Прийміть загадкову позу на старому фото."
}
diff --git a/website/common/locales/uk/character.json b/website/common/locales/uk/character.json
index 4672133ec7..55ce1a0e35 100644
--- a/website/common/locales/uk/character.json
+++ b/website/common/locales/uk/character.json
@@ -53,7 +53,7 @@
"equipment": "Спорядження",
"equipmentBonus": "Спорядження",
"classEquipBonus": "Класовий бонус",
- "battleGear": "Бойове спорядження",
+ "battleGear": "Обладунки",
"gear": "Спорядження",
"autoEquipBattleGear": "Автоматично вдягати нове спорядження",
"costume": "Костюм",
@@ -82,7 +82,7 @@
"allocateCon": "Призначено очок комплекції:",
"allocateConPop": "Додати очко до Комплекції",
"allocatePer": "Призначено очок сприйняття:",
- "allocatePerPop": "Додати очко до Сприйняття",
+ "allocatePerPop": "Додати бал до спритності",
"allocateInt": "Призначено очок інтелекту:",
"allocateIntPop": "Додати очко до Інтелекту",
"noMoreAllocate": "Тепер, досягнувши 100 рівня, Ви більше не будете отримувати очки атрибутів. Ви можете продовжувати отримувати нові рівні або почати нову пригоду з першого рівня, використавши Сферу Переродження !",
@@ -93,7 +93,7 @@
"constitution": "Витривалість",
"conText": "Витривалість зменшує шкоду від поганих звичок та провалених щоденок.",
"perception": "Спритність",
- "perText": "Сприйняття збільшує число заробленого золота, а з розблокуванням Ринку збільшить шанси знайти предмет при виконанні завдань.",
+ "perText": "Спритність збільшує число отримуваного золота, а після розблокуванням ринку збільшить шанси знайти предмет при виконанні завдань.",
"intelligence": "Інтелект",
"intText": "Інтелект збільшує отриманий досвід, а після відкриття класів, визначає максимальний рівень мани, доступний здібностям Вашого класу.",
"levelBonus": "Бонус за рівень",
@@ -175,9 +175,9 @@
"editProfile": "Змінити профіль",
"challengesWon": "Виграно випробувань",
"questsCompleted": "Виконано квестів",
- "headAccess": "Акс. на голову",
- "backAccess": "Акс. на спину",
- "bodyAccess": "Акс. на тіло",
+ "headAccess": "Акс. для голови",
+ "backAccess": "Акс. для спини",
+ "bodyAccess": "Акс. для тіла",
"mainHand": "Права рука",
"offHand": "Ліва рука",
"statPoints": "Очки",
diff --git a/website/common/locales/uk/communityguidelines.json b/website/common/locales/uk/communityguidelines.json
index d4da040cb6..4825968f33 100644
--- a/website/common/locales/uk/communityguidelines.json
+++ b/website/common/locales/uk/communityguidelines.json
@@ -2,127 +2,132 @@
"tavernCommunityGuidelinesPlaceholder": "Дружнє нагадування: у цьому чаті спілкуються люди різного віку, тому просимо вас стежити за мовою і змістом. Зверніться до Правил Спільноти нижче, якщо в вас є питання.",
"lastUpdated": "Останній раз оновлено:",
"commGuideHeadingWelcome": "Ласкаво просимо до країни Habitica!",
- "commGuidePara001": "Вітаю, шукачу пригод! Запрошуємо до Habitica — країни продуктивності, здорового життя та іноді шалених грифонів. У нас веселе товариство людей, які завжди раді допомогти та підтримати інших на їхньому шляху до самовдосконалення.\nДля того щоб стати своїм все що необхідне - це позитивне відношення, шанобливе ставлення та розуміння того, що у кожного є різні навички та обмеження, включаючи вас! Хабітиканці терплять один одного і намагаються допомогти, коли можливо.",
+ "commGuidePara001": "Вітаю, шукачу пригод! Запрошуємо до Habitica — країни продуктивності, здорового життя та іноді шалених ґрифонів. У нас веселе товариство людей, які завжди раді допомогти та підтримати інших на їхньому шляху до самовдосконалення. Для того щоб стати своїм все що необхідне - це позитивне відношення, шанобливе ставлення та розуміння того, що у кожного є різні навички та обмеження, включаючи вас! Габітиканці поважають один одного і намагаються допомогти, коли можливо.",
"commGuidePara002": "Аби всі у нашому товаристві були здорові, щасливі та продуктивні, існує кілька правил. Ми ретельно склали правила, щоб вони були настільки доброзичливі та зручні для сприйняття, наскільки це можливо. Будь ласка, знайдіть час, щоб прочитати їх перед тим як почнете спілкуватися.",
"commGuidePara003": "Ці правила стосуються усіх соціальних каналів, якими ми користуємось, у тому числі (але не винятково) Trello, GitHub, Weblate і Habitica Wiki на Fandom. Оскільки спільноти ростуть і змінюються, їхні правила можуть час від часу адаптуватися. Коли в цих Інструкціях будуть внесені істотні зміни, ви почуєте про це в оголошеннях Bailey та/або в наших соціальних мережах!",
"commGuideHeadingInteractions": "Взаємодія в Habitica",
"commGuidePara015": "Habitica має публічні та приватні місця для спілкування. Публічні це таверна, відкриті ґільдії, GitHub, Trello, та Wiki. Приватні - закриті ґільдії, чат команди, особисті повідомлення. Всі імена та @нікнейми повинні слідувати правилам публічних місць. Змінити ваше ім'я та/або @нікнейм можна з телефону: бокове меню > Налаштування > Мій акаунт; з веб-версії: Користувач > Налаштування.",
"commGuidePara016": "Є декілька загальних правил, які допоможуть зберегти спокій і задоволення, коли ви вивчаєте нові місця у Habitica.",
"commGuideList02A": "Поважайте один одного. Будьте ввічливими, уважними, дружніми та допомагайте іншим. Пам'ятайте: Звичанійці прибули з різних місць і мають дивовижно різний досвід. Це частина того, що робить Habitica кльовою! Влаштування спільноти означає повагу та прийняття наших відмінностей, так само як і наших схожих рис.",
- "commGuideList02B": "Дотримуйтесь усіх Правил та Умов.",
- "commGuideList02C": "Не публікуйте зображення або тексти, які є насильницькими, загрозливими, сексуально відвертими/наводними, чи пропагують дискримінацію, фанатизм, расизм, сексизм, ненависть, переслідування чи шкоду будь-якій особі чи групі. Навіть не як жарт чи мем. Це включає образи, а також заяви. Не всі мають однакове почуття гумору, тому те, що ви вважаєте жартом, може зашкодити іншим.",
- "commGuideList02D": "Підтримуйте обговорення відповідними для будь-якого віку. Це означає уникання тем для дорослих у громадських місцях. У нас є багато молодих хабітиків, які користуються сайтом, і люди приходять з усіх верств суспільства. Ми хочемо, щоб наша громада була максимально комфортною та інклюзивною.",
+ "commGuideList02B": "Дотримуйтесь усіх Загальних положень та умов як у публічних, так і в приватних місцях.",
+ "commGuideList02C": "Не публікуйте зображення або тексти, які є насильницькими, загрозливими, сексуально відвертими/наводними, чи пропагують дискримінацію, фанатизм, расизм, сексизм, ненависть, переслідування чи шкоду будь-якій особі чи групі. Навіть не як жарт чи мем. Це включає образи, а також заяви. Не всі мають однакове почуття гумору, тому те, що ви вважаєте жартом, може зашкодити іншим.",
+ "commGuideList02D": "Підтримуйте обговорення відповідними для будь-якого віку. Це означає уникання тем для дорослих у громадських місцях. У нас є багато молодих габітиканців, які користуються сайтом, і люди приходять з усіх верств суспільства. Ми хочемо, щоб наша громада була максимально комфортною та інклюзивною.",
"commGuideList02E": "Уникайте ненормативної лексики. Це включає м’які клятви на релігійній основі, які можуть бути прийнятними в інших місцях, а також скорочену чи приховану ненормативну лексику. У нас є люди різного релігійного та культурного походження, і ми хочемо, щоб усі вони відчували себе комфортно в громадських місцях. Якщо модератор або співробітник скаже вам, що термін заборонено на Habitica, навіть якщо це термін, який ви не усвідомлювали, є проблематичним, це рішення є остаточним. Крім того, образи розглядатимуться дуже суворо, оскільки вони також є порушенням Умов використання.",
- "commGuideList02F": "Avoid extended discussions of divisive topics in the Tavern and where it would be off-topic. If you feel that someone has said something rude or hurtful, do not engage them. If someone mentions something that is allowed by the guidelines but which is hurtful to you, it’s okay to politely let someone know that. If it is against the guidelines or the Terms of Service, you should flag it and let a mod respond. When in doubt, flag the post.",
- "commGuideList02G": "Негайно виконайте будь-який запит на модифікацію. Це може включати, але не обмежуючись цим, прохання обмежити ваші публікації в певному просторі, редагування вашого профілю для видалення невідповідного вмісту, прохання перемістити обговорення в більш підходящий простір тощо. Не сперечайтеся з модераторами. Якщо у вас є зауваження або зауваження щодо модерації, надішліть електронний лист на admin@habitica.com, щоб зв’язатися з нашим менеджером спільноти.",
- "commGuideList02J": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, posting multiple promotional messages about a Guild, Party or Challenge, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming. If people clicking on a link will result in any benefit to you, you need to disclose that in the text of your message or that will also be considered spam.
It is up to the mods to decide if something constitutes spam or might lead to spam, even if you don’t feel that you have been spamming. For example, advertising a Guild is acceptable once or twice, but multiple posts in one day would probably constitute spam, no matter how useful the Guild is!",
- "commGuideList02K": "Уникайте публікувати великий текст заголовка в публічних чатах, особливо в таверні. Подібно до ВЕЛИКИХ, він читається так, ніби ви кричите, і заважає створенню комфортної атмосфери.",
- "commGuideList02L": "We highly discourage the exchange of personal information -- particularly information that can be used to identify you -- in public chat spaces. Identifying information can include but is not limited to: your address, your email address, and your API token/password. This is for your safety! Staff or moderators may remove such posts at their discretion. If you are asked for personal information in a private Guild, Party, or PM, we highly recommend that you politely refuse and alert the staff and moderators by either 1) flagging the message if it is in a Party or private Guild, or 2) filling out the Moderator Contact Form and including screenshots.",
- "commGuidePara019": "У приватних місцях користувачі мають більше свободи обговорювати будь-які теми, які вони хочуть, але вони все одно не можуть порушувати Загальні положення та умови, зокрема публікувати образи чи будь-який дискримінаційний, насильницький чи загрозливий вміст. Зауважте, що, оскільки назви випробувань відображаються в загальнодоступному профілі переможця, ВСІ назви випробувань мають відповідати правилам публічного простору, навіть якщо вони з’являються в приватному просторі.",
+ "commGuideList02F": "Уникайте тривалих обговорень суперечливих тем у таверні та там, де це не стосується теми. Якщо хтось згадує щось, що дозволено правилами, але образливо для вас, можна ввічливо повідомити їм про це. Якщо хтось каже вам, що ви завдали йому дискомфорту, знайдіть час, щоб подумати, а не відповідати відразу гнівним повідомленням. Але якщо ви відчуваєте, що розмова стає гарячою, надто емоційною або образливою, припиніть участь. Натомість повідомте нас про публікації. Модератори дадуть відповідь якомога швидше. Ви також можете скористатись електонною поштоюadmin@habitica.com та додати скриншоти, якщо вони будуть корисними.",
+ "commGuideList02G": "Негайно виконайте будь-який запит на модифікацію. Це може включати, але не обмежуючись цим, прохання обмежити ваші публікації в певному просторі, редагування вашого профілю для видалення невідповідного вмісту, прохання перемістити обговорення в більш підходящий простір тощо. Не сперечайтеся з модераторами. Якщо у вас є зауваження або зауваження щодо модерації, надішліть електронний лист на admin@habitica.com, щоб зв’язатися з нашим менеджером спільноти.",
+ "commGuideList02J": "Не розсилайте спам. Спам може включати, але не обмежується: публікацією одного коментаря чи кількох повідомлень в кількох місцях, розміщенням посилань без пояснення чи контексту, публікацією безглуздих повідомлень, публікацією кількох рекламних повідомлень про ґільдію, команду чи випробування, або розміщенням багатьох повідомлень поспіль. Якщо люди, натиснувши посилання, принесуть вам будь-яку вигоду, ви повинні розкрити це в тексті свого повідомлення, інакше це також буде вважатися спамом. Моди можуть вирішувати, що вважати спамом на власний розсуд.",
+ "commGuideList02K": "Уникайте публікувати великий текст заголовка в публічних чатах, особливо в таверні. Подібно до ВЕЛИКИХ, він читається так, ніби ви кричите, і заважає створенню комфортної атмосфери.",
+ "commGuideList02L": "Ми настійно не рекомендуємо обмінюватися особистою інформацією, зокрема інформацією, яка може бути використана для ідентифікації вас, у публічних чатах. Ідентифікаційна інформація може включати, але не обмежуватися: вашою адресою, електронною поштою та токен/паролем API. Це ж для вашої безпеки! Персонал або модератори можуть видаляти такі дописи на власний розсуд. Якщо вас просять надати особисту інформацію в приватній ґільдії, команді чи приватному листі, ми настійно рекомендуємо вам ввічливо відмовитися та попередити персонал і модераторів, 1) позначивши повідомлення або 2) надіславши електронний лист на admin@habitica.com включно зі знімками екрана.",
+ "commGuidePara019": "У приватних місцях користувачі мають більше свободи обговорювати будь-які теми, які вони хочуть, але вони все одно не можуть порушувати Загальні положення та умови, зокрема публікувати образи чи будь-який дискримінаційний, насильницький чи загрозливий вміст. Зауважте, що, оскільки назви випробувань відображаються в загальнодоступному профілі переможця, ВСІ назви випробувань мають відповідати правилам публічного простору, навіть якщо вони з’являються в приватному просторі.",
"commGuidePara020": "Приватні повідомлення (ПП) містять деякі додаткові вказівки. Якщо хтось заблокував вас, не звертайтеся до нього в іншому місці, щоб просити вас розблокувати. Крім того, ви не повинні надсилати ПП комусь із проханням про підтримку (оскільки публічні відповіді на запитання підтримки корисні для спільноти). І, нарешті, нікому не посилайте ПП, щоб попросити будь-який платний контент.",
- "commGuidePara020A": "If you see a post that you believe is in violation of the public space guidelines outlined above, or if you see a post that concerns you or makes you uncomfortable, you can bring it to the attention of Moderators and Staff by clicking the flag icon to report it. A Staff member or Moderator will respond to the situation as soon as possible. Please note that intentionally reporting innocent posts is an infraction of these Guidelines (see below in “Infractions”). PMs cannot be flagged at this time, so if you need to report a PM, please contact the Mods via the form on the “Contact Us” page, which you can also access via the help menu by clicking “Contact the Moderation Team.” You may want to do this if there are multiple problematic posts by the same person in different Guilds, or if the situation requires some explanation. You may contact us in your native language if that is easier for you: we may have to use Google Translate, but we want you to feel comfortable about contacting us if you have a problem.",
- "commGuidePara021": "Крім того, для деяких громадських місць в Habitica є додаткові рекомендації.",
+ "commGuidePara020A": "Якщо ви бачите публікацію чи приватне повідомлення, яке, на вашу думку, порушує правила публічного простору, викладені вище, або якщо ви бачите публікацію чи приватне повідомлення, яке вас турбує чи викликає у вас незручність, ви можете повідомити про це модераторів та співробітників, натиснувши піктограму прапорця, щоб повідомити про це. Співробітник або модератор відповість на ситуацію якомога швидше. Зверніть увагу, що навмисне повідомлення про невинні публікації є порушенням цих Правил (див. нижче розділ «Порушення»). Ви також можете зв’язатися з модераторами, надіславши електронний лист на admin@habitica.com Ви можете зробити це, якщо є кілька проблемних дописів від тієї самої особи в різних ґільдіях, або якщо ситуація потребує певного пояснення. Ви можете зв’язатися з нами своєю рідною мовою, якщо вам це простіше: нам, можливо, доведеться використовувати Google Translate, але ми хочемо, щоб вам було зручно зв’язуватися з нами, якщо у вас виникнуть проблеми.",
+ "commGuidePara021": "Крім того, деякі громадські місця в Habitica мають додаткові вказівки.",
"commGuideHeadingTavern": "Таверна",
"commGuidePara022": "Таверна - це головне місце, де мешканці Habitica пересікаються. Бармен Daniel зберігає це місце абсолютно комфортним, а Lemoness з радістю начарує для вас лимонаду, поки ви спілкуєтеся з іншими. Просто майте на увазі…",
- "commGuidePara023": "Розмова, як правило, зводиться до невимушеного спілкування та порад щодо продуктивності чи покращення життя. Оскільки чат таверни може містити лише 200 повідомлень, це не найкраще місце для тривалих розмов на теми, особливо делікатні (наприклад, політика, релігія, депресія, чи потрібно полювання на гоблінів чи ні заборонено тощо). Ці розмови слід передати до відповідної гільдії. Модератор може направити вас до відповідної гільдії, але в кінцевому підсумку ви несете відповідальність за пошук та розміщення у відповідному місці.",
- "commGuidePara024": "Не обговорюйте нічого, що викликає залежність у таверні. Багато людей використовують Habitica, щоб спробувати кинути свої шкідливі звички. Почути, як люди говорять про звикання/незаконні речовини, може зробити це набагато важче для них! Поважайте своїх колег таверн і візьміть це до уваги. Це включає, але не виключно: куріння, алкоголь, порнографію, азартні ігри та вживання/зловживання наркотиками.",
+ "commGuidePara023": "Розмова, як правило, зводиться до невимушеного спілкування та порад щодо продуктивності чи покращення життя. Оскільки чат таверни може містити лише 200 повідомлень, це не найкраще місце для тривалих розмов на теми, особливо делікатні (наприклад, політика, релігія, депресія, чи потрібно полювання на гоблінів чи ні заборонено тощо). Ці розмови слід передати до відповідної гільдії. Модератор може направити вас до відповідної гільдії, але в кінцевому підсумку ви несете відповідальність за пошук та розміщення у відповідному місці.",
+ "commGuidePara024": "Не обговорюйте нічого, що викликає залежність у таверні. Багато людей використовують Habitica, щоб спробувати кинути свої шкідливі звички. Почути, як люди говорять про звикання/незаконні речовини, може зробити це набагато важче для них! Поважайте своїх колег таверн і візьміть це до уваги. Це включає, але не виключно: куріння, алкоголь, порнографію, азартні ігри та вживання/зловживання наркотиками.",
"commGuidePara027": "When a moderator directs you to take a conversation elsewhere, if there is no relevant Guild, they may suggest you use the Back Corner. The Back Corner Guild is a free public space to discuss potentially sensitive subjects that should only be used when directed there by a moderator. It is carefully monitored by the moderation team. It is not a place for general discussions or conversations, and you will be directed there by a mod only when it is appropriate.",
"commGuideHeadingPublicGuilds": "Відкриті ґільдії",
"commGuidePara029": "Публічні ґільдії дуже схожі на таверну, за винятком того, що замість того, щоб бути спілкуватись на загальні теми, вони мають конкретну. Чат публічної ґільдії має зосередитися на цій темі. Наприклад, члени ґільдії \"Майстри слова\" можуть бути розчаровані, якщо розмова раптом зосередиться на садівництві, а не на письмі, а ґільдія \"Любителі драконів\" може не виявляти інтересу до розшифровки стародавніх рун. Деякі ґільдії ставляться до цього більш толерантно, ніж інші, але загалом намагайтеся залишатися в темі!",
"commGuidePara031": "Деякі публічні ґільдії міститимуть делікатні теми, такі як депресія, релігія, політика тощо. Це нормально, якщо розмови в них не порушують жодних положень та умов чи Правил публічного простору, і якщо вони залишаються на темі.",
"commGuidePara033": "Публічні ґільдії НЕ можуть містити вміст для аудиторії віком понад 18 років. Якщо вони планують регулярно обговорювати чутливу інформацію, вони повинні вказати це в описі ґільдії. Це робиться для того, щоб Habitica була безпечною та комфортною для всіх.",
"commGuidePara035": "Якщо у ґільдії, про яку йдеться, є різні чутливі питання, з повагою до ваших співвітчизників-габітян слід розмістити свій коментар за попередженням (наприклад, \"Попередження: посилання на самоушкодження\"). Вони можуть бути охарактеризовані як попередження про тригер та/або примітки щодо вмісту, і ґільдії можуть мати власні правила на додаток до наведених тут. Якщо можливо, скористайтеся markdown, щоб приховати потенційно конфіденційний вміст під розривами рядків, щоб усі бажаючі щоб уникнути читання, можна прокрутити його, не побачивши вмісту. Співробітники та модератори Habitica можуть видаляти цей матеріал на свій розсуд.",
- "commGuidePara036": "Additionally, the sensitive material should be topical -- bringing up self-harm in a Guild focused on fighting depression may make sense, but is probably less appropriate in a music Guild. If you see someone who is repeatedly violating this guideline, especially after several requests, please flag the posts and notify the moderators via the Moderator Contact Form.",
- "commGuidePara037": "No Guilds, Public or Private, should be created for the purpose of attacking any group or individual. Creating such a Guild is grounds for an instant ban. Fight bad habits, not your fellow adventurers!",
- "commGuidePara038": "All Tavern Challenges and Public Guild Challenges must comply with these rules as well.",
+ "commGuidePara036": "Крім того, делікатний матеріал має бути актуальним – згадування про самоушкодження в ґільдії, зосередженій на боротьбі з депресією, може мати сенс, але, мабуть, менш доречно в музичній ґільдії. Якщо ви бачите, що хтось неодноразово порушує ці правила, особливо після кількох запитів, повідомте про ці публікації.",
+ "commGuidePara037": "Жодні ґільдії, публічні чи приватні, не повинні створюватися з метою нападу на будь-яку групу чи особу. Створення такої гільдії є підставою для миттєвого бану. Боріться зі шкідливими звичками, а не з іншими шукачами пригод!",
+ "commGuidePara038": "Усі випробування таверни та публічних ґільдії також мають відповідати цим правилам.",
"commGuideHeadingInfractionsEtc": "Порушення, Наслідки та Відновлення",
"commGuideHeadingInfractions": "Порушення",
"commGuidePara050": "Звісно, Звичаїнці допомагають та поважають один одного, і працюють над тим, щоб зробити всю спільноту веселим й дружнім місцем. Тим не менш, так буває що якась дія Звичаїнця може порушити один з вищевказаних принципів. Якщо це трапиться, Модератори вжитимуть всі необхідні заходи за для підтримки у Habitica спокою та комфорту для всіх.",
- "commGuidePara051": "There are a variety of infractions, and they are dealt with depending on their severity. These are not comprehensive lists, and the Mods can make decisions on topics not covered here at their own discretion. The Mods will take context into account when evaluating infractions.",
+ "commGuidePara051": "Існують різноманітні порушення, і вони розглядаються залежно від їх тяжкості. Це не вичерпні списки, і модератори можуть приймати рішення щодо тем, які тут не розглядаються, на власний розсуд. Модератори враховуватимуть контекст під час оцінки порушень.",
"commGuideHeadingSevereInfractions": "Серйозні порушення",
"commGuidePara052": "Серйозні порушення завдають великої шкоди спільноті і користувачам Habitica, а отже мають серйозні наслідки.",
"commGuidePara053": "Нижче наведені приклади деяких важких порушень. Це не повний список.",
"commGuideList05A": "Порушення Правил та Умов",
"commGuideList05B": "Гнівливі слова/зображення, переслідування/стеження, сітьвое залякування, флейм та троллінг",
"commGuideList05C": "Порушення випробувального терміну",
- "commGuideList05D": "Impersonation of Staff or Moderators",
+ "commGuideList05D": "Видача себе за персонал або модераторів - це включає заяву про те, що простори, створені користувачами, не пов’язані з Habitica, є офіційними та/або модеруються Habitica або її модифікаторами/персоналом",
"commGuideList05E": "Повторні порушення середньої тяжкості",
- "commGuideList05F": "Creation of a duplicate account to avoid consequences (for example, making a new account to chat after having chat privileges revoked)",
- "commGuideList05G": "Intentional deception of Staff or Moderators in order to avoid consequences or to get another user in trouble",
+ "commGuideList05F": "Створення дубліката облікового запису, щоб уникнути наслідків (наприклад, створення нового облікового запису для чату після скасування привілеїв у цьому чату)",
+ "commGuideList05G": "Навмисне введення в оману співробітників або модераторів з метою уникнення наслідків або створення проблем для іншого користувача",
"commGuideHeadingModerateInfractions": "Порушення середньої тяжкості",
- "commGuidePara054": "Moderate infractions do not make our community unsafe, but they do make it unpleasant. These infractions will have moderate consequences. When in conjunction with multiple infractions, the consequences may grow more severe.",
- "commGuidePara055": "The following are some examples of Moderate Infractions. This is not a comprehensive list.",
- "commGuideList06A": "Ignoring, disrespecting or arguing with a Mod. This includes publicly complaining about moderators or other users, publicly glorifying or defending banned users, or debating whether or not a moderator action was appropriate. If you are concerned about one of the rules or the behaviour of the Mods, please contact the staff via email (admin@habitica.com).",
- "commGuideList06B": "Backseat Modding. To quickly clarify a relevant point: A friendly mention of the rules is fine. Backseat modding consists of telling, demanding, and/or strongly implying that someone must take an action that you describe to correct a mistake. You can alert someone to the fact that they have committed a transgression, but please do not demand an action -- for example, saying, \"Just so you know, profanity is discouraged in the Tavern, so you may want to delete that,\" would be better than saying, \"I'm going to have to ask you to delete that post.\"",
- "commGuideList06C": "Intentionally flagging innocent posts.",
- "commGuideList06D": "Repeatedly Violating Public Space Guidelines",
- "commGuideList06E": "Repeatedly Committing Minor Infractions",
+ "commGuidePara054": "Помірні порушення не роблять нашу спільноту небезпечною, але роблять її неприємною. Ці порушення матимуть наслідки середньої тяжкості. У поєднанні з кількома порушеннями наслідки можуть стати більш серйозними.",
+ "commGuidePara055": "Нижче наведено кілька прикладів помірних порушень. Це неповний список.",
+ "commGuideList06A": "Ігнорування, неповага або сварка з модератором. Це включає публічні скарги на модераторів чи інших користувачів, публічне прославлення або захист забанених користувачів або обговорення того, чи були дії модератора доречними. Якщо вас турбує одне з правил або поведінка модераторів, будь ласка, зв’яжіться зі співробітниками електронною поштою (admin@habitica.com).",
+ "commGuideList06B": "Неавторизоване модерування. Щоб швидко прояснити відповідний момент: доброзичливе згадування правил – це добре. Неавторизоване модерування полягає в тому, щоб говорити, вимагати та/або рішуче натякати, що хтось повинен виконати дію, яку ви описуєте, щоб виправити помилку. Ви можете попередити когось про те, що він/вона вчинили порушення, але, будь ласка, не вимагайте дії — наприклад, кажучи: «Щоб ви знали, нецензурна лексика не рекомендується в таверні, тому ви можете видалити це». було б краще, ніж сказати: \"Мені доведеться попросити вас видалити цю публікацію\".",
+ "commGuideList06C": "Навмисне позначення невинних дописів.",
+ "commGuideList06D": "Неодноразове порушення Правил публічного простору",
+ "commGuideList06E": "Неодноразове вчинення дрібних порушень",
"commGuideHeadingMinorInfractions": "Незначні порушення",
- "commGuidePara056": "Minor Infractions, while discouraged, still have minor consequences. If they continue to occur, they can lead to more severe consequences over time.",
- "commGuidePara057": "The following are some examples of Minor Infractions. This is not a comprehensive list.",
+ "commGuidePara056": "Незначні порушення, хоча й не рекомендовані, все ж мають незначні наслідки. Якщо вони продовжують відбуватися, то з часом можуть призвести до більш серйозних наслідків.",
+ "commGuidePara057": "Нижче наведено кілька прикладів незначних порушень. Це неповний список.",
"commGuideList07A": "Перше порушення Правил та Умов поведінки у Громадських місцях",
- "commGuideList07B": "Any statements or actions that trigger a \"Please Don't\". When a Mod has to say \"Please don't do this\" to a user, it can count as a very minor infraction for that user. An example might be \"Please don't keep arguing in favor of this feature idea after we've told you several times that it isn't feasible.\" In many cases, the Please Don't will be the minor consequence as well, but if Mods have to say \"Please Don't\" to the same user enough times, the triggering Minor Infractions will start to count as Moderate Infractions.",
- "commGuidePara057A": "Some posts may be hidden because they contain sensitive information or might give people the wrong idea. Typically this does not count as an infraction, particularly not the first time it happens!",
+ "commGuideList07B": "Будь-які висловлення чи дії, які викликають «Будь ласка, не робіть» від модератора. Коли вас просять не робити чогось публічно, це саме по собі може мати наслідки. Якщо модератори виносять багато таких зауважень одній особі, це може вважатися більшим порушенням",
+ "commGuidePara057A": "Деякі публікації можуть бути приховані, оскільки вони містять конфіденційну інформацію або можуть дати людям неправильне уявлення. Зазвичай це не вважається порушенням, якщо це трапилось вперше!",
"commGuideHeadingConsequences": "Наслідки",
- "commGuidePara058": "In Habitica -- as in real life -- every action has a consequence, whether it is getting fit because you've been running, getting cavities because you've been eating too much sugar, or passing a class because you've been studying.",
- "commGuidePara059": "Similarly, all infractions have direct consequences. Some sample consequences are outlined below.",
- "commGuidePara060": "If your infraction has a moderate or severe consequence, there will be a post from a staff member or moderator in the forum in which the infraction occurred explaining:",
- "commGuideList08A": "what your infraction was",
- "commGuideList08B": "what the consequence is",
- "commGuideList08C": "what to do to correct the situation and restore your status, if possible.",
- "commGuidePara060A": "If the situation calls for it, you may receive a PM or email as well as a post in the forum in which the infraction occurred. In some cases you may not be reprimanded in public at all.",
- "commGuidePara060B": "If your account is banned (a severe consequence), you will not be able to log into Habitica and will receive an error message upon attempting to log in. If you wish to apologize or make a plea for reinstatement, please email the staff at admin@habitica.com with your UUID (which will be given in the error message). It is your responsibility to reach out if you desire reconsideration or reinstatement.",
- "commGuideHeadingSevereConsequences": "Examples of Severe Consequences",
- "commGuideList09A": "Account bans (see above)",
- "commGuideList09C": "Permanently disabling (\"freezing\") progression through Contributor Tiers",
- "commGuideHeadingModerateConsequences": "Examples of Moderate Consequences",
- "commGuideList10A": "Restricted public and/or private chat privileges",
- "commGuideList10A1": "If your actions result in revocation of your chat privileges, a Moderator or Staff member will PM you and/or post in the forum in which you were muted to notify you of the reason for your muting and the length of time for which you will be muted. At the end of that period, you will receive your chat privileges back, provided you are willing to correct the behavior for which you were muted and comply with the Community Guidelines.",
- "commGuideList10C": "Restricted Guild/Challenge creation privileges",
- "commGuideList10D": "Temporarily disabling (\"freezing\") progression through Contributor Tiers",
+ "commGuidePara058": "У Habitica, як і в реальному житті, кожна дія має наслідки, будь то хороша форма через те, що ви бігали, утворення карієсу через те, що ви їли занадто багато цукру, чи успішно складений іспит через те, що ви вчилися.",
+ "commGuidePara059": "Так само всі порушення мають прямі наслідки. Деякі приклади наслідків наведено нижче.",
+ "commGuidePara060": "Якщо ваше порушення має помірні або серйозні наслідки, співробітник або модератор на форумі, де сталося порушення, опублікує повідомлення з поясненням::",
+ "commGuideList08A": "в чому суть вашого порушення",
+ "commGuideList08B": "які його наслідки",
+ "commGuideList08C": "що робити, щоб виправити ситуацію і відновити свій статус, якщо це можливо.",
+ "commGuidePara060A": "Якщо цього вимагає ситуація, ви можете отримати приватне повідомлення або електронний лист, а також повідомлення на форумі, де сталося порушення. У деяких випадках ви можете взагалі не отримати догани публічно.",
+ "commGuidePara060B": "Якщо ваш обліковий запис заблоковано (серйозні наслідки), ви не зможете ввійти в Habitica та отримаєте повідомлення про помилку під час спроби входу. Якщо ви бажаєте вибачитися або попросити відновлення, надішліть електронний лист співробітникам за адресою admin@habitica.com з вашим ідентифікатором користувача (UUID) (який буде надано в повідомленні про помилку) або @нікнейм. Це ваш обов'язок зв'язатися, якщо ви бажаєте перегляду чи відновлення.",
+ "commGuideHeadingSevereConsequences": "Приклади тяжких наслідків",
+ "commGuideList09A": "Блокування облікових записів (див. вище)",
+ "commGuideList09C": "Постійне вимкнення (\"заморожування\") прогресу в рівнях співавторів",
+ "commGuideHeadingModerateConsequences": "Приклади помірних наслідків",
+ "commGuideList10A": "Обмежені привілеї публічного та/або приватного чату",
+ "commGuideList10A1": "Якщо ваші дії призведуть до відкликання ваших привілеїв чату, модератор або співробітник надішле вам приватне повідомлення та/або опублікує повідомлення на форумі, на якому ваші привілеї відкликано, щоб повідомити вас про причину відкликання та тривалість часу, протягом якого ви будете ігноруватись та/або дії, необхідні для відновлення. Вас буде відновлено, якщо ви ввічливо виконаєте необхідні дії та погодитеся дотримуватися Правил спільноти та Умов використання",
+ "commGuideList10C": "Обмежені права у створенні ґільдій/випробувань",
+ "commGuideList10D": "Тимчасове вимкнення (\"заморожування\") просування по рівнях співавторів",
"commGuideList10E": "Demotion of Contributor Tiers",
- "commGuideList10F": "Putting users on \"Probation\"",
- "commGuideHeadingMinorConsequences": "Examples of Minor Consequences",
- "commGuideList11A": "Reminders of Public Space Guidelines",
+ "commGuideList10F": "Переведення користувачів на \"випробувальний термін\"",
+ "commGuideHeadingMinorConsequences": "Приклади незначних наслідків",
+ "commGuideList11A": "Нагадування про правила публічного простору",
"commGuideList11B": "Застереження",
- "commGuideList11C": "Requests",
- "commGuideList11D": "Deletions (Mods/Staff may delete problematic content)",
- "commGuideList11E": "Edits (Mods/Staff may edit problematic content)",
+ "commGuideList11C": "Запити",
+ "commGuideList11D": "Видалення (модератори/співробітники можуть видалити проблемний вміст)",
+ "commGuideList11E": "Правки (модератори/співробітники можуть видалити проблемний вміст)",
"commGuideHeadingRestoration": "Відновлення",
- "commGuidePara061": "Habitica is a land devoted to self-improvement, and we believe in second chances. If you commit an infraction and receive a consequence, view it as a chance to evaluate your actions and strive to be a better member of the community.",
- "commGuidePara062": "The announcement, message, and/or email that you receive explaining the consequences of your actions is a good source of information. Cooperate with any restrictions which have been imposed, and endeavor to meet the requirements to have any penalties lifted.",
- "commGuidePara063": "If you do not understand your consequences, or the nature of your infraction, ask the Staff/Moderators for help so you can avoid committing infractions in the future. If you feel a particular decision was unfair, you can contact the staff to discuss it at admin@habitica.com.",
- "commGuideHeadingMeet": "Meet the Staff and Mods!",
- "commGuidePara006": "Habitica has some tireless knights-errant who join forces with the staff members to keep the community calm, contented, and free of trolls. Each has a specific domain, but will sometimes be called to serve in other social spheres.",
+ "commGuidePara061": "Habitica – це земля, присвячена самовдосконаленню, і ми віримо у другий шанс. Якщо ви вчинили порушення та отримали через це певні наслідки, розглядайте це як можливість оцінити свої дії та прагнути стати кращим членом спільноти.",
+ "commGuidePara062": "Оголошення, повідомлення та/або електронний лист, які ви отримуєте з поясненням наслідків своїх дій, є гарним джерелом інформації. Прийміть будь-які обмеженням, які були накладені, і намагатися виконати вимоги для скасування цього покарання.",
+ "commGuidePara063": "Якщо ви не розумієте своїх наслідків або характеру свого порушення, зверніться по допомогу до співробітників/модераторів, щоб уникнути вчинення порушень у майбутньому. Якщо ви вважаєте певне рішення несправедливим, ви можете зв’язатися з персоналом, щоб обговорити це за адресою admin@habitica.com.",
+ "commGuideHeadingMeet": "Зустрічайте: персонал та модератори!",
+ "commGuidePara006": "Habitica має кілька невтомних лицарів-мандрівників, які об’єднують зусилля зі співробітниками Habitica, щоб підтримувати в спільноті спокій, дружню обстановку та не допускати сюди тролів. Кожен з них має певну сферу відповідальності, але іноді їх кличуть служити в інших областях.",
"commGuidePara007": "Теґи штатних працівників забарвлені у пурпуровий колір і позначаються коронами. Вони мають звання \"Герої\".",
- "commGuidePara008": "Теґи модераторів — темно-сині і позначаються зірочками. Вони мають звання \"Охорона\". Винятком є Бейлі, яка є неігровим персонажем. Її теґи чорно-зелені і позначаються зірочкою.",
+ "commGuidePara008": "Моди мають темно-сині ярлики, позначені зірочками. Їхня назва «Стражі».",
"commGuidePara009": "Діючими штатними працівникам є (зліва направо):",
- "commGuideAKA": "<%= habitName %> aka <%= realName %>",
+ "commGuideAKA": "<%= habitName %> як <%= realName %>",
"commGuideOnTrello": "<%= trelloName %> on Trello",
- "commGuideOnGitHub": "<%= gitHubName %> on GitHub",
+ "commGuideOnGitHub": "<%= gitHubName %> на GitHub",
"commGuidePara010": "Також деякі модератори допомагають штатним працівникам. Обирали їх дуже ретельно, тож просимо їх поважати і прислухатися до них.",
"commGuidePara011": "Діючими модераторами є (зліва направо):",
- "commGuidePara011b": "на GitHub/Wikia",
- "commGuidePara011c": "на Wikia",
+ "commGuidePara011b": "на GitHub/Fandom",
+ "commGuidePara011c": "на Wiki",
"commGuidePara011d": "на GitHub",
- "commGuidePara012": "If you have an issue or concern about a particular Mod, please send an email to our Staff (admin@habitica.com).",
- "commGuidePara013": "In a community as big as Habitica, users come and go, and sometimes a staff member or moderator needs to lay down their noble mantle and relax. The following are Staff and Moderators Emeritus. They no longer act with the power of a Staff member or Moderator, but we would still like to honor their work!",
- "commGuidePara014": "Staff and Moderators Emeritus:",
+ "commGuidePara012": "Якщо у вас виникла проблема чи розбіжності щодо певного модератора, будь ласка, надішліть листа нашим співробітникам(admin@habitica.com).",
+ "commGuidePara013": "У такій великій спільноті, як Habitica, користувачі приходять і йдуть, і іноді співробітнику чи модератору потрібно скласти свою благородну мантію та розслабитися. Нижче наведено почесних працівників і модераторів. Вони більше не мають повноважень співробітника чи модератора, але ми все одно хочемо вшанувати їхню роботу!",
+ "commGuidePara014": "Почесні співробітники та модератори:",
"commGuideHeadingFinal": "Завершальна секція",
- "commGuidePara067": "So there you have it, brave Habitican -- the Community Guidelines! Wipe that sweat off of your brow and give yourself some XP for reading it all. If you have any questions or concerns about these Community Guidelines, please reach out to us via the Moderator Contact Form and we will be happy to help clarify things.",
- "commGuidePara068": "Now go forth, brave adventurer, and slay some Dailies!",
+ "commGuidePara067": "Отже, відважний габітітиканцю, Правила спільноти! Витріть піт зі свого чола та отримайте досвід, прочитавши все це. Якщо у вас виникли запитання чи сумніви щодо Правил спільноти, зв’яжіться з нами за адресою admin@habitica.com, ми завжди раді допомогти прояснити речі.",
+ "commGuidePara068": "А тепер іди вперед, відважний шукаче пригод, і впорайся з декількома щоденками!",
"commGuideHeadingLinks": "Корисні посилання",
- "commGuideLink01": "Habitica Help: Ask a Question: a Guild for users to ask questions!",
- "commGuideLink02": "The Wiki: the biggest collection of information about Habitica.",
- "commGuideLink03": "GitHub: for bug reports or helping with code!",
- "commGuideLink04": "The Main Trello: for site feature requests.",
+ "commGuideLink01": "Habitica Help: Ask a Question: Ґільдія, де користувачі можуть ставити запитання!",
+ "commGuideLink02": "Habitica Wiki: найбільша збірка інформації щодо Habitica.",
+ "commGuideLink03": "GitHub: для допомоги з кодом!",
+ "commGuideLink04": "Форма зворотнього зв'язку: для пропозицій нових функції для сайту та додатку.",
"commGuideLink05": "The Mobile Trello: for mobile feature requests.",
- "commGuideLink06": "The Art Trello: for submitting pixel art.",
- "commGuideLink07": "The Quest Trello: for submitting quest writing.",
- "commGuidePara069": "The following talented artists contributed to these illustrations:",
+ "commGuideLink06": "The Art Trello: для надсилання піксельного мистецтва.",
+ "commGuideLink07": "The Quest Trello: для додавання квестів.",
+ "commGuidePara069": "До цих ілюстрацій долучилися такі талановиті художники:",
"commGuideList01C": "Усі обговорення мають бути відповідними для будь-якого віку та не містити нецензурної лексики.",
"commGuideList01B": "Заборонено: будь-яке спілкування, яке є насильницьким, погрозливим, пропагує дискримінацію тощо, включаючи меми, зображення та жарти.",
"commGuidePara017": "Ось коротка версія, але ми радимо вам ознайомитися докладніше нижче:",
"commGuideList01A": "Положення та умови застосовуються до всіх місць, включаючи приватні гільдії, командні чати та повідомлення.",
- "commGuideList02M": "Не просіть і не випрошуйте дорогоцінні камені, підписки чи членство в групових планах. Це заборонено в таверні, публічних чи приватних чатах, а також у PM. Якщо ви отримуєте повідомлення із запитом про платні товари, повідомте про них, позначивши. Неодноразове або серйозне випрошування дорогоцінного каміння чи підписки, особливо після попередження, може призвести до блокування облікового запису."
+ "commGuideList02M": "Не просіть і не випрошуйте дорогоцінні камені, підписки чи членство в групових планах. Це заборонено в таверні, публічних чи приватних чатах, а також у PM. Якщо ви отримуєте повідомлення із запитом про платні товари, повідомте про них, позначивши. Неодноразове або серйозне випрошування дорогоцінного каміння чи підписки, особливо після попередження, може призвести до блокування облікового запису.",
+ "commGuideList01E": "Не підбурюйте та не вступайте в суперечку в таверні.",
+ "commGuideList01F": "Без випрошування платних товарів, розсилки спаму чи великого тексту заголовка/усі великі літери.",
+ "commGuideList01D": "Будь ласка, дотримуйтесь вказівок модераторів.",
+ "commGuideList05H": "Серйозні або неодноразові спроби обману або тиску на інших гравців з метою отримання предметів за реальні гроші",
+ "commGuideList09D": "Видалення або пониження рівня учасника"
}
diff --git a/website/common/locales/uk/content.json b/website/common/locales/uk/content.json
index 3b57fb593e..b745e82db1 100644
--- a/website/common/locales/uk/content.json
+++ b/website/common/locales/uk/content.json
@@ -196,7 +196,7 @@
"hatchingPotionSpooky": "Моторошний",
"hatchingPotionPeppermint": "М’ятний",
"hatchingPotionFloral": "Квітковий",
- "hatchingPotionAquatic": "Водяний",
+ "hatchingPotionAquatic": "Аква",
"hatchingPotionEmber": "Тліюче вугілля",
"hatchingPotionThunderstorm": "Грозовий",
"hatchingPotionGhost": "Примарний",
@@ -371,5 +371,6 @@
"hatchingPotionSunset": "Загравний",
"hatchingPotionMoonglow": "Місяцесяйний",
"hatchingPotionOnyx": "Оніксовий",
- "hatchingPotionVirtualPet": "Віртуальний"
+ "hatchingPotionVirtualPet": "Віртуальний",
+ "hatchingPotionPorcelain": "Порцеляновий"
}
diff --git a/website/common/locales/uk/contrib.json b/website/common/locales/uk/contrib.json
index 9477467493..14eb8f2d72 100644
--- a/website/common/locales/uk/contrib.json
+++ b/website/common/locales/uk/contrib.json
@@ -31,7 +31,7 @@
"contribLevel": "Рівень внеску",
"contribHallText": "1-7 для звичайних вкладників, 8 для модераторів, 9 для учасників. Цим визначається який предмет, тварина чи їздова тварина доступні. Також відрізняється кольором імені-теґу. Рівень 8 і 9 автоматично отримують статус адміністратора.",
"hallContributors": "Зал контриб'юторів",
- "hallPatrons": "Зала Благодійників",
+ "hallPatrons": "Зал благодійників",
"rewardUser": "Нагородити гравця",
"UUID": "User ID",
"loadUser": "Завантажити користувача",
@@ -53,6 +53,6 @@
"surveysSingle": "Допомагав Habitica розвиватися, заповнивши опитування або допомігши провести тестування. Дякуємо!",
"surveysMultiple": "Допомагали Habitica розвиватися <%= count %> рази(-ів), заповнюючи опитування або допомагаючи в масштабному тестуванні. Дякую!",
"blurbHallPatrons": "Це Зал покровителів, де ми вшановуємо благородних шукачів пригод, які підтримали Habitica на Kickstarter. Ми дякуємо їм за те, що вони допомогли нам зробити Habitica реальною!",
- "blurbHallContributors": "Це Зал контриб'юторів, де вшановують учасників що внесли свій вклад в розвиток Habitica. Чи то за допомогою коду, мистецтва, музики, тексту чи навіть просто допомоги іншим учасникам, чим вони заробили самоцвіти, ексклюзивне спорядження , та prestigious titles. Ви також можете допомогти Habitica! Дізнайтесь більше тут. ",
+ "blurbHallContributors": "Це Зал контриб'юторів, де вшановують учасників, що зробили свій внесок в розвиток Habitica. Чи то за допомогою коду, мистецтва, музики, тексту чи навіть просто допомоги іншим, чим вони заробили самоцвіти, ексклюзивне спорядження , та престижні звання. Ви також можете допомогти Habitica! Дізнайтесь більше тут. ",
"noPrivAccess": "Ви не маєте необхідних привілеїв."
}
diff --git a/website/common/locales/uk/faq.json b/website/common/locales/uk/faq.json
index c91f9c99f0..74477152c8 100644
--- a/website/common/locales/uk/faq.json
+++ b/website/common/locales/uk/faq.json
@@ -5,13 +5,13 @@
"androidFaqAnswer0": "Спочатку ви встановлюєте задачі які ви хочете виконувати у повсякденному житті. Потім, коли ви виконали ці задачі у реальному житті, ви отримуєте досвід та золото. Золото використовується для придбання спорядження та деяких предметів, а також для вигаданих вами винагород. Завдяки отриманню досвіду ваш персонаж піднімає свій рівень та розблоковує контент, наприклад улюбленців, вміння та квести! Ви можете налаштувати свій аватар в Меню > [Налаштування >] Аватар.\n\nДеякі основні способи взаємодії: натисніть (+) у верхньому правому куті, щоб додати нове завдання. Натисніть на існуюче завдання для того щоб відредагувати його, та потягніть завдання вліво для видалення. Ви можете сортувати завдання використовуючи Ярлики у лівому верхньому куті, розгортати та згортати списки підзавдань, натиснувши на позначки списку.",
"webFaqAnswer0": "Спочатку Ви ставите перед собою завдання, котрі Вам необхідно виконати в своєму повсякденному житті. По мірі виконання цих завдань в реальному житті, Ви відмічаєте їх галочками та заробляєте Досвід і Золото. Золото використовується для придбання спорядження та інших речей, а також нагород, що створюєте Ви самі. Завдяки Досвіду, Ваш персонаж набирає рівні і відкриває новий контент, наприклад улюбленців, навички і квести! Подробиці можна дізнатися в нашому покроковому гіді на сторінці [Допомога -> Інформація для новачків](https://habitica.com/static/overview).",
"faqQuestion1": "Як я можу створити завдання?",
- "iosFaqAnswer1": "Корисні звички (ті, що позначені знаком +) - це завдання, які Ви можете виконувати багато разів за день: наприклад, вживати овочі. Шкідиві звички (зі знаком -) - це ті дії, від яких Вам варто відмовитися: наприклад, гризти нігті. Звички, навпроти яких стоять і +, і -, припускають двоїстий вибір - або в хороший, або в поганий бік: наприклад підйом по сходах пішки проти користування ліфтом. Корисні звички винагороджуються досвідом та золотом. Погані звички віднімають здоров'я.\n\nЩоденні завдання - це завдання, котрі ви маєте виконувати кожен день, наприклад чистити зуби чи перевіряти електронну пошту. Ви можете вказати дні, в які щоденне завдання обов'язкове або необов'язкове до виконання; для цього варто лише натиснути на нього для редагування. Якщо ви пропустите обов'язкове завдання, ваш персонаж втратить здоров'я наступної ночі. Будьте уважні і не додавайте забагато щоденних завдань відразу!\n\nЗадачі - це список одноразових справ, котрі Вам необхідно виконати. Виконання задач приносить Вам золото та досвід. Ви не втрачатимете здоров'я, якщо не виконаєте задачу. Ви можете вказати обов'язковий термін виконання задачі, натиснувши на неї для редагування.",
- "androidFaqAnswer1": "Корисні звички (ті, що позначені знаком +) - це завдання, які Ви можете виконувати багато разів за день: наприклад, вживати овочі. Шкідиві звички (зі знаком -) - це ті дії, від яких Вам варто відмовитися: наприклад, гризти нігті. Звички, навпроти яких стоять і +, і -, припускають двоїстий вибір - або в хороший, або в поганий бік: наприклад підйом по сходах пішки або користування ліфтом. Корисні звички винагороджуються досвідом та золотом. Погані звички віднімають здоров'я.\n\n Щоденні завдання - це завдання, котрі ви маєте виконувати кожен день, наприклад чистити зуби чи перевіряти електронну пошту. Ви можете вказати дні, в які щоденне завдання обов'язкове або необов'язкове до виконання; для цього варто лише натиснути на нього для редагування. Якщо ви пропустите обов'язкове завдання, ваш персонаж втратить здоров'я наступної ночі. Будьте уважні і не додавайте забагато щоденних завдань відразу! \n\nЗадачі - це список одноразових справ, котрі Вам необхідно виконати. Виконання задач приносить Вам золото та досвід. Ви не втрачатимете здоров'я, якщо не виконаєте задачу. Ви можете вказати обов'язковий термін виконання задачі, натиснувши на неї для редагування.",
- "webFaqAnswer1": "*Корисні звички (ті, що позначені знаком +) - це завдання, які Ви можете виконувати багато разів за день: наприклад, вживати овочі. Шкідиві звички (зі знаком -) - це ті дії, від яких Вам варто відмовитися: наприклад, гризти нігті. Звички, навпроти яких стоять і +, і -, припускають двоїстий вибір - або в хороший, або в поганий бік: наприклад підйом по сходах пішки проти користування ліфтом. Корисні звички винагороджуються досвідом та золотом. Погані звички віднімають здоров'я.\n\nЩоденні завдання - це завдання, котрі ви маєте виконувати кожен день, наприклад чистити зуби чи перевіряти електронну пошту. Ви можете вказати дні, в які щоденне завдання обов'язкове або необов'язкове до виконання; для цього варто лише натиснути на нього для редагування. Якщо ви пропустите обов'язкове завдання, ваш персонаж втратить здоров'я наступної ночі. Будьте уважні і не додавайте забагато щоденних завдань відразу!\n\nЗадачі - це список одноразових справ, котрі Вам необхідно виконати. Виконання задач приносить Вам золото та досвід. Ви не втрачатимете здоров'я, якщо не виконаєте задачу. Ви можете вказати обов'язковий термін виконання задачі, натиснувши на неї для редагування.",
+ "iosFaqAnswer1": "Корисні звички (ті, що позначені знаком +) - це завдання, які ви можете виконувати багато разів за день: наприклад, вживати овочі. Шкідливі звички (зі знаком -) - це ті дії, від яких вам варто відмовитися: наприклад, гризти нігті. Звички, навпроти яких стоять і +, і -, припускають двоїстий вибір - або в хороший, або в поганий бік: наприклад підйом по сходах пішки проти користування ліфтом. Корисні звички винагороджуються досвідом та золотом. Погані звички знижують здоров'я персонажа.\n\nЩоденні задачі - це завдання, котрі ви маєте виконувати кожен день, наприклад чистити зуби чи перевіряти електронну пошту. Ви можете вказати дні, в які щоденне завдання обов'язкове або необов'язкове до виконання; для цього варто лише натиснути на нього для редагування. Якщо ви пропустите обов'язкове завдання, ваш персонаж втратить здоров'я наступного дня. Будьте уважні і не додавайте забагато щоденних завдань відразу!\n\nЗавдання - це список одноразових справ, котрі вам необхідно виконати. Виконання завдань приносить вам золото та досвід. Ви не втрачатимете здоров'я, якщо не виконаєте задачу. Ви можете вказати обов'язковий термін виконання задачі, натиснувши на завдання і відредагувавши його.",
+ "androidFaqAnswer1": "Корисні звички (ті, що позначені знаком +) - це завдання, які ви можете виконувати багато разів за день: наприклад, вживати овочі. Шкідиві звички (зі знаком -) - це ті дії, від яких вам варто відмовитися: наприклад, гризти нігті. Звички, навпроти яких стоять і +, і -, припускають двоїстий вибір - або в хорошу, або в погану сторону: наприклад, підйом по сходах пішки або користування ліфтом. Корисні звички винагороджуються досвідом та золотом. Погані звички зменшують здоров'я.\n\n Щоденні справи - це завдання, котрі ви маєте виконувати кожен день, наприклад чистити зуби чи перевіряти електронну пошту. Ви можете вказати дні, в які щоденне завдання обов'язкове або необов'язкове до виконання; для цього варто лише натиснути на нього для редагування. Якщо ви пропустите обов'язкове завдання, ваш персонаж втратить здоров'я наступного дня. Будьте уважні і не додавайте забагато щоденних завдань відразу!\n\nЗавдання - це список одноразових справ, котрі Вам необхідно виконати. Виконання завдань приносить вам золото та досвід. Ви не втрачатимете здоров'я, якщо не виконаєте задачу. Ви можете вказати обов'язковий термін виконання задачі, натиснувши на завдання для редагування.",
+ "webFaqAnswer1": "*Корисні звички (ті, що позначені знаком +) - це завдання, які Ви можете виконувати багато разів за день: наприклад, вживати овочі. Шкідиві звички (зі знаком -) - це ті дії, від яких Вам варто відмовитися: наприклад, гризти нігті. Звички, навпроти яких стоять і +, і -, припускають двоїстий вибір - або в хороший, або в поганий бік: наприклад підйом по сходах пішки проти користування ліфтом. Корисні звички винагороджуються досвідом та золотом. Погані звички віднімають здоров'я.\nЩоденні завдання - це завдання, котрі ви маєте виконувати кожен день, наприклад чистити зуби чи перевіряти електронну пошту. Ви можете вказати дні, в які щоденне завдання обов'язкове або необов'язкове до виконання; для цього варто лише натиснути на нього для редагування. Якщо ви пропустите обов'язкове завдання, ваш персонаж втратить здоров'я наступної ночі. Будьте уважні і не додавайте забагато щоденних завдань відразу!\nЗадачі - це список одноразових справ, котрі Вам необхідно виконати. Виконання задач приносить Вам золото та досвід. Ви не втрачатимете здоров'я, якщо не виконаєте задачу. Ви можете вказати обов'язковий термін виконання задачі, натиснувши на неї для редагування.",
"faqQuestion2": "Де можна подивитися приклади завдань?",
- "iosFaqAnswer2": "На Вікі є чотири списки з прикладами завдань, які можна використати для натхнення:\n
\n* [Приклади звичок](http://habitica.fandom.com/wiki/Sample_Habits)\n* [Приклади щоденних завдань](http://habitica.fandom.com/wiki/Sample_Dailies)\n* [Приклади задач](http://habitica.fandom.com/wiki/Sample_To-Dos)\n* [Приклади нагород](http://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
- "androidFaqAnswer2": "На Вікі є чотири списки з прикладами завдань, які можна використати для натхнення:\n
\n* [Приклади звичок](http://habitica.fandom.com/wiki/Sample_Habits)\n* [Приклади щоденних завдань](http://habitica.fandom.com/wiki/Sample_Dailies)\n* [Приклади задач](http://habitica.fandom.com/wiki/Sample_To-Dos)\n* [Приклади нагород](http://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
- "webFaqAnswer2": "На Вікі є чотири списки з прикладами завдань, які можна використати для натхнення:\n\n* [Приклади звичок](http://habitica.fandom.com/wiki/Sample_Habits)\n* [Приклади щоденних завдань](http://habitica.fandom.com/wiki/Sample_Dailies)\n* [Приклади задач](http://habitica.fandom.com/wiki/Sample_To-Dos)\n* [Приклади нагород](http://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
+ "iosFaqAnswer2": "На Вікі є чотири списки з прикладами завдань, які можна використати для натхнення:\n\n* [Приклади звичок](https://habitica.fandom.com/wiki/Sample_Habits)\n* [Приклади щоденних справ](https://habitica.fandom.com/wiki/Sample_Dailies)\n* [Приклади завдань](https://habitica.fandom.com/wiki/Sample_To_Do%27)\n* [Приклади нагород](https://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
+ "androidFaqAnswer2": "На Вікі є чотири списки з прикладами, які можна використати для натхнення:\n\n* [Приклади звичок](https://habitica.fandom.com/wiki/Sample_Habits)\n* [Приклади щоденних справ](https://habitica.fandom.com/wiki/Sample_Dailies)\n* [Приклади завдань](https://habitica.fandom.com/wiki/Sample_To_Do%27)\n* [Приклади нагород](https://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
+ "webFaqAnswer2": "На Вікі є чотири списки з прикладами завдань, які можна використати для натхнення:\n* [Приклади звичок](https://habitica.fandom.com/wiki/Sample_Habits)\n* [Приклади щоденних завдань](https://habitica.fandom.com/wiki/Sample_Dailies)\n* [Приклади завдань](https://habitica.fandom.com/wiki/Sample_To_Do%27s)\n* [Приклади нагород](https://habitica.fandom.com/wiki/Sample_Custom_Rewards)",
"faqQuestion3": "Чому завдання змінюють колір?",
"iosFaqAnswer3": "Ваші завдання змінюють колір в залежності від того, наскільки добре Ви в даний момент справляєтесь з їх виконаням! Кожне нове завдання забарвлене в нейтральний жовтий колір. Виконуйте щоденні завдання або корисні звички, і тоді вони почнуть змінювати колір у бік синього. Якщо Ви будете пропускати щоденні завдання або піддастеся шкідливим звичкам, завдання почнуть потроху червоніти. Чим більш червоне завдання, тим більшу винагороду Ви отримаєте за його виконання, та тим часом, червоні щоденні завдання і шкідливі звички нанесуть вам більше ушкодження за пропуск, ніж зазвичай! Це послужить для Вас мотивацією справлятися із завданнями, які доставляють Вам найбільше клопоту.",
"androidFaqAnswer3": "Ваші завдання змінюють колір в залежності від того, наскільки добре Ви в даний момент справляєтесь з їх виконаням! Кожне нове завдання забарвлене в нейтральний жовтий колір. Виконуйте щоденні завдання або корисні звички, і тоді вони почнуть змінювати колір у бік синього. Якщо Ви будете пропускати щоденні завдання або піддастеся шкідливим звичкам, завдання почнуть потроху червоніти. Чим більш червоне завдання, тим більшу винагороду Ви отримаєте за його виконання, проте якщо це щоденне завдання або шкідлива звичка, то вони нанесуть вам більше ушкодження за пропуск, ніж зазвичай! Це послужить для Вас мотивацією справлятися із завданнями, які доставляють Вам найбільше клопоту.",
@@ -21,38 +21,38 @@
"androidFaqAnswer4": "Існує декілька причин, церез які Ви можете втратити здоров'я. По-перше, зранку вам наносять ушкодження пропущені щоденні завдання. По-друге, якщо Ви натискаєте на погану звичку, вона наносить Вам ушкодження. І, нарешті, якщо Ви б'єтеся з Босом в команді і один з Ваших товаришів по команді не виконав всі свої щоденні завдання, Бос Вас атакує.\n\nОсновним способом вилікуватись є отримання рівня, що спричиняє відновлення всієї шкали здоров'я. Також Ви можете купити за золото Цілюще зілля, яке знаходиться в колонці нагород. Крім того, починаючи з 10 рівня, ви можете вибрати професію Цілителя, і тоді Ви отримаєте доступ до навичок, що відновлюють здоров'я. Якщо у Вас в команді є Цілитель, він також може Вас вилікувати.",
"webFaqAnswer4": "Існує декілька причин, церез які Ви можете втратити здоров'я. По-перше, зранку вам наносять ушкодження пропущені щоденні завдання. По-друге, якщо Ви натискаєте на погану звичку, вона наносить Вам ушкодження. І, нарешті, якщо Ви б'єтеся з Босом в команді і один з Ваших товаришів по команді не виконав всі свої щоденні завдання, Бос Вас атакує.Основним способом вилікуватись є отримання рівня, що спричиняє відновлення всієї шкали здоров'я. Також Ви можете купити за золото Цілюще зілля, яке знаходиться в колонці нагород. Крім того, починаючи з 10 рівня, ви можете вибрати професію Цілителя, і тоді Ви отримаєте доступ до навичок, що відновлюють здоров'я. Якщо у Вас в команді є Цілитель, він також може Вас вилікувати. Дізнайтесь більше натиснувши на \"Гурт\" на панелі навігації.",
"faqQuestion5": "Як грати разом з друзями?",
- "iosFaqAnswer5": "Кращий спосіб - запросити їх в Ваш гурт! Гурти можуть приймати участь в квестах, битися з монстрами та чаклувати для підтримки один одного. Натисніть Меню > Гурт, а потім \"Створити новий гурт\", якщо Ви ще не маєте Гурту. Після цього натисніть на Список учасників і клацніть Запросити у верхньому правому кутку, щоб запросити друзів шляхом введення їх ID гравця (рядок цифр і букв, який можна знайти в меню Налаштування > Деталі акаунту в додатку, або Налаштування > API на вебсайті). На вебсайті Ви також можете запросити друзів за допомогою електронної адреси, в додатку це можна буде зробити після його оновлення.\n\nНа сайті Ви та Ваші друзі також можуть долучатися до Гільдій, які є публічними чатами. Гільдії будуть доступні в додатку в майбутньому оновленні!",
+ "iosFaqAnswer5": "Кращий спосіб - запросити їх до вашої команди! Команда може приймати участь в квестах, битися з монстрами та чаклувати для підтримки один одного.\n\nНатисніть Меню > Команда, а потім \"Створити нову команду\", якщо ви ще не маєте команди. Після цього натисніть на Список учасників і клацніть Запросити у верхньому правому кутку, щоб запросити друзів шляхом введення їх ID гравця (рядок цифр і букв, який можна знайти в меню Налаштування > Деталі акаунту в додатку, або Налаштування > API на вебсайті). На вебсайті Ви також можете запросити друзів за допомогою електронної адреси, в додатку це можна буде зробити після його оновлення.\n\nНа сайті Ви та Ваші друзі також можуть долучатися до ґільдій, які є публічними чатами. Ґільдії будуть доступні в додатку в майбутньому оновленні!\n\nЯкщо ви більш змагальний гравець, тоді ви та ваші друзі можете створити або приєднатися до випробувань, щоб взяти на себе низку завдань. Доступні різноманітні публічні випробування, які охоплюють широкий спектр інтересів і цілей. Деякі з них навіть присудять вам самоцвіти, якщо вас виберуть переможцем.",
"androidFaqAnswer5": "Найкращий варіант запросити їх у команду до себе! Команди можуть виконувати квести, боротися з монстрами та чаклувати закляття для підтримки один одного. Натисніть [website](https://habitica.com/) для того щоб створити команду якщо Ви ще не знаходитись у ній. Ви також можете приєднатися до ґільдії (Спільнота > Ґільдії). Ґільдії - це окремі чат-кімнати, створені за інтересами або для досягнення загальної мети., та можуть бути як публічними, так і приватними. Ви можете приєднатися до будь-яких ґільдій, що вам сподобалися, але тільки до одної команди.\n\nДля більш детальної інформації заходьте на вікі-сторінки [Parties](https://habitica.fandom.com/wiki/Party) та [Guilds](https://habitica.fandom.com/wiki/Guilds).",
- "webFaqAnswer5": "Найкращий варіант як запросити їх у группу до Вас це натиснути \"Гурт\" на навігаційній панелі! Гурти можуть разом виконувати квести, битися з монстрами і чаклувати закляття для підтримки один одного. Ви також можете приєднатися до гільдії (натисніть \"Гільдії\" на навігаційній панелі). Гільдії - це чат-кімнати за інтересами або за досягненням загальної мети, і можуть бути як публічними, так і приватними. Ви можете приєднатися до усіх гільдій, що вам сподобалися, але тільки до одного гурту.Для більш детальної інформації заходьте на вікі-сторінки [Parties](http://habitica.fandom.com/wiki/Party) та [Guilds](http://habitica.fandom.com/wiki/Guilds).",
+ "webFaqAnswer5": "Найкращий варіант як запросити їх у группу до Вас це натиснути \"Гурт\" на навігаційній панелі! Гурти можуть разом виконувати квести, битися з монстрами і чаклувати закляття для підтримки один одного. Ви також можете приєднатися до гільдії (натисніть \"Гільдії\" на навігаційній панелі). Гільдії - це чат-кімнати за інтересами або за досягненням загальної мети, і можуть бути як публічними, так і приватними. Ви можете приєднатися до усіх гільдій, що вам сподобалися, але тільки до одного гурту.Для більш детальної інформації заходьте на вікі-сторінки [Parties](https://habitica.fandom.com/wiki/Party) та [Guilds](https://habitica.fandom.com/wiki/Guilds).",
"faqQuestion6": "Як я можу отримати домашнього улюбленця або їздову тварину?",
- "iosFaqAnswer6": "На 3 рівні Ви розблоковуєте систему нагород. Кожного разу коли Ви виконали Завдання, Ви маєте випадковий шанс отримати яйце, зілля чи їжу. Все отримане зберігається у Меню>Предмети. ",
+ "iosFaqAnswer6": "Кожен раз, коли ви виконали завдання, ви маєте шанс отримати яйце, інкубаційне зілля або корм. Ці предмети будуть збережені у Меню > Предмети\n\nЩоб отримати тваринку, вам знадобляться яйце та зілля для виведення. Торкніться яйця, щоб визначити вид, який ви хочете вивести, і виберіть «Виростити улюбленця». Потім оберіть зілля для вирощування, щоб визначити його колір! Перейдіть до «Меню» > «Улюбленці та скакуни» та клацніть на свого нового вихованця, щоб додати його до свого аватару.\n\nВи також можете виростити домашніх тварин у верхових тварин, погодувавши їх у Меню > Улюбленці та скакуни. Торкніться улюбленця та виберіть «Погодувати»! Вам доведеться багато разів годувати вихованця, перш ніж він стане верховою твариною, але якщо ви зможете визначити його улюблену їжу, він ростиме набагато швидше. Використовуйте метод проб і помилок або [перегляньте спойлери тут](https://habitica.fandom.com/wiki/Food#Food_Preferences). Коли у вас є скакун, перейдіть до «Меню» > «Улюбленці та скакути» та торкніться його, щоб додати його для свого аватару.\n\nВи також можете отримати яйця для вирощування улюбленців, виконавши певні завдання (щоб дізнатися більше про завдання, див. [Як битися з монстрами та виконувати завдання](https://habitica.com/static/faq/#monsters-quests)).",
"androidFaqAnswer6": "Кожен раз, коли Ви виконали завдання, Ви маєте шанс отримати яйце, інкубаційне зілля або корм. Ці предмети будуть збережені у Меню > Предмети\n\nВам потрібне яйце та інкубаційний еліксир для того щоб вилупився улюбленець. Натисніть на яйце для того, щоб визначити якого виду улюбленця Ви хочете вилупити, та виберіть \"Вилупити використовуючи еліксир.\" Тоді виберіть зілля з потрібним кольором. Для того щоб обрати улюбленця, натисніть Меню > Хлів > Улюбленці, виберіть вид, потрібного улюбленця та натисніть на \"Вибрати\" (Ваш аватар не оновиться автоматично).\n\nТакож Ви можете виростити з улюбленців скакунів, годуючи їх у Меню > Хлів[ > Улюбленці]. Натисніть на улюбленця та виберіть \"Годувати\"! Вам потрібно буде годувати улюбленця декілька разів, доки він не стане скакуном, проте якщо Ви зможете знайти його улюблену їжу, він виросте набагато швидше. Користуйтеся методом проб та помилок або [подивіться підказки тут](http://habitica.fandom.com/wiki/Food#Food_Preferences). Для того щоб вибрати Вашого скакуна, перейдіть у Меню > Хлів > Скакуни, виберіть вид, натисніть на потрібного скакуна та натисніть \"Вибрати\" (Ваш аватар не оновиться автоматично)\n\nВи також можете завжди отримати яйця квестових улюбленців виконуючи певні Квести. ( Дивіться нижче щоб дізнатись більше про Квести.)",
"webFaqAnswer6": "Кожен раз, коли Ви виконали завдання, Ви маєте шанс отримати яйце, інкубаційне зілля або їжу. Ці предмети будуть збережені у Інвентар > Предмети. Вам потрібне яйце та інкубаційне зілля для того, щоб вилупився улюбленець. Коли у Вас є яйце і інкубаційне зілля, перейдіть до Інвентар > Хлів для того щоб вилупити улюбленця натиснувши на його портрет. Як тільки Ви вилупили улюбленця, Ви можете вибрати його натиснувши на ньому. Ви можете виростити улюбленця у скакуна погодувавши його у Інвентар > Хлів. Перетягніть їжу з панелі знизу екрану на улюбленця для того, щоб погодувати його. Вам потрібно буде годувати улюбленця багато раз для того, щоб він став скакуном, проте якщо ви зможете вгадати його улюблену їжу, то він виросте набагато скоріше. Використовуйте метод проб та помилок або [подивіться підказки тут](http://habitica.fandom.com/wiki/Food#Food_Preferences). Як тільки у Вас є скакун, натисніть на нього щоб вибрати його для свого аватару. Ви також можете отримати яйця квестових улюбленців виконуючи певні квести. (Читайте нижче, щоб дізнатися більше про Квести.)",
"faqQuestion7": "Як стати воїном, магом, розбійником чи цілителем?",
- "iosFaqAnswer7": "На рівні 10 ви можете вибрати себе воїном, магом, розбійником або цілителем. (Усі гравці починають як воїни за замовчуванням.) Кожен клас має різні варіанти обладнання, різні навички, які вони можуть чаклувати після рівня 11, і різні переваги. Воїни можуть легко пошкодити босів, витримувати більше пошкоджень від своїх завдань і допомогти зробити свій гурт прочнішим. Маги можуть також легко пошкодити босів, а також швидко отримувати новий рівень і відновлювати Ману для свого гурту. Розбійники заробляють найбільше золота і отримують найбільшу кількість випадань, і вони можуть допомогти своїй партії зробити те ж саме. Нарешті, Цілителі можуть зцілити себе та членів свого гурту.\n\n Якщо ви не бажаєте негайно вибирати клас - наприклад, якщо ви все ще працюєте, щоб придбати все спорядження вашого поточного класу, ви можете натиснути кнопку \"Вирішити Пізніше \"та вибрати пізніше в Меню > Вибрати клас.",
- "androidFaqAnswer7": "На рівні 10 ви можете стати воїном, магом, розбійником або цілителем. (Усі гравці починають як воїни за замовчуванням.) Кожен клас має різні варіанти обладнання, різні навички, які вони можуть чаклувати після рівня 11, та різні переваги. Воїни можуть легко пошкодити босів, витримувати більше пошкоджень від своїх завдань і допомогти зробити свій гурт прочнішим. Маги можуть також легко пошкодити босів, а також швидко отримувати новий рівень і відновлювати Ману для свого гурту. Розбійники заробляють найбільше золота і отримують найбільшу кількість випадань, і вони можуть допомогти своїй партії зробити те ж саме. Нарешті, Цілителі можуть зцілити себе та членів свого гурту. Якщо ви не бажаєте негайно вибирати клас - наприклад, якщо ви все ще працюєте, щоб придбати все спорядження вашого поточного класу, ви можете натиснути кнопку \"Вирішити Пізніше\" та вибрати пізніше в Меню > Вибрати клас.",
+ "iosFaqAnswer7": "На рівні 10 ви можете вибрати себе воїном, магом, розбійником або цілителем. (Усі гравці починають як воїни за замовчуванням.) Кожен клас має різні варіанти обладнання, різні навички, які вони можуть чаклувати після рівня 11, і різні переваги. Воїни можуть легко пошкодити босів, витримувати більше пошкоджень від своїх завдань і допомогти зробити свій гурт прочнішим. Маги можуть також легко пошкодити босів, а також швидко отримувати новий рівень і відновлювати Ману для свого гурту. Розбійники заробляють найбільше золота і отримують найбільшу кількість випадань, і вони можуть допомогти своїй партії зробити те ж саме. Нарешті, Цілителі можуть зцілити себе та членів свого гурту.\n\n Якщо ви не бажаєте негайно вибирати клас - наприклад, якщо ви все ще працюєте, щоб придбати все спорядження вашого поточного класу, ви можете натиснути кнопку \"Скасувати\" та обрати клас пізніше, відкривши Меню, натиснувши на іконку Налаштувань, а потім \"Увімкнути систему класів\".",
+ "androidFaqAnswer7": "На рівні 10 ви можете стати воїном, магом, розбійником або цілителем. (Усі гравці починають як воїни за замовчуванням.) Кожен клас має різні варіанти обладнання, різні навички, які вони можуть чаклувати після рівня 11, та різні переваги. Воїни можуть легко пошкодити босів, витримувати більше пошкоджень від своїх завдань і допомогти зробити свій гурт прочнішим. Маги можуть також легко пошкодити босів, а також швидко отримувати новий рівень і відновлювати Ману для свого гурту. Розбійники заробляють найбільше золота і отримують найбільшу кількість випадань, і вони можуть допомогти своїй партії зробити те ж саме. Нарешті, Цілителі можуть зцілити себе та членів свого гурту.\n\nЯкщо ви не хочете одразу вибирати клас – наприклад, якщо ви все ще працюєте над придбанням усього спорядження вашого поточного класу – ви можете натиснути «Відмовитися» та вибрати пізніше, відкривши Меню, потім Налаштування, а потім «Увімкнути систему класів».",
"webFaqAnswer7": "На рівні 10 ви можете стати воїном, магом, розбійником або цілителем. (Усі гравці починають як воїни за замовчуванням.) Кожен клас має різні варіанти обладнання, різні навички, які вони можуть чаклувати після рівня 11, та різні переваги. Воїни можуть легко пошкодити босів, витримувати більше пошкоджень від своїх завдань і допомогти зробити свій гурт прочнішим. Маги можуть також легко пошкодити босів, а також швидко отримувати новий рівень і відновлювати Ману для свого гурту. Розбійники заробляють найбільше золота і отримують найбільшу кількість випадань, і вони можуть допомогти своїй партії зробити те ж саме. Нарешті, Цілителі можуть зцілити себе та членів свого гурту. Якщо ви не бажаєте негайно вибирати клас - наприклад, якщо ви все ще працюєте, щоб придбати все спорядження вашого поточного класу, ви можете натиснути кнопку \"Вирішити Пізніше\" та повторно активувати класи у Налаштуваннях.",
"faqQuestion8": "Що це за голубий показник, котрий з'являється в заголовках після 10 рівня?",
- "iosFaqAnswer8": "Синя смужка, яка з'явиться, коли ви отримаєте рівень 10 і виберете клас, - це ваша смужка Мани. Коли ви продовжуєте отримувати нові рівні, ви розблокуєте спеціальні навички, для використання яких потрібна Мана. Кожен клас має різні навички, які з'являються після рівня 11 в Меню > Навички. На відміну від смужки здоров'я, смужка Мани не скидається, коли ви отримуєте рівень. Замість цього, Мана отримується, коли ви виконуєте Добрі звички, Щоденні Завдання та Задачі, і втрачаєте, коли зловживаєте поганими звичками. Ви також отримаєте Ману за ніч - чим більше Щоденних Завдань ви завершите, тим більше ви отримаєте.",
+ "iosFaqAnswer8": "Синя смужка, яка з'явиться, коли ви отримаєте рівень 10 і виберете клас, - це ваша шкала мани. Коли ви продовжуєте отримувати нові рівні, ви розблокуєте спеціальні вміння, для використання яких потрібна мана. Кожен клас має різні вміння, які з'являються після рівня 11 в Меню > Вміння. На відміну від смужки здоров'я, смужка мани не скидається, коли ви отримуєте рівень. Ви отримуєте ману, коли виконуєте хороші звички, щоденні справи та завдання, і втрачаєте, коли зловживаєте поганими звичками. Ви також отримаєте ману кожного нового дня - чим більше щоденок ви завершите, тим більше ви її отримаєте.",
"androidFaqAnswer8": "Синя смужка, яка з'явиться, коли ви отримаєте рівень 10 і виберете клас, - це ваша смужка Мани. Коли ви продовжуєте отримувати нові рівні, ви розблокуєте спеціальні навички, для використання яких потрібна Мана. Кожен клас має різні навички, які з'являються після рівня 11 в Меню > Навички. На відміну від смужки здоров'я, смужка Мани не скидається, коли ви отримуєте рівень. Замість цього, Мана отримується, коли ви виконуєте Добрі звички, Щоденні Завдання та Задачі, і втрачаєте, коли зловживаєте поганими звичками. Ви також отримаєте Ману за ніч - чим більше Щоденних Завдань ви завершите, тим більше ви отримаєте.",
- "webFaqAnswer8": "Синя смужка, яка з'явиться, коли ви отримаєте рівень 10 і виберете клас, - це ваша смужка Мани. Коли ви продовжуєте отримувати нові рівні, ви розблокуєте спеціальні навички, для використання яких потрібна Мана. Кожен клас має різні навички, які з'являються після рівня 11 у активній панель знизу екрану. На відміну від смужки здоров'я, смужка Мани не скидається, коли ви отримуєте рівень. Замість цього, Мана отримується, коли ви виконуєте Добрі звички, Щоденні Завдання та Задачі, і втрачаєте, коли зловживаєте поганими звичками. Ви також отримаєте Ману за ніч - чим більше Щоденних Завдань ви завершите, тим більше ви отримаєте.",
+ "webFaqAnswer8": "Синя смужка, яка з'явиться, коли ви отримаєте рівень 10 і виберете клас, - це ваша смужка мани. Коли ви продовжуєте отримувати нові рівні, ви розблокуєте спеціальні навички, для використання яких потрібна Мана. Кожен клас має різні навички, які з'являються після рівня 11 у активній панель знизу екрану. На відміну від смужки здоров'я, смужка мани не скидається, коли ви отримуєте рівень. Замість цього, мана отримується, коли ви виконуєте хороші звички, щоденні справи та завдання, і втрачається, коли зловживаєте поганими звичками. Ви також отримаєте ману на початку нового дня - чим більше щоденок ви завершите, тим більше ви її отримаєте.",
"faqQuestion9": "Як боротися з монстрами та приймати участь в квестах?",
- "iosFaqAnswer9": "По-перше, вам потрібно приєднатися або створити гурт (див. вище). Хоча ви можете боротися з монстрами наодинці, ми рекомендуємо грати в групі, тому що це зробить Квести набагато простішими. Крім того, дуже мотивує наявність приятеля який може підбадьорити вас, коли ви виконуєте свої завдання!\n\n Далі вам потрібен Квестовий Сувій, які зберігаються в Меню > Предмети. Існує три способи отримати сувій: \n\n- На рівні 15 ви отримуєте лінію квестів, тобтотри пов'язаних квести. Інші квестові лінії розблоковуються на рівнях 30, 40 та 60, відповідно. \n- Коли ви запрошуєте людей до вашого гурту, ви будете нагороджені сувоєм базі-листа!\n - Ви можете купити квести у магазині квестів за золото та самоцвіти.\n\nДля того щоб наносити пошкодшення босу або збирати предмети для квестів на збирання предметів , просто виконуйте свої завдання як зазвичай, і вони будуть трансформуватися у пошкодження протягом ночі. (Можливо буде необхідно потягнути вниз єкрану для того щоб стрічка здоров'я боса знизилася.) Якщо ви боретеся з босом, і ви пропустили будь-які щоденні завдання, бос пошкодить ваш гурт в той же час, як ви пошкодите боса. \n\nПісля 11 рівня Маги та Воїни отримають навички, які дозволять їм наносити додаткові пошкодження Босу, так що це чудові класи для вибору на рівні 10, якщо ви хочете наносити багато пошкоджень.",
+ "iosFaqAnswer9": "По-перше, вам потрібно приєднатися або створити гурт ( [Як грати в Habitica з друзями](https://habitica.com/static/faq#party-with-friends)). Хоча ви можете боротися з монстрами наодинці, ми рекомендуємо грати в команді, тому що це зробить квести набагато простішими. Крім того, дуже мотивує наявність приятеля який може підбадьорити вас, коли ви виконуєте свої завдання!\n\n Далі вам потрібен Квестовий Сувій, які зберігаються в Меню > Предмети. Існує три способи отримати сувій: \n\n- На рівні 15 ви отримуєте серію квестів, тобто три пов'язаних квести. Інші квестові лінії розблоковуються на рівнях 30, 40 та 60, відповідно. \n- Коли ви запрошуєте людей до вашого гурту, ви будете нагороджені сувоєм Списко-змій!\n - Ви можете купити квести у магазині квестів за золото та самоцвіти.\n\nДля того щоб наносити пошкодшення босу або збирати предмети для квестів на збирання предметів , просто виконуйте свої завдання як зазвичай, і вони будуть трансформуватися у пошкодження протягом ночі. (Можливо буде необхідно потягнути вниз єкрану для того щоб стрічка здоров'я боса знизилася.) Якщо ви боретеся з босом, і ви пропустили будь-які щоденні завдання, бос нанесе удар по учасникам вашої команди, в той же час, і ви вдарите боса. \n\nПісля 11 рівня Маги та Воїни отримають навички, які дозволять їм наносити додаткові пошкодження Босу, так що це чудові класи для вибору на рівні 10, якщо ви хочете наносити багато пошкоджень.",
"androidFaqAnswer9": "По-перше, вам потрібно приєднатися або створити гурт (див. вище). Хоча ви можете боротися з монстрами наодинці, ми рекомендуємо грати в групі, тому що це зробить Квести набагато простішими. Крім того, дуже мотивує наявність приятеля який може підбадьорити вас, коли ви виконуєте свої завдання!\n\n Далі вам потрібен Квестовий Сувій, які зберігаються в Меню > Предмети. Існує три способи отримати сувій: \n\n- На рівні 15 ви отримуєте лінію квестів, тобтотри пов'язаних квести. Інші квестові лінії розблоковуються на рівнях 30, 40 та 60, відповідно. \n- Коли ви запрошуєте людей до вашого гурту, ви будете нагороджені сувоєм базі-листа!\n - Ви можете купити квести у магазині квестів за золото та самоцвіти.\n\nДля того щоб наносити пошкодшення босу або збирати предмети для квестів на збирання предметів , просто виконуйте свої завдання як зазвичай, і вони будуть трансформуватися у пошкодження протягом ночі. (Можливо буде необхідно потягнути вниз єкрану для того щоб стрічка здоров'я боса знизилася.) Якщо ви боретеся з босом, і ви пропустили будь-які щоденні завдання, бос пошкодить ваш гурт в той же час, як ви пошкодите боса. \n\nПісля 11 рівня Маги та Воїни отримають навички, які дозволять їм наносити додаткові пошкодження Босу, так що це чудові класи для вибору на рівні 10, якщо ви хочете наносити багато пошкоджень.",
- "webFaqAnswer9": "По-перше, вам потрібно приєднатися або створити гурт (див. вище). Хоча ви можете боротися з монстрами наодинці, ми рекомендуємо грати в групі, тому що це зробить Квести набагато простішими. Крім того, дуже мотивує наявність приятеля який може підбадьорити вас, коли ви виконуєте свої завдання!\n\n Далі вам потрібен Квестовий Сувій, які зберігаються в Інвентар > Квести. Існує чотири способи отримати сувій: \n- Коли ви запрошуєте людей до вашого гурту, ви будете нагороджені сувоєм базі-листа!\n- На рівні 15 ви отримуєте лінію квестів, тобтотри пов'язаних квести. Інші квестові лінії розблоковуються на рівнях 30, 40 та 60, відповідно. \n - Ви можете купити квести у магазині квестів за золото та самоцвіти.\n -Коли ви заходите у Habitica певну кількість разів, ви будете нагороджені квестовими сувоями. Ви отримаєте сувій за 1, 7, 22 та 40-ве заходження\nДля того щоб наносити пошкодшення босу або збирати предмети для квестів на збирання предметів , просто виконуйте свої завдання як зазвичай, і вони будуть трансформуватися у пошкодження протягом ночі. (Можливо буде необхідно потягнути вниз єкрану для того щоб стрічка здоров'я боса знизилася.) Якщо ви боретеся з босом, і ви пропустили будь-які щоденні завдання, бос пошкодить ваш гурт в той же час, як ви пошкодите боса. \n\nПісля 11 рівня Маги та Воїни отримають навички, які дозволять їм наносити додаткові пошкодження Босу, так що це чудові класи для вибору на рівні 10, якщо ви хочете наносити багато пошкоджень.",
+ "webFaqAnswer9": "По-перше, вам потрібно приєднатися або створити гурт (див. вище). Хоча ви можете боротися з монстрами наодинці, ми рекомендуємо грати в групі, тому що це зробить Квести набагато простішими. Крім того, дуже мотивує наявність приятеля який може підбадьорити вас, коли ви виконуєте свої завдання! Далі вам потрібен Квестовий Сувій, які зберігаються в Інвентар > Квести. Існує чотири способи отримати сувій:\n- Коли ви запрошуєте людей до вашого гурту, ви будете нагороджені сувоєм базі-листа!\n- На рівні 15 ви отримуєте лінію квестів, тобтотри пов'язаних квести. Інші квестові лінії розблоковуються на рівнях 30, 40 та 60, відповідно.\n- Ви можете купити квести у магазині квестів за золото та самоцвіти.\n-Коли ви заходите у Habitica певну кількість разів, ви будете нагороджені квестовими сувоями. Ви отримаєте сувій за 1, 7, 22 та 40-ве заходження\nДля того щоб наносити пошкодшення босу або збирати предмети для квестів на збирання предметів , просто виконуйте свої завдання як зазвичай, і вони будуть трансформуватися у пошкодження протягом ночі. (Можливо буде необхідно потягнути вниз єкрану для того щоб стрічка здоров'я боса знизилася.) Якщо ви боретеся з босом, і ви пропустили будь-які щоденні завдання, бос пошкодить ваш гурт в той же час, як ви пошкодите боса. Після 11 рівня Маги та Воїни отримають навички, які дозволять їм наносити додаткові пошкодження Босу, так що це чудові класи для вибору на рівні 10, якщо ви хочете наносити багато пошкоджень.",
"faqQuestion10": "Що таке Самоцвіти і як мені їх дістати?",
- "iosFaqAnswer10": "Самоцвіти купуються за допомогою справжніх грошей, натиснувши на значок Самоцвіта у заголовку. Коли люди купують Самоцвіти, вони допомагають нам підтримувати роботу сайту. Ми дуже вдячні за їх підтримку! \n\nКрім покупки Самоцвітів безпосередньо, є три інші способи як можна їх отримати:\n\n * Виграти випробування, яке було встановлене іншим гравцем. Перейдіть до Спільнота> Випробування, щоб приєднатися до певних випробувань.\n\n * Підпишіться та розблокуйте можливість придбати певну кількість Самоцвітів на місяць.\n * Посприйте розвитку Habitica. Докладніше див. Цю сторінку вікі: [Contributing to Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica). \n\nПам'ятайте, що предмети, придбані за Самоцвіти, не дають статистичних переваг, тому гравці все одно можуть використовувати додаток без них!",
- "androidFaqAnswer10": "Самоцвіти купуються за допомогою справжніх грошей, натиснувши на значок Самоцвіта у заголовку. Коли люди купують Самоцвіти, вони допомагають нам підтримувати роботу сайту. Ми дуже вдячні за їх підтримку! \n\nКрім покупки Самоцвітів безпосередньо, є три інші способи як можна їх отримати:\n\n * Виграти випробування, яке було встановлене іншим гравцем. Перейдіть до Спільнота> Випробування, щоб приєднатися до певних випробувань.\n\n * Підпишіться та розблокуйте можливість придбати певну кількість Самоцвітів на місяць.\n * Посприйте розвитку Habitica. Докладніше див. Цю сторінку вікі: [Contributing to Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica). \n\nПам'ятайте, що предмети, придбані за Самоцвіти, не дають статистичних переваг, тому гравці все одно можуть використовувати додаток без них!",
- "webFaqAnswer10": "Самоцвіти купуються за допомогою справжніх грошей, хоча [підписники](https://habitica.com/user/settings/subscription) можуть придбати Самоцвіти за Золото. Коли люди підписуються або купують Самоцвіти, вони допомагають нам підтримувати роботу сайту. Ми дуже вдячні за їх підтримку! Крім покупки Самоцвітів безпосередньо або оформленні підписки, є два інші способи як можна їх отримати:\n * Виграти випробування, яке було встановлене іншим гравцем. Перейдіть до Спільнота> Випробування, щоб приєднатися до певних випробувань.\n * Посприйте розвитку Habitica. Докладніше див. Цю сторінку вікі: [Contributing to Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica). Пам'ятайте, що предмети, придбані за Самоцвіти, не дають статистичних переваг, тому гравці все одно можуть використовувати додаток без них!",
+ "iosFaqAnswer10": "Самоцвіти купуються за допомогою справжніх грошей, натиснувши на значок Самоцвіта у заголовку. Коли люди купують Самоцвіти, вони допомагають нам підтримувати роботу сайту. Ми дуже вдячні за їх підтримку! \n\nКрім покупки Самоцвітів безпосередньо, є три інші способи як можна їх отримати:\n\n * Виграти випробування, яке було встановлене іншим гравцем. Перейдіть до Спільнота> Випробування, щоб приєднатися до певних випробувань.\n * Підпишіться та розблокуйте можливість придбати певну кількість Самоцвітів на місяць.\n * Посприйте розвитку Habitica. Докладніше див. Цю сторінку вікі: [Contributing to Habitica](https://habitica.fandom.com/wiki/Contributing_to_Habitica). \n\nПам'ятайте, що предмети, придбані за Самоцвіти, не дають статистичних переваг, тому гравці все одно можуть використовувати додаток без них!",
+ "androidFaqAnswer10": "Самоцвіти купуються за допомогою справжніх грошей, натиснувши на значок Самоцвіта у заголовку. Коли люди купують Самоцвіти, вони допомагають нам підтримувати роботу сайту. Ми дуже вдячні за їх підтримку!\n\nКрім покупки Самоцвітів безпосередньо, є три інші способи як можна їх отримати:\n\n* Виграти випробування, яке було встановлене іншим гравцем. Перейдіть до Спільнота> Випробування, щоб приєднатися до певних випробувань.\n* Підпишіться та розблокуйте можливість придбати певну кількість Самоцвітів на місяць.\n* Посприйте розвитку Habitica. Докладніше див. Цю сторінку вікі: [Contributing to Habitica](http://habitica.fandom.com/wiki/Contributing_to_Habitica). \n\nПам'ятайте, що предмети, придбані за Самоцвіти, не дають статистичних переваг, тому гравці все одно можуть використовувати додаток без них!",
+ "webFaqAnswer10": "Самоцвіти купуються за допомогою справжніх грошей, хоча [підписники](https://habitica.com/user/settings/subscription) можуть придбати Самоцвіти за Золото. Коли люди підписуються або купують Самоцвіти, вони допомагають нам підтримувати роботу сайту. Ми дуже вдячні за їх підтримку! Крім покупки Самоцвітів безпосередньо або оформленні підписки, є два інші способи як можна їх отримати:\n* Виграти випробування, яке було встановлене іншим гравцем. Перейдіть до Спільнота> Випробування, щоб приєднатися до певних випробувань.\n* Посприйте розвитку Habitica. Докладніше див. Цю сторінку вікі: [Contributing to Habitica](https://habitica.fandom.com/wiki/Contributing_to_Habitica). Пам'ятайте, що предмети, придбані за Самоцвіти, не дають статистичних переваг, тому гравці все одно можуть використовувати додаток без них!",
"faqQuestion11": "Як повідомити про помилку чи запропонувати нову функцію?",
- "iosFaqAnswer11": "Ви можете повідомити про помилку,запросити нову функцію або надіслати відгук у Про Gроект> Повідомити про помилку та Про Gроект> Надіслати відгук! Ми зробимо все можливе, щоб допомогти вам.",
- "androidFaqAnswer11": "Ви можете повідомити про помилку,запросити нову функцію або надіслати відгук у Про Проект> Повідомити про помилку та Про Проект> Надіслати відгук! Ми зробимо все можливе, щоб допомогти вам.",
- "webFaqAnswer11": "Щоб повідомити про помилку, перейдіть у [Допомога > Повідомити про помилку](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) та прочитайте інформацію над чатом. Якщо ви не можете зайти у Habitica, відправте дані вашого аккаунта (не ваш пароль!) у [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Не хвилюйтесь, ми вирішемо вашу проблему швидко! Запросити нові функції можна на Trello. Перейдіть у [Допомога > Запросити функцію](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) та слідуйте інструкціям. Та-да!",
+ "iosFaqAnswer11": "Якщо ви вважаєте, що зіткнулися з помилкою, перейдіть до Меню > Підтримка > Отримати довідку, щоб знайти швидкі виправлення, відомі проблеми або повідомити нам про помилку. Ми зробимо все можливе, щоб допомогти вам.\n\nЩоб надіслати відгук або подати запит на функцію, ви можете отримати доступ до нашої форми зворотного зв’язку, вибравши Меню > Підтримка > Надіслати відгук. Якщо у нас виникнуть запитання, ми зв’яжемося з вами для отримання додаткової інформації!",
+ "androidFaqAnswer11": "Якщо Ви вважаєте, що зіткнулися з помилкою, перейдіть до Меню > Допомога та ЧаПи > Отримати допомогу, щоб знайти швидкі рішення, відомі проблеми або повідомити нам про помилку. Ми зробимо все можливе, щоб допомогти Вам.\n\nЩоб надіслати відгук або подати запит на функцію, Ви можете отримати доступ до нашої форми зворотного зв’язку, вибравши Меню > Допомога та ЧаПи > Залишити відгук. Якщо у нас виникнуть запитання, ми зв’яжемося з Вами для отримання додаткової інформації!",
+ "webFaqAnswer11": "Щоб повідомити про помилку, перейдіть у Допомога > Повідомити про помилку, щоб надіслати нам електронного листа. (Можливо, вам знадобиться налаштувати обробку посилань «mailto» у вашому браузері.) Якщо Ви не можете увійти в Habitica, відправте дані вашого аккаунта (не ваш пароль!) у [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Не хвилюйтесь, ми вирішемо Вашу проблему швидко! Запити на функції збираються через форму Google. Перейдіть до [Допомога > Запропонувати функцію](https://docs.google.com/forms/d/e/1FAIpQLScPhrwq_7P1C6PTrI3lbvTsvqGyTNnGzp1ugi1Ml0PFee_p5g/viewform?usp=sf_link) і дотримуйтеся вказівок. Та-да!",
"faqQuestion12": "Як боротися зі світовими босами?",
- "iosFaqAnswer12": "Світові боси - це особливі монстри, які з'являються у Таверні. Всі активні користувачі автоматично борються з босом, а їхні завдання та навички завдають шкоди Босу як завжди.\n\n Ви також можете виконувати звичайний квест одночасно. Ваші завдання та навички будуть розраховуватись як на Світового Боса, так і на квести з Босами або на збирання предметів у вашому гурті.\n\n Світовий Бос ніколи не пошкодить вас чи ваш аккаунт ніяким чином. Замість цього у нього є смуга Люті, яка заповнюється, коли користувачі пропускають щоденні завдання. Якщо заповниться дана смуга, Босс нападе на одного з неігрових персонажів, який є на сайті, і їхній образ зміниться.\n\n Ви можете дізнатись більше про [Минулих Світових Боссів](http://habitica.fandom.com/wiki/World_Bosses) на вікі.",
- "androidFaqAnswer12": "Світові боси - це особливі монстри, які з'являються у Таверні. Всі активні користувачі автоматично борються з босом, а їхні завдання та навички завдають шкоди Босу як завжди.\n\n Ви також можете виконувати звичайний квест одночасно. Ваші завдання та навички будуть розраховуватись як на Світового Боса, так і на квести з Босами або на збирання предметів у вашому гурті.\n\n Світовий Бос ніколи не пошкодить вас чи ваш аккаунт ніяким чином. Замість цього у нього є смуга Люті, яка заповнюється, коли користувачі пропускають щоденні завдання. Якщо заповниться дана смуга, Босс нападе на одного з неігрових персонажів, який є на сайті, і їхній образ зміниться.\n\n Ви можете дізнатись більше про [Минулих Світових Боссів](http://habitica.fandom.com/wiki/World_Bosses) на вікі.",
- "webFaqAnswer12": "Світові боси - це особливі монстри, які з'являються у Таверні. Всі активні користувачі автоматично борються з босом, а їхні завдання та навички завдають шкоди Босу як завжди.Ви також можете виконувати звичайний квест одночасно. Ваші завдання та навички будуть розраховуватись як на Світового Боса, так і на квести з Босами або на збирання предметів у вашому гурті. Світовий Бос ніколи не пошкодить вас чи ваш аккаунт ніяким чином. Замість цього у нього є смуга Люті, яка заповнюється, коли користувачі пропускають щоденні завдання. Якщо заповниться дана смуга, Босс нападе на одного з неігрових персонажів, який є на сайті, і їхній образ зміниться. Ви можете дізнатись більше про [Минулих Світових Боссів](http://habitica.fandom.com/wiki/World_Bosses) на вікі.",
- "iosFaqStillNeedHelp": "Якщо виникли питання, котрі відсутні в списку або в [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), задайте його у чаті Таверни у Меню > Таверна! Ми раді допомогти.",
- "androidFaqStillNeedHelp": "Якщо виникли питання, котрі відсутні в списку або в [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), задайте його у чаті Таверни у Меню > Таверна! Ми раді допомогти.",
- "webFaqStillNeedHelp": "Якщо виникли питання, котрі відсутні в списку або в [FAQ на Вікі](http://habitica.fandom.com/wiki/FAQ), то задайте його в [Ґільдії для початківці](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Ми з радістю допоможемо вам."
+ "iosFaqAnswer12": "Світові боси - це особливі монстри, які з'являються у Таверні. Всі активні користувачі автоматично борються з босом, а їхні завдання та навички завдають шкоди Босу як завжди.\n\n Ви також можете виконувати звичайний квест одночасно. Ваші завдання та навички будуть розраховуватись як на Світового Боса, так і на квести з Босами або на збирання предметів у вашому гурті.\n\n Світовий Бос ніколи не пошкодить вас чи ваш аккаунт ніяким чином. Замість цього у нього є смуга Люті, яка заповнюється, коли користувачі пропускають щоденні завдання. Якщо заповниться дана смуга, Бос нападе на одного з неігрових персонажів, який є на сайті, і їхній образ зміниться.\n\n Ви можете дізнатись більше про [Минулих Світових Боссів](https://habitica.fandom.com/wiki/World_Bosses) на вікі.",
+ "androidFaqAnswer12": "Світові боси - це особливі монстри, які з'являються у Таверні. Всі активні користувачі автоматично борються з босом, а їхні завдання та навички завдають шкоди Босу як завжди.\n\n Ви також можете виконувати звичайний квест одночасно. Ваші завдання та навички будуть розраховуватись як на Світового Боса, так і на квести з Босами або на збирання предметів у вашому гурті.\n\n Світовий Бос ніколи не пошкодить вас чи ваш аккаунт ніяким чином. Замість цього у нього є смуга Люті, яка заповнюється, коли користувачі пропускають щоденні завдання. Якщо заповниться дана смуга, Босс нападе на одного з неігрових персонажів, який є на сайті, і їхній образ зміниться.\n\n Ви можете дізнатись більше про [Минулих Світових Боссів](https://habitica.fandom.com/wiki/World_Bosses) на вікі.",
+ "webFaqAnswer12": "Світові боси - це особливі монстри, які з'являються у Таверні. Всі активні користувачі автоматично борються з босом, а їхні завдання та навички завдають шкоди Босу як завжди.Ви також можете виконувати звичайний квест одночасно. Ваші завдання та навички будуть розраховуватись як на Світового Боса, так і на квести з Босами або на збирання предметів у вашому гурті. Світовий Бос ніколи не пошкодить вас чи ваш аккаунт ніяким чином. Замість цього у нього є смуга Люті, яка заповнюється, коли користувачі пропускають щоденні завдання. Якщо заповниться дана смуга, Босс нападе на одного з неігрових персонажів, який є на сайті, і їхній образ зміниться. Ви можете дізнатись більше про [Минулих Світових Боссів](https://habitica.fandom.com/wiki/World_Bosses) на вікі.",
+ "iosFaqStillNeedHelp": "Якщо виникли питання, котрі відсутні в списку або в [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), задайте його у чаті Таверни у Меню > Таверна! Ми раді допомогти.",
+ "androidFaqStillNeedHelp": "Якщо виникли питання, котрі відсутні в списку або в [Wiki FAQ](https://habitica.fandom.com/wiki/FAQ), задайте його у чаті Таверни у Меню > Таверна! Ми раді допомогти.",
+ "webFaqStillNeedHelp": "Якщо виникли питання, котрі відсутні в списку або в [FAQ на Вікі](https://habitica.fandom.com/wiki/FAQ), то задайте його в [Ґільдії для початківці](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Ми з радістю допоможемо вам."
}
diff --git a/website/common/locales/uk/front.json b/website/common/locales/uk/front.json
index aa64f4e0a8..d43300ea9e 100644
--- a/website/common/locales/uk/front.json
+++ b/website/common/locales/uk/front.json
@@ -15,12 +15,12 @@
"emailNewPass": "Email a Password Reset Link",
"forgotPasswordSteps": "Введіть Ваш нікнейм або електронну пошту на яку Ви реєстрували Ваш аккаунт.",
"sendLink": "Відправити посилання",
- "featuredIn": "Featured in",
+ "featuredIn": "Про нас пишуть",
"footerDevs": "Розробники",
"footerCommunity": "Спільнота",
"footerCompany": "Компанія",
"footerMobile": "Мобільні додатки",
- "footerSocial": "Громада",
+ "footerSocial": "Соцмережі",
"free": "Приєднайся безкоштовно",
"guidanceForBlacksmiths": "Керівництво для ковалів",
"history": "Історія",
@@ -42,89 +42,89 @@
"marketing2Lead3Title": "Випробовуйте одне одного",
"marketing2Lead3": "Випробування дозволяють змагатися з друзями та незнайомими людьми. Той, хто покаже себе найкраще в кінці випробування, отримує спеціальні призи.",
"marketing3Header": "Додатки та розширення",
- "marketing3Lead1": "The **iPhone & Android** apps let you take care of business on the go. We realize that logging into the website to click buttons can be a drag.",
+ "marketing3Lead1": "Програми для **iPhone та Android** дозволяють вам займатися справами в дорозі. Ми розуміємо, що вхід на веб-сайт не завжди може бути зручним.",
"marketing3Lead2Title": "Інтеграції",
- "marketing3Lead2": "Other **3rd Party Tools** tie Habitica into various aspects of your life. Our API provides easy integration for things like the [Chrome Extension](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US), for which you lose points when browsing unproductive websites, and gain points when on productive ones. [See more here](http://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
+ "marketing3Lead2": "Інші **інструменти сторонніх розробників** пов’язують Habitica з різними аспектами Вашого життя. Наш API забезпечує легку інтеграцію для таких речей, як [розширення Chrome](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US), за яке Ви втрачаєте бали під час перегляду непродуктивних веб-сайтів, і отримуєте очки, коли на знаходитесь на продуктивних. [Дивіться більше тут](https://habitica.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
"marketing4Header": "Використання організаціями",
- "marketing4Lead1": "Education is one of the best sectors for gamification. We all know how glued to phones and games students are these days; harness that power! Pit your students against each other in friendly competition. Reward good behavior with rare prizes. Watch their grades and behavior soar.",
+ "marketing4Lead1": "Освіта є одним із найкращих секторів для гейміфікації. Ми всі знаємо, наскільки учні сьогодні прикуті до телефонів та ігор; скористайтесь цим! Зіштовхніть своїх учнів один проти одного в дружньому змаганні. Нагороджуйте хорошу поведінку рідкісними призами. Слідкуйте за їхніми оцінками та поведінкою.",
"marketing4Lead1Title": "Впровадження ігор в освіту",
- "marketing4Lead2": "Health care costs are on the rise, and something's gotta give. Hundreds of programs are built to reduce costs and improve wellness. We believe Habitica can pave a substantial path towards healthy lifestyles.",
+ "marketing4Lead2": "Витрати на охорону здоров’я зростають, і треба щось робити. Сотні програм розроблено для зменшення витрат на медицину і покращення самопочуття. Ми віримо, що Habitica може допомогти на шляху до здорового способу життя.",
"marketing4Lead2Title": "Гейміфікація в охороні здоров'я",
"marketing4Lead3-1": "Хочеш перетворити своє життя у гру?",
- "marketing4Lead3-2": "Interested in running a group in education, wellness, and more?",
+ "marketing4Lead3-2": "Хочете вести групу з освіти, оздоровлення тощо?",
"marketing4Lead3Title": "Перетвори у гру будь-що",
"mobileAndroid": "Android",
"mobileIOS": "iOS",
"oldNews": "Новини",
- "newsArchive": "News archive on Wikia (multilingual)",
- "setNewPass": "Set New Password",
+ "newsArchive": "Архів новин на Вікі (багатомовний)",
+ "setNewPass": "Встановити новий пароль",
"password": "Пароль",
"playButton": "Грати",
"playButtonFull": "Enter Habitica",
"presskit": "Для преси",
- "presskitText": "Thanks for your interest in Habitica! The following images can be used for articles or videos about Habitica. For more information, please contact us at <%= pressEnquiryEmail %>.",
- "pkQuestion1": "What inspired Habitica? How did it start?",
- "pkAnswer1": "If you’ve ever invested time in leveling up a character in a game, it’s hard not to wonder how great your life would be if you put all of that effort into improving your real-life self instead of your avatar. We starting building Habitica to address that question.
Habitica officially launched with a Kickstarter in 2013, and the idea really took off. Since then, it’s grown into a huge project, supported by our awesome open-source volunteers and our generous users.",
- "pkQuestion2": "Why does Habitica work?",
- "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.
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",
- "pkQuestion3": "Why did you add social features?",
- "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": "Why does skipping tasks remove your avatar’s health?",
- "pkAnswer4": "If you skip one of your daily goals, your avatar will lose health the following day. This serves as an important motivating factor to encourage people to follow through with their goals because people really hate hurting their little avatar! Plus, the social accountability is critical for a lot of people: if you’re fighting a monster with your friends, skipping your tasks hurts their avatars, too.",
- "pkQuestion5": "What distinguishes Habitica from other gamification programs?",
- "pkAnswer5": "One of the ways that Habitica has been most successful at using gamification is that we've put a lot of effort into thinking about the game aspects to ensure that they are actually fun. We've also included many social components, because we feel that some of the most motivating games let you play with friends, and because research has shown that it's easier to form habits when you have accountability to other people.",
- "pkQuestion6": "Who is the typical user of Habitica?",
- "pkAnswer6": "Lots of different people use Habitica! More than half of our users are ages 18 to 34, but we have grandparents using the site with their young grandkids and every age in-between. Often families will join a party and battle monsters together.
Many of our users have a background in games, but surprisingly, when we ran a survey a while back, 40% of our users identified as non-gamers! So it looks like our method can be effective for anyone who wants productivity and wellness to feel more fun.",
- "pkQuestion7": "Why does Habitica use pixel art?",
- "pkAnswer7": "Habitica uses pixel art for several reasons. In addition to the fun nostalgia factor, pixel art is very approachable to our volunteer artists who want to chip in. It's much easier to keep our pixel art consistent even when lots of different artists contribute, and it lets us quickly generate a ton of new content!",
- "pkQuestion8": "How has Habitica affected people's real lives?",
- "pkAnswer8": "You can find lots of testimonials for how Habitica has helped people here: https://habitversary.tumblr.com",
- "pkMoreQuestions": "Do you have a question that’s not on this list? Send an email to admin@habitica.com!",
- "pkPromo": "Promos",
+ "presskitText": "Дякуємо за інтерес до Habitica! Наступні зображення можна використовувати для статей або відео про Habitica. Для отримання додаткової інформації зв’яжіться з нами за адресою <%= pressEnquiryEmail %>.",
+ "pkQuestion1": "Що надихнуло на створення Habitica? Як все почалося?",
+ "pkAnswer1": "Якщо Ви коли-небудь витрачали час на підвищення рівня персонажа в грі, важко не замислитися, наскільки чудовим було б Ваше життя, якби Ви приклали всі ці зусилля для покращення свого справжнього життя, а не свого аватара. Ми почали будувати Habitica, щоб вирішити це питання.
Habitica офіційно була запущена на Kickstarter у 2013 році, і ця ідея справді стала популярною. З тих пір вона перетворилася на величезний проєкт відкритий код, якої підтримується нашими чудовими волонтерами і нашими щедрими користувачами.",
+ "pkQuestion2": "Чому Habitica працює?",
+ "pkAnswer2": "Сформувати нову звичку важко, тому що людям потрібна миттєва винагорода. Наприклад, важко почати користуватися зубною ниткою, навіть якщо наш стоматолог каже вам, що це добре для здоров'я в довгостроковій перспективі, тут і зараз вас болять ясна.
Гейміфікація в Habitica додає відчуття миттєвого задоволення від повсякденних цілей, винагороджуючи складне завдання досвідом, золотом… і, можливо, навіть випадковим призом, наприклад яйцем дракона! Це допомагає людям залишатися мотивованими, навіть якщо завдання саме по собі не має внутрішньої винагороди. І ми бачили, як люди змінюють своє життя в результаті. Ви можете переглянути деякі історії тут: https://habitversary.tumblr.com",
+ "pkQuestion3": "Чому ви додали соціальні функції?",
+ "pkAnswer3": "Соціальний тиск є величезним мотиваційним фактором для багатьох людей, тому ми знали, що хочемо мати сильну спільноту, яка відповідатиме один перед одним за свої цілі та вболіватиме за їхні успіхи. На щастя, одна з речей, яку багатокористувацькі відеоігри роблять найкраще, це сприяння почуттю спільності серед їхніх користувачів! Структура спільноти Habitica запозичена з цих типів ігор; ви можете створити невелику команду з близьких друзів, але ви також можете приєднатися до більших груп спільних інтересів, відомих як ґільдія. Хоча деякі користувачі вирішують грати поодинці, більшість вирішує створити мережу підтримки, яка заохочує соціальну підзвітність за допомогою таких функцій, як квести, де члени команди об’єднують свою продуктивність, щоб разом боротися з монстрами.",
+ "pkQuestion4": "Чому пропуск завдань погіршує здоров’я вашого аватара?",
+ "pkAnswer4": "Якщо ви пропустите одну зі своїх щоденних цілей, наступного дня ваш аватар втратить здоров’я. Це є важливим мотиваційним фактором, який заохочує людей досягати своїх цілей, тому що люди справді ненавидять кривдити свій маленький аватар! Крім того, соціальна підзвітність є надзвичайно важливою для багатьох людей: якщо ви боретеся з монстром разом із друзями, пропускаючи свої завдання, ви також шкодите їхнім аватарам.",
+ "pkQuestion5": "Що відрізняє Habitica від інших програм гейміфікації?",
+ "pkAnswer5": "Одним із найбільш успішних способів використання гейміфікації Habitica є те, що ми доклали багато зусиль, щоб переконатися, що вони дійсно приносять задоволення. Ми також включили багато соціальних компонентів, тому що вважаємо, що деякі з найбільш мотивуючих ігор дозволяють грати з друзями, і оскільки дослідження показали, що легше сформувати звички, коли ви несете відповідальність перед іншими.",
+ "pkQuestion6": "Хто є типовим користувачем Habitica?",
+ "pkAnswer6": "Багато різних людей використовують Habitica! Більше половини наших користувачів віком від 18 до 34 років, але у нас є бабусі й дідусі, які користуються сайтом зі своїми маленькими онуками. Часто сім'ї приєднуються до групи і разом борються з монстрами.
Багато наших користувачів мають досвід в інших іграх, але, як не дивно, коли ми проводили опитування деякий час потому, 40% наших користувачів назвали себе неігроманими! Отже, схоже, що наш метод може бути ефективним для тих, хто хоче бути продуктивним, здоровим та почуватись веселіше.",
+ "pkQuestion7": "Чому Habitica використовує піксельне мистецтво?",
+ "pkAnswer7": "Habitica використовує піксельне мистецтво з кількох причин. На додаток до веселого фактору ностальгії, піксельне мистецтво є дуже доступним для наших художників-волонтерів, які хочуть долучитися. Набагато легше підтримувати узгодженість нашої графіки, навіть якщо багато різних художників роблять свій внесок, і це дозволяє нам швидко створювати масу нового наповнення!",
+ "pkQuestion8": "Як Habitica вплинула на реальне життя людей?",
+ "pkAnswer8": "Ви можете знайти багато відгуків про те, як Habitica допомогла людям тут: https://habitversary.tumblr.com",
+ "pkMoreQuestions": "У вас є питання, якого немає в цьому списку? Надішліть електронний лист за адресою: admin@habitica.com!",
+ "pkPromo": "Промо-акції",
"pkLogo": "Логотипи",
"pkBoss": "Боси",
- "pkSamples": "Sample Screens",
+ "pkSamples": "Зразки екранів",
"pkWebsite": "Веб-сайт",
"pkiOS": "iOS",
"pkAndroid": "Android",
"privacy": "Політика конфіденційності",
"register": "Зареєструватися",
- "school": "School",
+ "school": "Школа",
"sync": "Синхронізуватися",
"tasks": "Завдання",
"teams": "Команди",
"terms": "Умови користування",
"tumblr": "Tumblr",
- "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage and most cookies for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.",
- "localStorageTryNext": "If the problem persists, please <%= linkStart %>Report a Bug<%= linkEnd %> if you haven't already.",
- "localStorageClear": "Clear Data",
- "localStorageClearExplanation": "This button will clear local storage and most cookies, and log you out.",
+ "localStorageTryFirst": "Якщо у вас виникли проблеми з Habitica, натисніть кнопку нижче, щоб очистити локальне сховище та більшість файлів cookie для цього веб-сайту (на інші веб-сайти це не вплине). Після цього вам потрібно буде ввійти знову, тому спочатку переконайтеся, що ви знаєте свої дані для входу, які можна знайти в Налаштуваннях -> <%= linkStart %>Сайт<%= linkEnd %>.",
+ "localStorageTryNext": "Якщо проблема далі відторюється, будь ласка, <%= linkStart %>повідомте про неї<%= linkEnd %> , якщо ви цього ще не робили.",
+ "localStorageClear": "Очистити дані",
+ "localStorageClearExplanation": "Ця кнопка очистить локальну пам’ять і більшість файлів cookie, а також вилогує вас із системи.",
"username": "Логін",
"emailOrUsername": "Логін або E-mail (чутливо до регістру)",
- "work": "Work",
+ "work": "Робота",
"reportAccountProblems": "Повідомити про проблеми з обліковим записом",
"reportCommunityIssues": "Повідомити про проблеми зі спільнотою",
"subscriptionPaymentIssues": "Проблеми з підпискою та оплатою",
"generalQuestionsSite": "Загальні запитання про сайт",
"businessInquiries": "Бізнес/Маркетингові запити",
"merchandiseInquiries": "Запити щодо фізичних товарів (футболки, наклейки)",
- "tweet": "Tweet",
- "checkOutMobileApps": "Check out our mobile apps!",
- "missingAuthHeaders": "Missing authentication headers.",
- "missingUsernameEmail": "Missing username or email.",
- "missingEmail": "Missing email.",
- "missingUsername": "Missing username.",
- "missingPassword": "Missing password.",
- "missingNewPassword": "Missing new password.",
- "invalidEmailDomain": "You cannot register with emails with the following domains: <%= domains %>",
- "wrongPassword": "Wrong password.",
+ "tweet": "Твітнути",
+ "checkOutMobileApps": "Оцініть наші мобільні програми!",
+ "missingAuthHeaders": "Відсутні заголовки автентифікації.",
+ "missingUsernameEmail": "Відсутнє ім’я користувача або електронна адреса.",
+ "missingEmail": "Відсутня електронна адреса.",
+ "missingUsername": "Відсутнє ім’я користувача.",
+ "missingPassword": "Відсутній пароль.",
+ "missingNewPassword": "Відсутній новий пароль.",
+ "invalidEmailDomain": "Ви не можете зареєструватися з електронними адресами в таких доменах: <%= domains %>",
+ "wrongPassword": "Неправильний пароль.",
"incorrectDeletePhrase": "Введіть, будь ласка <%= magicWord %> великими літерами, щоб видалити обліковий запис.",
"notAnEmail": "Email-адреса не дійсна.",
"emailTaken": "Email-адреса уже використовується інших обліковим записом.",
- "newEmailRequired": "Missing new email address.",
- "usernameTime": "It's time to set your username!",
- "usernameInfo": "Login names are now unique usernames that will be visible beside your display name and used for invitations, chat @mentions, and messaging.
If you'd like to learn more about this change, visit our wiki.",
- "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.",
+ "newEmailRequired": "Відсутня нова електронна адреса.",
+ "usernameTime": "Настав час вибрати своє ім'я користувача!",
+ "usernameInfo": "Логін тепер є унікальними іменами користувачів, які відображатимуться поруч із вашим іменем і використовуватимуться для запрошень, @згадування у чатах та листування.
Якщо хочете дізнатись більше про ці зміни, відвідайте нашу вікі.",
+ "usernameTOSRequirements": "Імена користувачів мають відповідати нашим Умовам використання та Правила спільноти. Якщо ви раніше не встановлювали ім’я для входу, ваше ім’я користувача було згенеровано автоматично.",
"usernameTaken": "Логін вже зайнято.",
"passwordConfirmationMatch": "Пароль та підтвердження паролю не співпадають.",
"invalidLoginCredentials": "Incorrect username and/or email and/or password.",
@@ -133,56 +133,56 @@
"passwordResetEmailSubject": "Скидання паролю до Habitica",
"passwordResetEmailText": "If you requested a password reset for <%= username %> on Habitica, head to <%= passwordResetLink %> to set a new one. The link will expire after 24 hours. If you haven't requested a password reset, please ignore this email.",
"passwordResetEmailHtml": "If you requested a password reset for <%= username %> on Habitica, \">click here to set a new one. The link will expire after 24 hours.
If you haven't requested a password reset, please ignore this email.",
- "invalidLoginCredentialsLong": "Uh-oh - your email address / username or password is incorrect.\n- Make sure they are typed correctly. Your username and password are case-sensitive.\n- You may have signed up with Facebook or Google-sign-in, not email so double-check by trying them.\n- If you forgot your password, click \"Forgot Password\".",
- "invalidCredentials": "There is no account that uses those credentials.",
- "accountSuspended": "This account, User ID \"<%= userId %>\", has been blocked for breaking the Community Guidelines (https://habitica.com/static/community-guidelines) or Terms of Service (https://habitica.com/static/terms). For details or to ask to be unblocked, please email our Community Manager at <%= communityManagerEmail %> or ask your parent or guardian to email them. Please include your @Username in the email.",
- "accountSuspendedTitle": "Account has been suspended",
- "unsupportedNetwork": "This network is not currently supported.",
- "cantDetachSocial": "Account lacks another authentication method; can't detach this authentication method.",
- "onlySocialAttachLocal": "Local authentication can be added to only a social account.",
- "invalidReqParams": "Invalid request parameters.",
- "memberIdRequired": "\"member\" must be a valid UUID.",
- "heroIdRequired": "\"heroId\" must be a valid UUID.",
- "cannotFulfillReq": "Your request cannot be fulfilled. Email admin@habitica.com if this error persists.",
- "modelNotFound": "This model does not exist.",
+ "invalidLoginCredentialsLong": "Ой-йой - ваша електронна адреса/ нікнейм або пароль - неправильні.\n- Переконайтеся, що вони введені правильно. Ваше ім'я користувача та пароль чутливі до регістру.\n- Можливо, ви зареєструвалися за допомогою Facebook або Google, а не за електронною поштою, тому ще раз перевірте, спробувавши їх.\n- Якщо ви забули пароль, натисніть «Забули пароль».",
+ "invalidCredentials": "Немає облікового запису, який використовує ці облікові дані.",
+ "accountSuspended": "Цей обліковий запис, з ID: \"<%= userId %>\", заблоковано через порушення Правил спільноти (https://habitica.com/static/community-guidelines) або Умов використання (https://habitica.com/static/terms). Щоб дізнатися більше або попросити розблокувати Dас, надішліть електронного листа нашому менеджеру спільноти за адресою <%= communityManagerEmail %> або попросіть своїх батьків чи опікунів надіслати їм електронний лист. Додайте свій @Username в електронному листі.",
+ "accountSuspendedTitle": "Обліковий запис заблоковано",
+ "unsupportedNetwork": "Ця мережа наразі не підтримується.",
+ "cantDetachSocial": "В обліковому записі відсутній інший метод автентифікації; не вдається від'єднати цей метод автентифікації.",
+ "onlySocialAttachLocal": "Локальну автентифікацію можна додати лише до облікового запису соцмережі.",
+ "invalidReqParams": "Недійсні параметри запиту.",
+ "memberIdRequired": "\"member\" мусить бути дійсним UUID.",
+ "heroIdRequired": "\"heroId\" мусить бути дійсним UUID.",
+ "cannotFulfillReq": "Ваш запит не може бути виконано. Напишіть на admin@habitica.com - якщо помилка повторюється.",
+ "modelNotFound": "Цієї моделі не існує.",
"signUpWithSocial": "Зареєструватись через <%= social %>",
"loginWithSocial": "Увійти через <%= social %>",
"confirmPassword": "Підтвердіть пароль",
- "usernameLimitations": "Username must be 1 to 20 characters, containing only letters a to z, numbers 0 to 9, hyphens, or underscores, and cannot include any inappropriate terms.",
- "usernamePlaceholder": "e.g., HabitRabbit",
+ "usernameLimitations": "Ім’я користувача має містити від 1 до 20 символів, містити лише літери від a до z, цифри від 0 до 9, дефіси або підкреслення, і не повинно містити жодних заборонених слів.",
+ "usernamePlaceholder": "наприклад, HabitRabbit",
"emailPlaceholder": "типу, gryphon@example.com",
"passwordPlaceholder": "типу, ******************",
"confirmPasswordPlaceholder": "Переконайтесь що це той самий пароль!",
"joinHabitica": "Приєднатися до Habitica",
- "alreadyHaveAccountLogin": "Already have a Habitica account? Log in.",
- "dontHaveAccountSignup": "Don’t have a Habitica account? Sign up.",
- "motivateYourself": "Motivate yourself to achieve your goals.",
- "timeToGetThingsDone": "It's time to have fun when you get things done! Join over <%= userCountInMillions %> million Habiticans and improve your life one task at a time.",
+ "alreadyHaveAccountLogin": "Вже є акаунт в Habitica? Увійдіть.",
+ "dontHaveAccountSignup": "Немає акаунту в Habitica? Зареєструйтесь.",
+ "motivateYourself": "Мотивуйте себе для досягнення своїх цілей.",
+ "timeToGetThingsDone": "Настав час розважатися під час виконання завдань! Приєднуйтесь до <%= userCountInMillions %> мільйонів габітиканців і покращуйте своє життя завдання за завданням.",
"singUpForFree": "Зареєструйтесь безкоштовно",
"or": "АБО",
- "gamifyYourLife": "Gamify Your Life",
+ "gamifyYourLife": "Гейміфікуйте своє життя",
"aboutHabitica": "Habitica — це безкоштовна програма для формування звичок і підвищення продуктивності, яка розглядає Ваше реальне життя як гру. Завдяки ігровим винагородам і покаранням, які мотивують Вас, і сильною соціальною мережею, яка надихає Вас, Habitica може допомогти Вам досягти Ваших цілей, щоб стати здоровим, працьовитим і щасливим.",
- "trackYourGoals": "Track Your Habits and Goals",
+ "trackYourGoals": "Відстежуйте свої звички та цілі",
"trackYourGoalsDesc": "Залишайтеся відповідальними, відстежуючи та керуючи своїми звичками, щоденними цілями та списком справ за допомогою простих у використанні мобільних додатків та веб-інтерфейсу Habitica.",
- "earnRewards": "Earn Rewards for Your Goals",
- "earnRewardsDesc": "Check off tasks to level up your Avatar and unlock in-game features such as battle armor, mysterious pets, magic skills, and even quests!",
- "battleMonsters": "Battle Monsters with Friends",
- "battleMonstersDesc": "Fight monsters with other Habiticans! Use the Gold that you earn to buy in-game or custom rewards, like watching an episode of your favorite TV show.",
- "playersUseToImprove": "Players Use Habitica to Improve",
+ "earnRewards": "Отримуйте нагороди за свої цілі",
+ "earnRewardsDesc": "Відзначайте завдання, щоб підвищити рівень свого аватара та розблокувати такі ігрові функції, як броня, таємничі тварини, магічні навички та навіть квести!",
+ "battleMonsters": "Бийтесь проти монстрів разом з друзями",
+ "battleMonstersDesc": "Боріться з монстрами разом з іншими габітиканцями! Використовуйте зароблене золото, щоб купувати внутрішньоігрові або власні нагороди, як-от перегляд епізоду улюбленого телешоу.",
+ "playersUseToImprove": "Гравці використовують Habitica для вдосконалення",
"healthAndFitness": "Здоров'я та фітнес",
- "healthAndFitnessDesc": "Never motivated to floss? Can't seem to get to the gym? Habitica finally makes it fun to get healthy.",
+ "healthAndFitnessDesc": "У вас ніколи не вистачало мотивації користуватися зубною ниткою? Ніяк не можете потрапити в спортзал? З Habitica нарешті стало веселим підтримувати здоров’я.",
"schoolAndWork": "Школа та Робота",
- "schoolAndWorkDesc": "Whether you're preparing a report for your teacher or your boss, it's easy to keep track of your progress as you tackle your toughest tasks.",
- "muchmuchMore": "And much, much more!",
- "muchmuchMoreDesc": "Our fully customizable task list means that you can shape Habitica to fit your personal goals. Work on creative projects, emphasize self-care, or pursue a different dream -- it's all up to you.",
- "levelUpAnywhere": "Level Up Anywhere",
- "levelUpAnywhereDesc": "Our mobile apps make it simple to keep track of your tasks on-the-go. Accomplish your goals with a single tap, no matter where you are.",
+ "schoolAndWorkDesc": "Незалежно від того, чи ви готуєте звіт для свого вчителя чи свого боса, легко відстежувати свій прогрес під час виконання найскладніших завдань.",
+ "muchmuchMore": "І багато, багато іншого!",
+ "muchmuchMoreDesc": "Наш повністю настроюваний список завдань означає, що ви можете формувати Habitica відповідно до своїх особистих цілей. Працюйте над творчими проектами, зосередьтеся на догляді за собою чи здійсніть іншу мрію – все залежить тільки від вас.",
+ "levelUpAnywhere": "Підвищуйте рівень будь-де",
+ "levelUpAnywhereDesc": "Наші мобільні програми спрощують відстеження ваших завдань навіть в дорозі. Досягайте своїх цілей одним дотиком, де б ви не були.",
"joinMany": "Приєднайтеся до понад <%= userCountInMillions %> мільйонів людей, які розважаються, досягаючи своїх цілей!",
"joinToday": "Приєднайтеся до Habitica сьогодні",
"signup": "Зареєструватися",
"getStarted": "Розпочати!",
"mobileApps": "Мобільні додатки",
- "learnMore": "Learn More",
+ "learnMore": "Дізнатись більше",
"minPasswordLength": "Пароль повинен містити не менше 8 символів.",
"communityInstagram": "Instagram",
"enterHabitica": "Повернутись в Habitica",
diff --git a/website/common/locales/uk/gear.json b/website/common/locales/uk/gear.json
index 08a422a183..c729b05ddd 100644
--- a/website/common/locales/uk/gear.json
+++ b/website/common/locales/uk/gear.json
@@ -3,7 +3,7 @@
"equipmentType": "Тип",
"klass": "Клас",
"groupBy": "Групувати по <%= type %>",
- "classBonus": "(This item matches your class, so it gets an additional 1.5 Stat multiplier.)",
+ "classBonus": "(Цей предмет відповідає вашому класу, тому він отримує додатковий множник характеристик 1.5)",
"classArmor": "Класова броня",
"featuredset": "Рекомандований комплект <%= name %>",
"mysterySets": "Містичний комплект",
@@ -11,7 +11,7 @@
"noGearItemsOfType": "Ви не володієте жодним з цих предметів.",
"noGearItemsOfClass": "Ви вже зібрали все спорядження для свого класу! Більше буде випущено до Великих Свят, під час сонцестояння та рівнодення.",
"classLockedItem": "This item is only available to a specific class. Change your class under the User icon > Settings > Character Build!",
- "tierLockedItem": "This item is only available once you've purchased the previous items in sequence. Keep working your way up!",
+ "tierLockedItem": "Цей товар доступний лише після того, як ви купите попередні товари з послідовності. Продовжуйте працювати!",
"sortByType": "Тип",
"sortByPrice": "Ціна",
"sortByCon": "ВИТ",
@@ -79,300 +79,300 @@
"weaponHealer6Text": "Золотий скіпетр",
"weaponHealer6Notes": "Заспокоює біль тих, хто дивиться на нього. Збільшує Інтеллект на <%= int %>.",
"weaponSpecial0Text": "Клинок чорних душ",
- "weaponSpecial0Notes": "Feasts upon foes' life essence to power its wicked strokes. Increases Strength by <%= str %>.",
+ "weaponSpecial0Notes": "Поїдає життєву силу ворогів, щоб посилити свої злі удари. Збільшує силу на <%= str %>.",
"weaponSpecial1Text": "Кришталевий клинок",
- "weaponSpecial1Notes": "Its glittering facets tell the tale of a hero. Increases all Stats by <%= attrs %>.",
+ "weaponSpecial1Notes": "Його блискучі грані розповідають про героя. Збільшує всі характеристики на <%= attrs %>.",
"weaponSpecial2Text": "Патериця дракона Стефана Вебера",
"weaponSpecial2Notes": "Відчуйте могутність сили дракона! Збільшує силу та спритність на <%= attrs %>.",
"weaponSpecial3Text": "Моргенштерн неперевної послідовності",
- "weaponSpecial3Notes": "Meetings, monsters, malaise: managed! Mash! Increases Strength, Intelligence, and Constitution by <%= attrs %> each.",
+ "weaponSpecial3Notes": "Із зустрічами, монстрами, нездужанням - покінчено! Стерто в пил! Збільшує силу, інтелект та витривалість на <%= attrs %>.",
"weaponSpecialCriticalText": "Убивчий молот Баґо-руба",
- "weaponSpecialCriticalNotes": "This champion slew a critical GitHub foe where many warriors fell. Fashioned from the bones of Bug, this hammer deals a mighty critical hit. Increases Strength and Perception by <%= attrs %> each.",
+ "weaponSpecialCriticalNotes": "Цей чемпіон убив критичного ворога GitHub, де полягло багато воїнів. Цей молот, виготовлений із кісток Жука, завдає потужного критичного удару. Збільшує силу та спритність на <%= attrs %>.",
"weaponSpecialTakeThisText": "Візьміть Цей Меч",
- "weaponSpecialTakeThisNotes": "This sword was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
- "weaponSpecialTridentOfCrashingTidesText": "Trident of Crashing Tides",
- "weaponSpecialTridentOfCrashingTidesNotes": "Gives you the ability to command fish, and also deliver some mighty stabs to your tasks. Increases Intelligence by <%= int %>.",
- "weaponSpecialTaskwoodsLanternText": "Taskwoods Lantern",
- "weaponSpecialTaskwoodsLanternNotes": "Given at the dawn of time to the guardian ghost of the Taskwood Orchards, this lantern can illuminate the deepest darkness and weave powerful spells. Increases Perception and Intelligence by <%= attrs %> each.",
+ "weaponSpecialTakeThisNotes": "Цей меч було отримано за участь у випробуванні, спонсорованому кампанією Take This. Щиро вітаємо! Збільшує всі характеристики на <%= attrs %>.",
+ "weaponSpecialTridentOfCrashingTidesText": "Тризуб руйнівних приливів",
+ "weaponSpecialTridentOfCrashingTidesNotes": "Дає вам можливість керувати рибами, а також наносити кілька могутніх ударів під час ваших завдань. Збільшує інтелект на <%= int %>.",
+ "weaponSpecialTaskwoodsLanternText": "",
+ "weaponSpecialTaskwoodsLanternNotes": "",
"weaponSpecialBardInstrumentText": "Лютня Барда",
- "weaponSpecialBardInstrumentNotes": "Strum a merry tune on this magical lute! Increases Intelligence and Perception by <%= attrs %> each.",
+ "weaponSpecialBardInstrumentNotes": "",
"weaponSpecialLunarScytheText": "Місячна коса",
"weaponSpecialLunarScytheNotes": "Регулярно заточуйте цю косу, інакше її сила зменшиться. Збільшує силу та спритність на <%= attrs %>.",
"weaponSpecialMammothRiderSpearText": "Спис Наїздника Мамонта",
- "weaponSpecialMammothRiderSpearNotes": "This rose quartz-tipped spear will imbue you with ancient spell-casting power. Increases Intelligence by <%= int %>.",
+ "weaponSpecialMammothRiderSpearNotes": "",
"weaponSpecialPageBannerText": "Стяг пажа",
"weaponSpecialPageBannerNotes": "Високо розмахуйте своїм стягом, щоб вселяти впевненість! Збільшує силу на <%= str %>.",
- "weaponSpecialRoguishRainbowMessageText": "Roguish Rainbow Message",
- "weaponSpecialRoguishRainbowMessageNotes": "This sparkly envelope contains messages of encouragement from Habiticans, and a touch of magic to help speed your deliveries! Increases Perception by <%= per %>.",
+ "weaponSpecialRoguishRainbowMessageText": "",
+ "weaponSpecialRoguishRainbowMessageNotes": "",
"weaponSpecialSkeletonKeyText": "Ключ скелета",
- "weaponSpecialSkeletonKeyNotes": "All the best Sneakthieves carry a key that can open any lock! Increases Constitution by <%= con %>.",
- "weaponSpecialNomadsScimitarText": "Nomad's Scimitar",
- "weaponSpecialNomadsScimitarNotes": "The curved blade of this Scimitar is perfect for attacking Tasks from the back of a mount! Increases Intelligence by <%= int %>.",
- "weaponSpecialFencingFoilText": "Fencing Foil",
- "weaponSpecialFencingFoilNotes": "Should anyone dare to impugn your honor, you'll be ready with this fine foil! Increases Strength by <%= str %>.",
+ "weaponSpecialSkeletonKeyNotes": "",
+ "weaponSpecialNomadsScimitarText": "",
+ "weaponSpecialNomadsScimitarNotes": "",
+ "weaponSpecialFencingFoilText": "",
+ "weaponSpecialFencingFoilNotes": "",
"weaponSpecialTachiText": "Тачі (японський меч)",
"weaponSpecialTachiNotes": "Цей легкий і вигнутий меч поріже Ваші завдання на шматочки! Збільшує силу на <%= str %>.",
"weaponSpecialAetherCrystalsText": "Кристали ефіру",
- "weaponSpecialAetherCrystalsNotes": "These bracers and crystals once belonged to the Lost Masterclasser herself. Increases all Stats by <%= attrs %>.",
+ "weaponSpecialAetherCrystalsNotes": "",
"weaponSpecialYetiText": "Спис приборкувача Єті",
- "weaponSpecialYetiNotes": "This spear allows its user to command any yeti. Increases Strength by <%= str %>. Limited Edition 2013-2014 Winter Gear.",
+ "weaponSpecialYetiNotes": "",
"weaponSpecialSkiText": "Палка лижника-вбивці",
- "weaponSpecialSkiNotes": "A weapon capable of destroying hordes of enemies! It also helps the user make very nice parallel turns. Increases Strength by <%= str %>. Limited Edition 2013-2014 Winter Gear.",
+ "weaponSpecialSkiNotes": "",
"weaponSpecialCandycaneText": "Карамельна патериця",
- "weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
+ "weaponSpecialCandycaneNotes": "",
"weaponSpecialSnowflakeText": "Паличка \"Сніжинка\"",
- "weaponSpecialSnowflakeNotes": "This wand sparkles with unlimited healing power. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.",
+ "weaponSpecialSnowflakeNotes": "",
"weaponSpecialSpringRogueText": "Бойові кігті",
- "weaponSpecialSpringRogueNotes": "Great for scaling tall buildings, and also for shredding carpets. Increases Strength by <%= str %>. Limited Edition 2014 Spring Gear.",
+ "weaponSpecialSpringRogueNotes": "",
"weaponSpecialSpringWarriorText": "Морквяний меч",
- "weaponSpecialSpringWarriorNotes": "This mighty sword can slice foes with ease! It also makes a delicious mid-battle snack. Increases Strength by <%= str %>. Limited Edition 2014 Spring Gear.",
+ "weaponSpecialSpringWarriorNotes": "",
"weaponSpecialSpringMageText": "Сирна патериця",
- "weaponSpecialSpringMageNotes": "Only the most powerful rodents can brave their hunger to wield this potent staff. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2014 Spring Gear.",
+ "weaponSpecialSpringMageNotes": "",
"weaponSpecialSpringHealerText": "Улюблена кісточка",
- "weaponSpecialSpringHealerNotes": "FETCH! Increases Intelligence by <%= int %>. Limited Edition 2014 Spring Gear.",
+ "weaponSpecialSpringHealerNotes": "",
"weaponSpecialSummerRogueText": "Піратське Мачете",
- "weaponSpecialSummerRogueNotes": "Avast! You'll make those Dailies walk the plank! Increases Strength by <%= str %>. Limited Edition 2014 Summer Gear.",
+ "weaponSpecialSummerRogueNotes": "",
"weaponSpecialSummerWarriorText": "Ніж Мореплавця",
"weaponSpecialSummerWarriorNotes": "Жодне завдання не посміє тягатися з цим зазубреним ножем! Збільшує силу на <%= str %>. Лімітований випуск літа 2014.",
"weaponSpecialSummerMageText": "Ловець Водоростей",
- "weaponSpecialSummerMageNotes": "This trident is used to spear seaweed effectively, for extra-productive kelp harvesting! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2014 Summer Gear.",
+ "weaponSpecialSummerMageNotes": "",
"weaponSpecialSummerHealerText": "Жезл Мілководдя",
- "weaponSpecialSummerHealerNotes": "This wand, made of aquamarine and live coral, is very attractive to schools of fish. Increases Intelligence by <%= int %>. Limited Edition 2014 Summer Gear.",
- "weaponSpecialFallRogueText": "Silver Stake",
- "weaponSpecialFallRogueNotes": "Dispatches undead. Also grants a bonus against werewolves, because you can never be too careful. Increases Strength by <%= str %>. Limited Edition 2014 Autumn Gear.",
- "weaponSpecialFallWarriorText": "Grabby Claw of Science",
- "weaponSpecialFallWarriorNotes": "This grabby claw is at the very cutting edge of technology. Increases Strength by <%= str %>. Limited Edition 2014 Autumn Gear.",
- "weaponSpecialFallMageText": "Magic Broom",
- "weaponSpecialFallMageNotes": "This enchanted broom flies faster than a dragon! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2014 Autumn Gear.",
- "weaponSpecialFallHealerText": "Scarab Wand",
- "weaponSpecialFallHealerNotes": "The scarab on this wand protects and heals its wielder. Increases Intelligence by <%= int %>. Limited Edition 2014 Autumn Gear.",
- "weaponSpecialWinter2015RogueText": "Ice Spike",
- "weaponSpecialWinter2015RogueNotes": "You truly, definitely, absolutely just picked these up off of the ground. Increases Strength by <%= str %>. Limited Edition 2014-2015 Winter Gear.",
+ "weaponSpecialSummerHealerNotes": "",
+ "weaponSpecialFallRogueText": "",
+ "weaponSpecialFallRogueNotes": "",
+ "weaponSpecialFallWarriorText": "",
+ "weaponSpecialFallWarriorNotes": "",
+ "weaponSpecialFallMageText": "Магічний віник",
+ "weaponSpecialFallMageNotes": "",
+ "weaponSpecialFallHealerText": "",
+ "weaponSpecialFallHealerNotes": "",
+ "weaponSpecialWinter2015RogueText": "",
+ "weaponSpecialWinter2015RogueNotes": "",
"weaponSpecialWinter2015WarriorText": "Гумко-Меч",
- "weaponSpecialWinter2015WarriorNotes": "This delicious sword probably attracts monsters... but you're up for the challenge! Increases Strength by <%= str %>. Limited Edition 2014-2015 Winter Gear.",
- "weaponSpecialWinter2015MageText": "Winter-lit Staff",
- "weaponSpecialWinter2015MageNotes": "The light of this crystal staff fills hearts with cheer. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2014-2015 Winter Gear.",
- "weaponSpecialWinter2015HealerText": "Soothing Scepter",
- "weaponSpecialWinter2015HealerNotes": "This scepter warms sore muscles and soothes away stress. Increases Intelligence by <%= int %>. Limited Edition 2014-2015 Winter Gear.",
- "weaponSpecialSpring2015RogueText": "Exploding Squeak",
- "weaponSpecialSpring2015RogueNotes": "Don't let the sound fool you - these explosives pack a punch. Increases Strength by <%= str %>. Limited Edition 2015 Spring Gear.",
- "weaponSpecialSpring2015WarriorText": "Bone Club",
- "weaponSpecialSpring2015WarriorNotes": "It is a real bone club for real fierce doggies and is definitely not a chew toy that the Seasonal Sorceress gave you because who's a good doggy? Whoooo's a good doggy?? It's you!!! You're a good doggy!!! Increases Strength by <%= str %>. Limited Edition 2015 Spring Gear.",
- "weaponSpecialSpring2015MageText": "Magician's Wand",
- "weaponSpecialSpring2015MageNotes": "Conjure up a carrot for yourself with this fancy wand. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015 Spring Gear.",
- "weaponSpecialSpring2015HealerText": "Cat Rattle",
- "weaponSpecialSpring2015HealerNotes": "When you wave it, it makes a fascinating clickety noise that would keep ANYONE entertained for hours. Increases Intelligence by <%= int %>. Limited Edition 2015 Spring Gear.",
- "weaponSpecialSummer2015RogueText": "Firing Coral",
- "weaponSpecialSummer2015RogueNotes": "This relative of fire coral has the ability to propel its venom through the water. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.",
- "weaponSpecialSummer2015WarriorText": "Sun Swordfish",
- "weaponSpecialSummer2015WarriorNotes": "The Sun Swordfish is a fearsome weapon, provided that it can be induced to stop wriggling. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.",
- "weaponSpecialSummer2015MageText": "Soothsayer Staff",
- "weaponSpecialSummer2015MageNotes": "Hidden power glimmers in the jewels of this staff. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015 Summer Gear.",
- "weaponSpecialSummer2015HealerText": "Wand of the Waves",
- "weaponSpecialSummer2015HealerNotes": "Cures seasickness and sea sickness! Increases Intelligence by <%= int %>. Limited Edition 2015 Summer Gear.",
- "weaponSpecialFall2015RogueText": "Bat-tle Ax",
+ "weaponSpecialWinter2015WarriorNotes": "",
+ "weaponSpecialWinter2015MageText": "",
+ "weaponSpecialWinter2015MageNotes": "",
+ "weaponSpecialWinter2015HealerText": "",
+ "weaponSpecialWinter2015HealerNotes": "",
+ "weaponSpecialSpring2015RogueText": "",
+ "weaponSpecialSpring2015RogueNotes": "",
+ "weaponSpecialSpring2015WarriorText": "",
+ "weaponSpecialSpring2015WarriorNotes": "",
+ "weaponSpecialSpring2015MageText": "",
+ "weaponSpecialSpring2015MageNotes": "",
+ "weaponSpecialSpring2015HealerText": "",
+ "weaponSpecialSpring2015HealerNotes": "",
+ "weaponSpecialSummer2015RogueText": "",
+ "weaponSpecialSummer2015RogueNotes": "",
+ "weaponSpecialSummer2015WarriorText": "",
+ "weaponSpecialSummer2015WarriorNotes": "",
+ "weaponSpecialSummer2015MageText": "",
+ "weaponSpecialSummer2015MageNotes": "",
+ "weaponSpecialSummer2015HealerText": "",
+ "weaponSpecialSummer2015HealerNotes": "",
+ "weaponSpecialFall2015RogueText": "",
"weaponSpecialFall2015RogueNotes": "Боягузливі завдання тремтять при виді цієї сокири!. Збільшує силу на <%= str %>. Лімітований випуск осені 2015.",
- "weaponSpecialFall2015WarriorText": "Wooden Plank",
- "weaponSpecialFall2015WarriorNotes": "Great for elevating things in cornfields and/or smacking tasks. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.",
- "weaponSpecialFall2015MageText": "Enchanted Thread",
- "weaponSpecialFall2015MageNotes": "A powerful Stitch Witch can control this enchanted thread without even touching it! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015 Autumn Gear.",
- "weaponSpecialFall2015HealerText": "Swamp-Slime Potion",
- "weaponSpecialFall2015HealerNotes": "Brewed to perfection! Now you just have to convince yourself to drink it. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.",
- "weaponSpecialWinter2016RogueText": "Cocoa Mug",
- "weaponSpecialWinter2016RogueNotes": "Warming drink, or boiling projectile? You decide... Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.",
- "weaponSpecialWinter2016WarriorText": "Sturdy Shovel",
- "weaponSpecialWinter2016WarriorNotes": "Shovel overdue tasks out of the way! Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.",
- "weaponSpecialWinter2016MageText": "Sorcerous Snowboard",
- "weaponSpecialWinter2016MageNotes": "Your moves are so sick, they must be magic! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.",
- "weaponSpecialWinter2016HealerText": "Confetti Cannon",
- "weaponSpecialWinter2016HealerNotes": "WHEEEEEEEEEE!!!!!!! HAPPY WINTER WONDERLAND!!!!!!!! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.",
- "weaponSpecialSpring2016RogueText": "Fire Bolas",
- "weaponSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.",
- "weaponSpecialSpring2016WarriorText": "Cheese Mallet",
- "weaponSpecialSpring2016WarriorNotes": "No one has as many friends as the mouse with tender cheeses. Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.",
- "weaponSpecialSpring2016MageText": "Staff of Bells",
- "weaponSpecialSpring2016MageNotes": "Abra-cat-abra! So dazzling, you might mesmerize yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.",
- "weaponSpecialSpring2016HealerText": "Spring Flower Wand",
- "weaponSpecialSpring2016HealerNotes": "With a wave and a wink, you bring the fields and forests into bloom! Or bop troublesome mice on the head. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.",
- "weaponSpecialSummer2016RogueText": "Electric Rod",
- "weaponSpecialSummer2016RogueNotes": "Anyone who battles you is in for a shocking surprise... Increases Strength by <%= str %>. Limited Edition 2016 Summer Gear.",
- "weaponSpecialSummer2016WarriorText": "Hooked Sword",
- "weaponSpecialSummer2016WarriorNotes": "Bite those tough tasks with this hooked sword! Increases Strength by <%= str %>. Limited Edition 2016 Summer Gear.",
- "weaponSpecialSummer2016MageText": "Seafoam Staff",
- "weaponSpecialSummer2016MageNotes": "All the power of the seas filters through this staff. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Summer Gear.",
- "weaponSpecialSummer2016HealerText": "Healing Trident",
- "weaponSpecialSummer2016HealerNotes": "One spike harms, the other heals. Increases Intelligence by <%= int %>. Limited Edition 2016 Summer Gear.",
- "weaponSpecialFall2016RogueText": "Spiderbite Dagger",
- "weaponSpecialFall2016RogueNotes": "Feel the sting of the spider's bite! Increases Strength by <%= str %>. Limited Edition 2016 Autumn Gear.",
- "weaponSpecialFall2016WarriorText": "Attacking Roots",
- "weaponSpecialFall2016WarriorNotes": "Attack your tasks with these twisting roots! Increases Strength by <%= str %>. Limited Edition 2016 Autumn Gear.",
- "weaponSpecialFall2016MageText": "Ominous Orb",
- "weaponSpecialFall2016MageNotes": "Don't ask this orb to tell your future... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Autumn Gear.",
- "weaponSpecialFall2016HealerText": "Venomous Serpent",
- "weaponSpecialFall2016HealerNotes": "One bite harms, and another bite heals. Increases Intelligence by <%= int %>. Limited Edition 2016 Autumn Gear.",
- "weaponSpecialWinter2017RogueText": "Ice Axe",
- "weaponSpecialWinter2017RogueNotes": "This axe is great for attack, defense, and ice-climbing! Increases Strength by <%= str %>. Limited Edition 2016-2017 Winter Gear.",
- "weaponSpecialWinter2017WarriorText": "Stick of Might",
- "weaponSpecialWinter2017WarriorNotes": "Conquer your goals by whacking them with this mighty stick! Increases Strength by <%= str %>. Limited Edition 2016-2017 Winter Gear.",
- "weaponSpecialWinter2017MageText": "Winter Wolf Crystal Staff",
- "weaponSpecialWinter2017MageNotes": "The glowing blue crystal set in the end of this staff is called the Winter Wolf's Eye! It channels magic from snow and ice. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016-2017 Winter Gear.",
- "weaponSpecialWinter2017HealerText": "Sugar-Spun Wand",
- "weaponSpecialWinter2017HealerNotes": "This wand can reach into your dreams and bring you visions of dancing sugarplums. Increases Intelligence by <%= int %>. Limited Edition 2016-2017 Winter Gear.",
- "weaponSpecialSpring2017RogueText": "Karrotana",
- "weaponSpecialSpring2017RogueNotes": "These blades will make quick work of tasks, but also are handy for slicing vegetables! Yum! Increases Strength by <%= str %>. Limited Edition 2017 Spring Gear.",
- "weaponSpecialSpring2017WarriorText": "Feathery Whip",
- "weaponSpecialSpring2017WarriorNotes": "This mighty whip will tame the unruliest task. But.. It's also… So FUN AND DISTRACTING!! Increases Strength by <%= str %>. Limited Edition 2017 Spring Gear.",
- "weaponSpecialSpring2017MageText": "Magic Fetching Stick",
- "weaponSpecialSpring2017MageNotes": "When you're not crafting spells with it, you can throw it and then bring it back! What fun!! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017 Spring Gear.",
- "weaponSpecialSpring2017HealerText": "Egg Wand",
- "weaponSpecialSpring2017HealerNotes": "The true magic of this wand is the secret of new life inside the colorful shell. Increases Intelligence by <%= int %>. Limited Edition 2017 Spring Gear.",
- "weaponSpecialSummer2017RogueText": "Sea Dragon Fins",
- "weaponSpecialSummer2017RogueNotes": "The edges of these fins are razor-sharp. Increases Strength by <%= str %>. Limited Edition 2017 Summer Gear.",
+ "weaponSpecialFall2015WarriorText": "",
+ "weaponSpecialFall2015WarriorNotes": "",
+ "weaponSpecialFall2015MageText": "",
+ "weaponSpecialFall2015MageNotes": "",
+ "weaponSpecialFall2015HealerText": "",
+ "weaponSpecialFall2015HealerNotes": "",
+ "weaponSpecialWinter2016RogueText": "",
+ "weaponSpecialWinter2016RogueNotes": "",
+ "weaponSpecialWinter2016WarriorText": "",
+ "weaponSpecialWinter2016WarriorNotes": "",
+ "weaponSpecialWinter2016MageText": "",
+ "weaponSpecialWinter2016MageNotes": "",
+ "weaponSpecialWinter2016HealerText": "",
+ "weaponSpecialWinter2016HealerNotes": "",
+ "weaponSpecialSpring2016RogueText": "",
+ "weaponSpecialSpring2016RogueNotes": "",
+ "weaponSpecialSpring2016WarriorText": "",
+ "weaponSpecialSpring2016WarriorNotes": "",
+ "weaponSpecialSpring2016MageText": "",
+ "weaponSpecialSpring2016MageNotes": "",
+ "weaponSpecialSpring2016HealerText": "",
+ "weaponSpecialSpring2016HealerNotes": "",
+ "weaponSpecialSummer2016RogueText": "",
+ "weaponSpecialSummer2016RogueNotes": "",
+ "weaponSpecialSummer2016WarriorText": "",
+ "weaponSpecialSummer2016WarriorNotes": "",
+ "weaponSpecialSummer2016MageText": "",
+ "weaponSpecialSummer2016MageNotes": "",
+ "weaponSpecialSummer2016HealerText": "",
+ "weaponSpecialSummer2016HealerNotes": "",
+ "weaponSpecialFall2016RogueText": "",
+ "weaponSpecialFall2016RogueNotes": "",
+ "weaponSpecialFall2016WarriorText": "",
+ "weaponSpecialFall2016WarriorNotes": "",
+ "weaponSpecialFall2016MageText": "",
+ "weaponSpecialFall2016MageNotes": "",
+ "weaponSpecialFall2016HealerText": "",
+ "weaponSpecialFall2016HealerNotes": "",
+ "weaponSpecialWinter2017RogueText": "",
+ "weaponSpecialWinter2017RogueNotes": "",
+ "weaponSpecialWinter2017WarriorText": "",
+ "weaponSpecialWinter2017WarriorNotes": "",
+ "weaponSpecialWinter2017MageText": "",
+ "weaponSpecialWinter2017MageNotes": "",
+ "weaponSpecialWinter2017HealerText": "",
+ "weaponSpecialWinter2017HealerNotes": "",
+ "weaponSpecialSpring2017RogueText": "",
+ "weaponSpecialSpring2017RogueNotes": "",
+ "weaponSpecialSpring2017WarriorText": "",
+ "weaponSpecialSpring2017WarriorNotes": "",
+ "weaponSpecialSpring2017MageText": "",
+ "weaponSpecialSpring2017MageNotes": "",
+ "weaponSpecialSpring2017HealerText": "",
+ "weaponSpecialSpring2017HealerNotes": "",
+ "weaponSpecialSummer2017RogueText": "",
+ "weaponSpecialSummer2017RogueNotes": "",
"weaponSpecialSummer2017WarriorText": "Найпотужніша пляжна парасолька",
- "weaponSpecialSummer2017WarriorNotes": "All fear it. Increases Strength by <%= str %>. Limited Edition 2017 Summer Gear.",
- "weaponSpecialSummer2017MageText": "Whirlpool Whips",
- "weaponSpecialSummer2017MageNotes": "Summon up magical whips of boiling water to smite your tasks! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017 Summer Gear.",
- "weaponSpecialSummer2017HealerText": "Pearl Wand",
- "weaponSpecialSummer2017HealerNotes": "A single touch from this pearl-tipped wand soothes away all wounds. Increases Intelligence by <%= int %>. Limited Edition 2017 Summer Gear.",
- "weaponSpecialFall2017RogueText": "Candied Apple Mace",
- "weaponSpecialFall2017RogueNotes": "Defeat your foes with sweetness! Increases Strength by <%= str %>. Limited Edition 2017 Autumn Gear.",
- "weaponSpecialFall2017WarriorText": "Candy Corn Lance",
+ "weaponSpecialSummer2017WarriorNotes": "",
+ "weaponSpecialSummer2017MageText": "",
+ "weaponSpecialSummer2017MageNotes": "",
+ "weaponSpecialSummer2017HealerText": "",
+ "weaponSpecialSummer2017HealerNotes": "",
+ "weaponSpecialFall2017RogueText": "",
+ "weaponSpecialFall2017RogueNotes": "",
+ "weaponSpecialFall2017WarriorText": "",
"weaponSpecialFall2017WarriorNotes": "Усі Ваші вороги затремтять, угледівши цей смачний на вигляд спис, незалежно від того, привиди вони, монстри чи невиконані завдання. Збільшує силу на <%= str %>. Лімітований випуск осені 2017.",
- "weaponSpecialFall2017MageText": "Spooky Staff",
- "weaponSpecialFall2017MageNotes": "The eyes of the glowing skull on this staff radiate magic and mystery. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
- "weaponSpecialFall2017HealerText": "Creepy Candelabra",
- "weaponSpecialFall2017HealerNotes": "This light dispels fear and lets others know you're here to help. Increases Intelligence by <%= int %>. Limited Edition 2017 Autumn Gear.",
- "weaponSpecialWinter2018RogueText": "Peppermint Hook",
- "weaponSpecialWinter2018RogueNotes": "Perfect for climbing walls or distracting your foes with sweet, sweet candy. Increases Strength by <%= str %>. Limited Edition 2017-2018 Winter Gear.",
- "weaponSpecialWinter2018WarriorText": "Holiday Bow Hammer",
- "weaponSpecialWinter2018WarriorNotes": "The sparkly appearance of this bright weapon will dazzle your enemies as you swing it! Increases Strength by <%= str %>. Limited Edition 2017-2018 Winter Gear.",
- "weaponSpecialWinter2018MageText": "Holiday Confetti",
- "weaponSpecialWinter2018MageNotes": "Magic--and glitter--is in the air! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
- "weaponSpecialWinter2018HealerText": "Mistletoe Wand",
- "weaponSpecialWinter2018HealerNotes": "This mistletoe ball is sure to enchant and delight passersby! Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.",
- "weaponSpecialSpring2018RogueText": "Buoyant Bullrush",
- "weaponSpecialSpring2018RogueNotes": "What might appear to be cute cattails are actually quite effective weapons in the right wings. Increases Strength by <%= str %>. Limited Edition 2018 Spring Gear.",
+ "weaponSpecialFall2017MageText": "",
+ "weaponSpecialFall2017MageNotes": "",
+ "weaponSpecialFall2017HealerText": "",
+ "weaponSpecialFall2017HealerNotes": "",
+ "weaponSpecialWinter2018RogueText": "",
+ "weaponSpecialWinter2018RogueNotes": "",
+ "weaponSpecialWinter2018WarriorText": "",
+ "weaponSpecialWinter2018WarriorNotes": "",
+ "weaponSpecialWinter2018MageText": "",
+ "weaponSpecialWinter2018MageNotes": "",
+ "weaponSpecialWinter2018HealerText": "",
+ "weaponSpecialWinter2018HealerNotes": "",
+ "weaponSpecialSpring2018RogueText": "",
+ "weaponSpecialSpring2018RogueNotes": "",
"weaponSpecialSpring2018WarriorText": "Сокира сяючого світанку",
- "weaponSpecialSpring2018WarriorNotes": "Made of bright gold, this axe is mighty enough to attack the reddest task! Increases Strength by <%= str %>. Limited Edition 2018 Spring Gear.",
- "weaponSpecialSpring2018MageText": "Tulip Stave",
- "weaponSpecialSpring2018MageNotes": "This magic flower never wilts! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
- "weaponSpecialSpring2018HealerText": "Garnet Rod",
- "weaponSpecialSpring2018HealerNotes": "The stones in this staff will focus your power when you cast healing spells! Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.",
- "weaponSpecialSummer2018RogueText": "Fishing Rod",
- "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.",
- "weaponSpecialSummer2018WarriorText": "Betta Fish Spear",
- "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.",
- "weaponSpecialSummer2018MageText": "Lionfish Fin Rays",
- "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.",
- "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident",
- "weaponSpecialSummer2018HealerNotes": "With a benevolent gesture, you command healing water to flow through your dominions in waves. Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.",
- "weaponSpecialFall2018RogueText": "Vial of Clarity",
- "weaponSpecialFall2018RogueNotes": "When you need to come back to your senses, when you need a little boost to make the right decision, take a deep breath and a sip. It'll be OK! Increases Strength by <%= str %>. Limited Edition 2018 Autumn Gear.",
+ "weaponSpecialSpring2018WarriorNotes": "",
+ "weaponSpecialSpring2018MageText": "",
+ "weaponSpecialSpring2018MageNotes": "",
+ "weaponSpecialSpring2018HealerText": "",
+ "weaponSpecialSpring2018HealerNotes": "",
+ "weaponSpecialSummer2018RogueText": "",
+ "weaponSpecialSummer2018RogueNotes": "",
+ "weaponSpecialSummer2018WarriorText": "",
+ "weaponSpecialSummer2018WarriorNotes": "",
+ "weaponSpecialSummer2018MageText": "",
+ "weaponSpecialSummer2018MageNotes": "",
+ "weaponSpecialSummer2018HealerText": "",
+ "weaponSpecialSummer2018HealerNotes": "",
+ "weaponSpecialFall2018RogueText": "",
+ "weaponSpecialFall2018RogueNotes": "",
"weaponSpecialFall2018WarriorText": "Батіг Міноса",
- "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": "Staff of Sweetness",
- "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.",
- "weaponSpecialFall2018HealerText": "Starving Staff",
- "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.",
- "weaponSpecialWinter2019RogueText": "Poinsettia Bouquet",
- "weaponSpecialWinter2019RogueNotes": "Use this festive bouquet to further camouflage yourself, or generously gift it to brighten a friend's day! Increases Strength by <%= str %>. Limited Edition 2018-2019 Winter Gear.",
- "weaponSpecialWinter2019WarriorText": "Snowflake Halberd",
- "weaponSpecialWinter2019WarriorNotes": "This snowflake was grown, ice crystal by ice crystal, into a diamond-hard blade! Increases Strength by <%= str %>. Limited Edition 2018-2019 Winter Gear.",
- "weaponSpecialWinter2019MageText": "Fiery Dragon Staff",
+ "weaponSpecialFall2018WarriorNotes": "",
+ "weaponSpecialFall2018MageText": "",
+ "weaponSpecialFall2018MageNotes": "",
+ "weaponSpecialFall2018HealerText": "",
+ "weaponSpecialFall2018HealerNotes": "",
+ "weaponSpecialWinter2019RogueText": "",
+ "weaponSpecialWinter2019RogueNotes": "",
+ "weaponSpecialWinter2019WarriorText": "",
+ "weaponSpecialWinter2019WarriorNotes": "",
+ "weaponSpecialWinter2019MageText": "",
"weaponSpecialWinter2019MageNotes": "Стережись! Цей вибухонебезпечний посох допоможе тобі розібратися з усіма бажаючими. Збільшує інтелект на <%= int %> і спритність на <%= per %>. Лімітований випуск зими 2018-2019.",
- "weaponSpecialWinter2019HealerText": "Wand of Winter",
- "weaponSpecialWinter2019HealerNotes": "Winter can be a time of rest and healing, and so this wand of winter magic can help to soothe the most grievous hurts. Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
- "weaponMystery201411Text": "Pitchfork of Feasting",
- "weaponMystery201411Notes": "Stab your enemies or dig in to your favorite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.",
- "weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth",
- "weaponMystery201502Notes": "For WINGS! For LOVE! For ALSO TRUTH! Confers no benefit. February 2015 Subscriber Item.",
- "weaponMystery201505Text": "Green Knight Lance",
- "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Confers no benefit. May 2015 Subscriber Item.",
- "weaponMystery201611Text": "Copious Cornucopia",
- "weaponMystery201611Notes": "All manner of delicious and wholesome foods spill forth from this horn. Enjoy the feast! Confers no benefit. November 2016 Subscriber Item.",
- "weaponMystery201708Text": "Lava Sword",
- "weaponMystery201708Notes": "The fiery glow of this sword will make quick work of even dark red Tasks! Confers no benefit. August 2017 Subscriber Item.",
- "weaponMystery201811Text": "Splendid Sorcerer's Staff",
- "weaponMystery201811Notes": "This magical stave is as powerful as it is elegant. Confers no benefit. November 2018 Subscriber Item.",
- "weaponMystery301404Text": "Steampunk Cane",
- "weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.",
- "weaponArmoireBasicCrossbowText": "Basic Crossbow",
- "weaponArmoireBasicCrossbowNotes": "This crossbow can pierce a task's armor from very far away! Increases Strength by <%= str %>, Perception by <%= per %>, and Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
- "weaponArmoireLunarSceptreText": "Soothing Lunar Sceptre",
- "weaponArmoireLunarSceptreNotes": "The healing power of this wand waxes and wanes. Increases Constitution by <%= con %> and Intelligence by <%= int %>. Enchanted Armoire: Soothing Lunar Set (Item 3 of 3).",
- "weaponArmoireRancherLassoText": "Rancher Lasso",
- "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).",
- "weaponArmoireMythmakerSwordText": "Mythmaker Sword",
- "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).",
- "weaponArmoireIronCrookText": "Iron Crook",
- "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).",
- "weaponArmoireGoldWingStaffText": "Gold Wing Staff",
- "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all Stats by <%= attrs %> each. Enchanted Armoire: Independent Item.",
- "weaponArmoireBatWandText": "Bat Wand",
- "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.",
- "weaponArmoireShepherdsCrookText": "Shepherd's Crook",
- "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).",
- "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff",
- "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).",
- "weaponArmoireBlueLongbowText": "Blue Longbow",
- "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by <%= per %>, Constitution by <%= con %>, and Strength by <%= str %>. Enchanted Armoire: Iron Archer Set (Item 3 of 3).",
- "weaponArmoireGlowingSpearText": "Glowing Spear",
- "weaponArmoireGlowingSpearNotes": "This spear hypnotizes wild tasks so you can attack them. Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.",
- "weaponArmoireBarristerGavelText": "Barrister Gavel",
- "weaponArmoireBarristerGavelNotes": "Order! Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Barrister Set (Item 3 of 3).",
- "weaponArmoireJesterBatonText": "Jester Baton",
- "weaponArmoireJesterBatonNotes": "With a wave of your baton and some witty repartee, even the most complicated situations become clear. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Jester Set (Item 3 of 3).",
- "weaponArmoireMiningPickaxText": "Mining Pickax",
- "weaponArmoireMiningPickaxNotes": "Mine the maximum amount of gold from your tasks! Increases Perception by <%= per %>. Enchanted Armoire: Miner Set (Item 3 of 3).",
- "weaponArmoireBasicLongbowText": "Basic Longbow",
- "weaponArmoireBasicLongbowNotes": "A serviceable hand-me-down bow. Increases Strength by <%= str %>. Enchanted Armoire: Basic Archer Set (Item 1 of 3).",
- "weaponArmoireHabiticanDiplomaText": "Habitican Diploma",
- "weaponArmoireHabiticanDiplomaNotes": "A certificate of significant achievement -- well done! Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 1 of 3).",
- "weaponArmoireSandySpadeText": "Sandy Spade",
- "weaponArmoireSandySpadeNotes": "A tool for digging, as well as flicking sand into the eyes of enemy monsters. Increases Strength by <%= str %>. Enchanted Armoire: Seaside Set (Item 1 of 3).",
- "weaponArmoireCannonText": "Cannon",
- "weaponArmoireCannonNotes": "Arr! Set your aim with determination. Increases Strength by <%= str %>. Enchanted Armoire: Cannoneer Set (Item 1 of 3).",
- "weaponArmoireVermilionArcherBowText": "Vermilion Archer Bow",
- "weaponArmoireVermilionArcherBowNotes": "Your arrow will fly like a shooting star from this brilliant red bow! Increases Strength by <%= str %>. Enchanted Armoire: Vermilion Archer Set (Item 1 of 3).",
- "weaponArmoireOgreClubText": "Ogre Club",
- "weaponArmoireOgreClubNotes": "This club was salvaged from an actual Ogre's lair. Increases Strength by <%= str %>. Enchanted Armoire: Ogre Outfit (Item 2 of 3).",
- "weaponArmoireWoodElfStaffText": "Wood Elf Staff",
- "weaponArmoireWoodElfStaffNotes": "Made from a fallen limb of an ancient tree, this staff will help you communicate with forest denizens great and small. Increases Intelligence by <%= int %>. Enchanted Armoire: Wood Elf Set (Item 3 of 3).",
- "weaponArmoireWandOfHeartsText": "Wand of Hearts",
- "weaponArmoireWandOfHeartsNotes": "This wand sparkles with a warm red light. It will also grant your heart wisdom. Increases Intelligence by <%= int %>. Enchanted Armoire: Queen of Hearts Set (Item 3 of 3).",
- "weaponArmoireForestFungusStaffText": "Forest Fungus Staff",
- "weaponArmoireForestFungusStaffNotes": "Use this gnarled staff to work mycological magic! Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.",
- "weaponArmoireFestivalFirecrackerText": "Festival Firecracker",
- "weaponArmoireFestivalFirecrackerNotes": "Enjoy this delightful sparkler responsibly. Increases Perception by <%= per %>. Enchanted Armoire: Festival Attire Set (Item 3 of 3).",
- "weaponArmoireMerchantsDisplayTrayText": "Merchant's Display Tray",
- "weaponArmoireMerchantsDisplayTrayNotes": "Use this lacquered tray to show the fine goods you're offering for sale. Increases Intelligence by <%= int %>. Enchanted Armoire: Merchant Set (Item 3 of 3).",
- "weaponArmoireBattleAxeText": "Ancient Axe",
- "weaponArmoireBattleAxeNotes": "This fine iron axe is well-suited to battling your fiercest foes or your most difficult tasks. Increases Intelligence by <%= int %> and Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
- "weaponArmoireHoofClippersText": "Hoof Clippers",
- "weaponArmoireHoofClippersNotes": "Trim the hooves of your hard-working mounts to help them stay healthy as they carry you to adventure! Increases Strength, Intelligence, and Constitution by <%= attrs %> each. Enchanted Armoire: Farrier Set (Item 1 of 3).",
- "weaponArmoireWeaversCombText": "Weaver's Comb",
- "weaponArmoireWeaversCombNotes": "Use this comb to pack your weft threads together to make a tightly woven fabric. Increases Perception by <%= per %> and Strength by <%= str %>. Enchanted Armoire: Weaver Set (Item 2 of 3).",
- "weaponArmoireLamplighterText": "Lamplighter",
+ "weaponSpecialWinter2019HealerText": "",
+ "weaponSpecialWinter2019HealerNotes": "",
+ "weaponMystery201411Text": "",
+ "weaponMystery201411Notes": "",
+ "weaponMystery201502Text": "",
+ "weaponMystery201502Notes": "",
+ "weaponMystery201505Text": "",
+ "weaponMystery201505Notes": "",
+ "weaponMystery201611Text": "",
+ "weaponMystery201611Notes": "",
+ "weaponMystery201708Text": "",
+ "weaponMystery201708Notes": "",
+ "weaponMystery201811Text": "",
+ "weaponMystery201811Notes": "",
+ "weaponMystery301404Text": "",
+ "weaponMystery301404Notes": "",
+ "weaponArmoireBasicCrossbowText": "",
+ "weaponArmoireBasicCrossbowNotes": "",
+ "weaponArmoireLunarSceptreText": "",
+ "weaponArmoireLunarSceptreNotes": "",
+ "weaponArmoireRancherLassoText": "",
+ "weaponArmoireRancherLassoNotes": "",
+ "weaponArmoireMythmakerSwordText": "",
+ "weaponArmoireMythmakerSwordNotes": "",
+ "weaponArmoireIronCrookText": "",
+ "weaponArmoireIronCrookNotes": "",
+ "weaponArmoireGoldWingStaffText": "",
+ "weaponArmoireGoldWingStaffNotes": "",
+ "weaponArmoireBatWandText": "",
+ "weaponArmoireBatWandNotes": "",
+ "weaponArmoireShepherdsCrookText": "",
+ "weaponArmoireShepherdsCrookNotes": "",
+ "weaponArmoireCrystalCrescentStaffText": "",
+ "weaponArmoireCrystalCrescentStaffNotes": "",
+ "weaponArmoireBlueLongbowText": "",
+ "weaponArmoireBlueLongbowNotes": "",
+ "weaponArmoireGlowingSpearText": "",
+ "weaponArmoireGlowingSpearNotes": "",
+ "weaponArmoireBarristerGavelText": "",
+ "weaponArmoireBarristerGavelNotes": "",
+ "weaponArmoireJesterBatonText": "",
+ "weaponArmoireJesterBatonNotes": "",
+ "weaponArmoireMiningPickaxText": "",
+ "weaponArmoireMiningPickaxNotes": "",
+ "weaponArmoireBasicLongbowText": "",
+ "weaponArmoireBasicLongbowNotes": "",
+ "weaponArmoireHabiticanDiplomaText": "",
+ "weaponArmoireHabiticanDiplomaNotes": "",
+ "weaponArmoireSandySpadeText": "",
+ "weaponArmoireSandySpadeNotes": "",
+ "weaponArmoireCannonText": "",
+ "weaponArmoireCannonNotes": "",
+ "weaponArmoireVermilionArcherBowText": "",
+ "weaponArmoireVermilionArcherBowNotes": "",
+ "weaponArmoireOgreClubText": "",
+ "weaponArmoireOgreClubNotes": "",
+ "weaponArmoireWoodElfStaffText": "",
+ "weaponArmoireWoodElfStaffNotes": "",
+ "weaponArmoireWandOfHeartsText": "",
+ "weaponArmoireWandOfHeartsNotes": "",
+ "weaponArmoireForestFungusStaffText": "",
+ "weaponArmoireForestFungusStaffNotes": "",
+ "weaponArmoireFestivalFirecrackerText": "",
+ "weaponArmoireFestivalFirecrackerNotes": "",
+ "weaponArmoireMerchantsDisplayTrayText": "",
+ "weaponArmoireMerchantsDisplayTrayNotes": "",
+ "weaponArmoireBattleAxeText": "",
+ "weaponArmoireBattleAxeNotes": "",
+ "weaponArmoireHoofClippersText": "",
+ "weaponArmoireHoofClippersNotes": "",
+ "weaponArmoireWeaversCombText": "",
+ "weaponArmoireWeaversCombNotes": "",
+ "weaponArmoireLamplighterText": "",
"weaponArmoireLamplighterNotes": "Ця довга жердина має на одному кінці гніт для освітлення ламп, а на іншому - гачок для їх гасіння. Збільшує Статуру на <%= con %> та Сприйняття на <%= на %>. Зачарована шафа: набір світильника (пункт 1 з 4).",
- "weaponArmoireCoachDriversWhipText": "Coach Driver's Whip",
- "weaponArmoireCoachDriversWhipNotes": "Your steeds know what they're doing, so this whip is just for show (and the neat snapping sound!). Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 3 of 3).",
- "weaponArmoireScepterOfDiamondsText": "Scepter of Diamonds",
- "weaponArmoireScepterOfDiamondsNotes": "This scepter shines with a warm red glow as it grants you increased willpower. Increases Strength by <%= str %>. Enchanted Armoire: King of Diamonds Set (Item 3 of 4).",
- "weaponArmoireFlutteryArmyText": "Fluttery Army",
- "weaponArmoireFlutteryArmyNotes": "This group of scrappy lepidopterans is ready to flap fiercely and cool down your reddest tasks! Increases Constitution, Intelligence, and Strength by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 3 of 4).",
- "weaponArmoireCobblersHammerText": "Cobbler's Hammer",
- "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).",
- "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe",
- "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).",
- "weaponArmoirePoisonedGobletText": "Poisoned Goblet",
- "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).",
- "weaponArmoireJeweledArcherBowText": "Jeweled Archer Bow",
- "weaponArmoireJeweledArcherBowNotes": "This bow of gold and gems will send your arrows to their targets at incredible speed. Increases Intelligence by <%= int %>. Enchanted Armoire: Jeweled Archer Set (Item 3 of 3).",
- "weaponArmoireNeedleOfBookbindingText": "Needle of Bookbinding",
- "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).",
- "weaponArmoireArcaneScrollText": "Arcane Scroll",
+ "weaponArmoireCoachDriversWhipText": "",
+ "weaponArmoireCoachDriversWhipNotes": "",
+ "weaponArmoireScepterOfDiamondsText": "",
+ "weaponArmoireScepterOfDiamondsNotes": "",
+ "weaponArmoireFlutteryArmyText": "",
+ "weaponArmoireFlutteryArmyNotes": "",
+ "weaponArmoireCobblersHammerText": "",
+ "weaponArmoireCobblersHammerNotes": "",
+ "weaponArmoireGlassblowersBlowpipeText": "",
+ "weaponArmoireGlassblowersBlowpipeNotes": "",
+ "weaponArmoirePoisonedGobletText": "",
+ "weaponArmoirePoisonedGobletNotes": "",
+ "weaponArmoireJeweledArcherBowText": "",
+ "weaponArmoireJeweledArcherBowNotes": "",
+ "weaponArmoireNeedleOfBookbindingText": "",
+ "weaponArmoireNeedleOfBookbindingNotes": "",
+ "weaponArmoireSpearOfSpadesText": "",
+ "weaponArmoireSpearOfSpadesNotes": "",
+ "weaponArmoireArcaneScrollText": "",
"weaponArmoireArcaneScrollNotes": "Цей древній список справ заповнений дивними символами та заклинаннями з забутого віку. Збільшує інтелект на <%= int %>. Зачарована шафа: набір писарів (пункт 3 із 3).",
"armor": "броня",
"armorCapitalized": "Броня",
@@ -381,1373 +381,1373 @@
"armorWarrior1Text": "Шкіряні обладунки",
"armorWarrior1Notes": "Куртка з міцної вивареної шкіри. Збільшує витривалість на <%= con %>.",
"armorWarrior2Text": "Кольчуга",
- "armorWarrior2Notes": "Armor of interlocked metal rings. Increases Constitution by <%= con %>.",
+ "armorWarrior2Notes": "",
"armorWarrior3Text": "Обладунки",
- "armorWarrior3Notes": "Suit of all-encasing steel, the pride of knights. Increases Constitution by <%= con %>.",
+ "armorWarrior3Notes": "",
"armorWarrior4Text": "Червона броня",
- "armorWarrior4Notes": "Heavy plate glowing with defensive enchantments. Increases Constitution by <%= con %>.",
+ "armorWarrior4Notes": "",
"armorWarrior5Text": "Золота броня",
- "armorWarrior5Notes": "Looks ceremonial, but no known blade can pierce it. Increases Constitution by <%= con %>.",
+ "armorWarrior5Notes": "",
"armorRogue1Text": "Змащена шкіра",
- "armorRogue1Notes": "Leather armor treated to reduce noise. Increases Perception by <%= per %>.",
+ "armorRogue1Notes": "",
"armorRogue2Text": "Чорна шкіра",
- "armorRogue2Notes": "Colored with dark dye to blend into shadows. Increases Perception by <%= per %>.",
+ "armorRogue2Notes": "",
"armorRogue3Text": "Маскувальний жилет",
- "armorRogue3Notes": "Equally discreet in dungeon or wilderness. Increases Perception by <%= per %>.",
+ "armorRogue3Notes": "",
"armorRogue4Text": "Броня тіні",
- "armorRogue4Notes": "Wraps the wearer in a veil of twilight. Increases Perception by <%= per %>.",
+ "armorRogue4Notes": "",
"armorRogue5Text": "Броня пітьми",
- "armorRogue5Notes": "Allows stealth in the open in broad daylight. Increases Perception by <%= per %>.",
+ "armorRogue5Notes": "",
"armorWizard1Text": "Чародійська мантія",
- "armorWizard1Notes": "Hedge-mage's outfit. Increases Intelligence by <%= int %>.",
+ "armorWizard1Notes": "",
"armorWizard2Text": "Мантія чаклуна",
- "armorWizard2Notes": "Clothes for a wandering wonder-worker. Increases Intelligence by <%= int %>.",
+ "armorWizard2Notes": "",
"armorWizard3Text": "Загадкова мантія",
- "armorWizard3Notes": "Denotes initiation into elite secrets. Increases Intelligence by <%= int %>.",
+ "armorWizard3Notes": "",
"armorWizard4Text": "Мантія Архічародія",
- "armorWizard4Notes": "Spirits and elementals bow before it. Increases Intelligence by <%= int %>.",
+ "armorWizard4Notes": "",
"armorWizard5Text": "Мантія королівського мага",
- "armorWizard5Notes": "Symbol of the power behind the throne. Increases Intelligence by <%= int %>.",
+ "armorWizard5Notes": "",
"armorHealer1Text": "Мантія аколіта",
- "armorHealer1Notes": "Garment showing humility and purpose. Increases Constitution by <%= con %>.",
+ "armorHealer1Notes": "",
"armorHealer2Text": "Мантія медика",
- "armorHealer2Notes": "Worn by those dedicated to tending the wounded in battle. Increases Constitution by <%= con %>.",
+ "armorHealer2Notes": "",
"armorHealer3Text": "Мантія оборонця",
- "armorHealer3Notes": "Turns the healer's own magics inward to fend off harm. Increases Constitution by <%= con %>.",
+ "armorHealer3Notes": "",
"armorHealer4Text": "Мантія лікаря",
- "armorHealer4Notes": "Projects authority and dissipates curses. Increases Constitution by <%= con %>.",
+ "armorHealer4Notes": "",
"armorHealer5Text": "Королівська мантія",
- "armorHealer5Notes": "Attire of those who have saved the lives of kings. Increases Constitution by <%= con %>.",
+ "armorHealer5Notes": "",
"armorSpecial0Text": "Броня сутінок",
- "armorSpecial0Notes": "Screams when struck, for it feels pain in its wearer's place. Increases Constitution by <%= con %>.",
+ "armorSpecial0Notes": "",
"armorSpecial1Text": "Кришталева броня",
- "armorSpecial1Notes": "Its tireless power inures the wearer to mundane discomfort. Increases all Stats by <%= attrs %>.",
+ "armorSpecial1Notes": "",
"armorSpecial2Text": "Благородна туніка Джона Чаларда",
"armorSpecial2Notes": "Робить Вас особливо пухнастим! Збільшує витривалість та інтелект на <%= attrs %> кожен.",
- "armorSpecialTakeThisText": "Take This Armor",
- "armorSpecialTakeThisNotes": "This armor was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
- "armorSpecialFinnedOceanicArmorText": "Finned Oceanic Armor",
- "armorSpecialFinnedOceanicArmorNotes": "Although delicate, this armor makes your skin as harmful to the touch as a fire coral. Increases Strength by <%= str %>.",
- "armorSpecialPyromancersRobesText": "Pyromancer's Robes",
- "armorSpecialPyromancersRobesNotes": "These elegant robes bestow each strike and spell with a burst of ethereal fire. Increases Constitution by <%= con %>.",
- "armorSpecialBardRobesText": "Bardic Robes",
- "armorSpecialBardRobesNotes": "These colorful robes may be conspicuous, but you can sing your way out of any situation. Increases Perception by <%= per %>.",
+ "armorSpecialTakeThisText": "",
+ "armorSpecialTakeThisNotes": "",
+ "armorSpecialFinnedOceanicArmorText": "",
+ "armorSpecialFinnedOceanicArmorNotes": "",
+ "armorSpecialPyromancersRobesText": "",
+ "armorSpecialPyromancersRobesNotes": "",
+ "armorSpecialBardRobesText": "",
+ "armorSpecialBardRobesNotes": "",
"armorSpecialLunarWarriorArmorText": "Обладунки місячного воїна",
"armorSpecialLunarWarriorArmorNotes": "Ця броня викована з місячного каменю та магічної сталі. Збільшує силу та стійкість на <%= attrs %>.",
- "armorSpecialMammothRiderArmorText": "Mammoth Rider Armor",
- "armorSpecialMammothRiderArmorNotes": "This suit of fur and leather includes a snazzy cape studded with rose quartz gems. It will protect you from bitter winds as you adventure in the coldest climes. Increases Constitution by <%= con %>.",
+ "armorSpecialMammothRiderArmorText": "",
+ "armorSpecialMammothRiderArmorNotes": "",
"armorSpecialPageArmorText": "Page Armor",
- "armorSpecialPageArmorNotes": "Carry everything you need in your perfect pack! Increases Constitution by <%= con %>.",
- "armorSpecialRoguishRainbowMessengerRobesText": "Roguish Rainbow Messenger Robes",
- "armorSpecialRoguishRainbowMessengerRobesNotes": "These vividly striped robes will allow you to fly through gale-force winds smoothly and safely. Increases Strength by <%= str %>.",
- "armorSpecialSneakthiefRobesText": "Sneakthief Robes",
- "armorSpecialSneakthiefRobesNotes": "These robes will help hide you in the dead of night, but will also allow freedom of movement as you silently sneak about! Increases Intelligence by <%= int %>.",
- "armorSpecialSnowSovereignRobesText": "Snow Sovereign Robes",
- "armorSpecialSnowSovereignRobesNotes": "These robes are elegant enough for court, yet warm enough for the coldest winter day. Increases Perception by <%= per %>.",
- "armorSpecialNomadsCuirassText": "Nomad's Cuirass",
- "armorSpecialNomadsCuirassNotes": "This armor features a strong chest-plate to protect your heart! Increases Constitution by <%= con %>.",
- "armorSpecialDandySuitText": "Dandy Suit",
- "armorSpecialDandySuitNotes": "You're undeniably dressed for success! Increases Perception by <%= per %>.",
- "armorSpecialSamuraiArmorText": "Samurai Armor",
- "armorSpecialSamuraiArmorNotes": "This strong, scaled armor is held together by elegant silk cords. Increases Perception by <%= per %>.",
+ "armorSpecialPageArmorNotes": "",
+ "armorSpecialRoguishRainbowMessengerRobesText": "",
+ "armorSpecialRoguishRainbowMessengerRobesNotes": "",
+ "armorSpecialSneakthiefRobesText": "",
+ "armorSpecialSneakthiefRobesNotes": "",
+ "armorSpecialSnowSovereignRobesText": "",
+ "armorSpecialSnowSovereignRobesNotes": "",
+ "armorSpecialNomadsCuirassText": "",
+ "armorSpecialNomadsCuirassNotes": "",
+ "armorSpecialDandySuitText": "",
+ "armorSpecialDandySuitNotes": "",
+ "armorSpecialSamuraiArmorText": "",
+ "armorSpecialSamuraiArmorNotes": "",
"armorSpecialTurkeyArmorBaseText": "Turkey Armor",
- "armorSpecialTurkeyArmorBaseNotes": "Keep your drumsticks warm and cozy in this feathery armor! Confers no benefit.",
- "armorSpecialTurkeyArmorGildedText": "Gilded Turkey Armor",
- "armorSpecialTurkeyArmorGildedNotes": "Strut your stuff in this seasonally shiny armor! Confers no benefit.",
+ "armorSpecialTurkeyArmorBaseNotes": "",
+ "armorSpecialTurkeyArmorGildedText": "",
+ "armorSpecialTurkeyArmorGildedNotes": "",
"armorSpecialYetiText": "Мантія приборкувача Єті",
- "armorSpecialYetiNotes": "Fuzzy and fierce. Increases Constitution by <%= con %>. Limited Edition 2013-2014 Winter Gear.",
+ "armorSpecialYetiNotes": "",
"armorSpecialSkiText": "Куртка лижника-вбивці",
- "armorSpecialSkiNotes": "Full of secret daggers and ski trail maps. Increases Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
+ "armorSpecialSkiNotes": "",
"armorSpecialCandycaneText": "Карамельна мантія",
- "armorSpecialCandycaneNotes": "Spun from sugar and silk. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.",
+ "armorSpecialCandycaneNotes": "",
"armorSpecialSnowflakeText": "Мантія „Сніжинка“",
- "armorSpecialSnowflakeNotes": "A robe to keep you warm, even in a blizzard. Increases Constitution by <%= con %>. Limited Edition 2013-2014 Winter Gear.",
+ "armorSpecialSnowflakeNotes": "",
"armorSpecialBirthdayText": "Файна мантія для вечірки",
- "armorSpecialBirthdayNotes": "Happy Birthday, Habitica! Wear these Absurd Party Robes to celebrate this wonderful day. Confers no benefit.",
- "armorSpecialBirthday2015Text": "Silly Party Robes",
- "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes to celebrate this wonderful day. Confers no benefit.",
- "armorSpecialBirthday2016Text": "Ridiculous Party Robes",
- "armorSpecialBirthday2016Notes": "Happy Birthday, Habitica! Wear these Ridiculous Party Robes to celebrate this wonderful day. Confers no benefit.",
- "armorSpecialBirthday2017Text": "Whimsical Party Robes",
- "armorSpecialBirthday2017Notes": "Happy Birthday, Habitica! Wear these Whimsical Party Robes to celebrate this wonderful day. Confers no benefit.",
- "armorSpecialBirthday2018Text": "Fanciful Party Robes",
- "armorSpecialBirthday2018Notes": "Happy Birthday, Habitica! Wear these Fanciful Party Robes to celebrate this wonderful day. Confers no benefit.",
- "armorSpecialBirthday2019Text": "Outlandish Party Robes",
- "armorSpecialBirthday2019Notes": "Happy Birthday, Habitica! Wear these Outlandish Party Robes to celebrate this wonderful day. Confers no benefit.",
- "armorSpecialGaymerxText": "Rainbow Warrior Armor",
- "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.",
+ "armorSpecialBirthdayNotes": "",
+ "armorSpecialBirthday2015Text": "",
+ "armorSpecialBirthday2015Notes": "",
+ "armorSpecialBirthday2016Text": "",
+ "armorSpecialBirthday2016Notes": "",
+ "armorSpecialBirthday2017Text": "",
+ "armorSpecialBirthday2017Notes": "",
+ "armorSpecialBirthday2018Text": "",
+ "armorSpecialBirthday2018Notes": "",
+ "armorSpecialBirthday2019Text": "",
+ "armorSpecialBirthday2019Notes": "",
+ "armorSpecialGaymerxText": "",
+ "armorSpecialGaymerxNotes": "",
"armorSpecialSpringRogueText": "Гладенький котячий костюм",
- "armorSpecialSpringRogueNotes": "Impeccably groomed. Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.",
+ "armorSpecialSpringRogueNotes": "",
"armorSpecialSpringWarriorText": "Броня сталевої конюшини",
- "armorSpecialSpringWarriorNotes": "Soft as clover, strong as steel! Increases Constitution by <%= con %>. Limited Edition 2014 Spring Gear.",
+ "armorSpecialSpringWarriorNotes": "",
"armorSpecialSpringMageText": "Мантія гризуна",
- "armorSpecialSpringMageNotes": "Mice are nice! Increases Intelligence by <%= int %>. Limited Edition 2014 Spring Gear.",
+ "armorSpecialSpringMageNotes": "",
"armorSpecialSpringHealerText": "Мантія пухнастого цуцика",
- "armorSpecialSpringHealerNotes": "Warm and snuggly, but protects its owner from harm. Increases Constitution by <%= con %>. Limited Edition 2014 Spring Gear.",
- "armorSpecialSummerRogueText": "Pirate Robes",
- "armorSpecialSummerRogueNotes": "These robes be very cozy, yarrrr! Increases Perception by <%= per %>. Limited Edition 2014 Summer Gear.",
- "armorSpecialSummerWarriorText": "Swashbuckler Robes",
- "armorSpecialSummerWarriorNotes": "Complete with buckle, as well as swash. Increases Constitution by <%= con %>. Limited Edition 2014 Summer Gear.",
- "armorSpecialSummerMageText": "Emerald Tail",
- "armorSpecialSummerMageNotes": "This garment of shimmering scales transforms its wearer into a real Mermage! Increases Intelligence by <%= int %>. Limited Edition 2014 Summer Gear.",
- "armorSpecialSummerHealerText": "Seahealer Tail",
- "armorSpecialSummerHealerNotes": "This garment of shimmering scales transforms its wearer into a real Seahealer! Increases Constitution by <%= con %>. Limited Edition 2014 Summer Gear.",
- "armorSpecialFallRogueText": "Bloodred Robes",
- "armorSpecialFallRogueNotes": "Vivid. Velvet. Vampiric. Increases Perception by <%= per %>. Limited Edition 2014 Autumn Gear.",
- "armorSpecialFallWarriorText": "Lab-coat of Science",
- "armorSpecialFallWarriorNotes": "Protects you from mysterious potion spills. Increases Constitution by <%= con %>. Limited Edition 2014 Autumn Gear.",
- "armorSpecialFallMageText": "Witchy Wizard Robes",
- "armorSpecialFallMageNotes": "This robe has plenty of pockets to hold extra helpings of eye of newt and tongue of frog. Increases Intelligence by <%= int %>. Limited Edition 2014 Autumn Gear.",
- "armorSpecialFallHealerText": "Gauzy Gear",
- "armorSpecialFallHealerNotes": "Charge into battle pre-bandaged! Increases Constitution by <%= con %>. Limited Edition 2014 Autumn Gear.",
- "armorSpecialWinter2015RogueText": "Icicle Drake Armor",
- "armorSpecialWinter2015RogueNotes": "This armor is freezing cold, but it will definitely be worth it when you uncover the untold riches at the center of the Icicle Drake hives. Not that you are looking for any such untold riches, because you are truly, definitely, absolutely a genuine Icicle Drake, okay?! Stop asking questions! Increases Perception by <%= per %>. Limited Edition 2014-2015 Winter Gear.",
- "armorSpecialWinter2015WarriorText": "Gingerbread Armor",
- "armorSpecialWinter2015WarriorNotes": "Cozy and warm, straight from the oven! Increases Constitution by <%= con %>. Limited Edition 2014-2015 Winter Gear.",
- "armorSpecialWinter2015MageText": "Boreal Robe",
- "armorSpecialWinter2015MageNotes": "You can see the glimmering lights of the north in this robe. Increases Intelligence by <%= int %>. Limited Edition 2014-2015 Winter Gear.",
- "armorSpecialWinter2015HealerText": "Skating Outfit",
- "armorSpecialWinter2015HealerNotes": "Ice-skating is very relaxing, but you shouldn't try it without this protective gear in case you get attacked by the icicle drakes. Increases Constitution by <%= con %>. Limited Edition 2014-2015 Winter Gear.",
- "armorSpecialSpring2015RogueText": "Squeaker Robes",
- "armorSpecialSpring2015RogueNotes": "Furry, soft, and definitely not flammable. Increases Perception by <%= per %>. Limited Edition 2015 Spring Gear.",
- "armorSpecialSpring2015WarriorText": "Beware Armor",
- "armorSpecialSpring2015WarriorNotes": "Only the fiercest doggy is allowed to be this fluffy. Increases Constitution by <%= con %>. Limited Edition 2015 Spring Gear.",
- "armorSpecialSpring2015MageText": "Magician's Bunny Suit",
- "armorSpecialSpring2015MageNotes": "Your coattails match your cottontail! Increases Intelligence by <%= int %>. Limited Edition 2015 Spring Gear.",
- "armorSpecialSpring2015HealerText": "Comforting Catsuit",
- "armorSpecialSpring2015HealerNotes": "This soft catsuit is comfortable, and as comforting as mint tea. Increases Constitution by <%= con %>. Limited Edition 2015 Spring Gear.",
- "armorSpecialSummer2015RogueText": "Ruby Tail",
- "armorSpecialSummer2015RogueNotes": "This garment of shimmering scales transforms its wearer into a real Reef Renegade! Increases Perception by <%= per %>. Limited Edition 2015 Summer Gear.",
- "armorSpecialSummer2015WarriorText": "Golden Tail",
- "armorSpecialSummer2015WarriorNotes": "This garment of shimmering scales transforms its wearer into a real Sunfish Warrior! Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.",
- "armorSpecialSummer2015MageText": "Soothsayer Robes",
- "armorSpecialSummer2015MageNotes": "Hidden power resides in the puffs of these sleeves. Increases Intelligence by <%= int %>. Limited Edition 2015 Summer Gear.",
- "armorSpecialSummer2015HealerText": "Sailor's Armor",
- "armorSpecialSummer2015HealerNotes": "This armor lets everyone know that you are an honest merchant sailor who would never dream of behaving like a scalawag. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.",
- "armorSpecialFall2015RogueText": "Bat-tle Armor",
- "armorSpecialFall2015RogueNotes": "Fly into bat-tle! Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.",
- "armorSpecialFall2015WarriorText": "Scarecrow Armor",
- "armorSpecialFall2015WarriorNotes": "Despite being stuffed with straw, this armor is extremely hefty! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.",
- "armorSpecialFall2015MageText": "Stitched Robes",
- "armorSpecialFall2015MageNotes": "Every stitch in this armor shimmers with enchantment. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.",
- "armorSpecialFall2015HealerText": "Potioner Robes",
- "armorSpecialFall2015HealerNotes": "What? Of course that was a potion of constitution. No, you are definitely not turning into a frog! Don't be ribbiticulous. Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.",
- "armorSpecialWinter2016RogueText": "Cocoa Armor",
- "armorSpecialWinter2016RogueNotes": "This leather armor keeps you nice and toasty. Is it actually made from cocoa? You'll never tell. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.",
- "armorSpecialWinter2016WarriorText": "Snowman Suit",
- "armorSpecialWinter2016WarriorNotes": "Brr! This padded armor is truly powerful... until it melts. Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.",
- "armorSpecialWinter2016MageText": "Snowboarder Parka",
- "armorSpecialWinter2016MageNotes": "The wisest wizard keeps well-bundled in the winter wind. Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.",
- "armorSpecialWinter2016HealerText": "Festive Fairy Cloak",
- "armorSpecialWinter2016HealerNotes": "Festive Fairies wrap their body wings around themselves for protection as they use their head wings to catch headwinds and fly around Habitica at speeds of up to 100 mph, delivering gifts and spraying everyone with confetti. How droll. Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.",
- "armorSpecialSpring2016RogueText": "Canine Camo Suit",
- "armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.",
- "armorSpecialSpring2016WarriorText": "Mighty Mail",
- "armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
- "armorSpecialSpring2016MageText": "Grand Malkin Robes",
- "armorSpecialSpring2016MageNotes": "Brightly colored, so you won't be mistaken for a necromouser. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.",
- "armorSpecialSpring2016HealerText": "Fluffy Bunny Breeches",
- "armorSpecialSpring2016HealerNotes": "Hippity hop! Bound from hill to hill, healing those in need. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
- "armorSpecialSummer2016RogueText": "Eel Tail",
- "armorSpecialSummer2016RogueNotes": "This electrifying garment transforms its wearer into a real Eel Rogue! Increases Perception by <%= per %>. Limited Edition 2016 Summer Gear.",
- "armorSpecialSummer2016WarriorText": "Shark Tail",
- "armorSpecialSummer2016WarriorNotes": "This rough garment transforms its wearer into a real Shark Warrior! Increases Constitution by <%= con %>. Limited Edition 2016 Summer Gear.",
- "armorSpecialSummer2016MageText": "Dolphin Tail",
- "armorSpecialSummer2016MageNotes": "This slippery garment transforms its wearer into a real Dolphin Mage! Increases Intelligence by <%= int %>. Limited Edition 2016 Summer Gear.",
- "armorSpecialSummer2016HealerText": "Seahorse Tail",
- "armorSpecialSummer2016HealerNotes": "This spiky garment transforms its wearer into a real Seahorse Healer! Increases Constitution by <%= con %>. Limited Edition 2016 Summer Gear.",
- "armorSpecialFall2016RogueText": "Black Widow Armor",
- "armorSpecialFall2016RogueNotes": "The eyes on this armor are constantly blinking. Increases Perception by <%= per %>. Limited Edition 2016 Autumn Gear.",
- "armorSpecialFall2016WarriorText": "Slime-Streaked Armor",
- "armorSpecialFall2016WarriorNotes": "Mysteriously moist and mossy! Increases Constitution by <%= con %>. Limited Edition 2016 Autumn Gear.",
- "armorSpecialFall2016MageText": "Cloak of Wickedness",
- "armorSpecialFall2016MageNotes": "When your cloak flaps, you hear the sound of cackling laughter. Increases Intelligence by <%= int %>. Limited Edition 2016 Autumn Gear.",
- "armorSpecialFall2016HealerText": "Gorgon Robes",
- "armorSpecialFall2016HealerNotes": "These robes are actually made of stone. How are they so comfortable? Increases Constitution by <%= con %>. Limited Edition 2016 Autumn Gear.",
- "armorSpecialWinter2017RogueText": "Frosty Armor",
- "armorSpecialWinter2017RogueNotes": "This stealthy suit reflects light to dazzle unsuspecting tasks as you take your rewards from them! Increases Perception by <%= per %>. Limited Edition 2016-2017 Winter Gear.",
- "armorSpecialWinter2017WarriorText": "Ice Hockey Armor",
- "armorSpecialWinter2017WarriorNotes": "Show your team spirit and strength in this warm, padded armor. Increases Constitution by <%= con %>. Limited Edition 2016-2017 Winter Gear.",
- "armorSpecialWinter2017MageText": "Wolfish Armor",
- "armorSpecialWinter2017MageNotes": "Made of winter's warmest wool and woven with spells by the mystical Winter Wolf, these robes stave off the chill and keep your mind alert! Increases Intelligence by <%= int %>. Limited Edition 2016-2017 Winter Gear.",
- "armorSpecialWinter2017HealerText": "Shimmer Petal Armor",
- "armorSpecialWinter2017HealerNotes": "Though soft, this armor of petals has fantastic protective power. Increases Constitution by <%= con %>. Limited Edition 2016-2017 Winter Gear.",
- "armorSpecialSpring2017RogueText": "Sneaky Bunny Suit",
- "armorSpecialSpring2017RogueNotes": "Soft but strong, this suit helps you move through gardens with extra stealth. Increases Perception by <%= per %>. Limited Edition 2017 Spring Gear.",
- "armorSpecialSpring2017WarriorText": "Pawsome Armor",
- "armorSpecialSpring2017WarriorNotes": "This fancy armor is as shiny as your finely groomed coat, but with added resistance to attack. Increases Constitution by <%= con %>. Limited Edition 2017 Spring Gear.",
- "armorSpecialSpring2017MageText": "Canine Conjuror Robes",
- "armorSpecialSpring2017MageNotes": "Magical by design, fluffy by choice. Increases Intelligence by <%= int %>. Limited Edition 2017 Spring Gear.",
- "armorSpecialSpring2017HealerText": "Robes of Repose",
- "armorSpecialSpring2017HealerNotes": "The softness of these robes comforts you as well as any who need your healing help! Increases Constitution by <%= con %>. Limited Edition 2017 Spring Gear.",
- "armorSpecialSummer2017RogueText": "Sea Dragon Tail",
- "armorSpecialSummer2017RogueNotes": "This colorful garment transforms its wearer into a real Sea Dragon! Increases Perception by <%= per %>. Limited Edition 2017 Summer Gear.",
+ "armorSpecialSpringHealerNotes": "",
+ "armorSpecialSummerRogueText": "",
+ "armorSpecialSummerRogueNotes": "",
+ "armorSpecialSummerWarriorText": "",
+ "armorSpecialSummerWarriorNotes": "",
+ "armorSpecialSummerMageText": "",
+ "armorSpecialSummerMageNotes": "",
+ "armorSpecialSummerHealerText": "",
+ "armorSpecialSummerHealerNotes": "",
+ "armorSpecialFallRogueText": "",
+ "armorSpecialFallRogueNotes": "",
+ "armorSpecialFallWarriorText": "",
+ "armorSpecialFallWarriorNotes": "",
+ "armorSpecialFallMageText": "",
+ "armorSpecialFallMageNotes": "",
+ "armorSpecialFallHealerText": "",
+ "armorSpecialFallHealerNotes": "",
+ "armorSpecialWinter2015RogueText": "",
+ "armorSpecialWinter2015RogueNotes": "",
+ "armorSpecialWinter2015WarriorText": "",
+ "armorSpecialWinter2015WarriorNotes": "",
+ "armorSpecialWinter2015MageText": "",
+ "armorSpecialWinter2015MageNotes": "",
+ "armorSpecialWinter2015HealerText": "",
+ "armorSpecialWinter2015HealerNotes": "",
+ "armorSpecialSpring2015RogueText": "",
+ "armorSpecialSpring2015RogueNotes": "",
+ "armorSpecialSpring2015WarriorText": "",
+ "armorSpecialSpring2015WarriorNotes": "",
+ "armorSpecialSpring2015MageText": "",
+ "armorSpecialSpring2015MageNotes": "",
+ "armorSpecialSpring2015HealerText": "",
+ "armorSpecialSpring2015HealerNotes": "",
+ "armorSpecialSummer2015RogueText": "",
+ "armorSpecialSummer2015RogueNotes": "",
+ "armorSpecialSummer2015WarriorText": "",
+ "armorSpecialSummer2015WarriorNotes": "",
+ "armorSpecialSummer2015MageText": "",
+ "armorSpecialSummer2015MageNotes": "",
+ "armorSpecialSummer2015HealerText": "",
+ "armorSpecialSummer2015HealerNotes": "",
+ "armorSpecialFall2015RogueText": "",
+ "armorSpecialFall2015RogueNotes": "",
+ "armorSpecialFall2015WarriorText": "",
+ "armorSpecialFall2015WarriorNotes": "",
+ "armorSpecialFall2015MageText": "",
+ "armorSpecialFall2015MageNotes": "",
+ "armorSpecialFall2015HealerText": "",
+ "armorSpecialFall2015HealerNotes": "",
+ "armorSpecialWinter2016RogueText": "",
+ "armorSpecialWinter2016RogueNotes": "",
+ "armorSpecialWinter2016WarriorText": "",
+ "armorSpecialWinter2016WarriorNotes": "",
+ "armorSpecialWinter2016MageText": "",
+ "armorSpecialWinter2016MageNotes": "",
+ "armorSpecialWinter2016HealerText": "",
+ "armorSpecialWinter2016HealerNotes": "",
+ "armorSpecialSpring2016RogueText": "",
+ "armorSpecialSpring2016RogueNotes": "",
+ "armorSpecialSpring2016WarriorText": "",
+ "armorSpecialSpring2016WarriorNotes": "",
+ "armorSpecialSpring2016MageText": "",
+ "armorSpecialSpring2016MageNotes": "",
+ "armorSpecialSpring2016HealerText": "",
+ "armorSpecialSpring2016HealerNotes": "",
+ "armorSpecialSummer2016RogueText": "",
+ "armorSpecialSummer2016RogueNotes": "",
+ "armorSpecialSummer2016WarriorText": "",
+ "armorSpecialSummer2016WarriorNotes": "",
+ "armorSpecialSummer2016MageText": "",
+ "armorSpecialSummer2016MageNotes": "",
+ "armorSpecialSummer2016HealerText": "",
+ "armorSpecialSummer2016HealerNotes": "",
+ "armorSpecialFall2016RogueText": "",
+ "armorSpecialFall2016RogueNotes": "",
+ "armorSpecialFall2016WarriorText": "",
+ "armorSpecialFall2016WarriorNotes": "",
+ "armorSpecialFall2016MageText": "",
+ "armorSpecialFall2016MageNotes": "",
+ "armorSpecialFall2016HealerText": "",
+ "armorSpecialFall2016HealerNotes": "",
+ "armorSpecialWinter2017RogueText": "",
+ "armorSpecialWinter2017RogueNotes": "",
+ "armorSpecialWinter2017WarriorText": "",
+ "armorSpecialWinter2017WarriorNotes": "",
+ "armorSpecialWinter2017MageText": "",
+ "armorSpecialWinter2017MageNotes": "",
+ "armorSpecialWinter2017HealerText": "",
+ "armorSpecialWinter2017HealerNotes": "",
+ "armorSpecialSpring2017RogueText": "",
+ "armorSpecialSpring2017RogueNotes": "",
+ "armorSpecialSpring2017WarriorText": "",
+ "armorSpecialSpring2017WarriorNotes": "",
+ "armorSpecialSpring2017MageText": "",
+ "armorSpecialSpring2017MageNotes": "",
+ "armorSpecialSpring2017HealerText": "",
+ "armorSpecialSpring2017HealerNotes": "",
+ "armorSpecialSummer2017RogueText": "",
+ "armorSpecialSummer2017RogueNotes": "",
"armorSpecialSummer2017WarriorText": "Sandy Armor",
- "armorSpecialSummer2017WarriorNotes": "Don't be fooled by the crumbly exterior: this armor is harder than steel. Increases Constitution by <%= con %>. Limited Edition 2017 Summer Gear.",
- "armorSpecialSummer2017MageText": "Whirlpool Robes",
- "armorSpecialSummer2017MageNotes": "Careful not to get splashed by these robes woven of enchanted water! Increases Intelligence by <%= int %>. Limited Edition 2017 Summer Gear.",
- "armorSpecialSummer2017HealerText": "Silversea Tail",
- "armorSpecialSummer2017HealerNotes": "This garment of silvery scales transforms its wearer into a real Seahealer! Increases Constitution by <%= con %>. Limited Edition 2017 Summer Gear.",
- "armorSpecialFall2017RogueText": "Pumpkin Patch Robes",
- "armorSpecialFall2017RogueNotes": "Need to hide out? Crouch among the Jack o' Lanterns and these robes will conceal you! Increases Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
- "armorSpecialFall2017WarriorText": "Strong and Sweet Armor",
- "armorSpecialFall2017WarriorNotes": "This armor will protect you like a delicious candy shell. Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
- "armorSpecialFall2017MageText": "Masquerade Robes",
- "armorSpecialFall2017MageNotes": "What masquerade ensemble would be complete without dramatic and sweeping robes? Increases Intelligence by <%= int %>. Limited Edition 2017 Autumn Gear.",
- "armorSpecialFall2017HealerText": "Haunted House Armor",
- "armorSpecialFall2017HealerNotes": "Your heart is an open door. And your shoulders are roofing tiles! Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
- "armorSpecialWinter2018RogueText": "Reindeer Costume",
- "armorSpecialWinter2018RogueNotes": "You look so cute and fuzzy, who could suspect you are after holiday loot? Increases Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
- "armorSpecialWinter2018WarriorText": "Wrapping Paper Armor",
- "armorSpecialWinter2018WarriorNotes": "Don't let the papery feel of this armor fool you. It's nearly impossible to rip! Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
- "armorSpecialWinter2018MageText": "Sparkly Tuxedo",
- "armorSpecialWinter2018MageNotes": "The ultimate in magical formalwear. Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.",
- "armorSpecialWinter2018HealerText": "Mistletoe Robes",
- "armorSpecialWinter2018HealerNotes": "These robes are woven with spells for extra holiday joy. Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
- "armorSpecialSpring2018RogueText": "Feather Suit",
- "armorSpecialSpring2018RogueNotes": "This fluffy yellow costume will trick your enemies into thinking you're just a harmless ducky! Increases Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
- "armorSpecialSpring2018WarriorText": "Armor of Dawn",
- "armorSpecialSpring2018WarriorNotes": "This colorful plate is forged with the sunrise's fire. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.",
- "armorSpecialSpring2018MageText": "Tulip Robe",
- "armorSpecialSpring2018MageNotes": "Your spell casting can only improve while clad in these soft, silky petals. Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.",
- "armorSpecialSpring2018HealerText": "Garnet Armor",
- "armorSpecialSpring2018HealerNotes": "Let this bright armor infuse your heart with power for healing. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.",
- "armorSpecialSummer2018RogueText": "Pocket Fishing Vest",
- "armorSpecialSummer2018RogueNotes": "Bobbers? Boxes of hooks? Spare line? Lockpicks? Smoke bombs? Whatever you need on hand for your summer fishing getaway, there's a pocket for it! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.",
- "armorSpecialSummer2018WarriorText": "Betta Tail Armor",
- "armorSpecialSummer2018WarriorNotes": "Dazzle onlookers with whorls of magnificent color as you spin and dart through the water. How could any opponent dare strike at this beauty? Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.",
- "armorSpecialSummer2018MageText": "Lionfish Scale Hauberk",
- "armorSpecialSummer2018MageNotes": "Venom magic has a reputation for subtlety. Not so this colorful armor, whose message is clear to beast and task alike: watch out! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.",
- "armorSpecialSummer2018HealerText": "Merfolk Monarch Robes",
- "armorSpecialSummer2018HealerNotes": "These cerulean vestments reveal that you have land-walking feet... well. Not even a monarch can be expected to be perfect. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.",
- "armorSpecialFall2018RogueText": "Alter Ego Frock Coat",
- "armorSpecialFall2018RogueNotes": "Style for the day. Comfort and protection for the night. Increases Perception by <%= per %>. Limited Edition 2018 Autumn Gear.",
- "armorSpecialFall2018WarriorText": "Minotaur Platemail",
- "armorSpecialFall2018WarriorNotes": "Complete with hooves to drum a soothing cadence as you walk your meditative labyrinth. Increases Constitution by <%= con %>. Limited Edition 2018 Autumn Gear.",
- "armorSpecialFall2018MageText": "Candymancer's Robes",
- "armorSpecialFall2018MageNotes": "The fabric of these robes has magic candy woven right in! However, we recommend you not attempt to eat them. Increases Intelligence by <%= int %>. Limited Edition 2018 Autumn Gear.",
- "armorSpecialFall2018HealerText": "Robes of Carnivory",
- "armorSpecialFall2018HealerNotes": "It's made from plants, but that doesn't mean it's vegetarian. Bad habits are afraid to come within miles of these robes. Increases Constitution by <%= con %>. Limited Edition 2018 Autumn Gear.",
- "armorSpecialWinter2019RogueText": "Poinsettia Armor",
- "armorSpecialWinter2019RogueNotes": "With holiday greenery all about, no one will notice an extra shrubbery! You can move through seasonal gatherings with ease and stealth. Increases Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
- "armorSpecialWinter2019WarriorText": "Glacial Armor",
- "armorSpecialWinter2019WarriorNotes": "In the heat of battle, this armor will keep you ice cool and ready for action. Increases Constitution by <%= con %>. Limited Edition 2018-2019 Winter Gear.",
- "armorSpecialWinter2019MageText": "Robes of Burning Inspiration",
- "armorSpecialWinter2019MageNotes": "This fireproof garb will help protect you if any of your flashes of brilliance should happen to backfire! Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
- "armorSpecialWinter2019HealerText": "Midnight Robe",
- "armorSpecialWinter2019HealerNotes": "Without darkness, there wouldn't be any light. These dark robes help bring peace and rest to promote healing. Increases Constitution by <%= con %>. Limited Edition 2018-2019 Winter Gear.",
+ "armorSpecialSummer2017WarriorNotes": "",
+ "armorSpecialSummer2017MageText": "",
+ "armorSpecialSummer2017MageNotes": "",
+ "armorSpecialSummer2017HealerText": "",
+ "armorSpecialSummer2017HealerNotes": "",
+ "armorSpecialFall2017RogueText": "",
+ "armorSpecialFall2017RogueNotes": "",
+ "armorSpecialFall2017WarriorText": "",
+ "armorSpecialFall2017WarriorNotes": "",
+ "armorSpecialFall2017MageText": "",
+ "armorSpecialFall2017MageNotes": "",
+ "armorSpecialFall2017HealerText": "",
+ "armorSpecialFall2017HealerNotes": "",
+ "armorSpecialWinter2018RogueText": "",
+ "armorSpecialWinter2018RogueNotes": "",
+ "armorSpecialWinter2018WarriorText": "",
+ "armorSpecialWinter2018WarriorNotes": "",
+ "armorSpecialWinter2018MageText": "",
+ "armorSpecialWinter2018MageNotes": "",
+ "armorSpecialWinter2018HealerText": "",
+ "armorSpecialWinter2018HealerNotes": "",
+ "armorSpecialSpring2018RogueText": "",
+ "armorSpecialSpring2018RogueNotes": "",
+ "armorSpecialSpring2018WarriorText": "",
+ "armorSpecialSpring2018WarriorNotes": "",
+ "armorSpecialSpring2018MageText": "",
+ "armorSpecialSpring2018MageNotes": "",
+ "armorSpecialSpring2018HealerText": "",
+ "armorSpecialSpring2018HealerNotes": "",
+ "armorSpecialSummer2018RogueText": "",
+ "armorSpecialSummer2018RogueNotes": "",
+ "armorSpecialSummer2018WarriorText": "",
+ "armorSpecialSummer2018WarriorNotes": "",
+ "armorSpecialSummer2018MageText": "",
+ "armorSpecialSummer2018MageNotes": "",
+ "armorSpecialSummer2018HealerText": "",
+ "armorSpecialSummer2018HealerNotes": "",
+ "armorSpecialFall2018RogueText": "",
+ "armorSpecialFall2018RogueNotes": "",
+ "armorSpecialFall2018WarriorText": "",
+ "armorSpecialFall2018WarriorNotes": "",
+ "armorSpecialFall2018MageText": "",
+ "armorSpecialFall2018MageNotes": "",
+ "armorSpecialFall2018HealerText": "",
+ "armorSpecialFall2018HealerNotes": "",
+ "armorSpecialWinter2019RogueText": "",
+ "armorSpecialWinter2019RogueNotes": "",
+ "armorSpecialWinter2019WarriorText": "",
+ "armorSpecialWinter2019WarriorNotes": "",
+ "armorSpecialWinter2019MageText": "",
+ "armorSpecialWinter2019MageNotes": "",
+ "armorSpecialWinter2019HealerText": "",
+ "armorSpecialWinter2019HealerNotes": "",
"armorMystery201402Text": "Мантія посланця",
- "armorMystery201402Notes": "Shimmering and strong, these robes have many pockets to carry letters. Confers no benefit. February 2014 Subscriber Item.",
+ "armorMystery201402Notes": "",
"armorMystery201403Text": "Броня лісовика",
- "armorMystery201403Notes": "This mossy armor of woven wood bends with the movement of the wearer. Confers no benefit. March 2014 Subscriber Item.",
- "armorMystery201405Text": "Flame of Heart",
- "armorMystery201405Notes": "Nothing can hurt you when you are swathed in flames! Confers no benefit. May 2014 Subscriber Item.",
- "armorMystery201406Text": "Octopus Robe",
- "armorMystery201406Notes": "This flexible robe makes it possible for its wearer to slip through even the tiniest cracks. Confers no benefit. June 2014 Subscriber Item.",
- "armorMystery201407Text": "Undersea Explorer Suit",
- "armorMystery201407Notes": "Described alternatively as \"splooshy\", \"overly thick\" and \"frankly, kind of cumbersome\", this suit is the best friend of any intrepid undersea explorer. Confers no benefit. July 2014 Subscriber Item.",
- "armorMystery201408Text": "Sun Robes",
- "armorMystery201408Notes": "These robes are woven with sunlight and gold. Confers no benefit. August 2014 Subscriber Item.",
- "armorMystery201409Text": "Strider Vest",
- "armorMystery201409Notes": "A leaf-covered vest that camouflages the wearer. Confers no benefit. September 2014 Subscriber Item.",
- "armorMystery201410Text": "Goblin Gear",
- "armorMystery201410Notes": "Scaly, slimy, and strong! Confers no benefit. October 2014 Subscriber Item.",
- "armorMystery201412Text": "Penguin Suit",
- "armorMystery201412Notes": "You're a penguin! Confers no benefit. December 2014 Subscriber Item.",
- "armorMystery201501Text": "Starry Armor",
- "armorMystery201501Notes": "Galaxies shimmer in the metal of this armor, strengthening the wearer's resolve. Confers no benefit. January 2015 Subscriber Item.",
- "armorMystery201503Text": "Aquamarine Armor",
- "armorMystery201503Notes": "This blue mineral symbolizes good luck, happiness, and eternal productivity. Confers no benefit. March 2015 Subscriber Item.",
- "armorMystery201504Text": "Busy Bee Robe",
- "armorMystery201504Notes": "You'll be productive as a busy bee in this fetching robe! Confers no benefit. April 2015 Subscriber Item.",
- "armorMystery201506Text": "Snorkel Suit",
- "armorMystery201506Notes": "Snorkel through a coral reef in this brightly-colored swim suit! Confers no benefit. June 2015 Subscriber Item.",
- "armorMystery201508Text": "Cheetah Costume",
- "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.",
- "armorMystery201509Text": "Werewolf Costume",
- "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.",
- "armorMystery201511Text": "Wooden Armor",
- "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.",
- "armorMystery201512Text": "Cold Fire Armor",
- "armorMystery201512Notes": "Summon the icy flames of winter! Confers no benefit. December 2015 Subscriber Item.",
- "armorMystery201603Text": "Lucky Suit",
- "armorMystery201603Notes": "This suit is sewn from thousands of four-leafed clovers! Confers no benefit. March 2016 Subscriber Item.",
- "armorMystery201604Text": "Armor o' Leaves",
- "armorMystery201604Notes": "You, too, can be a small but fearsome leaf puff. Confers no benefit. April 2016 Subscriber Item.",
- "armorMystery201605Text": "Marching Bard Uniform",
- "armorMystery201605Notes": "Unlike the traditional bards who join adventuring parties, bards who join Habitican marching bands are known for grand parades, not dungeon raids. Confers no benefit. May 2016 Subscriber Item.",
- "armorMystery201606Text": "Selkie Tail",
- "armorMystery201606Notes": "This strong tail shimmers like sea foam crashing upon the shore. Confers no benefit. June 2016 Subscriber Item.",
- "armorMystery201607Text": "Seafloor Rogue Armor",
- "armorMystery201607Notes": "Blend into the sea floor with this stealthy aquatic armor. Confers no benefit. July 2016 Subscriber Item.",
- "armorMystery201609Text": "Cow Armor",
- "armorMystery201609Notes": "Fit in with the rest of the herd in this snuggly armor! Confers no benefit. September 2016 Subscriber Item.",
- "armorMystery201610Text": "Spectral Armor",
- "armorMystery201610Notes": "Mysterious armor that will cause you to float like a ghost! Confers no benefit. October 2016 Subscriber Item.",
- "armorMystery201612Text": "Nutcracker Armor",
- "armorMystery201612Notes": "Crack nuts in style in this spectacular holiday ensemble. Be careful not to pinch your fingers! Confers no benefit. December 2016 Subscriber Item.",
- "armorMystery201703Text": "Shimmer Armor",
- "armorMystery201703Notes": "Though its colors are reminiscent of spring petals, this armor is stronger than steel! Confers no benefit. March 2017 Subscriber Item.",
- "armorMystery201704Text": "Fairytale Armor",
- "armorMystery201704Notes": "Fairy folk crafted this armor from morning dew to capture the colors of the sunrise. Confers no benefit. April 2017 Subscriber Item.",
- "armorMystery201707Text": "Jellymancer Armor",
- "armorMystery201707Notes": "This armor will help you blend in with the creatures of the ocean while you pursue undersea quests and adventures. Confers no benefit. July 2017 Subscriber Item.",
- "armorMystery201710Text": "Imperious Imp Apparel",
- "armorMystery201710Notes": "Scaly, shiny, and strong! Confers no benefit. October 2017 Subscriber Item.",
- "armorMystery201711Text": "Carpet Rider Outfit",
- "armorMystery201711Notes": "This cozy sweater set will help keep you warm as you ride through the sky! Confers no benefit. November 2017 Subscriber Item.",
- "armorMystery201712Text": "Candlemancer Armor",
- "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.",
- "armorMystery201802Text": "Love Bug Armor",
- "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.",
- "armorMystery201806Text": "Alluring Anglerfish Tail",
- "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.",
- "armorMystery201807Text": "Sea Serpent Tail",
- "armorMystery201807Notes": "This powerful tail will propel you through the sea at incredible speeds! Confers no benefit. July 2018 Subscriber Item.",
- "armorMystery201808Text": "Lava Dragon Armor",
- "armorMystery201808Notes": "This armor is made from the shed scales of the elusive (and extremely warm) Lava Dragon. Confers no benefit. August 2018 Subscriber Item.",
- "armorMystery201809Text": "Armor of Autumn Leaves",
- "armorMystery201809Notes": "You are not only a small and fearsome leaf puff, you are sporting the most beautiful colors of the season! Confers no benefit. September 2018 Subscriber Item.",
- "armorMystery201810Text": "Dark Forest Robes",
- "armorMystery201810Notes": "These robes are extra warm to protect you from the ghastly cold of haunted realms. Confers no benefit. October 2018 Subscriber Item.",
- "armorMystery301404Text": "Steampunk Suit",
- "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.",
- "armorMystery301703Text": "Steampunk Peacock Gown",
- "armorMystery301703Notes": "This elegant gown is well-suited for even the most extravagant gala! Confers no benefit. March 3017 Subscriber Item.",
- "armorMystery301704Text": "Steampunk Pheasant Dress",
- "armorMystery301704Notes": "This fine outfit is perfect for a night out and about or a day in your gadget workshop! Confers no benefit. April 3017 Subscriber Item.",
- "armorArmoireLunarArmorText": "Soothing Lunar Armor",
- "armorArmoireLunarArmorNotes": "The light of the moon will make you strong and savvy. Increases Strength by <%= str %> and Intelligence by <%= int %>. Enchanted Armoire: Soothing Lunar Set (Item 2 of 3).",
- "armorArmoireGladiatorArmorText": "Gladiator Armor",
- "armorArmoireGladiatorArmorNotes": "To be a gladiator you must be not only cunning... but strong. Increases Perception by <%= per %> and Strength by <%= str %>. Enchanted Armoire: Gladiator Set (Item 2 of 3).",
- "armorArmoireRancherRobesText": "Rancher Robes",
- "armorArmoireRancherRobesNotes": "Wrangle your mounts and round up your pets while wearing these magical Rancher Robes! Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 2 of 3).",
- "armorArmoireGoldenTogaText": "Golden Toga",
- "armorArmoireGoldenTogaNotes": "This glimmering toga is only worn by true heroes. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 1 of 3).",
- "armorArmoireHornedIronArmorText": "Horned Iron Armor",
- "armorArmoireHornedIronArmorNotes": "Fiercely hammered from iron, this horned armor is nearly impossible to break. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Horned Iron Set (Item 2 of 3).",
- "armorArmoirePlagueDoctorOvercoatText": "Plague Doctor Overcoat",
- "armorArmoirePlagueDoctorOvercoatNotes": "An authentic overcoat worn by the doctors who battle the Plague of Procrastination! Increases Intelligence by <%= int %>, Strength by <%= str %>, and Constitution by <%= con %>. Enchanted Armoire: Plague Doctor Set (Item 3 of 3).",
- "armorArmoireShepherdRobesText": "Shepherd Robes",
- "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).",
- "armorArmoireRoyalRobesText": "Royal Robes",
- "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).",
- "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes",
- "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).",
- "armorArmoireDragonTamerArmorText": "Dragon Tamer Armor",
- "armorArmoireDragonTamerArmorNotes": "This tough armor is impenetrable to flame. Increases Constitution by <%= con %>. Enchanted Armoire: Dragon Tamer Set (Item 3 of 3).",
- "armorArmoireBarristerRobesText": "Barrister Robes",
- "armorArmoireBarristerRobesNotes": "Very serious and stately. Increases Constitution by <%= con %>. Enchanted Armoire: Barrister Set (Item 2 of 3).",
+ "armorMystery201403Notes": "",
+ "armorMystery201405Text": "",
+ "armorMystery201405Notes": "",
+ "armorMystery201406Text": "",
+ "armorMystery201406Notes": "",
+ "armorMystery201407Text": "",
+ "armorMystery201407Notes": "",
+ "armorMystery201408Text": "",
+ "armorMystery201408Notes": "",
+ "armorMystery201409Text": "",
+ "armorMystery201409Notes": "",
+ "armorMystery201410Text": "",
+ "armorMystery201410Notes": "",
+ "armorMystery201412Text": "",
+ "armorMystery201412Notes": "",
+ "armorMystery201501Text": "",
+ "armorMystery201501Notes": "",
+ "armorMystery201503Text": "",
+ "armorMystery201503Notes": "",
+ "armorMystery201504Text": "",
+ "armorMystery201504Notes": "",
+ "armorMystery201506Text": "",
+ "armorMystery201506Notes": "",
+ "armorMystery201508Text": "",
+ "armorMystery201508Notes": "",
+ "armorMystery201509Text": "",
+ "armorMystery201509Notes": "",
+ "armorMystery201511Text": "",
+ "armorMystery201511Notes": "",
+ "armorMystery201512Text": "",
+ "armorMystery201512Notes": "",
+ "armorMystery201603Text": "",
+ "armorMystery201603Notes": "",
+ "armorMystery201604Text": "",
+ "armorMystery201604Notes": "",
+ "armorMystery201605Text": "",
+ "armorMystery201605Notes": "",
+ "armorMystery201606Text": "",
+ "armorMystery201606Notes": "",
+ "armorMystery201607Text": "",
+ "armorMystery201607Notes": "",
+ "armorMystery201609Text": "",
+ "armorMystery201609Notes": "",
+ "armorMystery201610Text": "",
+ "armorMystery201610Notes": "",
+ "armorMystery201612Text": "",
+ "armorMystery201612Notes": "",
+ "armorMystery201703Text": "",
+ "armorMystery201703Notes": "",
+ "armorMystery201704Text": "",
+ "armorMystery201704Notes": "",
+ "armorMystery201707Text": "",
+ "armorMystery201707Notes": "",
+ "armorMystery201710Text": "",
+ "armorMystery201710Notes": "",
+ "armorMystery201711Text": "",
+ "armorMystery201711Notes": "",
+ "armorMystery201712Text": "",
+ "armorMystery201712Notes": "",
+ "armorMystery201802Text": "",
+ "armorMystery201802Notes": "",
+ "armorMystery201806Text": "",
+ "armorMystery201806Notes": "",
+ "armorMystery201807Text": "",
+ "armorMystery201807Notes": "",
+ "armorMystery201808Text": "",
+ "armorMystery201808Notes": "",
+ "armorMystery201809Text": "",
+ "armorMystery201809Notes": "",
+ "armorMystery201810Text": "",
+ "armorMystery201810Notes": "",
+ "armorMystery301404Text": "",
+ "armorMystery301404Notes": "",
+ "armorMystery301703Text": "",
+ "armorMystery301703Notes": "",
+ "armorMystery301704Text": "",
+ "armorMystery301704Notes": "",
+ "armorArmoireLunarArmorText": "",
+ "armorArmoireLunarArmorNotes": "",
+ "armorArmoireGladiatorArmorText": "",
+ "armorArmoireGladiatorArmorNotes": "",
+ "armorArmoireRancherRobesText": "",
+ "armorArmoireRancherRobesNotes": "",
+ "armorArmoireGoldenTogaText": "",
+ "armorArmoireGoldenTogaNotes": "",
+ "armorArmoireHornedIronArmorText": "",
+ "armorArmoireHornedIronArmorNotes": "",
+ "armorArmoirePlagueDoctorOvercoatText": "",
+ "armorArmoirePlagueDoctorOvercoatNotes": "",
+ "armorArmoireShepherdRobesText": "",
+ "armorArmoireShepherdRobesNotes": "",
+ "armorArmoireRoyalRobesText": "",
+ "armorArmoireRoyalRobesNotes": "",
+ "armorArmoireCrystalCrescentRobesText": "",
+ "armorArmoireCrystalCrescentRobesNotes": "",
+ "armorArmoireDragonTamerArmorText": "",
+ "armorArmoireDragonTamerArmorNotes": "",
+ "armorArmoireBarristerRobesText": "",
+ "armorArmoireBarristerRobesNotes": "",
"armorArmoireJesterCostumeText": "Костюм шута",
- "armorArmoireJesterCostumeNotes": "Tra-la-la! Despite the look of this costume, you are no fool. Increases Intelligence by <%= int %>. Enchanted Armoire: Jester Set (Item 2 of 3).",
- "armorArmoireMinerOverallsText": "Miner Overalls",
- "armorArmoireMinerOverallsNotes": "They may seem worn, but they are enchanted to repel dirt. Increases Constitution by <%= con %>. Enchanted Armoire: Miner Set (Item 2 of 3).",
- "armorArmoireBasicArcherArmorText": "Basic Archer Armor",
- "armorArmoireBasicArcherArmorNotes": "This camouflaged vest lets you slip unnoticed through the forests. Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 2 of 3).",
- "armorArmoireGraduateRobeText": "Graduate Robe",
- "armorArmoireGraduateRobeNotes": "Congratulations! This weighty robe hangs heavy with all the knowledge you have accrued. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 2 of 3).",
- "armorArmoireStripedSwimsuitText": "Striped Swimsuit",
- "armorArmoireStripedSwimsuitNotes": "What could be more fun than battling sea monsters on the beach? Increases Constitution by <%= con %>. Enchanted Armoire: Seaside Set (Item 2 of 3).",
- "armorArmoireCannoneerRagsText": "Cannoneer Rags",
- "armorArmoireCannoneerRagsNotes": "These rags be tougher than they look. Increases Constitution by <%= con %>. Enchanted Armoire: Cannoneer Set (Item 2 of 3).",
- "armorArmoireFalconerArmorText": "Falconer Armor",
- "armorArmoireFalconerArmorNotes": "Keep away talon attacks with this sturdy armor! Increases Constitution by <%= con %>. Enchanted Armoire: Falconer Set (Item 1 of 3).",
- "armorArmoireVermilionArcherArmorText": "Vermilion Archer Armor",
- "armorArmoireVermilionArcherArmorNotes": "This armor is made of a specially enchanted red metal for maximum protection, minimal restriction, and maximum flair! Increases Perception by <%= per %>. Enchanted Armoire: Vermilion Archer Set (Item 2 of 3).",
- "armorArmoireOgreArmorText": "Ogre Armor",
- "armorArmoireOgreArmorNotes": "This armor imitates an Ogre's tough skin, but it's lined with fleece for human comfort! Increases Constitution by <%= con %>. Enchanted Armoire: Ogre Outfit (Item 3 of 3).",
- "armorArmoireIronBlueArcherArmorText": "Iron Blue Archer Armor",
- "armorArmoireIronBlueArcherArmorNotes": "This armor will protect you from flying arrows on the battlefield! Increases Strength by <%= str %>. Enchanted Armoire: Iron Archer Set (Item 2 of 3).",
- "armorArmoireRedPartyDressText": "Red Party Dress",
- "armorArmoireRedPartyDressNotes": "You're strong, tough, smart, and so fashionable! Increases Strength, Constitution, and Intelligence by <%= attrs %> each. Enchanted Armoire: Red Hairbow Set (Item 2 of 2).",
- "armorArmoireWoodElfArmorText": "Wood Elf Armor",
- "armorArmoireWoodElfArmorNotes": "This armor of bark and leaves will serve as durable camouflage in the forest. Increases Perception by <%= per %>. Enchanted Armoire: Wood Elf Set (Item 2 of 3).",
- "armorArmoireRamFleeceRobesText": "Ram Fleece Robes",
- "armorArmoireRamFleeceRobesNotes": "These robes keep you warm even through the fiercest blizzard. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Ram Barbarian Set (Item 2 of 3).",
- "armorArmoireGownOfHeartsText": "Gown of Hearts",
- "armorArmoireGownOfHeartsNotes": "This gown has all the frills! But that's not all, it will also increase your heart's fortitude. Increases Constitution by <%= con %>. Enchanted Armoire: Queen of Hearts Set (Item 2 of 3).",
- "armorArmoireMushroomDruidArmorText": "Mushroom Druid Armor",
- "armorArmoireMushroomDruidArmorNotes": "This woody brown armor, capped with tiny mushrooms, will help you hear the whispers of forest life. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Mushroom Druid Set (Item 2 of 3).",
- "armorArmoireGreenFestivalYukataText": "Green Festival Yukata",
- "armorArmoireGreenFestivalYukataNotes": "This fine lightweight yukata will keep you cool while you enjoy any festive occasion. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Festival Attire Set (Item 1 of 3).",
- "armorArmoireMerchantTunicText": "Merchant Tunic",
- "armorArmoireMerchantTunicNotes": "The wide sleeves of this tunic are perfect for stashing the coins you've earned! Increases Perception by <%= per %>. Enchanted Armoire: Merchant Set (Item 2 of 3).",
- "armorArmoireVikingTunicText": "Viking Tunic",
- "armorArmoireVikingTunicNotes": "This warm woolen tunic includes a cloak for extra coziness even in ocean gales. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Viking Set (Item 1 of 3).",
- "armorArmoireSwanDancerTutuText": "Swan Dancer Tutu",
- "armorArmoireSwanDancerTutuNotes": "You just might fly away into the air as you spin in this gorgeous feathered tutu. Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Swan Dancer Set (Item 2 of 3).",
- "armorArmoireAntiProcrastinationArmorText": "Anti-Procrastination Armor",
- "armorArmoireAntiProcrastinationArmorNotes": "Infused with ancient productivity spells, this steel armor will give you extra strength to battle your tasks. Increases Strength by <%= str %>. Enchanted Armoire: Anti-Procrastination Set (Item 2 of 3).",
- "armorArmoireYellowPartyDressText": "Yellow Party Dress",
- "armorArmoireYellowPartyDressNotes": "You're perceptive, strong, smart, and so fashionable! Increases Perception, Strength, and Intelligence by <%= attrs %> each. Enchanted Armoire: Yellow Hairbow Set (Item 2 of 2).",
- "armorArmoireFarrierOutfitText": "Farrier Outfit",
- "armorArmoireFarrierOutfitNotes": "These sturdy work clothes can stand up to the messiest Stable. Increases Intelligence, Constitution, and Perception by <%= attrs %> each. Enchanted Armoire: Farrier Set (Item 2 of 3).",
- "armorArmoireCandlestickMakerOutfitText": "Candlestick Maker Outfit",
- "armorArmoireCandlestickMakerOutfitNotes": "This sturdy set of clothes will protect you from hot wax spills as you ply your craft! Increases Constitution by <%= con %>. Enchanted Armoire: Candlestick Maker Set (Item 1 of 3).",
- "armorArmoireWovenRobesText": "Woven Robes",
- "armorArmoireWovenRobesNotes": "Display your weaving work proudly by wearing this colorful robe! Increases Constitution by <%= con %> and Intelligence by <%= int %>. Enchanted Armoire: Weaver Set (Item 1 of 3).",
- "armorArmoireLamplightersGreatcoatText": "Lamplighter's Greatcoat",
- "armorArmoireLamplightersGreatcoatNotes": "This heavy woolen coat can stand up to the harshest wintry night! Increases Perception by <%= per %>. Enchanted Armoire: Lamplighter's Set (Item 2 of 4).",
- "armorArmoireCoachDriverLiveryText": "Coach Driver's Livery",
- "armorArmoireCoachDriverLiveryNotes": "This heavy overcoat will protect you from the weather as you drive. Plus it looks pretty snazzy, too! Increases Strength by <%= str %>. Enchanted Armoire: Coach Driver Set (Item 1 of 3).",
- "armorArmoireRobeOfDiamondsText": "Robe of Diamonds",
- "armorArmoireRobeOfDiamondsNotes": "These royal robes not only make you appear noble, they allow you to see the nobility within others. Increases Perception by <%= per %>. Enchanted Armoire: King of Diamonds Set (Item 1 of 4).",
- "armorArmoireFlutteryFrockText": "Fluttery Frock",
- "armorArmoireFlutteryFrockNotes": "A light and airy gown with a wide skirt the butterflies might mistake for a giant blossom! Increases Constitution, Perception, and Strength by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 1 of 4).",
- "armorArmoireCobblersCoverallsText": "Cobbler's Coveralls",
- "armorArmoireCobblersCoverallsNotes": "These sturdy coveralls have lots of pockets for tools, leather scraps, and other useful items! Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 1 of 3).",
- "armorArmoireGlassblowersCoverallsText": "Glassblower's Coveralls",
- "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).",
- "armorArmoireBluePartyDressText": "Blue Party Dress",
- "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).",
- "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown",
- "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).",
- "armorArmoireJeweledArcherArmorText": "Jeweled Archer Armor",
- "armorArmoireJeweledArcherArmorNotes": "This finely crafted armor will protect you from projectiles or errant red Dailies! Increases Constitution by <%= con %>. Enchanted Armoire: Jeweled Archer Set (Item 2 of 3).",
- "armorArmoireCoverallsOfBookbindingText": "Coveralls of Bookbinding",
- "armorArmoireCoverallsOfBookbindingNotes": "Everything you need in a set of coveralls, including pockets for everything. A pair of goggles, loose change, a golden ring... Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Bookbinder Set (Item 2 of 4).",
- "armorArmoireRobeOfSpadesText": "Robe of Spades",
- "armorArmoireRobeOfSpadesNotes": "These luxuriant robes conceal hidden pockets for treasures or weapons--your choice! Increases Strength by <%= str %>. Enchanted Armoire: Ace of Spades Set (Item 2 of 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).",
- "armorArmoireSoftGreenSuitText": "Soft Green Suit",
- "armorArmoireSoftGreenSuitNotes": "Green is the most refreshing color! Ideal for resting those tired eyes... mmm, or even a nap... Increases Constitution and Intelligence by <%= attrs %> each. Enchanted Armoire: Green Loungewear Set (Item 2 of 3).",
- "armorArmoireSoftRedSuitText": "Soft Red Suit",
- "armorArmoireSoftRedSuitNotes": "Red is such an invigorating color. If you need to wake up bright and early, this suit could make the perfect pajamas... Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Red Loungewear Set (Item 2 of 3).",
- "armorArmoireScribesRobeText": "Scribe's Robes",
- "armorArmoireScribesRobeNotes": "These velvety robes are woven with inspirational and motivational magic. Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Scribe Set (Item 1 of 3).",
- "headgear": "helm",
+ "armorArmoireJesterCostumeNotes": "",
+ "armorArmoireMinerOverallsText": "",
+ "armorArmoireMinerOverallsNotes": "",
+ "armorArmoireBasicArcherArmorText": "",
+ "armorArmoireBasicArcherArmorNotes": "",
+ "armorArmoireGraduateRobeText": "",
+ "armorArmoireGraduateRobeNotes": "",
+ "armorArmoireStripedSwimsuitText": "",
+ "armorArmoireStripedSwimsuitNotes": "",
+ "armorArmoireCannoneerRagsText": "",
+ "armorArmoireCannoneerRagsNotes": "",
+ "armorArmoireFalconerArmorText": "",
+ "armorArmoireFalconerArmorNotes": "",
+ "armorArmoireVermilionArcherArmorText": "",
+ "armorArmoireVermilionArcherArmorNotes": "",
+ "armorArmoireOgreArmorText": "",
+ "armorArmoireOgreArmorNotes": "",
+ "armorArmoireIronBlueArcherArmorText": "",
+ "armorArmoireIronBlueArcherArmorNotes": "",
+ "armorArmoireRedPartyDressText": "",
+ "armorArmoireRedPartyDressNotes": "",
+ "armorArmoireWoodElfArmorText": "",
+ "armorArmoireWoodElfArmorNotes": "",
+ "armorArmoireRamFleeceRobesText": "",
+ "armorArmoireRamFleeceRobesNotes": "",
+ "armorArmoireGownOfHeartsText": "",
+ "armorArmoireGownOfHeartsNotes": "",
+ "armorArmoireMushroomDruidArmorText": "",
+ "armorArmoireMushroomDruidArmorNotes": "",
+ "armorArmoireGreenFestivalYukataText": "",
+ "armorArmoireGreenFestivalYukataNotes": "",
+ "armorArmoireMerchantTunicText": "",
+ "armorArmoireMerchantTunicNotes": "",
+ "armorArmoireVikingTunicText": "",
+ "armorArmoireVikingTunicNotes": "",
+ "armorArmoireSwanDancerTutuText": "",
+ "armorArmoireSwanDancerTutuNotes": "",
+ "armorArmoireAntiProcrastinationArmorText": "",
+ "armorArmoireAntiProcrastinationArmorNotes": "",
+ "armorArmoireYellowPartyDressText": "",
+ "armorArmoireYellowPartyDressNotes": "",
+ "armorArmoireFarrierOutfitText": "",
+ "armorArmoireFarrierOutfitNotes": "",
+ "armorArmoireCandlestickMakerOutfitText": "",
+ "armorArmoireCandlestickMakerOutfitNotes": "",
+ "armorArmoireWovenRobesText": "",
+ "armorArmoireWovenRobesNotes": "",
+ "armorArmoireLamplightersGreatcoatText": "",
+ "armorArmoireLamplightersGreatcoatNotes": "",
+ "armorArmoireCoachDriverLiveryText": "",
+ "armorArmoireCoachDriverLiveryNotes": "",
+ "armorArmoireRobeOfDiamondsText": "",
+ "armorArmoireRobeOfDiamondsNotes": "",
+ "armorArmoireFlutteryFrockText": "",
+ "armorArmoireFlutteryFrockNotes": "",
+ "armorArmoireCobblersCoverallsText": "",
+ "armorArmoireCobblersCoverallsNotes": "",
+ "armorArmoireGlassblowersCoverallsText": "",
+ "armorArmoireGlassblowersCoverallsNotes": "",
+ "armorArmoireBluePartyDressText": "",
+ "armorArmoireBluePartyDressNotes": "",
+ "armorArmoirePiraticalPrincessGownText": "",
+ "armorArmoirePiraticalPrincessGownNotes": "",
+ "armorArmoireJeweledArcherArmorText": "",
+ "armorArmoireJeweledArcherArmorNotes": "",
+ "armorArmoireCoverallsOfBookbindingText": "",
+ "armorArmoireCoverallsOfBookbindingNotes": "",
+ "armorArmoireRobeOfSpadesText": "",
+ "armorArmoireRobeOfSpadesNotes": "",
+ "armorArmoireSoftBlueSuitText": "",
+ "armorArmoireSoftBlueSuitNotes": "",
+ "armorArmoireSoftGreenSuitText": "",
+ "armorArmoireSoftGreenSuitNotes": "",
+ "armorArmoireSoftRedSuitText": "",
+ "armorArmoireSoftRedSuitNotes": "",
+ "armorArmoireScribesRobeText": "",
+ "armorArmoireScribesRobeNotes": "",
+ "headgear": "",
"headgearCapitalized": "Головний убір",
- "headBase0Text": "No Headgear",
+ "headBase0Text": "",
"headBase0Notes": "Без головного убору.",
"headWarrior1Text": "Шкіряний шолом",
"headWarrior1Notes": "Шапка з міцної вивареної шкіри. Збільшує силу на <%= str %>.",
"headWarrior2Text": "Кольчужний койф",
- "headWarrior2Notes": "Hood of interlocked metal rings. Increases Strength by <%= str %>.",
+ "headWarrior2Notes": "",
"headWarrior3Text": "Пластинчатий шолом",
- "headWarrior3Notes": "Thick steel helmet, proof against any blow. Increases Strength by <%= str %>.",
+ "headWarrior3Notes": "",
"headWarrior4Text": "Червоний шолом",
- "headWarrior4Notes": "Set with rubies for power, and glows when the wearer is angered. Increases Strength by <%= str %>.",
+ "headWarrior4Notes": "",
"headWarrior5Text": "Золотий шолом",
- "headWarrior5Notes": "Regal crown bound to shining armor. Increases Strength by <%= str %>.",
+ "headWarrior5Notes": "",
"headRogue1Text": "Шкіряний каптур",
- "headRogue1Notes": "Basic protective cowl. Increases Perception by <%= per %>.",
+ "headRogue1Notes": "",
"headRogue2Text": "Каптур із чорної шкіри",
- "headRogue2Notes": "Useful for both defense and disguise. Increases Perception by <%= per %>.",
+ "headRogue2Notes": "",
"headRogue3Text": "Маскувальний каптур",
- "headRogue3Notes": "Rugged, but doesn't impede hearing. Increases Perception by <%= per %>.",
+ "headRogue3Notes": "",
"headRogue4Text": "Каптур тіні",
- "headRogue4Notes": "Grants perfect vision in darkness. Increases Perception by <%= per %>.",
+ "headRogue4Notes": "",
"headRogue5Text": "Каптур пітьми",
- "headRogue5Notes": "Conceals even thoughts from those who would probe them. Increases Perception by <%= per %>.",
+ "headRogue5Notes": "",
"headWizard1Text": "Чародійський капелюх",
- "headWizard1Notes": "Simple, comfortable, and fashionable. Increases Perception by <%= per %>.",
+ "headWizard1Notes": "",
"headWizard2Text": "Корнатам",
- "headWizard2Notes": "Traditional headgear of the itinerant wizard. Increases Perception by <%= per %>.",
+ "headWizard2Notes": "",
"headWizard3Text": "Капелюх астролоґа",
- "headWizard3Notes": "Adorned with the rings of Saturn. Increases Perception by <%= per %>.",
+ "headWizard3Notes": "",
"headWizard4Text": "Капелюх Архічародія",
- "headWizard4Notes": "Focuses the mind for intensive spellcasting. Increases Perception by <%= per %>.",
+ "headWizard4Notes": "",
"headWizard5Text": "Капелюх королівського мага",
- "headWizard5Notes": "Shows authority over fortune, weather, and lesser mages. Increases Perception by <%= per %>.",
+ "headWizard5Notes": "",
"headHealer1Text": "Кварцевий вінець",
- "headHealer1Notes": "Jeweled headpiece, for focus on the task at hand. Increases Intelligence by <%= int %>.",
+ "headHealer1Notes": "",
"headHealer2Text": "Аметистовий вінець",
- "headHealer2Notes": "A taste of luxury for a humble profession. Increases Intelligence by <%= int %>.",
+ "headHealer2Notes": "",
"headHealer3Text": "Сапфіровий вінець",
- "headHealer3Notes": "Shines to let sufferers know their salvation is at hand. Increases Intelligence by <%= int %>.",
+ "headHealer3Notes": "",
"headHealer4Text": "Смарагдова діядема",
- "headHealer4Notes": "Emits an aura of life and growth. Increases Intelligence by <%= int %>.",
+ "headHealer4Notes": "",
"headHealer5Text": "Королівська діядема",
- "headHealer5Notes": "For king, queen, or miracle-worker. Increases Intelligence by <%= int %>.",
+ "headHealer5Notes": "",
"headSpecial0Text": "Шолом сутінок",
- "headSpecial0Notes": "Blood and ash, lava and obsidian give this helm its imagery and power. Increases Intelligence by <%= int %>.",
+ "headSpecial0Notes": "",
"headSpecial1Text": "Кришталевий шолом",
- "headSpecial1Notes": "The favored crown of those who lead by example. Increases all Stats by <%= attrs %>.",
+ "headSpecial1Notes": "",
"headSpecial2Text": "Безіменний шолом",
"headSpecial2Notes": "Завіт тим, хто віддав себе повністю, нічого не просячи натомість. Збільшує інтелект та силу на <%= attrs %>.",
- "headSpecialTakeThisText": "Take This Helm",
- "headSpecialTakeThisNotes": "This helm was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
- "headSpecialFireCoralCircletText": "Fire Coral Circlet",
- "headSpecialFireCoralCircletNotes": "This circlet, designed by Habitica's greatest alchemists, allows you to breathe water and dive for treasure! Increases Perception by <%= per %>.",
- "headSpecialPyromancersTurbanText": "Pyromancer's Turban",
- "headSpecialPyromancersTurbanNotes": "This magical turban will help you breathe even in the thickest smoke! Plus it's extremely cozy! Increases Strength by <%= str %>.",
- "headSpecialBardHatText": "Bardic Cap",
- "headSpecialBardHatNotes": "Stick a feather in your cap and call it \"productivity\"! Increases Intelligence by <%= int %>.",
+ "headSpecialTakeThisText": "",
+ "headSpecialTakeThisNotes": "",
+ "headSpecialFireCoralCircletText": "",
+ "headSpecialFireCoralCircletNotes": "",
+ "headSpecialPyromancersTurbanText": "",
+ "headSpecialPyromancersTurbanNotes": "",
+ "headSpecialBardHatText": "",
+ "headSpecialBardHatNotes": "",
"headSpecialLunarWarriorHelmText": "Шолом місячного воїна",
"headSpecialLunarWarriorHelmNotes": "Сила місяця зміцнить Вас у бою! Збільшує силу та інтелект на <%= attrs %>.",
- "headSpecialMammothRiderHelmText": "Mammoth Rider Helm",
- "headSpecialMammothRiderHelmNotes": "Don't let its fluffiness fool you--this hat will grant you piercing powers of perception! Increases Perception by <%= per %>.",
- "headSpecialPageHelmText": "Page Helm",
- "headSpecialPageHelmNotes": "Chainmail: for the stylish AND the practical. Increases Perception by <%= per %>.",
- "headSpecialRoguishRainbowMessengerHoodText": "Roguish Rainbow Messenger Hood",
- "headSpecialRoguishRainbowMessengerHoodNotes": "This bright hood emits a colorful glow that will protect you from unpleasant weather! Increases Constitution by <%= con %>.",
- "headSpecialClandestineCowlText": "Clandestine Cowl",
- "headSpecialClandestineCowlNotes": "Take care to conceal your face as you rob your Tasks of gold and loot! Increases Perception by <%= per %>.",
- "headSpecialSnowSovereignCrownText": "Snow Sovereign Crown",
- "headSpecialSnowSovereignCrownNotes": "The jewels in this crown sparkle like new-fallen snowflakes. Increases Constitution by <%= con %>.",
- "headSpecialSpikedHelmText": "Spiked Helm",
- "headSpecialSpikedHelmNotes": "You'll be well protected from stray Dailies and bad Habits with this functional (and neat-looking!) helm. Increases Strength by <%= str %>.",
- "headSpecialDandyHatText": "Dandy Hat",
- "headSpecialDandyHatNotes": "What a merry chapeau! You'll look quite fine enjoying a stroll in it. Increases Constitution by <%= con %>.",
- "headSpecialKabutoText": "Kabuto",
- "headSpecialKabutoNotes": "This helm is functional and beautiful! Your enemies will become distracted admiring it. Increases Intelligence by <%= int %>.",
- "headSpecialNamingDay2017Text": "Royal Purple Gryphon Helm",
- "headSpecialNamingDay2017Notes": "Happy Naming Day! Wear this fierce and feathery helm as you celebrate Habitica. Confers no benefit.",
- "headSpecialTurkeyHelmBaseText": "Turkey Helm",
- "headSpecialTurkeyHelmBaseNotes": "Your Turkey Day look will be complete when you don this beaked helm! Confers no benefit.",
- "headSpecialTurkeyHelmGildedText": "Gilded Turkey Helm",
- "headSpecialTurkeyHelmGildedNotes": "Gobble gobble! Bling bling! Confers no benefit.",
+ "headSpecialMammothRiderHelmText": "",
+ "headSpecialMammothRiderHelmNotes": "",
+ "headSpecialPageHelmText": "",
+ "headSpecialPageHelmNotes": "",
+ "headSpecialRoguishRainbowMessengerHoodText": "",
+ "headSpecialRoguishRainbowMessengerHoodNotes": "",
+ "headSpecialClandestineCowlText": "",
+ "headSpecialClandestineCowlNotes": "",
+ "headSpecialSnowSovereignCrownText": "",
+ "headSpecialSnowSovereignCrownNotes": "",
+ "headSpecialSpikedHelmText": "",
+ "headSpecialSpikedHelmNotes": "",
+ "headSpecialDandyHatText": "",
+ "headSpecialDandyHatNotes": "",
+ "headSpecialKabutoText": "",
+ "headSpecialKabutoNotes": "",
+ "headSpecialNamingDay2017Text": "",
+ "headSpecialNamingDay2017Notes": "",
+ "headSpecialTurkeyHelmBaseText": "",
+ "headSpecialTurkeyHelmBaseNotes": "",
+ "headSpecialTurkeyHelmGildedText": "",
+ "headSpecialTurkeyHelmGildedNotes": "",
"headSpecialNyeText": "Файна шапка для вечірки",
- "headSpecialNyeNotes": "You've received an Absurd Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
+ "headSpecialNyeNotes": "",
"headSpecialYetiText": "Шолом приборкувача Єті",
- "headSpecialYetiNotes": "An adorably fearsome hat. Increases Strength by <%= str %>. Limited Edition 2013-2014 Winter Gear.",
+ "headSpecialYetiNotes": "",
"headSpecialSkiText": "Шолом лижника-вбивці",
- "headSpecialSkiNotes": "Keeps the wearer's identity secret... and their face toasty. Increases Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
+ "headSpecialSkiNotes": "",
"headSpecialCandycaneText": "Карамельний капелюх",
- "headSpecialCandycaneNotes": "This is the most delicious hat in the world. It's also known to appear and disappear mysteriously. Increases Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
+ "headSpecialCandycaneNotes": "",
"headSpecialSnowflakeText": "Корона „Сніжинка“",
- "headSpecialSnowflakeNotes": "The wearer of this crown is never cold. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.",
+ "headSpecialSnowflakeNotes": "",
"headSpecialSpringRogueText": "Таємнича котяча маска",
- "headSpecialSpringRogueNotes": "Nobody will EVER guess that you are a cat burglar! Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.",
+ "headSpecialSpringRogueNotes": "",
"headSpecialSpringWarriorText": "Шолом сталевої конюшини",
- "headSpecialSpringWarriorNotes": "Welded from sweet meadow clover, this helmet can resist even the mightiest blow. Increases Strength by <%= str %>. Limited Edition 2014 Spring Gear.",
+ "headSpecialSpringWarriorNotes": "",
"headSpecialSpringMageText": "Сирний капелюх",
- "headSpecialSpringMageNotes": "This hat stores lots of powerful magic! Try not to nibble it. Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.",
+ "headSpecialSpringMageNotes": "",
"headSpecialSpringHealerText": "Корона дружби",
- "headSpecialSpringHealerNotes": "This crown symbolizes loyalty and companionship. A dog is an adventurer's best friend, after all! Increases Intelligence by <%= int %>. Limited Edition 2014 Spring Gear.",
- "headSpecialSummerRogueText": "Pirate Hat",
- "headSpecialSummerRogueNotes": "Only the most productive of pirates can wear this fine hat. Increases Perception by <%= per %>. Limited Edition 2014 Summer Gear.",
- "headSpecialSummerWarriorText": "Swashbuckler Bandana",
- "headSpecialSummerWarriorNotes": "This soft, salty cloth fills its wearer with strength. Increases Strength by <%= str %>. Limited Edition 2014 Summer Gear.",
- "headSpecialSummerMageText": "Kelp-Wrapped Hat",
- "headSpecialSummerMageNotes": "What could be more magical than a hat wrapped in seaweed? Increases Perception by <%= per %>. Limited Edition 2014 Summer Gear.",
- "headSpecialSummerHealerText": "Coral Crown",
- "headSpecialSummerHealerNotes": "Enables its wearer to heal damaged reefs. Increases Intelligence by <%= int %>. Limited Edition 2014 Summer Gear.",
- "headSpecialFallRogueText": "Bloodred Hood",
- "headSpecialFallRogueNotes": "A Vampire Smiter's identity must always be hidden. Increases Perception by <%= per %>. Limited Edition 2014 Autumn Gear.",
- "headSpecialFallWarriorText": "Monster Scalp of Science",
- "headSpecialFallWarriorNotes": "Graft on this helm! It's only SLIGHTLY used. Increases Strength by <%= str %>. Limited Edition 2014 Autumn Gear.",
- "headSpecialFallMageText": "Pointy Hat",
- "headSpecialFallMageNotes": "Magic is woven into every thread of this hat. Increases Perception by <%= per %>. Limited Edition 2014 Autumn Gear.",
- "headSpecialFallHealerText": "Head Bandages",
- "headSpecialFallHealerNotes": "Highly sanitary and very fashionable. Increases Intelligence by <%= int %>. Limited Edition 2014 Autumn Gear.",
- "headSpecialNye2014Text": "Silly Party Hat",
- "headSpecialNye2014Notes": "You've received a Silly Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
- "headSpecialWinter2015RogueText": "Icicle Drake Mask",
- "headSpecialWinter2015RogueNotes": "You are truly, definitely, absolutely a genuine Icicle Drake. You are not infiltrating the Icicle Drake hives. You have no interest at all in the hoards of riches rumored to lie in their frigid tunnels. Rawr. Increases Perception by <%= per %>. Limited Edition 2014-2015 Winter Gear.",
- "headSpecialWinter2015WarriorText": "Gingerbread Helm",
- "headSpecialWinter2015WarriorNotes": "Think, think, think as hard as you can. Increases Strength by <%= str %>. Limited Edition 2014-2015 Winter Gear.",
- "headSpecialWinter2015MageText": "Aurora Hat",
- "headSpecialWinter2015MageNotes": "The fabric of this hat shifts and glows when the wearer studies. Increases Perception by <%= per %>. Limited Edition 2014-2015 Winter Gear.",
- "headSpecialWinter2015HealerText": "Snuggly Earmuffs",
- "headSpecialWinter2015HealerNotes": "These warm earmuffs keep out chills and distracting noises. Increases Intelligence by <%= int %>. Limited Edition 2014-2015 Winter Gear.",
- "headSpecialSpring2015RogueText": "Fireproof Helm",
- "headSpecialSpring2015RogueNotes": "Fire? HAH! You squeak fiercely in the face of fire! Increases Perception by <%= per %>. Limited Edition 2015 Spring Gear.",
- "headSpecialSpring2015WarriorText": "Beware Helm",
- "headSpecialSpring2015WarriorNotes": "Beware the Helm! Only a fierce doggy can wear it. Stop laughing. Increases Strength by <%= str %>. Limited Edition 2015 Spring Gear.",
- "headSpecialSpring2015MageText": "Stage Mage Hat",
- "headSpecialSpring2015MageNotes": "Which came first, the bunny or the hat? Increases Perception by <%= per %>. Limited Edition 2015 Spring Gear.",
- "headSpecialSpring2015HealerText": "Comforting Crown",
- "headSpecialSpring2015HealerNotes": "The pearl at the center of this crown calms and comforts those around it. Increases Intelligence by <%= int %>. Limited Edition 2015 Spring Gear.",
- "headSpecialSummer2015RogueText": "Renegade Hat",
- "headSpecialSummer2015RogueNotes": "This pirate hat fell overboard and has been decorated with scraps of fire coral. Increases Perception by <%= per %>. Limited Edition 2015 Summer Gear.",
- "headSpecialSummer2015WarriorText": "Jeweled Oceanic Helm",
- "headSpecialSummer2015WarriorNotes": "Crafted of deep-ocean metal by the artisans of Dilatory, this helm is strong and handsome. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.",
- "headSpecialSummer2015MageText": "Soothsayer Scarf",
- "headSpecialSummer2015MageNotes": "Hidden power shines in the threads of this scarf. Increases Perception by <%= per %>. Limited Edition 2015 Summer Gear.",
- "headSpecialSummer2015HealerText": "Sailor's Cap",
- "headSpecialSummer2015HealerNotes": "With your sailor's cap set firmly on your head, you can navigate even the stormiest seas! Increases Intelligence by <%= int %>. Limited Edition 2015 Summer Gear.",
- "headSpecialFall2015RogueText": "Bat-tle Wings",
- "headSpecialFall2015RogueNotes": "Echolocate your enemies with this powerful helm! Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.",
- "headSpecialFall2015WarriorText": "Scarecrow Hat",
- "headSpecialFall2015WarriorNotes": "Everyone would want this hat--if they only had a brain. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.",
- "headSpecialFall2015MageText": "Stitched Hat",
- "headSpecialFall2015MageNotes": "Every stitch in this hat augments its power. Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.",
- "headSpecialFall2015HealerText": "Hat of Frog",
- "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.",
- "headSpecialNye2015Text": "Ridiculous Party Hat",
- "headSpecialNye2015Notes": "You've received a Ridiculous Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
- "headSpecialWinter2016RogueText": "Cocoa Helm",
- "headSpecialWinter2016RogueNotes": "The protective scarf on this cozy helm is only removed to sip warm winter beverages. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.",
- "headSpecialWinter2016WarriorText": "Snowman Cap",
- "headSpecialWinter2016WarriorNotes": "Brr! This mighty helm is truly powerful... until it melts. Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.",
- "headSpecialWinter2016MageText": "Snowboarder Hood",
- "headSpecialWinter2016MageNotes": "Keeps the snow out of your eyes while you're casting spells. Increases Perception by <%= per %>. Limited Edition 2015-2016 Winter Gear.",
- "headSpecialWinter2016HealerText": "Fairy Wing Helm",
- "headSpecialWinter2016HealerNotes": "Thesewingsfluttersoquicklythattheyblur! Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.",
- "headSpecialSpring2016RogueText": "Good Doggy Mask",
- "headSpecialSpring2016RogueNotes": "Aww, what a cute puppy! Come here and let me pet your head. ...Hey, where did all my Gold go? Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.",
- "headSpecialSpring2016WarriorText": "Mouse Guard Helm",
- "headSpecialSpring2016WarriorNotes": "Never again shall you be bopped on the head! Let them try! Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.",
- "headSpecialSpring2016MageText": "Grand Malkin Hat",
- "headSpecialSpring2016MageNotes": "Apparel to set you above the mere alley-mages of the world. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.",
- "headSpecialSpring2016HealerText": "Blossom Diadem",
- "headSpecialSpring2016HealerNotes": "It glints with the potential of new life ready to burst forth. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.",
- "headSpecialSummer2016RogueText": "Eel Helm",
- "headSpecialSummer2016RogueNotes": "Peek out from rocky crevices while wearing this stealthy helm. Increases Perception by <%= per %>. Limited Edition 2016 Summer Gear.",
- "headSpecialSummer2016WarriorText": "Shark Helmet",
- "headSpecialSummer2016WarriorNotes": "Bite those tough tasks with this fearsome helm! Increases Strength by <%= str %>. Limited Edition 2016 Summer Gear.",
- "headSpecialSummer2016MageText": "Blowspout Hat",
- "headSpecialSummer2016MageNotes": "Magical water constantly sprays from this hat. Increases Perception by <%= per %>. Limited Edition 2016 Summer Gear.",
- "headSpecialSummer2016HealerText": "Seahorse Helm",
- "headSpecialSummer2016HealerNotes": "This helm indicates that the wearer was trained by the magical healing seahorses of Dilatory. Increases Intelligence by <%= int %>. Limited Edition 2016 Summer Gear.",
- "headSpecialFall2016RogueText": "Black Widow Helm",
- "headSpecialFall2016RogueNotes": "The legs on this helm are constantly twitching. Increases Perception by <%= per %>. Limited Edition 2016 Autumn Gear.",
- "headSpecialFall2016WarriorText": "Gnarled Bark Helm",
- "headSpecialFall2016WarriorNotes": "This swamp-sogged helm is covered with bits of bog. Increases Strength by <%= str %>. Limited Edition 2016 Autumn Gear.",
- "headSpecialFall2016MageText": "Hood of Wickedness",
- "headSpecialFall2016MageNotes": "Conceal your plotting beneath this shadowy hood. Increases Perception by <%= per %>. Limited Edition 2016 Autumn Gear.",
- "headSpecialFall2016HealerText": "Medusa's Crown",
- "headSpecialFall2016HealerNotes": "Woe to anyone who looks you in the eyes... Increases Intelligence by <%= int %>. Limited Edition 2016 Autumn Gear.",
- "headSpecialNye2016Text": "Whimsical Party Hat",
- "headSpecialNye2016Notes": "You've received a Whimsical Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
- "headSpecialWinter2017RogueText": "Frosty Helm",
- "headSpecialWinter2017RogueNotes": "Fashioned from ice crystals, this helm will help you move unnoticed through wintry landscapes. Increases Perception by <%= per %>. Limited Edition 2016-2017 Winter Gear.",
- "headSpecialWinter2017WarriorText": "Hockey Helm",
- "headSpecialWinter2017WarriorNotes": "This is a hard and durable helmet, made to withstand impacts from ice or even dark red dailies! Increases Strength by <%= str %>. Limited Edition 2016-2017 Winter Gear.",
- "headSpecialWinter2017MageText": "Winter Wolf Helm",
- "headSpecialWinter2017MageNotes": "This helm, fashioned in the image of the legendary Winter Wolf, will keep your head warm and your vision sharp. Increases Perception by <%= per %>. Limited Edition 2016-2017 Winter Gear.",
- "headSpecialWinter2017HealerText": "Sparkling Blossom Helm",
- "headSpecialWinter2017HealerNotes": "These glittering petals focus brainpower! Increases Intelligence by <%= int %>. Limited Edition 2016-2017 Winter Gear.",
- "headSpecialSpring2017RogueText": "Sneaky Bunny Helm",
- "headSpecialSpring2017RogueNotes": "This mask will prevent your cuteness from giving you away as you sneak up on Dailies (or clovers)! Increases Perception by <%= per %>. Limited Edition 2017 Spring Gear.",
- "headSpecialSpring2017WarriorText": "Feline Helm",
- "headSpecialSpring2017WarriorNotes": "Protect your adorable, fuzzy noggin with this finely decorated helm. Increases Strength by <%= str %>. Limited Edition 2017 Spring Gear.",
- "headSpecialSpring2017MageText": "Canine Conjuror Hat",
- "headSpecialSpring2017MageNotes": "This hat can help you cast mighty spells… Or you can just use it to summon tennis balls. Your choice. Increases Perception by <%= per %>. Limited Edition 2017 Spring Gear.",
- "headSpecialSpring2017HealerText": "Petal Circlet",
- "headSpecialSpring2017HealerNotes": "This delicate crown emits the comforting scent of new Spring blooms. Increases Intelligence by <%= int %>. Limited Edition 2017 Spring Gear.",
- "headSpecialSummer2017RogueText": "Sea Dragon Helm",
- "headSpecialSummer2017RogueNotes": "This helm changes colors to help you blend in with your surroundings. Increases Perception by <%= per %>. Limited Edition 2017 Summer Gear.",
- "headSpecialSummer2017WarriorText": "Sandcastle Helm",
- "headSpecialSummer2017WarriorNotes": "The finest helm anyone could hope to wear... at least, until the tide comes in. Increases Strength by <%= str %>. Limited Edition 2017 Summer Gear.",
- "headSpecialSummer2017MageText": "Whirlpool Hat",
- "headSpecialSummer2017MageNotes": "This hat is composed entirely of a swirling, inverted whirlpool. Increases Perception by <%= per %>. Limited Edition 2017 Summer Gear.",
- "headSpecialSummer2017HealerText": "Crown of Sea Creatures",
- "headSpecialSummer2017HealerNotes": "This helm is made up of friendly sea creatures who are temporarily resting on your head, giving you sage advice. Increases Intelligence by <%= int %>. Limited Edition 2017 Summer Gear.",
- "headSpecialFall2017RogueText": "Jack-o-Lantern Helm",
- "headSpecialFall2017RogueNotes": "Ready for treats? Time to don this festive, glowing helm! Increases Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
- "headSpecialFall2017WarriorText": "Candy Corn Helm",
- "headSpecialFall2017WarriorNotes": "This helm might look like a treat, but wayward tasks won't find it so sweet! Increases Strength by <%= str %>. Limited Edition 2017 Autumn Gear.",
- "headSpecialFall2017MageText": "Masquerade Helm",
- "headSpecialFall2017MageNotes": "When you appear in this feathery hat, everyone will be left guessing the identity of the magical stranger in the room! Increases Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
- "headSpecialFall2017HealerText": "Haunted House Helm",
- "headSpecialFall2017HealerNotes": "Invite spooky spirits and friendly creatures to seek your healing powers in this helm! Increases Intelligence by <%= int %>. Limited Edition 2017 Autumn Gear.",
- "headSpecialNye2017Text": "Fanciful Party Hat",
- "headSpecialNye2017Notes": "You've received a Fanciful Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
- "headSpecialWinter2018RogueText": "Reindeer Helm",
- "headSpecialWinter2018RogueNotes": "The perfect holiday disguise, with a built-in headlight! Increases Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
- "headSpecialWinter2018WarriorText": "Giftbox Helm",
- "headSpecialWinter2018WarriorNotes": "This jaunty box top and bow are not only festive, but quite sturdy. Increases Strength by <%= str %>. Limited Edition 2017-2018 Winter Gear.",
- "headSpecialWinter2018MageText": "Sparkly Top Hat",
- "headSpecialWinter2018MageNotes": "Ready for some extra special magic? This glittery hat is sure to boost all your spells! Increases Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
- "headSpecialWinter2018HealerText": "Mistletoe Hood",
- "headSpecialWinter2018HealerNotes": "This fancy hood will keep you warm with happy holiday feelings! Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.",
- "headSpecialSpring2018RogueText": "Duck-Billed Helm",
- "headSpecialSpring2018RogueNotes": "Quack quack! Your cuteness belies your clever and sneaky nature. Increases Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
- "headSpecialSpring2018WarriorText": "Helm of Rays",
- "headSpecialSpring2018WarriorNotes": "The brightness of this helm will dazzle any enemies nearby! Increases Strength by <%= str %>. Limited Edition 2018 Spring Gear.",
- "headSpecialSpring2018MageText": "Tulip Helm",
- "headSpecialSpring2018MageNotes": "The fancy petals of this helm will grant you special springtime magic. Increases Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
- "headSpecialSpring2018HealerText": "Garnet Circlet",
- "headSpecialSpring2018HealerNotes": "The polished gems of this circlet will enhance your mental energy. Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.",
- "headSpecialSummer2018RogueText": "Fishing Sun Hat",
- "headSpecialSummer2018RogueNotes": "Provides comfort and protection from the harsh glare of the summer sun over the water. Especially important if you're more accustomed to staying stealthy in the shadows! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.",
- "headSpecialSummer2018WarriorText": "Betta Fish Barbute",
- "headSpecialSummer2018WarriorNotes": "Show everyone you're the alpha betta with this flamboyant helm! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.",
- "headSpecialSummer2018MageText": "Lionfish Crest",
- "headSpecialSummer2018MageNotes": "Glare dolorously upon anyone who dares say you look like a “tastyfish”. Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.",
- "headSpecialSummer2018HealerText": "Merfolk Monarch Crown",
- "headSpecialSummer2018HealerNotes": "Adorned with aquamarine, this finned diadem marks leadership of folk, fish, and those who are a bit of both! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.",
- "headSpecialFall2018RogueText": "Alter Ego Face",
- "headSpecialFall2018RogueNotes": "Most of us hide away our inward struggles. This mask shows that we all experience tension between our good and bad impulses. Plus it comes with a sweet hat! Increases Perception by <%= per %>. Limited Edition 2018 Autumn Gear.",
- "headSpecialFall2018WarriorText": "Minotaur Visage",
- "headSpecialFall2018WarriorNotes": "This fearsome mask shows you can really take your tasks by the horns! Increases Strength by <%= str %>. Limited Edition 2018 Autumn Gear.",
- "headSpecialFall2018MageText": "Candymancer's Hat",
- "headSpecialFall2018MageNotes": "This pointy hat is imbued with powerful spells of sweetness. Careful, if it gets wet it may become sticky! Increases Perception by <%= per %>. Limited Edition 2018 Autumn Gear.",
- "headSpecialFall2018HealerText": "Ravenous Helm",
- "headSpecialFall2018HealerNotes": "This helm is fashioned from a carnivorous plant renowned for its ability to dispatch zombies and other inconveniences. Just watch out that it doesn't chew on your head. Increases Intelligence by <%= int %>. Limited Edition 2018 Autumn Gear.",
- "headSpecialNye2018Text": "Outlandish Party Hat",
- "headSpecialNye2018Notes": "You've received an Outlandish Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
- "headSpecialWinter2019RogueText": "Poinsettia Helm",
- "headSpecialWinter2019RogueNotes": "This leafy helm will attain its brightest red color right around the darkest days of winter, helping you blend in with holiday decor! Increases Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
- "headSpecialWinter2019WarriorText": "Glacial Helm",
- "headSpecialWinter2019WarriorNotes": "It's important to keep a cool head! This icy helm will protect you from any opponent's blows. Increases Strength by <%= str %>. Limited Edition 2018-2019 Winter Gear.",
- "headSpecialWinter2019MageText": "Flaming Fireworks",
- "headSpecialWinter2019MageNotes": "Stand well back and watch the sparks fly! Your tasks cannot stand against this might! Increases Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
- "headSpecialWinter2019HealerText": "Starry Crown",
- "headSpecialWinter2019HealerNotes": "On the darkest, coldest winter night, one particular star shines its brightest. This crown is made from metal from that star, to help you shine! Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
- "headSpecialGaymerxText": "Rainbow Warrior Helm",
- "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.",
+ "headSpecialSpringHealerNotes": "",
+ "headSpecialSummerRogueText": "",
+ "headSpecialSummerRogueNotes": "",
+ "headSpecialSummerWarriorText": "",
+ "headSpecialSummerWarriorNotes": "",
+ "headSpecialSummerMageText": "",
+ "headSpecialSummerMageNotes": "",
+ "headSpecialSummerHealerText": "",
+ "headSpecialSummerHealerNotes": "",
+ "headSpecialFallRogueText": "",
+ "headSpecialFallRogueNotes": "",
+ "headSpecialFallWarriorText": "",
+ "headSpecialFallWarriorNotes": "",
+ "headSpecialFallMageText": "",
+ "headSpecialFallMageNotes": "",
+ "headSpecialFallHealerText": "",
+ "headSpecialFallHealerNotes": "",
+ "headSpecialNye2014Text": "",
+ "headSpecialNye2014Notes": "",
+ "headSpecialWinter2015RogueText": "",
+ "headSpecialWinter2015RogueNotes": "",
+ "headSpecialWinter2015WarriorText": "",
+ "headSpecialWinter2015WarriorNotes": "",
+ "headSpecialWinter2015MageText": "",
+ "headSpecialWinter2015MageNotes": "",
+ "headSpecialWinter2015HealerText": "",
+ "headSpecialWinter2015HealerNotes": "",
+ "headSpecialSpring2015RogueText": "",
+ "headSpecialSpring2015RogueNotes": "",
+ "headSpecialSpring2015WarriorText": "",
+ "headSpecialSpring2015WarriorNotes": "",
+ "headSpecialSpring2015MageText": "",
+ "headSpecialSpring2015MageNotes": "",
+ "headSpecialSpring2015HealerText": "",
+ "headSpecialSpring2015HealerNotes": "",
+ "headSpecialSummer2015RogueText": "",
+ "headSpecialSummer2015RogueNotes": "",
+ "headSpecialSummer2015WarriorText": "",
+ "headSpecialSummer2015WarriorNotes": "",
+ "headSpecialSummer2015MageText": "",
+ "headSpecialSummer2015MageNotes": "",
+ "headSpecialSummer2015HealerText": "",
+ "headSpecialSummer2015HealerNotes": "",
+ "headSpecialFall2015RogueText": "",
+ "headSpecialFall2015RogueNotes": "",
+ "headSpecialFall2015WarriorText": "",
+ "headSpecialFall2015WarriorNotes": "",
+ "headSpecialFall2015MageText": "",
+ "headSpecialFall2015MageNotes": "",
+ "headSpecialFall2015HealerText": "",
+ "headSpecialFall2015HealerNotes": "",
+ "headSpecialNye2015Text": "",
+ "headSpecialNye2015Notes": "",
+ "headSpecialWinter2016RogueText": "",
+ "headSpecialWinter2016RogueNotes": "",
+ "headSpecialWinter2016WarriorText": "",
+ "headSpecialWinter2016WarriorNotes": "",
+ "headSpecialWinter2016MageText": "",
+ "headSpecialWinter2016MageNotes": "",
+ "headSpecialWinter2016HealerText": "",
+ "headSpecialWinter2016HealerNotes": "",
+ "headSpecialSpring2016RogueText": "",
+ "headSpecialSpring2016RogueNotes": "",
+ "headSpecialSpring2016WarriorText": "",
+ "headSpecialSpring2016WarriorNotes": "",
+ "headSpecialSpring2016MageText": "",
+ "headSpecialSpring2016MageNotes": "",
+ "headSpecialSpring2016HealerText": "",
+ "headSpecialSpring2016HealerNotes": "",
+ "headSpecialSummer2016RogueText": "",
+ "headSpecialSummer2016RogueNotes": "",
+ "headSpecialSummer2016WarriorText": "",
+ "headSpecialSummer2016WarriorNotes": "",
+ "headSpecialSummer2016MageText": "",
+ "headSpecialSummer2016MageNotes": "",
+ "headSpecialSummer2016HealerText": "",
+ "headSpecialSummer2016HealerNotes": "",
+ "headSpecialFall2016RogueText": "",
+ "headSpecialFall2016RogueNotes": "",
+ "headSpecialFall2016WarriorText": "",
+ "headSpecialFall2016WarriorNotes": "",
+ "headSpecialFall2016MageText": "",
+ "headSpecialFall2016MageNotes": "",
+ "headSpecialFall2016HealerText": "",
+ "headSpecialFall2016HealerNotes": "",
+ "headSpecialNye2016Text": "",
+ "headSpecialNye2016Notes": "",
+ "headSpecialWinter2017RogueText": "",
+ "headSpecialWinter2017RogueNotes": "",
+ "headSpecialWinter2017WarriorText": "",
+ "headSpecialWinter2017WarriorNotes": "",
+ "headSpecialWinter2017MageText": "",
+ "headSpecialWinter2017MageNotes": "",
+ "headSpecialWinter2017HealerText": "",
+ "headSpecialWinter2017HealerNotes": "",
+ "headSpecialSpring2017RogueText": "",
+ "headSpecialSpring2017RogueNotes": "",
+ "headSpecialSpring2017WarriorText": "",
+ "headSpecialSpring2017WarriorNotes": "",
+ "headSpecialSpring2017MageText": "",
+ "headSpecialSpring2017MageNotes": "",
+ "headSpecialSpring2017HealerText": "",
+ "headSpecialSpring2017HealerNotes": "",
+ "headSpecialSummer2017RogueText": "",
+ "headSpecialSummer2017RogueNotes": "",
+ "headSpecialSummer2017WarriorText": "",
+ "headSpecialSummer2017WarriorNotes": "",
+ "headSpecialSummer2017MageText": "",
+ "headSpecialSummer2017MageNotes": "",
+ "headSpecialSummer2017HealerText": "",
+ "headSpecialSummer2017HealerNotes": "",
+ "headSpecialFall2017RogueText": "",
+ "headSpecialFall2017RogueNotes": "",
+ "headSpecialFall2017WarriorText": "",
+ "headSpecialFall2017WarriorNotes": "",
+ "headSpecialFall2017MageText": "",
+ "headSpecialFall2017MageNotes": "",
+ "headSpecialFall2017HealerText": "",
+ "headSpecialFall2017HealerNotes": "",
+ "headSpecialNye2017Text": "",
+ "headSpecialNye2017Notes": "",
+ "headSpecialWinter2018RogueText": "",
+ "headSpecialWinter2018RogueNotes": "",
+ "headSpecialWinter2018WarriorText": "",
+ "headSpecialWinter2018WarriorNotes": "",
+ "headSpecialWinter2018MageText": "",
+ "headSpecialWinter2018MageNotes": "",
+ "headSpecialWinter2018HealerText": "",
+ "headSpecialWinter2018HealerNotes": "",
+ "headSpecialSpring2018RogueText": "",
+ "headSpecialSpring2018RogueNotes": "",
+ "headSpecialSpring2018WarriorText": "",
+ "headSpecialSpring2018WarriorNotes": "",
+ "headSpecialSpring2018MageText": "",
+ "headSpecialSpring2018MageNotes": "",
+ "headSpecialSpring2018HealerText": "",
+ "headSpecialSpring2018HealerNotes": "",
+ "headSpecialSummer2018RogueText": "",
+ "headSpecialSummer2018RogueNotes": "",
+ "headSpecialSummer2018WarriorText": "",
+ "headSpecialSummer2018WarriorNotes": "",
+ "headSpecialSummer2018MageText": "",
+ "headSpecialSummer2018MageNotes": "",
+ "headSpecialSummer2018HealerText": "",
+ "headSpecialSummer2018HealerNotes": "",
+ "headSpecialFall2018RogueText": "",
+ "headSpecialFall2018RogueNotes": "",
+ "headSpecialFall2018WarriorText": "",
+ "headSpecialFall2018WarriorNotes": "",
+ "headSpecialFall2018MageText": "",
+ "headSpecialFall2018MageNotes": "",
+ "headSpecialFall2018HealerText": "",
+ "headSpecialFall2018HealerNotes": "",
+ "headSpecialNye2018Text": "",
+ "headSpecialNye2018Notes": "",
+ "headSpecialWinter2019RogueText": "",
+ "headSpecialWinter2019RogueNotes": "",
+ "headSpecialWinter2019WarriorText": "",
+ "headSpecialWinter2019WarriorNotes": "",
+ "headSpecialWinter2019MageText": "",
+ "headSpecialWinter2019MageNotes": "",
+ "headSpecialWinter2019HealerText": "",
+ "headSpecialWinter2019HealerNotes": "",
+ "headSpecialGaymerxText": "",
+ "headSpecialGaymerxNotes": "",
"headMystery201402Text": "Крилатий шолом",
- "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.",
- "headMystery201405Text": "Flame of Mind",
- "headMystery201405Notes": "Burn away the procrastination! Confers no benefit. May 2014 Subscriber Item.",
- "headMystery201406Text": "Crown of Tentacles",
- "headMystery201406Notes": "The tentacles of this helm gather up magical energy from the water. Confers no benefit. June 2014 Subscriber Item.",
- "headMystery201407Text": "Undersea Explorer Helm",
- "headMystery201407Notes": "This helm makes it easy to explore underwater! It sort of makes you look like a googly-eyed fish, too. Very retro! Confers no benefit. July 2014 Subscriber Item.",
- "headMystery201408Text": "Sun Crown",
- "headMystery201408Notes": "This blazing crown gives its wearer great strength of will. Confers no benefit. August 2014 Subscriber Item.",
- "headMystery201411Text": "Steel Helm of Sporting",
- "headMystery201411Notes": "This is the traditional helmet worn in the beloved Habitican sport of Balance Ball, which consists of covering yourself with heavy protective gear and then committing to a healthy work-life balance..... WHILE PURSUED BY HIPPOGRIFFS. Confers no benefit. November 2014 Subscriber Item.",
+ "headMystery201402Notes": "",
+ "headMystery201405Text": "",
+ "headMystery201405Notes": "",
+ "headMystery201406Text": "",
+ "headMystery201406Notes": "",
+ "headMystery201407Text": "",
+ "headMystery201407Notes": "",
+ "headMystery201408Text": "",
+ "headMystery201408Notes": "",
+ "headMystery201411Text": "",
+ "headMystery201411Notes": "",
"headMystery201412Text": "Шапка \"Пінгвін\"",
- "headMystery201412Notes": "Who's a penguin? Confers no benefit. December 2014 Subscriber Item.",
+ "headMystery201412Notes": "",
"headMystery201501Text": "Зоряний шолом",
- "headMystery201501Notes": "The constellations flicker and swirl in this helm, guiding the wearer's thoughts towards focus. Confers no benefit. January 2015 Subscriber Item.",
- "headMystery201505Text": "Green Knight Helm",
- "headMystery201505Notes": "The green plume on this iron helm waves proudly. Confers no benefit. May 2015 Subscriber Item.",
- "headMystery201508Text": "Cheetah Hat",
- "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.",
- "headMystery201509Text": "Werewolf Mask",
- "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.",
- "headMystery201511Text": "Log Crown",
- "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.",
- "headMystery201512Text": "Winter Flame",
- "headMystery201512Notes": "These flames burn cold with pure intellect. Confers no benefit. December 2015 Subscriber Item.",
- "headMystery201601Text": "Helm of True Resolve",
- "headMystery201601Notes": "Stay resolute, brave champion! Confers no benefit. January 2016 Subscriber Item.",
- "headMystery201602Text": "Heartbreaker Hood",
- "headMystery201602Notes": "Shield your identity from all your admirers. Confers no benefit. February 2016 Subscriber Item.",
- "headMystery201603Text": "Lucky Hat",
- "headMystery201603Notes": "This top hat is a magical good-luck charm. Confers no benefit. March 2016 Subscriber Item.",
- "headMystery201604Text": "Crown o' Flowers",
- "headMystery201604Notes": "These woven flowers make a surprisingly strong helm! Confers no benefit. April 2016 Subscriber Item.",
- "headMystery201605Text": "Marching Bard Hat",
- "headMystery201605Notes": "Seventy-six dragons led the big parade, with a hundred and ten gryphons close at hand! Confers no benefit. May 2016 Subscriber Item.",
- "headMystery201606Text": "Selkie Cap",
- "headMystery201606Notes": "Hum the tune of the ocean as you blend in with the frolicking seals! Confers no benefit. June 2016 Subscriber Item.",
- "headMystery201607Text": "Seafloor Rogue Helm",
- "headMystery201607Notes": "The kelp growing from this helm helps camouflage you. Confers no benefit. July 2016 Subscriber Item.",
- "headMystery201608Text": "Helm of Lightning",
- "headMystery201608Notes": "This crackling helm conducts electricity! Confers no benefit. August 2016 Subscriber Item.",
- "headMystery201609Text": "Cow Hat",
- "headMystery201609Notes": "You'll never want to remooooove this cow hat. Confers no benefit. September 2016 Subscriber Item.",
- "headMystery201610Text": "Spectral Flame",
- "headMystery201610Notes": "These flames will awaken your ghostly power. Confers no benefit. October 2016 Subscriber Item.",
- "headMystery201611Text": "Fancy Feasting Hat",
- "headMystery201611Notes": "You're guaranteed to be the fanciest person at the feast in this plumed chapeau. Confers no benefit. November 2016 Subscriber Item.",
- "headMystery201612Text": "Nutcracker Helm",
- "headMystery201612Notes": "This tall and splendid helm adds a magnificent element to your holiday apparel! Confers no benefit. December 2016 Subscriber Item.",
- "headMystery201702Text": "Heartstealer Hood",
- "headMystery201702Notes": "Though this hood conceals your face, it only magnifies your powers of attraction! Confers no benefit. February 2017 Subscriber Item.",
- "headMystery201703Text": "Shimmer Helm",
- "headMystery201703Notes": "The soft light reflected from this horned helm will soothe even the most enraged foe. Confers no benefit. March 2017 Subscriber Item.",
- "headMystery201705Text": "Feathered Fighter Helm",
- "headMystery201705Notes": "Habitica is known for its fierce and productive Gryphon Warriors! Join their prestigious ranks when you don this feathery helm. Confers no benefit. May 2017 Subscriber Item.",
- "headMystery201707Text": "Jellymancer Helm",
- "headMystery201707Notes": "Need some extra hands for your tasks? This translucent jelly helm has quite a few tentacles to lend you help! Confers no benefit. July 2017 Subscriber Item.",
- "headMystery201710Text": "Imperious Imp Helm",
- "headMystery201710Notes": "This helm makes you look intimidating... but it won't do any favors for your depth perception! Confers no benefit. October 2017 Subscriber Item.",
- "headMystery201712Text": "Candlemancer Crown",
- "headMystery201712Notes": "This crown will bring light and warmth to even the darkest winter night. Confers no benefit. December 2017 Subscriber Item.",
- "headMystery201802Text": "Love Bug Helm",
- "headMystery201802Notes": "The antennae on this helm act as cute dowsing rods, detecting feelings of love and support nearby. Confers no benefit. February 2018 Subscriber Item.",
- "headMystery201803Text": "Daring Dragonfly Circlet",
- "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.",
- "headMystery201805Text": "Phenomenal Peacock Helm",
- "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.",
- "headMystery201806Text": "Alluring Anglerfish Helm",
- "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.",
- "headMystery201807Text": "Sea Serpent Helm",
- "headMystery201807Notes": "The strong scales on this helm will protect you from any manner of oceanic foe. Confers no benefit. July 2018 Subscriber Item.",
- "headMystery201808Text": "Lava Dragon Cowl",
- "headMystery201808Notes": "The glowing horns on this cowl will light your way through underground caverns. Confers no benefit. August 2018 Subscriber Item.",
- "headMystery201809Text": "Crown of Autumn Flowers",
- "headMystery201809Notes": "The last flowers of autumn's warm days are a reminder of the beauty of the season. Confers no benefit. September 2018 Subscriber Item.",
- "headMystery201810Text": "Dark Forest Helm",
- "headMystery201810Notes": "If you find yourself traveling through a spooky place, the glowing red eyes of this helm will surely scare away any enemies in your path. Confers no benefit. October 2018 Subscriber Item.",
- "headMystery201811Text": "Splendid Sorcerer's Hat",
- "headMystery201811Notes": "Wear this feathered hat to stand out at even the fanciest wizardly gatherings! Confers no benefit. November 2018 Subscriber Item.",
- "headMystery201901Text": "Polaris Helm",
- "headMystery201901Notes": "The glowing gems on this helm contain light magically captured from winter auroras. Confers no benefit. January 2019 Subscriber Item.",
- "headMystery301404Text": "Fancy Top Hat",
- "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
- "headMystery301405Text": "Basic Top Hat",
- "headMystery301405Notes": "A basic top hat, just begging to be paired with some fancy head accessories. Confers no benefit. May 3015 Subscriber Item.",
- "headMystery301703Text": "Fancy Feather Hat",
- "headMystery301703Notes": "The feathers for this hat were donated by Miss Prue's Finishing School for Fancy Peacocks. Wear them with pride! Confers no benefit. March 3017 Subscriber Item.",
- "headMystery301704Text": "Pheasant Plume Hat",
- "headMystery301704Notes": "What could be more pleasant than a plume from a pheasant? Confers no benefit. April 3017 Subscriber Item.",
- "headArmoireLunarCrownText": "Soothing Lunar Crown",
- "headArmoireLunarCrownNotes": "This crown strengthens health and sharpens senses, especially when the moon is full. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Soothing Lunar Set (Item 1 of 3).",
- "headArmoireRedHairbowText": "Red Hairbow",
- "headArmoireRedHairbowNotes": "Become strong, tough, and smart while wearing this beautiful Red Hairbow! Increases Strength by <%= str %>, Constitution by <%= con %>, and Intelligence by <%= int %>. Enchanted Armoire: Red Hairbow Set (Item 1 of 2).",
- "headArmoireVioletFloppyHatText": "Violet Floppy Hat",
+ "headMystery201501Notes": "",
+ "headMystery201505Text": "",
+ "headMystery201505Notes": "",
+ "headMystery201508Text": "",
+ "headMystery201508Notes": "",
+ "headMystery201509Text": "",
+ "headMystery201509Notes": "",
+ "headMystery201511Text": "",
+ "headMystery201511Notes": "",
+ "headMystery201512Text": "",
+ "headMystery201512Notes": "",
+ "headMystery201601Text": "",
+ "headMystery201601Notes": "",
+ "headMystery201602Text": "",
+ "headMystery201602Notes": "",
+ "headMystery201603Text": "",
+ "headMystery201603Notes": "",
+ "headMystery201604Text": "",
+ "headMystery201604Notes": "",
+ "headMystery201605Text": "",
+ "headMystery201605Notes": "",
+ "headMystery201606Text": "",
+ "headMystery201606Notes": "",
+ "headMystery201607Text": "",
+ "headMystery201607Notes": "",
+ "headMystery201608Text": "",
+ "headMystery201608Notes": "",
+ "headMystery201609Text": "",
+ "headMystery201609Notes": "",
+ "headMystery201610Text": "",
+ "headMystery201610Notes": "",
+ "headMystery201611Text": "",
+ "headMystery201611Notes": "",
+ "headMystery201612Text": "",
+ "headMystery201612Notes": "",
+ "headMystery201702Text": "",
+ "headMystery201702Notes": "",
+ "headMystery201703Text": "",
+ "headMystery201703Notes": "",
+ "headMystery201705Text": "",
+ "headMystery201705Notes": "",
+ "headMystery201707Text": "",
+ "headMystery201707Notes": "",
+ "headMystery201710Text": "",
+ "headMystery201710Notes": "",
+ "headMystery201712Text": "",
+ "headMystery201712Notes": "",
+ "headMystery201802Text": "",
+ "headMystery201802Notes": "",
+ "headMystery201803Text": "",
+ "headMystery201803Notes": "",
+ "headMystery201805Text": "",
+ "headMystery201805Notes": "",
+ "headMystery201806Text": "",
+ "headMystery201806Notes": "",
+ "headMystery201807Text": "",
+ "headMystery201807Notes": "",
+ "headMystery201808Text": "",
+ "headMystery201808Notes": "",
+ "headMystery201809Text": "",
+ "headMystery201809Notes": "",
+ "headMystery201810Text": "",
+ "headMystery201810Notes": "",
+ "headMystery201811Text": "",
+ "headMystery201811Notes": "",
+ "headMystery201901Text": "",
+ "headMystery201901Notes": "",
+ "headMystery301404Text": "",
+ "headMystery301404Notes": "",
+ "headMystery301405Text": "",
+ "headMystery301405Notes": "",
+ "headMystery301703Text": "",
+ "headMystery301703Notes": "",
+ "headMystery301704Text": "",
+ "headMystery301704Notes": "",
+ "headArmoireLunarCrownText": "",
+ "headArmoireLunarCrownNotes": "",
+ "headArmoireRedHairbowText": "",
+ "headArmoireRedHairbowNotes": "",
+ "headArmoireVioletFloppyHatText": "",
"headArmoireVioletFloppyHatNotes": "У цей простий капелюх було вшито багато заклинань, що надає йому приємний фіолетовий колір. Збільшує спритність на <%= per %>, інтелект на <%= int %> і витривалість на <%= con %>. Зачарований шафа: фіолетовий набір домашнього одягу (елемент 1 з 3).",
- "headArmoireGladiatorHelmText": "Gladiator Helm",
- "headArmoireGladiatorHelmNotes": "To be a gladiator you must be not only strong.... but cunning. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Gladiator Set (Item 1 of 3).",
- "headArmoireRancherHatText": "Rancher Hat",
- "headArmoireRancherHatNotes": "Round up your pets and wrangle your mounts while wearing this magical Rancher Hat! Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 1 of 3).",
- "headArmoireBlueHairbowText": "Blue Hairbow",
+ "headArmoireGladiatorHelmText": "",
+ "headArmoireGladiatorHelmNotes": "",
+ "headArmoireRancherHatText": "",
+ "headArmoireRancherHatNotes": "",
+ "headArmoireBlueHairbowText": "",
"headArmoireBlueHairbowNotes": "Будьте уважними, міцними та розумними, надягаючи цей красивий блакитний бантик! Збільшує спритність на <%= per %>, витривалість на <%= con %> та інтелект на <%= int %>. Зачарований шафа: набір блакитного бантика (елемент 1 з 2).",
- "headArmoireRoyalCrownText": "Royal Crown",
- "headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Increases Strength by <%= str %>. Enchanted Armoire: Royal Set (Item 1 of 3).",
- "headArmoireGoldenLaurelsText": "Golden Laurels",
- "headArmoireGoldenLaurelsNotes": "These golden laurels reward those who have conquered bad habits. Increases Perception and Constitution by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 2 of 3).",
- "headArmoireHornedIronHelmText": "Horned Iron Helm",
- "headArmoireHornedIronHelmNotes": "Fiercely hammered from iron, this horned helmet is nearly impossible to break. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Horned Iron Set (Item 1 of 3).",
- "headArmoireYellowHairbowText": "Yellow Hairbow",
- "headArmoireYellowHairbowNotes": "Become perceptive, strong, and smart while wearing this beautiful Yellow Hairbow! Increases Perception, Strength, and Intelligence by <%= attrs %> each. Enchanted Armoire: Yellow Hairbow Set (Item 1 of 2).",
- "headArmoireRedFloppyHatText": "Red Floppy Hat",
- "headArmoireRedFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a radiant red color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Red Loungewear Set (Item 1 of 3).",
- "headArmoirePlagueDoctorHatText": "Plague Doctor Hat",
- "headArmoirePlagueDoctorHatNotes": "An authentic hat worn by the doctors who battle the Plague of Procrastination! Increases Strength by <%= str %>, Intelligence by <%= int %>, and Constitution by <%= con %>. Enchanted Armoire: Plague Doctor Set (Item 1 of 3).",
- "headArmoireBlackCatText": "Black Cat Hat",
- "headArmoireBlackCatNotes": "This black hat is... purring. And twitching its tail. And breathing? Yeah, you just have a sleeping cat on your head. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.",
- "headArmoireOrangeCatText": "Orange Cat Hat",
- "headArmoireOrangeCatNotes": "This orange hat is... purring. And twitching its tail. And breathing? Yeah, you just have a sleeping cat on your head. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Independent Item.",
- "headArmoireBlueFloppyHatText": "Blue Floppy Hat",
- "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).",
- "headArmoireShepherdHeaddressText": "Shepherd Headdress",
- "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).",
- "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat",
- "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).",
- "headArmoireDragonTamerHelmText": "Dragon Tamer Helm",
- "headArmoireDragonTamerHelmNotes": "You look exactly like a dragon. The perfect camouflage... Increases Intelligence by <%= int %>. Enchanted Armoire: Dragon Tamer Set (Item 1 of 3).",
- "headArmoireBarristerWigText": "Barrister Wig",
- "headArmoireBarristerWigNotes": "This bouncy wig is enough to frighten away even the fiercest foe. Increases Strength by <%= str %>. Enchanted Armoire: Barrister Set (Item 1 of 3).",
- "headArmoireJesterCapText": "Jester Cap",
- "headArmoireJesterCapNotes": "The bells on this hat might distract your opponents, but they just help you focus. Increases Perception by <%= per %>. Enchanted Armoire: Jester Set (Item 1 of 3).",
- "headArmoireMinerHelmetText": "Miner Helmet",
- "headArmoireMinerHelmetNotes": "Protect your head from falling tasks! Increases Intelligence by <%= int %>. Enchanted Armoire: Miner Set (Item 1 of 3).",
- "headArmoireBasicArcherCapText": "Basic Archer Cap",
- "headArmoireBasicArcherCapNotes": "No archer would be complete without a jaunty cap! Increases Perception by <%= per %>. Enchanted Armoire: Basic Archer Set (Item 3 of 3).",
- "headArmoireGraduateCapText": "Graduate Cap",
- "headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
- "headArmoireGreenFloppyHatText": "Green Floppy Hat",
- "headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Green Loungewear Set (Item 1 of 3).",
- "headArmoireCannoneerBandannaText": "Cannoneer Bandanna",
- "headArmoireCannoneerBandannaNotes": "'Tis a cannoneer's life for me! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cannoneer Set (Item 3 of 3).",
- "headArmoireFalconerCapText": "Falconer Cap",
- "headArmoireFalconerCapNotes": "This jaunty cap helps you better understand birds of prey. Increases Intelligence by <%= int %>. Enchanted Armoire: Falconer Set (Item 2 of 3).",
- "headArmoireVermilionArcherHelmText": "Vermilion Archer Helm",
- "headArmoireVermilionArcherHelmNotes": "The magic ruby in this helm will help you aim with laser focus! Increases Perception by <%= per %>. Enchanted Armoire: Vermilion Archer Set (Item 3 of 3).",
- "headArmoireOgreMaskText": "Ogre Mask",
- "headArmoireOgreMaskNotes": "Your enemies will run for the hills when they see an Ogre coming their way! Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Ogre Outfit (Item 1 of 3).",
- "headArmoireIronBlueArcherHelmText": "Iron Blue Archer Helm",
- "headArmoireIronBlueArcherHelmNotes": "Hard-headed? No, you're just well protected. Increases Constitution by <%= con %>. Enchanted Armoire: Iron Archer Set (Item 1 of 3).",
- "headArmoireWoodElfHelmText": "Wood Elf Helm",
- "headArmoireWoodElfHelmNotes": "This helm of leaves may look delicate, but it can protect you from inclement weather and dangerous foes. Increases Constitution by <%= con %>. Enchanted Armoire: Wood Elf Set (Item 1 of 3).",
- "headArmoireRamHeaddressText": "Ram Headdress",
- "headArmoireRamHeaddressNotes": "This elaborate helm is fashioned to look like a ram's head. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Ram Barbarian Set (Item 1 of 3).",
- "headArmoireCrownOfHeartsText": "Crown of Hearts",
- "headArmoireCrownOfHeartsNotes": "This rosy red crown isn't just eye-catching! It will also strengthen your heart against tough tasks. Increases Strength by <%= str %>. Enchanted Armoire: Queen of Hearts Set (Item 1 of 3).",
- "headArmoireMushroomDruidCapText": "Mushroom Druid Cap",
- "headArmoireMushroomDruidCapNotes": "Harvested deep in a misty forest, this cap grants the wearer knowledge of medicinal plants. Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Mushroom Druid Set (Item 1 of 3).",
- "headArmoireMerchantChaperonText": "Merchant Chaperon",
- "headArmoireMerchantChaperonNotes": "This versatile wrapped wool hat will surely make you the most stylish seller in the market! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Merchant Set (Item 1 of 3).",
- "headArmoireVikingHelmText": "Viking Helm",
- "headArmoireVikingHelmNotes": "No horns or wings are found on this helm: those are too easy for enemies to grab! Increases Strength by <%= str %> and Perception by <%= per %>. Enchanted Armoire: Viking Set (Item 2 of 3).",
- "headArmoireSwanFeatherCrownText": "Swan Feather Crown",
- "headArmoireSwanFeatherCrownNotes": "This tiara is lovely and light as a swan's feather! Increases Intelligence by <%= int %>. Enchanted Armoire: Swan Dancer Set (Item 1 of 3).",
- "headArmoireAntiProcrastinationHelmText": "Anti-Procrastination Helm",
- "headArmoireAntiProcrastinationHelmNotes": "This mighty steel helm will help you win the fight to be healthy, happy, and productive! Increases Perception by <%= per %>. Enchanted Armoire: Anti-Procrastination Set (Item 1 of 3).",
- "headArmoireCandlestickMakerHatText": "Candlestick Maker Hat",
- "headArmoireCandlestickMakerHatNotes": "A jaunty hat makes every job more fun, and candlemaking is no exception! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Candlestick Maker Set (Item 2 of 3).",
- "headArmoireLamplightersTopHatText": "Lamplighter's Top Hat",
- "headArmoireLamplightersTopHatNotes": "This jaunty black hat completes your lamp-lighting ensemble! Increases Constitution by <%= con %>. Enchanted Armoire: Lamplighter's Set (Item 3 of 4).",
- "headArmoireCoachDriversHatText": "Coach Driver's Hat",
- "headArmoireCoachDriversHatNotes": "This hat is dressy, but not quite so dressy as a top hat. Make sure you don't lose it as you drive speedily across the land! Increases Intelligence by <%= int %>. Enchanted Armoire: Coach Driver Set (Item 2 of 3).",
- "headArmoireCrownOfDiamondsText": "Crown of Diamonds",
- "headArmoireCrownOfDiamondsNotes": "This shining crown isn't just a great hat; it will also sharpen your mind! Increases Intelligence by <%= int %>. Enchanted Armoire: King of Diamonds Set (Item 2 of 4).",
- "headArmoireFlutteryWigText": "Fluttery Wig",
- "headArmoireFlutteryWigNotes": "This fine powdered wig has plenty of room for your butterflies to rest if they get tired while doing your bidding. Increases Intelligence, Perception, and Strength by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 2 of 4).",
- "headArmoireBirdsNestText": "Bird's Nest",
- "headArmoireBirdsNestNotes": "If you start feeling movement and hearing chirps, your new hat might have turned into new friends. Increases Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
- "headArmoirePaperBagText": "Paper Bag",
- "headArmoirePaperBagNotes": "This bag is a hilarious but surprisingly protective helm (don't worry, we know you look good under there!). Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
- "headArmoireBigWigText": "Big Wig",
- "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.",
- "headArmoireGlassblowersHatText": "Glassblower's Hat",
- "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).",
- "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress",
- "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).",
- "headArmoireJeweledArcherHelmText": "Jeweled Archer Helm",
- "headArmoireJeweledArcherHelmNotes": "This helm may look ornate, but it's also exceedingly light and strong. Increases Intelligence by <%= int %>. Enchanted Armoire: Jeweled Archer Set (Item 1 of 3).",
- "headArmoireVeilOfSpadesText": "Veil of Spades",
- "headArmoireVeilOfSpadesNotes": "A shadowy and mysterious veil that will boost your stealth. Increases Perception by <%= per %>. Enchanted Armoire: Ace of Spades Set (Item 1 of 3).",
+ "headArmoireRoyalCrownText": "",
+ "headArmoireRoyalCrownNotes": "",
+ "headArmoireGoldenLaurelsText": "",
+ "headArmoireGoldenLaurelsNotes": "",
+ "headArmoireHornedIronHelmText": "",
+ "headArmoireHornedIronHelmNotes": "",
+ "headArmoireYellowHairbowText": "",
+ "headArmoireYellowHairbowNotes": "",
+ "headArmoireRedFloppyHatText": "",
+ "headArmoireRedFloppyHatNotes": "",
+ "headArmoirePlagueDoctorHatText": "",
+ "headArmoirePlagueDoctorHatNotes": "",
+ "headArmoireBlackCatText": "",
+ "headArmoireBlackCatNotes": "",
+ "headArmoireOrangeCatText": "",
+ "headArmoireOrangeCatNotes": "",
+ "headArmoireBlueFloppyHatText": "",
+ "headArmoireBlueFloppyHatNotes": "",
+ "headArmoireShepherdHeaddressText": "",
+ "headArmoireShepherdHeaddressNotes": "",
+ "headArmoireCrystalCrescentHatText": "",
+ "headArmoireCrystalCrescentHatNotes": "",
+ "headArmoireDragonTamerHelmText": "",
+ "headArmoireDragonTamerHelmNotes": "",
+ "headArmoireBarristerWigText": "",
+ "headArmoireBarristerWigNotes": "",
+ "headArmoireJesterCapText": "",
+ "headArmoireJesterCapNotes": "",
+ "headArmoireMinerHelmetText": "",
+ "headArmoireMinerHelmetNotes": "",
+ "headArmoireBasicArcherCapText": "",
+ "headArmoireBasicArcherCapNotes": "",
+ "headArmoireGraduateCapText": "",
+ "headArmoireGraduateCapNotes": "",
+ "headArmoireGreenFloppyHatText": "",
+ "headArmoireGreenFloppyHatNotes": "",
+ "headArmoireCannoneerBandannaText": "",
+ "headArmoireCannoneerBandannaNotes": "",
+ "headArmoireFalconerCapText": "",
+ "headArmoireFalconerCapNotes": "",
+ "headArmoireVermilionArcherHelmText": "",
+ "headArmoireVermilionArcherHelmNotes": "",
+ "headArmoireOgreMaskText": "",
+ "headArmoireOgreMaskNotes": "",
+ "headArmoireIronBlueArcherHelmText": "",
+ "headArmoireIronBlueArcherHelmNotes": "",
+ "headArmoireWoodElfHelmText": "",
+ "headArmoireWoodElfHelmNotes": "",
+ "headArmoireRamHeaddressText": "",
+ "headArmoireRamHeaddressNotes": "",
+ "headArmoireCrownOfHeartsText": "",
+ "headArmoireCrownOfHeartsNotes": "",
+ "headArmoireMushroomDruidCapText": "",
+ "headArmoireMushroomDruidCapNotes": "",
+ "headArmoireMerchantChaperonText": "",
+ "headArmoireMerchantChaperonNotes": "",
+ "headArmoireVikingHelmText": "",
+ "headArmoireVikingHelmNotes": "",
+ "headArmoireSwanFeatherCrownText": "",
+ "headArmoireSwanFeatherCrownNotes": "",
+ "headArmoireAntiProcrastinationHelmText": "",
+ "headArmoireAntiProcrastinationHelmNotes": "",
+ "headArmoireCandlestickMakerHatText": "",
+ "headArmoireCandlestickMakerHatNotes": "",
+ "headArmoireLamplightersTopHatText": "",
+ "headArmoireLamplightersTopHatNotes": "",
+ "headArmoireCoachDriversHatText": "",
+ "headArmoireCoachDriversHatNotes": "",
+ "headArmoireCrownOfDiamondsText": "",
+ "headArmoireCrownOfDiamondsNotes": "",
+ "headArmoireFlutteryWigText": "",
+ "headArmoireFlutteryWigNotes": "",
+ "headArmoireBirdsNestText": "",
+ "headArmoireBirdsNestNotes": "",
+ "headArmoirePaperBagText": "",
+ "headArmoirePaperBagNotes": "",
+ "headArmoireBigWigText": "",
+ "headArmoireBigWigNotes": "",
+ "headArmoireGlassblowersHatText": "",
+ "headArmoireGlassblowersHatNotes": "",
+ "headArmoirePiraticalPrincessHeaddressText": "",
+ "headArmoirePiraticalPrincessHeaddressNotes": "",
+ "headArmoireJeweledArcherHelmText": "",
+ "headArmoireJeweledArcherHelmNotes": "",
+ "headArmoireVeilOfSpadesText": "",
+ "headArmoireVeilOfSpadesNotes": "",
"offhand": "предмет для лівої руки",
"offhandCapitalized": "Off-Hand Item",
- "shieldBase0Text": "No Off-Hand Equipment",
- "shieldBase0Notes": "No shield or other off-hand item.",
+ "shieldBase0Text": "",
+ "shieldBase0Notes": "",
"shieldWarrior1Text": "Дерев’яний щит",
"shieldWarrior1Notes": "Круглий щит з товстої деревини. Збільшує витривалість на <%= con %>.",
"shieldWarrior2Text": "Невеликий круглий щит",
- "shieldWarrior2Notes": "Light and sturdy, quick to bring to the defense. Increases Constitution by <%= con %>.",
+ "shieldWarrior2Notes": "",
"shieldWarrior3Text": "Броньований щит",
- "shieldWarrior3Notes": "Made of wood but bolstered with metal bands. Increases Constitution by <%= con %>.",
+ "shieldWarrior3Notes": "",
"shieldWarrior4Text": "Червоний щит",
- "shieldWarrior4Notes": "Rebukes blows with a burst of flame. Increases Constitution by <%= con %>.",
+ "shieldWarrior4Notes": "",
"shieldWarrior5Text": "Золотий щит",
- "shieldWarrior5Notes": "Shining badge of the vanguard. Increases Constitution by <%= con %>.",
+ "shieldWarrior5Notes": "",
"shieldHealer1Text": "Баклер медика",
- "shieldHealer1Notes": "Easy to disengage, freeing a hand for bandaging. Increases Constitution by <%= con %>.",
+ "shieldHealer1Notes": "",
"shieldHealer2Text": "Щит „Повітряний змій“",
- "shieldHealer2Notes": "Tapered shield with the symbol of healing. Increases Constitution by <%= con %>.",
+ "shieldHealer2Notes": "",
"shieldHealer3Text": "Щит оборонця",
- "shieldHealer3Notes": "Traditional shield of defender knights. Increases Constitution by <%= con %>.",
+ "shieldHealer3Notes": "",
"shieldHealer4Text": "Щит спасителя",
- "shieldHealer4Notes": "Stops blows aimed at nearby innocents as well as those aimed at you. Increases Constitution by <%= con %>.",
+ "shieldHealer4Notes": "",
"shieldHealer5Text": "Королівський щит",
- "shieldHealer5Notes": "Bestowed upon those most dedicated to the kingdom's defense. Increases Constitution by <%= con %>.",
+ "shieldHealer5Notes": "",
"shieldSpecial0Text": "Череп мученика",
- "shieldSpecial0Notes": "Sees beyond the veil of death, and displays what it finds there for enemies to fear. Increases Perception by <%= per %>.",
+ "shieldSpecial0Notes": "",
"shieldSpecial1Text": "Кришталевий щит",
- "shieldSpecial1Notes": "Shatters arrows and deflects the words of naysayers. Increases all Stats by <%= attrs %>.",
+ "shieldSpecial1Notes": "",
"shieldSpecialTakeThisText": "Візьми цей щит",
- "shieldSpecialTakeThisNotes": "This shield was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
+ "shieldSpecialTakeThisNotes": "",
"shieldSpecialGoldenknightText": "Моргенштерн неперевної послідовності",
"shieldSpecialGoldenknightNotes": "Зустрічі, монстри, хвороби: легко! Грюк і все! Збільшує витривалість та спритність на <%= attrs %>.",
- "shieldSpecialMoonpearlShieldText": "Moonpearl Shield",
- "shieldSpecialMoonpearlShieldNotes": "Designed for fast swimming, and also some defense. Increases Constitution by <%= con %>.",
- "shieldSpecialMammothRiderHornText": "Mammoth Rider's Horn",
- "shieldSpecialMammothRiderHornNotes": "One blow on this mighty rose quartz horn and you'll summon powerful magical forces. Increases Strength by <%= str %>.",
- "shieldSpecialDiamondStaveText": "Diamond Stave",
- "shieldSpecialDiamondStaveNotes": "This valuable stave has mystical powers. Increases Intelligence by <%= int %>.",
- "shieldSpecialRoguishRainbowMessageText": "Roguish Rainbow Message",
- "shieldSpecialRoguishRainbowMessageNotes": "This sparkly envelope contains messages of encouragement from Habiticans, and a touch of magic to help speed your deliveries! Increases Intelligence by <%= int %>.",
- "shieldSpecialLootBagText": "Loot Bag",
- "shieldSpecialLootBagNotes": "This bag is ideal for storing all the goodies you've stealthily removed from unsuspecting Tasks! Increases Strength by <%= str %>.",
- "shieldSpecialWintryMirrorText": "Wintry Mirror",
- "shieldSpecialWintryMirrorNotes": "How else to best admire your wintry look? Increases Intelligence by <%= int %>.",
- "shieldSpecialWakizashiText": "Wakizashi",
- "shieldSpecialWakizashiNotes": "This short sword is perfect for close-quarters battles with your Dailies! Increases Constitution by <%= con %>.",
+ "shieldSpecialMoonpearlShieldText": "",
+ "shieldSpecialMoonpearlShieldNotes": "",
+ "shieldSpecialMammothRiderHornText": "",
+ "shieldSpecialMammothRiderHornNotes": "",
+ "shieldSpecialDiamondStaveText": "",
+ "shieldSpecialDiamondStaveNotes": "",
+ "shieldSpecialRoguishRainbowMessageText": "",
+ "shieldSpecialRoguishRainbowMessageNotes": "",
+ "shieldSpecialLootBagText": "",
+ "shieldSpecialLootBagNotes": "",
+ "shieldSpecialWintryMirrorText": "",
+ "shieldSpecialWintryMirrorNotes": "",
+ "shieldSpecialWakizashiText": "",
+ "shieldSpecialWakizashiNotes": "",
"shieldSpecialYetiText": "Щит приборкувача Єті",
- "shieldSpecialYetiNotes": "This shield reflects light from the snow. Increases Constitution by <%= con %>. Limited Edition 2013-2014 Winter Gear.",
+ "shieldSpecialYetiNotes": "",
"shieldSpecialSnowflakeText": "Щит \"Сніжинка\"",
- "shieldSpecialSnowflakeNotes": "Every shield is unique. Increases Constitution by <%= con %>. Limited Edition 2013-2014 Winter Gear.",
+ "shieldSpecialSnowflakeNotes": "",
"shieldSpecialSpringRogueText": "Бойові кігті",
"shieldSpecialSpringRogueNotes": "Great for scaling tall buildings, and also for shredding carpets. Increases Strength <%= str %>. Limited Edition 2014 Spring Gear.",
"shieldSpecialSpringWarriorText": "Яєчний щит",
- "shieldSpecialSpringWarriorNotes": "This shield never cracks, no matter how hard you hit it! Increases Constitution by <%= con %>. Limited Edition 2014 Spring Gear.",
+ "shieldSpecialSpringWarriorNotes": "",
"shieldSpecialSpringHealerText": "Скрипучий м'ячик Неймовірного захисту",
- "shieldSpecialSpringHealerNotes": "Lets out an obnoxious, continuous squeak when bitten, driving enemies away. Increases Constitution by <%= con %>. Limited Edition 2014 Spring Gear.",
+ "shieldSpecialSpringHealerNotes": "",
"shieldSpecialSummerRogueText": "Pirate Cutlass",
"shieldSpecialSummerRogueNotes": "Avast! You'll make those Dailies walk the plank! Increases Strength by <%= str %>. Limited Edition 2014 Summer Gear.",
- "shieldSpecialSummerWarriorText": "Driftwood Shield",
- "shieldSpecialSummerWarriorNotes": "This shield, made from the wood of wrecked ships, can deter even the stormiest Dailies. Increases Constitution by <%= con %>. Limited Edition 2014 Summer Gear.",
+ "shieldSpecialSummerWarriorText": "",
+ "shieldSpecialSummerWarriorNotes": "",
"shieldSpecialSummerHealerText": "Щит тіней",
- "shieldSpecialSummerHealerNotes": "No one will dare to attack the coral reef when faced with this shiny shield! Increases Constitution by <%= con %>. Limited Edition 2014 Summer Gear.",
+ "shieldSpecialSummerHealerNotes": "",
"shieldSpecialFallRogueText": "Silver Stake",
"shieldSpecialFallRogueNotes": "Dispatches undead. Also grants a bonus against werewolves, because you can never be too careful. Increases Strength by <%= str %>. Limited Edition 2014 Autumn Gear.",
- "shieldSpecialFallWarriorText": "Potent Potion of Science",
- "shieldSpecialFallWarriorNotes": "Spills mysteriously on lab coats. Increases Constitution by <%= con %>. Limited Edition 2014 Autumn Gear.",
+ "shieldSpecialFallWarriorText": "",
+ "shieldSpecialFallWarriorNotes": "",
"shieldSpecialFallHealerText": "Інкрустований щит",
- "shieldSpecialFallHealerNotes": "This glittery shield was found in an ancient tomb. Increases Constitution by <%= con %>. Limited Edition 2014 Autumn Gear.",
+ "shieldSpecialFallHealerNotes": "",
"shieldSpecialWinter2015RogueText": "Ice Spike",
"shieldSpecialWinter2015RogueNotes": "You truly, definitely, absolutely just picked these up off of the ground. Increases Strength by <%= str %>. Limited Edition 2014-2015 Winter Gear.",
- "shieldSpecialWinter2015WarriorText": "Gumdrop Shield",
- "shieldSpecialWinter2015WarriorNotes": "This seemingly-sugary shield is actually made of nutritious, gelatinous vegetables. Increases Constitution by <%= con %>. Limited Edition 2014-2015 Winter Gear.",
- "shieldSpecialWinter2015HealerText": "Soothing Shield",
- "shieldSpecialWinter2015HealerNotes": "This shield deflects the freezing wind. Increases Constitution by <%= con %>. Limited Edition 2014-2015 Winter Gear.",
+ "shieldSpecialWinter2015WarriorText": "",
+ "shieldSpecialWinter2015WarriorNotes": "",
+ "shieldSpecialWinter2015HealerText": "",
+ "shieldSpecialWinter2015HealerNotes": "",
"shieldSpecialSpring2015RogueText": "Exploding Squeak",
"shieldSpecialSpring2015RogueNotes": "Don't let the sound fool you - these explosives pack a punch. Increases Strength by <%= str %>. Limited Edition 2015 Spring Gear.",
- "shieldSpecialSpring2015WarriorText": "Dish Discus",
- "shieldSpecialSpring2015WarriorNotes": "Hurl it at your enemies.... or just hold it, because it will fill up with yummy kibble at dinnertime. Increases Constitution by <%= con %>. Limited Edition 2015 Spring Gear.",
- "shieldSpecialSpring2015HealerText": "Patterned Pillow",
- "shieldSpecialSpring2015HealerNotes": "You can rest your head on this soft pillow, or you can wrestle it with your fearsome claws. Rawr! Increases Constitution by <%= con %>. Limited Edition 2015 Spring Gear.",
+ "shieldSpecialSpring2015WarriorText": "",
+ "shieldSpecialSpring2015WarriorNotes": "",
+ "shieldSpecialSpring2015HealerText": "",
+ "shieldSpecialSpring2015HealerNotes": "",
"shieldSpecialSummer2015RogueText": "Firing Coral",
"shieldSpecialSummer2015RogueNotes": "This relative of fire coral has the ability to propel its venom through the water. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.",
- "shieldSpecialSummer2015WarriorText": "Sunfish Shield",
- "shieldSpecialSummer2015WarriorNotes": "Crafted of deep-ocean metal by the artisans of Dilatory, this shield shines like the sand and the sea. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.",
- "shieldSpecialSummer2015HealerText": "Strapping Shield",
- "shieldSpecialSummer2015HealerNotes": "Use this shield to bash away bilge rats. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.",
+ "shieldSpecialSummer2015WarriorText": "",
+ "shieldSpecialSummer2015WarriorNotes": "",
+ "shieldSpecialSummer2015HealerText": "",
+ "shieldSpecialSummer2015HealerNotes": "",
"shieldSpecialFall2015RogueText": "Bat-tle Ax",
"shieldSpecialFall2015RogueNotes": "Fearsome To-Dos cower before the flapping of this ax. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.",
- "shieldSpecialFall2015WarriorText": "Birdseed Bag",
- "shieldSpecialFall2015WarriorNotes": "It's true that you're supposed to be SCARING the crows, but there's nothing wrong with making friends! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.",
- "shieldSpecialFall2015HealerText": "Stirring Stick",
- "shieldSpecialFall2015HealerNotes": "This stick can stir anything without melting, dissolving, or bursting into flame! It can also be used to fiercely poke enemy tasks. Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.",
+ "shieldSpecialFall2015WarriorText": "",
+ "shieldSpecialFall2015WarriorNotes": "",
+ "shieldSpecialFall2015HealerText": "",
+ "shieldSpecialFall2015HealerNotes": "",
"shieldSpecialWinter2016RogueText": "Cocoa Mug",
"shieldSpecialWinter2016RogueNotes": "Warming drink, or boiling projectile? You decide... Increases Strength by <%= str %>. Limited Edition 2015-2016 Winter Gear.",
- "shieldSpecialWinter2016WarriorText": "Sled Shield",
- "shieldSpecialWinter2016WarriorNotes": "Use this sled to block attacks, or ride it triumphantly into battle! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.",
- "shieldSpecialWinter2016HealerText": "Pixie Present",
- "shieldSpecialWinter2016HealerNotes": "Open it open it open it open it open it open it!!!!!!!!! Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.",
+ "shieldSpecialWinter2016WarriorText": "",
+ "shieldSpecialWinter2016WarriorNotes": "",
+ "shieldSpecialWinter2016HealerText": "",
+ "shieldSpecialWinter2016HealerNotes": "",
"shieldSpecialSpring2016RogueText": "Fire Bolas",
"shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Awoo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.",
- "shieldSpecialSpring2016WarriorText": "Cheese Wheel",
- "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
- "shieldSpecialSpring2016HealerText": "Floral Buckler",
- "shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
+ "shieldSpecialSpring2016WarriorText": "",
+ "shieldSpecialSpring2016WarriorNotes": "",
+ "shieldSpecialSpring2016HealerText": "",
+ "shieldSpecialSpring2016HealerNotes": "",
"shieldSpecialSummer2016RogueText": "Electric Rod",
"shieldSpecialSummer2016RogueNotes": "Anyone who battles you is in for a shocking surprise... Increases Strength by <%= str %>. Limited Edition 2016 Summer Gear.",
- "shieldSpecialSummer2016WarriorText": "Shark Tooth",
- "shieldSpecialSummer2016WarriorNotes": "Bite those tough tasks with this toothy shield! Increases Constitution by <%= con %>. Limited Edition 2016 Summer Gear.",
- "shieldSpecialSummer2016HealerText": "Sea Star Shield",
- "shieldSpecialSummer2016HealerNotes": "Sometimes mistakenly called a Starfish Shield. Increases Constitution by <%= con %>. Limited Edition 2016 Summer Gear.",
+ "shieldSpecialSummer2016WarriorText": "",
+ "shieldSpecialSummer2016WarriorNotes": "",
+ "shieldSpecialSummer2016HealerText": "",
+ "shieldSpecialSummer2016HealerNotes": "",
"shieldSpecialFall2016RogueText": "Spiderbite Dagger",
"shieldSpecialFall2016RogueNotes": "Feel the sting of the spider's bite! Increases Strength by <%= str %>. Limited Edition 2016 Autumn Gear.",
- "shieldSpecialFall2016WarriorText": "Defensive Roots",
- "shieldSpecialFall2016WarriorNotes": "Defend against Dailies with these writhing roots! Increases Constitution by <%= con %>. Limited Edition 2016 Autumn Gear.",
+ "shieldSpecialFall2016WarriorText": "",
+ "shieldSpecialFall2016WarriorNotes": "",
"shieldSpecialFall2016HealerText": "Щит Горгони",
- "shieldSpecialFall2016HealerNotes": "Don't admire your own reflection in this. Increases Constitution by <%= con %>. Limited Edition 2016 Autumn Gear.",
+ "shieldSpecialFall2016HealerNotes": "",
"shieldSpecialWinter2017RogueText": "Ice Axe",
"shieldSpecialWinter2017RogueNotes": "This axe is great for attack, defense, and ice-climbing! Increases Strength by <%= str %>. Limited Edition 2016-2017 Winter Gear.",
- "shieldSpecialWinter2017WarriorText": "Puck Shield",
- "shieldSpecialWinter2017WarriorNotes": "Made from a giant hockey puck, this shield can stand up to quite a beating. Increases Constitution by <%= con %>. Limited Edition 2016-2017 Winter Gear.",
- "shieldSpecialWinter2017HealerText": "Sugarplum Shield",
- "shieldSpecialWinter2017HealerNotes": "This fibrous armament will help protect you from even the sourest of tasks! Increases Constitution by <%= con %>. Limited Edition 2016-2017 Winter Gear.",
+ "shieldSpecialWinter2017WarriorText": "",
+ "shieldSpecialWinter2017WarriorNotes": "",
+ "shieldSpecialWinter2017HealerText": "",
+ "shieldSpecialWinter2017HealerNotes": "",
"shieldSpecialSpring2017RogueText": "Karrotana",
"shieldSpecialSpring2017RogueNotes": "These blades will make quick work of tasks, but also are handy for slicing vegetables! Yum! Increases Strength by <%= str %>. Limited Edition 2017 Spring Gear.",
- "shieldSpecialSpring2017WarriorText": "Yarn Shield",
- "shieldSpecialSpring2017WarriorNotes": "Every fiber of this shield is woven with protective spells! Try not to play with it (too much). Increases Constitution by <%= con %>. Limited Edition 2017 Spring Gear.",
- "shieldSpecialSpring2017HealerText": "Basket Shield",
- "shieldSpecialSpring2017HealerNotes": "Protective and also handy for holding your many healing herbs and accoutrements. Increases Constitution by <%= con %>. Limited Edition 2017 Spring Gear.",
+ "shieldSpecialSpring2017WarriorText": "",
+ "shieldSpecialSpring2017WarriorNotes": "",
+ "shieldSpecialSpring2017HealerText": "",
+ "shieldSpecialSpring2017HealerNotes": "",
"shieldSpecialSummer2017RogueText": "Sea Dragon Fins",
"shieldSpecialSummer2017RogueNotes": "The edges of these fins are razor-sharp. Increases Strength by <%= str %>. Limited Edition 2017 Summer Gear.",
- "shieldSpecialSummer2017WarriorText": "Scallop Shield",
- "shieldSpecialSummer2017WarriorNotes": "This shell that you just found is both decorative AND defensive! Increases Constitution by <%= con %>. Limited Edition 2017 Summer Gear.",
- "shieldSpecialSummer2017HealerText": "Oyster Shield",
- "shieldSpecialSummer2017HealerNotes": "This magical oyster constantly generates pearls as well as protection. Increases Constitution by <%= con %>. Limited Edition 2017 Summer Gear.",
+ "shieldSpecialSummer2017WarriorText": "",
+ "shieldSpecialSummer2017WarriorNotes": "",
+ "shieldSpecialSummer2017HealerText": "",
+ "shieldSpecialSummer2017HealerNotes": "",
"shieldSpecialFall2017RogueText": "Candied Apple Mace",
"shieldSpecialFall2017RogueNotes": "Defeat your foes with sweetness! Increases Strength by <%= str %>. Limited Edition 2017 Autumn Gear.",
- "shieldSpecialFall2017WarriorText": "Candy Corn Shield",
- "shieldSpecialFall2017WarriorNotes": "This candy shield has mighty protective powers, so try not to nibble on it! Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
- "shieldSpecialFall2017HealerText": "Haunted Orb",
- "shieldSpecialFall2017HealerNotes": "This orb occasionally screeches. We're sorry, we're not sure why. But it sure looks nifty! Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
+ "shieldSpecialFall2017WarriorText": "",
+ "shieldSpecialFall2017WarriorNotes": "",
+ "shieldSpecialFall2017HealerText": "",
+ "shieldSpecialFall2017HealerNotes": "",
"shieldSpecialWinter2018RogueText": "Peppermint Hook",
"shieldSpecialWinter2018RogueNotes": "Perfect for climbing walls or distracting your foes with sweet, sweet candy. Increases Strength by <%= str %>. Limited Edition 2017-2018 Winter Gear.",
- "shieldSpecialWinter2018WarriorText": "Magic Gift Bag",
- "shieldSpecialWinter2018WarriorNotes": "Just about any useful thing you need can be found in this sack, if you know the right magic words to whisper. Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
- "shieldSpecialWinter2018HealerText": "Mistletoe Bell",
- "shieldSpecialWinter2018HealerNotes": "What's that sound? The sound of warmth and cheer for all to hear! Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
- "shieldSpecialSpring2018WarriorText": "Shield of the Morning",
- "shieldSpecialSpring2018WarriorNotes": "This sturdy shield glows with the glory of first light. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.",
- "shieldSpecialSpring2018HealerText": "Garnet Shield",
- "shieldSpecialSpring2018HealerNotes": "Despite its fancy appearance, this garnet shield is quite durable! Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.",
- "shieldSpecialSummer2018WarriorText": "Betta Skull Shield",
- "shieldSpecialSummer2018WarriorNotes": "Fashioned from stone, this fearsome skull-styled shield strikes fear into fish foes while rallying your Skeleton pets and mounts. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.",
- "shieldSpecialSummer2018HealerText": "Merfolk Monarch Emblem",
- "shieldSpecialSummer2018HealerNotes": "This shield can produce a dome of air for the benefit of land-dwelling visitors to your watery realm. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.",
- "shieldSpecialFall2018RogueText": "Vial of Temptation",
- "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.",
+ "shieldSpecialWinter2018WarriorText": "",
+ "shieldSpecialWinter2018WarriorNotes": "",
+ "shieldSpecialWinter2018HealerText": "",
+ "shieldSpecialWinter2018HealerNotes": "",
+ "shieldSpecialSpring2018WarriorText": "",
+ "shieldSpecialSpring2018WarriorNotes": "",
+ "shieldSpecialSpring2018HealerText": "",
+ "shieldSpecialSpring2018HealerNotes": "",
+ "shieldSpecialSummer2018WarriorText": "",
+ "shieldSpecialSummer2018WarriorNotes": "",
+ "shieldSpecialSummer2018HealerText": "",
+ "shieldSpecialSummer2018HealerNotes": "",
+ "shieldSpecialFall2018RogueText": "",
+ "shieldSpecialFall2018RogueNotes": "",
"shieldSpecialFall2018WarriorText": "Діамантовий щит",
- "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.",
+ "shieldSpecialFall2018WarriorNotes": "",
"shieldSpecialFall2018HealerText": "Голодний щит",
- "shieldSpecialFall2018HealerNotes": "With its wide-open maw, this shield will absorb all your enemies' blows. Increases Constitution by <%= con %>. Limited Edition 2018 Autumn Gear.",
- "shieldSpecialWinter2019WarriorText": "Frozen Shield",
- "shieldSpecialWinter2019WarriorNotes": "This shield was fashioned using the thickest sheets of ice from the oldest glacier in the Stoïkalm Steppes. Increases Constitution by <%= con %>. Limited Edition 2018-2019 Winter Gear.",
- "shieldSpecialWinter2019HealerText": "Enchanted Ice Crystals",
- "shieldSpecialWinter2019HealerNotes": "Thin ice may break, but these perfect crystals will turn back any blow before it lands. Increases Constitution by <%= con %>. Limited Edition 2018-2019 Winter Gear.",
- "shieldMystery201601Text": "Resolution Slayer",
- "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.",
- "shieldMystery201701Text": "Time-Freezer Shield",
- "shieldMystery201701Notes": "Freeze time in its tracks and conquer your tasks! Confers no benefit. January 2017 Subscriber Item.",
+ "shieldSpecialFall2018HealerNotes": "",
+ "shieldSpecialWinter2019WarriorText": "",
+ "shieldSpecialWinter2019WarriorNotes": "",
+ "shieldSpecialWinter2019HealerText": "",
+ "shieldSpecialWinter2019HealerNotes": "",
+ "shieldMystery201601Text": "",
+ "shieldMystery201601Notes": "",
+ "shieldMystery201701Text": "",
+ "shieldMystery201701Notes": "",
"shieldMystery201708Text": "Лавовий щит",
- "shieldMystery201708Notes": "This rugged shield of molten rock protects you from bad Habits but won't singe your hands. Confers no benefit. August 2017 Subscriber Item.",
- "shieldMystery201709Text": "Sorcery Handbook",
- "shieldMystery201709Notes": "This book will guide you through your forays into sorcery. Confers no benefit. September 2017 Subscriber Item.",
- "shieldMystery201802Text": "Love Bug Shield",
- "shieldMystery201802Notes": "Although it may look like brittle candy, this shield is resistant to even the strongest Shattering Heartbreak attacks! Confers no benefit. February 2018 Subscriber Item.",
+ "shieldMystery201708Notes": "",
+ "shieldMystery201709Text": "",
+ "shieldMystery201709Notes": "",
+ "shieldMystery201802Text": "",
+ "shieldMystery201802Notes": "",
"shieldMystery301405Text": "Щит-годинник",
- "shieldMystery301405Notes": "Time is on your side with this towering clock shield! Confers no benefit. June 3015 Subscriber Item.",
- "shieldMystery301704Text": "Fluttery Fan",
- "shieldMystery301704Notes": "This fine fan will keep you feeling cool and looking fancy! Confers no benefit. April 3017 Subscriber Item.",
+ "shieldMystery301405Notes": "",
+ "shieldMystery301704Text": "",
+ "shieldMystery301704Notes": "",
"shieldArmoireGladiatorShieldText": "Гладіаторський щит",
- "shieldArmoireGladiatorShieldNotes": "To be a gladiator you must.... eh, whatever, just bash them with your shield. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Gladiator Set (Item 3 of 3).",
+ "shieldArmoireGladiatorShieldNotes": "",
"shieldArmoireMidnightShieldText": "Опівнічний щит",
- "shieldArmoireMidnightShieldNotes": "This shield is most powerful at the stroke of midnight! Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Independent Item.",
- "shieldArmoireRoyalCaneText": "Royal Cane",
- "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).",
- "shieldArmoireDragonTamerShieldText": "Dragon Tamer Shield",
- "shieldArmoireDragonTamerShieldNotes": "Distract enemies with this dragon-shaped shield. Increases Perception by <%= per %>. Enchanted Armoire: Dragon Tamer Set (Item 2 of 3).",
- "shieldArmoireMysticLampText": "Mystic Lamp",
- "shieldArmoireMysticLampNotes": "Light the darkest caves with this mystic lamp! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
- "shieldArmoireFloralBouquetText": "Bouquet o' Flowers",
- "shieldArmoireFloralBouquetNotes": "Not much help in battle, but aren't they beautiful? Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
- "shieldArmoireSandyBucketText": "Sandy Bucket",
- "shieldArmoireSandyBucketNotes": "Good for storing all that Gold that you'll earn from completing tasks! Increases Perception by <%= per %>. Enchanted Armoire: Seaside Set (Item 3 of 3).",
- "shieldArmoirePerchingFalconText": "Perching Falcon",
- "shieldArmoirePerchingFalconNotes": "A falcon friend perches on your arm, prepared to swoop at your enemies. Increases Strength by <%= str %>. Enchanted Armoire: Falconer Set (Item 3 of 3).",
- "shieldArmoireRamHornShieldText": "Ram Horn Shield",
- "shieldArmoireRamHornShieldNotes": "Ram this shield into opposing Dailies! Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Ram Barbarian Set (Item 3 of 3).",
+ "shieldArmoireMidnightShieldNotes": "",
+ "shieldArmoireRoyalCaneText": "",
+ "shieldArmoireRoyalCaneNotes": "",
+ "shieldArmoireDragonTamerShieldText": "",
+ "shieldArmoireDragonTamerShieldNotes": "",
+ "shieldArmoireMysticLampText": "",
+ "shieldArmoireMysticLampNotes": "",
+ "shieldArmoireFloralBouquetText": "",
+ "shieldArmoireFloralBouquetNotes": "",
+ "shieldArmoireSandyBucketText": "",
+ "shieldArmoireSandyBucketNotes": "",
+ "shieldArmoirePerchingFalconText": "",
+ "shieldArmoirePerchingFalconNotes": "",
+ "shieldArmoireRamHornShieldText": "",
+ "shieldArmoireRamHornShieldNotes": "",
"shieldArmoireRedRoseText": "Red Rose",
- "shieldArmoireRedRoseNotes": "This deep red rose smells enchanting. It will also sharpen your understanding. Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
- "shieldArmoireMushroomDruidShieldText": "Mushroom Druid Shield",
- "shieldArmoireMushroomDruidShieldNotes": "Though made from a mushroom, there's nothing mushy about this tough shield! Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Mushroom Druid Set (Item 3 of 3).",
- "shieldArmoireFestivalParasolText": "Festival Parasol",
- "shieldArmoireFestivalParasolNotes": "This lightweight parasol will shield you from the glare--whether it's from the sun or from dark red Dailies! Increases Constitution by <%= con %>. Enchanted Armoire: Festival Attire Set (Item 2 of 3).",
+ "shieldArmoireRedRoseNotes": "",
+ "shieldArmoireMushroomDruidShieldText": "",
+ "shieldArmoireMushroomDruidShieldNotes": "",
+ "shieldArmoireFestivalParasolText": "",
+ "shieldArmoireFestivalParasolNotes": "",
"shieldArmoireVikingShieldText": "Щит вікінга",
- "shieldArmoireVikingShieldNotes": "This sturdy shield of wood and hide can stand up to the most daunting of foes. Increases Perception by <%= per %> and Intelligence by <%= int %>. Enchanted Armoire: Viking Set (Item 3 of 3).",
- "shieldArmoireSwanFeatherFanText": "Swan Feather Fan",
- "shieldArmoireSwanFeatherFanNotes": "Use this fan to accentuate your movement as you dance like a graceful swan. Increases Strength by <%= str %>. Enchanted Armoire: Swan Dancer Set (Item 3 of 3).",
- "shieldArmoireGoldenBatonText": "Golden Baton",
- "shieldArmoireGoldenBatonNotes": "When you dance into battle waving this baton to the beat, you are unstoppable! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Independent Item.",
+ "shieldArmoireVikingShieldNotes": "",
+ "shieldArmoireSwanFeatherFanText": "",
+ "shieldArmoireSwanFeatherFanNotes": "",
+ "shieldArmoireGoldenBatonText": "",
+ "shieldArmoireGoldenBatonNotes": "",
"shieldArmoireAntiProcrastinationShieldText": "Щит анти-зволікання",
- "shieldArmoireAntiProcrastinationShieldNotes": "This strong steel shield will help you block distractions when they approach! Increases Constitution by <%= con %>. Enchanted Armoire: Anti-Procrastination Set (Item 3 of 3).",
- "shieldArmoireHorseshoeText": "Horseshoe",
+ "shieldArmoireAntiProcrastinationShieldNotes": "",
+ "shieldArmoireHorseshoeText": "",
"shieldArmoireHorseshoeNotes": "Допоможіть захистити ніжки Ваших копитних скакунів за допомогою цієї підкови. Збільшує витривалість, спритність та силу на <%= attrs %> кожен. Зачарований шафа: набір коваля (елемент 3 з 3).",
- "shieldArmoireHandmadeCandlestickText": "Handmade Candlestick",
- "shieldArmoireHandmadeCandlestickNotes": "Your fine wax wares provide light and warmth to grateful Habiticans! Increases Strength by <%= str %>. Enchanted Armoire: Candlestick Maker Set (Item 3 of 3).",
- "shieldArmoireWeaversShuttleText": "Weaver's Shuttle",
- "shieldArmoireWeaversShuttleNotes": "This tool passes your weft thread through the warp to make cloth! Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Weaver Set (Item 3 of 3).",
+ "shieldArmoireHandmadeCandlestickText": "",
+ "shieldArmoireHandmadeCandlestickNotes": "",
+ "shieldArmoireWeaversShuttleText": "",
+ "shieldArmoireWeaversShuttleNotes": "",
"shieldArmoireShieldOfDiamondsText": "Щит діамантів",
- "shieldArmoireShieldOfDiamondsNotes": "This radiant shield not only provides protection, it empowers you with endurance! Increases Constitution by <%= con %>. Enchanted Armoire: King of Diamonds Set (Item 4 of 4).",
- "shieldArmoireFlutteryFanText": "Fluttery Fan",
- "shieldArmoireFlutteryFanNotes": "On a hot day, there's nothing quite like a fancy fan to help you look and feel cool. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 4 of 4).",
- "shieldArmoireFancyShoeText": "Fancy Shoe",
- "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).",
- "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase",
- "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).",
- "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield",
- "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).",
- "shieldArmoireUnfinishedTomeText": "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).",
- "shieldArmoireSoftRedPillowText": "Soft Red Pillow",
- "shieldArmoireSoftRedPillowNotes": "The prepared warrior packs a pillow for any expedition. Protect yourself from those tough tasks... even while you nap. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Red Loungewear Set (Item 3 of 3).",
- "shieldArmoireSoftGreenPillowText": "Soft Green Pillow",
- "shieldArmoireSoftGreenPillowNotes": "The practical warrior packs a pillow for any expedition. Ward off those pesky chores... even while you nap. Increases Constitution by <%= con %> and Intelligence by <%= int %>. Enchanted Armoire: Green Loungewear Set (Item 3 of 3).",
- "shieldArmoireMightyQuillText": "Mighty Quill",
+ "shieldArmoireShieldOfDiamondsNotes": "",
+ "shieldArmoireFlutteryFanText": "",
+ "shieldArmoireFlutteryFanNotes": "",
+ "shieldArmoireFancyShoeText": "",
+ "shieldArmoireFancyShoeNotes": "",
+ "shieldArmoireFancyBlownGlassVaseText": "",
+ "shieldArmoireFancyBlownGlassVaseNotes": "",
+ "shieldArmoirePiraticalSkullShieldText": "",
+ "shieldArmoirePiraticalSkullShieldNotes": "",
+ "shieldArmoireUnfinishedTomeText": "",
+ "shieldArmoireUnfinishedTomeNotes": "",
+ "shieldArmoireSoftBluePillowText": "",
+ "shieldArmoireSoftBluePillowNotes": "",
+ "shieldArmoireSoftRedPillowText": "",
+ "shieldArmoireSoftRedPillowNotes": "",
+ "shieldArmoireSoftGreenPillowText": "",
+ "shieldArmoireSoftGreenPillowNotes": "",
+ "shieldArmoireMightyQuillText": "",
"shieldArmoireMightyQuillNotes": "Могутніший за меч, кажуть! Збільшує спритність на <%= per %>. Зачарований шафа: набір писця (елемент 2 з 3).",
- "back": "Аксесуар на спину",
+ "back": "Аксесуар для спини",
"backCapitalized": "Back Accessory",
- "backBase0Text": "Немає аксесуару на спині",
- "backBase0Notes": "Немає аксесуару на спині.",
+ "backBase0Text": "Немає аксесуара для спини",
+ "backBase0Notes": "Немає аксесуара для спини.",
"animalTails": "Звірині хвости",
"backMystery201402Text": "Золоті крила",
- "backMystery201402Notes": "These shining wings have feathers that glitter in the sun! Confers no benefit. February 2014 Subscriber Item.",
- "backMystery201404Text": "Twilight Butterfly Wings",
- "backMystery201404Notes": "Be a butterfly and flutter by! Confers no benefit. April 2014 Subscriber Item.",
- "backMystery201410Text": "Goblin Wings",
- "backMystery201410Notes": "Swoop through the night on these strong wings. Confers no benefit. October 2014 Subscriber Item.",
- "backMystery201504Text": "Busy Bee Wings",
- "backMystery201504Notes": "Buzz buzz buzz! Flit from task to task. Confers no benefit. April 2015 Subscriber Item.",
- "backMystery201507Text": "Rad Surfboard",
- "backMystery201507Notes": "Surf off the Diligent Docks and ride the waves in Inkomplete Bay! Confers no benefit. July 2015 Subscriber Item.",
- "backMystery201510Text": "Goblin Tail",
- "backMystery201510Notes": "Prehensile and powerful! Confers no benefit. October 2015 Subscriber Item.",
- "backMystery201602Text": "Heartbreaker Cape",
- "backMystery201602Notes": "With a swish of your cape, your enemies fall before you! Confers no benefit. February 2016 Subscriber Item.",
- "backMystery201608Text": "Cape of Thunder",
- "backMystery201608Notes": "Fly through the stormy skies with this billowing cape! Confers no benefit. August 2016 Subscriber Item.",
- "backMystery201702Text": "Heartstealer Cape",
- "backMystery201702Notes": "A swoosh of this cape, and all near you will be swept off their feet by your charm! Confers no benefit. February 2017 Subscriber Item.",
- "backMystery201704Text": "Fairytale Wings",
- "backMystery201704Notes": "These shimmering wings will carry you anywhere, even the hidden realms ruled by magical creatures. Confers no benefit. April 2017 Subscriber Item.",
- "backMystery201706Text": "Tattered Freebooter's Flag",
+ "backMystery201402Notes": "",
+ "backMystery201404Text": "",
+ "backMystery201404Notes": "",
+ "backMystery201410Text": "",
+ "backMystery201410Notes": "",
+ "backMystery201504Text": "",
+ "backMystery201504Notes": "",
+ "backMystery201507Text": "",
+ "backMystery201507Notes": "",
+ "backMystery201510Text": "",
+ "backMystery201510Notes": "",
+ "backMystery201602Text": "",
+ "backMystery201602Notes": "",
+ "backMystery201608Text": "",
+ "backMystery201608Notes": "",
+ "backMystery201702Text": "",
+ "backMystery201702Notes": "",
+ "backMystery201704Text": "",
+ "backMystery201704Notes": "",
+ "backMystery201706Text": "",
"backMystery201706Notes": "Погляд цього прапора, украшеного Веселим Роджером, наповнює страхом будь-які завдання або щоденні справи! Не дає ніякої користі. Предмет підписника (червень 2017).",
- "backMystery201709Text": "Stack o' Sorcery Books",
- "backMystery201709Notes": "Learning magic takes a lot of reading, but you're sure to enjoy your studies! Confers no benefit. September 2017 Subscriber Item.",
- "backMystery201801Text": "Frost Sprite Wings",
- "backMystery201801Notes": "They may look as delicate as snowflakes, but these enchanted wings can carry you anywhere you wish! Confers no benefit. January 2018 Subscriber Item.",
- "backMystery201803Text": "Daring Dragonfly Wings",
- "backMystery201803Notes": "These bright and shiny wings will carry you through soft spring breezes and across lily ponds with ease. Confers no benefit. March 2018 Subscriber Item.",
- "backMystery201804Text": "Squirrel Tail",
- "backMystery201804Notes": "Sure, it helps you balance while you jump on branches, but the most important thing is MAXIMUM FLUFF. Confers no benefit. April 2018 Subscriber Item.",
- "backMystery201812Text": "Arctic Fox Tail",
- "backMystery201812Notes": "Your luxurious tail shimmers like an icicle, bobbing happily as you pad softly over the snowdrifts. Confers no benefit. December 2018 Subscriber Item.",
- "backMystery201805Text": "Phenomenal Peacock Tail",
- "backMystery201805Notes": "This gorgeous feathery tail is perfect for a strut down a lovely garden path! Confers no benefit. May 2018 Subscriber Item.",
- "backSpecialWonderconRedText": "Mighty Cape",
- "backSpecialWonderconRedNotes": "Swishes with strength and beauty. Confers no benefit. Special Edition Convention Item.",
- "backSpecialWonderconBlackText": "Sneaky Cape",
- "backSpecialWonderconBlackNotes": "Spun of shadows and whispers. Confers no benefit. Special Edition Convention Item.",
- "backSpecialTakeThisText": "Take This Wings",
- "backSpecialTakeThisNotes": "These wings were earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
- "backSpecialSnowdriftVeilText": "Snowdrift Veil",
- "backSpecialSnowdriftVeilNotes": "This translucent veil makes it appear you are surrounded by an elegant flurry of snow! Confers no benefit.",
- "backSpecialAetherCloakText": "Aether Cloak",
- "backSpecialAetherCloakNotes": "This cloak once belonged to the Lost Masterclasser herself. Increases Perception by <%= per %>.",
- "backSpecialTurkeyTailBaseText": "Turkey Tail",
- "backSpecialTurkeyTailBaseNotes": "Wear your noble Turkey Tail with pride while you celebrate! Confers no benefit.",
- "backSpecialTurkeyTailGildedText": "Gilded Turkey Tail",
- "backSpecialTurkeyTailGildedNotes": "Plumage fit for a parade! Confers no benefit.",
- "backBearTailText": "Bear Tail",
- "backBearTailNotes": "This tail makes you look like a brave bear! Confers no benefit.",
- "backCactusTailText": "Cactus Tail",
- "backCactusTailNotes": "This tail makes you look like a prickly cactus! Confers no benefit.",
- "backFoxTailText": "Fox Tail",
- "backFoxTailNotes": "This tail makes you look like a wily fox! Confers no benefit.",
- "backLionTailText": "Lion Tail",
- "backLionTailNotes": "This tail makes you look like a regal lion! Confers no benefit.",
- "backPandaTailText": "Panda Tail",
- "backPandaTailNotes": "This tail makes you look like a gentle panda! Confers no benefit.",
- "backPigTailText": "Pig Tail",
- "backPigTailNotes": "This tail makes you look like a whimsical pig! Confers no benefit.",
- "backTigerTailText": "Tiger Tail",
- "backTigerTailNotes": "This tail makes you look like a fierce tiger! Confers no benefit.",
- "backWolfTailText": "Wolf Tail",
- "backWolfTailNotes": "This tail makes you look like a loyal wolf! Confers no benefit.",
+ "backMystery201709Text": "",
+ "backMystery201709Notes": "",
+ "backMystery201801Text": "",
+ "backMystery201801Notes": "",
+ "backMystery201803Text": "",
+ "backMystery201803Notes": "",
+ "backMystery201804Text": "",
+ "backMystery201804Notes": "",
+ "backMystery201812Text": "",
+ "backMystery201812Notes": "",
+ "backMystery201805Text": "",
+ "backMystery201805Notes": "",
+ "backSpecialWonderconRedText": "",
+ "backSpecialWonderconRedNotes": "",
+ "backSpecialWonderconBlackText": "",
+ "backSpecialWonderconBlackNotes": "",
+ "backSpecialTakeThisText": "",
+ "backSpecialTakeThisNotes": "",
+ "backSpecialSnowdriftVeilText": "",
+ "backSpecialSnowdriftVeilNotes": "",
+ "backSpecialAetherCloakText": "",
+ "backSpecialAetherCloakNotes": "",
+ "backSpecialTurkeyTailBaseText": "",
+ "backSpecialTurkeyTailBaseNotes": "",
+ "backSpecialTurkeyTailGildedText": "",
+ "backSpecialTurkeyTailGildedNotes": "",
+ "backBearTailText": "",
+ "backBearTailNotes": "",
+ "backCactusTailText": "",
+ "backCactusTailNotes": "",
+ "backFoxTailText": "",
+ "backFoxTailNotes": "",
+ "backLionTailText": "",
+ "backLionTailNotes": "",
+ "backPandaTailText": "",
+ "backPandaTailNotes": "",
+ "backPigTailText": "",
+ "backPigTailNotes": "",
+ "backTigerTailText": "",
+ "backTigerTailNotes": "",
+ "backWolfTailText": "",
+ "backWolfTailNotes": "",
"body": "Аксесуар для тіла",
"bodyCapitalized": "Body Accessory",
- "bodyBase0Text": "Немає аксесуарів на тілі",
- "bodyBase0Notes": "Немає аксесуарів на тілі.",
- "bodySpecialWonderconRedText": "Ruby Collar",
- "bodySpecialWonderconRedNotes": "An attractive ruby collar! Confers no benefit. Special Edition Convention Item.",
- "bodySpecialWonderconGoldText": "Golden Collar",
- "bodySpecialWonderconGoldNotes": "An attractive gold collar! Confers no benefit. Special Edition Convention Item.",
- "bodySpecialWonderconBlackText": "Ebony Collar",
- "bodySpecialWonderconBlackNotes": "An attractive ebony collar! Confers no benefit. Special Edition Convention Item.",
- "bodySpecialTakeThisText": "Take This Pauldrons",
- "bodySpecialTakeThisNotes": "These pauldrons were earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
- "bodySpecialAetherAmuletText": "Aether Amulet",
- "bodySpecialAetherAmuletNotes": "This amulet has a mysterious history. Increases Constitution and Strength by <%= attrs %> each.",
- "bodySpecialSummerMageText": "Shining Capelet",
- "bodySpecialSummerMageNotes": "Neither salt water nor fresh water can tarnish this metallic capelet. Confers no benefit. Limited Edition 2014 Summer Gear.",
- "bodySpecialSummerHealerText": "Coral Collar",
- "bodySpecialSummerHealerNotes": "A stylish collar of live coral! Confers no benefit. Limited Edition 2014 Summer Gear.",
- "bodySpecialSummer2015RogueText": "Renegade Sash",
- "bodySpecialSummer2015RogueNotes": "You can't be a true Renegade without panache... and a sash. Confers no benefit. Limited Edition 2015 Summer Gear.",
- "bodySpecialSummer2015WarriorText": "Oceanic Spikes",
- "bodySpecialSummer2015WarriorNotes": "Each spike drips jellyfish venom, defending the wearer. Confers no benefit. Limited Edition 2015 Summer Gear.",
- "bodySpecialSummer2015MageText": "Golden Buckle",
- "bodySpecialSummer2015MageNotes": "This buckle adds no power at all, but it's shiny. Confers no benefit. Limited Edition 2015 Summer Gear.",
- "bodySpecialSummer2015HealerText": "Sailor's Neckerchief",
- "bodySpecialSummer2015HealerNotes": "Yo ho ho? No, no, no! Confers no benefit. Limited Edition 2015 Summer Gear.",
- "bodySpecialNamingDay2018Text": "Royal Purple Gryphon Cloak",
- "bodySpecialNamingDay2018Notes": "Happy Naming Day! Wear this fancy and feathery cloak as you celebrate Habitica. Confers no benefit.",
- "bodyMystery201705Text": "Folded Feathered Fighter Wings",
- "bodyMystery201705Notes": "These folded wings don't just look snazzy: they will give you the speed and agility of a gryphon! Confers no benefit. May 2017 Subscriber Item.",
- "bodyMystery201706Text": "Ragged Corsair's Cloak",
- "bodyMystery201706Notes": "This cloak has secret pockets to hide all the Gold you loot from your Tasks. Confers no benefit. June 2017 Subscriber Item.",
- "bodyMystery201711Text": "Carpet Rider Scarf",
- "bodyMystery201711Notes": "This soft knitted scarf looks quite majestic blowing in the wind. Confers no benefit. November 2017 Subscriber Item.",
- "bodyMystery201901Text": "Polaris Pauldrons",
- "bodyMystery201901Notes": "These shimmering pauldrons are strong, but will rest on your shoulders as weightlessly as a ray of dancing light. Confers no benefit. January 2019 Subscriber Item.",
- "bodyArmoireCozyScarfText": "Cozy Scarf",
- "bodyArmoireCozyScarfNotes": "This fine scarf will keep you warm as you go about your wintry business. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Lamplighter's Set (Item 4 of 4).",
- "headAccessory": "Аксесуар на голову",
+ "bodyBase0Text": "Немає аксесуара для тіла",
+ "bodyBase0Notes": "Немає аксесуара для тіла.",
+ "bodySpecialWonderconRedText": "",
+ "bodySpecialWonderconRedNotes": "",
+ "bodySpecialWonderconGoldText": "",
+ "bodySpecialWonderconGoldNotes": "",
+ "bodySpecialWonderconBlackText": "",
+ "bodySpecialWonderconBlackNotes": "",
+ "bodySpecialTakeThisText": "",
+ "bodySpecialTakeThisNotes": "",
+ "bodySpecialAetherAmuletText": "",
+ "bodySpecialAetherAmuletNotes": "",
+ "bodySpecialSummerMageText": "",
+ "bodySpecialSummerMageNotes": "",
+ "bodySpecialSummerHealerText": "",
+ "bodySpecialSummerHealerNotes": "",
+ "bodySpecialSummer2015RogueText": "",
+ "bodySpecialSummer2015RogueNotes": "",
+ "bodySpecialSummer2015WarriorText": "",
+ "bodySpecialSummer2015WarriorNotes": "",
+ "bodySpecialSummer2015MageText": "",
+ "bodySpecialSummer2015MageNotes": "",
+ "bodySpecialSummer2015HealerText": "",
+ "bodySpecialSummer2015HealerNotes": "",
+ "bodySpecialNamingDay2018Text": "",
+ "bodySpecialNamingDay2018Notes": "",
+ "bodyMystery201705Text": "",
+ "bodyMystery201705Notes": "",
+ "bodyMystery201706Text": "",
+ "bodyMystery201706Notes": "",
+ "bodyMystery201711Text": "",
+ "bodyMystery201711Notes": "",
+ "bodyMystery201901Text": "",
+ "bodyMystery201901Notes": "",
+ "bodyArmoireCozyScarfText": "",
+ "bodyArmoireCozyScarfNotes": "",
+ "headAccessory": "Аксесуар для голови",
"headAccessoryCapitalized": "Head Accessory",
- "accessories": "Accessories",
+ "accessories": "Аксесуари",
"animalEars": "Звірині вуха",
"headAccessoryBase0Text": "Без прикрас на голові",
"headAccessoryBase0Notes": "Без прикрас на голові.",
"headAccessorySpecialSpringRogueText": "Фіолетові котячі вуха",
- "headAccessorySpecialSpringRogueNotes": "These feline ears twitch to detect incoming threats. Confers no benefit. Limited Edition 2014 Spring Gear.",
+ "headAccessorySpecialSpringRogueNotes": "",
"headAccessorySpecialSpringWarriorText": "Зелені вуха кролика",
- "headAccessorySpecialSpringWarriorNotes": "Bunny ears that keenly detect every crunch of a carrot. Confers no benefit. Limited Edition 2014 Spring Gear.",
+ "headAccessorySpecialSpringWarriorNotes": "",
"headAccessorySpecialSpringMageText": "Сині вуха мишеняти",
- "headAccessorySpecialSpringMageNotes": "These round mouse ears are silky-soft. Confers no benefit. Limited Edition 2014 Spring Gear.",
+ "headAccessorySpecialSpringMageNotes": "",
"headAccessorySpecialSpringHealerText": "Жовті вуха собаки",
- "headAccessorySpecialSpringHealerNotes": "Floppy but cute. Wanna play? Confers no benefit. Limited Edition 2014 Spring Gear.",
- "headAccessorySpecialSpring2015RogueText": "Yellow Mouse Ears",
- "headAccessorySpecialSpring2015RogueNotes": "These ears steel themselves against the sound of explosions. Confers no benefit. Limited Edition 2015 Spring Gear.",
- "headAccessorySpecialSpring2015WarriorText": "Purple Dog Ears",
- "headAccessorySpecialSpring2015WarriorNotes": "They are purple. They are dog ears. Do not waste your time with further foolishness. Confers no benefit. Limited Edition 2015 Spring Gear.",
- "headAccessorySpecialSpring2015MageText": "Blue Bunny Ears",
- "headAccessorySpecialSpring2015MageNotes": "These ears listen keenly, in case somewhere a magician is revealing secrets. Confers no benefit. Limited Edition 2015 Spring Gear.",
- "headAccessorySpecialSpring2015HealerText": "Green Kitty Ears",
- "headAccessorySpecialSpring2015HealerNotes": "These cute kitty ears will make others green with envy. Confers no benefit. Limited Edition 2015 Spring Gear.",
- "headAccessorySpecialSpring2016RogueText": "Green Dog Ears",
- "headAccessorySpecialSpring2016RogueNotes": "With these, you can keep track of tricky Mages even if they turn invisible! Confers no benefit. Limited Edition 2016 Spring Gear.",
- "headAccessorySpecialSpring2016WarriorText": "Red Mouse Ears",
- "headAccessorySpecialSpring2016WarriorNotes": "To better hear your theme song across clamorous battlefields. Confers no benefit. Limited Edition 2016 Spring Gear.",
- "headAccessorySpecialSpring2016MageText": "Yellow Cat Ears",
- "headAccessorySpecialSpring2016MageNotes": "These sharp ears can detect the minute hum of ambient Mana, or the muted footfalls of a Rogue. Confers no benefit. Limited Edition 2016 Spring Gear.",
- "headAccessorySpecialSpring2016HealerText": "Purple Bunny Ears",
- "headAccessorySpecialSpring2016HealerNotes": "They stand like flags above the fray, letting others know where to run for help. Confers no benefit. Limited Edition 2016 Spring Gear.",
- "headAccessorySpecialSpring2017RogueText": "Red Bunny Ears",
- "headAccessorySpecialSpring2017RogueNotes": "No sounds will escape you thanks to these ears. Confers no benefit. Limited Edition 2017 Spring Gear.",
- "headAccessorySpecialSpring2017WarriorText": "Blue Kitty Ears",
- "headAccessorySpecialSpring2017WarriorNotes": "These ears can hear a bag of kitty treats open even in the din of battle! Confers no benefit. Limited Edition 2017 Spring Gear.",
- "headAccessorySpecialSpring2017MageText": "Teal Dog Ears",
- "headAccessorySpecialSpring2017MageNotes": "You can hear the magic in the air! Confers no benefit. Limited Edition 2017 Spring Gear.",
- "headAccessorySpecialSpring2017HealerText": "Purple Mouse Ears",
- "headAccessorySpecialSpring2017HealerNotes": "These ears will help you hear healing secrets. Confers no benefit. Limited Edition 2017 Spring Gear.",
- "headAccessoryBearEarsText": "Bear Ears",
- "headAccessoryBearEarsNotes": "These ears make you look like a brave bear! Confers no benefit.",
- "headAccessoryCactusEarsText": "Cactus Ears",
- "headAccessoryCactusEarsNotes": "These ears make you look like a prickly cactus! Confers no benefit.",
- "headAccessoryFoxEarsText": "Fox Ears",
- "headAccessoryFoxEarsNotes": "These ears make you look like a wily fox! Confers no benefit.",
- "headAccessoryLionEarsText": "Lion Ears",
- "headAccessoryLionEarsNotes": "These ears make you look like a regal lion! Confers no benefit.",
- "headAccessoryPandaEarsText": "Panda Ears",
- "headAccessoryPandaEarsNotes": "These ears make you look like a gentle panda! Confers no benefit.",
- "headAccessoryPigEarsText": "Pig Ears",
- "headAccessoryPigEarsNotes": "These ears make you look like a whimsical pig! Confers no benefit.",
- "headAccessoryTigerEarsText": "Tiger Ears",
- "headAccessoryTigerEarsNotes": "These ears make you look like a fierce tiger! Confers no benefit.",
- "headAccessoryWolfEarsText": "Wolf Ears",
- "headAccessoryWolfEarsNotes": "These ears make you look like a loyal wolf! Confers no benefit.",
- "headAccessoryBlackHeadbandText": "Black Headband",
- "headAccessoryBlackHeadbandNotes": "A simple black headband. Confers no benefit.",
- "headAccessoryBlueHeadbandText": "Blue Headband",
- "headAccessoryBlueHeadbandNotes": "A simple blue headband. Confers no benefit.",
- "headAccessoryGreenHeadbandText": "Green Headband",
- "headAccessoryGreenHeadbandNotes": "A simple green headband. Confers no benefit.",
- "headAccessoryPinkHeadbandText": "Pink Headband",
- "headAccessoryPinkHeadbandNotes": "A simple pink headband. Confers no benefit.",
- "headAccessoryRedHeadbandText": "Red Headband",
- "headAccessoryRedHeadbandNotes": "A simple red headband. Confers no benefit.",
- "headAccessoryWhiteHeadbandText": "White Headband",
- "headAccessoryWhiteHeadbandNotes": "A simple white headband. Confers no benefit.",
- "headAccessoryYellowHeadbandText": "Yellow Headband",
- "headAccessoryYellowHeadbandNotes": "A simple yellow headband. Confers no benefit.",
+ "headAccessorySpecialSpringHealerNotes": "",
+ "headAccessorySpecialSpring2015RogueText": "",
+ "headAccessorySpecialSpring2015RogueNotes": "",
+ "headAccessorySpecialSpring2015WarriorText": "",
+ "headAccessorySpecialSpring2015WarriorNotes": "",
+ "headAccessorySpecialSpring2015MageText": "",
+ "headAccessorySpecialSpring2015MageNotes": "",
+ "headAccessorySpecialSpring2015HealerText": "",
+ "headAccessorySpecialSpring2015HealerNotes": "",
+ "headAccessorySpecialSpring2016RogueText": "",
+ "headAccessorySpecialSpring2016RogueNotes": "",
+ "headAccessorySpecialSpring2016WarriorText": "",
+ "headAccessorySpecialSpring2016WarriorNotes": "",
+ "headAccessorySpecialSpring2016MageText": "",
+ "headAccessorySpecialSpring2016MageNotes": "",
+ "headAccessorySpecialSpring2016HealerText": "",
+ "headAccessorySpecialSpring2016HealerNotes": "",
+ "headAccessorySpecialSpring2017RogueText": "",
+ "headAccessorySpecialSpring2017RogueNotes": "",
+ "headAccessorySpecialSpring2017WarriorText": "",
+ "headAccessorySpecialSpring2017WarriorNotes": "",
+ "headAccessorySpecialSpring2017MageText": "",
+ "headAccessorySpecialSpring2017MageNotes": "",
+ "headAccessorySpecialSpring2017HealerText": "",
+ "headAccessorySpecialSpring2017HealerNotes": "",
+ "headAccessoryBearEarsText": "",
+ "headAccessoryBearEarsNotes": "",
+ "headAccessoryCactusEarsText": "",
+ "headAccessoryCactusEarsNotes": "",
+ "headAccessoryFoxEarsText": "",
+ "headAccessoryFoxEarsNotes": "",
+ "headAccessoryLionEarsText": "",
+ "headAccessoryLionEarsNotes": "",
+ "headAccessoryPandaEarsText": "",
+ "headAccessoryPandaEarsNotes": "",
+ "headAccessoryPigEarsText": "",
+ "headAccessoryPigEarsNotes": "",
+ "headAccessoryTigerEarsText": "",
+ "headAccessoryTigerEarsNotes": "",
+ "headAccessoryWolfEarsText": "",
+ "headAccessoryWolfEarsNotes": "",
+ "headAccessoryBlackHeadbandText": "",
+ "headAccessoryBlackHeadbandNotes": "",
+ "headAccessoryBlueHeadbandText": "",
+ "headAccessoryBlueHeadbandNotes": "",
+ "headAccessoryGreenHeadbandText": "",
+ "headAccessoryGreenHeadbandNotes": "",
+ "headAccessoryPinkHeadbandText": "",
+ "headAccessoryPinkHeadbandNotes": "",
+ "headAccessoryRedHeadbandText": "",
+ "headAccessoryRedHeadbandNotes": "",
+ "headAccessoryWhiteHeadbandText": "",
+ "headAccessoryWhiteHeadbandNotes": "",
+ "headAccessoryYellowHeadbandText": "",
+ "headAccessoryYellowHeadbandNotes": "",
"headAccessoryMystery201403Text": "Оленячі роги лісовика",
- "headAccessoryMystery201403Notes": "These antlers shimmer with moss and lichen. Confers no benefit. March 2014 Subscriber Item.",
+ "headAccessoryMystery201403Notes": "",
"headAccessoryMystery201404Text": "Вусики сутiнкового метелика",
- "headAccessoryMystery201404Notes": "These antennae help the wearer sense dangerous distractions! Confers no benefit. April 2014 Subscriber Item.",
+ "headAccessoryMystery201404Notes": "",
"headAccessoryMystery201409Text": "Осiннi роги",
- "headAccessoryMystery201409Notes": "These powerful antlers change colors with the leaves. Confers no benefit. September 2014 Subscriber Item.",
- "headAccessoryMystery201502Text": "Wings of Thought",
- "headAccessoryMystery201502Notes": "Let your imagination take flight! Confers no benefit. February 2015 Subscriber Item.",
- "headAccessoryMystery201510Text": "Goblin Horns",
- "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.",
- "headAccessoryMystery201801Text": "Frost Sprite Antlers",
- "headAccessoryMystery201801Notes": "These icy antlers shimmer with the glow of winter auroras. Confers no benefit. January 2018 Subscriber Item.",
- "headAccessoryMystery201804Text": "Squirrel Ears",
- "headAccessoryMystery201804Notes": "These fuzzy sound-catchers will ensure you never miss the rustle of a leaf or the sound of an acorn falling! Confers no benefit. April 2018 Subscriber Item.",
- "headAccessoryMystery201812Text": "Arctic Fox Ears",
- "headAccessoryMystery201812Notes": "You hear the subtle sound of snowflakes falling upon the landscape. Confers no benefit. December 2018 Subscriber Item.",
- "headAccessoryMystery301405Text": "Headwear Goggles",
- "headAccessoryMystery301405Notes": "\"Goggles are for your eyes,\" they said. \"Nobody wants goggles that you can only wear on your head,\" they said. Hah! You sure showed them! Confers no benefit. August 3015 Subscriber Item.",
- "headAccessoryArmoireComicalArrowText": "Comical Arrow",
- "headAccessoryArmoireComicalArrowNotes": "This whimsical item sure is good for a laugh! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.",
- "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).",
+ "headAccessoryMystery201409Notes": "",
+ "headAccessoryMystery201502Text": "",
+ "headAccessoryMystery201502Notes": "",
+ "headAccessoryMystery201510Text": "",
+ "headAccessoryMystery201510Notes": "",
+ "headAccessoryMystery201801Text": "",
+ "headAccessoryMystery201801Notes": "",
+ "headAccessoryMystery201804Text": "",
+ "headAccessoryMystery201804Notes": "",
+ "headAccessoryMystery201812Text": "",
+ "headAccessoryMystery201812Notes": "",
+ "headAccessoryMystery301405Text": "",
+ "headAccessoryMystery301405Notes": "",
+ "headAccessoryArmoireComicalArrowText": "",
+ "headAccessoryArmoireComicalArrowNotes": "",
+ "headAccessoryArmoireGogglesOfBookbindingText": "",
+ "headAccessoryArmoireGogglesOfBookbindingNotes": "",
"eyewear": "Окуляри",
"eyewearCapitalized": "Eyewear",
"eyewearBase0Text": "Без окуляр",
"eyewearBase0Notes": "Без окуляр.",
- "eyewearSpecialBlackTopFrameText": "Black Standard Eyeglasses",
- "eyewearSpecialBlackTopFrameNotes": "Glasses with a black frame above the lenses. Confers no benefit.",
- "eyewearSpecialBlueTopFrameText": "Blue Standard Eyeglasses",
- "eyewearSpecialBlueTopFrameNotes": "Glasses with a blue frame above the lenses. Confers no benefit.",
- "eyewearSpecialGreenTopFrameText": "Green Standard Eyeglasses",
- "eyewearSpecialGreenTopFrameNotes": "Glasses with a green frame above the lenses. Confers no benefit.",
- "eyewearSpecialPinkTopFrameText": "Pink Standard Eyeglasses",
- "eyewearSpecialPinkTopFrameNotes": "Glasses with a pink frame above the lenses. Confers no benefit.",
- "eyewearSpecialRedTopFrameText": "Red Standard Eyeglasses",
- "eyewearSpecialRedTopFrameNotes": "Glasses with a red frame above the lenses. Confers no benefit.",
- "eyewearSpecialWhiteTopFrameText": "White Standard Eyeglasses",
- "eyewearSpecialWhiteTopFrameNotes": "Glasses with a white frame above the lenses. Confers no benefit.",
- "eyewearSpecialYellowTopFrameText": "Yellow Standard Eyeglasses",
- "eyewearSpecialYellowTopFrameNotes": "Glasses with a yellow frame above the lenses. Confers no benefit.",
- "eyewearSpecialAetherMaskText": "Aether Mask",
- "eyewearSpecialAetherMaskNotes": "This mask has a mysterious history. Increases Intelligence by <%= int %>.",
- "eyewearSpecialSummerRogueText": "Roguish Eyepatch",
- "eyewearSpecialSummerRogueNotes": "It doesn't take a scallywag to see how stylish this is! Confers no benefit. Limited Edition 2014 Summer Gear.",
- "eyewearSpecialSummerWarriorText": "Dashing Eyepatch",
- "eyewearSpecialSummerWarriorNotes": "It doesn't take a rapscallion to see how stylish this is! Confers no benefit. Limited Edition 2014 Summer Gear.",
- "eyewearSpecialWonderconRedText": "Mighty Mask",
- "eyewearSpecialWonderconRedNotes": "What a powerful face accessory! Confers no benefit. Special Edition Convention Item.",
- "eyewearSpecialWonderconBlackText": "Sneaky Mask",
- "eyewearSpecialWonderconBlackNotes": "Your motives are definitely legitimate. Confers no benefit. Special Edition Convention Item.",
- "eyewearMystery201503Text": "Aquamarine Eyewear",
- "eyewearMystery201503Notes": "Don't get poked in the eye by these shimmering gems! Confers no benefit. March 2015 Subscriber Item.",
- "eyewearMystery201506Text": "Neon Snorkel",
- "eyewearMystery201506Notes": "This neon snorkel lets its wearer see underwater. Confers no benefit. June 2015 Subscriber Item.",
- "eyewearMystery201507Text": "Rad Sunglasses",
- "eyewearMystery201507Notes": "These sunglasses let you stay cool even when the weather is hot. Confers no benefit. July 2015 Subscriber Item.",
- "eyewearMystery201701Text": "Timeless Shades",
- "eyewearMystery201701Notes": "These sunglasses will protect your eyes from harmful rays and will look stylish no matter where you find yourself in time! Confers no benefit. January 2017 Subscriber Item.",
- "eyewearMystery301404Text": "Eyewear Goggles",
- "eyewearMystery301404Notes": "No eyewear could be fancier than a pair of goggles - except, perhaps, for a monocle. Confers no benefit. April 3015 Subscriber Item.",
- "eyewearMystery301405Text": "Monocle",
- "eyewearMystery301405Notes": "No eyewear could be fancier than a monocle - except, perhaps, for a pair of goggles. Confers no benefit. July 3015 Subscriber Item.",
- "eyewearMystery301703Text": "Peacock Masquerade Mask",
- "eyewearMystery301703Notes": "Perfect for a fancy masquerade or for stealthily moving through a particularly well-dressed crowd. Confers no benefit. March 3017 Subscriber Item.",
- "eyewearArmoirePlagueDoctorMaskText": "Plague Doctor Mask",
- "eyewearArmoirePlagueDoctorMaskNotes": "An authentic mask worn by the doctors who battle the Plague of Procrastination. Increases Constitution and Intelligence by <%= attrs %> each. Enchanted Armoire: Plague Doctor Set (Item 2 of 3).",
- "eyewearArmoireGoofyGlassesText": "Goofy Glasses",
- "eyewearArmoireGoofyGlassesNotes": "Perfect for going incognito or just making your partymates giggle. Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
- "twoHandedItem": "Two-handed item.",
+ "eyewearSpecialBlackTopFrameText": "",
+ "eyewearSpecialBlackTopFrameNotes": "",
+ "eyewearSpecialBlueTopFrameText": "",
+ "eyewearSpecialBlueTopFrameNotes": "",
+ "eyewearSpecialGreenTopFrameText": "",
+ "eyewearSpecialGreenTopFrameNotes": "",
+ "eyewearSpecialPinkTopFrameText": "",
+ "eyewearSpecialPinkTopFrameNotes": "",
+ "eyewearSpecialRedTopFrameText": "",
+ "eyewearSpecialRedTopFrameNotes": "",
+ "eyewearSpecialWhiteTopFrameText": "",
+ "eyewearSpecialWhiteTopFrameNotes": "",
+ "eyewearSpecialYellowTopFrameText": "",
+ "eyewearSpecialYellowTopFrameNotes": "",
+ "eyewearSpecialAetherMaskText": "",
+ "eyewearSpecialAetherMaskNotes": "",
+ "eyewearSpecialSummerRogueText": "",
+ "eyewearSpecialSummerRogueNotes": "",
+ "eyewearSpecialSummerWarriorText": "",
+ "eyewearSpecialSummerWarriorNotes": "",
+ "eyewearSpecialWonderconRedText": "",
+ "eyewearSpecialWonderconRedNotes": "",
+ "eyewearSpecialWonderconBlackText": "",
+ "eyewearSpecialWonderconBlackNotes": "",
+ "eyewearMystery201503Text": "",
+ "eyewearMystery201503Notes": "",
+ "eyewearMystery201506Text": "",
+ "eyewearMystery201506Notes": "",
+ "eyewearMystery201507Text": "",
+ "eyewearMystery201507Notes": "",
+ "eyewearMystery201701Text": "",
+ "eyewearMystery201701Notes": "",
+ "eyewearMystery301404Text": "",
+ "eyewearMystery301404Notes": "",
+ "eyewearMystery301405Text": "",
+ "eyewearMystery301405Notes": "",
+ "eyewearMystery301703Text": "",
+ "eyewearMystery301703Notes": "",
+ "eyewearArmoirePlagueDoctorMaskText": "",
+ "eyewearArmoirePlagueDoctorMaskNotes": "",
+ "eyewearArmoireGoofyGlassesText": "",
+ "eyewearArmoireGoofyGlassesNotes": "",
+ "twoHandedItem": "",
"weaponSpecialKS2019Text": "Глефа міфічного грифона",
"weaponSpecialKS2019Notes": "Зігнута, немов дзьоб та кігті грифона, ця пишна древкова зброя надає енергію, коли завдання здаються страшними. Збільшує силу на <%= str %>.",
"weaponSpecialSpring2019RogueText": "Блискавка",
diff --git a/website/common/locales/uk/generic.json b/website/common/locales/uk/generic.json
index fc8857afc1..1d5b64b744 100644
--- a/website/common/locales/uk/generic.json
+++ b/website/common/locales/uk/generic.json
@@ -5,8 +5,8 @@
"onward": "Гайда!",
"done": "Готово",
"gotIt": "Зрозуміло!",
- "titleTimeTravelers": "Мандрівники у часі",
- "titleSeasonalShop": "Сезонна крамниця",
+ "titleTimeTravelers": "Машина часу",
+ "titleSeasonalShop": "Ярмарок",
"saveEdits": "Зберегти зміни",
"showMore": "Розгорнути",
"showLess": "Згорнути",
@@ -88,7 +88,7 @@
"audioTheme_maflTheme": "Тема MAFL",
"audioTheme_pizildenTheme": "Тема Pizilden",
"audioTheme_farvoidTheme": "Тема від Farvoid",
- "reportBug": "Повiдомити про помилку в роботі",
+ "reportBug": "Повiдомити про помилку",
"overview": "Огляд для нових користувачiв",
"dateFormat": "Формат дати",
"achievementStressbeast": "Спаситель Стойкальма",
@@ -99,7 +99,7 @@
"achievementBewilderText": "Допомігли перемогти Забудівника під час Весняного Летючого Івенту 2016!",
"achievementDysheartener": "Рятівник розбитих серцем",
"achievementDysheartenerText": "Допомогли перемогти Серцеїда під час подій до Дня святого Валентина у 2018 році!",
- "cards": "Картки",
+ "cards": "Листівки",
"sentCardToUser": "Ви надіслали листівку <%= profileName %>",
"cardReceived": "Ви отримали <%= card %>",
"greetingCard": "Вітальна листівка",
diff --git a/website/common/locales/uk/groups.json b/website/common/locales/uk/groups.json
index 8f5b6579c8..89aff4426c 100644
--- a/website/common/locales/uk/groups.json
+++ b/website/common/locales/uk/groups.json
@@ -8,11 +8,11 @@
"communityGuidelinesLink": "Community Guidelines",
"lookingForGroup": "Оголошення про пошук групи(команди)",
"dataDisplayTool": "Інструмент для відображення даних",
- "requestFeature": "Запросити функцію",
+ "requestFeature": "Запропонувати функцію",
"askAQuestion": "Задати запитання",
"askQuestionGuild": "Поставити питання (ґільдія Habitica Help)",
"contributing": "Внесок",
- "faq": "FAQ",
+ "faq": "ЧаПи",
"tutorial": "Навчання",
"glossary": "Словник",
"wiki": "Wiki",
@@ -162,11 +162,11 @@
"onlyCreatorOrAdminCanDeleteChat": "У вас немає прав для видалення цього повідомлення!",
"onlyGroupLeaderCanEditTasks": "У вас немає прав для управління задачами!",
"onlyGroupTasksCanBeAssigned": "Можна призначати лише групові завдання",
- "assignedTo": "Доручити",
- "assignedToUser": "Покладено на <%- userName %>",
- "assignedToMembers": "Доручено <%= userCount %> членам",
- "assignedToYouAndMembers": "Доручено Вам та <%= userCount %> членам",
- "youAreAssigned": "Доручено Вам",
+ "assignedTo": "Доручено",
+ "assignedToUser": "Доручено: @<%- userName %>",
+ "assignedToMembers": "<%= userCount %> членам",
+ "assignedToYouAndMembers": "Вам та <%= userCount %> членам",
+ "youAreAssigned": "Доручено: вам",
"taskIsUnassigned": "Задача не назначена",
"confirmUnClaim": "Ви впевнені, що хочете звільнити це завдання?",
"confirmNeedsWork": "Ви впевнені, що хочете позначити це завдання як таке, що потребує роботи?",
@@ -183,7 +183,7 @@
"removeClaim": "Відмінити присвоєння",
"onlyGroupLeaderCanManageSubscription": "Тільки лідер групи може управляти підпискою групи",
"yourTaskHasBeenApproved": "Ваша задача <%- taskText %> була схвалена.",
- "taskNeedsWork": "<%- managerName %> позначена <%- taskText %> як потребуюча доробки.",
+ "taskNeedsWork": "@<%- managerName %> повернув на доробку <%- taskText %>. Ваші винагороди за виконання завдання скасовано.",
"userHasRequestedTaskApproval": "<%- user %> запрошує підтвердження для <%- taskName %>",
"approve": "Підтвердити",
"approveTask": "Підтвердити задачу",
@@ -288,8 +288,8 @@
"invites": "Запрошені",
"details": "Details",
"participantDesc": "Квест починається після того, як усі учасники прийняли або відхилили запрошення. Тільки ті, хто натиснув кнопку «Прийняти», зможуть взяти участь у квесті та отримати нагороди.",
- "groupGems": "Самоцвіти групи",
- "groupGemsDesc": "Самоцвіти гільдії можна витратити на випробування! У майбутньому Ви зможете додати більше каменів до банку ґільдії.",
+ "groupGems": "Самоцвіти ґільдії",
+ "groupGemsDesc": "Самоцвіти групи можна витратити на випробування! У майбутньому Ви зможете додати більше каменів до банку групи.",
"groupTaskBoard": "Дошка завдань",
"groupInformation": "Деталі спільноти",
"groupBilling": "Рахунки спільноти",
@@ -314,7 +314,7 @@
"groupManagementControls": "Інструменти управління групою",
"groupManagementControlsDesc": "Використовуйте схвалення завдань, щоб переконатися, що завдання дійсно виконано, додайте менеджерів груп, щоб розділити обов’язки, і насолоджуйтеся приватним груповим чатом для всіх членів команди.",
"inGameBenefits": "Внутрішньо-ігрові бонуси",
- "inGameBenefitsDesc": "Члени групи отримують ексклюзивного скакуна Джекалопа, а також повні переваги підписки, включаючи спеціальні щомісячні набори спорядження та можливість купувати самоцвіти за золото.",
+ "inGameBenefitsDesc": "Члени групи отримують ексклюзивного скакуна Кроленя, а також повні переваги підписки, включаючи спеціальні щомісячні набори спорядження та можливість купувати самоцвіти за золото.",
"inspireYourParty": "Надихніть свою команду, живіть граючи.",
"letsMakeAccount": "По-перше, давайте створимо Вам обліковий запис",
"nameYourGroup": "Далі - введіть назву своєї команди",
@@ -363,7 +363,7 @@
"cannotRemoveQuestOwner": "Ви не можете видалити власника квесту. Скасуйте для початку квест.",
"usernameOrUserId": "Введіть @ім'я або ж ID користувача",
"userWithUsernameOrUserIdNotFound": "Ім'я або ж ID користувача не знайдено.",
- "chooseTeamMember": "Виберіть члена команди",
+ "chooseTeamMember": "Оберіть члена команди",
"onlyPrivateGuildsCanUpgrade": "Тільки приватні ґільдії можуть бути покращені до групи.",
"bannedWordsAllowed": "Дозволити заборонені слова",
"bannedWordsAllowedDetail": "Якщо вибрано цю опцію, використання заборонених слів у цій ґільдії буде дозволено.",
@@ -378,6 +378,29 @@
"groupActivityNotificationTitle": "<%= user %> опублікував в <%= group %>",
"managerNotes": "Нотатки менеджера",
"assignedDateOnly": "Назначено на <%= date %>",
- "assignedDateAndUser": "Назначено @<%- username %> на <%= date %>",
- "sendGiftTotal": "Всього:"
+ "assignedDateAndUser": "Назначено @<%- username %> на <%= date %>",
+ "sendGiftTotal": "Всього:",
+ "chatTemporarilyUnavailable": "Чат тимчасово недоступний. Будь-ласка спробуйте пізніше.",
+ "assignTo": "Доручити",
+ "dayStart": "Початок дня: <%= startTime %>",
+ "viewStatus": "Статус",
+ "lastCompleted": "Останнє виконане",
+ "youEmphasized": "Ви",
+ "newGroupsWelcome": "Ласкаво просимо до нової панелі спільних завдань!",
+ "newGroupsBullet01": "Взаємодійте із завданнями безпосередньо зі спільної панелі завдань",
+ "newGroupsBullet03": "Спільні завдання скидаються одночасно для всіх для полегшення співпраці",
+ "newGroupsBullet05": "Колір спільних завдань погіршиться, якщо їх залишити невиконаними, це зроблено - щоб допомогти відстежувати прогрес",
+ "newGroupsBullet08": "Керівник групи та менеджери можуть швидко додавати завдання з верхньої частини стовпців завдань",
+ "newGroupsBullet10": "Статус призначення визначає умову виконання:",
+ "newGroupsBullet10a": "Залиште завдання непризначеним, якщо хто завгодно із учасників може його виконати",
+ "newGroupsWhatsNew": "Перевірте, що нового:",
+ "newGroupsBullet02": "Кожен може виконати нічийне завдання",
+ "newGroupsBullet04": "Спільні щоденники не завдадуть шкоди, якщо їх пропустити або відзначити у вікні «Записати вчорашню активність»",
+ "newGroupsBullet06": "Перегляд статусу завдання дозволяє швидко побачити, хто його виконав",
+ "newGroupsBullet07": "Увімкніть можливість відображати спільні завдання на вашій персональній панелі завдань",
+ "newGroupsBullet09": "Спільне завдання можна повернути в роботу, щоб показати, що воно ще потребує доробки",
+ "newGroupsBullet10b": "Призначте завдання одному учаснику, щоб лише він міг його виконати",
+ "newGroupsBullet10c": "Призначте завдання кільком учасникам, якщо їм усім потрібно його виконати",
+ "newGroupsVisitFAQ": "Відвідайте ЧаПи зі спадного меню «Допомога», щоб отримати додаткові вказівки.",
+ "newGroupsEnjoy": "Сподіваємося, вам сподобаються нові групові плани!"
}
diff --git a/website/common/locales/uk/limited.json b/website/common/locales/uk/limited.json
index 0172c4ceed..2eb9bfa893 100644
--- a/website/common/locales/uk/limited.json
+++ b/website/common/locales/uk/limited.json
@@ -12,8 +12,8 @@
"valentineCardNotes": "Відправити Валентинку члену гурту.",
"valentine0": "\"Я не вмру, і не ховайте\n\nМене на могилі,\n\nБо я в компанії із другом\n\nВ Габітиці милій!\"",
"valentine1": "\"Як умре, то поховайте\n\nВайса на могилі\n\nСеред степу широкого\n\nВ Габітиці милій!\"",
- "valentine2": "\"Roses are red\n\nThis poem style is old\n\nI hope that you like this\n\n'Cause it cost ten Gold.\"",
- "valentine3": "\"Roses are red\n\nIce Drakes are blue\n\nNo treasure is better\n\nThan time spent with you!\"",
+ "valentine2": "\"Як умру, то прочитайте\n\nЦей вірш дуже милий\n\nТільки ж коштував мені він\n\nЦілих десять гривень.\"",
+ "valentine3": "Я не вмру, бо пам'ятаю\n\nПостать милу твою\n\nНайцінніший скарб для мене\n\nМиті із тобою",
"valentineCardAchievementTitle": "Любі друзі",
"valentineCardAchievementText": "Ой, Ви і Ваш друг, мабуть, справді дбаєте один про одного! Надіслано або отримано <%= count %> листівки до Дня Святого Валентина.",
"polarBear": "Білий ведмідь",
@@ -21,9 +21,9 @@
"gildedTurkey": "Позолочений індик",
"polarBearPup": "Біле ведмежа",
"jackolantern": "Джек-ліхтар",
- "ghostJackolantern": "Ghost Jack-O-Lantern",
+ "ghostJackolantern": "Ліхтар-привид Джека",
"glowJackolantern": "Привид Джека-Ліхтаря",
- "seasonalShop": "Сезонна крамниця",
+ "seasonalShop": "Ярмарок",
"seasonalShopClosedTitle": "<%= linkStart %>Леся<%= linkEnd %>",
"seasonalShopTitle": "<%= linkStart %>Сезонна чарівниця<%= linkEnd %>",
"seasonalShopClosedText": "Сезонна крамниця не працює! Вона відкрита лише під час чотирьох Великих свят Habitica.",
@@ -31,19 +31,19 @@
"seasonalShopFallText": "Зі святом осені!! Чи хотіли б ви придбати деякі рідкісні речі? Обов’язково отримайте їх до закінчення Гали!",
"seasonalShopWinterText": "Веселих зимових свят! Бажаєте придбати рідкісні речі? Поспішіть придбати їх до закінчення свята!",
"seasonalShopSpringText": "Щасливої весни! Бажаєте придбати рідкісні речі? Не забудьте придбати їх до закінчення свят!",
- "seasonalShopFallTextBroken": "Oh.... Welcome to the Seasonal Shop... We're stocking autumn Seasonal Edition goodies, or something... Everything here will be available to purchase during the Fall Festival event each year, but we're only open until October 31... I guess you should to stock up now, or you'll have to wait... and wait... and wait... *sigh*",
- "seasonalShopBrokenText": "My pavilion!!!!!!! My decorations!!!! Oh, the Dysheartener's destroyed everything :( Please help defeat it in the Tavern so I can rebuild!",
- "seasonalShopRebirth": "If you bought any of this equipment in the past but don't currently own it, you can repurchase it in the Rewards Column. Initially, you'll only be able to purchase the items for your current class (Warrior by default), but fear not, the other class-specific items will become available if you switch to that class.",
+ "seasonalShopFallTextBroken": "О.... Ласкаво просимо на ярмарок... Ми пропонуємо товари спеціально до осіннього сезону і ще всяке-різне... Усе, що ви тут бачите можна буде придбати щороку під час Осіннього фестивалю, але, зауважте, ми працюємо лише до 31 жовтня... Гадаю, вам варто запастися зараз, або ж доведеться чекати... і чекати... і чекати... *зітхає*",
+ "seasonalShopBrokenText": "Мій павільйон!!!!!!! Мої прикраси!!!! Ох, Серцеїд знищив усе :( Будь ласка, допоможіть перемогти його в таверні, щоб я міг відбудуватись!",
+ "seasonalShopRebirth": "Якщо ви раніше купували що-небудь з цього спорядження, але зараз не володієте ним, ви можете викупити його в стовпці Нагороди. Спочатку ви зможете придбати предмети лише для свого поточного класу (за замовчуванням «Воїн»), але не лякайтеся, предмети для інших класів стануть доступними, якщо ви перейдете на них.",
"candycaneSet": "Карамельна паличка (маг)",
"skiSet": "Лижник-ассасин (розбійник)",
"snowflakeSet": "Сніжинка (цілитель)",
"yetiSet": "Приборкувач Єті (воїн)",
"northMageSet": "Маг Півночі (маг)",
- "icicleDrakeSet": "Icicle Drake (Rogue)",
- "soothingSkaterSet": "Soothing Skater (Healer)",
+ "icicleDrakeSet": "Льодяний Дрейк (розбійник)",
+ "soothingSkaterSet": "Заспокійливий ковзняр (цілитель)",
"gingerbreadSet": "Пряник (воїн)",
"snowDaySet": "Сніговий день (воїн)",
- "snowboardingSet": "Snowboarding Sorcerer (Mage)",
+ "snowboardingSet": "Чарівник на сноуборді (маг)",
"festiveFairySet": "Святкова фея (цілитель)",
"cocoaSet": "Какао (розбійник)",
"toAndFromCard": "Для: <%= toName %>, від: <%= fromName %>",
@@ -64,48 +64,48 @@
"stealthyKittySet": "Скритне кошення (розбійник)",
"daringSwashbucklerSet": "Зухвалий шибайголова (воїн)",
"emeraldMermageSet": "Смарагдовий русало-маг (маг)",
- "reefSeahealerSet": "Reef Seahealer (Healer)",
- "roguishPirateSet": "Roguish Pirate (Rogue)",
- "monsterOfScienceSet": "Monster of Science (Warrior)",
- "witchyWizardSet": "Witchy Wizard (Mage)",
- "mummyMedicSet": "Mummy Medic (Healer)",
- "vampireSmiterSet": "Vampire Smiter (Rogue)",
- "bewareDogSet": "Beware Dog (Warrior)",
- "magicianBunnySet": "Magician's Bunny (Mage)",
- "comfortingKittySet": "Comforting Kitty (Healer)",
- "sneakySqueakerSet": "Sneaky Squeaker (Rogue)",
+ "reefSeahealerSet": "Рифовий цілитель (цілитель)",
+ "roguishPirateSet": "Пірат-шахрай (розбійник)",
+ "monsterOfScienceSet": "Монстр науки (воїн)",
+ "witchyWizardSet": "Відьомський чарівник (маг)",
+ "mummyMedicSet": "Мумія-медик (цілитель)",
+ "vampireSmiterSet": "Кровопивця-вбивця (розбійник)",
+ "bewareDogSet": "Сторожовий пес (воїн)",
+ "magicianBunnySet": "Зайчик-фокусник (маг)",
+ "comfortingKittySet": "Втішне кошеня (цілитель)",
+ "sneakySqueakerSet": "Підступний пискун (розбійник)",
"sunfishWarriorSet": "Риба-місяць (воїн)",
- "shipSoothsayerSet": "Ship Soothsayer (Mage)",
- "strappingSailorSet": "Strapping Sailor (Healer)",
- "reefRenegadeSet": "Reef Renegade (Rogue)",
+ "shipSoothsayerSet": "Корабельний віщун (маг)",
+ "strappingSailorSet": "Дужий моряr (цілитель)",
+ "reefRenegadeSet": "Рифовий віступник (розбійник)",
"scarecrowWarriorSet": "Опудало (воїн)",
- "stitchWitchSet": "Stitch Witch (Mage)",
- "potionerSet": "Potioner (Healer)",
+ "stitchWitchSet": "Клаптева чаклунка (Маг)",
+ "potionerSet": "Зіллєвар (цілитель)",
"battleRogueSet": "Мишехвіст (розбійник)",
- "springingBunnySet": "Springing Bunny (Healer)",
- "grandMalkinSet": "Grand Malkin (Mage)",
- "cleverDogSet": "Clever Dog (Rogue)",
- "braveMouseSet": "Brave Mouse (Warrior)",
+ "springingBunnySet": "Пружинний зайчик (цілитель)",
+ "grandMalkinSet": "Великий Малкін (маг)",
+ "cleverDogSet": "Розумний пес (розбійник)",
+ "braveMouseSet": "Хоробрий миша (воїн)",
"summer2016SharkWarriorSet": "Акула (воїн)",
"summer2016DolphinMageSet": "Дельфін (маг)",
"summer2016SeahorseHealerSet": "Морський коник (цілитель)",
"summer2016EelSet": "Вугор (розбійник)",
- "fall2016SwampThingSet": "Swamp Thing (Warrior)",
- "fall2016WickedSorcererSet": "Wicked Sorcerer (Mage)",
+ "fall2016SwampThingSet": "Болотна штука (воїн)",
+ "fall2016WickedSorcererSet": "Злий чаклун (маг)",
"fall2016GorgonHealerSet": "Горгона (цілитель)",
"fall2016BlackWidowSet": "Чорна вдова (розбійник)",
- "winter2017IceHockeySet": "Ice Hockey (Warrior)",
- "winter2017WinterWolfSet": "Winter Wolf (Mage)",
+ "winter2017IceHockeySet": "Хокеїст (воїн)",
+ "winter2017WinterWolfSet": "Зимовий вовк (маг)",
"winter2017SugarPlumSet": "Цукрова слива (цілитель)",
"winter2017FrostyRogueSet": "Мороз (розбійник)",
"spring2017FelineWarriorSet": "Кіт (воїн)",
- "spring2017CanineConjurorSet": "Canine Conjuror (Mage)",
- "spring2017FloralMouseSet": "Floral Mouse (Healer)",
- "spring2017SneakyBunnySet": "Sneaky Bunny (Rogue)",
+ "spring2017CanineConjurorSet": "Собачий фокусник (маг)",
+ "spring2017FloralMouseSet": "Квіткова мишка (цілитель)",
+ "spring2017SneakyBunnySet": "Підступний кролик (розбійник)",
"summer2017SandcastleWarriorSet": "Піщаний замок (воїн)",
"summer2017WhirlpoolMageSet": "Водоверть (маг)",
- "summer2017SeashellSeahealerSet": "Seashell Seahealer (Healer)",
- "summer2017SeaDragonSet": "Sea Dragon (Rogue)",
+ "summer2017SeashellSeahealerSet": "Підводний цілитель (цілитель)",
+ "summer2017SeaDragonSet": "Морський дракон (розбійник)",
"fall2017HabitoweenSet": "Габітовін (воїн)",
"fall2017MasqueradeSet": "Маскарад (маг)",
"fall2017HauntedHouseSet": "Будинок з привидами (цілитель)",
@@ -120,32 +120,32 @@
"spring2018DucklingRogueSet": "Каченя (розбійник)",
"summer2018BettaFishWarriorSet": "Бійцівська сіамська рибка (воїн)",
"summer2018LionfishMageSet": "Крилатка (маг)",
- "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
- "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
- "fall2018MinotaurWarriorSet": "Minotaur (Warrior)",
- "fall2018CandymancerMageSet": "Candymancer (Mage)",
- "fall2018CarnivorousPlantSet": "Carnivorous Plant (Healer)",
- "fall2018AlterEgoSet": "Alter Ego (Rogue)",
- "winter2019BlizzardSet": "Blizzard (Warrior)",
- "winter2019PyrotechnicSet": "Pyrotechnic (Mage)",
- "winter2019WinterStarSet": "Winter Star (Healer)",
- "winter2019PoinsettiaSet": "Poinsettia (Rogue)",
- "eventAvailability": "Available for purchase until <%= date(locale) %>.",
- "dateEndMarch": "April 30",
- "dateEndApril": "April 19",
+ "summer2018MerfolkMonarchSet": "Підводний монарх (цілитель)",
+ "summer2018FisherRogueSet": "Рибак (розбійник)",
+ "fall2018MinotaurWarriorSet": "Мінотавр (воїн)",
+ "fall2018CandymancerMageSet": "Цукерівник (маг)",
+ "fall2018CarnivorousPlantSet": "Хижа рослина (цілитель)",
+ "fall2018AlterEgoSet": "Альтер его (розбійник)",
+ "winter2019BlizzardSet": "Завірюха (воїн)",
+ "winter2019PyrotechnicSet": "Піротехнік (маг)",
+ "winter2019WinterStarSet": "Зимова зоря (цілитель)",
+ "winter2019PoinsettiaSet": "Молочай-різдвяник (розбійник)",
+ "eventAvailability": "Купівля можливо до <%= date(locale) %>.",
+ "dateEndMarch": "31 березня",
+ "dateEndApril": "30 квітня",
"dateEndMay": "May 31",
- "dateEndJune": "June 14",
+ "dateEndJune": "30 червня",
"dateEndJuly": "July 31",
"dateEndAugust": "August 31",
- "dateEndSeptember": "September 21",
+ "dateEndSeptember": "30 вересня",
"dateEndOctober": "October 31",
"dateEndNovember": "30 листопада",
"dateEndJanuary": "January 31",
"dateEndFebruary": "28 лютого",
"winterPromoGiftHeader": "ПОДАРУЙТЕ ПІДПИСКУ ТА ОТРИМАЙТЕ ЩЕ ОДНУ БЕЗКОШТОВНО!",
"winterPromoGiftDetails1": "Тільки до 6 січня, коли Ви подаруєте комусь підписку, Ви отримуєте таку ж підписку для себе безкоштовно!",
- "winterPromoGiftDetails2": "Please note that if you or your gift recipient already have a recurring subscription, the gifted subscription will only start after that subscription is cancelled or has expired. Thanks so much for your support! <3",
- "discountBundle": "bundle",
+ "winterPromoGiftDetails2": "Зауважте, що якщо у вас або одержувача подарунка вже є підписка, тоді подарована підписка почне діяти лише після того, як цю попередню буде скасовано або вона закінчиться. Велике спасибі за вашу підтримку! <3",
+ "discountBundle": "комплект",
"g1g1Announcement": "Акція \"Подаруй підписку - отримай підписку\" діє прямо зараз!",
"g1g1Details": "Подаруйте підписку другу, і Ви отримаєте таку ж підписку безкоштовно!",
"g1g1Limitations": "Це обмежена подія, яка розпочнеться 6 грудня о 8:00 за європейським часом (13:00 UTC) і завершиться 6 січня о 20:00 за європейським часом (1:00 UTC). Ця акція застосовується лише тоді, коли Ви даруєте іншому жителю Habitica. Якщо Ви або Ваш одержувач подарунка вже маєте підписку, подарована підписка додасть місяці кредиту, який буде використаний лише після скасування або закінчення терміну дії поточної підписки.",
@@ -218,5 +218,13 @@
"winter2022PomegranateMageSet": "Гранат (маг)",
"winter2022IceCrystalHealerSet": "Крижаний кристал (цілитель)",
"januaryYYYY": "Січень <%= year %>",
- "aprilYYYY": "Квітень <%= year %>"
+ "aprilYYYY": "Квітень <%= year %>",
+ "summer2022CrabRogueSet": "Краб (розбійник)",
+ "summer2022WaterspoutWarriorSet": "Водяний смерч (воїн)",
+ "summer2022MantaRayMageSet": "Манта (маг)",
+ "summer2022AngelfishHealerSet": "Риба-ангел (цілитель)",
+ "dateEndDecember": "31 грудня",
+ "februaryYYYY": "Лютий <%= year %>",
+ "julyYYYY": "Липень <%= year %>",
+ "octoberYYYY": "Жовтень <%= year %>"
}
diff --git a/website/common/locales/uk/npc.json b/website/common/locales/uk/npc.json
index 21e0f274af..b2417a036e 100644
--- a/website/common/locales/uk/npc.json
+++ b/website/common/locales/uk/npc.json
@@ -17,9 +17,9 @@
"mattBochText1": "Ласкаво просимо до хліва! Я Матвей, доглядач тварин. Кожного разу, коли Ви виконуєте завдання, Ви матимете шанс отримати яйце або інкубаційне зілля, щоб вилупити тваринку. Коли Ви вилупите вихованця, він з’явиться тут! Натисніть зображення тваринки, щоб додати її до свого аватара. Годуйте їх знайденим Вами кормом, і вони виростуть у скакуна.",
"welcomeToTavern": "Ласкаво просимо до таверни!",
"sleepDescription": "Потрібна перерва? Завітайте в готель до Данила, щоб призупинити деякі ігрові механіки Habitica:",
- "sleepBullet1": "Пропущені щоденники не зашкодять Вам",
- "sleepBullet2": "Завдання не втратять серії",
- "sleepBullet3": "Боси не нанесуть пошкодження за пропущенні Вами щоденки",
+ "sleepBullet1": "Ваші пропущені щоденники не зашкодять Вам (боси все одно завдадуть шкоди, спричиненої пропущеними щоденниками інших учасників команди)",
+ "sleepBullet2": "Лічильники серії у ваших завдань та звичок не будуть скидатись",
+ "sleepBullet3": "Завдана босу квесту шкода або знайдені предмети залишатимуться \"замороженими\", доки ви не вийдете з таверни",
"sleepBullet4": "Пошкодження боса або збір квестових предметів залишаться в очікуванні до виїзду",
"pauseDailies": "Перепочити в таверні",
"unpauseDailies": "Відновити пошкодження",
@@ -81,7 +81,7 @@
"newBaileyUpdate": "Оновлення від Бейлі!",
"tellMeLater": "Нагадати мені пізніше",
"dismissAlert": "Заховати Бейлі",
- "donateText3": "Habitica — це проект з відкритим кодом, який залежить від підтримки наших користувачів. Гроші, які Ви витрачаєте на самоцвіти, допомагають нам підтримувати роботу серверів, підтримувати невеликий штат, розробляти нові функції та надавати стимули для наших програмістів-добровольців. Дякуємо за Вашу щедрість!",
+ "donateText3": "Habitica — це проєкт з відкритим кодом, який залежить від підтримки наших користувачів. Гроші, які Ви витрачаєте на самоцвіти, допомагають нам оплачувати роботу серверів, утримувати невеликий штат, розробляти нові функції та стимулювати наших програмістів-добровольців. Дякуємо за Вашу щедрість!",
"card": "Платіжна карта",
"paymentMethods": "Придбати за допомогою",
"paymentSuccessful": "Ваш платіж пройшов успішно!",
@@ -102,7 +102,7 @@
"tourGuildsPage": "Ґільдії – це чат-групи, створені гравцями для гравців. Перегляньте список і приєднайтеся до ґільдій, які вас цікавлять. Обов’язково відвідайте популярну ґільдію «Habitica Help: Ask a Question», де кожен може задати питання про Habitica!",
"tourChallengesPage": "Випробування – це тематичні списки завдань, створені користувачами! Приєднання до випробування додасть його завдання до вашого облікового запису. Змагайтеся з іншими користувачами, щоб виграти самоцвіти!",
"tourMarketPage": "Кожен раз, коли Ви виконуєте завдання, Ви матимете шанс отримати яйце, інкубаційне зілля або корм для тварин. Ви також можете придбати ці товари тут.",
- "tourHallPage": "Ласкаво просимо до Залу Героїв, де вшановують контриб'ютори до відкритого проєкту Habitica. Чи то за допомогою коду, мистецтва, музики, письма чи навіть просто корисністю, вони здобули дорогоцінні камені, ексклюзивне обладнання та престижні звання. Ви також можете зробити свій внесок у Habitica!",
+ "tourHallPage": "Ласкаво просимо до Залу Героїв, де прославляються контриб'ютори до відкритого проєкту Habitica. Чи то за допомогою коду, мистецтва, музики, письма чи навіть просто корисністю, вони здобули дорогоцінні камені, ексклюзивне обладнання та престижні звання. Ви також можете зробити свій внесок у Habitica!",
"tourPetsPage": "Ласкаво просимо до хліва! Кожного разу, коли Ви виконуєте завдання, Ви матимете шанс отримати яйце або інкубаційне зілля, щоб вилупити тваринку. Коли Ви вилупите вихованця, він з’явиться тут! Натисніть зображення домашнього улюбленця, щоб додати його до свого аватара. Годуйте їх знайденим кормом, і вони виростуть у верхових тварин.",
"tourMountsPage": "Після того, як Ви нагодуєте вихованця достатньою кількістю їжі, щоб перетворити його на скакуна, він з’явиться тут. Натисніть на сідло, щоб осідлати його!",
"tourEquipmentPage": "Тут зберігається ваше обладнання! Ваше бойове спорядження впливає на Вашу статистику. Якщо Ви хочете показати відмінне спорядження на своєму аватарі, не змінюючи статистику, натисніть «Одягти костюм».",
diff --git a/website/common/locales/uk/pets.json b/website/common/locales/uk/pets.json
index a00b281daf..5603f2beaf 100644
--- a/website/common/locales/uk/pets.json
+++ b/website/common/locales/uk/pets.json
@@ -30,8 +30,8 @@
"hopefulHippogriffMount": "Обнадійливий гіпогриф",
"royalPurpleJackalope": "Королівський фіолетовий Кролень",
"invisibleAether": "Невидимий Ефір",
- "potion": "<%= potionType %> Зілля",
- "egg": "<%= eggType %> Яйце",
+ "potion": "<%= potionType %> еліксир",
+ "egg": "<%= eggType %> в яйці",
"eggs": "Яйця",
"eggSingular": "яйце",
"hatchingPotions": "Зілля дозрівання",
@@ -108,7 +108,7 @@
"notEnoughPets": "Ви не зібрали достатньо домашніх тварин",
"notEnoughMounts": "Ви не зібрали достатньо скакунів",
"notEnoughPetsMounts": "Ви не зібрали достатньо домашніх та верхових тварин",
- "wackyPets": "Незвичайні улюбленці",
+ "wackyPets": "Дивакуваті улюбленці",
"tooMuchFood": "Ви намагаєтеся згодувати своєму улюбленцю занадто багато їжі, дію скасовано",
"invalidAmount": "Недійсна кількість їжі, має бути цілим додатним числом",
"notEnoughFood": "У Вас немає достатньо їжі",
diff --git a/website/common/locales/uk/quests.json b/website/common/locales/uk/quests.json
index c4d6eabbf5..811e22aa49 100644
--- a/website/common/locales/uk/quests.json
+++ b/website/common/locales/uk/quests.json
@@ -3,7 +3,7 @@
"quest": "квест",
"petQuests": "Квести на улюбленців та скакунів",
"unlockableQuests": "Основні квести",
- "goldQuests": "Квести майстра",
+ "goldQuests": "Квести ордену Майстра",
"questDetails": "Подробиці квесту",
"questDetailsTitle": "Подробиці квесту",
"questDescription": "Квести допомагають гравцям фокусуватися на довготривалих внутрішньоігрових цілях разом із членами їх команди.",
@@ -18,9 +18,9 @@
"askLater": "Пізніше",
"buyQuest": "Придбати квест",
"accepted": "Прийнято",
- "declined": "Відмінено",
+ "declined": "Відхилено",
"rejected": "Відхилено",
- "pending": "Не розглянуто",
+ "pending": "На розгляді",
"questCollection": "Знайдено + <%= val %> квестових предметів",
"questDamage": "+ <%= val %> damage to boss",
"begin": "Почати",
@@ -94,7 +94,7 @@
"questAlreadyStartedFriendly": "Квест уже розпочався, але Ви зможете взяти участь у наступному!",
"questAlreadyStarted": "Квест уже розпочався.",
"selectQuest": "Обрати квест",
- "sureLeaveInactive": "Ви впевнені, що хочете покинути квест? Ви не зможете повернутися.",
+ "sureLeaveInactive": "Ви впевнені, що хочете покинути квест? Ви не зможете повернутись.",
"bossDamage": "Ви завдали шкоди босові!",
"questItemsPending": "Речей буде зібрано: <%= amount %>",
"questInvitationNotificationInfo": "Вас запросили до квесту",
diff --git a/website/common/locales/uk/questscontent.json b/website/common/locales/uk/questscontent.json
index 480762c505..a15e9888c7 100644
--- a/website/common/locales/uk/questscontent.json
+++ b/website/common/locales/uk/questscontent.json
@@ -1,7 +1,7 @@
{
- "questEvilSantaText": "Санта-Звіролов",
+ "questEvilSantaText": "Санта-Мисливець",
"questEvilSantaNotes": "Ви чуєте агонізований рев глибоко в крижаних полях. Ви слідуєте за гарчанням, перерваним гудінням, - до галявини в лісі, де ви бачите повністю дорослого білого ведмедя. Він перебуває в клітках і в кайданах, бореться за своє життя. Танцює на верхній частині клітини злісний маленький чорт, одягнений у порваний костюм. Переможіть Санта-звіролова та рятуйте звіра!
Примітка : „Санта-звіролов” нагороджує досягнення, яке можна скласти, але дає рідкісне кріплення, яке можна додати до вашої стайні лише один раз.",
- "questEvilSantaCompletion": "Trapper Santa squeals in anger, and bounces off into the night. The grateful she-bear, through roars and growls, tries to tell you something. You take her back to the stables, where Matt Boch the Beast Master listens to her tale with a gasp of horror. She has a cub! He ran off into the icefields when mama bear was captured.",
+ "questEvilSantaCompletion": "Санта-звіролов сердито кричить і тікає в ніч. Вдячна ведмедиця крізь рев і гарчання намагається вам щось сказати. Ви повертаєте її до стайні, де Матвей, доглядач тварин, слухає її розповідь, зітхнувши від жаху. У неї є дитинча! Воно втекло на крижані поля, коли маму-ведмедицю схопили.",
"questEvilSantaBoss": "Санта Звіролов",
"questEvilSantaDropBearCubPolarMount": "Білий ведмідь (скакун)",
"questEvilSanta2Text": "Знайти дитинча",
@@ -14,53 +14,53 @@
"questGryphonNotes": "Великий звіролов, baconsaur, прийшов до Вашої групи, шукаючи допомоги. \"Прошу вас, шукачі пригод, Ви повинні мені допомогти! Мій найцінніший ґрифон вирвався на волю й тероризує Звичанію. Якщо зможеш зупинити його, я міг би винагородити тебе кількома її яйцями!\"",
"questGryphonCompletion": "Переможене могутнє чудовисько присоромлено плентається назад до свого господаря.\"А бодай мені! Добра робота, шукачі пригод!\" — вигукує baconsaur, \"Прошу, візьміть кілька грифонових яєць. Я впевнений, що вам вдасться як слід виростити цю малечу!\"",
"questGryphonBoss": "Полум’яний ґрифон",
- "questGryphonDropGryphonEgg": "Ґрифон (яйце)",
+ "questGryphonDropGryphonEgg": "Яйце ґрифона",
"questGryphonUnlockText": "Відкриває покупні яйця грифона на ринку",
"questHedgehogText": "Тинозвір",
- "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 InspectorCaracal did just that. Oops.",
+ "questHedgehogNotes": "Їжаки - веселі тваринки. Вони є одними з найбільш ласкавих домашніх улюбленців, які можуть бути у габітиканців. Але подейкують, якщо погодувати їх молоком після опівночі, вони стають досить дратівливими. І в п’ятдесят разів більшими. На жаль, InspectorCaracal зробив саме це. Ой-йой.",
"questHedgehogCompletion": "Ваш гурт успішно заспокоїв Їжачиху! Вона зменшилася до нормального розміру та пошкутильгала до своїх яєць. Вона щось пищить та викочує деякі свої яйця до Вашого гурту. Будемо сподіватися, що ці їжачки полюблять молочко!",
"questHedgehogBoss": "Тинозвір",
- "questHedgehogDropHedgehogEgg": "Їжак (яйце)",
+ "questHedgehogDropHedgehogEgg": "Яйце їжака",
"questHedgehogUnlockText": "Розблоковує яйця їжака для придбання на ринку",
"questGhostStagText": "Дух весни",
- "questGhostStagNotes": "(глибокий вдих) Ах, весна. Пора року, коли колір знову починає наповнювати ландшафт. Зникли холодні засніжені горби зими. Там, де колись стояв мороз, місце займає яскраве життя рослин. Соковито зелене листя заливає дерева, трава повертається до колишнього яскравого відтінку, веселка квітів здіймається вздовж рівнини, а білий містичний туман вкриває землю! ... Зачекайте. Містичний туман? «Ні, — з побоюванням каже InspectorCaracal, — здається, що причиною цього туману є якийсь дух. О, ні. Він мчить прямо на Вас».",
+ "questGhostStagNotes": "(глибокий вдих) Ах, весна. Пора року, коли колір знову починає наповнювати ландшафт. Зникли холодні засніжені горби зими. Там, де колись стояв мороз, місце займає яскраве життя рослин. Соковито зелене листя заливає дерева, трава повертається до колишнього яскравого відтінку, веселка квітів здіймається вздовж рівнини, а білий містичний туман вкриває землю! ... Зачекайте. Містичний туман? «Ні, — з побоюванням каже @InspectorCaracal, — здається, що причиною цього туману є якийсь дух. О, ні. Він мчить прямо на вас».",
"questGhostStagCompletion": "Дух, здається, був здоровий, потім він почав принюхуватися до землі. Спокійний голос огортає Ваш гурт. „Даруйте за мою неґречність. Я тільки-но прокинувся від свого сну, і ще не всі клепки повернулись на свої місця. Будь ласка, візьміть це на знак мого вибачення.“ Купка яєць з'являється на траві перед духом. Без жодного слова дух утікає далі до лісу, а у місцях, де він пробігає, оживають квіти.",
"questGhostStagBoss": "Олень-Привид",
- "questGhostStagDropDeerEgg": "Олень (яйце)",
+ "questGhostStagDropDeerEgg": "Яйце оленя",
"questGhostStagUnlockText": "Розблоковує оленячі яйця для придбання на ринку",
"questRatText": "Щурячий король",
- "questRatNotes": "Garbage! Massive piles of unchecked Dailies are lying all across Habitica. The problem has become so serious that hordes of rats are now seen everywhere. You notice @Pandah petting one of the beasts lovingly. She explains that rats are gentle creatures that feed on unchecked Dailies. The real problem is that the Dailies have fallen into the sewer, creating a dangerous pit that must be cleared. As you descend into the sewers, a massive rat, with blood red eyes and mangled yellow teeth, attacks you, defending its horde. Will you cower in fear or face the fabled Rat King?",
- "questRatCompletion": "Your final strike saps the gargantuan rat's strength, his eyes fading to a dull grey. The beast splits into many tiny rats, which scurry off in fright. You notice @Pandah standing behind you, looking at the once mighty creature. She explains that the citizens of Habitica have been inspired by your courage and are quickly completing all their unchecked Dailies. She warns you that we must be vigilant, for should we let down our guard, the Rat King will return. As payment, @Pandah offers you several rat eggs. Noticing your uneasy expression, she smiles, \"They make wonderful pets.\"",
+ "questRatNotes": "Сміття! Величезні купи невиконаних щоденок лежать по всій Габітиці. Проблема стала настільки серйозною, що натовпи пацюків тепер можна побачити повсюди. Ви помітили, як @Pandah ніжно гладить одного з них. Вона пояснює, що щури — це ніжні істоти, які харчуються невиконаними щоденками. Справжня проблема полягає в тому, що щоденки впали в каналізацію, утворивши небезпечний затор, який потрібно розчистити. Коли ви спускаєтесь у каналізацію, величезний щур із криваво-червоними очима та кривими жовтими зубами нападає на вас, захищаючи свою гору сміття. Чи вистачить вам сміливості, щоб зіткнутись з легендарним Щурячим королем?",
+ "questRatCompletion": "Ваш останній удар позбавив гігантського щура сили, його очі стали тьмяно-сірими. Звір розпадається на безліч крихітних мишенят, які злякано тікають геть. Ви помічаєте @Pandah, яка стоїть позаду вас і дивиться на колись могутню істоту. Вона пояснює, що жителі Habitica надихнулися вашою мужністю і швидко виконують усі свої щоденки. Вона попереджає вас, що ми повинні бути пильними, бо якщо ми ослабимо пильність, Щурячий король повернеться. В якості оплати @Pandah пропонує вам кілька щурячих яєць. Помітивши ваш неспокійний вираз обличчя, вона посміхається: «З них вилупляться чудові домашні тварини».",
"questRatBoss": "Щурячий король",
- "questRatDropRatEgg": "Щур (яйце)",
+ "questRatDropRatEgg": "Яйце щура",
"questRatUnlockText": "Розблоковує щурячі яйця для придбання на ринку",
"questOctopusText": "Поклик Октотулу",
"questOctopusNotes": "@Urse, банькатий молодий писар, попрохав вас допомогти з оглядом таємничої печери на морському узбережжі. Серед напівтемних припливних озерцят стоїть величезна брама зі сталактитів та сталагмітів. Коли ви підходите ближче, унизу воріт починає кружляти темний вир. Ви з подивом дивитесь, як звідти вилазить спрутоподібний дракон. „Липке чадо зірок прокинулося“, — несамовито реве @Urse. „Через вігинтильйони років великий Октотулу знову вільний і спраглий до насолод!“",
- "questOctopusCompletion": "With a final blow, the creature slips away into the whirlpool from which it came. You cannot tell if @Urse is happy with your victory or saddened to see the beast go. Wordlessly, your companion points to three slimy, gargantuan eggs in a nearby tidepool, set in a nest of gold coins. \"Probably just octopus eggs,\" you say nervously. As you return home, @Urse frantically scribbles in a journal and you suspect this is not the last time you will hear of the great Octothulu.",
+ "questOctopusCompletion": "З останнім ударом істота вислизає у вир, з якого вона прийшла. Ви не можете сказати, чи @Urse радий вашій перемозі чи засмучений тим, що звір йде. Ваш напарник без слів показує на три слизькі гігантські яйця в сусідній ямі, покладені в гніздо із золотими монетами. «Мабуть, це яйця восьминога», — нервово кажете ви. Коли ви повертаєтеся додому, @Urse несамовито строчить у щоденнику, і ви підозрюєте, що це не востаннє, коли ви чуєте про великого Октотулу.",
"questOctopusBoss": "Октотулу",
- "questOctopusDropOctopusEgg": "Спрут (яйце)",
+ "questOctopusDropOctopusEgg": "Яйце спрута",
"questOctopusUnlockText": "Відкриває покупні яйця восьминогів на ринку",
"questHarpyText": "Рятуйте! Гарпія!",
"questHarpyNotes": "У лісі зник відважний шукач пригод @UncommonCriminal, який вистежував крилате чудовисько, бачене кілька днів тому. Ви вже налаштувалися на пошуки, аж на вашу руку присів зранений папуга, красиве пір'я якого зіпсував незугарний шрам. До його лапки була прикріплена поспіхом нашкрябана записка, у якій повідомлялося, що, захищаючи папуг, @UncommonCriminal був схоплений злою гарпією і дуже потребує вашої допомоги. Ви підете за птахом і здолаєте гарпію, щоб визволити @UncommonCriminal?",
"questHarpyCompletion": "Останній удар добив гарпію, що аж пір'я на всі боки полетіло. Швидко видряпавшись до її гнізда, ви знайшли там @UncommonCriminal в оточенні яєць папуг. Згуртувавшись, ви швидко порозкладали їх у гнізда неподалік. Наляканий папуга, який вас знайшов, голосно скрикнув і скинув вам у руки кілька яєць. „Після атаки гарпії кілька яєць залишилися беззахисними“, — пояснює @UncommonCriminal. „Схоже, ви тепер заслужений папуга.“",
"questHarpyBoss": "Гарпія",
- "questHarpyDropParrotEgg": "Папуга (яйце)",
+ "questHarpyDropParrotEgg": "Яйце папуги",
"questHarpyUnlockText": "Розблоковує яйця папуг для придбання на ринку",
"questRoosterText": "Півняче шаленство",
- "questRoosterNotes": "For years the farmer @extrajordanary has used Roosters as an alarm clock. But now a giant Rooster has appeared, crowing louder than any before – and waking up everyone in Habitica! The sleep-deprived Habiticans struggle through their daily tasks. @Pandoro decides the time has come to put a stop to this. \"Please, is there anyone who can teach that Rooster to crow quietly?\" You volunteer, approaching the Rooster early one morning – but it turns, flapping its giant wings and showing its sharp claws, and crows a battle cry.",
+ "questRoosterNotes": "Протягом багатьох років фермер @extrajordanary використовував півнів як будильник. Але тепер з’явився гігантський когут, який кукурікає голосніше, ніж будь-хто раніше – і будить усіх в Габітиці! Позбавлені сну габітиканці важко справляються зі своїми повсякденними завданнями. @Pandoro вирішує, що настав час покласти цьому край. — Будь ласка, чи є хтось, хто навчить того Півника тихо кукурікати? Одного ранку ви вирушаєте добровольцем, щоб вгомонити півня, але він обертається, змахуючи гігантськими крилами й показуючи гострі пазурі, і кричить бойовий клич.",
"questRoosterCompletion": "Силою та вправністю вам вдалося приборкати цю знавіснілу тварину. Вуха півня були забиті пір'ям та напівзабутими завданнями, але тепер вони чисті, як віночок. Він тихенько до вас сокоче, притулившись дзьобом до вашого плеча. Наступного дня ви якраз були зібралися в дорогу, аж підбігає до вас @EmeraldOx з укритим кошичком. „Стривайте! Сьогодні вранці півень припхав оце до дверей, де ви спали. Гадаю, він хоче, аби ви їх узяли.“ Ви розкриваєте кошик і бачите три охайні яєчка.",
"questRoosterBoss": "Півень",
- "questRoosterDropRoosterEgg": "Півень (яйце)",
- "questRoosterUnlockText": "Відкриває Північі яйця для придбання на ринку",
+ "questRoosterDropRoosterEgg": "Яйце півня",
+ "questRoosterUnlockText": "Розблоковує купівлю півнячих яєць на ринку",
"questSpiderText": "Льодяний Арахнід",
"questSpiderNotes": "Як тільки наступили холода, легенький іній почав з'являтись у хабітчанських вікнах у вигляді кружева павутинь... окрім Аркосінових, чиї вікна є повністю заморожені Морозяним Павуком, який зараз вирішує поселитись в його домі.",
- "questSpiderCompletion": "The Frost Spider collapses, leaving behind a small pile of frost and a few of her enchanted egg sacs. @Arcosine rather hurriedly offers them to you as a reward--perhaps you could raise some non-threatening spiders as pets of your own?",
+ "questSpiderCompletion": "Морозний павук падає, залишаючи за собою невелику купу інею та кілька зачарованих яєць. @Arcosine пропонує їх вам як нагороду — можливо, ви можете виростити небезпечних павуків як домашніх тварин?",
"questSpiderBoss": "Павук",
- "questSpiderDropSpiderEgg": "Павук (Яйце)",
+ "questSpiderDropSpiderEgg": "Яйце павука",
"questSpiderUnlockText": "Розблоковує купівлю павука в яйці на ринку",
"questGroupVice": "Вайс - Звір із тіней",
"questVice1Text": "Вайс (частина 1): Звільніться від впливу дракона",
- "questVice1Notes": "Кажуть, що в печерах гори Габітика сховане жахливе зло. Чудовисько, присутність якого ламає волю сильних героїв цієї землі, навертаючи їх у бік шкідливих звичок та лінощів! Звір — це великий дракон неймовірної сили, що складається з самих тіней: Вайс, підступний звір тіней. Відважні мешканці, встаньте і переможете цього мерзенного звіра раз і назавжди, але тільки якщо ви вірите, що зможете протистояти його величезній силі.
Вайс (частина 1)
Як Ви можете розраховувати на боротьбу зі звіром, якщо він уже контролює Вас? Не ставайте жертвою ліні та пороку! Працюйте наполегливо, щоб боротися з темним впливом дракона і розвіяти його владу над вами!
",
+ "questVice1Notes": "Кажуть, що в печерах гори Габітика сховане жахливе зло. Чудовисько, присутність якого ламає волю сильних героїв цієї землі, навертаючи їх у бік шкідливих звичок та лінощів! Звір — це великий дракон неймовірної сили, що складається з самих тіней: Вайс, підступний звір тіней. Відважні мешканці, встаньте і переможете цього мерзенного звіра раз і назавжди, але тільки якщо ви вірите, що зможете протистояти його величезній силі.
Як Ви можете розраховувати на боротьбу зі звіром, якщо він уже контролює Вас? Не ставайте жертвою ліні та пороку! Працюйте наполегливо, щоб боротися з темним впливом дракона і розвіяти його владу над вами!",
"questVice1Boss": "Тінь Вайса",
"questVice1Completion": "Коли вплив Вайс на Вас розвіявся, Ви відчуваєте прилив сил, про які Ви і не знали. Вітаю! Але на Вас чекає більш страшний ворог...",
"questVice1DropVice2Quest": "Вайс (частина 2 )(сувій)",
@@ -74,7 +74,7 @@
"questVice3Completion": "Тіні розвіюються з печери, і настає мертва тиша. Так, Ви це зробили! Ви перемогли Вайса! Ви і вся ваша команда можете нарешті зітхнути з полегшенням. Насолоджуйтесь своєю перемогою, відважні мешканці, але не забувайте уроки, які Ви винесли з боротьби з Вайсом, і рухайтеся вперед. Є ще звички, які потрібно зробити, і потенційно гірше зло, яке потрібно подолати!",
"questVice3Boss": "Вайс - Звір із тіней",
"questVice3DropWeaponSpecial2": "Драконяча патериця Стівена Вебера",
- "questVice3DropDragonEgg": "Дракон (яйце)",
+ "questVice3DropDragonEgg": "Яйце дракона",
"questVice3DropShadeHatchingPotion": "Тіньовий інкубаційний еліксир",
"questGroupMoonstone": "Вороття назад",
"questMoonstone1Text": "Рецидивіна (частина 1): Місячне намисто",
@@ -89,7 +89,7 @@
"questMoonstone2DropMoonstone3Quest": "Рецидивіна (частина 3): Перетворення Рецидивіни (сувій)",
"questMoonstone3Text": "Рецидивіна (частина 3): Перетворення Рецидивіни",
"questMoonstone3Notes": "Зловісно сміючись, Рецидивіна звалюється на землю, і Ви пробуєте нанести удар по ній ланцюгом з місячного каменю. Однак, Рецидивіна захоплює дорогоцінні камені, її очі палають тріумфом.
\"Дурне створіння з плоті!\" — кричить вона. \"Ці місячні камені повернуть мені фізичну форму, але не таку, як ти собі уявляв. Як повний місяць з'являється з темряви, так само процвітає моя сила, а з тіней я викликаю привид твого найстрашнішого ворога!\"
З болота здіймається хворобливий зелений туман, а тіло Рецидивіни звивається й викривляється у форму, яка наповнює вас страхом – звіра Вайса, повсталого з мертвих.",
- "questMoonstone3Completion": "Ви важко дихаєте, а піт ріже очі, коли Вайс, що повстав з мертвих, падає знову. Залишки Рецидивіни розвіюються в тонку сіру імлу, яка швидко розносяться під натиском освіжаючого вітерця, і Ви чуєте далекі згуртовані крики габітиканців, які назавжди долають свої шкідливі звички.
@Baconsaur, господар звірів, підлітає верхом на ґрифоні. «Я бачив фінал Вашої битви з неба, і я був дуже зворушений. Будь ласка, візьміть цю чарівну туніку – ваша хоробрість говорить про благородне серце, і я вірю, що Вам судилося її мати».",
+ "questMoonstone3Completion": "Ви важко дихаєте, а піт ріже очі, коли Вайс, що повстав з мертвих, падає знову. Залишки Рецидивіни розвіюються в тонку сіру імлу, яка швидко розносяться під натиском освіжаючого вітерця, і Ви чуєте далекі згуртовані крики габітиканців, які назавжди долають свої шкідливі звички.
@Baconsaur, господар звірів, підлітає верхом на ґрифоні. «Я бачив фінал Вашої битви з неба, і я був дуже зворушений. Будь ласка, візьміть цю чарівну туніку – ваша хоробрість говорить про благородне серце, і я вірю, що Вам судилося її мати.»",
"questMoonstone3Boss": "Некро-Вайс",
"questMoonstone3DropRottenMeat": "Гниле м'ясо (Їжа)",
"questMoonstone3DropZombiePotion": "Зомбі інкубаціонне зілля",
@@ -97,7 +97,7 @@
"questGoldenknight1Text": "Золотий лицар (частина 1): Сувора догана",
"questGoldenknight1Notes": "Золотий Лицар завжди незадоволена бідними жителями Габітики. Не впоралися з усіма щоденними завданнями? Піддалися негативній звичці? Для неї це привід нагадати Вам, що Ви повинні наслідувати її. Вона – яскравий приклад ідеального габітиканця, а Ви - невдаха. Що ж, це зовсім не чемно! Усі роблять помилки, тому ви не повинні терпіти подібних обвинувачень. Напевно, настав час Вам зібрати скарги скривджених жителів країни Габітика і винести Золотому Лицареві сувору догану!",
"questGoldenknight1CollectTestimony": "Скарги",
- "questGoldenknight1Completion": "Look at all these testimonies! Surely this will be enough to convince the Golden Knight. Now all you need to do is find her.",
+ "questGoldenknight1Completion": "Подивіться на всі ці догани! Напевно, цього буде достатньо, щоб переконати Золотого Лицаря. Тепер все, що вам потрібно зробити, це знайти її.",
"questGoldenknight1DropGoldenknight2Quest": "Золотий лицар (частина 2): Золотий лицар (сувій)",
"questGoldenknight2Text": "Золотий лицар (частина 2): Золотий лицар",
"questGoldenknight2Notes": "Озброївшись десятками скарг від габітиканців, Ви нарешті стоїте навпроти Золотого лицаря. Ви починаєте декламувати їй скарги жителів Габітики, одну за одною. «І @Pfeffernusse каже про твої постійні хвастощі…» Лицар піднімає руку, щоб змусити Вас замовкнути, і насміхається: «Будь ласка, ці люди просто заздрять моїм успіхам. Замість того, щоб скаржитися, вони повинні просто працювати так само наполегливо, як я! Можливо, мені варто показати вам силу, яку ви можете отримати завдяки працьовитості, як у мене!» Вона піднімає свій моргенштерн і готується напасти на Вас!",
@@ -106,7 +106,7 @@
"questGoldenknight2DropGoldenknight3Quest": "Золотий лицар (частина 3): Залізний лицар (сувій)",
"questGoldenknight3Text": "Золотий лицар (частина 3): Залізний лицар",
"questGoldenknight3Notes": "@Jon Arinbjorn кричить щодуху, щоб привернути Вашу увагу. На полі битви з’явилася нова фігура. Лицар, закований в обладунки з темного сплаву заліза, повільно наближається до Вас із мечем у руці. Золотий Лицар кричить фігурі: «Батьку, ні!», однак той і не думає зупинятись. Вона повертається до вас і каже: «Вибачте. Я була сліпою, і не помітила якою жорстокою я стала. Але мій батько жорстокіший в стократ, ніж я коли-небудь могла бути. Якщо його не зупинити, то він знищить всіх нас. Ось, використайте мій моргенштерн і зупиніть Залізного Лицаря!\"",
- "questGoldenknight3Completion": "З гучним дзвоном Залізний Лицар опускається на коліна й падає. «Ти доволі сильний», — задихається він. «Сьогодні мені завдали поразки». Золотий Лицар підходить до вас і каже: «Спасибі. Я вважаю, що ми отримали трохи смирення від нашої з Вами зустрічі. Я поговорю зі своїм батьком і поясню чому габітиканці скаржаться на нас. Гадаю, нам варто вибачатись перед багатьма з них». Вона замислюється, перш ніж повернутися до Вас. «Ось: як наш подарунок Вам, я хочу, щоб Ви зберегли мій моргенштерн. Тепер він Ваш».",
+ "questGoldenknight3Completion": "З гучним дзвоном Залізний Лицар опускається на коліна й падає. «Ти доволі сильний», — задихається він. «Сьогодні мені завдали поразки». Золотий Лицар підходить до вас і каже: «Спасибі. Я вважаю, що ми отримали трохи смирення від нашої з вами зустрічі. Я поговорю зі своїм батьком і поясню чому габітиканці скаржаться на нас. Гадаю, нам варто вибачатись перед багатьма з них». Вона замислюється, перш ніж повернутися до вас. «Ось: як наш подарунок вам, я хочу, щоб ви зберегли мій моргенштерн. Тепер він належить вам».",
"questGoldenknight3Boss": "Залізний Лицар",
"questGoldenknight3DropHoney": "Мед (Їжа)",
"questGoldenknight3DropGoldenPotion": "Золоте інкубаціонне зілля",
@@ -114,15 +114,15 @@
"questGroupEarnable": "Зароблені квести",
"questBasilistText": "Спискозмій",
"questBasilistNotes": "На ринку панує переполох — такий, що мав би змусити Вас тікати. Однак будучи сміливим шукачем пригод, Ви замість цього біжите назустріч і зустрічаєте Спискозмія, що утворений зі списків невиконаних справ! Габітиканці, що знаходяться поруч, паралізовані від страху довжиною Спискозмія. Вони не можуть почати працювати. Звідкись неподалік ви чуєте, як @Arcosine кричить: \"Швидко! Виконуйте свої завдання та щоденки, щоб знешкодити монстра, перш ніж він встигне порізати когось папером!\". Бийте швидко, шукачу пригод, і викреслюйте завдання, але будьте обережні - якщо Ви не виконаєте які-небудь щоденки, Спискозмій атакуватиме Вас і Вашу групу!",
- "questBasilistCompletion": "The Basi-list has scattered into paper scraps, which shimmer gently in rainbow colors. \"Whew!\" says @Arcosine. \"Good thing you guys were here!\" Feeling more experienced than before, you gather up some fallen gold from among the papers.",
+ "questBasilistCompletion": "Спискозмій розсипався на папірці всіх кольорів веселки. \"Вау!\" каже @Arcosine. — Добре, що ви були тут!\" Відчуваючи себе більш досвідченим, ніж раніше, ви знаходите трохи золота серед паперів.",
"questBasilistBoss": "Спискозмій",
"questEggHuntText": "Яйцелови",
"questEggHuntNotes": "За ніч дивні яйця з’явилися скрізь: у стайні у Матвея, за прилавком у таверні і навіть серед яєць домашніх тварин на Ринку! Яка неприємність! \"Ніхто не знає, звідки вони з'явилися і що з них може вилупитися, - каже Меган, - але ми не можемо просто залишити їх валятися ось так! Наполегливо працюйте і шукайте, щоб допомогти мені зібрати ці таємничі яйця. Можливо, якщо Ви зберете достатньо, то щось знайдеться і для Вас...\"",
- "questEggHuntCompletion": "You did it! In gratitude, Megan gives you ten of the eggs. \"I bet the hatching potions will dye them beautiful colors! And I wonder what will happen when they turn into mounts....\"",
+ "questEggHuntCompletion": "Ви зробили це! На знак подяки Меган дарує вам десять яєць. «Б’юся об заклад, що зілля вилуплення пофарбує їх у прекрасні кольори! І мені цікаво, що станеться, коли вони перетворяться на верхових тварин…»",
"questEggHuntCollectPlainEgg": "Прості яйця",
"questEggHuntDropPlainEgg": "Просте яйце",
"questDilatoryText": "Жахливий Драк'он Неквапливості",
- "questDilatoryNotes": "We should have heeded the warnings.
Dark shining eyes. Ancient scales. Massive jaws, and flashing teeth. We've awoken something horrifying from the crevasse: the Dread Drag'on of Dilatory! Screaming Habiticans fled in all directions when it reared out of the sea, its terrifyingly long neck extending hundreds of feet out of the water as it shattered windows with its searing roar.
\"This must be what dragged Dilatory down!\" yells Lemoness. \"It wasn't the weight of the neglected tasks - the Dark Red Dailies just attracted its attention!\"
\"It's surging with magical energy!\" @Baconsaur cries. \"To have lived this long, it must be able to heal itself! How can we defeat it?\"
Why, the same way we defeat all beasts - with productivity! Quickly, Habitica, band together and strike through your tasks, and all of us will battle this monster together. (There's no need to abandon previous quests - we believe in your ability to double-strike!) It won't attack us individually, but the more Dailies we skip, the closer we get to triggering its Neglect Strike - and I don't like the way it's eyeing the Tavern....",
+ "questDilatoryNotes": "",
"questDilatoryBoss": "Жахливий Драк'он Неквапливості",
"questDilatoryBossRageTitle": "Удар Занехаяння",
"questDilatoryBossRageDescription": "Коли ця смужка заповниться, Жахливий Драк'он Неквапливості розпочне на Звичанії великі руйнування",
@@ -136,14 +136,14 @@
"questSeahorseNotes": "Нині День Перегонів. До Неквапливості прибули габітиканці з усього континенту, щоб влаштувати перегони на своїх морських кониках! Зненацька на біговій доріжці зчиняється шум та гамір і Ви чуєте, як власниця морських коників @Kiwibot перекрикує рев хвиль. \"Зібрання морських коників привернуло увагу шаленого Морського Жеребця!\" — гукає вона. \"Він поривається через стайні і нищить старовинну дорогу для бігу! Чи може хтось його вгамувати?\"",
"questSeahorseCompletion": "Приборканий морський жеребець покірно до вас підпливає. \"Поглянь!\" — каже Ківібот. \"Він хоче, щоб ми подбали про його діток.\" Вона дає вам три яйця. \"Виростіть їх як слід,\" — каже Ківібот. \"Приходьте на перегони коли забажаєте!\"",
"questSeahorseBoss": "Морський жеребець",
- "questSeahorseDropSeahorseEgg": "Морський коник (яйце)",
+ "questSeahorseDropSeahorseEgg": "Яйце морського коника",
"questSeahorseUnlockText": "Розблоковує купівлю морського коника в яйці на ринку",
"questGroupAtom": "Битва з Буденністю",
"questAtom1Text": "Битва з Буденністю (частина 1): Океан брудного посуду",
"questAtom1Notes": "Ви добралися до берегів Чистого озера, щоб заслужено відпочити... Але озеро забруднене немитим посудом! Як таке могло трапитись? Що ж, Ви просто не дозволите, щоб озеро було у такому стані. Існує лише один вихід: помити посуд і врятувати це місце відпочинку! Варто пошукати якогось мила, щоб усе це перемити. Багато мила...",
"questAtom1CollectSoapBars": "Брусочки мила",
"questAtom1Drop": "Чудовисько озера Недої-Десс (сувій)",
- "questAtom1Completion": "After some thorough scrubbing, all the dishes are stacked safely on the shore! You stand back and proudly survey your hard work.",
+ "questAtom1Completion": "Після ретельного миття весь посуд безпечно складений на березі! Ви стоїте осторонь і з гордістю оглядаєте свою важку роботу.",
"questAtom2Text": "Битва з Буденністю (частина 2): Чудовисько озера Недої-Десс",
"questAtom2Notes": "Хух, тут значно краще, коли увесь посуд чистий. Може, нарешті Ви можете трохи розважитися. Гей, по озері, здається, плаває коробка від піци. Залишилось прибрати ще її, еге ж? Однак, це не проста коробка від піци! Раптом коробка швидко підіймається і виявляється, що це голова чудовиська. Неймовірно! Легендарне чудовисько Недоїдессі?! Кажуть, начебто воно переховується в озері з прадавніх часів: істота, яка виникла із залишків їжі та сміття давніх габітиканців. Фе!",
"questAtom2Boss": "Чудовисько Недоїдессі",
@@ -155,248 +155,248 @@
"questAtom3Boss": "Білизномант",
"questAtom3DropPotion": "Звичайний інкубаційний еліксир",
"questOwlText": "Нічна Сова",
- "questOwlNotes": "The Tavern light is lit 'til dawn
Until one eve the glow is gone!
How can we see for our all-nighters?
@Twitching cries, \"I need some fighters!
See that Night-Owl, starry foe?
Fight with haste and do not slow!
We'll drive its shadow from our door,
And make the night shine bright once more!\"",
- "questOwlCompletion": "The Night-Owl fades before the dawn,
But even so, you feel a yawn.
Perhaps it's time to get some rest?
Then on your bed, you see a nest!
A Night-Owl knows it can be great
To finish work and stay up late,
But your new pets will softly peep
To tell you when it's time to sleep.",
+ "questOwlNotes": "",
+ "questOwlCompletion": "",
"questOwlBoss": "Нічна Сова",
- "questOwlDropOwlEgg": "Сова (Яйце)",
+ "questOwlDropOwlEgg": "Яйце сови",
"questOwlUnlockText": "Розблоковує купівлю сови в яйці на ринку",
"questPenguinText": "Морозні птахи",
- "questPenguinNotes": "Although it's a hot summer day in the southernmost tip of Habitica, an unnatural chill has fallen upon Lively Lake. Strong, frigid winds rush around as the shore begins to freeze over. Ice spikes jut up from the ground, pushing grass and dirt away. @Melynnrose and @Breadstrings run up to you.
\"Help!\" says @Melynnrose. \"We brought a giant penguin in to freeze the lake so we could all go ice skating, but we ran out of fish to feed him!\"
\"He got angry and is using his freeze breath on everything he sees!\" says @Breadstrings. \"Please, you have to subdue him before all of us are covered in ice!\" Looks like you need this penguin to... cool down.",
- "questPenguinCompletion": "Upon the penguin's defeat, the ice melts away. The giant penguin settles down in the sunshine, slurping up an extra bucket of fish you found. He skates off across the lake, blowing gently downwards to create smooth, sparkling ice. What an odd bird! \"It appears he left behind a few eggs, as well,\" says @Painter de Cluster.
@Rattify laughs. \"Maybe these penguins will be a little more... chill?\"",
+ "questPenguinNotes": "",
+ "questPenguinCompletion": "",
"questPenguinBoss": "Морозяний пінгвін",
- "questPenguinDropPenguinEgg": "Пінгвін (яйце)",
+ "questPenguinDropPenguinEgg": "Яйце пінгвіна",
"questPenguinUnlockText": "Розблоковує купівлю пінгвіна в яйці на ринку",
- "questStressbeastText": "The Abominable Stressbeast of the Stoïkalm Steppes",
- "questStressbeastNotes": "Complete Dailies and To-Dos to damage the World Boss! Incomplete Dailies fill the Stress Strike Bar. When the Stress Strike bar is full, the World Boss will attack an NPC. A World Boss will never damage individual players or accounts in any way. Only active accounts who are not resting in the inn will have their incomplete Dailies tallied.
~*~
The first thing we hear are the footsteps, slower and more thundering than the stampede. One by one, Habiticans look outside their doors, and words fail us.
We've all seen Stressbeasts before, of course - tiny vicious creatures that attack during difficult times. But this? This towers taller than the buildings, with paws that could crush a dragon with ease. Frost swings from its stinking fur, and as it roars, the icy blast rips the roofs off our houses. A monster of this magnitude has never been mentioned outside of distant legend.
\"Beware, Habiticans!\" SabreCat cries. \"Barricade yourselves indoors - this is the Abominable Stressbeast itself!\"
\"That thing must be made of centuries of stress!\" Kiwibot says, locking the Tavern door tightly and shuttering the windows.
\"The Stoïkalm Steppes,\" Lemoness says, face grim. \"All this time, we thought they were placid and untroubled, but they must have been secretly hiding their stress somewhere. Over generations, it grew into this, and now it's broken free and attacked them - and us!\"
There's only one way to drive away a Stressbeast, Abominable or otherwise, and that's to attack it with completed Dailies and To-Dos! Let's all band together and fight off this fearsome foe - but be sure not to slack on your tasks, or our undone Dailies may enrage it so much that it lashes out...",
- "questStressbeastBoss": "The Abominable Stressbeast",
+ "questStressbeastText": "",
+ "questStressbeastNotes": "",
+ "questStressbeastBoss": "",
"questStressbeastBossRageTitle": "Стресова Забастовка",
- "questStressbeastBossRageDescription": "When this gauge fills, the Abominable Stressbeast will unleash its Stress Strike on Habitica!",
+ "questStressbeastBossRageDescription": "",
"questStressbeastDropMammothPet": "Мамонт (улюбленець)",
"questStressbeastDropMammothMount": "Мамонт (скакун)",
- "questStressbeastBossRageStables": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and their dark-red color has infuriated the Abominable Stressbeast and caused it to regain some of its health! The horrible creature lunges for the Stables, but Matt the Beast Master heroically leaps into the fray to protect the pets and mounts. The Stressbeast has seized Matt in its vicious grip, but at least it's distracted for the moment. Hurry! Let's keep our Dailies in check and defeat this monster before it attacks again!",
- "questStressbeastBossRageBailey": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nAhh!!! Our incomplete Dailies caused the Abominable Stressbeast to become madder than ever and regain some of its health! Bailey the Town Crier was shouting for citizens to get to safety, and now it has seized her in its other hand! Look at her, valiantly reporting on the news as the Stressbeast swings her around viciously... Let's be worthy of her bravery by being as productive as we can to save our NPCs!",
- "questStressbeastBossRageGuide": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nLook out! Justin the Guide is trying to distract the Stressbeast by running around its ankles, yelling productivity tips! The Abominable Stressbeast is stomping madly, but it seems like we're really wearing this beast down. I doubt it has enough energy for another strike. Don't give up... we're so close to finishing it off!",
- "questStressbeastDesperation": "`Abominable Stressbeast reaches 500K health! Abominable Stressbeast uses Desperate Defense!`\n\nWe're almost there, Habiticans! With diligence and Dailies, we've whittled the Stressbeast's health down to only 500K! The creature roars and flails in desperation, rage building faster than ever. Bailey and Matt yell in terror as it begins to swing them around at a terrifying pace, raising a blinding snowstorm that makes it harder to hit.\n\nWe'll have to redouble our efforts, but take heart - this is a sign that the Stressbeast knows it is about to be defeated. Don't give up now!",
- "questStressbeastCompletion": "The Abominable Stressbeast is DEFEATED!
We've done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!
Stoïkalm is Saved!
SabreCat speaks gently to a small sabertooth. \"Please find the citizens of the Stoïkalm Steppes and bring them to us,\" he says. Several hours later, the sabertooth returns, with a herd of mammoth riders following slowly behind. You recognize the head rider as Lady Glaciate, the leader of Stoïkalm.
\"Mighty Habiticans,\" she says, \"My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.\" Her sad gaze follows the falling snow. \"We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.\"
She turns to where @Baconsaur is snuggling with some of the baby mammoths. \"We have brought your animals an offering of food to apologize for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.\"",
- "questStressbeastCompletionChat": "`The Abominable Stressbeast is DEFEATED!`\n\nWe've done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!\n\n`Stoïkalm is Saved!`\n\nSabreCat speaks gently to a small sabertooth. \"Please find the citizens of the Stoïkalm Steppes and bring them to us,\" he says. Several hours later, the sabertooth returns, with a herd of mammoth riders following slowly behind. You recognize the head rider as Lady Glaciate, the leader of Stoïkalm.\n\n\"Mighty Habiticans,\" she says, \"My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.\" Her sad gaze follows the falling snow. \"We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.\"\n\nShe turns to where @Baconsaur is snuggling with some of the baby mammoths. \"We have brought your animals an offering of food to apologize for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.\"",
+ "questStressbeastBossRageStables": "",
+ "questStressbeastBossRageBailey": "",
+ "questStressbeastBossRageGuide": "",
+ "questStressbeastDesperation": "",
+ "questStressbeastCompletion": "",
+ "questStressbeastCompletionChat": "",
"questTRexText": "Король динозаврів",
- "questTRexNotes": "Now that ancient creatures from the Stoïkalm Steppes are roaming throughout all of Habitica, @Urse has decided to adopt a full-grown Tyrannosaur. What could go wrong?
Everything.",
- "questTRexCompletion": "The wild dinosaur finally stops its rampage and settles down to make friends with the giant roosters. @Urse beams down at it. \"They're not such terrible pets, after all! They just need a little discipline. Here, take some Tyrannosaur eggs for yourself.\"",
+ "questTRexNotes": "",
+ "questTRexCompletion": "",
"questTRexBoss": "Тіло тиранозавра",
"questTRexUndeadText": "Відкопаний Динозавр",
- "questTRexUndeadNotes": "As the ancient dinosaurs from the Stoïkalm Steppes roam through Habit City, a cry of terror emanates from the Grand Museum. @Baconsaur shouts, \"The Tyrannosaur skeleton in the museum is stirring! It must have sensed its kin!\" The bony beast bares its teeth and clatters towards you. How can you defeat a creature that is already dead? You'll have to strike fast before it heals itself!",
- "questTRexUndeadCompletion": "The Tyrannosaur's glowing eyes grow dark, and it settles back onto its familiar pedestal. Everyone sighs with relief. \"Look!\" @Baconsaur says. \"Some of the fossilized eggs are shiny and new! Maybe they'll hatch for you.\"",
+ "questTRexUndeadNotes": "",
+ "questTRexUndeadCompletion": "",
"questTRexUndeadBoss": "Скелет Тиранозавра",
"questTRexUndeadRageTitle": "Зцілення Скелета",
"questTRexUndeadRageDescription": "Цей бар наповнюється, коли ти не завершуєш свої щоденні справи. Коли він заповниться, Скелет Динозавра зцілить 30% решти свого життя!",
- "questTRexUndeadRageEffect": "`Skeletal Tyrannosaur uses SKELETON HEALING!`\n\nThe monster lets forth an unearthly roar, and some of its damaged bones knit back together!",
- "questTRexDropTRexEgg": "Тиранозавр (яйце)",
+ "questTRexUndeadRageEffect": "",
+ "questTRexDropTRexEgg": "Яйце тиранозавра",
"questTRexUnlockText": "Розблоковує купівлю тиранозавра в яйці на ринку",
"questRockText": "Втеча з печери істоти",
- "questRockNotes": "Crossing Habitica's Meandering Mountains with some friends, you make camp one night in a beautiful cave laced with shining minerals. But when you wake up the next morning, the entrance has disappeared, and the floor of the cave is shifting underneath you.
\"The mountain's alive!\" shouts your companion @pfeffernusse. \"These aren't crystals - these are teeth!\"
@Painter de Cluster grabs your hand. \"We'll have to find another way out - stay with me and don't get distracted, or we could be trapped in here forever!\"",
- "questRockBoss": "Crystal Colossus",
- "questRockCompletion": "Your diligence has allowed you to find a safe path through the living mountain. Standing in the sunshine, your friend @intune notices something glinting on the ground by the cave's exit. You stoop to pick it up, and see that it's a small rock with a vein of gold running through it. Beside it are a number of other rocks with rather peculiar shapes. They almost look like... eggs?",
- "questRockDropRockEgg": "Кам'яне яйце (яйце)",
+ "questRockNotes": "",
+ "questRockBoss": "",
+ "questRockCompletion": "",
+ "questRockDropRockEgg": "Яйце кам'еню",
"questRockUnlockText": "Розблоковує купівлю каменю в яйці на ринку",
"questBunnyText": "Кролик-вбивця",
- "questBunnyNotes": "After many difficult days, you reach the peak of Mount Procrastination and stand before the imposing doors of the Fortress of Neglect. You read the inscription in the stone. \"Inside resides the creature that embodies your greatest fears, the reason for your inaction. Knock and face your demon!\" You tremble, imagining the horror within and feel the urge to flee as you have done so many times before. @Draayder holds you back. \"Steady, my friend! The time has come at last. You must do this!\"
You knock and the doors swing inward. From within the gloom you hear a deafening roar, and you draw your weapon.",
+ "questBunnyNotes": "",
"questBunnyBoss": "Вбивця Кролик",
- "questBunnyCompletion": "With one final blow the killer rabbit sinks to the ground. A sparkly mist rises from her body as she shrinks down into a tiny bunny... nothing like the cruel beast you faced a moment before. Her nose twitches adorably and she hops away, leaving some eggs behind. @Gully laughs. \"Mount Procrastination has a way of making even the smallest challenges seem insurmountable. Let's gather these eggs and head for home.\"",
- "questBunnyDropBunnyEgg": "Кролик (яйце)",
+ "questBunnyCompletion": "",
+ "questBunnyDropBunnyEgg": "Яйце кролика",
"questBunnyUnlockText": "Розблоковує купівлю зайця в яйці на ринку",
- "questSlimeText": "The Jelly Regent",
- "questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!",
- "questSlimeBoss": "Jelly Regent",
- "questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.",
- "questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)",
+ "questSlimeText": "",
+ "questSlimeNotes": "",
+ "questSlimeBoss": "",
+ "questSlimeCompletion": "",
+ "questSlimeDropSlimeEgg": "",
"questSlimeUnlockText": "Розблоковує слизові яйця зефіру для придбання на ринку",
- "questSheepText": "The Thunder Ram",
- "questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a \"quick break\" from your obligations, you find a cozy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. \"I've got a ba-a-a-ad feeling about this weather,\" mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a... \"We don't have time for cloud-gazing!\" @starsystemic shouts. \"It's attacking!\" The Thunder Ram hurtles forward, slinging bolts of lightning right at you!",
- "questSheepBoss": "Thunder Ram",
- "questSheepCompletion": "Impressed by your diligence, the Thunder Ram is drained of its fury. It launches three huge hailstones in your direction, and then fades away with a low rumble. Upon closer inspection, you discover that the hailstones are actually three fluffy eggs. You gather them up, and then stroll home under a blue sky.",
- "questSheepDropSheepEgg": "Вівця (Яйце)",
+ "questSheepText": "Грозовий баран",
+ "questSheepNotes": "",
+ "questSheepBoss": "Грозовий баран",
+ "questSheepCompletion": "",
+ "questSheepDropSheepEgg": "Яйце вівці",
"questSheepUnlockText": "Відкриває яйця вівці для придбання на ринку",
- "questKrakenText": "The Kraken of Inkomplete",
- "questKrakenNotes": "It's a warm, sunny day as you sail across the Inkomplete Bay, but your thoughts are clouded with worries about everything that you still need to do. It seems that as soon as you finish one task, another crops up, and then another...
Suddenly, the boat gives a horrible jolt, and slimy tentacles burst out of the water on all sides! \"We're being attacked by the Kraken of Inkomplete!\" Wolvenhalo cries.
\"Quickly!\" Lemoness calls to you. \"Strike down as many tentacles and tasks as you can, before new ones can rise up to take their place!\"",
- "questKrakenBoss": "The Kraken of Inkomplete",
- "questKrakenCompletion": "As the Kraken flees, several eggs float to the surface of the water. Lemoness examines them, and her suspicion turns to delight. \"Cuttlefish eggs!\" she says. \"Here, take them as a reward for everything you've completed.\"",
- "questKrakenDropCuttlefishEgg": "Каракатиця (Яйце)",
+ "questKrakenText": "Кракен незавершеності",
+ "questKrakenNotes": "",
+ "questKrakenBoss": "Кракен Незавершеності",
+ "questKrakenCompletion": "",
+ "questKrakenDropCuttlefishEgg": "Яйце каракатиці",
"questKrakenUnlockText": "Яйця каракатиць розблоковуються для придбання на ринку",
- "questWhaleText": "Wail of the Whale",
- "questWhaleNotes": "You arrive at the Diligent Docks, hoping to take a submarine to watch the Dilatory Derby. Suddenly, a deafening bellow forces you to stop and cover your ears. \"Thar she blows!\" cries Captain @krazjega, pointing to a huge, wailing whale. \"It's not safe to send out the submarines while she's thrashing around!\"
\"Quick,\" calls @UncommonCriminal. \"Help me calm the poor creature so we can figure out why she's making all this noise!\"",
+ "questWhaleText": "Стогін кита",
+ "questWhaleNotes": "Ви прибуваєте в Diligent Docks, сподіваючись сісти на підводний човен, щоб подивитися «Повільне дербі». Раптом оглушливий стогін змушує вас зупинитися й затулити вуха. \"Так вона голосить!\" — кричить капітан @krazjega, вказуючи на величезного кита, що ридає. «Небезпечно відправляти підводні човни, поки вона там!»
«Швидко», закликає @UncommonCriminal. «Допоможи мені заспокоїти бідолашну істоту, щоб ми могли зрозуміти, чому вона так шумить!»",
"questWhaleBoss": "Плач Кита",
- "questWhaleCompletion": "After much hard work, the whale finally ceases her thunderous cry. \"Looks like she was drowning in waves of negative habits,\" @zoebeagle explains. \"Thanks to your consistent effort, we were able to turn the tides!\" As you step into the submarine, several whale eggs bob towards you, and you scoop them up.",
- "questWhaleDropWhaleEgg": "Кит (Яйце)",
+ "questWhaleCompletion": "Після важкої праці кит нарешті припинила свій громовий рев. «Схоже, вона потонула у хвилях негативних звичок», — пояснює @zoebeagle. «Завдяки вашим послідовним зусиллям ми змогли переламати ситуацію!» Коли ви входите в підводний човен, кілька китових яєць підкочуються до вас, і ви їх підіймаєте.",
+ "questWhaleDropWhaleEgg": "Яйце кита",
"questWhaleUnlockText": "Розблоковує китові яйця для придбання на ринку",
"questGroupDilatoryDistress": "Затяжна біда",
"questDilatoryDistress1Text": "Затяжна Біда (частина 1): Повідомлення у пляшці",
- "questDilatoryDistress1Notes": "A message in a bottle arrived from the newly rebuilt city of Dilatory! It reads: \"Dear Habiticans, we need your help once again. Our princess has disappeared and the city is under siege by some unknown watery demons! The mantis shrimps are holding the attackers at bay. Please aid us!\" To make the long journey to the sunken city, one must be able to breathe water. Fortunately, the alchemists @Benga and @hazel can make it all possible! You only have to find the proper ingredients.",
+ "questDilatoryDistress1Notes": "",
"questDilatoryDistress1Completion": "Ви надягаєте ласту з плавниками і якнайшвидше підпливаєте до Ділатора. Мерфолк та їх союзники з креветками-богомолами на даний момент зуміли утримати монстрів за межами міста, але вони програють. Тільки-но ви опинитесь у стінах замку, як опускається жахлива облога!",
"questDilatoryDistress1CollectFireCoral": "Вогняний Корал",
"questDilatoryDistress1CollectBlueFins": "Голубі плавники",
- "questDilatoryDistress1DropArmor": "Finned Oceanic Armor (Armor)",
- "questDilatoryDistress2Text": "Dilatory Distress, Part 2: Creatures of the Crevasse",
- "questDilatoryDistress2Notes": "The siege can be seen from miles away: thousands of disembodied skulls rushing through a portal in the crevasse walls and making their way towards Dilatory.
When you meet King Manta in his war room, his eyes seem sunken, and his face is worried. \"My daughter Adva disappeared into the Dark Crevasse just before this siege began. Please find her and bring her back home safely! I will lend you my Fire Coral Circlet to aid you. If you succeed, it is yours.\"",
- "questDilatoryDistress2Completion": "You vanquish the nightmarish horde of skulls, but you feel no closer to finding Adva. You speak to @Kiwibot, the royal tracker, to see if she has any ideas. \"The mantis shrimps that defend the city must have seen Adva escape,\" @Kiwibot says. \"Try following them into the Dark Crevasse.\"",
- "questDilatoryDistress2Boss": "Water Skull Swarm",
- "questDilatoryDistress2RageTitle": "Swarm Respawn",
- "questDilatoryDistress2RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Water Skull Swarm will heal 30% of its remaining health!",
- "questDilatoryDistress2RageEffect": "`Water Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls pour forth from the crevasse, bolstering the swarm!",
+ "questDilatoryDistress1DropArmor": "",
+ "questDilatoryDistress2Text": "",
+ "questDilatoryDistress2Notes": "",
+ "questDilatoryDistress2Completion": "",
+ "questDilatoryDistress2Boss": "",
+ "questDilatoryDistress2RageTitle": "",
+ "questDilatoryDistress2RageDescription": "",
+ "questDilatoryDistress2RageEffect": "",
"questDilatoryDistress2DropSkeletonPotion": "Зілля вилуплення Скелет",
"questDilatoryDistress2DropCottonCandyBluePotion": "Зілля вилуплення синьої цукрової вати",
"questDilatoryDistress2DropHeadgear": "Діадема Вогняний Корал (Головний убір)",
"questDilatoryDistress3Text": "Затяжна Біда, Частина 3: Не просто прибиральниця",
- "questDilatoryDistress3Notes": "You follow the mantis shrimps deep into the Crevasse, and discover an underwater fortress. Princess Adva, escorted by more watery skulls, awaits you inside the main hall. \"My father has sent you, has he not? Tell him I refuse to return. I am content to stay here and practice my sorcery. Leave now, or you shall feel the wrath of the ocean's new queen!\" Adva seems very adamant, but as she speaks you notice a strange, ruby pendant on her neck glowing ominously... Perhaps her delusions would cease should you break it?",
- "questDilatoryDistress3Completion": "Finally, you manage to pull the bewitched pendant from Adva's neck and throw it away. Adva clutches her head. \"Where am I? What happened here?\" After hearing your story, she frowns. \"This necklace was given to me by a strange ambassador - a lady called 'Tzina'. I don't remember anything after that!\"
Back at Dilatory, Manta is overjoyed by your success. \"Allow me to reward you with this trident and shield! I ordered them from @aiseant and @starsystemic as a gift for Adva, but... I'd rather not put weapons in her hands any time soon.\"",
- "questDilatoryDistress3Boss": "Adva, the Usurping Mermaid",
+ "questDilatoryDistress3Notes": "",
+ "questDilatoryDistress3Completion": "",
+ "questDilatoryDistress3Boss": "",
"questDilatoryDistress3DropFish": "Риба (Їжа)",
- "questDilatoryDistress3DropWeapon": "Trident of Crashing Tides (Weapon)",
- "questDilatoryDistress3DropShield": "Moonpearl Shield (Off-Hand Item)",
+ "questDilatoryDistress3DropWeapon": "",
+ "questDilatoryDistress3DropShield": "",
"questCheetahText": "Такий як Гепард",
- "questCheetahNotes": "As you hike across the Sloensteadi Savannah with your friends @PainterProphet, @tivaquinn, @Unruly Hyena, and @Crawford, you're startled to see a Cheetah screeching past with a new Habitican clamped in its jaws. Under the Cheetah's scorching paws, tasks burn away as though complete -- before anyone has the chance to actually finish them! The Habitican sees you and yells, \"Please help me! This Cheetah is making me level too quickly, but I'm not getting anything done. I want to slow down and enjoy the game. Make it stop!\" You fondly remember your own fledgling days, and know that you have to help the newbie by stopping the Cheetah!",
- "questCheetahCompletion": "The new Habitican is breathing heavily after the wild ride, but thanks you and your friends for your help. \"I'm glad that Cheetah won't be able to grab anyone else. It did leave some Cheetah eggs for us, so maybe we can raise them into more trustworthy pets!\"",
+ "questCheetahNotes": "",
+ "questCheetahCompletion": "",
"questCheetahBoss": "Гепард",
- "questCheetahDropCheetahEgg": "Гепард (Яйце)",
+ "questCheetahDropCheetahEgg": "Яйце гепарда",
"questCheetahUnlockText": "Відкриває яйця гепардів для придбання на ринку",
- "questHorseText": "Ride the Night-Mare",
- "questHorseNotes": "While relaxing in the Tavern with @beffymaroo and @JessicaChase, the talk turns to good-natured boasting about your adventuring accomplishments. Proud of your deeds, and perhaps getting a bit carried away, you brag that you can tame any task around. A nearby stranger turns toward you and smiles. One eye twinkles as he invites you to prove your claim by riding his horse.\nAs you all head for the stables, @UncommonCriminal whispers, \"You may have bitten off more than you can chew. That's no horse - that's a Night-Mare!\" Looking at its stamping hooves, you begin to regret your words...",
- "questHorseCompletion": "It takes all your skill, but finally the horse stamps a couple of hooves and nuzzles you in the shoulder before allowing you to mount. You ride briefly but proudly around the Tavern grounds while your friends cheer. The stranger breaks into a broad grin.\n\"I can see that was no idle boast! Your determination is truly impressive. Take these eggs to raise horses of your own, and perhaps we'll meet again one day.\" You take the eggs, the stranger tips his hat... and vanishes.",
- "questHorseBoss": "Night-Mare",
- "questHorseDropHorseEgg": "Horse (Egg)",
+ "questHorseText": "КІНецЬ світу",
+ "questHorseNotes": "Під час відпочинку в таверні з @beffymaroo та @JessicaChase розмова перетворюється на добродушне вихваляння вашими пригодницькими досягненнями. Пишаючись своїми вчинками, і, можливо, трохи захопившись, ви хвалитеся тим, що можете приборкати будь-яке завдання. Незнайомець повертається до вас і посміхається. Одне око блищить, коли він запрошує вас довести свої слова, осідлавши його коня.\nКоли ви всі прямуєте до хліву, @UncommonCriminal шепоче: «Можливо, ви відкусили більше, ніж можете проковтнути. Це не кінь, а справжній КІН-ец-Ь!» Чуючи його тупіт копит, ви починаєте шкодувати про свої слова...",
+ "questHorseCompletion": "Від вас потрібні були всі ваші навички, але нарешті кінь тупоче своїми копитами і тикає вас носом у плече, перш ніж дозволити вам сісти верхи. Ви коротко, але гордо катаєтеся по території поблизу таверни, поки ваші друзі споглядають за вами. Незнайомець широко посміхається.\n«Я бачу, що це не було пустим вихвалянням! Ваша рішучість справді вражає. Візьміть ці яйця, щоб мати змогу виростити своїх коней, і, можливо, ми одного разу зустрінемося». Ви берете яйця, незнайомець знімає капелюх в знак пошани... і зникає.",
+ "questHorseBoss": "КІНецЬ",
+ "questHorseDropHorseEgg": "Яйце коня",
"questHorseUnlockText": "Розблоковує коні яйця для придбання на ринку",
- "questBurnoutText": "Burnout and the Exhaust Spirits",
- "questBurnoutNotes": "It is well past midnight, still and stiflingly hot, when Redphoenix and scout captain Kiwibot abruptly burst through the city gates. \"We need to evacuate all the wooden buildings!\" Redphoenix shouts. \"Hurry!\"
Kiwibot grips the wall as she catches her breath. \"It's draining people and turning them into Exhaust Spirits! That's why everything was delayed. That's where the missing people have gone. It's been stealing their energy!\"
\"'It'?'\" asks Lemoness.
And then the heat takes form.
It rises from the earth in a billowing, twisting mass, and the air chokes with the scent of smoke and sulphur. Flames lick across the molten ground and contort into limbs, writhing to horrific heights. Smoldering eyes snap open, and the creature lets out a deep and crackling cackle.
Kiwibot whispers a single word.
\"Burnout.\"",
- "questBurnoutCompletion": "Burnout is DEFEATED!
With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.
Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!
\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!
One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"
Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"
She claps her hands. \"Now - let's celebrate!\"",
- "questBurnoutCompletionChat": "`Burnout is DEFEATED!`\n\nWith a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.\n\nIan, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!\n\n\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!\n\nOne of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"\n\nHer tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"\n\nShe claps her hands. \"Now - let's celebrate!\"\n\nAll Habiticans receive:\n\nPhoenix Pet\nPhoenix Mount\nAchievement: Savior of the Flourishing Fields\nBasic Candy\nVanilla Candy\nSand Candy\nCinnamon Candy\nChocolate Candy\nRotten Candy\nSour Pink Candy\nSour Blue Candy\nHoney Candy",
- "questBurnoutBoss": "Burnout",
- "questBurnoutBossRageTitle": "Exhaust Strike",
- "questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!",
- "questBurnoutDropPhoenixPet": "Phoenix (Pet)",
+ "questBurnoutText": "",
+ "questBurnoutNotes": "",
+ "questBurnoutCompletion": "",
+ "questBurnoutCompletionChat": "",
+ "questBurnoutBoss": "",
+ "questBurnoutBossRageTitle": "",
+ "questBurnoutBossRageDescription": "",
+ "questBurnoutDropPhoenixPet": "",
"questBurnoutDropPhoenixMount": "Phoenix (Mount)",
- "questBurnoutBossRageQuests": "`Burnout uses EXHAUST STRIKE!`\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and now Burnout is inflamed with energy! With a crackling snarl, it engulfs Ian the Quest Master in a surge of spectral fire. As fallen quest scrolls smolder, the smoke clears, and you see that Ian has been drained of energy and turned into a drifting Exhaust Spirit!\n\nOnly defeating Burnout can break the spell and restore our beloved Quest Master. Let's keep our Dailies in check and defeat this monster before it attacks again!",
- "questBurnoutBossRageSeasonalShop": "`Burnout uses EXHAUST STRIKE!`\n\nAhh!!! Our incomplete Dailies have fed the flames of Burnout, and now it has enough energy to strike again! It lets loose a gout of spectral flame that sears the Seasonal Shop. You're horrified to see that the cheery Seasonal Sorceress has been transformed into a drooping Exhaust Spirit.\n\nWe have to rescue our NPCs! Hurry, Habiticans, complete your tasks and defeat Burnout before it strikes for a third time!",
- "questBurnoutBossRageTavern": "`Burnout uses EXHAUST STRIKE!`\n\nMany Habiticans have been hiding from Burnout in the Tavern, but no longer! With a screeching howl, Burnout rakes the Tavern with its white-hot hands. As the Tavern patrons flee, Daniel is caught in Burnout's grip, and transforms into an Exhaust Spirit right in front of you!\n\nThis hot-headed horror has gone on for too long. Don't give up... we're so close to vanquishing Burnout for once and for all!",
- "questFrogText": "Swamp of the Clutter Frog",
- "questFrogNotes": "As you and your friends are slogging through the Swamps of Stagnation, @starsystemic points at a large sign. \"Stay on the path -- if you can.\"
\"Surely that isn't hard!\" @RosemonkeyCT says. \"It's broad and clear.\"
But as you continue, you notice that path is gradually overtaken by the muck of the swamp, laced with bits of strange blue debris and clutter, until it's impossible to proceed.
As you look around, wondering how it got this messy, @Jon Arjinborn shouts, \"Look out!\" An angry frog leaps from the sludge, clad in dirty laundry and lit by blue fire. You will have to overcome this poisonous Clutter Frog to progress!",
- "questFrogCompletion": "The frog cowers back into the muck, defeated. As it slinks away, the blue slime fades, leaving the way ahead clear.
Sitting in the middle of the path are three pristine eggs. \"You can even see the tiny tadpoles through the clear casing!\" @Breadstrings says. \"Here, you should take them.\"",
- "questFrogBoss": "Clutter Frog",
- "questFrogDropFrogEgg": "Frog (Egg)",
+ "questBurnoutBossRageQuests": "",
+ "questBurnoutBossRageSeasonalShop": "",
+ "questBurnoutBossRageTavern": "",
+ "questFrogText": "",
+ "questFrogNotes": "",
+ "questFrogCompletion": "",
+ "questFrogBoss": "",
+ "questFrogDropFrogEgg": "",
"questFrogUnlockText": "Розблоковує жаб’ячі яйця для придбання на ринку",
- "questSnakeText": "The Serpent of Distraction",
- "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?",
- "questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.",
- "questSnakeBoss": "Serpent of Distraction",
- "questSnakeDropSnakeEgg": "Snake (Egg)",
+ "questSnakeText": "",
+ "questSnakeNotes": "",
+ "questSnakeCompletion": "",
+ "questSnakeBoss": "",
+ "questSnakeDropSnakeEgg": "Яйце змії",
"questSnakeUnlockText": "Розблоковує зміїні яйця для придбання на ринку",
"questUnicornText": "Переконати королеву єдинорогів",
- "questUnicornNotes": "Conquest Creek has become muddied, destroying Habit City's fresh water supply! Luckily, @Lukreja knows an old legend that claims that a unicorn's horn can purify the foulest of waters. Together with your intrepid guide @UncommonCriminal, you hike through the frozen peaks of the Meandering Mountains. Finally, at the icy summit of Mount Habitica itself, you find the Unicorn Queen amid the glittering snows. \"Your pleas are compelling,\" she tells you. \"But first you must prove that you are worthy of my aid!\"",
- "questUnicornCompletion": "Impressed by your diligence and strength, the Unicorn Queen at last agrees that your cause is worthy. She allows you to ride on her back as she soars to the source of Conquest Creek. As she lowers her golden horn to the befouled waters, a brilliant blue light rises from the water’s surface. It is so blinding that you are forced to close your eyes. When you open them a moment later, the unicorn is gone. However, @rosiesully lets out a cry of delight: the water is now clear, and three shining eggs rest at the creek’s edge.",
- "questUnicornBoss": "The Unicorn Queen",
- "questUnicornDropUnicornEgg": "Unicorn (Egg)",
+ "questUnicornNotes": "",
+ "questUnicornCompletion": "",
+ "questUnicornBoss": "Королева єдинорогів",
+ "questUnicornDropUnicornEgg": "Яйце єдинорога",
"questUnicornUnlockText": "Розблоковує Яйця єдинорога для придбання на ринку",
- "questSabretoothText": "The Sabre Cat",
- "questSabretoothNotes": "A roaring monster is terrorizing Habitica! The creature stalks through the wilds and woods, then bursts forth to attack before vanishing again. It's been hunting innocent pandas and frightening the flying pigs into fleeing their pens to roost in the trees. @InspectorCaracal and @icefelis explain that the Zombie Sabre Cat was set free while they were excavating in the ancient, untouched ice-fields of the Stoïkalm Steppes. \"It was perfectly friendly at first – I don't know what happened. Please, you have to help us recapture it! Only a champion of Habitica can subdue this prehistoric beast!\"",
- "questSabretoothCompletion": "After a long and tiring battle, you wrestle the Zombie Sabre Cat to the ground. As you are finally able to approach, you notice a nasty cavity in one of its sabre teeth. Realising the true cause of the cat's wrath, you're able to get the cavity filled by @Fandekasp, and advise everyone to avoid feeding their friend sweets in future. The Sabre Cat flourishes, and in gratitude, its tamers send you a generous reward – a clutch of sabretooth eggs!",
- "questSabretoothBoss": "Zombie Sabre Cat",
- "questSabretoothDropSabretoothEgg": "Sabretooth (Egg)",
+ "questSabretoothText": "Саблезубий кіт",
+ "questSabretoothNotes": "",
+ "questSabretoothCompletion": "",
+ "questSabretoothBoss": "Саблезубий кіт-зомбі",
+ "questSabretoothDropSabretoothEgg": "Яйце саблезубого кота",
"questSabretoothUnlockText": "Розблоковує шаблезубі яйця для придбання на ринку",
- "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys",
- "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!
\"It will take a dedicated adventurer to resist them,\" says @yamato.
\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.",
- "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"
@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"",
- "questMonkeyBoss": "Monstrous Mandrill",
- "questMonkeyDropMonkeyEgg": "Monkey (Egg)",
+ "questMonkeyText": "Жахливий мандрил і пустотливі мавпи",
+ "questMonkeyNotes": "",
+ "questMonkeyCompletion": "",
+ "questMonkeyBoss": "Жахливий мандрил",
+ "questMonkeyDropMonkeyEgg": "Яйце мавпи",
"questMonkeyUnlockText": "Розблоковує мавпячі яйця для придбання на ринку",
- "questSnailText": "The Snail of Drudgery Sludge",
- "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"
\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"
Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.",
- "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"",
- "questSnailBoss": "Snail of Drudgery Sludge",
- "questSnailDropSnailEgg": "Snail (Egg)",
+ "questSnailText": "",
+ "questSnailNotes": "",
+ "questSnailCompletion": "",
+ "questSnailBoss": "",
+ "questSnailDropSnailEgg": "",
"questSnailUnlockText": "Відкриває яйця равликів для придбання на ринку",
- "questBewilderText": "The Be-Wilder",
- "questBewilderNotes": "The party begins like any other.
The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.
As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.
“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.
“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”
Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”
But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.
“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”
Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.
“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”
A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.
PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”
Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.",
- "questBewilderCompletion": "The Be-Wilder is DEFEATED!
We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.
Mistiflying is saved!
The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”
The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.
“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”
Redphoenix coughs meaningfully.
“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”
Encouraged, the marching band starts up.
It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.
As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”",
- "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”",
- "questBewilderBossRageTitle": "Beguilement Strike",
- "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!",
- "questBewilderDropBumblebeePet": "Magical Bee (Pet)",
- "questBewilderDropBumblebeeMount": "Magical Bee (Mount)",
- "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.",
- "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!",
- "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!",
- "questFalconText": "The Birds of Preycrastination",
- "questFalconNotes": "Гора Хабітика затьмарюється нависаючою горою справ. Раніше це було місце для пікніка та насолоди почуттям досягнутого, поки занедбані завдання не вийшли з-під контролю. Зараз тут мешкають страшні Птахи Прокрастинації, нечисті істоти, які заважають жителям Габітану виконувати свої завдання!
\"Це занадто важко!\" вони переймаються @JonArinbjorn та @Onheiron. \"Це займе занадто багато часу зараз! Це не зробить ніякої різниці, якщо ви почекаєте до завтра! Чому б вам не зробити щось цікаве замість цього?\"
Більше, обітницю. Ви підніметеся на свою особисту гору завдань і переможете Птахів Прокрастинації!",
- "questFalconCompletion": "Having finally triumphed over the Birds of Preycrastination, you settle down to enjoy the view and your well-earned rest.
\"Wow!\" says @Trogdorina. \"You won!\"
@Squish adds, \"Here, take these eggs I found as a reward.\"",
- "questFalconBoss": "Birds of Preycrastination",
- "questFalconDropFalconEgg": "Falcon (Egg)",
+ "questBewilderText": "",
+ "questBewilderNotes": "",
+ "questBewilderCompletion": "",
+ "questBewilderCompletionChat": "",
+ "questBewilderBossRageTitle": "",
+ "questBewilderBossRageDescription": "",
+ "questBewilderDropBumblebeePet": "Магічна бджола (улюбленець)",
+ "questBewilderDropBumblebeeMount": "Магічна бджола (скакун)",
+ "questBewilderBossRageMarket": "",
+ "questBewilderBossRageStables": "",
+ "questBewilderBossRageBailey": "",
+ "questFalconText": "",
+ "questFalconNotes": "Гора Габітика затьмарюється нависаючою горою справ. Раніше це було місце для пікніка та насолоди почуттям досягнутого, поки занедбані завдання не вийшли з-під контролю. Зараз тут мешкають страшні Птахи Прокрастинації, нечисті істоти, які заважають жителям Габітану виконувати свої завдання!
\"Це занадто важко!\" вони переймаються @JonArinbjorn та @Onheiron. \"Це займе занадто багато часу зараз! Це не зробить ніякої різниці, якщо ви почекаєте до завтра! Чому б вам не зробити щось цікаве замість цього?\"
Більше, обітницю. Ви підніметеся на свою особисту гору завдань і переможете Птахів Прокрастинації!",
+ "questFalconCompletion": "",
+ "questFalconBoss": "",
+ "questFalconDropFalconEgg": "Яйце сокола",
"questFalconUnlockText": "Розблоковує купівлю сокола в яйці на ринку",
- "questTreelingText": "The Tangle Tree",
- "questTreelingNotes": "It's the annual Garden Competition, and everyone is talking about the mysterious project which @aurakami has promised to unveil. You join the crowd on the day of the big announcement, and marvel at the introduction of a moving tree. @fuzzytrees explains that the tree will help with garden maintenance, showing how it can mow the lawn, trim the hedge and prune the roses all at the same time – until the tree suddenly goes wild, turning its secateurs on its creator! The crowd panics as everyone tries to flee, but you aren't afraid – you leap forward, ready to do battle.",
- "questTreelingCompletion": "You dust yourself off as the last few leaves drift to the floor. In spite of the upset, the Garden Competition is now safe – although the tree you just reduced to a heap of wood chips won't be winning any prizes! \"Still a few kinks to work out there,\" @PainterProphet says. \"Perhaps someone else would do a better job of training the saplings. Do you fancy a go?\"",
- "questTreelingBoss": "Tangle Tree",
- "questTreelingDropTreelingEgg": "Treeling (Egg)",
+ "questTreelingText": "",
+ "questTreelingNotes": "",
+ "questTreelingCompletion": "",
+ "questTreelingBoss": "",
+ "questTreelingDropTreelingEgg": "Яйце деревця",
"questTreelingUnlockText": "Розблоковує купівлю дерева в яйці на ринку",
- "questAxolotlText": "The Magical Axolotl",
- "questAxolotlNotes": "From the depths of Washed-Up Lake you see rising bubbles and... fire? A little axolotl rises from the murky water spewing streaks of colors. Suddenly it begins to open its mouth and @streak yells, \"Look out!\" as the Magical Axolotl starts to gulp up your willpower!
The Magical Axolotl swells with spells, taunting you. \"Have you heard of my powers of regeneration? You'll tire before I do!\"
\"We can defeat you with the good habits we've built!\" @PainterProphet defiantly shouts. You steel yourself to be productive to defeat the Magical Axolotl and regain your stolen willpower!",
- "questAxolotlCompletion": "After defeating the Magical Axolotl, you realize that you regained your willpower all on your own.
\"The willpower? The regeneration? It was all just an illusion?\" @Kiwibot asks.
\"Most magic is,\" the Magical Axolotl replies. \"I'm sorry for tricking you. Please take these eggs as an apology. I trust you to raise them to use their magic for good habits and not evil!\"
You and @hazel40 clutch your new eggs in one hand and wave goodbye with the other as the Magical Axolotl returns to the lake.",
- "questAxolotlBoss": "Magical Axolotl",
- "questAxolotlDropAxolotlEgg": "Axolotl (Egg)",
+ "questAxolotlText": "Магічний аксолотль",
+ "questAxolotlNotes": "",
+ "questAxolotlCompletion": "",
+ "questAxolotlBoss": "Магічний аксолотль",
+ "questAxolotlDropAxolotlEgg": "Яйце аксолотль",
"questAxolotlUnlockText": "Розблоковує купівлю аксолотля в яйці на ринку",
- "questAxolotlRageTitle": "Axolotl Regeneration",
- "questAxolotlRageDescription": "This bar fills when you don't complete your Dailies. When it is full, the Magical Axolotl will heal 30% of its remaining health!",
- "questAxolotlRageEffect": "`Magical Axolotl uses AXOLOTL REGENERATION!`\n\n`A curtain of colorful bubbles obscures the monster for a moment, and when it clears, some of its wounds have vanished!`",
- "questTurtleText": "Guide the Turtle",
- "questTurtleNotes": "Help! This giant sea turtle cannot find her way to her nesting beach. She returns there every year to lay her eggs, but this year Inkomplete Bay is filled with toxic Task Flotsam made of red dailies and unchecked to-dos. \"She's thrashing in a panic!\" @JessicaChase says.
@UncommonCriminal nods. \"It's because her guiding senses are fogged and confused.\"
@Scarabsi grabs your arm. \"Can you help clear the Task Flotsam blocking her path? It may be hazardous, but we have to help her!\"",
- "questTurtleCompletion": "Your valiant work has cleared the waters for our sea turtle to find her beach. You, @Bambin, and @JaizakAripaik watch as she buries her brood of eggs deep in the sand so they can grow and hatch into hundreds of little sea turtles. Ever the lady, she gives you three eggs each, asking that you feed and nurture them so one day they become big sea turtles themselves.",
- "questTurtleBoss": "Task Flotsam",
- "questTurtleDropTurtleEgg": "Turtle (Egg)",
+ "questAxolotlRageTitle": "",
+ "questAxolotlRageDescription": "",
+ "questAxolotlRageEffect": "",
+ "questTurtleText": "",
+ "questTurtleNotes": "",
+ "questTurtleCompletion": "",
+ "questTurtleBoss": "Засмічене море",
+ "questTurtleDropTurtleEgg": "Яйце черпахи",
"questTurtleUnlockText": "Розблоковує купівлю черепахи в яйці на ринку",
- "questArmadilloText": "The Indulgent Armadillo",
- "questArmadilloNotes": "It's time to get outside and start your day. You swing open your door only to be met with what looks like a sheet of rock. \"I'm just giving you the day off!\" says a muffled voice through the blocked door. \"Don't be such a bummer, just relax today!\"
Suddenly, @Beffymaroo and @PainterProphet knock on your window. \"Looks like the Indulgent Armadillo has taken a liking to you! C'mon, we'll help you get her out of your way!\"",
- "questArmadilloCompletion": "Finally, after a long morning of convincing the Indulgent Armadillo that you do, in fact, want to work, she caves. \"I'm sorry!\" She apologizes. \"I just wanted to help. I thought everyone liked lazy days!\"
You smile, and let her know that next time you've earned a day off you'll invite her over. She grins back at you. Passers-by @Tipsy and @krajzega congratulate you on the good work as she rolls away, leaving a few eggs as an apology.",
- "questArmadilloBoss": "Indulgent Armadillo",
- "questArmadilloDropArmadilloEgg": "Armadillo (Egg)",
+ "questArmadilloText": "",
+ "questArmadilloNotes": "",
+ "questArmadilloCompletion": "",
+ "questArmadilloBoss": "",
+ "questArmadilloDropArmadilloEgg": "Яйце броненосця",
"questArmadilloUnlockText": "Розблоковує купівлю броненосця в яйці на ринку",
- "questCowText": "The Mootant Cow",
- "questCowNotes": "It’s been a long, hot day at Sparring Farms, and there is nothing more you want than a long sip of water and some sleep. You're standing there daydreaming when @Soloana suddenly screams, \"Everyone run! The prize cow has mootated!\"
@eevachu gulps. \"It must be our bad habits that infected it.\"
\"Quick!\" @Feralem Tau says. \"Let’s do something before the udder cows mootate, too.\"
You’ve herd enough. No more daydreaming -- it's time to get those bad habits under control!",
- "questCowCompletion": "You milk your good habits for all they are worth until the cow reverts to its original form. The cow looks over at you with her pretty brown eyes and nudges over three eggs.
@fuzzytrees laughs and hands you the eggs, \"Maybe it still is mootated if there are baby cows in these eggs. But I trust you to stick to your good habits when you raise them!\"",
- "questCowBoss": "Mootant Cow",
- "questCowDropCowEgg": "Cow (Egg)",
+ "questCowText": "Корова-мууутант",
+ "questCowNotes": "",
+ "questCowCompletion": "",
+ "questCowBoss": "Корова-мууутант",
+ "questCowDropCowEgg": "Яйце корови",
"questCowUnlockText": "Розблоковує купівлю корови в яйці на ринку",
- "questBeetleText": "The CRITICAL BUG",
- "questBeetleNotes": "Something in the domain of Habitica has gone awry. The Blacksmiths' forges have extinguished, and strange errors are appearing everywhere. With an ominous tremor, an insidious foe worms from the earth... a CRITICAL BUG! You brace yourself as it infects the land, and glitches begin to overtake the Habiticans around you. @starsystemic yells, \"We need to help the Blacksmiths get this Bug under control!\" It looks like you'll have to make this programmer's pest your top priority.",
- "questBeetleCompletion": "With a final attack, you crush the CRITICAL BUG. @starsystemic and the Blacksmiths rush up to you, overjoyed. \"I can't thank you enough for smashing that bug! Here, take these.\" You are presented with three shiny beetle eggs. Hopefully these little bugs will grow up to help Habitica, not hurt it.",
+ "questBeetleText": "КРИТИЧНИЙ БАГ",
+ "questBeetleNotes": "",
+ "questBeetleCompletion": "",
"questBeetleBoss": "CRITICAL BUG",
- "questBeetleDropBeetleEgg": "Beetle (Egg)",
+ "questBeetleDropBeetleEgg": "Яйце жука",
"questBeetleUnlockText": "Розблоковує купівлю жука в яйці на ринку",
- "questGroupTaskwoodsTerror": "Terror in the Taskwoods",
- "questTaskwoodsTerror1Text": "Terror in the Taskwoods, Part 1: The Blaze in the Taskwoods",
- "questTaskwoodsTerror1Notes": "You have never seen the Joyful Reaper so agitated. The ruler of the Flourishing Fields lands her skeleton gryphon mount right in the middle of Productivity Plaza and shouts without dismounting. \"Lovely Habiticans, we need your help! Something is starting fires in the Taskwoods, and we still haven't fully recovered from our battle against Burnout. If it's not halted, the flames could engulf all of our wild orchards and berry bushes!\"
You quickly volunteer, and hasten to the Taskwoods. As you creep into Habitica’s biggest fruit-bearing forest, you suddenly hear clanking and cracking voices from far ahead, and catch the faint smell of smoke. Soon enough, a horde of cackling, flaming skull-creatures flies by you, biting off branches and setting the treetops on fire!",
- "questTaskwoodsTerror1Completion": "With the help of the Joyful Reaper and the renowned pyromancer @Beffymaroo, you manage to drive back the swarm. In a show of solidarity, Beffymaroo offers you her Pyromancer's Turban as you move deeper into the forest.",
- "questTaskwoodsTerror1Boss": "Fire Skull Swarm",
- "questTaskwoodsTerror1RageTitle": "Swarm Respawn",
- "questTaskwoodsTerror1RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Fire Skull Swarm will heal 30% of its remaining health!",
- "questTaskwoodsTerror1RageEffect": "`Fire Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls swirl around you in a gout of flame!",
- "questTaskwoodsTerror1DropSkeletonPotion": "Skeleton Hatching Potion",
- "questTaskwoodsTerror1DropRedPotion": "Red Hatching Potion",
- "questTaskwoodsTerror1DropHeadgear": "Pyromancer's Turban (Headgear)",
- "questTaskwoodsTerror2Text": "Terror in the Taskwoods, Part 2: Finding the Flourishing Fairies",
- "questTaskwoodsTerror2Notes": "Having fought through the swarm of burning skulls, you reach a large group of refugee farmers at the forest's edge. \"Their village was burnt down by a renegade autumn spirit,\" says a familiar voice. It's @Kiwibot, the legendary tracker! \"I managed to gather the survivors, but there's no sign of the Flourishing Fairies who help to grow the wild fruit of the Taskwoods. Please, you have to help me rescue them!\"",
- "questTaskwoodsTerror2Completion": "You manage to locate the last dryad and lead her away from the monsters. When you return to the refugee farmers, you are greeted by the thankful faeries, who give you a robe woven of shining magic and silk. Suddenly, a deep rumbling sound echoes through the trees, shaking the very earth. \"That must be the renegade spirit,\" the Joyful Reaper says. \"Let's hurry!\"",
- "questTaskwoodsTerror2CollectPixies": "Pixies",
- "questTaskwoodsTerror2CollectBrownies": "Brownies",
- "questTaskwoodsTerror2CollectDryads": "Dryads",
- "questTaskwoodsTerror2DropArmor": "Pyromancer's Robes (Armor)",
- "questTaskwoodsTerror3Text": "Terror in the Taskwoods, Part 3: Jacko of the Lantern",
- "questTaskwoodsTerror3Notes": "Ready for battle, your group marches to the heart of the forest, where the renegade spirit is trying to destroy an ancient apple tree surrounded by fruitful berry bushes. His pumpkin-like head radiates a terrible light wherever it turns, and in his left hand he holds a long rod, with a lantern hanging from its tip. Instead of fire or flame, however, the lantern contains a dark crystal that chills you to the very bone.
The Joyful Reaper raises a bony hand to her mouth. \"That's -- that's Jacko, the Lantern Spirit! But he's a helpful harvest ghost who guides our farmers. What could possibly drive the dear soul to act this way?\"
\"I don't know,\" says @bridgetteempress. \"But it looks like that 'dear soul' is about to attack us!\"",
- "questTaskwoodsTerror3Completion": "After a long battle, you manage to land a well-aimed blow at the lantern that Jacko carries, and the crystal within shatters. Jacko suddenly snaps back to his senses and bursts into glowing tears. \"Oh, my beautiful forest! What have I done?!\" he wails. His tears extinguish the remaining fires, and the apple tree and wild berries are saved.
After you help him relax, he explains, \"I met this charming lady named Tzina, and she gave me this glowing crystal as a gift. At her urging, I put it in my lantern... but that's the last thing I recall.\" He turns to you with a golden smile. \"Perhaps you should take it for safekeeping while I help the wild orchards to regrow.\"",
- "questTaskwoodsTerror3Boss": "Jacko of the Lantern",
+ "questGroupTaskwoodsTerror": "",
+ "questTaskwoodsTerror1Text": "",
+ "questTaskwoodsTerror1Notes": "",
+ "questTaskwoodsTerror1Completion": "",
+ "questTaskwoodsTerror1Boss": "",
+ "questTaskwoodsTerror1RageTitle": "",
+ "questTaskwoodsTerror1RageDescription": "",
+ "questTaskwoodsTerror1RageEffect": "",
+ "questTaskwoodsTerror1DropSkeletonPotion": "",
+ "questTaskwoodsTerror1DropRedPotion": "",
+ "questTaskwoodsTerror1DropHeadgear": "",
+ "questTaskwoodsTerror2Text": "",
+ "questTaskwoodsTerror2Notes": "",
+ "questTaskwoodsTerror2Completion": "",
+ "questTaskwoodsTerror2CollectPixies": "Феї",
+ "questTaskwoodsTerror2CollectBrownies": "Домовик",
+ "questTaskwoodsTerror2CollectDryads": "",
+ "questTaskwoodsTerror2DropArmor": "",
+ "questTaskwoodsTerror3Text": "",
+ "questTaskwoodsTerror3Notes": "",
+ "questTaskwoodsTerror3Completion": "",
+ "questTaskwoodsTerror3Boss": "",
"questTaskwoodsTerror3DropStrawberry": "Полуниця (їжа)",
- "questTaskwoodsTerror3DropWeapon": "Taskwoods Lantern (Two-Handed Weapon)",
- "questFerretText": "Нечестивий тхір",
- "questFerretNotes": "Walking through Habit City, you see an unhappy crowd surrounding a red-robed Ferret.
\"That productivity potion you sold me is useless!\" @Beffymaroo complains. \"I watched three hours of TV last night instead of doing my chores!\"
\"Yeah!\" shouts @Pandah. \"And today I spent an hour rearranging my books instead of reading them!\"
The Nefarious Ferret spreads his hands innocently. \"That's more TV watching and book organizing than you'd normally get done, isn't it?\"
The crowd erupts in anger.
\"No refunds!\" crows the Nefarious Ferret. He fires a bolt of magic into the crowd, preparing to escape in the smoke.
\"Please, Habitican!\" @Faye says, grabbing your arm. \"Defeat the ferret and make him refund his dishonest earnings!\"",
- "questFerretCompletion": "You defeat the soft-furred swindler and @UncommonCriminal gives the crowd their refunds. There's even a little gold left over for you. Plus, it looks like the Nefarious Ferret dropped some eggs in his hurry to get away!",
- "questFerretBoss": "Нечестивий тхір",
- "questFerretDropFerretEgg": "Ferret (Egg)",
+ "questTaskwoodsTerror3DropWeapon": "",
+ "questFerretText": "Підлий тхір",
+ "questFerretNotes": "",
+ "questFerretCompletion": "",
+ "questFerretBoss": "Підлий тхір",
+ "questFerretDropFerretEgg": "Яйце тхора",
"questFerretUnlockText": "Розблоковує купівлю тхора в яйці на ринку",
"questDustBunniesText": "Дикі пильові зайці",
"questDustBunniesNotes": "Давно Ви тут не протирали пил, але не надто хвилюйтеся — трішки пилу нікому не зашкодило, правда ж? Тільки до того моменту як Ви засунете руку в один із найбільш віддалених кутів і відчуєте як Вас щось вкусило. Тоді Ви згадаєте застереження @InspectorCaracal: залишаючи \"нешкідливий\" пил занадто довго, він перетворюється на злісних пильових зайців! Вам краще прогнати їх в поле, перш ніж вони зітруть всю Габітику в пил!",
@@ -405,235 +405,235 @@
"questGroupMoon": "Битва під місяцем",
"questMoon1Text": "Битва під місяцем (частина 1): Збір містичних уламків",
"questMoon1Notes": "Габітиканців відволікло від своїх завдань щось дивне: по землі з’являються уламки каменю дивної форми. Стурбована провидиця @Starsystemic викликає Вас до своєї вежі. Вона каже: \"Я бачу тривожні прикмети в цих уламках, які руйнують землю і відволікають працьовитих габітиканців. Я спробую відстежити джерело, але спочатку мені потрібно дослідити уламки. Чи можете Ви зібрати декілька для мене?\"",
- "questMoon1Completion": "@Starsystemic disappears into her tower to examine the shards you gathered. \"This may be more complicated than we feared,\" says @Beffymaroo, her trusted assistant. \"It will take us some time to discover the cause. Keep checking in every day, and when we know more, we'll send you the next quest scroll.\"",
+ "questMoon1Completion": "",
"questMoon1CollectShards": "Місячні уламки",
"questMoon1DropHeadgear": "Шолом місячного воїна (головний убір)",
"questMoon2Text": "Битва під місяцем (частина 2): Зупиніть затьмарюючий Стрес",
"questMoon2Notes": "Після вивчення осколків провидиця @Starsystemic має погані новини. «Древній монстр наближається до Габітики, і це накладає жахливий стрес на її громадян. Я можу витягнути тінь із сердець людей у цю вежу, де вона набуде фізичної форми, але Вам потрібно її перемогти, перш ніж вона розпадеться і почне знову поширюватись». Ви киваєте, і вона починає читати закляття. Танцюючі тіні заповнюють кімнату, щільно притискаючись одна до одної. Холодний вітер кружляє, темрява глибшає. Затьмарюючий Стрес підіймається з підлоги, шкірить зуби, як справжній кошмар ... і замахується!",
- "questMoon2Completion": "The shadow explodes in a puff of dark air, leaving the room brighter and your hearts lighter. The stress blanketing Habitica is diminished, and you can all breathe a sigh of relief. Still, as you look up at the sky, you sense that this is not over: the monster knows someone destroyed its shadow. \"We'll keep careful watch in the coming weeks,\" says @Starsystemic, \"and I'll send you a quest scroll when it manifests.\"",
+ "questMoon2Completion": "",
"questMoon2Boss": "Затьмарюючий Стрес",
"questMoon2DropArmor": "Обладунки місячного воїна (броня)",
"questMoon3Text": "Битва під місяцем (частина 3): Місяць-перевертень",
"questMoon3Notes": "Опівночі ви отримуєте терміновий сувій від @Starsystemic і галопом скачете до її вежі. «Монстр використовує повний місяць, щоб проникнути в наш світ», — каже вона. \"Якщо це йому вдасться, то ми не зможемо пережити такого стресу!\"
На ваш жах, Ви бачите, що монстр дійсно використовує місяць для прояву. На його кам’янистій поверхні відкривається сяюче око, і довгий язик викочується з роззявленої ікластої пащі. Однак Ви не дозволите йому проникнути!",
- "questMoon3Completion": "The emerging monster bursts into shadow, and the moon turns silver as the danger passes. The dragons start singing again, and the stars sparkle with a soothing light. @Starsystemic the Seer bends down and picks up a lunar shard. It shines silver in her hand, before changing into a magnificent crystal scythe.",
+ "questMoon3Completion": "",
"questMoon3Boss": "Місяць-перевертень",
- "questMoon3DropWeapon": "Lunar Scythe (Two-Handed Weapon)",
- "questSlothText": "The Somnolent Sloth",
- "questSlothNotes": "As you and your party venture through the Somnolent Snowforest, you're relieved to see a glimmering of green among the white snowdrifts... until an enormous sloth emerges from the frosty trees! Green emeralds shimmer hypnotically on its back.
\"Hello, adventurers... why don't you take it slow? You've been walking for a while... so why not... stop? Just lie down, and rest...\"
You feel your eyelids grow heavy, and you realize: It's the Somnolent Sloth! According to @JaizakAripaik, it got its name from the emeralds on its back which are rumored to... send people to... sleep...
You shake yourself awake, fighting drowsiness. In the nick of time, @awakebyjava and @PainterProphet begin to shout spells, forcing your party awake. \"Now's our chance!\" @Kiwibot yells.",
- "questSlothCompletion": "You did it! As you defeat the Somnolent Sloth, its emeralds break off. \"Thank you for freeing me of my curse,\" says the sloth. \"I can finally sleep well, without those heavy emeralds on my back. Have these eggs as thanks, and you can have the emeralds too.\" The sloth gives you three sloth eggs and heads off for warmer climates.",
- "questSlothBoss": "Somnolent Sloth",
- "questSlothDropSlothEgg": "Sloth (Egg)",
+ "questMoon3DropWeapon": "",
+ "questSlothText": "",
+ "questSlothNotes": "",
+ "questSlothCompletion": "",
+ "questSlothBoss": "",
+ "questSlothDropSlothEgg": "",
"questSlothUnlockText": "Розблоковує купівлю лінивця в яйці на ринку",
- "questTriceratopsText": "The Trampling Triceratops",
- "questTriceratopsNotes": "The snow-capped Stoïkalm Volcanoes are always bustling with hikers and sight-seers. One tourist, @plumilla, calls over a crowd. \"Look! I enchanted the ground to glow so that we can play field games on it for our outdoor activity Dailies!\" Sure enough, the ground is swirling with glowing red patterns. Even some of the prehistoric pets from the area come over to play.
Suddenly, there's a loud snap -- a curious Triceratops has stepped on @plumilla's wand! It's engulfed in a burst of magic energy, and the ground starts shaking and growing hot. The Triceratops' eyes shine red, and it roars and begins to stampede!
\"That's not good,\" calls @McCoyly, pointing in the distance. Each magic-fueled stomp is causing the volcanoes to erupt, and the glowing ground is turning to lava beneath the dinosaur's feet! Quickly, you must hold off the Trampling Triceratops until someone can reverse the spell!",
- "questTriceratopsCompletion": "With quick thinking, you herd the creature towards the soothing Stoïkalm Steppes so that @*~Seraphina~* and @PainterProphet can reverse the lava spell without distraction. The calming aura of the Steppes takes effect, and the Triceratops curls up as the volcanoes go dormant once more. @PainterProphet passes you some eggs that were rescued from the lava. \"Without you, we wouldn't have been able to concentrate to stop the eruptions. Give these pets a good home.\"",
- "questTriceratopsBoss": "Trampling Triceratops",
- "questTriceratopsDropTriceratopsEgg": "Triceratops (Egg)",
+ "questTriceratopsText": "",
+ "questTriceratopsNotes": "",
+ "questTriceratopsCompletion": "",
+ "questTriceratopsBoss": "",
+ "questTriceratopsDropTriceratopsEgg": "",
"questTriceratopsUnlockText": "Розблоковує купівлю трицератопса в яйці на ринку",
- "questGroupStoikalmCalamity": "Stoïkalm Calamity",
- "questStoikalmCalamity1Text": "Stoïkalm Calamity, Part 1: Earthen Enemies",
- "questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoïkalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!
Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
- "questStoikalmCalamity1Completion": "As you deliver a final blow to the skulls, they dissipate in a puff of magic. \"The dratted swarm may be gone,\" Lady Glaciate says, \"but we have bigger problems. Follow me.\" She tosses you a cloak to protect you from the chill air, and you ride off after her.",
- "questStoikalmCalamity1Boss": "Earth Skull Swarm",
- "questStoikalmCalamity1RageTitle": "Swarm Respawn",
- "questStoikalmCalamity1RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Earth Skull Swarm will heal 30% of its remaining health!",
- "questStoikalmCalamity1RageEffect": "`Earth Skull Swarm uses SWARM RESPAWN!`\n\nMore skulls break free from the ground, their teeth chattering in the cold!",
- "questStoikalmCalamity1DropSkeletonPotion": "Skeleton Hatching Potion",
- "questStoikalmCalamity1DropDesertPotion": "Desert Hatching Potion",
- "questStoikalmCalamity1DropArmor": "Mammoth Rider Armor",
- "questStoikalmCalamity2Text": "Stoïkalm Calamity, Part 2: Seek the Icicle Caverns",
- "questStoikalmCalamity2Notes": "The stately hall of the Mammoth Riders is an austere masterpiece of architecture, but it is also entirely empty. There's no furniture, the weapons are missing, and even the columns were picked clean of their inlays.
\"Those skulls scoured the place,\" Lady Glaciate says, and there is a blizzard brewing in her tone. \"Humiliating. Not a soul is to mention this to the April Fool, or I will never hear the end of it.\"
\"How mysterious!\" says @Beffymaroo. \"But where did they--\"
\"The icicle drake caverns.\" Lady Glaciate gestures at shining coins spilled in the snow outside. \"Sloppy.\"
\"But aren't icicle drakes honorable creatures with their own treasure hoards?\" @Beffymaroo asks. \"Why would they possibly--\"
\"Mind control,\" says Lady Glaciate, utterly unfazed. \"Or something equally melodramatic and inconvenient.\" She begins to stride from the hall. \"Why are you just standing there?\"
Quickly, go follow the trail of Icicle Coins!",
- "questStoikalmCalamity2Completion": "The Icicle Coins lead you straight to the buried entrance of a cleverly hidden cavern. Though the weather outside is calm and lovely, with the sunlight sparkling across the expanse of snow, there is a howling within like a fierce winter wind. Lady Glaciate grimaces and hands you a Mammoth Rider helm. \"Wear this,\" she says. \"You'll need it.\"",
- "questStoikalmCalamity2CollectIcicleCoins": "Icicle Coins",
- "questStoikalmCalamity2DropHeadgear": "Mammoth Rider Helm (Headgear)",
- "questStoikalmCalamity3Text": "Stoïkalm Calamity, Part 3: Icicle Drake Quake",
- "questStoikalmCalamity3Notes": "The twining tunnels of the icicle drake caverns shimmer with frost... and with untold riches. You gape, but Lady Glaciate strides past without a glance. \"Excessively flashy,\" she says. \"Obtained admirably, though, from respectable mercenary work and prudent banking investments. Look further.\" Squinting, you spot a towering pile of stolen items hidden in the shadows.
A sibilant voice hisses as you approach. \"My delicious hoard! You shall not steal it back from me!\" A sinuous body slides from the heap: the Icicle Drake Queen herself! You have just enough time to note the strange bracelets glittering on her wrists and the wildness glinting in her eyes before she lets out a howl that shakes the earth around you.",
- "questStoikalmCalamity3Completion": "You subdue the Icicle Drake Queen, giving Lady Glaciate time to shatter the glowing bracelets. The Queen stiffens in apparent mortification, then quickly covers it with a haughty pose. \"Feel free to remove these extraneous items,\" she says. \"I'm afraid they simply don't fit our decor.\"
\"Also, you stole them,\" @Beffymaroo says. \"By summoning monsters from the earth.\"
The Icicle Drake Queen looks miffed. \"Take it up with that wretched bracelet saleswoman,\" she says. \"It's Tzina you want. I was essentially unaffiliated.\"
Lady Glaciate claps you on the arm. \"You did well today,\" she says, handing you a spear and a horn from the pile. \"Be proud.\"",
- "questStoikalmCalamity3Boss": "Icicle Drake Queen",
+ "questGroupStoikalmCalamity": "",
+ "questStoikalmCalamity1Text": "",
+ "questStoikalmCalamity1Notes": "",
+ "questStoikalmCalamity1Completion": "",
+ "questStoikalmCalamity1Boss": "",
+ "questStoikalmCalamity1RageTitle": "",
+ "questStoikalmCalamity1RageDescription": "",
+ "questStoikalmCalamity1RageEffect": "",
+ "questStoikalmCalamity1DropSkeletonPotion": "",
+ "questStoikalmCalamity1DropDesertPotion": "",
+ "questStoikalmCalamity1DropArmor": "",
+ "questStoikalmCalamity2Text": "",
+ "questStoikalmCalamity2Notes": "",
+ "questStoikalmCalamity2Completion": "",
+ "questStoikalmCalamity2CollectIcicleCoins": "",
+ "questStoikalmCalamity2DropHeadgear": "",
+ "questStoikalmCalamity3Text": "",
+ "questStoikalmCalamity3Notes": "",
+ "questStoikalmCalamity3Completion": "",
+ "questStoikalmCalamity3Boss": "",
"questStoikalmCalamity3DropBlueCottonCandy": "Синя цукрова кулька (їжа)",
- "questStoikalmCalamity3DropShield": "Mammoth Rider's Horn (Off-Hand Item)",
- "questStoikalmCalamity3DropWeapon": "Mammoth Rider Spear (Weapon)",
+ "questStoikalmCalamity3DropShield": "",
+ "questStoikalmCalamity3DropWeapon": "",
"questGuineaPigText": "Банда морських свинок",
- "questGuineaPigNotes": "You're casually strolling through Habit City's famous Market when @Pandah waves you down. \"Hey, check these out!\" They're holding up a brown and beige egg you don't recognize.
Alexander the Merchant frowns at it. \"I don't remember putting that out. I wonder where it came--\" A small paw cuts him off.
\"Guinea all your gold, merchant!\" squeaks a tiny voice brimming with evil.
\"Oh no, the egg was a distraction!\" @mewrose exclaims. \"It's the gritty, greedy Guinea Pig Gang! They never do their Dailies, so they constantly steal gold to buy health potions.\"
\"Robbing the Market?\" says @emmavig. \"Not on our watch!\" Without further prompting, you leap to Alexander's aid.",
- "questGuineaPigCompletion": "\"We submit!\" The Guinea Pig Gang Boss waves his paws at you, fluffy head hanging in shame. From underneath his hat falls a list, and @snazzyorange quickly swipes it for evidence. \"Wait a minute,\" you say. \"It's no wonder you've been getting hurt! You've got way too many Dailies. You don't need health potions -- you just need help organizing.\"
\"Really?\" squeaks the Guinea Pig Gang Boss. \"We've robbed so many people because of this! Please take our eggs as an apology for our crooked ways.\"",
+ "questGuineaPigNotes": "",
+ "questGuineaPigCompletion": "",
"questGuineaPigBoss": "Банда морських свинок",
- "questGuineaPigDropGuineaPigEgg": "Морська свинка (яйце)",
+ "questGuineaPigDropGuineaPigEgg": "Яйце морської свинки",
"questGuineaPigUnlockText": "Розблоковує купівлю морської свинки в яйці на ринку",
- "questPeacockText": "The Push-and-Pull Peacock",
- "questPeacockNotes": "You trek through the Taskwoods, wondering which of the enticing new goals you should pick. As you go deeper into the forest, you realize that you're not alone in your indecision. \"I could learn a new language, or go to the gym...\" @Cecily Perez mutters. \"I could sleep more,\" muses @Lilith of Alfheim, \"or spend time with my friends...\" It looks like @PainterProphet, @Pfeffernusse, and @Draayder are equally paralyzed by the overwhelming options.
You realize that these ever-more-demanding feelings aren't really your own... you've stumbled straight into the trap of the pernicious Push-and-Pull Peacock! Before you can run, it leaps from the bushes. With each head pulling you in conflicting directions, you start to feel burnout overcoming you. You can't defeat both foes at once, so you only have one option -- concentrate on the nearest task to fight back!",
- "questPeacockCompletion": "The Push-and-Pull Peacock is caught off guard by your sudden conviction. Defeated by your single-minded drive, its heads merge back into one, revealing the most beautiful creature you've ever seen. \"Thank you,\" the peacock says. \"I’ve spent so long pulling myself in different directions that I lost sight of what I truly wanted. Please accept these eggs as a token of my gratitude.\"",
- "questPeacockBoss": "Push-and-Pull Peacock",
- "questPeacockDropPeacockEgg": "Peacock (Egg)",
+ "questPeacockText": "",
+ "questPeacockNotes": "",
+ "questPeacockCompletion": "",
+ "questPeacockBoss": "",
+ "questPeacockDropPeacockEgg": "",
"questPeacockUnlockText": "Розблоковує купівлю павича в яйці на ринку",
- "questButterflyText": "Bye, Bye, Butterfry",
- "questButterflyNotes": "Your gardener friend @Megan sends you an invitation: “These warm days are the perfect time to visit Habitica’s butterfly garden in the Taskan countryside. Come see the butterflies migrate!” When you arrive, however, the garden is in shambles -- little more than scorched grass and dried-out weeds. It’s been so hot that the Habiticans haven’t come out to water the flowers, and the dark-red Dailies have turned it into a dry, sun-baked, fire-hazard. There's only one butterfly there, and there's something odd about it...
“Oh no! This is the perfect hatching ground for the Flaming Butterfry,” cries @Leephon.
“If we don’t catch it, it’ll destroy everything!” gasps @Eevachu.
Time to say bye, bye to Butterfry!",
- "questButterflyCompletion": "After a blazing battle, the Flaming Butterfry is captured. “Great job catching the that would-be arsonist,” says @Megan with a sigh of relief. “Still, it’s hard to vilify even the vilest butterfly. We’d better free this Butterfry someplace safe…like the desert.”
One of the other gardeners, @Beffymaroo, comes up to you, singed but smiling. “Will you help raise these foundling chrysalises we found? Perhaps next year we’ll have a greener garden for them.”",
- "questButterflyBoss": "Flaming Butterfry",
- "questButterflyDropButterflyEgg": "Caterpillar (Egg)",
+ "questButterflyText": "",
+ "questButterflyNotes": "",
+ "questButterflyCompletion": "",
+ "questButterflyBoss": "",
+ "questButterflyDropButterflyEgg": "",
"questButterflyUnlockText": "Розблоковує купівлю гусениці в яйці на ринку",
- "questGroupMayhemMistiflying": "Mayhem in Mistiflying",
- "questMayhemMistiflying1Text": "Mayhem in Mistiflying, Part 1: In Which Mistiflying Experiences a Dreadful Bother",
- "questMayhemMistiflying1Notes": "Although local soothsayers predicted pleasant weather, the afternoon is extremely breezy, so you gratefully follow your friend @Kiwibot into their house to escape the blustery day.
Neither of you expects to find the April Fool lounging at the kitchen table.
“Oh, hello,” he says. “Fancy seeing you here. Please, let me offer you some of this delicious tea.”
“That’s…” @Kiwibot begins. “That’s MY—“
“Yes, yes, of course,” says the April Fool, helping himself to some cookies. “Just thought I’d pop indoors and get a nice reprieve from all the tornado-summoning skulls.” He takes a casual sip from his teacup. “Incidentally, the city of Mistiflying is under attack.”
Horrified, you and your friends race to the Stables and saddle your fastest winged mounts. As you soar towards the floating city, you see that a swarm of chattering, flying skulls are laying siege to the city… and several turn their attentions towards you!",
- "questMayhemMistiflying1Completion": "The final skull drops from the sky, a shimmering set of rainbow robes clasped in its jaws, but the steady wind has not slackened. Something else is at play here. And where is that slacking April Fool? You pick up the robes, then swoop into the city.",
- "questMayhemMistiflying1Boss": "Air Skull Swarm",
- "questMayhemMistiflying1RageTitle": "Swarm Respawn",
- "questMayhemMistiflying1RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Air Skull Swarm will heal 30% of its remaining health!",
- "questMayhemMistiflying1RageEffect": "`Air Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls come whirling out of the clouds!",
- "questMayhemMistiflying1DropSkeletonPotion": "Skeleton Hatching Potion",
- "questMayhemMistiflying1DropWhitePotion": "White Hatching Potion",
- "questMayhemMistiflying1DropArmor": "Roguish Rainbow Messenger Robes (Armor)",
- "questMayhemMistiflying2Text": "Mayhem in Mistiflying, Part 2: In Which the Wind Worsens",
- "questMayhemMistiflying2Notes": "Mistiflying dips and rocks as the magical bees keeping it afloat are buffeted by the gale. After a desperate search for the April Fool, you find him inside a cottage, blithely playing cards with an angry, trussed-up skull.
@Katy133 raises their voice over the whistling wind. “What’s causing this? We defeated the skulls, but it’s getting worse!”
“That is a pickle,” the April Fool agrees. “Please be a dear and don’t mention it to Lady Glaciate. She’s always threatening to call off our courtship on the grounds that I am ‘catastrophically irresponsible,’ and I fear that she might misread this situation.” He shuffles the deck. “Perhaps you might follow the Mistiflies? They’re immaterial, so the wind can’t blow them away, and they tend to swarm around threats.” He nods out the window, where several of the city’s patron creatures are fluttering towards the east. “Now let me concentrate — my opponent has quite the poker face.”",
- "questMayhemMistiflying2Completion": "You follow the Mistiflies to the site of a tornado, too stormy for you to enter.
“This should help,” says a voice directly in your ear, and you nearly fall off of your mount. The April Fool is somehow sitting directly behind you in the saddle. “I hear these messenger hoods emit an aura that guards against inclement weather — very useful to avoid losing missives as you fly around. Perhaps give it a try?”",
- "questMayhemMistiflying2CollectRedMistiflies": "Red Mistiflies",
- "questMayhemMistiflying2CollectBlueMistiflies": "Blue Mistiflies",
- "questMayhemMistiflying2CollectGreenMistiflies": "Green Mistiflies",
- "questMayhemMistiflying2DropHeadgear": "Roguish Rainbow Messenger Hood (Headgear)",
- "questMayhemMistiflying3Text": "Mayhem in Mistiflying, Part 3: In Which a Mailman is Extremely Rude",
- "questMayhemMistiflying3Notes": "The Mistiflies are whirling so thickly through the tornado that it’s hard to see. Squinting, you spot a many-winged silhouette floating at the center of the tremendous storm.
“Oh, dear,” the April Fool sighs, nearly drowned out by the howl of the weather. “Looks like Winny went and got himself possessed. Very relatable problem, that. Could happen to anybody.”
“The Wind-Worker!” @Beffymaroo hollers at you. “He’s Mistiflying’s most talented messenger-mage, since he’s so skilled with weather magic. Normally he’s a very polite mailman!”
As if to counteract this statement, the Wind-Worker lets out a scream of fury, and even with your magic robes, the storm nearly rips you from your mount.
“That gaudy mask is new,” the April Fool remarks. “Perhaps you should relieve him of it?”
It’s a good idea… but the enraged mage isn’t going to give it up without a fight.",
- "questMayhemMistiflying3Completion": "Just as you think you can’t withstand the wind any longer, you manage to snatch the mask from the Wind-Worker’s face. Instantly, the tornado is sucked away, leaving only balmy breezes and sunshine. The Wind-Worker looks around in bemusement. “Where did she go?”
“Who?” your friend @khdarkwolf asks.
“That sweet woman who offered to deliver a package for me. Tzina.” As he takes in the wind-swept city below him, his expression darkens. “Then again, maybe she wasn’t so sweet…”
The April Fool pats him on the back, then hands you two shimmering envelopes. “Here. Why don’t you let this distressed fellow rest, and take charge of the mail for a bit? I hear the magic in those envelopes will make them worth your while.”",
- "questMayhemMistiflying3Boss": "The Wind-Worker",
+ "questGroupMayhemMistiflying": "",
+ "questMayhemMistiflying1Text": "",
+ "questMayhemMistiflying1Notes": "",
+ "questMayhemMistiflying1Completion": "",
+ "questMayhemMistiflying1Boss": "",
+ "questMayhemMistiflying1RageTitle": "",
+ "questMayhemMistiflying1RageDescription": "",
+ "questMayhemMistiflying1RageEffect": "",
+ "questMayhemMistiflying1DropSkeletonPotion": "",
+ "questMayhemMistiflying1DropWhitePotion": "",
+ "questMayhemMistiflying1DropArmor": "",
+ "questMayhemMistiflying2Text": "",
+ "questMayhemMistiflying2Notes": "",
+ "questMayhemMistiflying2Completion": "",
+ "questMayhemMistiflying2CollectRedMistiflies": "",
+ "questMayhemMistiflying2CollectBlueMistiflies": "",
+ "questMayhemMistiflying2CollectGreenMistiflies": "",
+ "questMayhemMistiflying2DropHeadgear": "",
+ "questMayhemMistiflying3Text": "",
+ "questMayhemMistiflying3Notes": "",
+ "questMayhemMistiflying3Completion": "",
+ "questMayhemMistiflying3Boss": "",
"questMayhemMistiflying3DropPinkCottonCandy": "Рожева цукрова кулька(Food)",
- "questMayhemMistiflying3DropShield": "Roguish Rainbow Message (Off-Hand Item)",
- "questMayhemMistiflying3DropWeapon": "Roguish Rainbow Message (Main-Hand Item)",
- "featheredFriendsText": "Feathered Friends Quest Bundle",
- "featheredFriendsNotes": "Contains 'Help! Harpy!,' 'The Night-Owl,' and 'The Birds of Preycrastination.' Available until May 31.",
+ "questMayhemMistiflying3DropShield": "",
+ "questMayhemMistiflying3DropWeapon": "",
+ "featheredFriendsText": "",
+ "featheredFriendsNotes": "",
"questNudibranchText": "Зараження мотиваційними морськими молюсками",
- "questNudibranchNotes": "You finally get around to checking your To-dos on a lazy day in Habitica. Bright against your deepest red tasks are a gaggle of vibrant blue sea slugs. You are entranced! Their sapphire colors make your most intimidating tasks look as easy as your best Habits. In a feverish stupor you get to work, tackling one task after the other in a ceaseless frenzy...
The next thing you know, @LilithofAlfheim is pouring cold water over you. “The NowDo Nudibranches have been stinging you all over! You need to take a break!”
Shocked, you see that your skin is as bright red as your To-Do list was. \"Being productive is one thing,\" @beffymaroo says, \"but you've also got to take care of yourself. Hurry, let's get rid of them!\"",
- "questNudibranchCompletion": "You see the last of the NowDo Nudibranches sliding off of a pile of completed tasks as @amadshade washes them away. One leaves behind a cloth bag, and you open it to reveal some gold and a few little ellipsoids you guess are eggs.",
- "questNudibranchBoss": "NowDo Nudibranch",
- "questNudibranchDropNudibranchEgg": "Nudibranch (Egg)",
+ "questNudibranchNotes": "",
+ "questNudibranchCompletion": "",
+ "questNudibranchBoss": "",
+ "questNudibranchDropNudibranchEgg": "",
"questNudibranchUnlockText": "Розблоковує купівлю молюска в яйці на ринку",
- "splashyPalsText": "Splashy Pals Quest Bundle",
- "splashyPalsNotes": "Contains 'The Dilatory Derby', 'Guide the Turtle', and 'Wail of the Whale'. Available until July 31.",
- "questHippoText": "What a Hippo-Crite",
- "questHippoNotes": "You and @awesomekitty collapse into the shade of a palm tree, exhausted. The sun beats down over the Sloensteadi Savannah, scorching the ground below. It’s been a productive day so far, conquering your Dailies, and this oasis looks like a nice place to take a break and refresh. Stooping near the water to get a drink, you stumble back in shock as a massive hippopotamus rises. “Resting so soon? Don’t be so lazy, get back to work.” You try and protest that you’ve been working hard and need a break, but the hippo isn’t having any of it.
@khdarkwolf whispers to you, “Notice how it’s lounging around all day but has the nerve to call you lazy? It’s the Hippo-Crite!”
Your friend @jumorales nods. “Let’s show it what hard work looks like!”",
- "questHippoCompletion": "The hippo bows in surrender. “I underestimated you. It seems you weren’t being lazy. My apologies. Truth be told, I may have been projecting a bit. Perhaps I should get some work done myself. Here, take these eggs as a sign of my gratitude.” Grabbing them, you settle down by the water, ready to relax at last.",
- "questHippoBoss": "The Hippo-Crite",
- "questHippoDropHippoEgg": "Hippo (Egg)",
+ "splashyPalsText": "",
+ "splashyPalsNotes": "",
+ "questHippoText": "",
+ "questHippoNotes": "",
+ "questHippoCompletion": "",
+ "questHippoBoss": "",
+ "questHippoDropHippoEgg": "",
"questHippoUnlockText": "Розблоковує купівлю бегемота в яйці на ринку",
- "farmFriendsText": "Farm Friends Quest Bundle",
- "farmFriendsNotes": "Contains 'The Mootant Cow', 'Ride the Night-Mare', and 'The Thunder Ram'. Available until September 30.",
- "witchyFamiliarsText": "Witchy Familiars Quest Bundle",
- "witchyFamiliarsNotes": "Contains 'The Rat King', 'The Icy Arachnid', and 'Swamp of the Clutter Frog'. Available until October 31.",
- "questGroupLostMasterclasser": "Mystery of the Masterclassers",
- "questUnlockLostMasterclasser": "To unlock this quest, complete the final quests of these quest chains: 'Dilatory Distress', 'Mayhem in Mistiflying', 'Stoïkalm Calamity', and 'Terror in the Taskwoods'.",
- "questLostMasterclasser1Text": "The Mystery of the Masterclassers, Part 1: Read Between the Lines",
- "questLostMasterclasser1Notes": "You’re unexpectedly summoned by @beffymaroo and @Lemoness to Habit Hall, where you’re astonished to find all four of Habitica’s Masterclassers awaiting you in the wan light of dawn. Even the Joyful Reaper looks somber.
“Oho, you’re here,” says the April Fool. “Now, we would not rouse you from your rest without a truly dire—”
“Help us investigate the recent bout of possessions,” interrupts Lady Glaciate. “All the victims blamed someone named Tzina.”
The April Fool is clearly affronted by the summary. “What about my speech?” he hisses to her. “With the fog and thunderstorm effects?”
“We’re in a hurry,” she mutters back. “And my mammoths are still soggy from your incessant practicing.”
“I’m afraid that the esteemed Master of Warriors is correct,” says King Manta. “Time is of the essence. Will you aid us?”
When you nod, he waves his hands to open a portal, revealing an underwater room. “Swim down with me to Dilatory, and we will scour my library for any references that might give us a clue.” At your look of confusion, he adds, “Don’t worry, the paper was enchanted long before Dilatory sank. None of the books are the slightest bit damp!” He winks.“Unlike Lady Glaciate’s mammoths.”
“I heard that, Manta.”
As you dive into the water after the Master of Mages, your legs magically fuse into fins. Though your body is buoyant, your heart sinks when you see the thousands of bookshelves. Better start reading…",
- "questLostMasterclasser1Completion": "After hours of poring through volumes, you still haven’t found any useful information.
“It seems impossible that there isn’t even the tiniest reference to anything relevant,” says head librarian @Tuqjoi, and their assistant @stefalupagus nods in frustration.
King Manta’s eyes narrow. “Not impossible…” he says. “Intentional.” For a moment, the water glows around his hands, and several of the books shudder. “Something is obscuring information,” he says. “Not just a static spell, but something with a will of its own. Something… alive.” He swims up from the table. “The Joyful Reaper needs to hear about this. Let’s pack a meal for the road.”",
- "questLostMasterclasser1CollectAncientTomes": "Ancient Tomes",
- "questLostMasterclasser1CollectForbiddenTomes": "Forbidden Tomes",
- "questLostMasterclasser1CollectHiddenTomes": "Hidden Tomes",
- "questLostMasterclasser2Text": "The Mystery of the Masterclassers, Part 2: Assembling the a'Voidant",
- "questLostMasterclasser2Notes": "The Joyful Reaper drums her bony fingers on some of the books that you brought. “Oh, dear,” the Master of Healers says. “There is a malevolent life essence at work. I might have guessed, considering the attacks by reanimated skulls during each incident.” Her assistant @tricksy.fox brings in a chest, and you are startled to see the contents that @beffymaroo unloads: the very same objects once used by this mysterious Tzina to possess people.
“I’m going to use resonant healing magic to try to make this creature manifest,” the Joyful Reaper says, reminding you that the skeleton is a somewhat unconventional Healer. “You’ll need to read the revealed information quickly, in case it breaks loose.”
As she concentrates, a twisting mist begins to siphon from the books and twine around the objects. Quickly, you flip through the pages, trying to read the new lines of text that are writhing into view. You catch only a few snippets: “Sands of the Timewastes” — “the Great Disaster” —“split into four”— “permanently corrupted”— before a single name catches your eye: Zinnya.
Abruptly, the pages wrench free from your fingers and shred themselves as a howling creature explodes into being, coalescing around the possessed objects.
“It’s an a’Voidant!” the Joyful Reaper shouts, throwing up a protection spell. “They’re ancient creatures of confusion and obscurity. If this Tzina can control one, she must have a frightening command over life magic. Quickly, attack it before it escapes back into the books!”
",
- "questLostMasterclasser2Completion": "The a’Voidant succumbs at last, and you share the snippets that you read.
“None of those references sound familiar, even for someone as old as I,” the Joyful Reaper says. “Except… the Timewastes are a distant desert at the most hostile edge of Habitica. Portals often fail nearby, but swift mounts could get you there in no time. Lady Glaciate will be glad to assist.” Her voice grows amused. “Which means that the enamored Master of Rogues will undoubtedly tag along.” She hands you the glimmering mask. “Perhaps you should try to track the lingering magic in these items to its source. I’ll go harvest some sustenance for your journey.”",
- "questLostMasterclasser2Boss": "The a'Voidant",
- "questLostMasterclasser2DropEyewear": "Aether Mask (Eyewear)",
- "questLostMasterclasser3Text": "The Mystery of the Masterclassers, Part 3: City in the Sands",
- "questLostMasterclasser3Notes": "As night unfurls over the scorching sands of the Timewastes, your guides @AnnDeLune, @Kiwibot, and @Katy133 lead you forward. Some bleached pillars poke from the shadowed dunes, and as you approach them, a strange skittering sound echoes across the seemingly-abandoned expanse.
“Invisible creatures!” says the April Fool, clearly covetous. “Oho! Just imagine the possibilities. This must be the work of a truly stealthy Rogue.”
“A Rogue who could be watching us,” says Lady Glaciate, dismounting and raising her spear. “If there’s a head-on attack, try not to irritate our opponent. I don’t want a repeat of the volcano incident.”
He beams at her. “But it was one of your most resplendent rescues.”
To your surprise, Lady Glaciate turns very pink at the compliment. She hastily stomps away to examine the ruins.
“Looks like the wreck of an ancient city,” says @AnnDeLune. “I wonder what…”
Before she can finish her sentence, a portal roars open in the sky. Wasn’t that magic supposed to be nearly impossible here? The hoofbeats of the invisible animals thunder as they flee in panic, and you steady yourself against the onslaught of shrieking skulls that flood the skies.",
- "questLostMasterclasser3Completion": "The April Fool surprises the final skull with a spray of sand, and it blunders backwards into Lady Glaciate, who smashes it expertly. As you catch your breath and look up, you see a single flash of someone’s silhouette moving on the other side of the closing portal. Thinking quickly, you snatch up the amulet from the chest of previously-possessed items, and sure enough, it’s drawn towards the unseen person. Ignoring the shouts of alarm from Lady Glaciate and the April Fool, you leap through the portal just as it snaps shut, plummeting into an inky swath of nothingness.",
- "questLostMasterclasser3Boss": "Void Skull Swarm",
- "questLostMasterclasser3RageTitle": "Swarm Respawn",
- "questLostMasterclasser3RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Void Skull Swarm will heal 30% of its remaining health!",
- "questLostMasterclasser3RageEffect": "`Void Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls scream down from the heavens, bolstering the swarm!",
- "questLostMasterclasser3DropBodyAccessory": "Aether Amulet (Body Accessory)",
+ "farmFriendsText": "",
+ "farmFriendsNotes": "",
+ "witchyFamiliarsText": "",
+ "witchyFamiliarsNotes": "",
+ "questGroupLostMasterclasser": "",
+ "questUnlockLostMasterclasser": "",
+ "questLostMasterclasser1Text": "",
+ "questLostMasterclasser1Notes": "",
+ "questLostMasterclasser1Completion": "",
+ "questLostMasterclasser1CollectAncientTomes": "",
+ "questLostMasterclasser1CollectForbiddenTomes": "",
+ "questLostMasterclasser1CollectHiddenTomes": "",
+ "questLostMasterclasser2Text": "",
+ "questLostMasterclasser2Notes": "",
+ "questLostMasterclasser2Completion": "",
+ "questLostMasterclasser2Boss": "",
+ "questLostMasterclasser2DropEyewear": "",
+ "questLostMasterclasser3Text": "",
+ "questLostMasterclasser3Notes": "",
+ "questLostMasterclasser3Completion": "",
+ "questLostMasterclasser3Boss": "",
+ "questLostMasterclasser3RageTitle": "",
+ "questLostMasterclasser3RageDescription": "",
+ "questLostMasterclasser3RageEffect": "",
+ "questLostMasterclasser3DropBodyAccessory": "",
"questLostMasterclasser3DropBasePotion": "Звичайний інкубаційний еліксир",
- "questLostMasterclasser3DropGoldenPotion": "Golden Hatching Potion",
- "questLostMasterclasser3DropPinkPotion": "Cotton Candy Pink Hatching Potion",
- "questLostMasterclasser3DropShadePotion": "Shade Hatching Potion",
- "questLostMasterclasser3DropZombiePotion": "Zombie Hatching Potion",
- "questLostMasterclasser4Text": "The Mystery of the Masterclassers, Part 4: The Lost Masterclasser",
- "questLostMasterclasser4Notes": "You surface from the portal, but you’re still suspended in a strange, shifting netherworld. “That was bold,” says a cold voice. “I have to admit, I hadn’t planned for a direct confrontation yet.” A woman rises from the churning whirlpool of darkness. “Welcome to the Realm of Void.”
You try to fight back your rising nausea. “Are you Zinnya?” you ask.
“That old name for a young idealist,” she says, mouth twisting, and the world writhes beneath you. “No. If anything, you should call me the Anti’zinnya now, given all that I have done and undone.”
Suddenly, the portal reopens behind you, and as the four Masterclassers burst out, bolting towards you, Anti’zinnya’s eyes flash with hatred. “I see that my pathetic replacements have managed to follow you.”
You stare. “Replacements?”
“As the Master Aethermancer, I was the first Masterclasser — the only Masterclasser. These four are a mockery, each possessing only a fragment of what I once had! I commanded every spell and learned every skill. I shaped your very world to my whim — until the traitorous aether itself collapsed under the weight of my talents and my perfectly reasonable expectations. I have been trapped for millennia in this resulting void, recuperating. Imagine my disgust when I learned how my legacy had been corrupted.” She lets out a low, echoing laugh. “My plan was to destroy their domains before destroying them, but I suppose the order is irrelevant.” With a burst of uncanny strength, she charges forward, and the Realm of Void explodes into chaos.",
- "questLostMasterclasser4Completion": "Under the onslaught of your final attack, the Lost Masterclasser screams in frustration, her body flickering into translucence. The thrashing void stills around her as she slumps forward, and for a moment, she seems to change, becoming younger, calmer, with an expression of peace upon her face… but then everything melts away with scarcely a whisper, and you’re kneeling once more in the desert sand.
“It seems that we have much to learn about our own history,” King Manta says, staring at the broken ruins. “After the Master Aethermancer grew overwhelmed and lost control of her abilities, the outpouring of void must have leached the life from the entire land. Everything probably became deserts like this.”
“No wonder the ancients who founded Habitica stressed a balance of productivity and wellness,” the Joyful Reaper murmurs. “Rebuilding their world would have been a daunting task requiring considerable hard work, but they would have wanted to prevent such a catastrophe from happening again.”
“Oho, look at those formerly possessed items!” says the April Fool. Sure enough, all of them shimmer with a pale, glimmering translucence from the final burst of aether released when you laid Anti’zinnya’s spirit to rest. “What a dazzling effect. I must take notes.”
“The concentrated remnants of aether in this area probably caused these animals to go invisible, too,” says Lady Glaciate, scratching a patch of emptiness behind the ears. You feel an unseen fluffy head nudge your hand, and suspect that you’ll have to do some explaining at the Stables back home. As you look at the ruins one last time, you spot all that remains of the first Masterclasser: her shimmering cloak. Lifting it onto your shoulders, you head back to Habit City, pondering everything that you have learned.
",
- "questLostMasterclasser4Boss": "Anti'zinnya",
- "questLostMasterclasser4RageTitle": "Siphoning Void",
- "questLostMasterclasser4RageDescription": "Siphoning Void: This bar fills when you don't complete your Dailies. When it is full, Anti'zinnya will remove the party's Mana!",
- "questLostMasterclasser4RageEffect": "`Anti'zinnya uses SIPHONING VOID!` In a twisted inversion of the Ethereal Surge spell, you feel your magic drain away into the darkness!",
- "questLostMasterclasser4DropBackAccessory": "Aether Cloak (Back Accessory)",
- "questLostMasterclasser4DropWeapon": "Aether Crystals (Two-Handed Weapon)",
- "questLostMasterclasser4DropMount": "Invisible Aether Mount",
- "questYarnText": "A Tangled Yarn",
- "questYarnNotes": "It’s such a pleasant day that you decide to take a walk through the Taskan Countryside. As you pass by its famous yarn shop, a piercing scream startles the birds into flight and scatters the butterflies into hiding. You run towards the source and see @Arcosine running up the path towards you. Behind him, a horrifying creature consisting of yarn, pins, and knitting needles is clicking and clacking ever closer.
The shopkeepers race after him, and @stefalupagus grabs your arm, out of breath. \"Looks like all of his unfinished projects\" gasp gasp \"have transformed the yarn from our Yarn Shop\" gasp gasp \"into a tangled mass of Yarnghetti!\"
\"Sometimes, life gets in the way and a project is abandoned, becoming ever more tangled and confused,\" says @khdarkwolf. \"The confusion can even spread to other projects, until there are so many half-finished works running around that no one gets anything done!\"
It’s time to make a choice: complete your stalled projects… or decide to unravel them for good. Either way, you'll have to increase your productivity quickly before the Dread Yarnghetti spreads confusion and discord to the rest of Habitica!",
- "questYarnCompletion": "With a feeble swipe of a pin-riddled appendage and a weak roar, the Dread Yarnghetti finally unravels into a pile of yarn balls.
\"Take care of this yarn,\" shopkeeper @JinjooHat says, handing them to you. \"If you feed them and care for them properly, they'll grow into new and exciting projects that just might make your heart take flight…\"",
- "questYarnBoss": "The Dread Yarnghetti",
- "questYarnDropYarnEgg": "Yarn (Egg)",
+ "questLostMasterclasser3DropGoldenPotion": "",
+ "questLostMasterclasser3DropPinkPotion": "",
+ "questLostMasterclasser3DropShadePotion": "",
+ "questLostMasterclasser3DropZombiePotion": "",
+ "questLostMasterclasser4Text": "",
+ "questLostMasterclasser4Notes": "",
+ "questLostMasterclasser4Completion": "",
+ "questLostMasterclasser4Boss": "",
+ "questLostMasterclasser4RageTitle": "",
+ "questLostMasterclasser4RageDescription": "",
+ "questLostMasterclasser4RageEffect": "",
+ "questLostMasterclasser4DropBackAccessory": "",
+ "questLostMasterclasser4DropWeapon": "",
+ "questLostMasterclasser4DropMount": "",
+ "questYarnText": "",
+ "questYarnNotes": "",
+ "questYarnCompletion": "",
+ "questYarnBoss": "",
+ "questYarnDropYarnEgg": "",
"questYarnUnlockText": "Розблоковує купівлю пряжі в яйці на ринку",
- "winterQuestsText": "Winter Quest Bundle",
- "winterQuestsNotes": "Contains 'Trapper Santa', 'Find the Cub', and 'The Fowl Frost'. Available until December 31.",
- "questPterodactylText": "The Pterror-dactyl",
- "questPterodactylNotes": "You're taking a stroll along the peaceful Stoïkalm Cliffs when an evil screech rends the air. You turn to find a hideous creature flying towards you and are overcome by a powerful terror. As you turn to flee, @Lilith of Alfheim grabs you. \"Don't panic! It's just a Pterror-dactyl.\"
@Procyon P nods. \"They nest nearby, but they're attracted to the scent of negative Habits and undone Dailies.\"
\"Don't worry,\" @Katy133 says. \"We just need to be extra productive to defeat it!\" You are filled with a renewed sense of purpose and turn to face your foe.",
- "questPterodactylCompletion": "With one last screech the Pterror-dactyl plummets over the side of the cliff. You run forward to watch it soar away over the distant steppes. \"Phew, I'm glad that's over,\" you say. \"Me too,\" replies @GeraldThePixel. \"But look! It's left some eggs behind for us.\" @Edge passes you three eggs, and you vow to raise them in tranquility, surrounded by positive Habits and blue Dailies.",
- "questPterodactylBoss": "Pterror-dactyl",
- "questPterodactylDropPterodactylEgg": "Pterodactyl (Egg)",
+ "winterQuestsText": "",
+ "winterQuestsNotes": "",
+ "questPterodactylText": "",
+ "questPterodactylNotes": "",
+ "questPterodactylCompletion": "",
+ "questPterodactylBoss": "",
+ "questPterodactylDropPterodactylEgg": "",
"questPterodactylUnlockText": "Розблоковує купівлю птеродактиля в яйці на ринку",
- "questBadgerText": "Stop Badgering Me!",
- "questBadgerNotes": "Ah, winter in the Taskwoods. The softly falling snow, the branches sparkling with frost, the Flourishing Fairies… still not snoozing?
“Why are they still awake?” cries @LilithofAlfheim. “If they don't hibernate soon, they'll never have the energy for planting season.”
As you and @Willow the Witty hurry to investigate, a furry head pops up from the ground. Before you can yell, “It’s the Badgering Bother!” it’s back in its burrow—but not before snatching up the Fairies' “Hibernate” To-Dos and dropping a giant list of pesky tasks in their place!
“No wonder the fairies aren't resting, if they're constantly being badgered like that!” @plumilla says. Can you chase off this beast and save the Taskwood’s harvest this year?",
- "questBadgerCompletion": "",
- "questBadgerBoss": "The Badgering Bother",
- "questBadgerDropBadgerEgg": "Badger (Egg)",
+ "questBadgerText": "Не борси мені!",
+ "questBadgerNotes": "",
+ "questBadgerCompletion": "Ви нарешті відганяєте Борсука-Набриду й поспішаєте до його нори. У кінці тунелю ви знаходите його скарбницю феїних «сонливих» справ. Лігво виглядає покинуте, за винятком трьох яєць, які, здається, готові вилупитися.",
+ "questBadgerBoss": "",
+ "questBadgerDropBadgerEgg": "Яйце борсука",
"questBadgerUnlockText": "Розблоковує купівлю борсука в яйці на ринку",
- "questDysheartenerText": "The Dysheartener",
- "questDysheartenerNotes": "The sun is rising on Valentine’s Day when a shocking crash splinters the air. A blaze of sickly pink light lances through all the buildings, and bricks crumble as a deep crack rips through Habit City’s main street. An unearthly shrieking rises through the air, shattering windows as a hulking form slithers forth from the gaping earth.
Mandibles snap and a carapace glitters; legs upon legs unfurl in the air. The crowd begins to scream as the insectoid creature rears up, revealing itself to be none other than that cruelest of creatures: the fearsome Dysheartener itself. It howls in anticipation and lunges forward, hungering to gnaw on the hopes of hard-working Habiticans. With each rasping scrape of its spiny forelegs, you feel a vise of despair tightening in your chest.
“Take heart, everyone!” Lemoness shouts. “It probably thinks that we’re easy targets because so many of us have daunting New Year’s Resolutions, but it’s about to discover that Habiticans know how to stick to their goals!”
AnnDeLune raises her staff. “Let’s tackle our tasks and take this monster down!”",
- "questDysheartenerCompletion": "The Dysheartener is DEFEATED!
Together, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”
Glowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigor and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.
The crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.
Our newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.
Beffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”
Crooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
- "questDysheartenerCompletionChat": "`The Dysheartener is DEFEATED!`\n\nTogether, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”\n\nGlowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigor and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.\n\nThe crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.\n\nOur newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.\n\nBeffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”\n\nCrooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
- "questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "The Rage Attack gauge fills when Habiticans miss their Dailies. If it fills up, the Dysheartener will unleash its Shattering Heartbreak attack on one of Habitica's shopkeepers, so be sure to do your tasks!",
- "questDysheartenerBossRageSeasonal": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nOh, no! After feasting on our undone Dailies, the Dysheartener has gained the strength to unleash its Shattering Heartbreak attack. With a shrill shriek, it brings its spiny forelegs down upon the pavilion that houses the Seasonal Shop! The concussive blast of magic shreds the wood, and the Seasonal Sorceress is overcome by sorrow at the sight.\n\nQuickly, let's keep doing our Dailies so that the beast won't strike again!",
+ "questDysheartenerText": "",
+ "questDysheartenerNotes": "",
+ "questDysheartenerCompletion": "",
+ "questDysheartenerCompletionChat": "",
+ "questDysheartenerBossRageTitle": "",
+ "questDysheartenerBossRageDescription": "",
+ "questDysheartenerBossRageSeasonal": "",
"seasonalShopRageStrikeHeader": "Сезонна крамниця була атакована!",
"seasonalShopRageStrikeLead": "Лесине розбите серце!",
- "seasonalShopRageStrikeRecap": "On February 21, our beloved Leslie the Seasonal Sorceress was devastated when the Dysheartener shattered the Seasonal Shop. Quickly, tackle your tasks to defeat the monster and help rebuild!",
- "marketRageStrikeHeader": "The Market was Attacked!",
- "marketRageStrikeLead": "Alex is Heartbroken!",
- "marketRageStrikeRecap": "On February 28, our marvelous Alex the Merchant was horrified when the Dysheartener shattered the Market. Quickly, tackle your tasks to defeat the monster and help rebuild!",
- "questsRageStrikeHeader": "The Quest Shop was Attacked!",
- "questsRageStrikeLead": "Ian is Heartbroken!",
- "questsRageStrikeRecap": "On March 6, our wonderful Ian the Quest Guide was deeply shaken when the Dysheartener shattered the ground around the Quest Shop. Quickly, tackle your tasks to defeat the monster and help rebuild!",
- "questDysheartenerBossRageMarket": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nHelp! After feasting on our incomplete Dailies, the Dysheartener lets out another Shattering Heartbreak attack, smashing the walls and floor of the Market! As stone rains down, Alex the Merchant weeps at his crushed merchandise, stricken by the destruction.\n\nWe can't let this happen again! Be sure to do all our your Dailies to prevent the Dysheartener from using its final strike.",
- "questDysheartenerBossRageQuests": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nAaaah! We've left our Dailies undone again, and the Dysheartener has mustered the energy for one final blow against our beloved shopkeepers. The countryside around Ian the Quest Master is ripped apart by its Shattering Heartbreak attack, and Ian is struck to the core by the horrific vision. We're so close to defeating this monster.... Hurry! Don't stop now!",
- "questDysheartenerDropHippogriffPet": "Hopeful Hippogriff (Pet)",
- "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
- "dysheartenerArtCredit": "Artwork by @AnnDeLune",
- "hugabugText": "Hug a Bug Quest Bundle",
- "hugabugNotes": "Contains 'The CRITICAL BUG,' 'The Snail of Drudgery Sludge,' and 'Bye, Bye, Butterfry.' Available until March 31.",
- "questSquirrelText": "The Sneaky Squirrel",
- "questSquirrelNotes": "You wake up and find you’ve overslept! Why didn’t your alarm go off? … How did an acorn get stuck in the ringer?
When you try to make breakfast, the toaster is stuffed with acorns. When you go to retrieve your mount, @Shtut is there, trying unsuccessfully to unlock their stable. They look into the keyhole. “Is that an acorn in there?”
@randomdaisy cries out, “Oh no! I knew my pet squirrels had gotten out, but I didn’t know they’d made such trouble! Can you help me round them up before they make any more of a mess?”
Following the trail of mischievously placed oak nuts, you track and catch the wayward sciurines, with @Cantras helping secure each one safely at home. But just when you think your task is almost complete, an acorn bounces off your helm! You look up to see a mighty beast of a squirrel, crouched in defense of a prodigious pile of seeds.
“Oh dear,” says @randomdaisy, softly. “She’s always been something of a resource guarder. We’ll have to proceed very carefully!” You circle up with your party, ready for trouble!",
- "questSquirrelCompletion": "With a gentle approach, offers of trade, and a few soothing spells, you’re able to coax the squirrel away from its hoard and back to the stables, which @Shtut has just finished de-acorning. They’ve set aside a few of the acorns on a worktable. “These ones are squirrel eggs! Maybe you can raise some that don’t play with their food quite so much.”",
- "questSquirrelBoss": "Sneaky Squirrel",
- "questSquirrelDropSquirrelEgg": "Squirrel (Egg)",
+ "seasonalShopRageStrikeRecap": "",
+ "marketRageStrikeHeader": "",
+ "marketRageStrikeLead": "",
+ "marketRageStrikeRecap": "",
+ "questsRageStrikeHeader": "",
+ "questsRageStrikeLead": "",
+ "questsRageStrikeRecap": "",
+ "questDysheartenerBossRageMarket": "",
+ "questDysheartenerBossRageQuests": "",
+ "questDysheartenerDropHippogriffPet": "",
+ "questDysheartenerDropHippogriffMount": "",
+ "dysheartenerArtCredit": "Графічна робота @AnnDeLune",
+ "hugabugText": "",
+ "hugabugNotes": "",
+ "questSquirrelText": "",
+ "questSquirrelNotes": "",
+ "questSquirrelCompletion": "",
+ "questSquirrelBoss": "",
+ "questSquirrelDropSquirrelEgg": "",
"questSquirrelUnlockText": "Розблоковує купівлю білки в яйці на ринку",
"cuddleBuddiesText": "Набір квестів \"Пухнасті друзі\"",
"cuddleBuddiesNotes": "Містить «Кролик-вбивця», «Нечестивий тхір» і «Банда морських свинок». Доступний до 31 березня.",
- "aquaticAmigosText": "Aquatic Amigos Quest Bundle",
- "aquaticAmigosNotes": "Contains 'The Magical Axolotl', 'The Kraken of Inkomplete', and 'The Call of Octothulu'. Available until June 30.",
+ "aquaticAmigosText": "",
+ "aquaticAmigosNotes": "",
"questSeaSerpentText": "Біда в глибинах: Напад морського змія!",
- "questSeaSerpentNotes": "Your streaks have you feeling lucky—it’s the perfect time for a trip to the seahorse racetrack. You board the submarine at Diligent Docks and settle in for the trip to Dilatory, but you’ve barely submerged when an impact rocks the sub, sending its occupants tumbling. “What’s going on?” @AriesFaries shouts.
You glance through a nearby porthole and are shocked by the wall of shimmering scales passing by it. “Sea serpent!” Captain @Witticaster calls through the intercom. “Brace yourselves, it’s coming ‘round again!” As you grip the arms of your seat, your unfinished tasks flash before your eyes. ‘Maybe if we work together and complete them,’ you think, ‘we can drive this monster away!’",
- "questSeaSerpentCompletion": "Battered by your commitment, the sea serpent flees, disappearing into the depths. When you arrive in Dilatory, you breathe a sigh of relief before noticing @*~Seraphina~ approaching with three translucent eggs cradled in her arms. “Here, you should have these,” she says. “You know how to handle a sea serpent!” As you accept the eggs, you vow anew to remain steadfast in completing your tasks to ensure that there’s not a repeat occurrence.",
- "questSeaSerpentBoss": "The Mighty Sea Serpent",
- "questSeaSerpentDropSeaSerpentEgg": "Sea Serpent (Egg)",
+ "questSeaSerpentNotes": "",
+ "questSeaSerpentCompletion": "",
+ "questSeaSerpentBoss": "",
+ "questSeaSerpentDropSeaSerpentEgg": "",
"questSeaSerpentUnlockText": "Розблоковує купівлю морського змія в яйці на ринку",
"questKangarooText": "Кенгу-строфа",
- "questKangarooNotes": "Maybe you should have finished that last task… you know, the one you keep avoiding, even though it always comes back around? But @Mewrose and @LilithofAlfheim invited you and @stefalupagus to see a rare kangaroo troop hopping through the Sloensteadi Savannah; how could you say no?! As the troop comes into view, something hits you on the back of the head with a mighty whack!
Shaking the stars from your vision, you pick up the responsible object--a dark red boomerang, with the very task you continually push back etched into its surface. A quick glance around confirms the rest of your party met a similar fate. One larger kangaroo looks at you with a smug grin, like she’s daring you to face her and that dreaded task once and for all!",
- "questKangarooCompletion": "“NOW!” You signal your party to throw the boomerangs back at the kangaroo. The beast hops further away with each hit until she flees, leaving nothing more than a dark red cloud of dust, a few eggs, and some gold coins.
@Mewrose walks forward to where the kangaroo once stood. “Hey, where did the boomerangs go?”
“They probably dissolved into dust, making that dark red cloud, when we finished our respective tasks,” @stefalupagus speculates.
@LilithofAlfheim squints at the horizon. “Is that another kangaroo troop heading our way?”
You all break into a run back to Habit City. Better to face your difficult tasks than take another lump to the back of the head!",
- "questKangarooBoss": "Catastrophic Kangaroo",
- "questKangarooDropKangarooEgg": "Кергуру (яйце)",
+ "questKangarooNotes": "",
+ "questKangarooCompletion": "",
+ "questKangarooBoss": "Катастрофічний Кенгуру",
+ "questKangarooDropKangarooEgg": "Яйце кенгуру",
"questKangarooUnlockText": "Розблоковує купівлю кенгуру в яйці на ринку",
- "forestFriendsText": "Forest Friends Quest Bundle",
- "forestFriendsNotes": "Contains 'The Spirit of Spring', 'The Hedgebeast', and 'The Tangle Tree'. Available until September 30.",
- "questAlligatorText": "The Insta-Gator",
- "questAlligatorNotes": "“Crikey!” exclaims @gully. “An Insta-Gator in its natural habitat! Careful, it distracts its prey with things that seem urgent THIS INSTANT, and it feeds on the unchecked Dailies that result.” You fall silent to avoid attracting its attention, but to no avail. The Insta-Gator spots you and charges! Distracting voices rise up from Swamps of Stagnation, grabbing for your attention: “Read this post! See this photo! Pay attention to me THIS INSTANT!” You scramble to mount a counterattack, completing your Dailies and bolstering your good Habits to fight off the dreaded Insta-Gator.",
- "questAlligatorCompletion": "With your attention focused on what’s important and not the Insta-Gator’s distractions, the Insta-Gator flees. Victory! “Are those eggs? They look like gator eggs to me,” asks @mfonda. “If we care for them correctly, they’ll be loyal pets or faithful steeds,” answers @UncommonCriminal, handing you three to care for. Let’s hope so, or else the Insta-Gator might make a return…",
- "questAlligatorBoss": "Insta-Gator",
- "questAlligatorDropAlligatorEgg": "Alligator (Egg)",
- "questAlligatorUnlockText": "Розблоковує купівлю алігатора в яйці на ринку",
- "oddballsText": "Oddballs Quest Bundle",
- "oddballsNotes": "Contains 'The Jelly Regent,' 'Escape the Cave Creature,' and 'A Tangled Yarn.' Available until December 3.",
- "birdBuddiesText": "Bird Buddies Quest Bundle",
- "birdBuddiesNotes": "Contains 'The Fowl Frost,' 'Rooster Rampage,' and 'The Push-and-Pull Peacock.' Available until December 31.",
- "questVelociraptorText": "The Veloci-Rapper",
- "questVelociraptorNotes": "You’re sharing honey cakes with @*~Seraphina~*, @Procyon P, and @Lilith of Alfheim by a lake in the Stoïkalm Steppes. Suddenly, a mournful voice interrupts your picnic.
My Habits took a hit, I missed my Dailies,
I’m losing it, sinking with doubt and maybes,
At the top of my game I used to be so fly,
But now I just let my Due Dates go by.
@*~Seraphina~* peers behind a stand of grass. “It’s the Veloci-Rapper. It seems... distraught?”
You pump a fist in determination. “There's only one thing to do. Rap battle time!”",
- "questVelociraptorCompletion": "You burst through the grass, confronting the Veloci-Rapper.
See here, rapper, you’re no quitter,
You’re Bad Habits' hardest hitter!
Check off your To-Dos like a boss,
Don’t mourn over one day’s loss!
Filled with renewed confidence, it bounds off to freestyle another day, leaving behind three eggs where it sat.",
- "questVelociraptorBoss": "Veloci-Rapper",
- "questVelociraptorDropVelociraptorEgg": "Velociraptor (Egg)",
+ "forestFriendsText": "",
+ "forestFriendsNotes": "",
+ "questAlligatorText": "Інста-гатор",
+ "questAlligatorNotes": "",
+ "questAlligatorCompletion": "",
+ "questAlligatorBoss": "Інста-гатор",
+ "questAlligatorDropAlligatorEgg": "Яйце алігатора",
+ "questAlligatorUnlockText": "Розблоковує купівлю яєць алігатора на ринку",
+ "oddballsText": "",
+ "oddballsNotes": "",
+ "birdBuddiesText": "",
+ "birdBuddiesNotes": "",
+ "questVelociraptorText": "Велоци-репер",
+ "questVelociraptorNotes": "",
+ "questVelociraptorCompletion": "",
+ "questVelociraptorBoss": "Велоци-репер",
+ "questVelociraptorDropVelociraptorEgg": "Яйце велоцираптора",
"questVelociraptorUnlockText": "Розблоковує купівлю велоцераптора в яйці на ринку",
"evilSantaAddlNotes": "Зверніть увагу, що \"Санта-звіролов\" та «Знайди дитинча» мають досягнуті квестові досягнення, але дають рідкісного домашнього улюбленця та кріплення, який можна додати до вашої стайні лише один раз.",
"questWindupDropWindupPotion": "Заводний інкубаційний еліксир",
@@ -642,7 +642,7 @@
"questRobotUnlockText": "Дозволяє купувати на ринку робота в яйці",
"questSolarSystemDropSolarSystemPotion": "Геліосистемний еліксир для інкубації",
"questWindupUnlockText": "Дозволяє купувати на ринку заводні інкубаційні еліксири",
- "questRobotDropRobotEgg": "Робот (яйце)",
+ "questRobotDropRobotEgg": "Яйце робота",
"questRobotText": "Загадкові механічні дива!",
"mythicalMarvelsText": "Набір квестів \"Фантастичні звірі\"",
"mythicalMarvelsNotes": "Включає квести \"Переконати королеву єдинорогів\", \"Полум'яний ґрифон\" та \"Біда в глибинах: Напад морського змія\". Доступний до 28 лютого."
diff --git a/website/common/locales/uk/settings.json b/website/common/locales/uk/settings.json
index 94de399105..4f9190068a 100644
--- a/website/common/locales/uk/settings.json
+++ b/website/common/locales/uk/settings.json
@@ -21,8 +21,8 @@
"fixVal": "Виправити дані персонажа",
"fixValPop": "Самотужки змінити дані: здоров'я, рівень і золото.",
"invalidLevel": "Невірне значення: Рівень повинен бути рівним або більшим за 1.",
- "enableClass": "Увімкнути систему Класів",
- "enableClassPop": "Раніше Ви відмовилися від системи класів. Бажаєте її ввімкнути?",
+ "enableClass": "Увімкнути систему класів",
+ "enableClassPop": "Раніше ви вимкнули систему класів. Бажаєте її увімкнути?",
"resetAccPop": "Почати заново, залишивши всі рівні, золото, спорядження, історію та завдання.",
"deleteAccount": "Видалити акаунт",
"deleteAccPop": "Видалити Ваш акаунт із Habitica.",
@@ -103,9 +103,9 @@
"giftedSubscriptionInfo": "<%= name %> дарує вам <%= months %> місяці(в) підписки",
"giftedSubscriptionFull": "Привіт<%= username %>, <%= sender %> відправив вам <%= monthCount %>-місячну підписку!",
"invitedParty": "Вас запросили в команду",
- "invitedGuild": "Вас запросили в гільдію",
+ "invitedGuild": "Вас запросили в ґільдію",
"importantAnnouncements": "Нагадування про щоденний вхід для виконання завдань і отримання призів",
- "weeklyRecaps": "Огляди дій з вашого акаунту за останні тижні(Зауваження: тимчасово недоступно через проблеми з продуктивністю, але ми сподіваємося, що скоро зможемо повернути все назад і відправляти листи знову!)",
+ "weeklyRecaps": "Підсумки активності Вашого акаунту за минулий тиждень (Увага: тимчасово недоступно через проблеми з продуктивністю, але ми сподіваємося, що скоро зможемо повернути все назад і відправляти листи знову!)",
"onboarding": "Настанова щодо налаштування акаунту Habitica",
"majorUpdates": "Важливі оголошення",
"questStarted": "Ваш квест розпочався",
@@ -215,5 +215,9 @@
"nextHourglass": "Наступний пісочний годинник",
"nextHourglassDescription": "Підписники отримують Містичний пісочний годинник протягом\nперших трьох днів місяця.",
"adjustment": "Налаштування",
- "dayStartAdjustment": "Регулювання початку дня"
+ "dayStartAdjustment": "Регулювання початку дня",
+ "passwordSuccess": "Пароль успішно змінено",
+ "giftSubscriptionRateText": "$<%= price %> доларів США за <%= months %> місяць(-і/ів)",
+ "transaction_create_bank_challenge": "Створено банк для випробування",
+ "transaction_admin_update_balance": "Адміна надано"
}
diff --git a/website/common/locales/uk/subscriber.json b/website/common/locales/uk/subscriber.json
index d09c1771eb..567e4d0f43 100644
--- a/website/common/locales/uk/subscriber.json
+++ b/website/common/locales/uk/subscriber.json
@@ -3,137 +3,137 @@
"subscriptions": "Підписки",
"sendGems": "Надіслати самоцвіти",
"buyGemsGold": "Придбати самоцвіти за золото",
- "mustSubscribeToPurchaseGems": "Must subscribe to purchase gems with GP",
+ "mustSubscribeToPurchaseGems": "Необхідно підписатися, щоб купувати дорогоцінні камені за золото",
"reachedGoldToGemCap": "You've reached the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.",
"reachedGoldToGemCapQuantity": "Запитана вами сума <%= quantity %> перевищує суму, яку ви можете придбати за цей місяць (<%= convCap %>). Повна сума стає доступною протягом перших трьох днів кожного місяця. Дякуємо за підписку!",
"mysteryItem": "Екслюзивні місячні проекти",
"mysteryItemText": "Кожен місяць ви будете отримувати унікальні косметичні деталі для вашого аватара! Крім того, за кожні три місяці безперервної підписки Мандрівники Таємного Часу надаватимуть вам доступ до історичних (і футуристичних!) косметичних товарів.",
- "exclusiveJackalopePet": "Exclusive pet",
+ "exclusiveJackalopePet": "Ексклюзивний домашній улюбленець",
"giftSubscription": "Хочете подарувати переваги підписки комусь іншому?",
- "giftSubscriptionText4": "Thanks for supporting Habitica!",
+ "giftSubscriptionText4": "Дякуємо, що підтримуєте Habitica!",
"groupPlans": "Групові плани",
"subscribe": "Підписатися",
- "nowSubscribed": "You are now subscribed to Habitica!",
+ "nowSubscribed": "Ви підписались на Habitica!",
"cancelSub": "Скасувати підписку",
- "cancelSubInfoGroupPlan": "Because you have a free subscription from a Group Plan, you cannot cancel it. It will end when you are no longer in the Group. If you are the Group leader and want to cancel the entire Group Plan, you can do that from the group's \"Payment Details\" tab.",
+ "cancelSubInfoGroupPlan": "Оскільки у вас є безкоштовна підписка з групового плану, ви не можете її скасувати. Він закінчиться, коли ви більше не будете учасником Групового плану. Якщо ви є лідером групи та хочете скасувати груповий план, ви можете зробити це на вкладці «Групова оплата» у груповому плані.",
"cancelingSubscription": "Скасувати підписку",
"contactUs": "Зв'язатися з нами",
"checkout": "Розрахувати",
"sureCancelSub": "Ви справді бажаєте скасувати Вашу підписку?",
- "subGemPop": "Because you subscribe to Habitica, you can purchase a number of Gems each month using Gold.",
+ "subGemPop": "Оскільки ви підписалися на Habitica, ви можете щомісяця купувати певну кількість дорогоцінних каменів, використовуючи золото.",
"subGemName": "Самоцвіти Передплатника",
- "maxBuyGems": "You have bought all the Gems you can this month. More become available within the first three days of each month. Thanks for subscribing!",
+ "maxBuyGems": "Ви купили всі дорогоцінні камені, які можете цього місяця. Більше стане доступно протягом перших трьох днів наступного місяця. Дякуємо за підписку!",
"timeTravelers": "Мандрівники у часі",
- "timeTravelersPopoverNoSubMobile": "Looks like you’ll need a Mystic Hourglass to open the time portal and summon the Mysterious Time Travelers.",
- "timeTravelersPopover": "Your Mystic Hourglass has opened our time portal! Choose what you’d like us to fetch from the past or future.",
- "mysterySetNotFound": "Mystery set not found, or set already owned.",
- "mysteryItemIsEmpty": "Mystery items are empty",
- "mysteryItemOpened": "Mystery item opened.",
- "mysterySet201402": "Winged Messenger Set",
- "mysterySet201403": "Forest Walker Set",
- "mysterySet201404": "Twilight Butterfly Set",
- "mysterySet201405": "Flame Wielder Set",
- "mysterySet201406": "Octomage Set",
- "mysterySet201407": "Undersea Explorer Set",
- "mysterySet201408": "Sun Sorcerer Set",
- "mysterySet201409": "Autumn Strider Set",
- "mysterySet201410": "Winged Goblin Set",
- "mysterySet201411": "Feast and Fun Set",
- "mysterySet201412": "Penguin Set",
- "mysterySet201501": "Starry Knight Set",
- "mysterySet201502": "Winged Enchanter Set",
- "mysterySet201503": "Aquamarine Set",
- "mysterySet201504": "Busy Bee Set",
- "mysterySet201505": "Green Knight Set",
- "mysterySet201506": "Neon Snorkeler Set",
- "mysterySet201507": "Rad Surfer Set",
- "mysterySet201508": "Cheetah Costume Set",
- "mysterySet201509": "Werewolf Set",
- "mysterySet201510": "Horned Goblin Set",
- "mysterySet201511": "Wood Warrior Set",
- "mysterySet201512": "Winter Flame Set",
- "mysterySet201601": "Champion of Resolution Set",
- "mysterySet201602": "Heartbreaker Set",
- "mysterySet201603": "Lucky Clover Set",
- "mysterySet201604": "Leaf Warrior Set",
- "mysterySet201605": "Marching Bard Set",
- "mysterySet201606": "Selkie Robes Set",
- "mysterySet201607": "Seafloor Rogue Set",
- "mysterySet201608": "Thunderstormer Set",
- "mysterySet201609": "Cow Costume Set",
- "mysterySet201610": "Spectral Flame Set",
- "mysterySet201611": "Cornucopia Set",
- "mysterySet201612": "Nutcracker Set",
- "mysterySet201701": "Time-Freezer Set",
- "mysterySet201702": "Heartstealer Set",
- "mysterySet201703": "Shimmer Set",
- "mysterySet201704": "Fairytale Set",
- "mysterySet201705": "Feathered Fighter Set",
- "mysterySet201706": "Pirate Pioneer Set",
- "mysterySet201707": "Jellymancer Set",
- "mysterySet201708": "Lava Warrior Set",
- "mysterySet201709": "Sorcery Student Set",
- "mysterySet201710": "Imperious Imp Set",
- "mysterySet201711": "Carpet Rider Set",
- "mysterySet201712": "Candlemancer Set",
- "mysterySet201801": "Frost Sprite Set",
- "mysterySet201802": "Love Bug Set",
- "mysterySet201803": "Daring Dragonfly Set",
- "mysterySet201804": "Spiffy Squirrel Set",
- "mysterySet201805": "Phenomenal Peacock Set",
- "mysterySet201806": "Alluring Anglerfish Set",
- "mysterySet201807": "Sea Serpent Set",
- "mysterySet201808": "Lava Dragon Set",
- "mysterySet201809": "Autumnal Armor Set",
+ "timeTravelersPopoverNoSubMobile": "Схоже, вам знадобиться Містичний пісочний годинник, щоб відкрити часовий портал і покликати таємничих мандрівників у часі.",
+ "timeTravelersPopover": "Ваш містичний пісочний годинник відкрив часовий портал! Виберіть, що ви хочете отримати з минулого чи майбутнього.",
+ "mysterySetNotFound": "Таємничий набір не знайдено, або набір вже належить вам.",
+ "mysteryItemIsEmpty": "Таємничі предмети порожні",
+ "mysteryItemOpened": "Таємничий предмет відкрито.",
+ "mysterySet201402": "Набір крилатих посланців",
+ "mysterySet201403": "Набір лісових ходунків",
+ "mysterySet201404": "Набір сутінкових метеликів",
+ "mysterySet201405": "Набір володаря полум'я",
+ "mysterySet201406": "Набір Восьмимага",
+ "mysterySet201407": "Набір підводного дослідника",
+ "mysterySet201408": "Набір сонячного чарівника",
+ "mysterySet201409": "Набір осіннього мандрівника",
+ "mysterySet201410": "Набір крилатого гобліна",
+ "mysterySet201411": "Набір свята та веселощів",
+ "mysterySet201412": "Набір пінгвіна",
+ "mysterySet201501": "Набір зоряного лицара",
+ "mysterySet201502": "Набір крилатого чарівника",
+ "mysterySet201503": "Набір аквамариновий",
+ "mysterySet201504": "Набір бджоли-трудівниці",
+ "mysterySet201505": "Набір зеленого лицаря",
+ "mysterySet201506": "Набір неонового водолаза",
+ "mysterySet201507": "Набір вправного серфера",
+ "mysterySet201508": "Набір гепарда",
+ "mysterySet201509": "Набір перевертня",
+ "mysterySet201510": "Набір рогатого гобліна",
+ "mysterySet201511": "Набір дерев'яного воїна",
+ "mysterySet201512": "Набір зимового полум'я",
+ "mysterySet201601": "Набір чемпіона з рішучості",
+ "mysterySet201602": "Набір серцеїда",
+ "mysterySet201603": "Набір щасливої конюшини",
+ "mysterySet201604": "Набір листяного воїна",
+ "mysterySet201605": "Набір маршируючого барда",
+ "mysterySet201606": "Набір з шовкового одягу",
+ "mysterySet201607": "Набір морського пройдисвіта",
+ "mysterySet201608": "Набір грозовий",
+ "mysterySet201609": "Набір костюм корови",
+ "mysterySet201610": "Набір спектрального полум'я",
+ "mysterySet201611": "Набір рога достатку",
+ "mysterySet201612": "Набір лускунчика",
+ "mysterySet201701": "Набір заморожувача часу",
+ "mysterySet201702": "Набір викрадача сердець",
+ "mysterySet201703": "Набір мерехтливий",
+ "mysterySet201704": "Казковий набір",
+ "mysterySet201705": "Набір пернатого воїна",
+ "mysterySet201706": "Набір пірата-першовідкривача",
+ "mysterySet201707": "Набір Желе-мага",
+ "mysterySet201708": "Набір Лавового воїна",
+ "mysterySet201709": "Набір учня чаклуна",
+ "mysterySet201710": "Набір владного чортеняти",
+ "mysterySet201711": "Набір килимового вершника",
+ "mysterySet201712": "Набір cвічника",
+ "mysterySet201801": "Набір морозного духа",
+ "mysterySet201802": "Набір жука-кохання",
+ "mysterySet201803": "Набір сміливої бабки",
+ "mysterySet201804": "Набір стильної білки",
+ "mysterySet201805": "Набір феноменального павича",
+ "mysterySet201806": "Набір симпатичної риби-вудильника",
+ "mysterySet201807": "Набір морського змія",
+ "mysterySet201808": "Набір лавового дракона",
+ "mysterySet201809": "Набір осінного захисту",
"mysterySet201810": "Набір Темний Ліс",
"mysterySet201811": "Набір Чудового Чаклуна",
- "mysterySet201812": "Arctic Fox Set",
- "mysterySet201901": "Polaris Set",
- "mysterySet301404": "Steampunk Standard Set",
- "mysterySet301405": "Steampunk Accessories Set",
- "mysterySet301703": "Peacock Steampunk Set",
- "mysterySet301704": "Pheasant Steampunk Set",
- "mysterySetwondercon": "Wondercon",
+ "mysterySet201812": "Набір песця",
+ "mysterySet201901": "Набір полярний",
+ "mysterySet301404": "Набір стимпанківський стандартний",
+ "mysterySet301405": "Набір аксесуарів в стилі стимпанк",
+ "mysterySet301703": "Набір стимпанк-павича",
+ "mysterySet301704": "Набір стимпанк-фазана",
+ "mysterySetwondercon": "Вандер-кон",
"subUpdateCard": "Оновити картку",
"subUpdateTitle": "Оновити",
"subUpdateDescription": "Оновити картку, з якої будете сплачувати.",
- "notEnoughHourglasses": "You don't have enough Mystic Hourglasses.",
- "petsAlreadyOwned": "Pet already owned.",
- "mountsAlreadyOwned": "Mount already owned.",
- "typeNotAllowedHourglass": "Item type not supported for purchase with Mystic Hourglass. Allowed types: <%= allowedTypes %>",
- "hourglassPurchase": "Purchased an item using a Mystic Hourglass!",
- "hourglassPurchaseSet": "Purchased an item set using a Mystic Hourglass!",
- "missingUnsubscriptionCode": "Missing unsubscription code.",
- "missingSubscription": "User does not have a plan subscription",
- "missingSubscriptionCode": "Missing subscription code. Possible values: basic_earned, basic_3mo, basic_6mo, google_6mo, basic_12mo.",
- "missingReceipt": "Missing Receipt.",
+ "notEnoughHourglasses": "Вам не вистачає містичних пісочних годинників.",
+ "petsAlreadyOwned": "У вас вже є цей улюбленець.",
+ "mountsAlreadyOwned": "У вас вже є цей скакун.",
+ "typeNotAllowedHourglass": "Даний тип предмета неможливо придбати за містичні пісочні годинники. Дозволені типи: <%= allowedTypes %>",
+ "hourglassPurchase": "Придбано предмет за допомогою містичного пісочного годинника!",
+ "hourglassPurchaseSet": "Придбано набір предметів за допомогою містичного пісочного годинника!",
+ "missingUnsubscriptionCode": "Відсутній код скасування підписки.",
+ "missingSubscription": "Користувач не має підписки",
+ "missingSubscriptionCode": "Відсутній код підписки. Можливі значення: basic_earned, basic_3mo, basic_6mo, google_6mo, basic_12mo.",
+ "missingReceipt": "Відсутня квитанція.",
"cannotDeleteActiveAccount": "Ви маєте активну підписку, відмініть свій план перед видаленням акаунта.",
"paymentNotSuccessful": "Оплата не була успішною",
- "planNotActive": "The plan hasn't activated yet (due to a PayPal bug). It will begin <%= nextBillingDate %>, after which you can cancel to retain your full benefits",
- "notAllowedHourglass": "Pet/Mount not available for purchase with Mystic Hourglass.",
- "readCard": "<%= cardType %> has been read",
- "cardTypeRequired": "Card type required",
+ "planNotActive": "План ще не активовано (через помилку PayPal). Він розпочнеться <%= nextBillingDate %>, після чого ви можете скасувати підписку, щоб зберегти всі переваги",
+ "notAllowedHourglass": "Домашня тварина/скакун недоступні для придбання за містичні пісочні годинники.",
+ "readCard": "<%= cardType %> листівка була прочитана",
+ "cardTypeRequired": "Необхідний тип картки",
"cardTypeNotAllowed": "Невідомий тип картки.",
- "invalidCoupon": "Invalid coupon code.",
- "couponUsed": "Coupon code already used.",
- "couponCodeRequired": "The coupon code is required.",
+ "invalidCoupon": "Неправильний код купона.",
+ "couponUsed": "Цей купон вже використаний.",
+ "couponCodeRequired": "Необхідно вказати код купона.",
"paypalCanceled": "Your subscription has been canceled",
- "choosePaymentMethod": "Choose your payment method",
+ "choosePaymentMethod": "Виберіть спосіб оплати",
"buyGemsSupportsDevs": "Purchasing Gems supports the developers and helps keep Habitica running",
"support": "SUPPORT",
- "gemBenefitLeadin": "What can you buy with Gems?",
- "gemBenefit1": "Unique and fashionable costumes for your avatar.",
- "gemBenefit2": "Backgrounds to immerse your avatar in the world of Habitica!",
- "gemBenefit3": "Exciting Quest chains that drop pet eggs.",
- "gemBenefit4": "Reset your avatar's Stat Points and change its Class.",
- "subscriptionBenefit1": "Alexander the Merchant will now sell you Gems from the Market for 20 Gold each!",
- "subscriptionBenefit3": "Discover more items in Habitica with a doubled daily drop cap.",
- "subscriptionBenefit4": "Unique cosmetic item for you to decorate your avatar each month.",
- "subscriptionBenefit5": "Receive the Royal Purple Jackalope pet when you become a new subscriber.",
- "subscriptionBenefit6": "Earn Mystic Hourglasses for use in the Time Travelers' Shop!",
- "purchaseAll": "Придбати набір",
- "gemsRemaining": "Gems remaining",
- "notEnoughGemsToBuy": "You are unable to buy that amount of gems",
+ "gemBenefitLeadin": "Що можна купити за самоцвіти?",
+ "gemBenefit1": "Унікальні та модні костюми для вашого аватара.",
+ "gemBenefit2": "Фони, щоб занурити свій аватар у світ Habitica!",
+ "gemBenefit3": "Захоплюючі серії квестів, які містять яйця домашніх тварин.",
+ "gemBenefit4": "Скиньте очки характеристик вашого аватара та змініть його клас.",
+ "subscriptionBenefit1": "Купець Олександр тепер продаватиме вам самоцвіти на ринку по 20 золотих за кожен!",
+ "subscriptionBenefit3": "Відкрийте для себе ще більше предметів у Habitica за допомогою збільшеного у 2 рази шансу їх випадіння.",
+ "subscriptionBenefit4": "Унікальне спорядження, яким ви щомісяця прикрашаєте свій аватар.",
+ "subscriptionBenefit5": "Отримайте Королівського фіолетового Кроленя, коли станете підписником.",
+ "subscriptionBenefit6": "Заробляйте «Містичні пісочні годинники», щоб купувати речі в магазині «Машина часу»!",
+ "purchaseAll": "Придбати всі за",
+ "gemsRemaining": "Самоцвітів залишилось",
+ "notEnoughGemsToBuy": "Ви не можете купити таку кількість самоцвітів",
"organization": "Організація",
"giftASubscription": "Подаруйте підписку",
"confirmCancelSub": "Ви впевнені, що хочете скасувати підписку? Ви втратите всі її переваги.",
@@ -156,5 +156,60 @@
"mysterySet201902": "Набір загадкових розчавлень",
"cancelYourSubscription": "Скасувати Вашу підписку?",
"subCanceledTitle": "Підписка скасована",
- "subscriptionCanceled": "Ваша підписка скасована"
+ "subscriptionCanceled": "Ваша підписка скасована",
+ "lookingForMoreItems": "Хочете більше трофеїв?",
+ "dropCapSubs": "Підписники Habitica можуть щодня знаходити подвійну кількість випадкових предметів і щомісяця отримувати таємничі предмети!",
+ "wantToSendOwnGems": "Хочете надіслати власні дорогоцінні камені?",
+ "howManyGemsPurchase": "Скільки самоцвітів ви хотіли б купити?",
+ "howManyGemsSend": "Скільки самоцвітів ви хотіли б надіслати?",
+ "needToPurchaseGems": "Потрібно придбати дорогоцінні камені в подарунок?",
+ "mysterySet201908": "Набір дикого фавна",
+ "mysterySet202201": "Набір опівнічного веселуна",
+ "mysterySet202003": "Набір колючого бійця",
+ "mysterySet202004": "Набір могутнього монарха",
+ "mysterySet202006": "Набір різнокольорового мерфолка",
+ "mysterySet202010": "Набір звабливої летючої мишки",
+ "mysterySet202011": "Набір листяного мага",
+ "mysterySet202012": "Набір фенікса льодяного полум'я",
+ "mysterySet202101": "Набір чудового снігового барса",
+ "mysterySet202102": "Набір зачаровуючого чемпіона",
+ "mysterySet202103": "Набір для споглядання за квітами",
+ "mysterySet202104": "Набір будякового охоронця",
+ "mysterySet202105": "Набір дракона із зоряної туманності",
+ "mysterySet202106": "Набір сирени заходу сонця",
+ "mysterySet202107": "Набір для пляжного відпочинку",
+ "mysterySet202108": "Набір вогняного шьонена",
+ "mysterySet202109": "Набір місячного метелика",
+ "mysterySet202110": "Набір мохопокритої гаргульї",
+ "mysterySet202111": "Набір космічного хрономанта",
+ "mysterySet202112": "Набір антарктичної ундини",
+ "mysterySet202005": "Набір чудесного віверна",
+ "mysterySet202007": "Набір видатної косатки",
+ "mysterySet202008": "Набір совиного оракула",
+ "mysterySet202009": "Набір дивовижної молі",
+ "mysterySet202202": "Набір з бірюзовими хвостиками",
+ "mysterySet202203": "Набір безстрашної бабки",
+ "mysterySet202209": "Набір чарівника-ученого",
+ "usuallyGems": "Зазвичай <%= originalGems %>",
+ "subscribersReceiveBenefits": "Підписники отримують ці корисні переваги!",
+ "monthlyMysteryItems": "Щомісячні таємничі предмети",
+ "youAreSubscribed": "Ви підписані на Habitica",
+ "dropCapLearnMore": "Дізнайтеся більше про систему трофеїв в Habitica",
+ "sendAGift": "Надіслати подарунок",
+ "doubleDropCap": "Подвойте шанс випадіння предметів",
+ "dropCapReached": "Ви знайшли всі предмети за день!",
+ "cancelSubAlternatives": "Якщо у вас виникли технічні проблеми або здається, що Habitica у вас не працює, зв’яжіться з нами. Ми хочемо допомогти вам отримати максимум від Habitica.",
+ "dropCapExplanation": "Ваші ліміт випадіння буде скинуто разом із завданнями завтра. Однак ви й надалі отримуватимете золото, досвід і прогрес у квестах, виконуючи завдання.",
+ "supportHabitica": "Підтримати Habitica",
+ "needToUpdateCard": "Потрібно оновити картку?",
+ "subscriptionStats": "Статистика підписки",
+ "mysterySet202205": "Набір сутінково-крилатого дракона",
+ "mysterySet202206": "Набір морсього духа",
+ "mysterySet202207": "Набір прозорої медузи",
+ "subscriptionInactiveDate": "Ваші переваги від підписки закінчаться <%= date %>",
+ "subMonths": "Місяців підписки",
+ "readyToResubscribe": "Ви готові повторно підписатися?",
+ "mysterySet202208": "Набір з веселим хвостиком",
+ "backgroundAlreadyOwned": "У вас вже є цей фон.",
+ "mysterySet202204": "Набір віртуального мандрівника"
}
diff --git a/website/common/locales/uk/tasks.json b/website/common/locales/uk/tasks.json
index 6d10c94cc3..7a854daaa7 100644
--- a/website/common/locales/uk/tasks.json
+++ b/website/common/locales/uk/tasks.json
@@ -124,8 +124,8 @@
"years": "Роки",
"resets": "Скидається",
"nextDue": "Наступні терміни виконання",
- "checkOffYesterDailies": "Відмітьте щоденки які ви виконали вчора:",
- "yesterDailiesCallToAction": "Почати мій новий день!",
+ "checkOffYesterDailies": "Відзначте щоденки, які Ви встигли виконати вчора:",
+ "yesterDailiesCallToAction": "Розпочати новий день!",
"sessionOutdated": "Ваш сеанс призупинено. Будь ласка, для продовження, оновіть його або синхронізуйте.",
"errorTemporaryItem": "Цей елемент тимчасовий і не може бути прикріплений.",
"pressEnterToAddTag": "Натисніть Enter, щоб додати ярлик: '<%= tagName %>'",
@@ -139,5 +139,6 @@
"adjustCounter": "Відрегулювати лічильник",
"counter": "Лічильник",
"resetCounter": "Скинути лічильник",
- "editTagsText": "Редагувати ярлики"
+ "editTagsText": "Редагувати ярлики",
+ "taskSummary": "Про <%= type %> загалом"
}
diff --git a/website/common/locales/vi/achievements.json b/website/common/locales/vi/achievements.json
index 4424793068..4efe4f1e9d 100755
--- a/website/common/locales/vi/achievements.json
+++ b/website/common/locales/vi/achievements.json
@@ -99,5 +99,7 @@
"achievementSkeletonCrew": "Đoàn Bộ Xương",
"achievementSeeingRedText": "Đã thu thập tất cả Thú cưng Màu đỏ.",
"achievementSeeingRedModalText": "Bạn đã thu thập tất cả Thú cưng Màu đỏ!",
- "achievementLegendaryBestiaryModalText": "Bạn đã thu thập tất cả sinh vật huyền thoại!"
+ "achievementLegendaryBestiaryModalText": "Bạn đã thu thập tất cả sinh vật huyền thoại!",
+ "achievementRedLetterDay": "Ngày Thư Đỏ",
+ "achievementSeeingRed": "Nhìn thấy Màu đỏ"
}
diff --git a/website/common/locales/vi/content.json b/website/common/locales/vi/content.json
index 49ac378946..0337c40ae8 100755
--- a/website/common/locales/vi/content.json
+++ b/website/common/locales/vi/content.json
@@ -370,5 +370,6 @@
"hatchingPotionTurquoise": "Màu ngọc lam",
"hatchingPotionStainedGlass": "Kính màu ghép",
"hatchingPotionAutumnLeaf": "Lá mùa thu",
- "hatchingPotionOnyx": "Ngọc Onyx"
+ "hatchingPotionOnyx": "Ngọc Onyx",
+ "hatchingPotionVirtualPet": "Thú cưng ảo"
}
diff --git a/website/common/locales/vi/subscriber.json b/website/common/locales/vi/subscriber.json
index 191c3da808..5ed59f318c 100755
--- a/website/common/locales/vi/subscriber.json
+++ b/website/common/locales/vi/subscriber.json
@@ -1,9 +1,9 @@
{
- "subscription": "Gói Đăng kí",
+ "subscription": "Đăng kí",
"subscriptions": "Các gói Đăng kí",
- "sendGems": "Tặng Gems",
+ "sendGems": "Tặng Ngọc",
"buyGemsGold": "Đổi vàng lấy ngọc",
- "mustSubscribeToPurchaseGems": "Phải đăng nhập để mua gems bằng GP",
+ "mustSubscribeToPurchaseGems": "Phải đăng nhập để mua ngọc bằng GP",
"reachedGoldToGemCap": "You've reached the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.",
"reachedGoldToGemCapQuantity": "Số lượng <%= quantity %> bạn yêu cầu vượt quá lượng bạn có thể mua ở tháng này (<%= convCap %>). Số lượng đầy đủ bạn có thể mua xuất hiện lại vào trong ba ngày đầu tiên của mỗi tháng. Cảm ơn vì đã đăng ký!",
"mysteryItem": "Exclusive monthly items",
@@ -175,5 +175,9 @@
"mysterySet202009": "Bộ Bướm đêm Kỳ diệu",
"organization": "Tổ chức",
"cancelSubInfoApple": "Vui lòng theo Hướng dẫn Chính thức của Apple để hủy gói đăng ký của bạn hoặc để xem ngày hủy bỏ nếu bạn đã hủy gói đăng ký rồi. Trang này không thể cho bạn biết nếu đăng ký của bạn đã bị hủy hay chưa.",
- "cancelSubInfoGoogle": "Vui lòng đi đến phần \"Tài khoản\" > \"Đăng ký\" của ứng dụng Google Play Store để hủy gói đăng ký của bạn hoặc để xem ngày hủy bỏ nếu bạn đã hủy gói đăng ký rồi. Trang này không thể cho bạn biết nếu đăng ký của bạn đã bị hủy hay chưa."
+ "cancelSubInfoGoogle": "Vui lòng đi đến phần \"Tài khoản\" > \"Đăng ký\" của ứng dụng Google Play Store để hủy gói đăng ký của bạn hoặc để xem ngày hủy bỏ nếu bạn đã hủy gói đăng ký rồi. Trang này không thể cho bạn biết nếu đăng ký của bạn đã bị hủy hay chưa.",
+ "howManyGemsPurchase": "Bạn muốn mua bao nhiêu viên ngọc?",
+ "howManyGemsSend": "Bạn muốn gửi bao nhiêu viên ngọc?",
+ "needToPurchaseGems": "Cần mua Ngọc làm quà tặng?",
+ "wantToSendOwnGems": "Bạn muốn gửi Ngọc của riêng bạn?"
}
diff --git a/website/common/locales/zh/achievements.json b/website/common/locales/zh/achievements.json
index c936fe6a96..97a0670336 100644
--- a/website/common/locales/zh/achievements.json
+++ b/website/common/locales/zh/achievements.json
@@ -130,5 +130,13 @@
"achievementBirdsOfAFeather": "展翅高飞",
"achievementBirdsOfAFeatherText": "已孵化所有基础颜色的飞行宠物:飞猪、猫头鹰、鹦鹉、翼龙、狮鹫和猎鹰!",
"achievementBirdsOfAFeatherModalText": "你集齐了所有飞行宠物!",
- "achievementReptacularRumbleModalText": "你集齐了所有爬行宠物!"
+ "achievementReptacularRumbleModalText": "你集齐了所有爬行宠物!",
+ "achievementGroupsBeta2022": "互动的测试者",
+ "achievementGroupsBeta2022ModalText": "你和你的队通过测试和给反馈帮助Habitica!",
+ "achievementGroupsBeta2022Text": "你和你的队通过给了无价的反馈帮助Habitica测试。",
+ "achievementReptacularRumble": "爬虫壮的轰",
+ "achievementReptacularRumbleText": "已孵化所有基础颜色的爬虫宠物:鳄鱼、翼龙、蛇、三角龙、海龟、霸王龙、和迅猛龙!",
+ "achievementWoodlandWizard": "林地巫师",
+ "achievementWoodlandWizardModalText": "你集齐了所有森林宠物!",
+ "achievementWoodlandWizardText": "已孵化所有基础颜色的森林宠物:獾、熊、鹿、狐狸、青蛙、刺猬、猫头鹰、蜗牛、松鼠、和树芽!"
}
diff --git a/website/common/locales/zh/backgrounds.json b/website/common/locales/zh/backgrounds.json
index 4a954acb07..b2d57c860c 100644
--- a/website/common/locales/zh/backgrounds.json
+++ b/website/common/locales/zh/backgrounds.json
@@ -689,5 +689,40 @@
"backgroundBlossomingTreesNotes": "在开着鲜花的大树下嬉戏玩闹。",
"backgroundIridescentCloudsText": "彩虹之云",
"backgroundIridescentCloudsNotes": "漂浮在彩虹之云中。",
- "hideLockedBackgrounds": "隐藏未解锁的背景"
+ "hideLockedBackgrounds": "隐藏未解锁的背景",
+ "backgrounds052022": "第96组:2022年5月推出",
+ "backgroundCastleGateText": "城堡的大门",
+ "backgroundOnACastleWallText": "在城堡的墙上",
+ "backgroundOnACastleWallNotes": "在城堡的墙上看外。",
+ "backgroundCastleGateNotes": "在城堡的大门做警卫。",
+ "backgroundEnchantedMusicRoomText": "着魔的音乐房",
+ "backgroundEnchantedMusicRoomNotes": "在一间着魔的音乐房拉音乐。",
+ "backgrounds062022": "第97组:2022年6月推出",
+ "backgroundBeachWithDunesText": "有沙丘的海滩",
+ "backgroundBeachWithDunesNotes": "探索一片有沙丘的海滩。",
+ "backgroundMountainWaterfallText": "有瀑布的山",
+ "backgroundMountainWaterfallNotes": "欣赏一座有瀑布的山。",
+ "backgroundSailboatAtSunsetText": "在夕阳下的帆船",
+ "backgroundSailboatAtSunsetNotes": "欣赏在夕阳下的帆船的美丽。",
+ "backgrounds072022": "第98组:2022年7月推出",
+ "backgroundBioluminescentWavesNotes": "欣赏发光波浪的光。",
+ "backgroundBioluminescentWavesText": "发光波浪",
+ "backgroundUnderwaterCaveText": "在水下的洞穴",
+ "backgroundUnderwaterCaveNotes": "探索一个在水下的洞穴。",
+ "backgroundUnderwaterStatuesText": "在水下的雕像园",
+ "backgroundUnderwaterStatuesNotes": "在水下的雕像园试别眨眼。",
+ "backgroundRainbowEucalyptusText": "彩虹桉树",
+ "backgroundRainbowEucalyptusNotes": "欣赏一片彩虹桉树林。",
+ "backgroundMessyRoomText": "散乱房间",
+ "backgroundMessyRoomNotes": "收拾一间散乱房间。",
+ "backgroundByACampfireText": "在硬货旁边",
+ "backgrounds082022": "第99组:2022年8月推出",
+ "backgroundByACampfireNotes": "晒营火旁边的光。",
+ "backgrounds092022": "第100组:2022年9月推出",
+ "backgroundTheatreStageText": "剧场舞台",
+ "backgroundTheatreStageNotes": "在剧场舞台上表演。",
+ "backgroundAutumnPicnicText": "秋季野餐",
+ "backgroundAutumnPicnicNotes": "享受秋季野餐。",
+ "backgroundOldPhotoText": "老照片",
+ "backgroundOldPhotoNotes": "在老照片里摆好姿势。"
}
diff --git a/website/common/locales/zh/content.json b/website/common/locales/zh/content.json
index cc610e7e9b..e50a69853d 100644
--- a/website/common/locales/zh/content.json
+++ b/website/common/locales/zh/content.json
@@ -371,5 +371,6 @@
"hatchingPotionMoonglow": "月光",
"hatchingPotionSolarSystem": "太阳系",
"hatchingPotionOnyx": "玛瑙",
- "hatchingPotionVirtualPet": "电子宠物"
+ "hatchingPotionVirtualPet": "电子宠物",
+ "hatchingPotionPorcelain": "瓷器"
}
diff --git a/website/common/locales/zh/contrib.json b/website/common/locales/zh/contrib.json
index f410a3e9c3..22bd55f23a 100644
--- a/website/common/locales/zh/contrib.json
+++ b/website/common/locales/zh/contrib.json
@@ -53,5 +53,6 @@
"surveysSingle": "帮助过Habitica成长,通过填写一份问卷或在一次大型的测试提供帮助。谢谢你们!",
"surveysMultiple": "曾<%= count %>次帮助过Habitica成长,比如填一份调查问卷或参与了某次重要的内测或公测。谢谢你们!",
"blurbHallPatrons": "这里是赞助者的殿堂,我们纪念在Kickstarter众筹上支持Habitica的会员们。感谢他们帮助我们让Habitica诞生!",
- "blurbHallContributors": "这里是贡献者的殿堂,纪念在开源项目中对Habitica做出贡献的人们。无论是代码、图画、音乐、剧本,甚至只是一些帮助,他们得到了 宝石、独有装备以及 尊贵头衔。你也可以为Habitica做出贡献!查看更多。"
+ "blurbHallContributors": "这里是贡献者的殿堂,纪念在开源项目中对Habitica做出贡献的人们。无论是代码、图画、音乐、剧本,甚至只是一些帮助,他们得到了 宝石、独有装备以及 尊贵头衔。你也可以为Habitica做出贡献!查看更多。",
+ "noPrivAccess": "你没有必要的权限。"
}
diff --git a/website/common/locales/zh/faq.json b/website/common/locales/zh/faq.json
index 0609e20573..d0085ede89 100644
--- a/website/common/locales/zh/faq.json
+++ b/website/common/locales/zh/faq.json
@@ -1,10 +1,10 @@
{
"frequentlyAskedQuestions": "常见问题",
- "faqQuestion0": "我很迷惑。我在哪里能得到简介 ?",
- "iosFaqAnswer0": "首先,你要创建你每天要完成的任务。然后,当你在现实生活中完成这些任务时,在应用中清点它们,你就会得到经验值和金钱。金钱可以用来买装备和一些物品,也可以用来买奖励。经验可以使你的人物升级,并解锁宠物、技能、副本等内容。你可以在菜单>装扮角色中装扮你的角色。\n\n一些基本的交互方法:点击右上角的(+)添加任务。点击一个已经存在的任务去编辑它,左滑来删除它。你可以用左上角标签给任务排序,并通过点击清单气泡来增大和缩小任务清单。",
- "androidFaqAnswer0": "首先,你要创建你每天要完成的任务。然后,在现实生活中完成这些任务之后,在应用中点击完成,你就会得到对应的经验值和金钱。金币用于来买装备和物品,也可以用于买你自己定义的奖励。经验则用来升级人物,随着人物级别的上升,你可以解锁更多的宠物、技能、副本等内容。你可以在菜单>装扮角色中装扮你的形象。\n\n一些基本的操作:点击右上角的(+)添加任务。点击一个列表中的任务进行编辑,左滑删除。你可以用右上角标签给任务分类,并通过点击清单气泡来展开和收起任务清单。",
+ "faqQuestion0": "我很迷惑。我在哪里能得到介绍 ?",
+ "iosFaqAnswer0": "首先,你要创建你每天要完成的任务。然后,当你在现实生活中完成这些任务时,在应用中点击完成,你就会得到经验值和金钱。金钱可以用来买装备和一些物品,也可以用来买自己设定的奖励。经验可以使你的人物升级,并解锁宠物、技能、副本等内容。你可以在菜单->装扮角色中装扮你的角色。\n\n一些基本的操作:点击右上角的(+)添加任务。点击一个已经存在的任务去编辑它,左滑来删除它。你可以用左上角标签给任务排序,并通过点击清单气泡来展开或折叠任务清单。",
+ "androidFaqAnswer0": "首先,你要创建你每天要完成的任务。然后,当你在现实生活中完成这些任务时,在应用中点击完成,你就会得到经验值和金钱。金钱可以用来买装备和一些物品,也可以用来买自己设定的奖励。经验可以使你的人物升级,并解锁宠物、技能、副本等内容。你可以在菜单->装扮角色中装扮你的角色。\n\n一些基本的操作:点击右上角的(+)添加任务。点击一个已经存在的任务去编辑它,左滑来删除它。你可以用左上角标签给任务排序,并通过点击清单气泡来展开或折叠任务清单。",
"webFaqAnswer0": "首先,你要建立起你每天要完成的任务。然后,当你在现实生活中完成这些任务时,在应用中清点它们,你就会得到经验值和金钱。金钱可以用来买装备和一些物品,也可以用来买奖励。经验可以使你的人物升级,并解锁宠物、技能、副本等内容。更多内容,可以在[帮助 -> 新手教学](https://habitica.com/static/overview).查看详细的游戏入门。",
- "faqQuestion1": "怎样来建立一个任务?",
+ "faqQuestion1": "怎样来设置任务?",
"iosFaqAnswer1": "好习惯(有+号的那些)养成任务你能够在一天之内完成很多次,比如多吃蔬菜。坏习惯(带有-号的)则是你需要避免去做的,比如啃指甲。同时带有+和-号的任务表示某件事可以有好坏两个选择,比如走楼梯上楼或乘坐电梯。养成好习惯会奖励你经验值和金币,坏习惯则会减少生命值。\n\n每日任务是你每天都必须完成的事项,比如刷牙,或者检查你的邮件。可以通过点击每日任务编辑任务完成期限,如果在一个任务到期前你没能完成它,你的生命值将降低,注意,不要一次性加太多每日任务!\n\n待办任务就是你的待办项列表,完成一个待办任务可以获得金币和经验值,你不会因为待办任务损失生命值,可以点击编辑一个待办任务来为它添加完成期限。",
"androidFaqAnswer1": "好习惯(有+号的那些)养成任务你能够在一天之内完成很多次,比如多吃蔬菜。坏习惯(带有-号的)则是你需要避免去做的,比如啃指甲。同时带有+和-号的任务表示某件事可以有好坏两个选择,比如走楼梯上楼或乘坐电梯。养成好习惯会奖励你经验值和金币,坏习惯则会减少生命值。\n\n每日任务是你每天都必须完成的事项,比如刷牙,或者检查你的邮件。可以通过点击每日任务编辑任务完成期限,如果在一个任务到期前你没能完成它,你的生命值将降低,注意,不要一次性加太多每日任务!\n\n待办任务就是你的待办项列表,完成一个待办任务可以获得金币和经验值,你不会因为待办任务损失生命值,可以点击编辑一个待办任务来为它添加完成期限。",
"webFaqAnswer1": "你可以每天完成很多次良好的习惯(带有:heavy_plus_sign:的习惯),比如吃点蔬菜。同时,你也应该避免坏习惯(带有:heavy_minus_sign:的习惯)的发生,比如说啃手指甲。而同时带有 :heavy_plus_sign:和 :heavy_minus_sign:,说明这个习惯可能有好的方向,也有坏的方向,比如爬楼梯vs.坐电梯。养成良好的习惯可以给你带来金币和经验,而坏习惯则会减少你的生命。\n每日任务则是一些你每天都应该完成的事情,比如啥刷牙、检查邮件。你可以点击任务右上角的铅笔图标,来调整一个每日任务在周几会重复出现。如果你某天没有勾选对应的每日任务,你的角色就会收到对应的伤害。所以添加每日任务的时候,一定要三思。\n待办任务就是你的待办项列表,完成一个待办任务可以获得金币和经验值,你不会因为待办任务损失生命值,可以点击编辑一个待办任务来为它添加完成期限。",
@@ -54,5 +54,6 @@
"webFaqAnswer12": "世界Boss是出现在酒馆的特殊怪物。所有活跃的玩家都会自动参战,玩家们的完成的任务和技能都会对Boss造成伤害。你可以同时像平时那样开副本。你完成的任务和放的技能会同时被算入世界Boss以及你队伍副本的进度当中。世界Boss并不会对你或者你的号造成伤害。它会有一个怒气值,随着用户没完成的日常任务数量而增加。如果怒气槽满了,它会攻击一个本站的NPC并使这个NPC的形象发生变化。你可以前往维基了解更多关于[过去的世界Boss](https://habitica.fandom.com/zh/wiki/世界Boss)的信息。",
"iosFaqStillNeedHelp": "如果[Wiki FAQ](https://habitica.fandom.com/zh/wiki/FAQ)不能解决你的问题,请在酒馆聊天中咨询。进入方式:菜单 > 酒馆!我们很乐意为你提供帮助。",
"androidFaqStillNeedHelp": "如果[Wiki FAQ](https://habitica.fandom.com/zh/wiki/FAQ)不能解决你的问题,请在酒馆聊天中咨询。进入方式:菜单 > 酒馆!我们很乐意为你提供帮助。",
- "webFaqStillNeedHelp": "如果问题列表和[Wiki FAQ](https://habitica.fandom.com/zh/wiki/FAQ)不能解决你的问题,请在[Habitica 帮助公会](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)中咨询。我们很乐意为你提供帮助。"
+ "webFaqStillNeedHelp": "如果问题列表和[Wiki FAQ](https://habitica.fandom.com/zh/wiki/FAQ)不能解决你的问题,请在[Habitica 帮助公会](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)中咨询。我们很乐意为你提供帮助。",
+ "faqQuestion13": "什么是团体计划?"
}
diff --git a/website/common/locales/zh/front.json b/website/common/locales/zh/front.json
index ed94646b40..1052f68e10 100644
--- a/website/common/locales/zh/front.json
+++ b/website/common/locales/zh/front.json
@@ -1,5 +1,5 @@
{
- "FAQ": "常问问题",
+ "FAQ": "常见问题",
"termsAndAgreement": "点击下面的按钮,即表示你已阅读并同意 服务条款 和隐私政策。",
"accept1Terms": "我同意接受",
"accept2Terms": "和",
diff --git a/website/common/locales/zh/gear.json b/website/common/locales/zh/gear.json
index 9d3670106f..6db98d4f82 100644
--- a/website/common/locales/zh/gear.json
+++ b/website/common/locales/zh/gear.json
@@ -1175,7 +1175,7 @@
"headArmoireRedHairbowText": "红色的蝴蝶结头饰",
"headArmoireRedHairbowNotes": "戴上这款红色蝴蝶结发饰,你将更有力,坚韧,还会变聪明哦!增加<%= str %>点力量,<%= con %>点体质,以及<%= int %>点智力。魔法衣橱:红色蝴蝶结发饰套装(1/2)。",
"headArmoireVioletFloppyHatText": "蓝紫色软帽",
- "headArmoireVioletFloppyHatNotes": "这顶简单的帽子绣着许多咒语,使它拥有了愉快的紫色。增加感知<%= per %>点,智力<%= int %>点,还有体质<%= con %>点。魔法衣橱:独立装备。",
+ "headArmoireVioletFloppyHatNotes": "这顶简单的帽子绣着许多咒语,使它拥有了愉快的紫色。增加感知<%= per %>点,智力<%= int %>点,还有体质<%= con %>点。魔法衣橱:紫家居服套装(1/3)。",
"headArmoireGladiatorHelmText": "角斗士头盔",
"headArmoireGladiatorHelmNotes": "成为一个角斗士不仅要强壮,还要敏捷…增加<%= int %>点智力和<%= per %>点感知。魔法衣橱:角斗士套装(1/3)。",
"headArmoireRancherHatText": "牧场主帽子",
@@ -2567,7 +2567,7 @@
"headAccessoryMystery202203Notes": "需要特别的加速吗? 这首饰上的小小装饰翅膀可比它们看起来厉害多了!没有属性加成。2022年3月订阅者物品。",
"backMystery202203Text": "无畏蜻蜓双翼",
"backMystery202203Notes": "带上这双闪闪发光的翅膀,你将比天空中所有的生物都要耀眼。没有属性加成。2022年3月订阅者物品。",
- "armorArmoireSoftVioletSuitNotes": "紫色是奢华的颜色。完成每日任务后需要美美地放松放松。体质和力量各增加<%=attrs%>点。魔法衣橱:紫家居服(2/3)。",
+ "armorArmoireSoftVioletSuitNotes": "紫色是奢华的颜色。完成每日任务后需要美美地放松放松。体质和力量各增加<%=attrs%>点。魔法衣橱:紫家居服套装(2/3)。",
"armorArmoireSoftVioletSuitText": "柔软的紫色套装",
"armorSpecialBirthday2022Text": "荒谬派对长袍",
"armorSpecialBirthday2022Notes": "生日快乐,Habitica!穿上这件荒谬的派对长袍,庆祝这美妙的一天吧。没有属性加成。",
@@ -2581,5 +2581,122 @@
"weaponArmoireGreenKiteText": "绿色风筝",
"weaponArmoireOrangeKiteText": "橙色风筝",
"weaponArmoirePinkKiteText": "粉色风筝",
- "weaponArmoireYellowKiteText": "黄色风筝"
+ "weaponArmoireYellowKiteText": "黄色风筝",
+ "weaponSpecialSummer2022WarriorText": "洄旋风",
+ "weaponSpecialSummer2022RogueText": "螃蟹爪",
+ "weaponSpecialSummer2022RogueNotes": "如果你在处境窘迫,不要犹豫显示这些强悍的爪!增加<%= str %>点力量。2022年夏季限定版装备。",
+ "weaponSpecialSummer2022WarriorNotes": "它旋转!它重定向!它带来风暴!增加<%= str %>点力量。2022年夏季限定版装备。",
+ "weaponSpecialSummer2022MageText": "蝠鲼法杖",
+ "weaponSpecialSummer2022HealerText": "有益的泡",
+ "weaponSpecialSummer2022MageNotes": "用这个法杖旋一下就会神奇的清前面的水。增加<%= int %>点智力和<%= per %>点感知。2022年夏季限定版装备。",
+ "weaponSpecialSummer2022HealerNotes": "这些泡以满意的啪释放/治愈术!增加<%= int %>点智力。2022年夏季限定版装备。",
+ "weaponSpecialSpring2022WarriorText": "反转的伞",
+ "weaponSpecialSpring2022RogueNotes": "一个闪亮!好闪亮和油光和漂亮和好看和都是你的!增加<%= str %>点力量。2022年春季限定版装备。",
+ "weaponSpecialSpring2022MageText": "连翘法杖",
+ "weaponSpecialSpring2022MageNotes": "这些明黄的花准备好了引导你的有力春天魔法。增加<%= int %>点智力和<%= per %>点感知。2022年春季限定版装备。",
+ "weaponSpecialSpring2022HealerText": "橄榄石魔杖",
+ "weaponSpecialSpring2022HealerNotes": "用这个魔杖用橄榄石的治愈性,来安也罢,正能量也罢,仁心也罢。增加<%= int %>点智力。2022年春季限定版装备。",
+ "weaponArmoireGardenersWateringCanText": "喷水壶",
+ "weaponArmoireGardenersWateringCanNotes": "你没有水时不能做很多!这个魔法的喷水壶总有水。增加<%= int %>点智力。魔法衣橱:园丁套装(4/4)。",
+ "weaponArmoireHuntingHornText": "狩猎号角",
+ "weaponArmoireHuntingHornNotes": "嘟嘟!嘟!嘟!吹这个号角会聚集请你的队伍探险还是副本。增加<%= str %>点力量和<%= int %>点智力。魔法衣橱:乐器套装 (1/3)",
+ "weaponArmoirePinkKiteNotes": "你的风筝在空中跳、旋舞、和腾空 — 真独特!增加全属性各<%= attrs %>点。魔法衣橱:风筝套装 (4/5)",
+ "weaponArmoireYellowKiteNotes": "看看你的愉快的风筝俯冲和转向!增加全属性各<%= attrs %>点。魔法衣橱:风筝套装 (5/5)",
+ "weaponArmoireBlueKiteNotes": "在高高空中,你能让你的风筝做怎么样的花样?增加全属性各<%= attrs %>点。魔法衣橱:风筝套装(1/5)",
+ "weaponArmoireOrangeKiteNotes": "我们看见有日出和日落颜色的风筝能多么高吧!增加全属性各<%= attrs %>点。魔法衣橱:风筝套装(3/5)",
+ "weaponArmoireGreenKiteNotes": "你没有看过更惊艳的有这些黄色和绿色的深浅的风筝。增加全属性各<%= attrs %>点。魔法衣橱:风筝套装 (2/5)",
+ "armorSpecialSpring2022RogueText": "喜鹊服装",
+ "armorSpecialSpring2022RogueNotes": "因为你的羽有虹彩金属蓝灰色和浅色补丁,所以你会是春季狂欢节的最好飞起的朋友!增加<%= per %>点感知。2022年春季限定版装备。",
+ "armorSpecialSpring2022WarriorText": "雨衣",
+ "armorSpecialSpring2022WarriorNotes": "这个雨衣和靴子非常强大,如果你在下雨时唱还是踩每一个水坑,你还会是很温暖和干!增加<%= con %>点体质。2022年春季限定版装备。",
+ "armorSpecialSpring2022MageText": "连翘长袍",
+ "armorSpecialSummer2022RogueText": "螃蟹护甲",
+ "armorSpecialSummer2022RogueNotes": "在海边最好用随便的窜。增加<%= per %>点感知。2022年夏季限定版装备。",
+ "armorSpecialSpring2022HealerText": "橄榄石护甲",
+ "armorSpecialSpring2022HealerNotes": "如果你穿这个绿色的宝石服,你就不会怕也不会有噩梦!增加<%= con %>点体质。2022年春季限定版装备。",
+ "armorSpecialSpring2022MageNotes": "用这个有连线瓣的长袍表示你准备开始季节!增加<%= int %>点智力。2022年春季限定版装备。",
+ "armorSpecialSummer2022WarriorNotes": "你用这个转圈和洄的空气云雾圆柱包围自己的时候准备含水的战斗吧!增加<%= con %>点体质。2022年夏季限定版装备。",
+ "armorSpecialSummer2022WarriorText": "水龙卷护甲",
+ "headMystery202207Text": "果冻水母头盔",
+ "armorSpecialSummer2022MageText": "蝠鲼护甲",
+ "armorMystery202207Text": "果冻水母护甲",
+ "armorArmoireGardenersOverallsText": "园丁工作裤",
+ "armorArmoireGardenersOverallsNotes": "你穿这件耐久的工作裤的时候,别怕在尘垢工作。增加<%= con %>点体质。魔法衣橱:园丁套装(1/4)。",
+ "armorArmoireFancyPirateSuitNotes": "你整理你船的藏书还是跟你的船员讨论的时候要穿这个华丽外套。增加体质、智力各<%= attrs %>点。魔法衣橱:华丽海盗套装(1/3)。",
+ "armorMystery202204Notes": "现在好像做你的任务也需要按这些奇怪的按钮!它们会做什么?没有属性加成。2022年4月订阅者物品。",
+ "armorArmoireStrawRaincoatText": "稻草雨衣",
+ "armorArmoireStrawRaincoatNotes": "这件织的稻草斗篷会保持你没有水,你在做你的副本时也会保持你的护甲不会生锈。就别接近一根蜡烛!增加<%= con %>点体质。魔法衣橱:稻草雨衣套装 (1/2)。",
+ "armorSpecialSummer2022HealerText": "神仙鱼尾巴",
+ "armorArmoireFancyPirateSuitText": "华丽海盗外套",
+ "armorSpecialSummer2022MageNotes": "你穿这个护甲的时候,就会很轻松地滑翔过你的事情,和蝠鲼滑翔过水真想。增加<%= int %>点智力。2022年夏季限定版装备。",
+ "armorSpecialSummer2022HealerNotes": "在礁用你的五颜六色的鳍滑和帮助要休息和治愈的人。增加<%= con %>点体质。2022年夏季限定版装备。",
+ "armorMystery202204Text": "电子冒险者胶囊",
+ "armorMystery202207Notes": "这个护甲会让你看起来光彩照人和胶状。没有属性加成。2022年7月订阅者物品。",
+ "headSpecialSpring2022RogueNotes": "你戴这个面具会跟喜鹊的智慧一样。你可能也会跟喜鹊呼啸、嘟噜、和模仿的能力一样。增加<%= per %>点感知。2022年夏季限定版装备。",
+ "headSpecialSummer2022WarriorNotes": "你在这个强烈漩涡思考自己的时候引导水的力量。增加<%= str %>点力量。2022年夏季限定版装备。",
+ "headSpecialSummer2022RogueText": "螃蟹头盔",
+ "headSpecialSummer2022WarriorText": "水龙卷头盔",
+ "headSpecialSummer2022HealerNotes": "你说鱼没有耳朵吗?就等你告诉它们的时候。增加<%= int %>点智力。2022年夏季限定版装备。",
+ "headSpecialSummer2022HealerText": "神仙鱼耳鳍",
+ "headSpecialSpring2022HealerText": "橄榄石头盔",
+ "headSpecialSpring2022HealerNotes": "你做你的任务的时候,这顶奇怪的头盔保持你的隐私。增加<%= int %>点智力。2022年春季限定版装备。",
+ "headSpecialSpring2022WarriorText": "雨衣头罩",
+ "headSpecialSummer2022RogueNotes": "没有时间可以是倔的,我们在这里“乔“祝这个夏季最热的甲壳类双关语。增加<%= per %>点感知。2022年夏季限定版装备。",
+ "headSpecialSummer2022MageText": "蝠鲼头盔",
+ "headSpecialSummer2022MageNotes": "你潜你的任务还是最低的水时保持保护你的头。增加<%= per %>点感知。2022年夏季限定版装备。",
+ "headSpecialSpring2022WarriorNotes": "啧啧,好像会下雨!要保持干燥就高地站和拉起你的头罩。增加<%= str %>点力量。2022年夏季限定版装备。",
+ "headSpecialSpring2022MageNotes": "用这个保护性的倒花瓣头盔暴雨时保持干燥。增加<%= per %>点感知。2022年夏季限定版装备。",
+ "headSpecialSpring2022MageText": "连翘头盔",
+ "headSpecialSpring2022RogueText": "喜鹊面具",
+ "headMystery202206Text": "海精灵头饰",
+ "headMystery202206Notes": "这顶头饰的蓝珍珠发放给你压水术。只用做好用的事吧!没有属性加成。2022年6月订阅者物品。",
+ "headArmoireGardenersSunHatText": "园丁遮阳帽",
+ "headMystery202207Notes": "你需要搭把手吗?几十条发光触手可以吗?没有属性加成。2022年7月订阅者物品。",
+ "headArmoireGardenersSunHatNotes": "你穿这顶宽边帽子的时候,太阳的光不会照亮你的眼睛。增加<%= per %>点感知。魔法衣橱:园丁套装(2/4)。",
+ "headArmoireStrawRainHatNotes": "你穿这顶锥形的抗水帽子的时候会能看每一个绊脚石。增加<%= per %>点感知。魔法衣橱:稻草雨衣套装 (2/2)。",
+ "headArmoireFancyPirateHatText": "华丽海盗帽子",
+ "headArmoireStrawRainHatText": "稻草雨帽",
+ "shieldSpecialSpring2022WarriorNotes": "你有没有那一天就好像一朵雨云在跟随你?那,感到是幸运吧,因为你的脚下就会快有最漂亮的花!增加<%= con %>点体质。2022年春季限定版装备。",
+ "shieldSpecialSpring2022HealerNotes": "由上地幔的注视形成的,这面盾会经得起如何打击。增加<%= con %>点体质。2022年春季限定版装备。",
+ "shieldSpecialSummer2022HealerNotes": "在海礁用柔和水波发出恢复魔法。增加<%= con %>点体质。2022年夏季限定版装备。",
+ "shieldSpecialSpring2022HealerText": "橄榄石盾",
+ "shieldSpecialSpring2022WarriorText": "雨云",
+ "shieldSpecialSummer2022WarriorText": "好斗鲨鱼",
+ "shieldSpecialSummer2022HealerText": "补救水波",
+ "headArmoireFancyPirateHatNotes": "你在你的船板喝茶的时候会免受太阳和上空的海鸥。增加<%= per %>点感知。魔法衣橱:华丽海盗套装(2/3)。",
+ "shieldSpecialSummer2022WarriorNotes": "它咬!它噬!它也绝不停止!增加<%= con %>点体质。2022年夏季限定版装备。",
+ "weaponArmoirePushBroomText": "推扫帚",
+ "weaponArmoireFeatherDusterText": "羽毛掸",
+ "weaponArmoirePushBroomNotes": "你探险的时候戴这个真理工具会总能扫一个有烟的门阶还是腾有蛛网的角落。增加力量和智力各<%= attrs %>点。魔法衣橱:清洁用品套装 (1/3)",
+ "weaponArmoireFeatherDusterNotes": "让这些华丽羽毛满你的老东西围飞,它们会亮如新。就谨防扰乱的灰尘,你不要打喷嚏啊!增加体质、感知各<%= attrs %>点。魔法衣橱:清洁用品套装(2/3)",
+ "shieldArmoireDustpanText": "簸箕",
+ "eyewearMystery202204BText": "电子脸",
+ "eyewearMystery202204BNotes": "你今天觉得怎么样?用这些好玩的荧屏表达你自己。没有属性加成。2022年4月订阅者物品。",
+ "shieldArmoireSoftVioletPillowText": "松软天鹅绒枕头",
+ "shieldArmoireSoftVioletPillowNotes": "一个聪明的战士任何征战会装枕头。保护你自己免受迟滞诱发的恐慌…… 即使就在睡觉。增加<%= int %>点智力。魔法衣橱:紫家居服套装(3/3)。",
+ "shieldArmoireGardenersSpadeText": "园丁铲",
+ "shieldArmoireGardenersSpadeNotes": "如果你在园里开掘、找地下宝藏、还是修暗道,这个可信任的铲总在你的旁边。增加<%= str %>点力量。魔法衣橱:园丁套装(3/4)。",
+ "shieldArmoireSpanishGuitarNotes": "叮咚!叮咚!叮叮咚咚!将弹这把吉他集会你的队伍去一个音乐会还是典礼。增加<%= per %>点感知和<%= int %>点智力。魔法衣橱:乐器套装1 (2/3)",
+ "shieldArmoireSnareDrumText": "小鼓",
+ "shieldArmoireSnareDrumNotes": "嗒嗒嗒!将打这面鼓集会你的队伍去游行还是行军打仗。增加<%= con %>点体质和<%= int %>点智力。魔法衣橱:乐器套装1 (3/3)",
+ "shieldArmoireSpanishGuitarText": "西班牙吉他",
+ "shieldArmoireDustpanNotes": "你每次打扫有这个簸箕身边。对它使用消失的咒语,就不会找一个注入它的垃圾桶。增加智力和体质各<%= attrs %>点。魔法衣橱:清洁用品套装(3/3)。",
+ "eyewearMystery202204AText": "电子脸",
+ "eyewearMystery202204ANotes": "你今天觉得怎么样?用这些好玩的荧屏表达你自己。没有属性加成。2022年4月订阅者物品。",
+ "shieldArmoireTreasureMapText": "藏宝图",
+ "shieldArmoireTreasureMapNotes": "X是要去的地方!你遵循这张好用的图找传奇藏宝不知道会找到什么:黄金、首饰、陈迹、或者一颗橙化石?增加力量和智力各<%= attrs %>点。魔法衣橱:华丽海盗套装(3/3)。",
+ "backMystery202206Text": "海精灵翅膀",
+ "backMystery202206Notes": "由水和波浪组成的诙翅膀!没有属性加成。2022年6月订阅者物品。",
+ "eyewearMystery202208Text": "闪亮眼睛",
+ "headMystery202208Text": "活泼马尾",
+ "headMystery202208Notes": "享受炫耀这丰盈蓬松的头发 — 迫不得已的时候也可以是一根鞭子!没有属性加成。2022年8月订阅者物品。",
+ "eyewearMystery202208Notes": "用这双可爱到令人发指的眼睛让你的敌人产生一种虚假的安全感。没有属性加成。2022年8月订阅者物品。",
+ "weaponMystery202209Text": "魔法手册",
+ "weaponMystery202209Notes": "这本书将会指导你完成魔术的制作。没有属性加成。2022年9月订阅者物品。",
+ "shieldMystery202209Notes": "你必须大量的阅读书籍才能完成魔法的学习,但这个你会享受这个过程。没有属性加成。2022年9月订阅者物品。",
+ "eyewearArmoireComedyMaskNotes": "哦呼!这是一个为快乐心灵制作的古朴面具,让我们在舞台上表演,玩乐,表现出快乐和欢笑吧!增加<%= con %>点体质。魔法衣橱:剧院面具套装(1/2)。",
+ "eyewearArmoireTragedyMaskText": "悲剧面具",
+ "eyewearArmoireTragedyMaskNotes": "呜啊!为可怜的表演者戴上沉重的面具,在舞台上昂首阔步,痛苦,悲伤,表达出所有的难过吧。增加<%= int %>点智力。魔法衣橱:剧院面具套装(2/2)。",
+ "shieldMystery202209Text": "山脉魔法书",
+ "eyewearArmoireComedyMaskText": "喜剧面具"
}
diff --git a/website/common/locales/zh/generic.json b/website/common/locales/zh/generic.json
index 18c3ca5c96..9c7048dfb2 100644
--- a/website/common/locales/zh/generic.json
+++ b/website/common/locales/zh/generic.json
@@ -59,7 +59,7 @@
"habiticaDay": "Habitica命名日",
"habiticaDaySingularText": "欢庆Habitica的命名日!衷心感谢您成为一位了不起的玩家。",
"habiticaDayPluralText": "庆祝第 <%= count %> 次命名日!谢谢你始终陪伴我们。",
- "achievementDilatory": "拖延症的救星",
+ "achievementDilatory": "拖拉城的救星",
"achievementDilatoryText": "2014年夏季嬉水节事件中协助打败了恐怖的拖延巨龙!",
"costumeContest": "装扮比赛",
"costumeContestText": "已参加了Habitica万圣节活动的装扮比赛。在blog.habitrpg.com查看一些了不起的作品吧!",
@@ -174,7 +174,7 @@
"health_wellness": "健康与保健",
"self_care": "自我照顾",
"habitica_official": "Habitica官方",
- "academics": "学者",
+ "academics": "学业",
"advocacy_causes": "倡议和事业",
"entertainment": "娱乐",
"finance": "理财",
@@ -204,7 +204,7 @@
"onboardingAchievs": "到职成就",
"askQuestion": "问个问题",
"reportBugHeaderDescribe": "请详述您所面临的问题,我们的团队将会尽快处理并给予回复。",
- "reportEmailText": "这将仅用于答复您关于该问题有关的信息。",
+ "reportEmailText": "这将仅用于答复你关于该问题有关的信息。",
"reportEmailPlaceholder": "您的电子邮件",
"reportEmailError": "请提供有效的电子邮件",
"reportDescriptionPlaceholder": "请在此详细描述问题内容",
diff --git a/website/common/locales/zh/groups.json b/website/common/locales/zh/groups.json
index 619a5f3618..cd8e25df2b 100644
--- a/website/common/locales/zh/groups.json
+++ b/website/common/locales/zh/groups.json
@@ -1,7 +1,7 @@
{
"tavern": "在酒馆里闲谈",
"tavernChat": "酒馆",
- "innCheckOutBanner": "你已入住酒馆。未完成的每日任务不会对你造成伤害,但已完成的任务也不会帮你在副本中取得进展。",
+ "innCheckOutBanner": "你已入住客栈。未完成的每日任务不会对你造成伤害,但已完成的任务也不会帮你在副本中取得进展。",
"innCheckOutBannerShort": "你现在入住了酒馆。",
"resumeDamage": "继续伤害",
"helpfulLinks": "有帮助的链接",
@@ -12,7 +12,7 @@
"askAQuestion": "问个问题",
"askQuestionGuild": "请教问题(Habitica帮助公会)",
"contributing": "作出贡献",
- "faq": "常问问题",
+ "faq": "常见问题",
"tutorial": "教学",
"glossary": "词汇表",
"wiki": "维基",
@@ -166,7 +166,7 @@
"assignedToUser": "已被分配给<%- userName %>",
"assignedToMembers": "已被分配给<%= userCount %> members个会员",
"assignedToYouAndMembers": "已被分配给你和<%= userCount %>个会员",
- "youAreAssigned": "你被分配這個任务",
+ "youAreAssigned": "分配予你",
"taskIsUnassigned": "這個任务還沒有被分配",
"confirmUnClaim": "你肯定你要放棄這個任务?",
"confirmNeedsWork": "您确定要将此任务标记为需要处理吗?",
@@ -378,5 +378,7 @@
"joinParty": "加入队伍",
"editGuild": "编辑公会",
"editParty": "编辑队伍",
- "leaveGuild": "离开公会"
+ "leaveGuild": "离开公会",
+ "chatTemporarilyUnavailable": "现在聊天室是暂时不能用的。请稍后再试。",
+ "sendGiftTotal": "总计:"
}
diff --git a/website/common/locales/zh/limited.json b/website/common/locales/zh/limited.json
index 0391ac33b2..37870b24b4 100644
--- a/website/common/locales/zh/limited.json
+++ b/website/common/locales/zh/limited.json
@@ -131,13 +131,13 @@
"winter2019WinterStarSet": "冬夜闪耀(医者)",
"winter2019PoinsettiaSet": "热情似火的圣诞花(盗贼)",
"eventAvailability": "在<%= date(locale) %>前可购买。",
- "dateEndMarch": "4月30日",
- "dateEndApril": "4月19日",
+ "dateEndMarch": "3月31日",
+ "dateEndApril": "4月30日",
"dateEndMay": "5月31日",
- "dateEndJune": "6月14日",
+ "dateEndJune": "6月30日",
"dateEndJuly": "7月31日",
"dateEndAugust": "8月31日",
- "dateEndSeptember": "9月21日",
+ "dateEndSeptember": "9月30日",
"dateEndOctober": "10月31日",
"dateEndNovember": "11月30日",
"dateEndJanuary": "1月31日",
@@ -221,5 +221,13 @@
"spring2022RainstormWarriorSet": "暴风雨(战士)",
"spring2022ForsythiaMageSet": "金钱花(法师)",
"spring2022PeridotHealerSet": "橄榄石(医者)",
- "aprilYYYY": "<%= year %>年四月"
+ "aprilYYYY": "<%= year %>年四月",
+ "summer2022CrabRogueSet": "螃蟹 (盗贼)",
+ "summer2022WaterspoutWarriorSet": "水龙卷 (战士)",
+ "summer2022MantaRayMageSet": "蝠鲼(法师)",
+ "summer2022AngelfishHealerSet": "神仙鱼(医者)",
+ "dateEndDecember": "12月31号",
+ "februaryYYYY": "2月 <%= year %>",
+ "octoberYYYY": "10月 <%= year %>",
+ "julyYYYY": "7月 <%= year %>"
}
diff --git a/website/common/locales/zh/npc.json b/website/common/locales/zh/npc.json
index 954aac7df3..aa248fc071 100644
--- a/website/common/locales/zh/npc.json
+++ b/website/common/locales/zh/npc.json
@@ -16,10 +16,10 @@
"mattBoch": "Matt Boch",
"mattBochText1": "欢迎来到马厩!我是驯兽师Matt。每当你完成任务,你会有机会获得宠物蛋和孵化药水,以此来孵化宠物。当你在市场上购买了宠物蛋,它会出现在这里!点击一只宠物,它会显示在你的角色形象中。如果你喂它们你找的宠物食物,它们就会成长为更有力量的坐骑。",
"welcomeToTavern": "欢迎来到酒馆!",
- "sleepDescription": "需要休息吗?来逛逛Daniel的酒店,当你遇到困难时,能暂停Habitica的游戏机制:",
+ "sleepDescription": "需要休息吗?来逛逛Daniel的客栈,当你遇到困难时,能暂停Habitica的游戏机制:",
"sleepBullet1": "错过每日任务不会对你造成伤害",
- "sleepBullet2": "任务不会失去连击数",
- "sleepBullet3": "Boss不会因你错过每日任务而造成伤害",
+ "sleepBullet2": "您的任务连胜和习惯计数器不会重置",
+ "sleepBullet3": "在您退出客栈之前,您对副本boss的伤害和找到的手机项目将会一直保持等待状态",
"sleepBullet4": "结算前这里会预测你对boss造成的伤害以及收集到的物品数量",
"pauseDailies": "暂停伤害",
"unpauseDailies": "解除暂停",
diff --git a/website/common/locales/zh/questscontent.json b/website/common/locales/zh/questscontent.json
index 56023a478b..6b0783f65e 100644
--- a/website/common/locales/zh/questscontent.json
+++ b/website/common/locales/zh/questscontent.json
@@ -60,7 +60,7 @@
"questSpiderUnlockText": "在市场中解锁蜘蛛蛋以购买",
"questGroupVice": "恶习之龙",
"questVice1Text": "恶习之龙,第1部:逃出恶习之龙的控制",
- "questVice1Notes": "传说中Habitica的山里有一个可怕的恶魔,它的现身即会摧毁这片土地上英雄的意志,使他们染上恶习,变得懒惰!这个怪兽有着强大的力量,由恶习的暗影组成,化身为一条奸诈的暗影巨龙——恶习之龙。勇敢的Habitica居民,请站出来,彻底击败这个邪恶的怪物。但是,只有你相信自己能抵抗那强大的业力,才能做到。
恶习之龙,第1部:
如果你落入它的控制,你还怎么和他战斗?不要成为懒惰和恶习的牺牲品!努力与巨龙战斗吧,克服他的黑暗之力,祓除他加诸于你的控制!
",
+ "questVice1Notes": "传说中Habitica的山里有一个可怕的恶魔,它的现身即会摧毁这片土地上英雄的意志,使他们染上恶习,变得懒惰!这个怪兽有着强大的力量,由恶习的暗影组成,化身为一条奸诈的暗影巨龙——恶习之龙。勇敢的Habitica居民,请站出来,彻底击败这个邪恶的怪物。但是,只有你相信自己能抵抗那强大的业力,才能做到。
如果你落入它的控制,你还怎么和他战斗?不要成为懒惰和恶习的牺牲品!努力与巨龙战斗吧,克服他的黑暗之力,祓除他加诸于你的控制!",
"questVice1Boss": "恶习的阴影",
"questVice1Completion": "当你祓除恶习的影响,你感到一股前所未闻的力量回到了你身上。恭喜你!但一个更可怕的敌人在等待着……",
"questVice1DropVice2Quest": "恶习之龙,第2部(卷轴)",
@@ -604,7 +604,7 @@
"cuddleBuddiesText": "“拥抱朋友”副本集",
"cuddleBuddiesNotes": "包括“杀人兔”,“恶毒的雪貂”,“豚鼠团伙”。3月31日前可购买。",
"aquaticAmigosText": "“水生生物”副本集",
- "aquaticAmigosNotes": "包括“魔法蝾螈”、“未完成海妖”和“章鱼克苏鲁的呼唤”。8月31日前可购买。",
+ "aquaticAmigosNotes": "包括“魔法蝾螈”、“未完成海妖”和“章鱼克苏鲁的呼唤”。6月30日前可购买。",
"questSeaSerpentText": "深度危险:海蛇冲撞!",
"questSeaSerpentNotes": "你很庆幸已经完成了这么多次连击——是时候来一次旅行,去围观海马赛跑。你在勤勉码头搭上了一班潜艇,前往拖拉城。但刚准备下潜,潜艇就被什么东西猛地撞了一下,里面的乘客们跌了个东倒西歪。@AriesFaries 叫了一声:“怎么回事啊?”
你向身旁的舷窗看去,震惊地看见一堵墙一样的巨大身躯覆盖着闪亮的鳞片,从窗外经过。“海蛇!”船长@Witticaster 的声音从对讲机里传来,“坐稳扶好,它又过来了!”你紧张地抓住了座椅的扶手,还没来得及完成的任务像走马灯一般闪过你的脑海。“也许如果我们一起努力完成它们,”你想到,“我们就能把这条海蛇引走!”",
"questSeaSerpentCompletion": "拼尽全力,用完成的任务糊了海蛇一脸,它终于撤退,消失在深渊之中。你终于到达了拖拉城,不由得松了口气,然后就注意到@*~Seraphina~ 拿着3个半透明的蛋走了过来。“这是你应得的,”她说,“你懂得怎么处理这些海蛇!”你接过宠物蛋,对天发誓你要保持完成任务的决心,保证不会再陷入这种境地。",
@@ -652,7 +652,7 @@
"questSilverUnlockText": "在市场中解锁银孵化药水以购买",
"questSilverDropSilverPotion": "银孵化药水",
"delightfulDinosText": "“愉快的恐龙”副本集",
- "delightfulDinosNotes": "包含“翼龙”,“跺脚的三角龙”,以及“出土恐龙化石”副本。11月30日前有效。",
+ "delightfulDinosNotes": "包含“翼龙”,“跺脚的三角龙”,以及“出土恐龙化石”副本。5月31日前有效。",
"questRobotText": "神奇的机械奇迹!",
"questAmberText": "琥珀联盟",
"questAmberDropAmberPotion": "琥珀孵化药水",
@@ -747,7 +747,7 @@
"questOnyxCompletion": "你进入黑暗裂缝。生活在那里的螳螂虾飞快地跑开,它们似乎很害怕你。然而,它们又很快地带着小的彩色球体回来了。你意识到这些是其他人想要的宝物!你把每种类型的宝物都装进口袋里,向虾子们告别。然后回到船边,其他人帮助你上船。
“你去哪里了?”@Vikte惊呼。作为回应,你向他们展示了你收集的宝物。
“这些材料可以制作玛瑙魔法孵化药水!”,@aspiring_advocate兴奋地说,你开始往岸上走去。
“也就是说......我们可以孵化玛瑙宠物!”@starsystemic笑着说。\"我们就说了这会很有趣吧?\"
你以微笑作为回应,为新宠物的到来感到兴奋,并做好准备完成任务!",
"questVirtualPetDropVirtualPetPotion": "电子宠物孵化药水",
"questVirtualPetUnlockText": "在市场上解锁电子宠物孵化药水以购买",
- "questVirtualPetRageDescription": "如果你没有完成每日任务,怒气值会增加。当怒气槽攒满,Wotchiman会减少队伍积累的待定伤害!",
+ "questVirtualPetRageDescription": "如果你没有完成每日任务,怒气值会增加。当怒气槽攒满,Wotchimon会减少队伍积累的待定伤害!",
"questVirtualPetBoss": "Wotchimon",
"questVirtualPetNotes": "正是宁静祥和的春日清晨时分,距离值得纪念的愚人节已经过去了整整一周。你和@Beffymaroo正呆在马厩里照看宠物们(它们对于变成电子宠物的那段时光仍旧有些困惑呢!)。
这时,你听见远处传来一阵隆隆声和哔哔声,起初还有些隐隐约约的声音,很快就变得越来越嘈杂了,好像有什么东西在靠近一样。很快,一个蛋形物体就出现在地平线上,随着它的不断逼近,哔哔声愈加震耳欲聋,你终于看清了它——那是一个巨型的电子宠物!
“哦不,”@Beffymaroo惊恐地大喊,“我看愚人又留下了一片烂摊子,这个大家伙显然就是他的杰作之一。看起来这个电子宠物很想要吸引我们的注意!”
电子宠物愤怒地“哔哔”叫着,挥舞着双臂,靠得越来越近了。",
"questVirtualPetCompletion": "你们小心翼翼地这里点点那里按按,一番操作下来,似乎满足了电子宠物难懂的需求。这下它可算是安静下来了,你可以看到它满屏幕都写着满足的神情。
突然,在一阵飘落的彩纸中,愚人提着满满一篮子奇怪的药水出现了,篮子里的药水正柔和地哔哔作响。
“你可来的真是时候啊,愚人,”@Beffymaroo苦笑着说,“我怀疑这个‘哔哔’叫的大家伙,你应该不陌生吧。”
“啊,呃,是的,”愚人窘迫地说,“真是太对不起了,谢谢你们俩帮忙照看Wotchimon!作为感谢,这些药水就送给你们好了,他们可以随时把你们的电子宠物重现出来!”
你没法百分百确定你能接受一天到晚的哔哔声,但电子宠物那么可爱,试试看又何妨呢!",
diff --git a/website/common/locales/zh/settings.json b/website/common/locales/zh/settings.json
index 940de23afd..722e500988 100644
--- a/website/common/locales/zh/settings.json
+++ b/website/common/locales/zh/settings.json
@@ -2,7 +2,7 @@
"settings": "设定",
"language": "语言",
"americanEnglishGovern": "不同语言描述不符时,以英语(American English)为准。",
- "helpWithTranslation": "你愿意协助Habitica的翻译工作吗?太好了!访问the Aspiring Linguists Guild!",
+ "helpWithTranslation": "你愿意协助Habitica的翻译工作吗?太好了!来加入the Aspiring Linguists Guild一起翻译吧!",
"stickyHeader": "顶部保持不动",
"newTaskEdit": "以编辑模式开启新任务",
"dailyDueDefaultView": "每日任务默认选中“待办”项",
@@ -11,10 +11,10 @@
"startAdvCollapsed": "默认隐藏高级选项",
"startAdvCollapsedPop": "选择这个选项后,展开编辑新任务的时候高级设置是隐藏的。",
"dontShowAgain": "下次不再出现",
- "suppressLevelUpModal": "在升级时不再出现弹出窗口",
- "suppressHatchPetModal": "在孵化宠物时不再出现弹出窗口",
- "suppressRaisePetModal": "在坐骑成熟时不再出现弹出窗口",
- "suppressStreakModal": "在连击时不再出现弹出窗口",
+ "suppressLevelUpModal": "升级时不出现弹窗提示",
+ "suppressHatchPetModal": "宠物孵化时不出现弹窗提示",
+ "suppressRaisePetModal": "宠物培养为坐骑时不再出现弹窗",
+ "suppressStreakModal": "连击达成时不再出现弹出窗口",
"showTour": "显示教程",
"showBailey": "显示Bailey",
"showBaileyPop": "显示街头公告员Bailey以查看过往新闻。",
@@ -55,7 +55,7 @@
"newUsername": "新用户名",
"dangerZone": "危险区域",
"resetText1": "警告!这会重置你角色的许多数值。强烈不建议你这样做。不过,在短暂的试玩一段时间后,进行重置或许会有所帮助。",
- "resetText2": "你将失去所有等级、金币和经验值。所有(除挑战任务外的)任务及其历史记录会被永久删除。你将会失去除订阅者神秘物品和免费活动特典系列装备外的一切其他装备。但是,你仍能通过努力重新把失去的物品买回来,包括所有限定版装备(你需要选择特定职业才能购买相应的职业限定装备)。你目前的职业、成就、宠物和坐骑将会保留。你也可以考虑使用重生球,这是个更安全的办法,同时能保留你的任务和装备。",
+ "resetText2": "你将失去所有等级、金币、经验值。除参与挑战带来的任务外,所有其他任务及其历史记录会被永久删除。你将会失去所有装备,但你仍可通过努力重新把它们买回来。包括所有限定版装备和订阅者神秘物品(你需要选择对应的职业才能购买职业限定装备)。你目前的职业、宠物和坐骑将保持不变。你也可以考虑使用重生球,这是个更安全的办法,同时能保留你的任务和装备。",
"deleteLocalAccountText": "你确定吗?这会永久地删除你的帐号,并且永远也无法恢复!如果您改变主意想再次用回Habitica,就需要注册一个新的帐号了。不管是已经花掉的还是在余额中的宝石都无法退费。如果你非常确定,在下面的文本框中输入你的密码。",
"deleteSocialAccountText": "你肯定吗?这样会永远删除你的账号,再也不能被恢复了!要是你想再用Habitica,你就要重新注册一个新的账号。账号里和用过的宝石是不会被退还的。如果你真的肯定,请在以下的文本框输入<%= magicWord %>。",
"API": "API/应用程序接口",
@@ -215,5 +215,9 @@
"nextHourglass": "下一个神秘沙漏",
"nextHourglassDescription": "订阅者会在每个月的前三天\n获得神秘沙漏。",
"dayStartAdjustment": "调整每日起始时间",
- "transaction_change_class": "更改职业"
+ "transaction_change_class": "更改职业",
+ "passwordSuccess": "密码更改成功",
+ "transaction_create_bank_challenge": "银行的挑战创建成功",
+ "transaction_admin_update_balance": "给了管理员",
+ "giftSubscriptionRateText": "$<%=price %> 美元 是 <%= months %> 月"
}
diff --git a/website/common/locales/zh/subscriber.json b/website/common/locales/zh/subscriber.json
index 14e1ebbbb9..312d6fefdd 100644
--- a/website/common/locales/zh/subscriber.json
+++ b/website/common/locales/zh/subscriber.json
@@ -204,5 +204,14 @@
"mysterySet202202": "绿松石双马尾套装",
"mysterySet202203": "无畏蜻蜓套装",
"mysterySet202204": "虚拟冒险者套装",
- "mysterySet202205": "夕暮翼龙套装"
+ "mysterySet202205": "夕暮翼龙套装",
+ "mysterySet202206": "海精灵组",
+ "howManyGemsSend": "你想要赠送几颗宝石?",
+ "needToPurchaseGems": "需要作为礼物购买宝石?",
+ "wantToSendOwnGems": "想要发自己的宝石?",
+ "sendAGift": "赠送礼物",
+ "howManyGemsPurchase": "你想要购买几颗宝石?",
+ "mysterySet202207": "果冻水母套装",
+ "mysterySet202208": "活泼马尾套装",
+ "mysterySet202209": "魔法学者套装"
}
diff --git a/website/common/locales/zh/tasks.json b/website/common/locales/zh/tasks.json
index d4145e3153..331774615b 100644
--- a/website/common/locales/zh/tasks.json
+++ b/website/common/locales/zh/tasks.json
@@ -87,7 +87,7 @@
"deleteTask": "删除这个任务",
"sureDelete": "你确定要删除这个任务吗?",
"streakCoins": "连击奖励!",
- "taskToTop": "移到最上方",
+ "taskToTop": "移到顶部",
"taskToBottom": "移到底部",
"taskAliasAlreadyUsed": "任务别名已经被用于另一个任务。",
"taskNotFound": "找不到任务。",
@@ -139,5 +139,6 @@
"resetCounter": "重置连击次数",
"counter": "次数",
"adjustCounter": "调整连击次数",
- "editTagsText": "编辑标签"
+ "editTagsText": "编辑标签",
+ "taskSummary": "<%= type %> 摘要"
}
diff --git a/website/common/locales/zh_HK/challenge.json b/website/common/locales/zh_HK/challenge.json
index c2e91ebd7b..a5394da161 100755
--- a/website/common/locales/zh_HK/challenge.json
+++ b/website/common/locales/zh_HK/challenge.json
@@ -1,6 +1,6 @@
{
"challenge": "挑戰",
- "challengeDetails": "Challenges are community events in which players compete and earn prizes by completing a group of related tasks.",
+ "challengeDetails": "挑戰是玩家透過完成一系列的相關任務參與競爭並贏得獎勵的社群活動。",
"brokenChaLink": "無效的挑戰鏈結",
"brokenTask": "無效的挑戰鏈結:這項任務原本是挑戰的一部分,但是被移除了。你想如何處置?",
"keepIt": "保留",
@@ -11,23 +11,23 @@
"challengeCompleted": "這個挑戰已被完成,贏家是<%- user %>!你想如何處置這項任務?",
"unsubChallenge": "無效的挑戰鏈結:這項任務本來是一個挑戰的一部分,可是你取消了該挑戰。你想如何處置這項任務?",
"challenges": "挑戰",
- "endDate": "Ends",
+ "endDate": "結束",
"selectWinner": "選擇一位贏家然後結束挑戰:",
"endChallenge": "結束挑戰",
"filter": "篩選條件",
"groups": "隊伍",
- "category": "Category",
+ "category": "類別",
"membership": "參與狀態",
- "ownership": "Ownership",
+ "ownership": "擁有者",
"participating": "參與中",
"createChallenge": "建立挑戰",
- "createChallengeAddTasks": "Add Challenge Tasks",
- "createChallengeCloneTasks": "Clone Challenge Tasks",
+ "createChallengeAddTasks": "新增挑戰任務",
+ "createChallengeCloneTasks": "複製挑戰任務",
"addTaskToChallenge": "Add Task",
"challengeTag": "標籤名",
"prize": "戰利品",
"prizePopTavern": "If someone can 'win' your challenge, you can award that winner a Gem prize. Max = number of gems you own. Note: This prize can't be changed later and Tavern challenges will not be refunded if the challenge is cancelled.",
- "publicChallengesTitle": "Public Challenges",
+ "publicChallengesTitle": "公開挑戰",
"officialChallenge": "Habitica 官方挑戰",
"by": "發起人",
"participants": "<%= membercount %>參與者",
@@ -37,13 +37,13 @@
"sureDelCha": "你確定你要把這個挑戰刪掉嗎?",
"sureDelChaTavern": "Are you sure you want to delete this challenge? Your gems will not be refunded.",
"keepTasks": "保留任務",
- "owned": "Owned",
- "not_owned": "Not Owned",
- "not_participating": "Not Participating",
- "clone": "Clone",
+ "owned": "已擁有的",
+ "not_owned": "未擁有",
+ "not_participating": "未參與",
+ "clone": "複製",
"congratulations": "Congratulations!",
- "hurray": "Hurray!",
- "noChallengeOwner": "no owner",
+ "hurray": "好耶!",
+ "noChallengeOwner": "無人擁有",
"challengeMemberNotFound": "User not found among challenge's members",
"onlyGroupLeaderChal": "Only the group leader can create challenges",
"tavChalsMinPrize": "Prize must be at least 1 Gem for Public Challenges.",
@@ -103,5 +103,6 @@
"selectParticipant": "Select a Participant",
"wonChallengeDesc": "<%= challengeName %> 將你選中為贏家!你的獲勝記錄已被儲存在成就欄",
"yourReward": "你的獎勵",
- "filters": "篩選器"
+ "filters": "篩選器",
+ "removeTasks": "刪除任務"
}
diff --git a/website/common/locales/zh_TW/achievements.json b/website/common/locales/zh_TW/achievements.json
index fe5fc3ff7f..e9901f921b 100644
--- a/website/common/locales/zh_TW/achievements.json
+++ b/website/common/locales/zh_TW/achievements.json
@@ -123,5 +123,11 @@
"achievementShadeOfItAll": "陰暗之始",
"achievementShadeOfItAllText": "已馴服所有暗影坐騎。",
"achievementShadeOfItAllModalText": "你馴服了所有暗影坐騎!",
- "achievementShadyCustomerModalText": "你集齊了所有暗影寵物!"
+ "achievementShadyCustomerModalText": "你集齊了所有暗影寵物!",
+ "achievementBirdsOfAFeather": "展翅高飛",
+ "achievementBirdsOfAFeatherText": "已孵化所有基礎顏色的飞行宠物:飛豬、貓頭鷹、鸚鵡、翼龍、獅鷲和獵鷹!",
+ "achievementBirdsOfAFeatherModalText": "你集齊了所有飛行寵物!",
+ "achievementZodiacZookeeper": "十二生肖飼養員",
+ "achievementZodiacZookeeperText": "已孵化所有基礎顏色的十二生肖寵物。鼠、牛、兔、蛇、馬、羊、猴、雞、狼、虎、飛豬和龍!",
+ "achievementZodiacZookeeperModalText": "你集齊了所有十二生肖寵物!"
}
diff --git a/website/common/script/content/achievements.js b/website/common/script/content/achievements.js
index cc7734b8a0..dd0de4b14b 100644
--- a/website/common/script/content/achievements.js
+++ b/website/common/script/content/achievements.js
@@ -188,6 +188,11 @@ const animalSetAchievs = {
titleKey: 'achievementReptacularRumble',
textKey: 'achievementReptacularRumbleText',
},
+ woodlandWizard: {
+ icon: 'achievement-woodlandWizard',
+ titleKey: 'achievementWoodlandWizard',
+ textKey: 'achievementWoodlandWizardText',
+ },
zodiacZookeeper: {
icon: 'achievement-zodiac',
titleKey: 'achievementZodiacZookeeper',
diff --git a/website/common/script/content/appearance/backgrounds.js b/website/common/script/content/appearance/backgrounds.js
index 534e83017d..d19d007e72 100644
--- a/website/common/script/content/appearance/backgrounds.js
+++ b/website/common/script/content/appearance/backgrounds.js
@@ -510,6 +510,16 @@ const backgrounds = {
underwater_cave: { },
underwater_statues: { },
},
+ backgrounds082022: {
+ rainbow_eucalyptus: { },
+ messy_room: { },
+ by_a_campfire: { },
+ },
+ backgrounds092022: {
+ theatre_stage: { },
+ autumn_picnic: { },
+ old_photo: { },
+ },
timeTravelBackgrounds: {
airship: {
price: 1,
diff --git a/website/common/script/content/bundles.js b/website/common/script/content/bundles.js
index bda8e75941..6f9e97ac26 100644
--- a/website/common/script/content/bundles.js
+++ b/website/common/script/content/bundles.js
@@ -52,8 +52,9 @@ const bundles = {
'horse',
'sheep',
],
+ event: EVENTS.bundle202209,
canBuy () {
- return moment().isBetween('2019-08-08', '2019-09-02');
+ return moment().isBetween(EVENTS.bundle202209.start, EVENTS.bundle202209.end);
},
type: 'quests',
value: 7,
@@ -144,8 +145,9 @@ const bundles = {
'hedgehog',
'treeling',
],
+ event: EVENTS.bundle202208,
canBuy () {
- return moment().isBetween('2018-09-11', '2018-10-02');
+ return moment().isBetween(EVENTS.bundle202208.start, EVENTS.bundle202208.end);
},
type: 'quests',
value: 7,
diff --git a/website/common/script/content/constants/animalSetAchievements.js b/website/common/script/content/constants/animalSetAchievements.js
index 619cc65ebc..0c747a0826 100644
--- a/website/common/script/content/constants/animalSetAchievements.js
+++ b/website/common/script/content/constants/animalSetAchievements.js
@@ -55,6 +55,23 @@ const ANIMAL_SET_ACHIEVEMENTS = {
achievementKey: 'reptacularRumble',
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
},
+ woodlandWizard: {
+ type: 'pet',
+ species: [
+ 'Badger',
+ 'BearCub',
+ 'Deer',
+ 'Fox',
+ 'Frog',
+ 'Hedgehog',
+ 'Owl',
+ 'Snail',
+ 'Squirrel',
+ 'Treeling',
+ ],
+ achievementKey: 'woodlandWizard',
+ notificationType: 'ACHIEVEMENT_ANIMAL_SET',
+ },
zodiacZookeeper: {
type: 'pet',
species: [
diff --git a/website/common/script/content/constants/events.js b/website/common/script/content/constants/events.js
index 94e8726a70..49cb72cac6 100644
--- a/website/common/script/content/constants/events.js
+++ b/website/common/script/content/constants/events.js
@@ -9,12 +9,30 @@ const gemsPromo = {
};
export const EVENTS = {
- noCurrentEventAfter: {
- start: '2022-07-31T20:00-04:00',
+ noCurrentEvent: {
+ start: '2022-09-30T20:00-04:00',
end: '2022-12-21T08:00-04:00',
season: 'normal',
npcImageSuffix: '',
},
+ bundle202209: {
+ start: '2022-09-13T08:00-04:00',
+ end: '2022-09-30T20:00-04:00',
+ season: 'normal',
+ npcImageSuffix: '',
+ },
+ potions202208: {
+ start: '2022-08-16T08:00-04:00',
+ end: '2022-08-31T20:00-04:00',
+ season: 'normal',
+ npcImageSuffix: '',
+ },
+ bundle202208: {
+ start: '2022-08-09T08:00-04:00',
+ end: '2022-09-30T20:00-04:00',
+ season: 'normal',
+ npcImageSuffix: '',
+ },
summer2022: {
start: '2022-06-21T08:00-04:00',
end: '2022-07-31T20:00-04:00',
@@ -22,12 +40,6 @@ export const EVENTS = {
npcImageSuffix: '_summer',
gear: true,
},
- noCurrentEvent: {
- start: '2022-04-30T20:00-04:00',
- end: '2022-06-21T08:00-04:00',
- season: 'normal',
- npcImageSuffix: '',
- },
bundle202206: {
start:'2022-06-14T08:00-04:00',
end:'2022-06-30T20:00-04:00',
diff --git a/website/common/script/content/gear/sets/armoire.js b/website/common/script/content/gear/sets/armoire.js
index 40b8c5a3b3..326b2efa13 100644
--- a/website/common/script/content/gear/sets/armoire.js
+++ b/website/common/script/content/gear/sets/armoire.js
@@ -434,6 +434,12 @@ const eyewear = {
clownsNose: {
int: 5,
},
+ tragedyMask: {
+ int: 10,
+ },
+ comedyMask: {
+ con: 10,
+ },
};
const head = {
@@ -1100,6 +1106,11 @@ const shield = {
str: 4,
set: 'fancyPirate',
},
+ dustpan: {
+ int: 4,
+ con: 4,
+ set: 'cleaningSupplies',
+ },
};
const headAccessory = {
@@ -1524,6 +1535,16 @@ const weapon = {
per: 3,
set: 'kite',
},
+ pushBroom: {
+ str: 4,
+ int: 4,
+ set: 'cleaningSupplies',
+ },
+ featherDuster: {
+ con: 4,
+ per: 4,
+ set: 'cleaningSupplies',
+ },
};
forEach({
diff --git a/website/common/script/content/gear/sets/mystery.js b/website/common/script/content/gear/sets/mystery.js
index cc3f511b6f..716bdfdcb0 100644
--- a/website/common/script/content/gear/sets/mystery.js
+++ b/website/common/script/content/gear/sets/mystery.js
@@ -119,6 +119,7 @@ const eyewear = {
202202: { },
'202204A': { mystery: '202204' },
'202204B': { mystery: '202204' },
+ 202208: { },
301404: { },
301405: { },
301703: { },
@@ -192,6 +193,7 @@ const head = {
202202: { },
202206: { },
202207: { },
+ 202208: { },
301404: { },
301405: { },
301703: { },
@@ -229,6 +231,7 @@ const shield = {
201802: { },
201902: { },
202011: { },
+ 202209: { },
301405: { },
301704: { },
};
@@ -246,6 +249,7 @@ const weapon = {
202104: { twoHanded: true },
202111: { twoHanded: true },
202201: { },
+ 202209: { },
301404: { },
};
diff --git a/website/common/script/content/hatching-potions.js b/website/common/script/content/hatching-potions.js
index 42a865fa7b..e4d75817ef 100644
--- a/website/common/script/content/hatching-potions.js
+++ b/website/common/script/content/hatching-potions.js
@@ -503,12 +503,13 @@ const premium = {
value: 2,
text: t('hatchingPotionMoonglow'),
limited: true,
- event: EVENTS.potions202108,
+ event: EVENTS.potions202208,
_addlNotes: t('premiumPotionAddlNotes', {
date: t('dateEndAugust'),
+ previousDate: t('augustYYYY', { year: 2021 }),
}),
canBuy () {
- return moment().isBetween(EVENTS.potions202108.start, EVENTS.potions202108.end);
+ return moment().isBetween(EVENTS.potions202208.start, EVENTS.potions202208.end);
},
},
SolarSystem: {
@@ -525,6 +526,18 @@ const premium = {
canBuy: hasQuestAchievementFunction('onyx'),
_addlNotes: t('premiumPotionUnlimitedNotes'),
},
+ Porcelain: {
+ value: 2,
+ text: t('hatchingPotionPorcelain'),
+ limited: true,
+ event: EVENTS.potions202208,
+ _addlNotes: t('premiumPotionAddlNotes', {
+ date: t('dateEndAugust'),
+ }),
+ canBuy () {
+ return moment().isBetween(EVENTS.potions202208.start, EVENTS.potions202208.end);
+ },
+ },
};
const wacky = {
diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js
index e8abbba254..f79f352b6e 100644
--- a/website/common/script/content/shop-featuredItems.js
+++ b/website/common/script/content/shop-featuredItems.js
@@ -5,7 +5,7 @@ import { EVENTS } from './constants';
// path: 'premiumHatchingPotions.Rainbow',
const featuredItems = {
market () {
- if (moment().isBefore(EVENTS.summer2022.end)) {
+ if (moment().isBetween(EVENTS.potions202208.start, EVENTS.potions202208.end)) {
return [
{
type: 'armoire',
@@ -13,15 +13,15 @@ const featuredItems = {
},
{
type: 'premiumHatchingPotion',
- path: 'premiumHatchingPotions.Sunset',
+ path: 'premiumHatchingPotions.Moonglow',
},
{
type: 'premiumHatchingPotion',
- path: 'premiumHatchingPotions.Watery',
+ path: 'premiumHatchingPotions.Porcelain',
},
{
- type: 'premiumHatchingPotion',
- path: 'premiumHatchingPotions.Aquatic',
+ type: 'food',
+ path: 'food.Milk',
},
];
}
@@ -32,39 +32,39 @@ const featuredItems = {
},
{
type: 'food',
- path: 'food.Honey',
+ path: 'food.Potatoe',
},
{
type: 'hatchingPotions',
- path: 'hatchingPotions.CottonCandyPink',
+ path: 'hatchingPotions.Desert',
},
{
type: 'eggs',
- path: 'eggs.Cactus',
+ path: 'eggs.Dragon',
},
];
},
quests () {
- if (moment().isBefore(EVENTS.bundle202206.end)) {
+ if (moment().isBetween(EVENTS.bundle202208.start, EVENTS.bundle202209.end)) {
return [
{
type: 'bundles',
- path: 'bundles.aquaticAmigos',
+ path: 'bundles.forestFriends',
+ },
+ {
+ type: 'bundles',
+ path: 'bundles.farmFriends',
},
{
type: 'quests',
- path: 'quests.seaserpent',
- },
- {
- type: 'quests',
- path: 'quests.dolphin',
+ path: 'quests.ferret',
},
];
}
return [
{
type: 'quests',
- path: 'quests.badger',
+ path: 'quests.guineapig',
},
{
type: 'quests',
diff --git a/website/common/script/libs/achievements.js b/website/common/script/libs/achievements.js
index 3f7cf1e93f..cbde3305ae 100644
--- a/website/common/script/libs/achievements.js
+++ b/website/common/script/libs/achievements.js
@@ -218,6 +218,7 @@ function _getBasicAchievements (user, language) {
_addSimple(result, user, { path: 'zodiacZookeeper', language });
_addSimple(result, user, { path: 'birdsOfAFeather', language });
_addSimple(result, user, { path: 'reptacularRumble', language });
+ _addSimple(result, user, { path: 'woodlandWizard', language });
_addSimpleWithMasterCount(result, user, { path: 'beastMaster', language });
_addSimpleWithMasterCount(result, user, { path: 'mountMaster', language });
diff --git a/website/common/script/ops/scoreTask.js b/website/common/script/ops/scoreTask.js
index 335b3a85bf..a9a0de139b 100644
--- a/website/common/script/ops/scoreTask.js
+++ b/website/common/script/ops/scoreTask.js
@@ -1,8 +1,10 @@
+import find from 'lodash/find';
import timesLodash from 'lodash/times';
import reduce from 'lodash/reduce';
import moment from 'moment';
import max from 'lodash/max';
import {
+ BadRequest,
NotAuthorized,
} from '../libs/errors';
import i18n from '../i18n';
@@ -104,6 +106,7 @@ function _gainMP (user, val) {
// ===== CONSTITUTION =====
// TODO Decreases HP loss from bad habits / missed dailies by 0.5% per point.
function _subtractPoints (user, task, stats, delta) {
+ if (task.group.id && task.type === 'daily') return stats.hp;
let conBonus = 1 - statsComputed(user).con / 250;
if (conBonus < 0.1) conBonus = 0.1;
@@ -233,11 +236,6 @@ export default function scoreTask (options = {}, req = {}, analytics) {
exp: user.stats.exp,
};
- if (
- task.group && task.group.approval && task.group.approval.required
- && !task.group.approval.approved && !(task.type === 'todo' && cron)
- ) return 0;
-
// This is for setting one-time temporary flags,
// such as streakBonus or itemDropped. Useful for notifying
// the API consumer, then cleared afterwards
@@ -248,6 +246,13 @@ export default function scoreTask (options = {}, req = {}, analytics) {
if (oldLeveledUp) user._tmp.leveledUp = oldLeveledUp;
+ // Thanks to open group tasks, userId is not guaranteed. Don't allow scoring inaccessible tasks
+ if (task.userId && task.userId !== user._id) {
+ throw new BadRequest('Cannot score task belonging to another user.');
+ } else if (task.group.id && user.guilds.indexOf(task.group.id) === -1
+ && user.party._id !== task.group.id) {
+ throw new BadRequest('Cannot score task belonging to another user.');
+ }
// If they're trying to purchase a too-expensive reward, don't allow them to do that.
if (task.value > user.stats.gp && task.type === 'reward') throw new NotAuthorized(i18n.t('messageNotEnoughGold', req.language));
@@ -296,34 +301,69 @@ export default function scoreTask (options = {}, req = {}, analytics) {
_gainMP(user, max([1, 0.01 * statsComputed(user).maxMP]) * (direction === 'down' ? -1 : 1));
if (direction === 'up') {
- task.streak += 1;
- // Give a streak achievement when the streak is a multiple of 21
- if (task.streak !== 0 && task.streak % 21 === 0) {
- user.achievements.streak = user.achievements.streak ? user.achievements.streak + 1 : 1;
- if (user.addNotification) user.addNotification('STREAK_ACHIEVEMENT');
- }
- task.completed = true;
+ if (task.group.id) {
+ if (!task.group.assignedUsers || task.group.assignedUsers.length === 0) {
+ task.group.completedBy = {
+ userId: user._id,
+ date: new Date(),
+ };
+ task.completed = true;
+ task.streak += 1;
+ } else {
+ task.group.assignedUsersDetail[user._id].completed = true;
+ task.group.assignedUsersDetail[user._id].completedDate = new Date();
+ if (!find(task.group.assignedUsersDetail, assignedUser => !assignedUser.completed)) {
+ task.dateCompleted = new Date();
+ task.completed = true;
+ task.streak += 1;
+ }
+ }
+ if (task.markModified) task.markModified('group');
+ } else {
+ task.streak += 1;
+ // Give a streak achievement when the streak is a multiple of 21
+ if (task.streak !== 0 && task.streak % 21 === 0) {
+ user.achievements.streak = user.achievements.streak ? user.achievements.streak + 1 : 1;
+ if (user.addNotification) user.addNotification('STREAK_ACHIEVEMENT');
+ }
+ task.completed = true;
- // Save history entry for daily
- task.history = task.history || [];
- const historyEntry = {
- date: Number(new Date()),
- value: task.value,
- isDue: task.isDue,
- completed: true,
- };
- task.history.push(historyEntry);
+ // Save history entry for daily
+ task.history = task.history || [];
+ const historyEntry = {
+ date: Number(new Date()),
+ value: task.value,
+ isDue: task.isDue,
+ completed: true,
+ };
+ task.history.push(historyEntry);
+ }
} else if (direction === 'down') {
- // Remove a streak achievement if streak was a multiple of 21 and the daily was undone
- if (task.streak !== 0 && task.streak % 21 === 0) {
- user.achievements.streak = user.achievements.streak ? user.achievements.streak - 1 : 0;
- }
- task.streak -= 1;
- task.completed = false;
+ if (task.group.id) {
+ if (!task.group.assignedUsersDetail
+ || !find(task.group.assignedUsersDetail, assignedUser => !assignedUser.completed)
+ ) {
+ task.streak -= 1;
+ task.completed = false;
+ }
+ if (task.group.completedBy) task.group.completedBy = {};
+ if (task.group.assignedUsersDetail && task.group.assignedUsersDetail[user._id]) {
+ task.group.assignedUsersDetail[user._id].completed = false;
+ task.group.assignedUsersDetail[user._id].completedDate = undefined;
+ }
+ if (task.markModified) task.markModified('group');
+ } else {
+ // Remove a streak achievement if streak was a multiple of 21 and the daily was undone
+ if (task.streak !== 0 && task.streak % 21 === 0) {
+ user.achievements.streak = user.achievements.streak ? user.achievements.streak - 1 : 0;
+ }
+ task.streak -= 1;
+ task.completed = false;
- // Delete history entry when daily unchecked
- if (task.history || task.history.length > 0) {
- task.history.splice(-1, 1);
+ // Delete history entry when daily unchecked
+ if (task.history || task.history.length > 0) {
+ task.history.splice(-1, 1);
+ }
}
}
}
@@ -332,11 +372,37 @@ export default function scoreTask (options = {}, req = {}, analytics) {
delta += _changeTaskValue(user, task, direction, times, cron);
} else {
if (direction === 'up') {
- task.dateCompleted = new Date();
- task.completed = true;
+ if (task.group.id) {
+ if (!task.group.assignedUsers || task.group.assignedUsers.length === 0) {
+ task.group.completedBy = {
+ userId: user._id,
+ date: new Date(),
+ };
+ task.completed = true;
+ } else {
+ task.group.assignedUsersDetail[user._id].completed = true;
+ task.group.assignedUsersDetail[user._id].completedDate = new Date();
+ if (!find(task.group.assignedUsersDetail, assignedUser => !assignedUser.completed)) {
+ task.dateCompleted = new Date();
+ task.completed = true;
+ }
+ }
+ if (task.markModified) task.markModified('group');
+ } else {
+ task.dateCompleted = new Date();
+ task.completed = true;
+ }
} else if (direction === 'down') {
task.completed = false;
task.dateCompleted = undefined;
+ if (task.group.id) {
+ if (task.group.completedBy) task.group.completedBy = {};
+ if (task.group.assignedUsersDetail && task.group.assignedUsersDetail[user._id]) {
+ task.group.assignedUsersDetail[user._id].completed = false;
+ task.group.assignedUsersDetail[user._id].completedDate = undefined;
+ }
+ if (task.markModified) task.markModified('group');
+ }
}
delta += _changeTaskValue(user, task, direction, times, cron);
diff --git a/website/server/controllers/api-v3/groups.js b/website/server/controllers/api-v3/groups.js
index 7e0f22c0ff..cfa582ecd9 100644
--- a/website/server/controllers/api-v3/groups.js
+++ b/website/server/controllers/api-v3/groups.js
@@ -419,14 +419,16 @@ api.getGroup = {
}
const groupJson = await Group.toJSONCleanChat(group, user);
-
- if (groupJson.leader === user._id) {
- groupJson.purchased.plan = group.purchased.plan.toObject();
- }
+ groupJson.purchased.plan = group.purchased.plan.toObject();
// Instead of populate we make a find call manually because of https://github.com/Automattic/mongoose/issues/3833
- const leader = await User.findById(groupJson.leader).select(nameFields).exec();
+ const leader = await User.findById(groupJson.leader).select(`${nameFields} preferences.timezoneOffset preferences.dayStart`).exec();
if (leader) groupJson.leader = leader.toJSON({ minimize: true });
+ if (groupJson.purchased.plan.planId) {
+ groupJson.cron.timezoneOffset = leader.preferences.timezoneOffset;
+ groupJson.cron.dayStart = leader.preferences.dayStart;
+ }
+ delete groupJson.leader.preferences;
res.respond(200, groupJson);
},
diff --git a/website/server/controllers/api-v3/members.js b/website/server/controllers/api-v3/members.js
index 3d00ef3dde..11469a5684 100644
--- a/website/server/controllers/api-v3/members.js
+++ b/website/server/controllers/api-v3/members.js
@@ -714,8 +714,11 @@ api.transferGems = {
throw new NotAuthorized(res.t('badAmountOfGemsToSend'));
}
+ // Received from {sender}
await receiver.updateBalance(amount, 'gift_receive', sender._id, sender.auth.local.username);
- await sender.updateBalance(-amount, 'gift_send', sender._id, receiver.auth.local.username);
+
+ // Gifted to {receiver}
+ await sender.updateBalance(-amount, 'gift_send', receiver._id, receiver.auth.local.username);
// @TODO necessary? Also saved when sending the inbox message
const promises = [receiver.save(), sender.save()];
await Promise.all(promises);
diff --git a/website/server/controllers/api-v3/tasks.js b/website/server/controllers/api-v3/tasks.js
index c168cd4ca5..c937f5efb0 100644
--- a/website/server/controllers/api-v3/tasks.js
+++ b/website/server/controllers/api-v3/tasks.js
@@ -632,7 +632,6 @@ api.updateTask = {
verifyTaskModification(task, user, group, challenge, res);
}
- const oldCheckList = task.checklist;
// we have to convert task to an object because otherwise things
// don't get merged correctly. Bad for performances?
const [updatedTaskObj] = common.ops.updateTask(task.toObject(), req);
@@ -654,14 +653,7 @@ api.updateTask = {
// the other of the keys when using .toObject()
// see https://github.com/Automattic/mongoose/issues/2749
- task.group.approval.required = false;
- if (sanitizedObj.requiresApproval) {
- task.group.approval.required = true;
- }
- if (sanitizedObj.sharedCompletion) {
- task.group.sharedCompletion = sanitizedObj.sharedCompletion;
- }
- if (sanitizedObj.managerNotes) {
+ if (Object.prototype.hasOwnProperty.call(sanitizedObj, 'managerNotes')) {
task.group.managerNotes = sanitizedObj.managerNotes;
}
@@ -695,28 +687,26 @@ api.updateTask = {
setNextDue(task, user);
const savedTask = await task.save();
- if (group && task.group.id && task.group.assignedUsers.length > 0) {
- const updateCheckListItems = _.remove(sanitizedObj.checklist, checklist => {
- const indexOld = _.findIndex(oldCheckList, check => check.id === checklist.id);
- if (indexOld !== -1) return checklist.text !== oldCheckList[indexOld].text;
- return false; // Only return changes. Adding and remove are handled differently
- });
-
- await group.updateTask(savedTask, { updateCheckListItems });
- }
-
res.respond(200, savedTask);
if (challenge) {
challenge.updateTask(savedTask);
- } else if (group && task.group.id && task.group.assignedUsers.length > 0) {
- await group.updateTask(savedTask);
- } else {
+ } else if (!group) {
taskActivityWebhook.send(user, {
type: 'updated',
task: savedTask,
});
}
+
+ if (group) {
+ res.analytics.track('task edit', {
+ uuid: user._id,
+ hitType: 'event',
+ category: 'behavior',
+ taskType: task.type,
+ groupID: group._id,
+ });
+ }
},
};
@@ -772,17 +762,12 @@ api.scoreTask = {
const userStats = user.stats.toJSON();
- // group tasks that require a manager's approval
- if (taskResponse.requiresApproval === true) {
- res.respond(202, { requiresApproval: true }, taskResponse.message);
- } else {
- const resJsonData = _.assign({
- delta: taskResponse.delta,
- _tmp: user._tmp,
- }, userStats);
+ const resJsonData = _.assign({
+ delta: taskResponse.delta,
+ _tmp: user._tmp,
+ }, userStats);
- res.respond(200, resJsonData);
- }
+ res.respond(200, resJsonData);
},
};
@@ -830,40 +815,25 @@ api.moveTask = {
const group = await getGroupFromTaskAndUser(task, user);
const challenge = await getChallengeFromTask(task);
- verifyTaskModification(task, user, group, challenge, res);
+ if (task.group.id && !task.userId) {
+ if (!group || (user.guilds.indexOf(group._id) === -1 && user.party._id !== group._id)) {
+ throw new NotFound(res.t('groupNotFound'));
+ }
+ if (task.group.assignedUsers.length !== 0
+ && task.group.assignedUsers.indexOf(user._id) === -1) {
+ throw new BadRequest('Use /group/:groupId/tasks/:taskId/move/to/:position route');
+ }
+ } else {
+ verifyTaskModification(task, user, group, challenge, res);
+ }
if (task.type === 'todo' && task.completed) throw new BadRequest(res.t('cantMoveCompletedTodo'));
- const owner = group || challenge || user;
+ const owner = challenge || user;
// In memory updates
const order = owner.tasksOrder[`${task.type}s`];
- if (order.indexOf(task._id) === -1) { // task is missing from list, list needs repair
- const taskListQuery = { type: task.type };
- if (group) {
- taskListQuery['group.id'] = owner._id;
- taskListQuery.userId = { $exists: false };
- } else if (challenge) {
- taskListQuery['challenge.id'] = owner._id;
- taskListQuery.userId = { $exists: false };
- } else {
- taskListQuery.userId = owner._id;
- }
- const taskList = await Tasks.Task.find(
- taskListQuery,
- { _id: 1 },
- ).exec();
- for (const foundTask of taskList) {
- if (order.indexOf(foundTask._id) === -1) {
- order.push(foundTask._id);
- }
- }
- const fixQuery = { $set: {} };
- fixQuery.$set[`tasksOrder.${task.type}s`] = order;
- await owner.update(fixQuery).exec();
- }
-
moveTask(order, task._id, to);
// Server updates
@@ -886,7 +856,7 @@ api.moveTask = {
// it cannot be updated in the pre update hook
// See https://github.com/HabitRPG/habitica/pull/9321#issuecomment-354187666 for more info
// Only users have a version.
- if (!group && !challenge) {
+ if (!challenge) {
owner._v += 1;
}
@@ -956,9 +926,6 @@ api.addChecklistItem = {
res.respond(200, savedTask);
if (challenge) challenge.updateTask(savedTask);
- if (group && task.group.id && task.group.assignedUsers.length > 0) {
- await group.updateTask(savedTask, { newCheckListItem });
- }
},
};
@@ -989,9 +956,15 @@ api.scoreCheckListItem = {
if (validationErrors) throw validationErrors;
const { taskId } = req.params;
- const task = await Tasks.Task.findByIdOrAlias(taskId, user._id, { userId: user._id });
+ const task = await Tasks.Task.findByIdOrAlias(taskId, user._id);
- if (!task) throw new NotFound(res.t('messageTaskNotFound'));
+ if (!task || (!task.userId && !task.group.id)) throw new NotFound(res.t('messageTaskNotFound'));
+ if (task.userId && task.userId !== user._id) {
+ throw new BadRequest('Cannot score task belonging to another user.');
+ } else if (task.group.id && user.guilds.indexOf(task.group.id) === -1
+ && user.party._id !== task.group.id) {
+ throw new BadRequest('Cannot score task belonging to another user.');
+ }
if (task.type !== 'daily' && task.type !== 'todo') throw new BadRequest(res.t('checklistOnlyDailyTodo'));
const item = _.find(task.checklist, { id: req.params.itemId });
@@ -1063,9 +1036,6 @@ api.updateChecklistItem = {
res.respond(200, savedTask);
if (challenge) challenge.updateTask(savedTask);
- if (group && task.group.id && task.group.assignedUsers.length > 0) {
- await group.updateTask(savedTask);
- }
},
};
@@ -1125,9 +1095,6 @@ api.removeChecklistItem = {
const savedTask = await task.save();
res.respond(200, savedTask);
if (challenge) challenge.updateTask(savedTask);
- if (group && task.group.id && task.group.assignedUsers.length > 0) {
- await group.updateTask(savedTask, { removedCheckListItemId: req.params.itemId });
- }
},
};
diff --git a/website/server/controllers/api-v3/tasks/groups.js b/website/server/controllers/api-v3/tasks/groups.js
index 59cf9c2b9d..963fcdbf91 100644
--- a/website/server/controllers/api-v3/tasks/groups.js
+++ b/website/server/controllers/api-v3/tasks/groups.js
@@ -1,3 +1,4 @@
+import isUUID from 'validator/lib/isUUID';
import { authWithHeaders } from '../../../middlewares/auth';
import * as Tasks from '../../../models/task';
import { model as Group } from '../../../models/group';
@@ -12,13 +13,12 @@ import {
createTasks,
getTasks,
groupSubscriptionNotFound,
+ scoreTasks,
} from '../../../libs/tasks';
import {
moveTask,
} from '../../../libs/tasks/utils';
-import { handleSharedCompletion } from '../../../libs/groupTasks';
import apiError from '../../../libs/apiError';
-import logger from '../../../libs/logger';
const requiredGroupFields = '_id leader tasksOrder name';
// @TODO: abstract to task lib
@@ -150,14 +150,15 @@ api.groupMoveTask = {
if (task.type === 'todo' && task.completed) throw new BadRequest(res.t('cantMoveCompletedTodo'));
+ const groupFields = requiredGroupFields.concat(' managers purchased');
const group = await Group.getGroup({
user,
groupId: task.group.id,
- fields: requiredGroupFields.concat(' purchased'),
+ fields: groupFields,
});
if (groupSubscriptionNotFound(group)) throw new NotFound(res.t('groupNotFound'));
- if (group.leader !== user._id) throw new NotAuthorized(res.t('onlyGroupLeaderCanEditTasks'));
+ if (canNotEditTasks(group, user)) throw new NotAuthorized(res.t('onlyGroupLeaderCanEditTasks'));
const order = group.tasksOrder[`${task.type}s`];
@@ -184,30 +185,31 @@ api.groupMoveTask = {
};
/**
- * @api {post} /api/v3/tasks/:taskId/assign/:assignedUserId Assign a group task to a user
- * @apiDescription Assigns a user to a group task
+ * @api {post} /api/v3/tasks/:taskId/assign Assign a group task to a user or users
+ * @apiDescription Assign users to a group task
* @apiName AssignTask
* @apiGroup Task
*
* @apiParam (Path) {UUID} taskId The id of the task that will be assigned
- * @apiParam (Path) {UUID} assignedUserId The id of the user that will be assigned to the task
+ * @apiParam (Body) {UUID[]} [assignedUserIds] Array of user IDs to be assigned to the task
*
* @apiSuccess data The assigned task
*/
api.assignTask = {
method: 'POST',
- url: '/tasks/:taskId/assign/:assignedUserId',
+ url: '/tasks/:taskId/assign',
middlewares: [authWithHeaders()],
async handler (req, res) {
req.checkParams('taskId', apiError('taskIdRequired')).notEmpty().isUUID();
- req.checkParams('assignedUserId', res.t('userIdRequired')).notEmpty().isUUID();
const reqValidationErrors = req.validationErrors();
if (reqValidationErrors) throw reqValidationErrors;
const { user } = res.locals;
- const { assignedUserId } = req.params;
- const assignedUser = await User.findById(assignedUserId).exec();
+ const assignedUserIds = req.body;
+ for (const userId of assignedUserIds) {
+ if (!isUUID(userId)) throw new BadRequest('Assigned users must be UUIDs');
+ }
const { taskId } = req.params;
const task = await Tasks.Task.findByIdOrAlias(taskId, user._id);
@@ -224,37 +226,36 @@ api.assignTask = {
const group = await Group.getGroup({ user, groupId: task.group.id, fields: groupFields });
if (groupSubscriptionNotFound(group)) throw new NotFound(res.t('groupNotFound'));
- if (canNotEditTasks(group, user, assignedUserId)) throw new NotAuthorized(res.t('onlyGroupLeaderCanEditTasks'));
+ if (canNotEditTasks(group, user)) throw new NotAuthorized(res.t('onlyGroupLeaderCanEditTasks'));
+ const assignedUsers = await User.find({ _id: { $in: assignedUserIds } }).exec();
const promises = [];
const taskText = task.text;
const userName = `@${user.auth.local.username}`;
- if (user._id === assignedUserId) {
- const managerIds = Object.keys(group.managers);
- managerIds.push(group.leader);
- const managers = await User.find({ _id: managerIds }, 'notifications preferences').exec();
- managers.forEach(manager => {
- if (manager._id === user._id) return;
- manager.addNotification('GROUP_TASK_CLAIMED', {
- message: res.t('taskClaimed', { userName, taskText }, manager.preferences.language),
+ for (const userToAssign of assignedUsers) {
+ if (user._id !== userToAssign._id) {
+ userToAssign.addNotification('GROUP_TASK_ASSIGNED', {
+ message: res.t('youHaveBeenAssignedTask', { managerName: userName, taskText }),
groupId: group._id,
taskId: task._id,
});
- promises.push(manager.save());
- });
- } else {
- assignedUser.addNotification('GROUP_TASK_ASSIGNED', {
- message: res.t('youHaveBeenAssignedTask', { managerName: userName, taskText }),
- taskId: task._id,
- });
+ }
}
- promises.push(group.syncTask(task, assignedUser, user));
+ promises.push(group.syncTask(task, assignedUsers, user));
promises.push(group.save());
await Promise.all(promises);
res.respond(200, task);
+
+ res.analytics.track('task assign', {
+ uuid: user._id,
+ hitType: 'event',
+ category: 'behavior',
+ taskType: task.type,
+ groupID: group._id,
+ });
},
};
@@ -299,7 +300,7 @@ api.unassignTask = {
const group = await Group.getGroup({ user, groupId: task.group.id, fields });
if (groupSubscriptionNotFound(group)) throw new NotFound(res.t('groupNotFound'));
- if (canNotEditTasks(group, user, assignedUserId)) throw new NotAuthorized(res.t('onlyGroupLeaderCanEditTasks'));
+ if (canNotEditTasks(group, user)) throw new NotAuthorized(res.t('onlyGroupLeaderCanEditTasks'));
await group.unlinkTask(task, assignedUser);
@@ -314,111 +315,6 @@ api.unassignTask = {
},
};
-/**
- * @api {post} /api/v3/tasks/:taskId/approve/:userId Approve a user's task
- * @apiDescription Approves a user assigned to a group task
- * @apiVersion 3.0.0
- * @apiName ApproveTask
- * @apiGroup Task
- *
- * @apiParam (Path) {UUID} taskId The id of the task that is the original group task
- * @apiParam (Path) {UUID} userId The id of the user that will be approved
- *
- * @apiSuccess task The approved task
- */
-api.approveTask = {
- method: 'POST',
- url: '/tasks/:taskId/approve/:userId',
- middlewares: [authWithHeaders()],
- async handler (req, res) {
- req.checkParams('taskId', apiError('taskIdRequired')).notEmpty().isUUID();
- req.checkParams('userId', res.t('userIdRequired')).notEmpty().isUUID();
-
- const reqValidationErrors = req.validationErrors();
- if (reqValidationErrors) throw reqValidationErrors;
-
- const { user } = res.locals;
- const assignedUserId = req.params.userId;
- const assignedUser = await User.findById(assignedUserId).exec();
-
- const { taskId } = req.params;
- const task = await Tasks.Task.findOne({
- 'group.taskId': taskId,
- userId: assignedUserId,
- }).exec();
-
- if (!task) {
- throw new NotFound(res.t('messageTaskNotFound'));
- }
-
- const fields = requiredGroupFields.concat(' purchased managers');
- const group = await Group.getGroup({ user, groupId: task.group.id, fields });
- if (groupSubscriptionNotFound(group)) throw new NotFound(res.t('groupNotFound'));
-
- if (canNotEditTasks(group, user)) throw new NotAuthorized(res.t('onlyGroupLeaderCanEditTasks'));
- if (task.group.approval.approved === true) throw new NotAuthorized(res.t('canOnlyApproveTaskOnce'));
- if (!task.group.approval.requested) {
- throw new NotAuthorized(res.t('taskApprovalWasNotRequested'));
- }
-
- task.group.approval.dateApproved = new Date();
- task.group.approval.approvingUser = user._id;
- task.group.approval.approved = true;
-
- // Get Managers
- const managerIds = Object.keys(group.managers);
- managerIds.push(group.leader);
- const managers = await User.find({ _id: managerIds }, 'notifications').exec(); // Use this method so we can get access to notifications
-
- // Get task direction
- const firstManagerNotifications = managers[0].notifications;
- const firstNotificationIndex = firstManagerNotifications.findIndex(notification => notification && notification.data && notification.data.taskId === task._id && notification.type === 'GROUP_TASK_APPROVAL');
- let direction = 'up';
- if (firstManagerNotifications[firstNotificationIndex]) {
- direction = firstManagerNotifications[firstNotificationIndex].direction || direction;
- }
-
- // Remove old notifications
- const approvalPromises = [];
- managers.forEach(manager => {
- const notificationIndex = manager.notifications.findIndex(notification => notification && notification.data && notification.data.taskId === task._id && notification.type === 'GROUP_TASK_APPROVAL');
-
- if (notificationIndex !== -1) {
- manager.notifications.splice(notificationIndex, 1);
- approvalPromises.push(manager.save());
- }
- });
-
- // Add new notifications to user
- assignedUser.addNotification('GROUP_TASK_APPROVED', {
- message: res.t('yourTaskHasBeenApproved', { taskText: task.text }),
- groupId: group._id,
- task,
- direction,
- });
-
- approvalPromises.push(task.save());
- approvalPromises.push(assignedUser.save());
- await Promise.all(approvalPromises);
-
- res.respond(200, task);
-
- // Wrapping everything in a try/catch block because if an error occurs
- // using `await` it MUST NOT bubble up because the request has already been handled
- try {
- const groupTask = await Tasks.Task.findOne({
- _id: task.group.taskId,
- }).exec();
-
- if (groupTask) {
- await handleSharedCompletion(groupTask, task);
- }
- } catch (e) {
- logger.error('Error handling group task', e);
- }
- },
-};
-
/**
* @api {post} /api/v3/tasks/:taskId/needs-work/:userId Require more work for a group task
* @apiDescription Mark an assigned group task as needing more work before it can be approved
@@ -450,122 +346,54 @@ api.taskNeedsWork = {
const [assignedUser, task] = await Promise.all([
User.findById(assignedUserId).exec(),
await Tasks.Task.findOne({
- 'group.taskId': taskId,
- userId: assignedUserId,
+ _id: taskId,
}).exec(),
]);
if (!task) {
throw new NotFound(res.t('messageTaskNotFound'));
}
+ if (['daily', 'todo'].indexOf(task.type) === -1) {
+ throw new BadRequest('Cannot roll back use of Habits or Rewards.');
+ }
+
+ if (task.group.completedBy.userId) {
+ if (task.group.completedBy.userId !== assignedUserId) {
+ throw new BadRequest('Task not completed by this user.');
+ }
+ } else if (!task.group.assignedUsersDetail || !task.group.assignedUsersDetail[assignedUserId]
+ || !task.group.assignedUsersDetail[assignedUserId].completed) {
+ throw new BadRequest('Task not completed by this user.');
+ }
const fields = requiredGroupFields.concat(' purchased managers');
const group = await Group.getGroup({ user, groupId: task.group.id, fields });
if (groupSubscriptionNotFound(group)) throw new NotFound(res.t('groupNotFound'));
if (canNotEditTasks(group, user)) throw new NotAuthorized(res.t('onlyGroupLeaderCanEditTasks'));
- if (task.group.approval.approved === true) throw new NotAuthorized(res.t('canOnlyApproveTaskOnce'));
- if (!task.group.approval.requested) {
- throw new NotAuthorized(res.t('taskApprovalWasNotRequested'));
+
+ await scoreTasks(assignedUser, [{ id: task._id, direction: 'down' }], req, res);
+ if (assignedUserId !== user._id) {
+ assignedUser.addNotification('GROUP_TASK_NEEDS_WORK', {
+ message: res.t('taskNeedsWork', { taskText: task.text, managerName: user.auth.local.username }, assignedUser.preferences.language),
+ task: {
+ id: task._id,
+ text: task.text,
+ },
+ group: {
+ id: group._id,
+ name: group.name,
+ },
+ manager: {
+ id: user._id,
+ name: user.auth.local.username,
+ },
+ });
}
-
- // Get Managers
- const managerIds = Object.keys(group.managers);
- managerIds.push(group.leader);
- const managers = await User.find({ _id: managerIds }, 'notifications').exec(); // Use this method so we can get access to notifications
-
- const promises = [];
-
- // Remove old notifications
- managers.forEach(manager => {
- const notificationIndex = manager.notifications.findIndex(notification => notification && notification.data && notification.data.taskId === task._id && notification.type === 'GROUP_TASK_APPROVAL');
-
- if (notificationIndex !== -1) {
- manager.notifications.splice(notificationIndex, 1);
- promises.push(manager.save());
- }
- });
-
- task.group.approval.requested = false;
- task.group.approval.requestedDate = undefined;
-
- const taskText = task.text;
- const managerName = user.profile.name;
-
- const message = res.t('taskNeedsWork', { taskText, managerName }, assignedUser.preferences.language);
-
- assignedUser.addNotification('GROUP_TASK_NEEDS_WORK', {
- message,
- task: {
- id: task._id,
- text: taskText,
- },
- group: {
- id: group._id,
- name: group.name,
- },
- manager: {
- id: user._id,
- name: managerName,
- },
- });
-
- await Promise.all([...promises, assignedUser.save(), task.save()]);
+ await Promise.all([assignedUser.save(), task.save()]);
res.respond(200, task);
},
};
-/**
- * @api {get} /api/v3/approvals/group/:groupId Get a group's approvals
- * @apiVersion 3.0.0
- * @apiName GetGroupApprovals
- * @apiGroup Task
- *
- * @apiParam (Path) {UUID} groupId The id of the group from which to retrieve the approvals
- *
- * @apiSuccess {Array} data An array of tasks
- */
-api.getGroupApprovals = {
- method: 'GET',
- url: '/approvals/group/:groupId',
- middlewares: [authWithHeaders()],
- async handler (req, res) {
- req.checkParams('groupId', apiError('groupIdRequired')).notEmpty().isUUID();
-
- const validationErrors = req.validationErrors();
- if (validationErrors) throw validationErrors;
-
- const { user } = res.locals;
- const { groupId } = req.params;
-
- const fields = requiredGroupFields.concat(' purchased managers');
- const group = await Group.getGroup({ user, groupId, fields });
- if (groupSubscriptionNotFound(group)) throw new NotFound(res.t('groupNotFound'));
-
- let approvals;
- if (canNotEditTasks(group, user)) {
- approvals = await Tasks.Task.find({
- 'group.id': groupId,
- 'group.approval.approved': false,
- 'group.approval.requested': true,
- 'group.assignedUsers': user._id,
- userId: user._id,
- }, 'userId group text')
- .populate('userId', 'profile')
- .exec();
- } else {
- approvals = await Tasks.Task.find({
- 'group.id': groupId,
- 'group.approval.approved': false,
- 'group.approval.requested': true,
- }, 'userId group text')
- .populate('userId', 'profile')
- .exec();
- }
-
- res.respond(200, approvals);
- },
-};
-
export default api;
diff --git a/website/server/libs/cron.js b/website/server/libs/cron.js
index 5899a44f06..cfbdbb0dc5 100644
--- a/website/server/libs/cron.js
+++ b/website/server/libs/cron.js
@@ -343,17 +343,18 @@ export async function cron (options = {}) {
if (!user.party.quest.progress.down) user.party.quest.progress.down = 0;
tasksByType.dailys.forEach(task => {
+ const isTeamBoardTask = task.group.id && !task.userId;
if (
- task.group.assignedDate
+ !isTeamBoardTask && task.group.assignedDate
&& moment(task.group.assignedDate).isAfter(user.auth.timestamps.updated)
) return;
const { completed } = task;
// Deduct points for missed Daily tasks
- let EvadeTask = 0;
+ let evadeTask = 0;
let scheduleMisses = daysMissed;
if (completed) {
- dailyChecked += 1;
+ if (!isTeamBoardTask) dailyChecked += 1;
if (!atLeastOneDailyDue) { // only bother checking until the first thing is found
const thatDay = moment(now).subtract({ days: daysMissed });
atLeastOneDailyDue = shouldDo(thatDay.toDate(), task, user.preferences);
@@ -368,15 +369,15 @@ export async function cron (options = {}) {
if (shouldDo(thatDay.toDate(), task, user.preferences)) {
atLeastOneDailyDue = true;
scheduleMisses += 1;
- if (user.stats.buffs.stealth) {
+ if (user.stats.buffs.stealth && !isTeamBoardTask) {
user.stats.buffs.stealth -= 1;
- EvadeTask += 1;
+ evadeTask += 1;
}
}
if (multiDaysCountAsOneDay) break;
}
- if (scheduleMisses > EvadeTask) {
+ if (scheduleMisses > evadeTask) {
// The user did not complete this due Daily
// (but no penalty if cron is running in safe mode).
if (CRON_SAFE_MODE) {
@@ -402,7 +403,7 @@ export async function cron (options = {}) {
user,
task,
direction: 'down',
- times: multiDaysCountAsOneDay ? 1 : scheduleMisses - EvadeTask,
+ times: multiDaysCountAsOneDay ? 1 : scheduleMisses - evadeTask,
cron: true,
});
@@ -437,13 +438,6 @@ export async function cron (options = {}) {
task.checklist.forEach(i => { i.completed = false; });
}
}
-
- if (task.group && task.group.approval && task.group.approval.approved) {
- task.group.approval.approved = false;
- task.group.approval.dateApproved = null;
- task.group.approval.requested = false;
- task.group.approval.requestedDate = null;
- }
});
resetHabitCounters(user, tasksByType, now, daysMissed);
@@ -454,12 +448,6 @@ export async function cron (options = {}) {
if (task.up === false || task.down === false) {
task.value = Math.abs(task.value) < 0.1 ? 0 : task.value /= 2;
}
- if (task.group && task.group.approval && task.group.approval.approved) {
- task.group.approval.approved = false;
- task.group.approval.dateApproved = null;
- task.group.approval.requested = false;
- task.group.approval.requestedDate = null;
- }
});
// Finished tallying
diff --git a/website/server/libs/groupTasks.js b/website/server/libs/groupTasks.js
index baad36e57d..fcd13273c3 100644
--- a/website/server/libs/groupTasks.js
+++ b/website/server/libs/groupTasks.js
@@ -1,56 +1,18 @@
import * as Tasks from '../models/task'; // eslint-disable-line import/no-cycle
-const SHARED_COMPLETION = {
- default: 'recurringCompletion',
- single: 'singleCompletion',
- every: 'allAssignedCompletion',
-};
-
-async function _completeMasterTask (masterTask) {
- masterTask.completed = true;
- await masterTask.save();
-}
-
-async function _deleteUnfinishedTasks (groupMemberTask) {
- await Tasks.Task.deleteMany({
- 'group.taskId': groupMemberTask.group.taskId,
- $and: [
- { userId: { $exists: true } },
- { userId: { $ne: groupMemberTask.userId } },
- ],
- }).exec();
-}
-
-async function _evaluateAllAssignedCompletion (masterTask) {
- let completions;
- if (masterTask.group.approval && masterTask.group.approval.required) {
- completions = await Tasks.Task.countDocuments({
- 'group.taskId': masterTask._id,
- 'group.approval.approved': true,
- }).exec();
- } else {
- completions = await Tasks.Task.countDocuments({
- 'group.taskId': masterTask._id,
- completed: true,
- }).exec();
- }
- if (completions >= masterTask.group.assignedUsers.length) {
- await _completeMasterTask(masterTask);
- }
-}
-
-async function handleSharedCompletion (masterTask, groupMemberTask) {
- if (masterTask.type !== 'todo') return;
-
- if (masterTask.group.sharedCompletion === SHARED_COMPLETION.single) {
- await _deleteUnfinishedTasks(groupMemberTask);
- await _completeMasterTask(masterTask);
- } else if (masterTask.group.sharedCompletion === SHARED_COMPLETION.every) {
- await _evaluateAllAssignedCompletion(masterTask);
+async function handleSharedCompletion (teamTask) {
+ if (teamTask.type === 'reward') return;
+ const incompleteTask = await Tasks.Task.findOne({
+ 'group.taskId': teamTask._id,
+ userId: { $exists: true },
+ completed: false,
+ }, { _id: 1 }).exec();
+ if (!incompleteTask) {
+ teamTask.completed = true;
+ teamTask.save();
}
}
export {
- SHARED_COMPLETION,
handleSharedCompletion,
};
diff --git a/website/server/libs/payments/groupPayments.js b/website/server/libs/payments/groupPayments.js
index cae19cccd7..3587c7585e 100644
--- a/website/server/libs/payments/groupPayments.js
+++ b/website/server/libs/payments/groupPayments.js
@@ -3,6 +3,7 @@ import _ from 'lodash';
import moment from 'moment';
import { model as User } from '../../models/user'; // eslint-disable-line import/no-cycle
+import * as Tasks from '../../models/task'; // eslint-disable-line import/no-cycle
import { // eslint-disable-line import/no-cycle
model as Group,
basicFields as basicGroupFields,
@@ -220,6 +221,8 @@ async function cancelGroupSubscriptionForUser (user, group, userWasRemoved = fal
const index = userGroups.indexOf(group._id);
if (index >= 0) userGroups.splice(index, 1);
+ await Tasks.Task.remove({ userId: user._id, 'group.id': group._id }).exec();
+
const groupPlansQuery = {
// type: { $in: ['guild', 'party'] },
// privacy: 'private',
diff --git a/website/server/libs/spells.js b/website/server/libs/spells.js
index 9319205ab4..4a132f290b 100644
--- a/website/server/libs/spells.js
+++ b/website/server/libs/spells.js
@@ -21,8 +21,8 @@ async function castTaskSpell (res, req, targetId, user, spell, quantity = 1) {
if (!targetId) throw new BadRequest(res.t('targetIdUUID'));
const task = await Tasks.Task.findOne({
- _id: targetId,
userId: user._id,
+ _id: targetId,
}).exec();
if (!task) throw new NotFound(res.t('messageTaskNotFound'));
if (task.challenge.id) throw new BadRequest(res.t('challengeTasksNoCast'));
diff --git a/website/server/libs/tasks/index.js b/website/server/libs/tasks/index.js
index e743967137..d32280fd3c 100644
--- a/website/server/libs/tasks/index.js
+++ b/website/server/libs/tasks/index.js
@@ -1,5 +1,9 @@
import moment from 'moment';
-import _ from 'lodash';
+import cloneDeep from 'lodash/cloneDeep';
+import compact from 'lodash/compact';
+import forEach from 'lodash/forEach';
+import keys from 'lodash/keys';
+import remove from 'lodash/remove';
import validator from 'validator';
import {
setNextDue,
@@ -17,7 +21,6 @@ import {
NotAuthorized,
} from '../errors';
import {
- SHARED_COMPLETION,
handleSharedCompletion,
} from '../groupTasks';
import shared from '../../../common';
@@ -64,10 +67,7 @@ async function createTasks (req, res, options = {}) {
newTask.challenge.id = challenge.id;
} else if (group) {
newTask.group.id = group._id;
- if (taskData.requiresApproval) {
- newTask.group.approval.required = true;
- }
- newTask.group.sharedCompletion = taskData.sharedCompletion || SHARED_COMPLETION.default;
+ newTask.tags = [group._id];
newTask.group.managerNotes = taskData.managerNotes || '';
} else {
newTask.userId = user._id;
@@ -152,23 +152,60 @@ async function getTasks (req, res, options = {}) {
dueDate,
} = options;
- let query = { userId: user._id };
+ let query;
let limit;
let sort;
+ let upgradedGroups = [];
+ const upgradedGroupIds = [];
const owner = group || challenge || user;
if (challenge) {
query = { 'challenge.id': challenge.id, userId: { $exists: false } };
} else if (group) {
- query = { 'group.id': group._id, userId: { $exists: false } };
+ query = { 'group.id': group._id };
+ } else {
+ const groupsToMirror = user.preferences.tasks.mirrorGroupTasks;
+ if (groupsToMirror && groupsToMirror.length > 0) {
+ upgradedGroups = await Group.find(
+ {
+ _id: { $in: groupsToMirror },
+ 'purchased.plan.customerId': { $exists: true },
+ $or: [
+ { 'purchased.plan.dateTerminated': { $exists: false } },
+ { 'purchased.plan.dateTerminated': null },
+ { 'purchased.plan.dateTerminated': { $gt: new Date() } },
+ ],
+ },
+ { _id: 1 },
+ ).exec();
+ }
+ if (upgradedGroups.length > 0) {
+ for (const upgradedGroup of upgradedGroups) {
+ upgradedGroupIds.push(upgradedGroup._id);
+ }
+ query = {
+ $or: [
+ { userId: user._id },
+ {
+ 'group.id': { $in: upgradedGroupIds },
+ $or: [
+ { 'group.assignedUsers': user._id },
+ { 'group.assignedUsers.0': { $exists: false } },
+ ],
+ },
+ ],
+ };
+ } else {
+ query = { userId: user._id };
+ }
}
const { type } = req.query;
if (type) {
if (type === 'todos') {
- query.completed = false; // Exclude completed todos
query.type = 'todo';
+ query.completed = false; // Exclude completed todos
} else if (type === 'completedTodos' || type === '_allCompletedTodos') { // _allCompletedTodos is currently in BETA and is likely to be removed in future
limit = 30;
@@ -179,7 +216,18 @@ async function getTasks (req, res, options = {}) {
query.type = 'todo';
query.completed = true;
- if (owner._id === user._id) {
+ if (upgradedGroups.length > 0) {
+ query.$or = [
+ { userId: user._id },
+ {
+ 'group.id': { $in: upgradedGroupIds },
+ $or: [
+ { 'group.assignedUsers': user._id },
+ { 'group.completedBy.userId': user._id },
+ ],
+ },
+ ];
+ } else if (owner._id === user._id) {
query.userId = user._id;
}
@@ -190,10 +238,12 @@ async function getTasks (req, res, options = {}) {
query.type = type.slice(0, -1); // removing the final "s"
}
} else {
- query.$or = [ // Exclude completed todos
- { type: 'todo', completed: false },
- { type: { $in: ['habit', 'daily', 'reward'] } },
- ];
+ query.$and = [{
+ $or: [ // Exclude completed todos
+ { type: 'todo', completed: false },
+ { type: { $in: ['habit', 'daily', 'reward'] } },
+ ],
+ }];
}
const mQuery = Tasks.Task.find(query);
@@ -208,6 +258,19 @@ async function getTasks (req, res, options = {}) {
});
}
+ let ownerDirty = false;
+ // Prune nonexistent tasks from tasksOrder
+ forEach(owner.tasksOrder, (taskOrder, key) => {
+ if (type && key.slice(0, -1) !== type) return;
+ const preLength = taskOrder.length;
+ remove(taskOrder, taskId => tasks.findIndex(task => task._id === taskId) === -1);
+ if (preLength !== taskOrder.length) {
+ owner.tasksOrder[key] = taskOrder;
+ owner.markModified('tasksOrder');
+ ownerDirty = true;
+ }
+ });
+
// Order tasks based on tasksOrder
let order = [];
if (type && type !== 'completedTodos' && type !== '_allCompletedTodos') {
@@ -228,13 +291,18 @@ async function getTasks (req, res, options = {}) {
const i = order[index] === taskId ? index : order.indexOf(taskId);
if (i === -1) {
unorderedTasks.push(task);
+ const typeString = `${task.type}s`;
+ owner.tasksOrder[typeString].push(taskId);
+ ownerDirty = true;
} else {
orderedTasks[i] = task;
}
});
+ if (ownerDirty) await owner.save();
+
// Remove empty values from the array and add any unordered task
- orderedTasks = _.compact(orderedTasks).concat(unorderedTasks);
+ orderedTasks = compact(orderedTasks).concat(unorderedTasks);
return orderedTasks;
}
@@ -301,22 +369,23 @@ async function handleChallengeTask (task, delta, direction) {
}
}
-async function handleGroupTask (task, delta, direction) {
+async function handleTeamTask (task, delta, direction) {
if (task.group && task.group.taskId) {
// Wrapping everything in a try/catch block because if an error occurs
// using `await` it MUST NOT bubble up because the request has already been handled
try {
- const groupTask = await Tasks.Task.findOne({
+ const teamTask = await Tasks.Task.findOne({
_id: task.group.taskId,
}).exec();
- if (groupTask) {
- await handleSharedCompletion(groupTask, task);
-
- const groupDelta = groupTask.group.assignedUsers
- ? delta / groupTask.group.assignedUsers.length
+ if (teamTask) {
+ const groupDelta = teamTask.group.assignedUsers
+ ? delta / keys(teamTask.group.assignedUsers).length
: delta;
- await groupTask.scoreChallengeTask(groupDelta, direction);
+ await teamTask.scoreChallengeTask(groupDelta, direction);
+ if (task.type === 'daily' || task.type === 'todo') {
+ await handleSharedCompletion(teamTask);
+ }
}
} catch (e) {
logger.error(e, 'Error scoring group task');
@@ -334,106 +403,96 @@ async function handleGroupTask (task, delta, direction) {
*/
async function scoreTask (user, task, direction, req, res) {
if (task.type === 'daily' || task.type === 'todo') {
- if (task.completed && direction === 'up') {
+ if (task.group.id && task.group.assignedUsersDetail
+ && task.group.assignedUsersDetail[user._id]
+ ) {
+ if (task.group.assignedUsersDetail[user._id].completed && direction === 'up') {
+ throw new NotAuthorized(res.t('sessionOutdated'));
+ } else if (!task.group.assignedUsersDetail[user._id].completed && direction === 'down') {
+ throw new NotAuthorized(res.t('sessionOutdated'));
+ }
+ } else if (task.completed && direction === 'up') {
throw new NotAuthorized(res.t('sessionOutdated'));
} else if (!task.completed && direction === 'down') {
throw new NotAuthorized(res.t('sessionOutdated'));
}
}
- if (task.group.approval.required && !task.group.approval.approved) {
- const fields = requiredGroupFields.concat(' managers');
- const group = await Group.getGroup({ user, groupId: task.group.id, fields });
+ let rollbackUser;
+ let group;
- const managerIds = Object.keys(group.managers);
- managerIds.push(group.leader);
-
- if (managerIds.indexOf(user._id) !== -1) {
- task.group.approval.approved = true;
- task.group.approval.requested = true;
- task.group.approval.requestedDate = new Date();
- } else {
- if (task.group.approval.requested) {
- return {
- task,
- requiresApproval: true,
- message: res.t('taskRequiresApproval'),
- };
- }
-
- task.group.approval.requested = true;
- task.group.approval.requestedDate = new Date();
-
- const managers = await User.find({ _id: managerIds }, 'notifications preferences').exec(); // Use this method so we can get access to notifications
-
- // @TODO: we can use the User.pushNotification function because
- // we need to ensure notifications are translated
- const managerPromises = [];
- managers.forEach(manager => {
- manager.addNotification('GROUP_TASK_APPROVAL', {
- message: res.t('userHasRequestedTaskApproval', {
- user: user.profile.name,
- taskName: task.text,
- }, manager.preferences.language),
- groupId: group._id,
- // user task id, used to match the notification when the task is approved
- taskId: task._id,
- userId: user._id,
- groupTaskId: task.group.taskId, // the original task id
- direction,
- });
- managerPromises.push(manager.save());
- });
-
- managerPromises.push(task.save());
- await Promise.all(managerPromises);
-
- return {
- task,
- requiresApproval: true,
- message: res.t('taskApprovalHasBeenRequested'),
- };
- }
+ if (task.group.id) {
+ group = await Group.getGroup({
+ user,
+ groupId: task.group.id,
+ fields: 'leader managers',
+ });
}
-
- if (task.group.approval.required && task.group.approval.approved) {
- const notificationIndex = user.notifications.findIndex(notification => notification
- && notification.data && notification.data.task
- && notification.data.task._id === task._id && notification.type === 'GROUP_TASK_APPROVED');
-
- if (notificationIndex !== -1) {
- user.notifications.splice(notificationIndex, 1);
+ if (
+ group && task.group.id && !task.userId // Task is on team board
+ && ['todo', 'daily'].includes(task.type) // Task is a To Do or Daily
+ && direction === 'down' // Task is being "unchecked"
+ ) {
+ const userIsManagement = group.leader === user._id || Boolean(group.managers[user._id]);
+ if (!userIsManagement
+ && !(task.group.completedBy && task.group.completedBy.userId === user._id)
+ && !(task.group.assignedUsersDetail && task.group.assignedUsersDetail[user._id])
+ ) {
+ throw new BadRequest('Cannot uncheck task you did not complete if not a manager.');
}
+ if (task.group.assignedUsers && keys(task.group.assignedUsers).length === 1) {
+ const rollbackUserId = keys(task.group.assignedUsers)[0];
+ rollbackUser = await User.findOne({ _id: rollbackUserId });
+ } else {
+ rollbackUser = await User.findOne({ _id: task.group.completedBy.userId });
+ }
+ task.group.completedBy = {};
}
const wasCompleted = task.completed;
-
const firstTask = !user.achievements.completedTask;
- const delta = shared.ops.scoreTask({ task, user, direction }, req, res.analytics);
+ let delta;
+
+ if (rollbackUser) {
+ delta = shared.ops.scoreTask({
+ task,
+ user: rollbackUser,
+ direction,
+ }, req, res.analytics);
+ await rollbackUser.save();
+ } else {
+ delta = shared.ops.scoreTask({ task, user, direction }, req, res.analytics);
+ }
// Drop system (don't run on the client,
// as it would only be discarded since ops are sent to the API, not the results)
if (direction === 'up' && !firstTask) shared.fns.randomDrop(user, { task, delta }, req, res.analytics);
// If a todo was completed or uncompleted move it in or out of the user.tasksOrder.todos list
// TODO move to common code?
- let pullTask = false;
- let pushTask = false;
+ let pullTask;
+ let pushTask;
if (task.type === 'todo') {
if (!wasCompleted && task.completed) {
// @TODO: mongoose's push and pull should be atomic and help with
// our concurrency issues. If not, we need to use this update $pull and $push
- pullTask = true;
- // user.tasksOrder.todos.pull(task._id);
+ pullTask = task._id;
} else if (
wasCompleted
&& !task.completed
&& user.tasksOrder.todos.indexOf(task._id) === -1
) {
- pushTask = true;
- // user.tasksOrder.todos.push(task._id);
+ pushTask = task._id;
}
}
+ if (task.completed && task.group.id
+ && !task.userId && !task.group.assignedUsers) {
+ task.group.completedBy = {
+ userId: user._id,
+ date: new Date(),
+ };
+ }
+
setNextDue(task, user);
taskScoredWebhook.send(user, {
@@ -443,6 +502,27 @@ async function scoreTask (user, task, direction, req, res) {
user,
});
+ if (group) {
+ let role;
+ if (group.leader === user._id) {
+ role = 'leader';
+ } else if (group.managers[user._id]) {
+ role = 'manager';
+ } else {
+ role = 'member';
+ }
+ res.analytics.track('team task scored', {
+ uuid: user._id,
+ hitType: 'event',
+ category: 'behavior',
+ taskType: task.type,
+ direction,
+ headers: req.headers,
+ groupID: group._id,
+ role,
+ });
+ }
+
return {
task,
delta,
@@ -451,7 +531,7 @@ async function scoreTask (user, task, direction, req, res) {
pushTask,
// clone user._tmp so that it's not overwritten by other score operations
// when using the bulk scoring API
- _tmp: _.cloneDeep(user._tmp),
+ _tmp: cloneDeep(user._tmp),
};
}
@@ -519,8 +599,8 @@ export async function scoreTasks (user, taskScorings, req, res) {
const pushIDs = [];
returnDatas.forEach(returnData => {
- if (returnData.pushTask === true) pushIDs.push(returnData.task._id);
- if (returnData.pullTask === true) pullIDs.push(returnData.task._id);
+ if (returnData.pushTask) pushIDs.push(returnData.pushTask);
+ if (returnData.pullTask) pullIDs.push(returnData.pullTask);
});
const moveUpdateObject = {};
@@ -535,14 +615,7 @@ export async function scoreTasks (user, taskScorings, req, res) {
return returnDatas.map(data => {
// Handle challenge and group tasks tasks here because the task must have been saved first
handleChallengeTask(data.task, data.delta, data.direction);
- handleGroupTask(data.task, data.delta, data.direction);
-
- // Handle group tasks that require approval
- if (data.requiresApproval === true) {
- return {
- id: data.task._id, message: data.message, requiresApproval: true,
- };
- }
+ handleTeamTask(data.task, data.delta, data.direction);
return { id: data.task._id, delta: data.delta, _tmp: data._tmp };
});
diff --git a/website/server/libs/user/index.js b/website/server/libs/user/index.js
index f2aa73df69..35068ad3f9 100644
--- a/website/server/libs/user/index.js
+++ b/website/server/libs/user/index.js
@@ -1,6 +1,7 @@
import _ from 'lodash';
import common from '../../../common';
import * as Tasks from '../../models/task';
+import { model as Groups } from '../../models/group';
import {
BadRequest,
NotAuthorized,
@@ -132,6 +133,34 @@ export async function update (req, res, { isV3 = false }) {
await checkNewInputForProfanity(user, res, newBlurb);
}
+ if (req.body['preferences.tasks.mirrorGroupTasks'] !== undefined) {
+ const groupsToMirror = req.body['preferences.tasks.mirrorGroupTasks'];
+ if (!Array.isArray(groupsToMirror)) {
+ throw new BadRequest('Groups to copy tasks from must be an array.');
+ }
+ const memberGroups = _.clone(user.guilds);
+ if (user.party._id) memberGroups.push(user.party._id);
+ for (const targetGroup of groupsToMirror) {
+ if (memberGroups.indexOf(targetGroup) === -1) {
+ throw new BadRequest(`User not a member of group ${targetGroup}.`);
+ }
+ }
+
+ const matchingGroupsCount = await Groups.countDocuments({
+ _id: { $in: groupsToMirror },
+ 'purchased.plan.customerId': { $exists: true },
+ $or: [
+ { 'purchased.plan.dateTerminated': { $exists: false } },
+ { 'purchased.plan.dateTerminated': null },
+ { 'purchased.plan.dateTerminated': { $gt: new Date() } },
+ ],
+ }).exec();
+
+ if (matchingGroupsCount !== groupsToMirror.length) {
+ throw new BadRequest('Groups to copy tasks from must have subscriptions.');
+ }
+ }
+
_.each(req.body, (val, key) => {
const purchasable = requiresPurchase[key];
@@ -140,7 +169,7 @@ export async function update (req, res, { isV3 = false }) {
}
if (key === 'tags') {
- if (!Array.isArray(val)) throw new BadRequest('mustBeArray');
+ if (!Array.isArray(val)) throw new BadRequest('Tag list must be an array.');
const removedTagsIds = [];
diff --git a/website/server/middlewares/cron.js b/website/server/middlewares/cron.js
index 664d65cc3e..7c837c9632 100644
--- a/website/server/middlewares/cron.js
+++ b/website/server/middlewares/cron.js
@@ -77,7 +77,7 @@ async function cronAsync (req, res) {
userId: user._id,
$or: [ // Exclude completed todos
{ type: 'todo', completed: false },
- { type: { $in: ['habit', 'daily', 'reward'] } },
+ { type: { $in: ['habit', 'daily'] } },
],
}).exec();
@@ -117,19 +117,8 @@ async function cronAsync (req, res) {
// Save user and tasks
const toSave = [user.save()];
- tasks.forEach(async task => {
+ tasks.forEach(task => {
if (task.isModified()) toSave.push(task.save());
- if (task.isModified() && task.group && task.group.taskId) {
- const groupTask = await Tasks.Task.findOne({
- _id: task.group.taskId,
- }).exec();
-
- if (groupTask) {
- let delta = (0.9747 ** task.value) * -1;
- if (groupTask.group.assignedUsers) delta /= groupTask.group.assignedUsers.length;
- await groupTask.scoreChallengeTask(delta, 'down');
- }
- }
});
await Promise.all(toSave);
diff --git a/website/server/models/group.js b/website/server/models/group.js
index 6ccf73613f..1c770823b6 100644
--- a/website/server/models/group.js
+++ b/website/server/models/group.js
@@ -29,9 +29,6 @@ import {
import baseModel from '../libs/baseModel';
import { sendTxn as sendTxnEmail } from '../libs/email'; // eslint-disable-line import/no-cycle
import { sendNotification as sendPushNotification } from '../libs/pushNotifications'; // eslint-disable-line import/no-cycle
-import { // eslint-disable-line import/no-cycle
- syncableAttrs,
-} from '../libs/tasks/utils';
import {
schema as SubscriptionPlanSchema,
} from './subscriptionPlan';
@@ -144,6 +141,9 @@ export const schema = new Schema({
slug: { $type: String },
name: { $type: String },
}],
+ cron: {
+ lastProcessed: { $type: Date },
+ },
}, {
strict: true,
minimize: false, // So empty objects are returned
@@ -1386,10 +1386,13 @@ schema.methods.leave = async function leaveGroup (user, keep = 'keep-all', keepC
const promises = user.isModified() ? [user.save()] : [];
// remove the group from the user's groups
+ const userUpdate = { $pull: { 'preferences.tasks.mirrorGroupTasks': group._id } };
if (group.type === 'guild') {
- promises.push(User.update({ _id: user._id }, { $pull: { guilds: group._id } }).exec());
+ userUpdate.$pull.guilds = group._id;
+ promises.push(User.update({ _id: user._id }, userUpdate).exec());
} else {
- promises.push(User.update({ _id: user._id }, { $set: { party: {} } }).exec());
+ userUpdate.$set = { party: {} };
+ promises.push(User.update({ _id: user._id }, userUpdate).exec());
update.$unset = { [`quest.members.${user._id}`]: 1 };
}
@@ -1441,132 +1444,50 @@ schema.methods.unlinkTags = function unlinkTags (user) {
});
};
-/**
- * Updates all linked tasks for a group task
- *
- * @param taskToSync The group task that will be synced
- * @param options.newCheckListItem The new checklist item
- * that needs to be synced to all assigned users
- * @param options.removedCheckListItem The removed checklist item that
- * needs to be removed from all assigned users
- *
- * @return The created tasks
- */
-schema.methods.updateTask = async function updateTask (taskToSync, options = {}) {
- const group = this;
-
- const updateCmd = { $set: {} };
-
- const syncableAttributes = syncableAttrs(taskToSync);
- for (const key of Object.keys(syncableAttributes)) {
- updateCmd.$set[key] = syncableAttributes[key];
- }
-
- updateCmd.$set['group.approval.required'] = taskToSync.group.approval.required;
- updateCmd.$set['group.assignedUsers'] = taskToSync.group.assignedUsers;
- updateCmd.$set['group.sharedCompletion'] = taskToSync.group.sharedCompletion;
- updateCmd.$set['group.managerNotes'] = taskToSync.group.managerNotes;
-
- const taskSchema = Tasks[taskToSync.type];
-
- const updateQuery = {
- userId: { $exists: true },
- 'group.id': group.id,
- 'group.taskId': taskToSync._id,
- };
-
- if (options.newCheckListItem) {
- const newCheckList = { completed: false };
- newCheckList.linkId = options.newCheckListItem.id;
- newCheckList.text = options.newCheckListItem.text;
- updateCmd.$push = { checklist: newCheckList };
- }
-
- if (options.removedCheckListItemId) {
- updateCmd.$pull = { checklist: { linkId: { $in: [options.removedCheckListItemId] } } };
- }
-
- if (options.updateCheckListItems) {
- updateCmd.$set.checklist = taskToSync.checklist;
- }
-
- // Updating instead of loading and saving for performances,
- // risks becoming a problem if we introduce more complexity in tasks
- await taskSchema.update(updateQuery, updateCmd, { multi: true }).exec();
-};
-
-schema.methods.syncTask = async function groupSyncTask (taskToSync, user, assigningUser) {
+schema.methods.syncTask = async function groupSyncTask (taskToSync, users, assigningUser) {
const group = this;
const toSave = [];
+ for (const user of users) {
+ const assignmentData = {
+ assignedDate: new Date(),
+ assignedUsername: user.auth.local.username,
+ assigningUsername: assigningUser.auth.local.username,
+ completed: false,
+ };
- if (taskToSync.group.assignedUsers.indexOf(user._id) === -1) {
- taskToSync.group.assignedUsers.push(user._id);
- }
-
- // Sync tags
- const userTags = user.tags;
- const i = _.findIndex(userTags, { id: group._id });
-
- if (i !== -1) {
- if (userTags[i].name !== group.name) {
- // update the name - it's been changed since
- userTags[i].name = group.name;
- userTags[i].group = group._id;
+ if (!taskToSync.group.assignedUsers) {
+ taskToSync.group.assignedUsers = [];
}
- } else {
- userTags.push({
- id: group._id,
- name: group.name,
- group: group._id,
- });
+ taskToSync.group.assignedUsers.push(user._id);
+
+ if (!taskToSync.group.assignedUsersDetail) {
+ taskToSync.group.assignedUsersDetail = {};
+ }
+ if (!taskToSync.group.assignedUsersDetail[user._id]) {
+ taskToSync.group.assignedUsersDetail[user._id] = assignmentData;
+ }
+ taskToSync.markModified('group.assignedUsersDetail');
+
+ // Sync tags
+ const userTags = user.tags;
+ const i = _.findIndex(userTags, { id: group._id });
+
+ if (i !== -1) {
+ if (userTags[i].name !== group.name) {
+ // update the name - it's been changed since
+ userTags[i].name = group.name;
+ userTags[i].group = group._id;
+ }
+ } else {
+ userTags.push({
+ id: group._id,
+ name: group.name,
+ group: group._id,
+ });
+ }
+ toSave.push(user.save());
}
-
- const findQuery = {
- 'group.taskId': taskToSync._id,
- userId: user._id,
- 'group.id': group._id,
- };
-
- let matchingTask = await Tasks.Task.findOne(findQuery).exec();
-
- if (!matchingTask) { // If the task is new, create it
- matchingTask = new Tasks[taskToSync.type](Tasks.Task.sanitize(syncableAttrs(taskToSync)));
- matchingTask.group.id = taskToSync.group.id;
- matchingTask.userId = user._id;
- matchingTask.group.taskId = taskToSync._id;
- matchingTask.group.assignedDate = new Date();
- user.tasksOrder[`${taskToSync.type}s`].unshift(matchingTask._id);
- } else {
- _.merge(matchingTask, syncableAttrs(taskToSync));
- // Make sure the task is in user.tasksOrder
- const orderList = user.tasksOrder[`${taskToSync.type}s`];
- if (orderList.indexOf(matchingTask._id) === -1 && (matchingTask.type !== 'todo' || !matchingTask.completed)) orderList.push(matchingTask._id);
- }
-
- matchingTask.group.approval.required = taskToSync.group.approval.required;
- matchingTask.group.assignedUsers = taskToSync.group.assignedUsers;
- matchingTask.group.sharedCompletion = taskToSync.group.sharedCompletion;
- matchingTask.group.managerNotes = taskToSync.group.managerNotes;
- if (assigningUser && user._id !== assigningUser._id) {
- matchingTask.group.assigningUsername = assigningUser.auth.local.username;
- }
-
- // sync checklist
- if (taskToSync.checklist) {
- taskToSync.checklist.forEach(element => {
- const newCheckList = { completed: false };
- newCheckList.linkId = element.id;
- newCheckList.text = element.text;
- matchingTask.checklist.push(newCheckList);
- });
- }
-
- // don't override the notes, but provide it if not provided
- if (!matchingTask.notes) matchingTask.notes = taskToSync.notes;
- // add tag if missing
- if (matchingTask.tags.indexOf(group._id) === -1) matchingTask.tags.push(group._id);
-
- toSave.push(matchingTask.save(), taskToSync.save(), user.save());
+ toSave.push(taskToSync.save());
return Promise.all(toSave);
};
@@ -1576,11 +1497,15 @@ schema.methods.unlinkTask = async function groupUnlinkTask (
) {
const findQuery = {
'group.taskId': unlinkingTask._id,
- userId: user._id,
+ 'group.assignedUsers': user._id,
};
+ delete unlinkingTask.group.assignedUsersDetail[user._id];
const assignedUserIndex = unlinkingTask.group.assignedUsers.indexOf(user._id);
unlinkingTask.group.assignedUsers.splice(assignedUserIndex, 1);
+ unlinkingTask.markModified('group');
+
+ const promises = [unlinkingTask.save()];
if (keep === 'keep-all') {
await Tasks.Task.update(findQuery, {
@@ -1598,16 +1523,14 @@ schema.methods.unlinkTask = async function groupUnlinkTask (
user.markModified('tasksOrder');
}
- const promises = [unlinkingTask.save()];
if (task) {
promises.push(task.remove());
}
// When multiple tasks are being unlinked at the same time,
// save the user once outside of this function
if (saveUser) promises.push(user.save());
-
- await Promise.all(promises);
}
+ await Promise.all(promises);
};
schema.methods.removeTask = async function groupRemoveTask (task) {
diff --git a/website/server/models/task.js b/website/server/models/task.js
index 604de20ca9..f9601cd10c 100644
--- a/website/server/models/task.js
+++ b/website/server/models/task.js
@@ -5,7 +5,6 @@ import _ from 'lodash';
import shared from '../../common';
import baseModel from '../libs/baseModel';
import { preenHistory } from '../libs/preening';
-import { SHARED_COMPLETION } from '../libs/groupTasks'; // eslint-disable-line import/no-cycle
const { Schema } = mongoose;
@@ -128,25 +127,24 @@ export const TaskSchema = new Schema({
group: {
id: { $type: String, ref: 'Group', validate: [v => validator.isUUID(v), 'Invalid uuid for group task.'] },
- broken: { $type: String, enum: ['GROUP_DELETED', 'TASK_DELETED', 'UNSUBSCRIBED'] },
+ assignedDate: { $type: Date }, // To be removed
+ assigningUsername: { $type: String }, // To be removed
assignedUsers: [{ $type: String, ref: 'User', validate: [v => validator.isUUID(v), 'Invalid uuid for group assigned user.'] }],
- assignedDate: { $type: Date },
- assigningUsername: { $type: String },
+ assignedUsersDetail: {
+ $type: Schema.Types.Mixed,
+ // key is assigned UUID, with
+ // { assignedDate: Date,
+ // assignedUsername: '@username',
+ // assigningUsername: '@username',
+ // completed: Boolean,
+ // completedDate: Date }
+ },
taskId: { $type: String, ref: 'Task', validate: [v => validator.isUUID(v), 'Invalid uuid for group task.'] },
- approval: {
- required: { $type: Boolean, default: false },
- approved: { $type: Boolean, default: false },
- dateApproved: { $type: Date },
- approvingUser: { $type: String, ref: 'User', validate: [v => validator.isUUID(v), 'Invalid uuid for group approving user.'] },
- requested: { $type: Boolean, default: false },
- requestedDate: { $type: Date },
- },
- sharedCompletion: {
- $type: String,
- enum: _.values(SHARED_COMPLETION),
- default: SHARED_COMPLETION.single,
- },
managerNotes: { $type: String },
+ completedBy: {
+ userId: { $type: String, ref: 'User', validate: [v => validator.isUUID(v), 'Invalid uuid for task completing user.'] },
+ date: { $type: Date },
+ },
},
reminders: [reminderSchema],
@@ -207,7 +205,7 @@ TaskSchema.statics.findByIdOrAlias = async function findByIdOrAlias (
return task;
};
-TaskSchema.statics.findMultipleByIdOrAlias = async function findByIdOrAlias (
+TaskSchema.statics.findMultipleByIdOrAlias = async function findMultipleByIdOrAlias (
identifiers,
userId,
additionalQueries = {},
@@ -216,8 +214,6 @@ TaskSchema.statics.findMultipleByIdOrAlias = async function findByIdOrAlias (
if (!userId) throw new Error('User identifier is a required argument');
const query = _.cloneDeep(additionalQueries);
- query.userId = userId;
-
const ids = [];
const aliases = [];
@@ -229,10 +225,20 @@ TaskSchema.statics.findMultipleByIdOrAlias = async function findByIdOrAlias (
}
});
- query.$or = [
- { _id: { $in: ids } },
- { alias: { $in: aliases } },
- ];
+ if (ids.length > 0 && aliases.length > 0) {
+ query.userId = userId;
+ query.$or = [
+ { _id: { $in: ids } },
+ { alias: { $in: aliases } },
+ ];
+ } else if (ids.length > 0) {
+ query._id = { $in: ids };
+ } else if (aliases.length > 0) {
+ query.userId = userId;
+ query.alias = { $in: aliases };
+ } else {
+ throw new Error('No identifiers found.'); // Should be covered by the !identifiers check, but..
+ }
const tasks = await this.find(query).exec();
diff --git a/website/server/models/user/methods.js b/website/server/models/user/methods.js
index 2c7c9d591d..f339cff896 100644
--- a/website/server/models/user/methods.js
+++ b/website/server/models/user/methods.js
@@ -1,6 +1,6 @@
import moment from 'moment';
import {
- defaults, map, flatten, flow, compact, uniq, partialRight,
+ defaults, map, flatten, flow, compact, uniq, partialRight, remove,
} from 'lodash';
import common from '../../../common';
@@ -502,6 +502,21 @@ schema.methods.isMemberOfGroupPlan = async function isMemberOfGroupPlan () {
return groups.some(g => g.hasActiveGroupPlan());
};
+schema.methods.teamsLed = async function teamsLed () {
+ const user = this;
+ const groups = await getUserGroupData(user);
+
+ remove(groups, group => !group.hasActiveGroupPlan);
+ remove(groups, group => user._id !== group.leader);
+
+ const groupIds = [];
+ groups.forEach(group => {
+ groupIds.push(group._id);
+ });
+
+ return groupIds;
+};
+
schema.methods.isAdmin = function isAdmin () {
return Boolean(this.contributor && this.contributor.admin);
};
diff --git a/website/server/models/user/schema.js b/website/server/models/user/schema.js
index 868c158a6c..3e0b4b84c0 100644
--- a/website/server/models/user/schema.js
+++ b/website/server/models/user/schema.js
@@ -150,6 +150,7 @@ export default new Schema({
zodiacZookeeper: Boolean,
birdsOfAFeather: Boolean,
reptacularRumble: Boolean,
+ woodlandWizard: Boolean,
// Onboarding Guide
createdTask: Boolean,
completedTask: Boolean,
@@ -235,6 +236,7 @@ export default new Schema({
mounts: { $type: Number, default: -1 },
hall: { $type: Number, default: -1 },
equipment: { $type: Number, default: -1 },
+ groupPlans: { $type: Number, default: -1 },
},
tutorial: {
common: {
@@ -582,6 +584,9 @@ export default new Schema({
tasks: {
groupByChallenge: { $type: Boolean, default: false }, // @TODO remove? not used
confirmScoreNotes: { $type: Boolean, default: false }, // @TODO remove? not used
+ mirrorGroupTasks: [
+ { $type: String, validate: [v => validator.isUUID(v), 'Invalid group UUID.'], ref: 'Group' },
+ ],
},
improvementCategories: {
$type: Array,