From 2b0220ca549ce1752058a12caf02dcb3c34628d9 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Sat, 8 Mar 2014 16:08:17 +0100 Subject: [PATCH] fix(i18n): remove duplicate strings --- locales/en/gear.json | 2 -- script/content.coffee | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/locales/en/gear.json b/locales/en/gear.json index 8b25fc70f5..8b194d2c47 100644 --- a/locales/en/gear.json +++ b/locales/en/gear.json @@ -244,8 +244,6 @@ "shieldSpecialYetiText": "Yeti-Tamer Shield", "shieldSpecialYetiNotes": "Limited Edition 2013 Winter Gear! This shield reflects light from the snow. Increases CON by <%= con %>.", - "shieldSpecialSkiText": "Ski-sassin Pole", - "shieldSpecialSkiNotes": "Limited Edition 2013 Winter Gear! A weapon capable of destroying hordes of enemies! It also helps the user make very nice parallel turns. Increases STR by <%= str %>.", "shieldSpecialSnowflakeText": "Snowflake Shield", "shieldSpecialSnowflakeNotes": "Limited Edition 2013 Winter Gear! Every shield is unique. Increases CON by <%= con %>.", diff --git a/script/content.coffee b/script/content.coffee index 7f2456aab1..7a491983ff 100644 --- a/script/content.coffee +++ b/script/content.coffee @@ -225,7 +225,7 @@ gear = 1: text: (-> i18n.t('shieldSpecial1Text')), notes: (-> i18n.t('shieldSpecial1Notes', {attrs: 6})), con: 6, str: 6, per: 6, int:6, value:170, canOwn: ((u)-> +u.contributor?.level >= 5) #Winter event yeti: event: events.winter, canOwn: ((u)->u.stats.class is 'warrior' ), text: (-> i18n.t('shieldSpecialYetiText')), notes: (-> i18n.t('shieldSpecialYetiNotes', {con: 7})), con: 7, value: 70 - ski: event: events.winter, canOwn: ((u)->u.stats.class is 'rogue' ), text: (-> i18n.t('shieldSpecialSkiText')), notes: (-> i18n.t('shieldSpecialSkiNotes', {str: 8})), str: 8, value: 90 + ski: event: events.winter, canOwn: ((u)->u.stats.class is 'rogue' ), text: (-> i18n.t('weaponSpecialSkiText')), notes: (-> i18n.t('weaponSpecialSkiNotes', {str: 8})), str: 8, value: 90 snowflake: event: events.winter, canOwn: ((u)->u.stats.class is 'healer' ), text: (-> i18n.t('shieldSpecialSnowflakeText')), notes: (-> i18n.t('shieldSpecialSnowflakeNotes', {con: 9})), con: 9, value: 70 #Spring Fling springRogue: event: events.spring, specialClass: 'rogue', text: 'Hook Claws', notes:'Great for scaling tall buildings, and also for shredding carpets. Adds 8 points to STR. Limited Edition 2014 Spring Gear.', value: 80, str: 8