Merge branch 'release' into develop

This commit is contained in:
Sabe Jones
2018-06-19 23:33:19 +00:00
181 changed files with 10773 additions and 9329 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ RUN npm install -g gulp-cli mocha
# Clone Habitica repo and install dependencies
RUN mkdir -p /usr/src/habitrpg
WORKDIR /usr/src/habitrpg
RUN git clone --branch v4.45.1 https://github.com/HabitRPG/habitica.git /usr/src/habitrpg
RUN git clone --branch v4.46.2 https://github.com/HabitRPG/habitica.git /usr/src/habitrpg
RUN npm install
RUN gulp build:prod --force
+2 -1
View File
@@ -112,5 +112,6 @@
"CLOUDKARAFKA_USERNAME": "",
"CLOUDKARAFKA_PASSWORD": "",
"CLOUDKARAFKA_TOPIC_PREFIX": ""
}
},
"MIGRATION_CONNECT_STRING": "mongodb://localhost:27017/habitrpg?auto_reconnect=true"
}
@@ -0,0 +1,107 @@
import monk from 'monk';
import nconf from 'nconf';
import stripePayments from '../../website/server/libs/payments/stripe';
/*
* Ensure that group plan billing is accurate by doing the following:
* 1. Correct the memberCount in all paid groups whose counts are wrong
* 2. Where the above uses Stripe, update their subscription counts in Stripe
*
* Provides output on what groups were fixed, which can be piped to CSV.
*/
const CONNECTION_STRING = nconf.get('MIGRATION_CONNECT_STRING');
let dbGroups = monk(CONNECTION_STRING).get('groups', { castIds: false });
let dbUsers = monk(CONNECTION_STRING).get('users', { castIds: false });
async function fixGroupPlanMembers () {
console.info('Group ID, Customer ID, Plan ID, Quantity, Recorded Member Count, Actual Member Count');
let groupPlanCount = 0;
let fixedGroupCount = 0;
dbGroups.find(
{
$and:
[
{'purchased.plan.planId': {$ne: null}},
{'purchased.plan.planId': {$ne: ''}},
{'purchased.plan.customerId': {$ne: 'cus_9f0DV4g7WHRzpM'}}, // Demo groups
{'purchased.plan.customerId': {$ne: 'cus_9maalqDOFTrvqx'}},
],
$or:
[
{'purchased.plan.dateTerminated': null},
{'purchased.plan.dateTerminated': ''},
],
},
{
fields: {
memberCount: 1,
'purchased.plan': 1,
},
}
).each(async (group, {close, pause, resume}) => { // eslint-disable-line no-unused-vars
pause();
groupPlanCount++;
const canonicalMemberCount = await dbUsers.count(
{
$or:
[
{'party._id': group._id},
{guilds: group._id},
],
}
);
const incorrectMemberCount = group.memberCount !== canonicalMemberCount;
const isMonthlyPlan = group.purchased.plan.planId === 'group_monthly';
const quantityMismatch = group.purchased.plan.quantity !== group.memberCount + 2;
const incorrectQuantity = isMonthlyPlan && quantityMismatch;
if (!incorrectMemberCount && !incorrectQuantity) {
resume();
return;
}
console.info(`${group._id}, ${group.purchased.plan.customerId}, ${group.purchased.plan.planId}, ${group.purchased.plan.quantity}, ${group.memberCount}, ${canonicalMemberCount}`);
const groupUpdate = await dbGroups.update(
{ _id: group._id },
{
$set: {
memberCount: canonicalMemberCount,
},
}
);
if (!groupUpdate) return;
fixedGroupCount++;
if (group.purchased.plan.paymentMethod === 'Stripe') {
await stripePayments.chargeForAdditionalGroupMember(group);
await dbGroups.update(
{_id: group._id},
{$set: {'purchased.plan.quantity': canonicalMemberCount + 2}}
);
}
if (incorrectQuantity) {
await dbGroups.update(
{_id: group._id},
{$set: {'purchased.plan.quantity': canonicalMemberCount + 2}}
);
}
resume();
}).then(() => {
console.info(`Fixed ${fixedGroupCount} out of ${groupPlanCount} active Group Plans`);
return process.exit(0);
}).catch((err) => {
console.log(err);
return process.exit(1);
});
}
module.exports = fixGroupPlanMembers;
+1 -1
View File
@@ -7,7 +7,7 @@ let authorUuid = '7f14ed62-5408-4e1b-be83-ada62d504931'; // ... own data is done
*/
let monk = require('monk');
let connectionString = 'mongodb://sabrecat:z8e8jyRA8CTofMQ@ds013393-a0.mlab.com:13393/habitica?auto_reconnect=true';
let connectionString = 'mongodb://localhost:27017/habitrpg?auto_reconnect=true';
let dbTasks = monk(connectionString).get('tasks', { castIds: false });
function processTasks (lastId) {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "habitica",
"version": "4.46.2",
"version": "4.47.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "habitica",
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
"version": "4.46.2",
"version": "4.47.0",
"main": "./website/server/index.js",
"dependencies": {
"@slack/client": "^3.8.1",
+1
View File
@@ -624,4 +624,5 @@ export default {
<style src="assets/css/sprites/spritesmith-main-19.css"></style>
<style src="assets/css/sprites/spritesmith-main-20.css"></style>
<style src="assets/css/sprites/spritesmith-main-21.css"></style>
<style src="assets/css/sprites/spritesmith-main-22.css"></style>
<style src="assets/css/sprites.css"></style>
@@ -1,18 +1,18 @@
.promo_armoire_backgrounds_201806 {
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: -565px 0px;
background-position: -142px -534px;
width: 141px;
height: 441px;
}
.promo_bundle_aquaticAmigos {
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: 0px -534px;
background-position: -565px 0px;
width: 423px;
height: 147px;
}
.promo_earrings_headbands {
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: -707px 0px;
background-position: -565px -359px;
width: 297px;
height: 147px;
}
@@ -30,19 +30,31 @@
}
.promo_mystery_201805 {
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: -707px -148px;
background-position: -863px -359px;
width: 114px;
height: 90px;
}
.promo_seasonal_shop_summer {
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: -776px -148px;
width: 162px;
height: 138px;
}
.promo_summer_splash_2018 {
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: 0px -534px;
width: 141px;
height: 588px;
}
.promo_take_this {
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: -822px -148px;
background-position: -776px -287px;
width: 96px;
height: 69px;
}
.scene_perfect_day {
background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: -326px -197px;
background-position: -565px -148px;
width: 210px;
height: 210px;
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,96 @@
.Pet_HatchingPotion_Ghost {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -69px 0px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Golden {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -138px -138px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Holly {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: 0px -69px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Peppermint {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -69px -69px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Purple {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -138px 0px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Rainbow {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -138px -69px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Red {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: 0px -138px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_RoyalPurple {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -69px -138px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Shade {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: 0px 0px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Shimmer {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -207px 0px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Skeleton {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -207px -69px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Spooky {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -207px -138px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_StarryNight {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: 0px -207px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Thunderstorm {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -69px -207px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_White {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -138px -207px;
width: 68px;
height: 68px;
}
.Pet_HatchingPotion_Zombie {
background-image: url('~assets/images/sprites/spritesmith-main-22.png');
background-position: -207px -207px;
width: 68px;
height: 68px;
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 368 KiB

After

Width:  |  Height:  |  Size: 351 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 294 KiB

After

Width:  |  Height:  |  Size: 300 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 158 KiB

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 165 KiB

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 142 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 143 KiB

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

After

Width:  |  Height:  |  Size: 153 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 176 KiB

After

Width:  |  Height:  |  Size: 179 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 KiB

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 110 KiB

+6 -6
View File
@@ -1,9 +1,9 @@
// this variables are used to determine which shop npc/backgrounds should be loaded
// possible values are: normal, fall, habitoween, thanksgiving, winter, nye, birthday, valentines, spring
// possible values are: normal, fall, habitoween, thanksgiving, winter, nye, birthday, valentines, spring, summer
// more to be added on future seasons
$npc_market_flavor: 'normal';
$npc_quests_flavor: 'normal';
$npc_seasonal_flavor: 'normal';
$npc_timetravelers_flavor: 'normal';
$npc_tavern_flavor: 'normal';
$npc_market_flavor: 'summer';
$npc_quests_flavor: 'summer';
$npc_seasonal_flavor: 'summer';
$npc_timetravelers_flavor: 'summer';
$npc_tavern_flavor: 'summer';
@@ -164,30 +164,30 @@ export default {
classGear (heroClass) {
if (heroClass === 'rogue') {
return {
armor: 'armor_rogue_5',
head: 'head_rogue_5',
shield: 'shield_rogue_6',
weapon: 'weapon_rogue_6',
armor: 'armor_special_summer2018Rogue',
head: 'head_special_summer2018Rogue',
shield: 'shield_special_summer2018Rogue',
weapon: 'weapon_special_summer2018Rogue',
};
} else if (heroClass === 'wizard') {
return {
armor: 'armor_wizard_5',
head: 'head_wizard_5',
weapon: 'weapon_wizard_6',
armor: 'armor_special_summer2018Mage',
head: 'head_special_summer2018Mage',
weapon: 'weapon_special_summer2018Mage',
};
} else if (heroClass === 'healer') {
return {
armor: 'armor_healer_5',
head: 'head_healer_5',
shield: 'shield_healer_5',
weapon: 'weapon_healer_6',
armor: 'armor_special_summer2018Healer',
head: 'head_special_summer2018Healer',
shield: 'shield_special_summer2018Healer',
weapon: 'weapon_special_summer2018Healer',
};
} else {
return {
armor: 'armor_warrior_5',
head: 'head_warrior_5',
shield: 'shield_warrior_5',
weapon: 'weapon_warrior_6',
armor: 'armor_special_summer2018Warrior',
head: 'head_special_summer2018Warrior',
shield: 'shield_special_summer2018Warrior',
weapon: 'weapon_special_summer2018Warrior',
};
}
},
@@ -131,7 +131,7 @@
div(
v-for="category in categories",
v-if="viewOptions[category.identifier].selected"
v-if="viewOptions[category.identifier].selected && category.identifier !== 'equipment'"
)
h4 {{ category.text }}
+1 -1
View File
@@ -38,7 +38,7 @@ div
h4.popover-content-title(v-once) {{ item.text }}
.popover-content-text(v-if='showNotes && item.key !== "armoire"', v-once) {{ item.notes }}
.popover-content-text(v-if='showNotes && item.key === "armoire"') {{ item.notes }}
div(v-if="item.event") {{ limitedString }}
div.mt-4(v-if="item.event") {{ limitedString }}
</template>
<style lang="scss" scoped>
+28
View File
@@ -258,6 +258,14 @@
"weaponSpecialSpring2018MageNotes": "Това вълшебно цвете никога няма да увехне. Увеличава интелигентността с <%= int %> и усета с <%= per %>. Ограничена серия: Пролетна екипировка 2018 г.",
"weaponSpecialSpring2018HealerText": "Гранатен прът",
"weaponSpecialSpring2018HealerNotes": "Камъните в този жезъл ще концентрира силите Ви, когато изпълнявате лечебни заклинания! Увеличава интелигентността с <%= int %>. Ограничена серия: Пролетна екипировка 2018 г.",
"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.",
"weaponMystery201411Text": "Вилица на изобилието",
"weaponMystery201411Notes": "Наръгайте враговете си или си боцнете от любимата храна — тази универсална вилица може всичко! не променя показателите. Предмет за абонати: ноември 2014 г.",
"weaponMystery201502Text": "Блестящият крилат скиптър на любовта и истината",
@@ -572,6 +580,14 @@
"armorSpecialSpring2018MageNotes": "Заклинанията Ви ще се подобрят, ако носите тези меки копринени цветчета. Увеличава интелигентността с <%= int %>. Ограничена серия: Пролетна екипировка 2018 г.",
"armorSpecialSpring2018HealerText": "Гранатена броня",
"armorSpecialSpring2018HealerNotes": "Нека тази светла броня даде на сърцето Ви силата да лекувате. Увеличава якостта с <%= con %>. Ограничена серия: Пролетна екипировка 2018 г.",
"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.",
"armorMystery201402Text": "Одежди на вестоносец",
"armorMystery201402Notes": "Блестящи и здрави, тези одежди имат много джобове за носене на писма. Не променя показателите. Предмет за абонати: февруари 2014 г.",
"armorMystery201403Text": "Броня на горски бродник",
@@ -960,6 +976,14 @@
"headSpecialSpring2018MageNotes": "Цветчетата на този шлем ще Ви дадат специални пролетни вълшебни сили. Увеличава усета с <%= per %>. Ограничена серия: Пролетна екипировка 2018 г.",
"headSpecialSpring2018HealerText": "Гранатена диадема",
"headSpecialSpring2018HealerNotes": "Полираните скъпоценни камъни по тази диадема ще увеличат мисловните Ви сили. Увеличава интелигентността с <%= int %>. Ограничена серия: Пролетна екипировка 2018 г.",
"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.",
"headSpecialGaymerxText": "Боен шлем с цветовете на дъгата",
"headSpecialGaymerxNotes": "В чест на конференцията GaymerX, този специален шлем е оцветен с шарка на дъга! GaymerX е игрално изложение в чест на ЛГБТ културата и игрите и е отворено за всички.",
"headMystery201402Text": "Крилат шлем",
@@ -1280,6 +1304,10 @@
"shieldSpecialSpring2018WarriorNotes": "Този здрав щит свети с величието на най-чистата светлина. Увеличава якостта с <%= con %>. Ограничена серия: Пролетна екипировка 2018 г.",
"shieldSpecialSpring2018HealerText": "Гранатен щит",
"shieldSpecialSpring2018HealerNotes": "Въпреки вида си, този гранатен щит е доста здрав! Увеличава якостта с <%= con %>. Ограничена серия: Пролетна екипировка 2018 г.",
"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.",
"shieldMystery201601Text": "Решителен убиец",
"shieldMystery201601Notes": "Това острие може да отблъсне всички разсейващи Ви неща. Не променя показателите. Предмет за абонати: януари 2016 г.",
"shieldMystery201701Text": "Спиращ времето щит",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Магьосник на лалето (магьосник)",
"spring2018GarnetHealerSet": "Гранатен лечител (лечител)",
"spring2018DucklingRogueSet": "Патешки мошеник (мошеник)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Налично за купуване до <%= date(locale) %>.",
"dateEndMarch": "30 април",
"dateEndApril": "19 април",
+28
View File
@@ -258,6 +258,14 @@
"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.",
"weaponMystery201411Text": "Vidle hodů",
"weaponMystery201411Notes": "Píchni své nepřátele nebo se pusť do svého oblíbeného jídla - tyhle všestranné vidle zvládnou všechno! Nepřináší žádný benefit.",
"weaponMystery201502Text": "Třpytivá okřídlená hůl lásky a také pravdy",
@@ -572,6 +580,14 @@
"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.",
"armorMystery201402Text": "Oděv poslíčka",
"armorMystery201402Notes": "Třpytivý a silný, tento oděv má spoustu kapes na dopisy. Nepřináší žádný benefit. Výbava pro předplatitele únor 2014",
"armorMystery201403Text": "Zbroj lesáka",
@@ -960,6 +976,14 @@
"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.",
"headSpecialGaymerxText": "Helma duhového bojovníka",
"headSpecialGaymerxNotes": "Ku příležitosti oslav GaymerX je tato speciální helma zdobena zářivým, barevným, duhovým vzorem! GaymerX je herní veletrh oslavující LGBTQ a hry a je otevřený všem.",
"headMystery201402Text": "Okřídlená přilba",
@@ -1280,6 +1304,10 @@
"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.",
"shieldMystery201601Text": "Kat odhodlání",
"shieldMystery201601Notes": "Tento meč lze použít k odražení všech rozptýlení. Neposkytuje žádný bonus. Předplatitelský předmět ledna 2016.",
"shieldMystery201701Text": "Time-Freezer Shield",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulipánový Mág (Mág)",
"spring2018GarnetHealerSet": "Garnátový Léčitel (Léčitel)",
"spring2018DucklingRogueSet": "Kachňátkový Zloděj (Zloděj)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Dostupný k zakoupení do <%= date(locale) %>.",
"dateEndMarch": "Duben 30",
"dateEndApril": "Duben 19",
+28
View File
@@ -258,6 +258,14 @@
"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.",
"weaponMystery201411Text": "Høstfests-Høtyv",
"weaponMystery201411Notes": "Stik dine fjender eller grib for dig af dine yndlingsretter - denne høtyv kan det hele! Giver ingen bonusser. November 2014 Abonnentvare.",
"weaponMystery201502Text": "Glinsende Bevinget Stav af Kærlighed og Også Sandhed",
@@ -572,6 +580,14 @@
"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.",
"armorMystery201402Text": "Sendebudsdragt",
"armorMystery201402Notes": "En skinnende og stærk dragt med masser af lommer til at bære breve i. Giver ingen bonusser. Februar 2014 Abonnentting.",
"armorMystery201403Text": "Skovvandrer-rustning",
@@ -960,6 +976,14 @@
"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.",
"headSpecialGaymerxText": "Regnbuekrigerhjelm",
"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": "Bevinget Hjelm",
@@ -1280,6 +1304,10 @@
"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.",
"shieldMystery201601Text": "Resolution Slayer",
"shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.",
"shieldMystery201701Text": "Tids-fryser skjold",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulip Mage (Mage)",
"spring2018GarnetHealerSet": "Garnet Healer (Healer)",
"spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Tilgændelig til køb indtil <%= date(locale) %>.",
"dateEndMarch": "April 30",
"dateEndApril": "19. april",
+28
View File
@@ -258,6 +258,14 @@
"weaponSpecialSpring2018MageNotes": "Diese magische Blume wird nie verwelken! Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.",
"weaponSpecialSpring2018HealerText": "Granatzauberstab",
"weaponSpecialSpring2018HealerNotes": "Diese Steine in diesem Stab werden Deine Kräfte bündeln, wenn Du Heilzauber anwendest! Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.",
"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.",
"weaponMystery201411Text": "Forke des Feierns",
"weaponMystery201411Notes": "Erstich Deine Feinde oder verschling Dein Lieblingsessen - diese flexible Forke ist universell einsetzbar! Gewährt keinen Attributbonus. Abonnentengegenstand, November 2014.",
"weaponMystery201502Text": "Schimmernder Flügelstab der Liebe und auch der Wahrheit",
@@ -572,6 +580,14 @@
"armorSpecialSpring2018MageNotes": "Deine Zauberfertigkeiten können sich nur verbessern, wenn Du in diese weichen, seidigen Blütenblätter gehüllt bist. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.",
"armorSpecialSpring2018HealerText": "Granatrüstung",
"armorSpecialSpring2018HealerNotes": "Lass diese leuchtend rote Rüstung Deinem Herzen die Kraft zur Heilung geben. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.",
"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.",
"armorMystery201402Text": "Robe des Nachrichtenbringers",
"armorMystery201402Notes": "Schimmernd, stabil und mit vielen Taschen für Briefe. Gewährt keinen Attributbonus. Abonnentengegenstand, Februar 2014.",
"armorMystery201403Text": "Waldwanderer-Rüstung",
@@ -960,6 +976,14 @@
"headSpecialSpring2018MageNotes": "Die kunstvoll arrangierten Blütenblätter dieses Helms gewähren Dir besondere Frühlingszauber. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.",
"headSpecialSpring2018HealerText": "Granatreif",
"headSpecialSpring2018HealerNotes": "Die polierten Edelsteine dieses Diadems verstärken Deine mentale Energie. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.",
"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.",
"headSpecialGaymerxText": "Regenbogenkriegerhelm",
"headSpecialGaymerxNotes": "Zur Feier der GaymerX-Konferenz ist dieser spezielle Helm dekoriert mit einem strahlenden, farbenfrohen Regenbogenmuster! GaymerX ist eine Videospiel-Tagung, die LGBTQ und Videospiele feiert und für alle offen ist.",
"headMystery201402Text": "Geflügelter Helm",
@@ -1280,6 +1304,10 @@
"shieldSpecialSpring2018WarriorNotes": "Dieser stabile Schild glüht im Glanz des ersten Tageslichts. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.",
"shieldSpecialSpring2018HealerText": "Granatschild",
"shieldSpecialSpring2018HealerNotes": "Trotz seines kunstvollen Aussehens ist dieser Granatschild sehr widerstandsfähig! Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.",
"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.",
"shieldMystery201601Text": "Töter der Vorsätze",
"shieldMystery201601Notes": "Diese Klinge kann zur Entfernung aller Ablenkungen verwendet werden. Gewährt keinen Attributbonus. Abonnentengegenstand, Januar 2016.",
"shieldMystery201701Text": "Zeitanhalterschild",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulpenmagier (Magier)",
"spring2018GarnetHealerSet": "Granatheiler (Heiler)",
"spring2018DucklingRogueSet": "Entchen-Schurke (Schurke)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Zum Kauf verfügbar bis zum <%= date(locale) %>.",
"dateEndMarch": "30. April",
"dateEndApril": "19. April",
+32
View File
@@ -285,6 +285,15 @@
"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.",
"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",
@@ -627,6 +636,15 @@
"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.",
"armorMystery201402Text": "Messenger Robes",
"armorMystery201402Notes": "Shimmering and strong, these robes have many pockets to carry letters. Confers no benefit. February 2014 Subscriber Item.",
"armorMystery201403Text": "Forest Walker Armor",
@@ -1042,6 +1060,15 @@
"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.",
"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.",
@@ -1388,6 +1415,11 @@
"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.",
"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",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulip Mage (Mage)",
"spring2018GarnetHealerSet": "Garnet Healer (Healer)",
"spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Available for purchase until <%= date(locale) %>.",
"dateEndMarch": "April 30",
"dateEndApril": "April 19",
@@ -258,6 +258,14 @@
"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.",
"weaponMystery201411Text": "Pitchfork o' Feasting",
"weaponMystery201411Notes": "Stab yer enemies or dig in to yer favorite vittles - this here versatile pitchfork does it all! It don't benefit ye.\nNovember 2014 Subscriberrr Item",
"weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth",
@@ -572,6 +580,14 @@
"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.",
"armorMystery201402Text": "Messenger Robes",
"armorMystery201402Notes": "Shimmering an' strong, these robes have many pockets t' carry letters. Don't benefit ye. February 2014 Subscriber Item.",
"armorMystery201403Text": "Forest Walker Armor",
@@ -960,6 +976,14 @@
"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.",
"headSpecialGaymerxText": "Rainbow Warrior Helm",
"headSpecialGaymerxNotes": "In celebration o' th' GaymerX Conference, this special helmet be decorated with a radiant, colorful rainbow pattern! GaymerX be a game convention celebratin' LGTBQ an' gaming an' be open t' everyone.",
"headMystery201402Text": "Winged Helm",
@@ -1280,6 +1304,10 @@
"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.",
"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",
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulip Mage (Mage)",
"spring2018GarnetHealerSet": "Garnet Healer (Healer)",
"spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Available for purchase until <%= date(locale) %>.",
"dateEndMarch": "April 30",
"dateEndApril": "April 19",
+28
View File
@@ -258,6 +258,14 @@
"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.",
"weaponMystery201411Text": "Pitchfork of Feasting",
"weaponMystery201411Notes": "Stab your enemies or dig in to your favourite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.",
"weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth",
@@ -572,6 +580,14 @@
"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.",
"armorMystery201402Text": "Messenger Robes",
"armorMystery201402Notes": "Shimmering and strong, these robes have many pockets to carry letters. Confers no benefit. February 2014 Subscriber Item.",
"armorMystery201403Text": "Forest Walker Armour",
@@ -960,6 +976,14 @@
"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.",
"headSpecialGaymerxText": "Rainbow Warrior Helm",
"headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colourful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.",
"headMystery201402Text": "Winged Helm",
@@ -1280,6 +1304,10 @@
"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.",
"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",
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulip Mage (Mage)",
"spring2018GarnetHealerSet": "Garnet Healer (Healer)",
"spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Available for purchase until <%= date(locale) %>.",
"dateEndMarch": "April 30",
"dateEndApril": "April 19",
+28
View File
@@ -258,6 +258,14 @@
"weaponSpecialSpring2018MageNotes": "¡Esta flor mágica no se marchita nunca! Aumenta la Inteligencia en <%= int %> y la Percepción en <%= per %>. Equipamiento de Primavera Edición Limitada del 2018.",
"weaponSpecialSpring2018HealerText": "Vara Granate",
"weaponSpecialSpring2018HealerNotes": "¡Las piedras de esta vara harán concentrar tu poder cuando lances conjuros curativos! Aumenta la Inteligencia en <%= int %>. Equipamiento de Primavera Edición Limitada del 2018.",
"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.",
"weaponMystery201411Text": "Horca de Banquete",
"weaponMystery201411Notes": "Clávasela a tus enemigos o ataca tus comidas favoritas - ¡esta horca versátil vale para todo! No confiere ningún beneficio. Artículo de suscriptor de noviembre 2014.",
"weaponMystery201502Text": "Báculo Reluciente Alado del Amor y También de la Verdad",
@@ -572,6 +580,14 @@
"armorSpecialSpring2018MageNotes": "Tus hechizos tan solo pueden mejorar mientras vistes estos pétalos suaves y sedosos. Aumenta la Inteligencia en <%= int %>. Equipamiento de Primavera Edición Limitada del 2018.",
"armorSpecialSpring2018HealerText": "Armadura Granate",
"armorSpecialSpring2018HealerNotes": "Deja que esta brillante armadura infunda poder sanador en tu corazón. Aumenta la Constitución en <%= con %>. Equipamiento de Primavera Edición Limitada del 2018.",
"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.",
"armorMystery201402Text": "Túnica de Mensajero",
"armorMystery201402Notes": "Reluciente y fuerte, esta túnica tiene muchos bolsillos para llevar cartas. No proporciona ningún beneficio. Artículo de suscriptor de febrero 2014.",
"armorMystery201403Text": "Armadura del Caminante del Bosque",
@@ -960,6 +976,14 @@
"headSpecialSpring2018MageNotes": "Los elegantes pétalos de este casco te otorgarán una magia primaveral especial. Aumenta la Percepción en <%= per %>. Equipamiento de Primavera Edición Limitada del 2018.",
"headSpecialSpring2018HealerText": "Diadema Granate",
"headSpecialSpring2018HealerNotes": "Las gemas pulidas de este anillo mejorarán tu energía mental. Aumenta la Inteligencia en <%= int %>. Equipamiento de Primavera Edición Limitada del 2018.",
"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.",
"headSpecialGaymerxText": "Casco de Guerrero de Arco Iris",
"headSpecialGaymerxNotes": "Con motivo de la celebración por la Conferencia GaymerX, ¡este casco especial está decorado con un radiante y colorido estampado arco iris! GaymerX es una convención de juegos que celebra a la gente LGBTQ y a los videojuegos, y está abierta a todo el público.",
"headMystery201402Text": "Casco alado",
@@ -1280,6 +1304,10 @@
"shieldSpecialSpring2018WarriorNotes": "Este robusto escudo brilla con la gloria de la primera luz. Aumenta la Constitución en <%= con %>. Equipamiento de Primavera Edición Limitada del 2018.",
"shieldSpecialSpring2018HealerText": "Escudo Granate",
"shieldSpecialSpring2018HealerNotes": "A pesar de su apariencia caprichosa, ¡este escudo granate es bastante duradero! Aumenta la Constitución en <%= con %>. Equipamiento de Primavera Edición Limitada del 2018.",
"shieldSpecialSummer2018WarriorText": "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.",
"shieldMystery201601Text": "Destructora de Resoluciones",
"shieldMystery201601Notes": "Esta espada se puede usar para desviar a todas las distracciones. No otorga ningún beneficio. Artículo de Suscriptor de Enero 2016.",
"shieldMystery201701Text": "Escudo para congelar el tiempo",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Mago Tulipán (Mago)",
"spring2018GarnetHealerSet": "Sanador Granate (Sanador)",
"spring2018DucklingRogueSet": "Pícaro Patito (Pícaro)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Disponible para su compra hasta el <%= date(locale) %>.",
"dateEndMarch": "30 de abril",
"dateEndApril": "19 de abril",
+28
View File
@@ -258,6 +258,14 @@
"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.",
"weaponMystery201411Text": "Horqueta de Banquete",
"weaponMystery201411Notes": "Atraviesa a tus enemigos o ataca tu comida favorita - ¡esta horqueta versátil lo hace todo! No otorga ningún beneficio. Artículo de Suscriptor de Noviembre 2014.",
"weaponMystery201502Text": "Reluciente Báculo Alado del Amor y También de la Verdad",
@@ -572,6 +580,14 @@
"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.",
"armorMystery201402Text": "Túnica de Mensajero",
"armorMystery201402Notes": "Reluciente y fuerte, esta túnica tiene muchos bolsillos para llevar cartas. No otorga ningún beneficio. Artículo de Suscriptor de Febrero 2014.",
"armorMystery201403Text": "Armadura de Caminante del Bosque",
@@ -960,6 +976,14 @@
"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.",
"headSpecialGaymerxText": "Yelmo de Guerrero Arco Iris",
"headSpecialGaymerxNotes": "Con motivo de la celebración por la Conferencia GaymerX, ¡este casco especial está decorado con un radiante y colorido estampado arco iris! GaymerX es una convención de juegos que celebra a la gente LGBTQ y a los videojuegos, y está abierta a todo el público.",
"headMystery201402Text": "Yelmo Alado",
@@ -1280,6 +1304,10 @@
"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.",
"shieldMystery201601Text": "Destructora de Resoluciones",
"shieldMystery201601Notes": "Esta espada se puede usar para desviar a todas las distracciones. No otorga ningún beneficio. Artículo de Suscriptor de Enero 2016.",
"shieldMystery201701Text": "Escudo congela tiempo",
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Mago Tulipán (Mago)",
"spring2018GarnetHealerSet": "Garnet Healer (Healer)",
"spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Disponible para compra hasta el <%= date(locale) %>.",
"dateEndMarch": "April 30",
"dateEndApril": "19 de Abril",
+39 -11
View File
@@ -258,6 +258,14 @@
"weaponSpecialSpring2018MageNotes": "Cette fleur magique ne se flétrit jamais ! Augmente l'Intelligence de <%= int %> et la Perception de <%= per %>. Équipement en édition limitée du printemps 2018.",
"weaponSpecialSpring2018HealerText": "Bâton de grenat",
"weaponSpecialSpring2018HealerNotes": "Les pierres de ce bâton concentreront votre puissance lorsque vous lancerez des sorts de guérison ! Augmente l'intelligence de <%= int %>. Équipement en édition limitée du printemps 2018.",
"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.",
"weaponMystery201411Text": "Fourche festive",
"weaponMystery201411Notes": "Embrochez vos ennemis ou plantez-la dans votre nourriture préférée : cette fourche multi-fonctions peut tout faire ! N'apporte aucun bonus. Équipement d'abonné·e de novembre 2014.",
"weaponMystery201502Text": "Bâton chatoyant ailé d'amour et aussi de vérité",
@@ -333,7 +341,7 @@
"weaponArmoireScepterOfDiamondsText": "Sceptre de carreau",
"weaponArmoireScepterOfDiamondsNotes": "Ce sceptre brille d'une chaude lueur rouge alors qu'il accroît votre volonté. Augmente la Force de <%= str %>. Armoire enchantée : ensemble du roi de carreau (objet 3 sur 4).",
"weaponArmoireFlutteryArmyText": "Armée papillonnante",
"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).",
"weaponArmoireFlutteryArmyNotes": "Ce groupe de lépidoptères bagarreurs est prêt à battre des ailes avec acharnement pour refroidir les plus rouges de vos tâches. Augmente la Constitution, l'Intelligence et la Force de <%= attrs %> chacune. Armoire enchantée : ensemble papillonnant (objet 3 sur 4).",
"weaponArmoireCobblersHammerText": "Marteau de cordonnier",
"weaponArmoireCobblersHammerNotes": "Ce marteau a été spécialement fabriqué pour traiter le cuir. Néanmoins, il peut accomplir un travail impressionnant sur une quotidienne rouge en un rien de temps. Augmente la constitution et la force de <%= attrs %> chacune. Armoire enchantée : ensemble du cordonnier (objet 2 sur 3).",
"weaponArmoireGlassblowersBlowpipeText": "Canne de verrier",
@@ -572,6 +580,14 @@
"armorSpecialSpring2018MageNotes": "Son lancer de sort ne peut que s'améliorer quand on est enveloppé dans ces pétales doux et soyeux. Augmente l'Intelligence de <%= int %>. Équipement en édition limitée du printemps 2018.",
"armorSpecialSpring2018HealerText": "Armure de grenat",
"armorSpecialSpring2018HealerNotes": "Laissez cette brillante armure infuser votre cœur avec la puissance de la guérison. Augmente la Constitution de <%= con %>. Équipement en édition limitée du printemps 2018.",
"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.",
"armorMystery201402Text": "Robe du messager",
"armorMystery201402Notes": "Chatoyante et solide, cette robe possède de nombreuses poches dans lesquelles transporter des lettres. N'apporte aucun bonus. Équipement d'abonné·e de février 2014.",
"armorMystery201403Text": "Armure du marcheur sylvain",
@@ -717,15 +733,15 @@
"armorArmoireCoachDriverLiveryText": "Livrée de cocher",
"armorArmoireCoachDriverLiveryNotes": "Ce lourd manteau vous protégera des intempéries pendant que vous conduisez. De plus, il est plutôt élégant ! Augmente la Force de <%= str %>. Armoire enchantée : ensemble du cocher (objet 1 sur 3).",
"armorArmoireRobeOfDiamondsText": "Robe de carreau",
"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).",
"armorArmoireRobeOfDiamondsNotes": "Non seulement ces tuniques royales vous donnent un air noble, mais elle vous permettent de voir la noblesse chez les autres. Augmente la Perception de <%= per %>. Armoire enchantée : ensemble du roi de carreau (objet 1 sur 4).",
"armorArmoireFlutteryFrockText": "Robe papillonnante",
"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).",
"armorArmoireFlutteryFrockNotes": "Une robe légère et vaporeuse avec un large jupon que les papillons risquent de prendre pour une fleur géante. Augmente la Constitution, la Perception et la Force de <%= attrs %> chacune. Armoire enchantée : ensemble papillonnant (objet 1 sur 4).",
"armorArmoireCobblersCoverallsText": "Combinaison de cordonnier",
"armorArmoireCobblersCoverallsNotes": "Cette combinaison solide a plein de poches pour les outils, les morceaux de cuir et les autres objets utiles ! Augmente la perception et la force de <%= attrs %> chacune. Armoire enchantée : ensemble du cordonnier (objet 1 sur 3).",
"armorArmoireGlassblowersCoverallsText": "Combinaison de souffleur de verre",
"armorArmoireGlassblowersCoverallsNotes": "Cette combinaison vous protègera quand vous fabriquerez des chef-d’œuvres avec du verre en fusion. Augmente la Constitution de <%= con %>. Armoire enchantée : ensemble du souffleur de verre (objet 2 sur 4).",
"armorArmoireBluePartyDressText": "Robe de soirée bleue",
"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).",
"armorArmoireBluePartyDressNotes": "Vous voilà perspicace, résistant, élégant... et tellement à la mode ! Augmente la Perception, la Force et la Constitution de <%= attrs %> chacune. Armoire enchantée : ensemble du serre-tête bleu (objet 2 sur 2).",
"headgear": "heaume",
"headgearCapitalized": "Couvre-chef",
"headBase0Text": "Pas de couvre-chef",
@@ -960,6 +976,14 @@
"headSpecialSpring2018MageNotes": "Les pétales fantaisistes de ce heaume vous doteront d'une magie printanière particulière. Augmente la Perception de <%= per %>. Équipement en édition limitée du printemps 2018.",
"headSpecialSpring2018HealerText": "Diadème de grenat",
"headSpecialSpring2018HealerNotes": "Les gemmes polies de ce diadème augmenteront votre énergie mentale. Augmente l'Intelligence de <%= int %>. Équipement en édition limitée du printemps 2018.",
"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.",
"headSpecialGaymerxText": "Heaume de guerrier arc-en-ciel",
"headSpecialGaymerxNotes": "En l'honneur de la conférence GaymerX, cet casque spécial est décoré avec un motif arc-en-ciel aussi radieux que coloré ! GaymerX est une convention célébrant les LGBTQ et les jeux, et est ouverte à tous.",
"headMystery201402Text": "Heaume ailé",
@@ -1119,9 +1143,9 @@
"headArmoireCoachDriversHatText": "Chapeau de cocher",
"headArmoireCoachDriversHatNotes": "Ce chapeau est chic, mais pas autant qu'un chapeau haut-de-forme. Faites attention à ne pas le perdre lors de vos courses à travers le pays ! Augmente l'Intelligence de <%= int %>. Armoire enchantée : ensemble du cocher (objet 2 sur 3). ",
"headArmoireCrownOfDiamondsText": "Couronne de carreau",
"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).",
"headArmoireCrownOfDiamondsNotes": "Cette couronne scintillante n'est pas seulement une coiffe élégante, elle aiguise aussi votre esprit ! Augmente l'Intelligence de <%= int %>. Armoire enchantée : ensemble du roi de carreau (objet 2 sur 4).",
"headArmoireFlutteryWigText": "Perruque papillonante",
"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).",
"headArmoireFlutteryWigNotes": "Cette élégante perruque poudrée a plein de place pour laisser les papillons se reposer s'ils sont fatigués pendant que vous faites vos affaires. Augmente l'Intelligence, la Perception et la Force de <%= attrs %> chacune. Armoire enchantée : ensemble papillonnant (objet 2 sur 4).",
"headArmoireBirdsNestText": "Nid d'oiseau",
"headArmoireBirdsNestNotes": "Si vous commencez à sentir du mouvement et à entendre des piaillements, votre nouveau chapeau héberge peut-être de nouveaux amis. Augmente l'Intelligence de <%= int %>. Armoire enchantée : objet indépendant.",
"headArmoirePaperBagText": "Sac en papier",
@@ -1280,6 +1304,10 @@
"shieldSpecialSpring2018WarriorNotes": "Ce bouclier solide brille de la gloire des premières lueurs. Augmente la Constitution de <%= con %>. Équipement en édition limitée du printemps 2018.",
"shieldSpecialSpring2018HealerText": "Bouclier de grenat",
"shieldSpecialSpring2018HealerNotes": "Malgré son apparence fantaisiste, ce bouclier de grenat est plutôt résistant ! Augmente la Constitution de <%= con %>. Équipement en édition limitée du printemps 2018.",
"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.",
"shieldMystery201601Text": "Tueuse résolue",
"shieldMystery201601Notes": "Cette lame peut être utilisée pour parer toutes les distractions. N'apporte aucun bonus. Équipement d'abonné·e de janvier 2016.",
"shieldMystery201701Text": "Bouclier du temps transi",
@@ -1332,13 +1360,13 @@
"shieldArmoireHandmadeCandlestickNotes": "Votre cire fine fournit lumière et chaleur aux Habiticiennes et Habiticiens reconnaissants ! Augmente la Force de <%= str %>. Armoire enchantée : ensemble du cirier (objet 3 sur 3).",
"shieldArmoireWeaversShuttleText": "Navette de métier à tisser",
"shieldArmoireWeaversShuttleNotes": "Cet outil passe vos fils de trame à travers la chaîne pour faire du tissu ! Augmente l'Intelligence de <%= int %> et la Perception de <%= per %>. Armoire enchantée : ensemble du tisserand (objet 3 sur 3).",
"shieldArmoireShieldOfDiamondsText": "Shield of Diamonds",
"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).",
"shieldArmoireShieldOfDiamondsText": "Bouclier de carreau",
"shieldArmoireShieldOfDiamondsNotes": "Ce bouclier radieux ne vous procure pas seulement une protection, mais aussi un augmentation de votre endurance ! Augmente la Constitution de <%= con %>. Armoire enchantée : ensemble du roi de carreau (objet 4 sur 4).",
"shieldArmoireFlutteryFanText": "Éventail fleuri",
"shieldArmoireFlutteryFanNotes": "Par une chaude journée, il n'y a rien de mieux qu'un éventail chic pour vous refroidir et avoir l'air cool . Augmente la Constitution, l'Intelligence et la Perception de <%= attrs %> chacune. Armoire enchantée : ensemble papillonant (objet 4 sur 4)..",
"shieldArmoireFancyShoeText": "Chaussure de luxe",
"shieldArmoireFancyShoeNotes": "Une chaussure très spéciale sur laquelle vous travaillez. Elle est bonne pour la royauté ! Augmente l'intelligence et la perception de <%= attrs %> chacune. Armoire enchantée : ensemble du cordonnier (objet 3 sur 3).",
"shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase",
"shieldArmoireFancyBlownGlassVaseText": "Luxueux vase en verre soufflé",
"shieldArmoireFancyBlownGlassVaseNotes": "Quel joli vase vous avez fait ! Quest-ce que vous allez mettre dedans ? Augmente lIntelligence de <%= int %>. Armoire enchantée : ensemble du souffleur de verre (objet 4 sur 4).",
"back": "Accessoire dorsal",
"backCapitalized": "Accessoire dorsal",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Mage tulipe (Mage) ",
"spring2018GarnetHealerSet": "Guérisseur grenat (Guérisseur)",
"spring2018DucklingRogueSet": "Voleur caneton (Voleur)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Disponible à l'achat jusqu'au <%= date(locale) %>.",
"dateEndMarch": "30 avril",
"dateEndApril": "19 avril",
+1 -1
View File
@@ -603,6 +603,6 @@
"questSquirrelUnlockText": "Déverrouille l'achat d'œufs d’écureuils au marché",
"cuddleBuddiesText": "Lot de quêtes des acolytes à câlins",
"cuddleBuddiesNotes": "Contient \"Le lapin tueur\", \"L'abominable furet\", et \"Le gang des cochons d'Inde\". Disponible jusqu'au 31 mai.",
"aquaticAmigosText": "Aquatic Amigos Quest Bundle",
"aquaticAmigosText": "Lot de quêtes des amis aquatiques",
"aquaticAmigosNotes": "Contient “Laxototl magique”, “Le kraken dInkomplet”, et “Lappel dOctothulu”. Disponible jusquau 30 juin."
}
+28
View File
@@ -258,6 +258,14 @@
"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.",
"weaponMystery201411Text": "קילשון למשתאות",
"weaponMystery201411Notes": "דיקרו את אויבייכם או חפרו לתוך מאכליכם - הקילשון רב-השימושים הזה עושה הכל! לא מקנה ייתרון. נובמבר 2014, חפץ מנויים.",
"weaponMystery201502Text": "מטה מכונף ונוצץ של אהבה וגם אמת",
@@ -572,6 +580,14 @@
"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.",
"armorMystery201402Text": "גלימות שליח",
"armorMystery201402Notes": "מנצנצות וחזקות, לגלימות אלו כיסים רבים לנשיאת מכתבים. לא מקנות ייתרון. פברואר 2014, חפץ מנויים.",
"armorMystery201403Text": "שריון מהלך היער",
@@ -960,6 +976,14 @@
"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.",
"headSpecialGaymerxText": "קסדת לוחמי הקשת",
"headSpecialGaymerxNotes": "לרגל חגיגות כנס גיימר-אקס, הקסדה המיוחדת הזו מעוטרת בדוגמה בוהקת של קשת צבעונית! גיימר-אקס הוא כנס שחוגג להט״בים ומשחקים, והוא פתוח לכולם.",
"headMystery201402Text": "קסדה מכונפת",
@@ -1280,6 +1304,10 @@
"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.",
"shieldMystery201601Text": "שוחט החלטות",
"shieldMystery201601Notes": "סכין זו יכולה לשמש כדי להדוף הסחות דעת. לא מקנה ייתרון. ינואר 2016, חפץ מנויים.",
"shieldMystery201701Text": "Time-Freezer Shield",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulip Mage (Mage)",
"spring2018GarnetHealerSet": "Garnet Healer (Healer)",
"spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Available for purchase until <%= date(locale) %>.",
"dateEndMarch": "April 30",
"dateEndApril": "April 19",
+2 -2
View File
@@ -153,8 +153,8 @@
"optOutOfClasses": "Kiszáll",
"optOutOfPMs": "Kiszáll",
"chooseClass": "Válaszd ki a kasztod",
"chooseClassLearnMarkdown": "[Tudj meg többet a Habitica kaszt rendszeréről](http://habitica.wikia.com/wiki/Class_System)",
"optOutOfClassesText": "Nem érdekelnek a kasztok? Később akarsz választani? Jelöld be - és harcos maradsz különleges képességek nélkül. Később is olvashatsz a kaszt rendszerről a wiki-n és bármikor engedélyezheted azt a Felhasználó ikon -> Beállítások menüben.",
"chooseClassLearnMarkdown": "[Tudj meg többet a Habitica kasztrendszeréről](http://habitica.wikia.com/wiki/Class_System)",
"optOutOfClassesText": "Nem érdekelnek a kasztok? Később akarsz választani? Jelöld be - és harcos maradsz különleges képességek nélkül. Később is olvashatsz a kasztrendszerről a wiki-n és bármikor engedélyezheted azt a Felhasználó ikon -> Beállítások menüben.",
"selectClass": "<%= heroClass %> kiválasztása",
"select": "Kiválaszt",
"stealth": "Lopakodás",
+28
View File
@@ -258,6 +258,14 @@
"weaponSpecialSpring2018MageNotes": "Ez a mágikus virág soha nem hervad el! Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.",
"weaponSpecialSpring2018HealerText": "Gránát varázspálca",
"weaponSpecialSpring2018HealerNotes": "Ezen a varázspálcán található kövek gyógyítás közben fókuszálják a varázserődet! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.",
"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.",
"weaponMystery201411Text": "A lakmározás vasvillája",
"weaponMystery201411Notes": "Szúrd le az ellenségeidet vagy túrj bele kedvenc eledeleidbe - ezzel a sokoldalú vasvillával mindent megtehetsz! Nem változtat a tulajdonságaidon. 2014 novemberi előfizetői tárgy.",
"weaponMystery201502Text": "A szeretet csillogó szárnyas botja és az igazságé is",
@@ -572,6 +580,14 @@
"armorSpecialSpring2018MageNotes": "A varázserőd csak növekedhet, amíg ezeket a puha és báronyos szirmokat viseled. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.",
"armorSpecialSpring2018HealerText": "Gránát páncél",
"armorSpecialSpring2018HealerNotes": "Engedd hogy az a fényes páncél gyógyító erővel töltse el a szívedet. Növeli az szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.",
"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.",
"armorMystery201402Text": "Hírvivő köpeny",
"armorMystery201402Notes": "Csillámlóak és erősek, ezeknek a köpenyeknek sok zsebük van levelek hordásához. Nem változtat a tulajdonságaidon. 2014 februári előfizetői tárgy.",
"armorMystery201403Text": "Erdőjáró páncél",
@@ -960,6 +976,14 @@
"headSpecialSpring2018MageNotes": "Ennek a sisaknak a díszes szirmai különleges tavaszi varázserővel ruháznak fel. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.",
"headSpecialSpring2018HealerText": "Gránát diadém",
"headSpecialSpring2018HealerNotes": "Ennek a diadémnak a csiszolt drágakövei felerősítik a mentális energiádat. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.",
"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.",
"headSpecialGaymerxText": "Szívárványos harci sisak",
"headSpecialGaymerxNotes": "A GaymerX Konferencia ünnepléseként ez a különleges sisak a szívárvány minden színében pompázik! A GaymerX egy játék konferencia, ami az LGBTQ közösséget ünnepli a játékvilágban, valamint elérhető mindenki számára.",
"headMystery201402Text": "Szárnyas sisak",
@@ -1280,6 +1304,10 @@
"shieldSpecialSpring2018WarriorNotes": "Ez a robusztus pajzs a felkelő nap első sugaraival ragyog. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.",
"shieldSpecialSpring2018HealerText": "Gránát pajzs",
"shieldSpecialSpring2018HealerNotes": "Díszes kinézetének ellenére, ez a gránát pajzs igazán strapabíró! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.",
"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.",
"shieldMystery201601Text": "Eskü pusztító",
"shieldMystery201601Notes": "Ez a penge arra használható hogy minden figyelemeleterlést elhárítson. Nem változtat a tulajdonságaidon. 2016 januári előfizetői tárgy.",
"shieldMystery201701Text": "Idő megállító pajzs",
+44 -44
View File
@@ -206,7 +206,7 @@
"partyExplanation2": "Küzdj meg szörnyekkel és hozz létre kihívásokat!",
"partyExplanation3": "Hívd meg a barátaidat hogy szerezz egy küldetés tekercset!",
"wantToStartParty": "Szeretnél létrehozni egy csapatot?",
"exclusiveQuestScroll": "Egy barát meghívása a csapatodba egy exkluzív küldetés tekercsben részesít, hogy együtt megküzdhessetek a Bazi-listával!",
"exclusiveQuestScroll": "Egy barát meghívása után egy exkluzív küldetés tekercsben lesz része a csapatodnak, hogy együtt megküzdhessetek a Bazi-listával!",
"nameYourParty": "Nevezd el az új csapatodat!",
"partyEmpty": "Te vagy az egyetlen tagja a csapatodnak. Hívd meg a barátaidat!",
"partyChatEmpty": "A csapatod üzenőfala üres! Írj egy üzenetet és kezdj csevegni.",
@@ -389,49 +389,49 @@
"guildDescriptionPlaceholder": "Használd ezt a részt hogy további információt adj a tagoknak a céhvel kapcsolatban. Hasznos tippek és linkek, valamint bátorító szavak is ide tartoznak!",
"markdownFormattingHelp": "[Markdown formázási segédlet](http://habitica.wikia.com/wiki/Markdown_Cheat_Sheet)",
"partyDescriptionPlaceholder": "Ez a csapatunk leírása. Itt leírjuk hogy pontosan miről is szól a csapatunk. Ha szeretnél többet megtudni, olvasd el a leírást. Partyra fel!",
"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.",
"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",
"sendMessage": "Send Message",
"removeManager2": "Remove Manager",
"promoteToLeader": "Promote to Leader",
"inviteFriendsParty": "Inviting friends to your Party will grant you an exclusive <br/> Quest Scroll to battle the Basi-List together!",
"upgradeParty": "Upgrade Party",
"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.",
"startYourOwnPartyTitle": "Start your own Party",
"startYourOwnPartyDescription": "Battle monsters solo or invite as many of your friends as you'd like!",
"shartUserId": "Share User ID",
"wantToJoinPartyTitle": "Want to join a Party?",
"wantToJoinPartyDescription": "Give your User ID to a friend who already has a Party, or head to the Party Wanted Guild to meet potential comrades!",
"copy": "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",
"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",
"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",
"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!",
"guildGemCostInfo": "Azzal hogy a céhek létrehozása drágakőbe kerül, biztosítjuk a magas színvonalú céhek létrehozását. A drágakövek a céhbankba kerülnek.",
"noGuildsTitle": "Nem vagy tagja egy céhnek sem.",
"noGuildsParagraph1": "A céhek olyan közösségi csoportok amit felhasználók hoztak létre egymás támogatásához, felelősségvállaláshoz és bátorításhoz.",
"noGuildsParagraph2": "Kattints a felfedezés gombra, hogy az érdeklődési körödbe tartozó céhek között böngéssz, vagy hozd létre a saját céhedet.",
"privateDescription": "Privát céhek nem lesznek láthatóak a Habitica céhei között. Új tagok csak meghívással tudnak csatlakozni.",
"removeInvite": "Meghívó eltávolítása",
"removeMember": "Tag eltávolítása",
"sendMessage": "Üzenet küldése",
"removeManager2": "Menedzser eltávolítása",
"promoteToLeader": "Előléptetés vezetővé",
"inviteFriendsParty": "Barátok meghívása után egy exkluzív küldetés tekercsben lesz része a csapatodnak, <br/>hogy együtt megküzdhessetek a Bazi-listával!",
"upgradeParty": "Csapat fejlesztése",
"createParty": "Csapat létrehozása",
"inviteMembersNow": "Szeretnél most tagokat meghívni?",
"playInPartyTitle": "Játsz a Habitica-val egy csapatban!",
"playInPartyDescription": "Vegyél részt elképesztő küldetésekben a barátaiddal vagy egyedül. Harcolj szörnyek ellen, hozz létre kihívásokat, és segíts magadnak abban hogy felelős maradj a feladataidért.",
"startYourOwnPartyTitle": "Hozd létre a saját csapatodat",
"startYourOwnPartyDescription": "Harcolj egyedül szörnyek ellen vagy hívj meg annyi embert amennyit szeretnél!",
"shartUserId": "Felhasználói azonosító megosztása",
"wantToJoinPartyTitle": "Szeretnél csatlakozni egy csapathoz?",
"wantToJoinPartyDescription": "Add meg a felhasználói azonosítódat egy barátodnak akinek már van csapata, vagy a 'Party Wanted Guild' nevű céhben oszd meg hogy potenciális csapattagokkal találkozhass!",
"copy": "Másolás",
"inviteToPartyOrQuest": "Csapat meghívása egy küldetéshez",
"inviteInformation": "A \"meghívás\" gombra kattintva a csapatod tagjai egy meghívót kapnak. Ha az összes tag elfogadta vagy elutasította a meghívást, a küldetés kezdetét veszi.",
"questOwnerRewards": "Küldetés tulajdonosának jutalamai",
"updateParty": "Csapat frissÍtése",
"upgrade": "Fejlesztés",
"selectPartyMember": "Csapattag kiválasztása",
"areYouSureDeleteMessage": "Biztos vagy benne hogy törölni akarod ezt az üzenetet?",
"reverseChat": "Üzenőfal megfordítása",
"invites": "Meghívók",
"details": "Információk",
"participantDesc": "Ha az összes tag vagy elfogadta vagy elutasította a meghívást, a küldetés kezdetét veszi. Csak azok fognak a küldetésben részt venni valamint a jutalmat megkapni, akik elfogadták a meghívást.",
"groupGems": "Csapat drágakövei",
"groupGemsDesc": "A céhhez tartozó drágakövek elkölthetőek kihívások létrehozására! A jövőben még több drágakövet adhatsz a céhhez.",
"groupTaskBoard": "Feladatlista",
"groupInformation": "Csoport információ",
"groupBilling": "A csoport számlája",
"wouldYouParticipate": "Szeretnél ebben részt venni?",
"managerAdded": "Menedzser hozzáadása sikeres",
"managerRemoved": "Menedzser eltávolítása sikeres",
"leaderChanged": "Vezető megváltoztatva",
"groupNoNotifications": "Ez a céh nemrendelkezik értesítésekkel a létszám nagysága miatt. Ne felejtsd el gyakran megnézni hogy az üzeneteidre érkezett-e válasz!",
"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.",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulipán mágus (mágus)",
"spring2018GarnetHealerSet": "Gránát gyógyító (gyógyító)",
"spring2018DucklingRogueSet": "Kiskacsa tolvaj (tolvaj)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Megvásárolható <%= date(locale) %>-ig.",
"dateEndMarch": "április 30",
"dateEndApril": "április 19",
+13 -13
View File
@@ -21,17 +21,17 @@
"showTour": "Bemutató mutatása",
"restartTour": "A bevezető újraindítása onnantól, hogy csatlakoztál a Habitica-hoz.",
"showBailey": "Mutasd Bailey-t",
"showBaileyPop": "Előhozza Bailey-t, a beharangozót a bujkálásból, így megnézheted a korábbi híreket.",
"showBaileyPop": "Előhozza Bailey-t, a város hírvivőjét a rejtőzködésből, így megnézheted a korábbi híreket.",
"fixVal": "Karakter értékek helyreállítása",
"fixValPop": "Manuálisan beállíthatod az értékeket, úgy mint életerő, szint és arany.",
"fixValPop": "Manuálisan beállíthatod az értékeket, mint az életerő, szint és arany.",
"invalidLevel": "Érvénytelen érték: Az értéknek 1-nek vagy magasabbnak kell lennie.",
"enableClass": "Kaszt-rendszer engedélyezése",
"enableClassPop": "Kiszálltál a kaszt-rendszerből korábban. Szeretnéd bekapcsolni?",
"classTourPop": "Kaszt-rendszer ismertetőjének mutatása",
"enableClass": "Kasztrendszer engedélyezése",
"enableClassPop": "Korábban nem választottád magadnak kasztot. Szeretnéd ezt most megtenni?",
"classTourPop": "Kasztrendszer ismertetőjének mutatása.",
"resetAccount": "Fiók újraindítása",
"resetAccPop": "Újraindítás, elveszted az összes szinted, aranyad, felszerelésed, történeted és feladataid.",
"resetAccPop": "Kezdj új kalandot, amivel elveszted az összes szinted, aranyad, felszerelésed, előzményeid és feladataid.",
"deleteAccount": "Fiók törlése",
"deleteAccPop": "Habitica fiókod törlése és megszűntetése.",
"deleteAccPop": "Habitica fiókod törlése és megszüntetése.",
"feedback": "If you'd like to give us feedback, please enter it below - we'd love to know what you liked or didn't like about Habitica! Don't speak English well? No problem! Use the language you prefer.",
"qrCode": "QR kód",
"dataExport": "Adatok exportálása",
@@ -45,12 +45,12 @@
"xml": "(XML)",
"json": "(JSON)",
"customDayStart": "Egyéni napkezdés",
"sureChangeCustomDayStartTime": "Are you sure you want to change your Custom Day Start time? Your Dailies will next reset the first time you use Habitica after <%= time %>. Make sure you have completed your Dailies before then!",
"sureChangeCustomDayStartTime": "Biztos meg akarod változtatni az egyéni napkezdést? A napi feladataid legközelebb akkor indulnak újra, amikor a Habitica-t <%= time %> után használod. Bizonyosodj meg róla, hogy ez előtt befejezed a napi feladataid.",
"changeCustomDayStart": "Megváltoztatod az egyéni napkezdést?",
"sureChangeCustomDayStart": "Biztosan meg akarod változtatni, mikor kezdődjön a nap?",
"customDayStartHasChanged": "Egyéni napkezdés időpontja megváltozott.",
"nextCron": "A napi feladataid legközelebb akkor indulnak újra, amikor a Habiticat <%= time %> után használod. Bizonyosodj meg róla, hogy ez előtt az idő előtt befejezed a napi feladataid.",
"customDayStartInfo1": "A Habitican a napi feladataid újraindítása a saját időzónádbeli éjfélre van alapértelmezve. Ezt az időt itt tudod tesreszabni",
"nextCron": "A napi feladataid legközelebb akkor indulnak újra, amikor a Habitica-t <%= time %> után használod. Bizonyosodj meg róla, hogy ez előtt az idő előtt befejezed a napi feladataid.",
"customDayStartInfo1": "A Habitica-n a napi feladataid újraindítása a saját időzónádon belül éjfélre van alapértelmezve. Ezt az időt itt tudod testreszabni.",
"misc": "Egyéb",
"showHeader": "Mutasd a fejlécet",
"changePass": "Jelszó megváltoztatása",
@@ -62,13 +62,13 @@
"confirmPass": "Új jelszó megerősítése",
"newUsername": "Új bejelentkezési név",
"dangerZone": "Veszélyzóna",
"resetText1": "VIGYÁZAT! Ez alapállapotra állítja a fiókod sok részét. Alapvetően nem ajánljuk, de pár embernek hasznos lehet az elején, miután még csak egy rövid ideig játszott.",
"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.",
"resetText1": "VIGYÁZAT! Ez alapállapotba állítja a fiókod bizonyos részeit. Ezt alapvetően nem ajánljuk, de bizonyos embereknek hasznos lehet az elején, miután még csak egy rövid ideig játszott.",
"resetText2": "El fogod veszíteni az összes szintedet, aranyadat és tapasztalati pontodat. Minden feladatod (kivéve a kihívásokhoz tartozóak) véglegesen törlődik az előzményekkel együtt. Minden tárgyadat elveszíted, de ezeket később visszavásárolhatod a korlátozott példányszámú tárgyak és a rejtélyes tárgyak esetében is, amiket most birtokolsz (megfelelő kasztba kell tartoznod, hogy a kaszt-specifikus tárgyakat megvehesd). A jelenlegi kasztod, háziállataid és hátasaid megmaradnak. Esetleg jobban jársz az újjászületés gömbjével, mely biztonságosabb opció és megőrzi a feladataidat is.",
"deleteLocalAccountText": "Are you sure? This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type your password into the text box below.",
"deleteSocialAccountText": "Are you sure? This will delete your account forever, and it can never be restored! You will need to register a new account to use Habitica again. Banked or spent Gems will not be refunded. If you're absolutely certain, type \"<%= magicWord %>\" into the text box below.",
"API": "API",
"APIv3": "API v3",
"APIText": "Másold ki ezt, külső alkalmazások használatához. Egyébiránt úgy gondolj az API Kulcsodra, mint egy jelszóra és ne oszd meg senkivel nyilvánosan. Előfordulhat, hogy a felhasználói azonosítódat kérik, de soha ne írd be sehova az API Kulcsodat, ahol mások esetleg láthatják, még a Githubra se.",
"APIText": "Másold ki ezt, külső alkalmazások használatához. Egyébiránt úgy gondolj az API kulcsodra, mint egy jelszóra és ne oszd meg senkivel nyilvánosan. Előfordulhat, hogy a felhasználói azonosítódat kérik, de az API kulcsodat soha ne írd be sehova, ahol mások esetleg láthatják, még a Githubra se.",
"APIToken": "API kulcs (ez egy jelszó - lásd a figyelmeztetést lejjebb)",
"showAPIToken": "API kulcs mutatása",
"hideAPIToken": "API kulcs elrejtése",
+24 -24
View File
@@ -1,55 +1,55 @@
{
"spellWizardFireballText": "Lángcsóva",
"spellWizardFireballNotes": "You summon XP and deal fiery damage to Bosses! (Based on: INT)",
"spellWizardFireballNotes": "Tapasztalati pontot idézel meg amivel tüzes sebzést okozol főellenségeidnek! (Alapja: INT)",
"spellWizardMPHealText": "Éterhullám",
"spellWizardMPHealNotes": "You sacrifice Mana so the rest of your Party, except Mages, gains MP! (Based on: INT)",
"spellWizardMPHealNotes": "Feláldozod a manád egy részét, hogy segíts a barátaidnak. A csapatod tagjai, mágusok kivételével, MP-t kapnak! (Alapja: INT)",
"spellWizardEarthText": "Földrengés",
"spellWizardEarthNotes": "Your mental power shakes the earth and buffs your Party's Intelligence! (Based on: Unbuffed INT)",
"spellWizardEarthNotes": "A mentális erőd megrengeti a földet és az egész csapatod intelligenciája ideiglenesen megnő! (Alapja: megerősítetlen INT)",
"spellWizardFrostText": "Dermesztő fagy",
"spellWizardFrostNotes": "With one cast, ice freezes all your streaks so they won't reset to zero tomorrow!",
"spellWizardFrostNotes": "Egy varázslattal jég lepi be az összes szériádat hogy másnap ne nullázódjanak le! ",
"spellWizardFrostAlreadyCast": " Ezt a varázslatot már használtad ma. A szériád már befagyasztottad ezért nincs szükség rá, hogy újra használd.",
"spellWarriorSmashText": "Brutális zúzás",
"spellWarriorSmashNotes": "You make a task more blue/less red and deal extra damage to Bosses! (Based on: STR)",
"spellWarriorSmashNotes": "Az egyik feladatod sokkal kékebb vagy kevésbé piros lesz, valamint extra sebzést is okozol a főellenségnek! (Alapja: ERŐ)",
"spellWarriorDefensiveStanceText": "Védekező állás",
"spellWarriorDefensiveStanceNotes": "You crouch low and gain a buff to Constitution! (Based on: Unbuffed CON)",
"spellWarriorDefensiveStanceNotes": "Térdre ereszkedsz és a szívósságod megerősödik! (Alapja: megerősítetlen SZÍV)",
"spellWarriorValorousPresenceText": "Bátor megjelenés",
"spellWarriorValorousPresenceNotes": "Your boldness buffs your whole Party's Strength! (Based on: Unbuffed STR)",
"spellWarriorValorousPresenceNotes": "Bátorságod megerősíti az egész csapatod erejét! (Alapja: megerősítetlen ERŐ)",
"spellWarriorIntimidateText": "Megfélemlítő tekintet",
"spellWarriorIntimidateNotes": "Your fierce stare buffs your whole Party's Constitution! (Based on: Unbuffed CON)",
"spellWarriorIntimidateNotes": "Ádáz tekinteted megerősíti az egész csapatod szívósságát! (Alapja: megerősítetlen SZÍV)",
"spellRoguePickPocketText": "Zsebmetszés",
"spellRoguePickPocketNotes": "You rob a nearby task and gain gold! (Based on: PER)",
"spellRoguePickPocketNotes": "Kirabolsz egy feladatot és aranyat szerzel! (Alapja: ÉSZ)",
"spellRogueBackStabText": "Hátbaszúrás",
"spellRogueBackStabNotes": "You betray a foolish task and gain gold and XP! (Based on: STR)",
"spellRogueBackStabNotes": "Elárulsz egy ostoba feladatot és aranyat valamint tapasztalati pontot szerzel! (Alapja: ERŐ)",
"spellRogueToolsOfTradeText": "Munkaeszközök",
"spellRogueToolsOfTradeNotes": "Your tricky talents buff your whole Party's Perception! (Based on: Unbuffed PER)",
"spellRogueToolsOfTradeNotes": "Ravasz képeségeid megerősíti az egész csapatod észlelését! (Alapja: megerősítetlen ÉSZ)",
"spellRogueStealthText": "Lopakodás",
"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)",
"spellRogueStealthNotes": "Mindegyik varázslattal napi feladataid közül néhány nem sebez meg. A szériájuk és színük nem fog változni. (Alapja: ÉSZ)",
"spellRogueStealthDaliesAvoided": "<%= originalText %> Kikerült napi feladatok száma: <%= number %>.",
"spellRogueStealthMaxedOut": "Már minden napi feladatod elkerülted; nincs szükség erre a varázslatra mégegyszer. ",
"spellHealerHealText": "Gyógyító fény",
"spellHealerHealNotes": "Shining light restores your health! (Based on: CON and INT)",
"spellHealerHealNotes": "Ragyogó fény gyógyítja meg a sebeidet! (Alapja: SZÍV és ERŐ)",
"spellHealerBrightnessText": "Perzselő ragyogás",
"spellHealerBrightnessNotes": "A burst of light makes your tasks more blue/less red! (Based on: INT)",
"spellHealerBrightnessNotes": "Egy fénycsóva a feladataidat sokkal kékebb vagy kevésbé pirossá varázsolja! (Alapja: INT)",
"spellHealerProtectAuraText": "Védelmező aura",
"spellHealerProtectAuraNotes": "You shield your Party by buffing their Constitution! (Based on: Unbuffed CON)",
"spellHealerProtectAuraNotes": "Megvéded a csapatodat szívósságuk megerősítésével! (Alapja: megerősítetlen SZÍV)",
"spellHealerHealAllText": "Áldás",
"spellHealerHealAllNotes": "Your soothing spell restores your whole Party's health! (Based on: CON and INT)",
"spellHealerHealAllNotes": "Nyugtató varázslatod helyreállítja az egész csapatod életerejét! (Alapja: SZÍV és INT)",
"spellSpecialSnowballAuraText": "Hógolyó",
"spellSpecialSnowballAuraNotes": "Változtass egy barátodat fagyott hóemberré!",
"spellSpecialSnowballAuraNotes": "Változtasd az egyik barátodat fagyott hóemberré!",
"spellSpecialSaltText": "Só",
"spellSpecialSaltNotes": "Reverse the spell that made you a snowman.",
"spellSpecialSaltNotes": "Fordíts vissza a varázslatot ami hóemberré változtatott.",
"spellSpecialSpookySparklesText": "Kísérteties sziporkák",
"spellSpecialSpookySparklesNotes": "Turn your friend into a transparent pal!",
"spellSpecialSpookySparklesNotes": "Változtasd az egyik barátodat egy átlátszó cimborává!",
"spellSpecialOpaquePotionText": "Opálos főzet",
"spellSpecialOpaquePotionNotes": "Reverse the spell that made you transparent.",
"spellSpecialOpaquePotionNotes": "Fordíts vissza a varázslatot ami átlátszóvá változtatott.",
"spellSpecialShinySeedText": "Csillogó mag",
"spellSpecialShinySeedNotes": "Változtass egy barátodat vidám virággá!",
"spellSpecialShinySeedNotes": "Változtasd az egyik barátodat egy vidám virággá!",
"spellSpecialPetalFreePotionText": "Szirommentes főzet",
"spellSpecialPetalFreePotionNotes": "Reverse the spell that made you a flower.",
"spellSpecialPetalFreePotionNotes": "Fordíts vissza a varázslatot ami virággá változtatott.",
"spellSpecialSeafoamText": "Tengerhab",
"spellSpecialSeafoamNotes": "Változtass egy barátodat tengeri lénnyé!",
"spellSpecialSeafoamNotes": "Változtasd az egyik barátodat egy tengeri lénnyé!",
"spellSpecialSandText": "Homok",
"spellSpecialSandNotes": "Reverse the spell that made you a sea star.",
"spellSpecialSandNotes": "Fordíts vissza a varázslatot ami tengeri csillaggá változtatott.",
"partyNotFound": "A csapat nem található",
"targetIdUUID": "\"targetId\" érvényes felhasználói azonosítónak kell lennie.",
"challengeTasksNoCast": "Kihívásokhoz tartozó feladatokon nem használhatsz varázslatokat.",
+28
View File
@@ -258,6 +258,14 @@
"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.",
"weaponMystery201411Text": "Garpu Makan",
"weaponMystery201411Notes": "Tusuk musuh atau tusuk makanan - semua bisa dilakukan dengan garpu ini! Tidak menambah status apapun. Item Pelanggan November 2014.",
"weaponMystery201502Text": "Tongkat Cahaya Bersayap dari Cinta dan Juga Kejujuran",
@@ -572,6 +580,14 @@
"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.",
"armorMystery201402Text": "Jubah Pembawa Pesan",
"armorMystery201402Notes": "Berkilau dan kuat, jubah ini punya banyak kantong untuk membawa surat. Tidak menambah status apapun. Item Pelanggan Februari 2014.",
"armorMystery201403Text": "Baju Penjelajah Hutan",
@@ -960,6 +976,14 @@
"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.",
"headSpecialGaymerxText": "Helm Prajurit Pelangi",
"headSpecialGaymerxNotes": "Sebagai Perayaan Konferensi GaymerX, helm spesial ini berhiaskan pelangi yang cerah dan indah! GaymerX adalah konvensi gamer yang merayakan LGBTQ",
"headMystery201402Text": "Helm Bersayap",
@@ -1280,6 +1304,10 @@
"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.",
"shieldMystery201601Text": "Pedang Resolusi",
"shieldMystery201601Notes": "Pedang ini dapat digunakan untuk menangkis semua gangguan. Tidak menambah status apapun. Item Pelanggan Januari 2016.",
"shieldMystery201701Text": "Perisai Penghenti Waktu",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulip Mage (Mage)",
"spring2018GarnetHealerSet": "Garnet Healer (Healer)",
"spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Tersedia untuk dibeli hingga <%= date(locale) %>.",
"dateEndMarch": "April 30",
"dateEndApril": "19 April",
+28
View File
@@ -258,6 +258,14 @@
"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.",
"weaponMystery201411Text": "Forcone dei festeggiamenti",
"weaponMystery201411Notes": "Infilza i tuoi nemici o inforca i tuoi cibi preferiti - questo versatile forcone può fare di tutto! Non conferisce alcun bonus. Oggetto per abbonati, novembre 2014.",
"weaponMystery201502Text": "Scintillante Scettro Alato dell'Amore e anche della Verità",
@@ -572,6 +580,14 @@
"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.",
"armorMystery201402Text": "Vesti del Messaggero",
"armorMystery201402Notes": "Lucenti e robuste, queste vesti hanno diverse tasche per trasportare le lettere. Non conferisce alcun bonus. Oggetto per abbonati, febbraio 2014.",
"armorMystery201403Text": "Armatura del Proteggiforeste",
@@ -960,6 +976,14 @@
"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.",
"headSpecialGaymerxText": "Elmo del Guerriero Arcobaleno",
"headSpecialGaymerxNotes": "Per celebrare il GaymerX, questo speciale elmo è decorato con un raggiante e colorato tema arcobaleno! Il GaymerX è un evento dedicato al gaming e alla comunità LGBTQ, ed è aperto a tutti.",
"headMystery201402Text": "Elmo Alato",
@@ -1280,6 +1304,10 @@
"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.",
"shieldMystery201601Text": "Risoluzione dell'Assassino",
"shieldMystery201601Notes": "Questa lama può essere usata per parare ogni distrazione. Non conferisce alcun bonus. Oggetto per abbonati, gennaio 2016.",
"shieldMystery201701Text": "Scudo ferma-tempo",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulip Mage (Mage)",
"spring2018GarnetHealerSet": "Garnet Healer (Healer)",
"spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Disponibile fino al <%= date(locale) %>.",
"dateEndMarch": "30 aprile",
"dateEndApril": "19 aprile",
+7 -7
View File
@@ -353,11 +353,11 @@
"backgroundFantasticalShoeStoreNotes": "不思議な靴屋で面白くて新しい靴を探そう。",
"backgroundChampionsColosseumText": "戦士の闘技場",
"backgroundChampionsColosseumNotes": "戦士の闘技場で勝利の栄光を味わおう。",
"backgrounds062018": "SET 49: Released June 2018",
"backgroundDocksText": "Docks",
"backgroundDocksNotes": "Fish from atop the Docks.",
"backgroundRowboatText": "Rowboat",
"backgroundRowboatNotes": "Sing rounds in a Rowboat.",
"backgroundPirateFlagText": "Pirate Flag",
"backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag."
"backgrounds062018": "セット492018年6月リリース",
"backgroundDocksText": "造船ドック",
"backgroundDocksNotes": "造船ドックの上で魚釣りをしましょう",
"backgroundRowboatText": "小舟",
"backgroundRowboatNotes": "小舟の上で輪唱しましょう",
"backgroundPirateFlagText": "海賊のフラッグ",
"backgroundPirateFlagNotes": "見る者に恐怖を与える海賊旗を掲げましょう"
}
+39 -11
View File
@@ -258,6 +258,14 @@
"weaponSpecialSpring2018MageNotes": "This magic flower never wilts! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
"weaponSpecialSpring2018HealerText": "ガーネットのロッド",
"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.",
"weaponMystery201411Text": "ごちそうの熊手",
"weaponMystery201411Notes": "敵を突き刺したり、好きな食べ物を掘り出したり - この何にでも使える熊手なら両方できます! 効果なし。2014年11月寄付会員アイテム。",
"weaponMystery201502Text": "キラキラ輝く羽のついた愛と真実のつえ",
@@ -331,9 +339,9 @@
"weaponArmoireCoachDriversWhipText": "御者の鞭",
"weaponArmoireCoachDriversWhipNotes": "馬たちはすべきことを分かっているので、この鞭は見せる(そして小気味いい音を出す!)だけです。知能が<%= int %>、力が<%= str %>上がります。ラッキー宝箱:御者セット(3個中3個目のアイテム)",
"weaponArmoireScepterOfDiamondsText": "ダイヤの王笏",
"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).",
"weaponArmoireScepterOfDiamondsNotes": "暖かな赤色の輝きを放つこの笏は、あなたの意志の力を増大させてくれます。知能が<%= str %>上がります。ラッキー宝箱: ダイヤの王様セット(4個中3個目のアイテム)",
"weaponArmoireFlutteryArmyText": "ひらひらの群れ",
"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).",
"weaponArmoireFlutteryArmyNotes": "この小さなちょうちょの群れはいつでも激しく羽ばたいて、あなたの一番真っ赤なタスクをクールダウンさせてくれます! 体質と知能、力が<%= attrs %>ずつ上がります。ラッキー宝箱:ひらひらのドレスセット(4個中3個目のアイテム)",
"weaponArmoireCobblersHammerText": "靴修理職人のハンマー",
"weaponArmoireCobblersHammerNotes": "このハンマーは革細工のための特別製ですが、赤くなった日課を実際に打ち負かすこともできます。体質と力が<%= attrs %>上がります。ラッキー宝箱:靴修理職人セット(3個中2つ目のアイテム)",
"weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe",
@@ -572,6 +580,14 @@
"armorSpecialSpring2018MageNotes": "Your spell casting can only improve while clad in these soft, silky petals. Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.",
"armorSpecialSpring2018HealerText": "ガーネットのよろい",
"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.",
"armorMystery201402Text": "メッセンジャーのローブ",
"armorMystery201402Notes": "かすかに光って、力強い。このローブは、手紙を運ぶために多くのポケットがついています。効果なし。2014年2月寄付会員アイテム。",
"armorMystery201403Text": "森の散策者のよろい",
@@ -717,9 +733,9 @@
"armorArmoireCoachDriverLiveryText": "御者の制服",
"armorArmoireCoachDriverLiveryNotes": "この分厚い外套は走行中の外気からあなたを守ってくれるでしょう。加えて、とっても素敵に見えます! 力が<%= str %>上がります。ラッキー宝箱:御者セット( 3 個中 1 個目のアイテム )",
"armorArmoireRobeOfDiamondsText": "ダイヤのローブ",
"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).",
"armorArmoireRobeOfDiamondsNotes": "この高貴なローブはあなたの外見を立派に見せるだけではなく、他人の中の高潔さを見出せるようにもしてくれます。知覚が<%= per %>上がります。ラッキー宝箱: ダイヤの王様セット(4個中1個目のアイテム)",
"armorArmoireFlutteryFrockText": "ひらひらのドレス",
"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).",
"armorArmoireFlutteryFrockNotes": "軽くて優美なガウンとふんわりしたスカートは、ちょうちょが大きな花だと間違えてしまいそうです! 体質と知覚、力が<%= attrs %> ずつ上がります。ラッキー宝箱:ひらひらのドレスセット(4個中1個目のアイテム)",
"armorArmoireCobblersCoverallsText": "靴修理職人のカバーオール",
"armorArmoireCobblersCoverallsNotes": "この丈夫なカバーオールには工具や革の切れ端、その他お役立ちアイテムを入れるためのポケットがいっぱいついています!知覚と力が<%= attrs %>上がります。ラッキー宝箱:靴修理職人セット(3個中1つ目のアイテム)",
"armorArmoireGlassblowersCoverallsText": "Glassblower's Coveralls",
@@ -960,6 +976,14 @@
"headSpecialSpring2018MageNotes": "The fancy petals of this helm will grant you special springtime magic. Increases Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
"headSpecialSpring2018HealerText": "ガーネットの頭飾り",
"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.",
"headSpecialGaymerxText": "レインボーの戦士のヘルメット",
"headSpecialGaymerxNotes": "GaymerX カンファレンスを記念し、この特別なヘルメットは晴れやかでカラフルなレインボー柄で彩られています。GaymerX とは、LGTBQ (性的マイノリティー)とゲームを祝う見本市で、だれにでも開かれています。",
"headMystery201402Text": "羽かぶと",
@@ -1119,9 +1143,9 @@
"headArmoireCoachDriversHatText": "御者の帽子",
"headArmoireCoachDriversHatNotes": "この帽子はしゃれていますが、シルクハットほど格式ばってはいません。早駆け中になくさないようご注意を! 知能が<%= int %>上がります。ラッキー宝箱:御者セット( 3 個中 2 個めのアイテム )",
"headArmoireCrownOfDiamondsText": "ダイヤの王冠",
"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).",
"headArmoireCrownOfDiamondsNotes": "この輝く王冠はただの立派なかぶりものではなく、あなたの精神をも研ぎ澄ましてくれます! 知能が<%= int %>上がります。ラッキー宝箱: ダイヤの王様セット(4個中2個目のアイテム)",
"headArmoireFlutteryWigText": "ひらひらのウィッグ",
"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).",
"headArmoireFlutteryWigNotes": "この髪粉をはたいた素敵なウィッグには、ちょうちょたちが休憩を取るための豊富なスペースがあります。知能と知覚、力が<%= attrs %> ずつ上がります。ラッキー宝箱: ひらひらのドレスセット(4個中2個目のアイテム)",
"headArmoireBirdsNestText": "鳥の巣",
"headArmoireBirdsNestNotes": "頭上でさえずる声と動きを感じ始めたなら、あなたの新品の帽子は新しい友達になったのかもしれません。知能が<%= int %>上がります。ラッキー宝箱:個別のアイテム。",
"headArmoirePaperBagText": "紙袋",
@@ -1280,6 +1304,10 @@
"shieldSpecialSpring2018WarriorNotes": "This sturdy shield glows with the glory of first light. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.",
"shieldSpecialSpring2018HealerText": "ガーネットの盾",
"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.",
"shieldMystery201601Text": "決意の剣",
"shieldMystery201601Notes": "この剣はすべての破壊を退けてくれるでしょう。効果なし。2016年寄付会員アイテム。",
"shieldMystery201701Text": "タイムフリーザー シールド",
@@ -1332,10 +1360,10 @@
"shieldArmoireHandmadeCandlestickNotes": "あなたの良質なロウ製品が、感謝の気持ちでいっぱいのHabiticanたちに明かりと暖かさを届けます! 力が<%= str %>上がります。ラッキー宝箱: ロウソク職人セット(3個中3個目のアイテム)。",
"shieldArmoireWeaversShuttleText": "織物師のシャトル",
"shieldArmoireWeaversShuttleNotes": "この道具でよこ糸をたて糸の間に通して、布を織ります! 知能が<%= int %>、知覚が<%= per %>上がります。ラッキー宝箱: 織物師セット(3個中3個目のアイテム)",
"shieldArmoireShieldOfDiamondsText": "Shield of Diamonds",
"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).",
"shieldArmoireShieldOfDiamondsText": "ダイヤの盾",
"shieldArmoireShieldOfDiamondsNotes": "このさんぜんと輝く盾は防御力を上げるだけでなく、あなた自身の持久力も強化してくれます! 体質が<%= con %>上がります。 ラッキー宝箱:ダイヤの王様セット(4個中4個目のアイテム)",
"shieldArmoireFlutteryFanText": "ひらひらの扇子",
"shieldArmoireFlutteryFanNotes": "暑い日に目と心をクールにしてくれる、素敵な扇子にかなうものはありません。体質と知能、知覚が <%= attrs %> ずつ上がります。ラッキー宝箱:ひらひらのドレスセット(4個中4個目のアイテム)",
"shieldArmoireFancyShoeText": "高級な靴",
"shieldArmoireFancyShoeNotes": "あなたが修理に取り組んでいるとても特別な靴。王侯貴族にふさわしい品です! 知能と知覚が<%= attrs %>上がります。ラッキー宝箱:靴修理職人セット(3つ中3つ目のアイテム)",
"shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase",
@@ -1507,7 +1535,7 @@
"headAccessoryMystery301405Text": "かぶるためのゴーグル",
"headAccessoryMystery301405Notes": "「ゴーグルは目にかけるものだ」、「頭にのせるだけのゴーグルなんてだれも要らないぞ」ってヤツらはいうけど、ハハッ! 見せつけてやりましょう。効果なし。3015年8月寄付会員アイテム。",
"headAccessoryArmoireComicalArrowText": "お笑いの矢",
"headAccessoryArmoireComicalArrowNotes": "This whimsical item sure is good for a laugh! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.",
"headAccessoryArmoireComicalArrowNotes": "この妙なアイテムは笑えるでしょう! 力が<%= str %>上がります。ラッキー宝箱 : 個別のアイテム。",
"eyewear": "アイウエア",
"eyewearCapitalized": "アイウェア",
"eyewearBase0Text": "アイウエアなし",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "チューリップの魔道士(魔道士)",
"spring2018GarnetHealerSet": "ガーネットの治療師(治療師)",
"spring2018DucklingRogueSet": "アヒルちゃん盗賊(盗賊)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "<%= date(locale) %>まで購入できます。",
"dateEndMarch": "4月30日",
"dateEndApril": "4月19日",
+2 -2
View File
@@ -603,6 +603,6 @@
"questSquirrelUnlockText": "市場でリスのたまごを買えるようにする",
"cuddleBuddiesText": "「抱っこ仲間」クエストセット",
"cuddleBuddiesNotes": "「殺し屋ウサギ」「ふとどきなフェレット」「モルモットギャング団」のセット。5月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": "「魔のウーパールーパー」「ミスミの大イカ」「オクトゥルフの呼び声」のセット。6月30日まで購入できます。"
}
+2 -2
View File
@@ -356,8 +356,8 @@
"backgrounds062018": "SET 49: Released June 2018",
"backgroundDocksText": "Docks",
"backgroundDocksNotes": "Fish from atop the Docks.",
"backgroundRowboatText": "Rowboat",
"backgroundRowboatText": "Roeiboot",
"backgroundRowboatNotes": "Sing rounds in a Rowboat.",
"backgroundPirateFlagText": "Pirate Flag",
"backgroundPirateFlagText": "Piratenvlag",
"backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag."
}
+5 -5
View File
@@ -46,7 +46,7 @@
"mustache": "Snor",
"flower": "Bloem",
"accent": "Accent",
"headband": "Headband",
"headband": "Hoofdband",
"wheelchair": "Rolstoel",
"extra": "Extra",
"basicSkins": "Basishuidskleuren",
@@ -66,7 +66,7 @@
"classBonusText": "Your class (Warrior, if you haven't unlocked or selected another class) uses its own equipment more effectively than gear from other classes. Equipped gear from your current class gets a 50% boost to the Stat bonus it grants.",
"classEquipBonus": "Klassebonus",
"battleGear": "Strijduitrusting",
"gear": "Gear",
"gear": "Uitrusting",
"battleGearText": "Dit is de uitrusting die je in de strijd draagt. Het beïnvloedt scores als je met taken bezig bent.",
"autoEquipBattleGear": "Automatisch nieuwe uitrusting gebruiken",
"costume": "Kostuum",
@@ -166,7 +166,7 @@
"dieText": "Je hebt een niveau, al je goud, en een willekeurig onderdeel van je uitrusting verloren. Herrijs, Habiteer, en probeer het opnieuw! Bedwing die slechte gewoontes, let erop je dagelijkse taken bij te houden en houd de dood van je af met een gezondheidsdrankje als je wankelt!",
"sureReset": "Are you sure? This will reset your character's class and allocated Stat Points (you'll get them all back to re-allocate), and costs 3 Gems.",
"purchaseFor": "Kopen voor <%= cost %> edelstenen?",
"purchaseForHourglasses": "Purchase for <%= cost %> Hourglasses?",
"purchaseForHourglasses": "Koop voor <%= cost %> Zandlopers?",
"notEnoughMana": "Niet genoeg mana.",
"invalidTarget": "Je kan daar geen vaardigheid op uitspreken.",
"youCast": "Je hebt <%= spell %> uitgesproken.",
@@ -219,6 +219,6 @@
"bodyAccess": "Lichaamsaccess.",
"mainHand": "Main-Hand",
"offHand": "Off-Hand",
"pointsAvailable": "Points Available",
"pts": "pts"
"pointsAvailable": "Punten Beschikbaar",
"pts": "ptn"
}
+49 -21
View File
@@ -253,11 +253,19 @@
"weaponSpecialSpring2018RogueText": "Buoyant Bullrush",
"weaponSpecialSpring2018RogueNotes": "Wat op eerste opzicht een schattige lisdodde lijkt, is in werkelijkheid een effectief wapen in de juiste handen. Verhoogt Kracht met <%= str %>. Beperkte oplage 2018 Lente Uitrusting.",
"weaponSpecialSpring2018WarriorText": "Bijl van Ochtendgloren",
"weaponSpecialSpring2018WarriorNotes": "Made of bright gold, this axe is mighty enough to attack the reddest task! Increases Strength by <%= str %>. Limited Edition 2018 Spring Gear.",
"weaponSpecialSpring2018WarriorNotes": "Gemaakt van helder goud, deze bijl is sterk genoeg om de roodste taken aan te vallen. Verhoogt kracht met <%= str %>. Beperkte oplage 2018 Lenteuitrusting.",
"weaponSpecialSpring2018MageText": "Tulpenstaf",
"weaponSpecialSpring2018MageNotes": "This magic flower never wilts! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
"weaponSpecialSpring2018MageNotes": "Deze magische bloem verwelkt nooit! Verhoogt Intelligentie met <%= int %> en Perceptie met <%= per %>. Beperkte Oplage 2018 Lente Uitrusting.",
"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.",
"weaponSpecialSpring2018HealerNotes": "De stenen in deze staf zullen je kracht focussen wanneer je genezingstoverspreuken uitspreekt. Verhoogt Intelligentie met <%= int %>. Beperkte Oplage 2018 Lenteuitrusting.",
"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.",
"weaponMystery201411Text": "Feestmaal Hooivork",
"weaponMystery201411Notes": "Steek je vijanden neer of neem een schep van je favoriete eten - met deze hooivork kan het allemaal! Verleent geen voordelen. Abonnee-uitrusting november 2014.",
"weaponMystery201502Text": "Glimmende Gevleugelde Staff der Liefde alsook Wijsheid",
@@ -572,6 +580,14 @@
"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.",
"armorMystery201402Text": "Boodschappersgewaden",
"armorMystery201402Notes": "Het gewaad is glinsterend en sterk en heeft vele zakken om brieven te dragen. Verleent geen voordelen. Abonnee-uitrusting februari 2014.",
"armorMystery201403Text": "Woudlopersharnas",
@@ -960,6 +976,14 @@
"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.",
"headSpecialGaymerxText": "Helm van de Regenboogkrijger",
"headSpecialGaymerxNotes": "Om de GaymerX conferentie te vieren, is deze speciale helm gedecoreerd met een stralend, kleurrijk, regenboogpatroon! GaymerX is een game-conventie die LGTBQ en gamen viert en open is voor iedereen.",
"headMystery201402Text": "Gevleugelde helm",
@@ -1124,7 +1148,7 @@
"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",
"headArmoirePaperBagText": "Papieren Zak",
"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.",
@@ -1280,6 +1304,10 @@
"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.",
"shieldMystery201601Text": "Slachter van Voornemens",
"shieldMystery201601Notes": "Dit zwaard kan gebruikt worden om alle afleidingen af te weren. Verleent geen voordelen. Abonnee-uitrusting januari 2016.",
"shieldMystery201701Text": "Tijd-Stoppers-Schild",
@@ -1332,7 +1360,7 @@
"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).",
"shieldArmoireShieldOfDiamondsText": "Shield of Diamonds",
"shieldArmoireShieldOfDiamondsText": "Schild van Diamant",
"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).",
@@ -1372,7 +1400,7 @@
"backMystery201801Notes": "Ze zien er zo gevoelig uit als sneeuwvlokken, maar deze betoverde vleugels dragen je heen waar je wilt! Verleent geen voordelen. Abonnee-uitrusting januari 2018.",
"backMystery201803Text": "Provocerende Libelle Vleugels",
"backMystery201803Notes": "Deze felle en schitterende vleugels dragen je door de zachte lentewind en over vijvers met gemak. Verleent geen voordelen. Abonnee-uitrusting maart 2018.",
"backMystery201804Text": "Squirrel Tail",
"backMystery201804Text": "Eekhoornstaart",
"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.",
"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.",
@@ -1476,20 +1504,20 @@
"headAccessoryTigerEarsNotes": "Deze oren laten je eruitzien als een woeste tijger! Verleent geen voordelen.",
"headAccessoryWolfEarsText": "Wolvenoren",
"headAccessoryWolfEarsNotes": "Deze oren laten je eruitzien als een trouwe wolf! Verleent geen voordelen.",
"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.",
"headAccessoryBlackHeadbandText": "Zwarte Hoofdband",
"headAccessoryBlackHeadbandNotes": "Een simpele zwarte hoofdband. Verleent geen voordelen.",
"headAccessoryBlueHeadbandText": "Blauwe Hoofdband",
"headAccessoryBlueHeadbandNotes": "Een simpele blauwe hoofdband. Verleent geen voordelen.",
"headAccessoryGreenHeadbandText": "Groene Hoofdband",
"headAccessoryGreenHeadbandNotes": "Een simpele groene hoofdband. Verleent geen voordelen.",
"headAccessoryPinkHeadbandText": "Roze Hoofdband",
"headAccessoryPinkHeadbandNotes": "Een simpele roze hoofdband. Verleent geen voordelen.",
"headAccessoryRedHeadbandText": "Rode Hoofdband",
"headAccessoryRedHeadbandNotes": "Een simpele rode hoofdband. Verleent geen voordelen.",
"headAccessoryWhiteHeadbandText": "Witte Hoofdband",
"headAccessoryWhiteHeadbandNotes": "Een simpele witte hoofdband. Verleent geen voordelen.",
"headAccessoryYellowHeadbandText": "Gele Hoofdband",
"headAccessoryYellowHeadbandNotes": "Een simpele gele hoofdband. Verleent geen voordelen.",
"headAccessoryMystery201403Text": "Woudlopersgewei",
"headAccessoryMystery201403Notes": "Dit gewei glinstert van het mos en korstmos. Verleent geen voordelen. Abonnee-uitrusting maart 2014.",
"headAccessoryMystery201404Text": "Voelsprieten van de Schemervlinder",
@@ -1502,7 +1530,7 @@
"headAccessoryMystery201510Notes": "Deze angstaanjagende hoorns zijn een beetje slijmerig. Verleent geen voordelen. Abonnee-uitrusting oktober 2015.",
"headAccessoryMystery201801Text": "Vorstflitsgewei",
"headAccessoryMystery201801Notes": "Dit ijzige gewei glinstert met de gloei van poollicht. Verleent geen voordelen. Abonnee-uitrusting januari 2018.",
"headAccessoryMystery201804Text": "Squirrel Ears",
"headAccessoryMystery201804Text": "Eekhoorn Oren",
"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.",
"headAccessoryMystery301405Text": "Veiligheidsbril voor op je hoofd",
"headAccessoryMystery301405Notes": "\"Veiligheidsbrillen zijn voor je ogen,\" zeiden ze. \"Niemand wil een veiligheidsbril die je alleen maar op je hoofd kunt dragen,\" zeiden ze. Ha! Jij hebt ze laten zien hoe het echt moet! Verleent geen voordelen. Abonnee-uitrusting augustus 3015.",
+4
View File
@@ -121,6 +121,10 @@
"spring2018TulipMageSet": "Tulpenmagiër (Magiër)",
"spring2018GarnetHealerSet": "Granaten genezer",
"spring2018DucklingRogueSet": "Eendjesdief (Dief)",
"summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)",
"summer2018LionfishMageSet": "Lionfish Mage (Mage)",
"summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)",
"summer2018FisherRogueSet": "Fisher-Rogue (Rogue)",
"eventAvailability": "Verkrijgbaar voor aankoop tot <%=date(locale) %>.",
"dateEndMarch": "30 april",
"dateEndApril": "19 april",

Some files were not shown because too many files have changed in this diff Show More