mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 11:40:25 +00:00
fix(i18n): remove duplicate strings
This commit is contained in:
parent
85d0ebbc8e
commit
bddadc4827
2 changed files with 7 additions and 22 deletions
|
|
@ -226,21 +226,6 @@
|
|||
"shieldWarrior5Text": "Golden Shield",
|
||||
"shieldWarrior5Notes": "Shining badge of the vanguard. Increases CON by <%= con %>.",
|
||||
|
||||
"shieldRogue0Text": "Dagger",
|
||||
"shieldRogue0Notes": "A rogue's most basic weapon. Confers no benefit.",
|
||||
"shieldRogue1Text": "Short Sword",
|
||||
"shieldRogue1Notes": "Light, concealable blade. Increases STR by <%= str %>.",
|
||||
"shieldRogue2Text": "Scimitar",
|
||||
"shieldRogue2Notes": "Slashing sword, swift to deliver a killing blow. Increases STR by <%= str %>.",
|
||||
"shieldRogue3Text": "Kukri",
|
||||
"shieldRogue3Notes": "Distinctive bush knife, both survival tool and weapon. Increases STR by <%= str %>.",
|
||||
"shieldRogue4Text": "Nunchaku",
|
||||
"shieldRogue4Notes": "Heavy batons whirled about on a length of chain. Increases STR by <%= str %>.",
|
||||
"shieldRogue5Text": "Ninja-to",
|
||||
"shieldRogue5Notes": "Sleek and deadly as the ninja themselves. Increases STR by <%= str %>.",
|
||||
"shieldRogue6Text": "Hook Sword",
|
||||
"shieldRogue6Notes": "Complex weapon adept at ensnaring and disarming opponents. Increases STR by <%= str %>.",
|
||||
|
||||
"shieldHealer1Text": "Medic Buckler",
|
||||
"shieldHealer1Notes": "Easy to disengage, freeing a hand for bandaging. Increases CON by <%= con %>.",
|
||||
"shieldHealer2Text": "Kite Shield",
|
||||
|
|
|
|||
|
|
@ -204,13 +204,13 @@ gear =
|
|||
4: text: (-> i18n.t('shieldWarrior4Text')), notes: (-> i18n.t('shieldWarrior4Notes', {con: 7})), con: 7, value:70
|
||||
5: text: (-> i18n.t('shieldWarrior5Text')), notes: (-> i18n.t('shieldWarrior5Notes', {con: 9})), con: 9, value:90, last: true
|
||||
rogue:
|
||||
0: text: (-> i18n.t('shieldRogue0Text')), notes: (-> i18n.t('shieldRogue0Notes')), str: 0, value: 0
|
||||
1: text: (-> i18n.t('shieldRogue1Text')), notes: (-> i18n.t('shieldRogue1Notes', {str: 2})), str: 2, value: 20
|
||||
2: text: (-> i18n.t('shieldRogue2Text')), notes: (-> i18n.t('shieldRogue2Notes', {str: 3})), str: 3, value: 35
|
||||
3: text: (-> i18n.t('shieldRogue3Text')), notes: (-> i18n.t('shieldRogue3Notes', {str: 4})), str: 4, value: 50
|
||||
4: text: (-> i18n.t('shieldRogue4Text')), notes: (-> i18n.t('shieldRogue4Notes', {str: 6})), str: 6, value: 70
|
||||
5: text: (-> i18n.t('shieldRogue5Text')), notes: (-> i18n.t('shieldRogue5Notes', {str: 8})), str: 8, value: 90
|
||||
6: text: (-> i18n.t('shieldRogue6Text')), notes: (-> i18n.t('shieldRogue6Notes', {str: 10})), str: 10, value: 120, last: true
|
||||
0: text: (-> i18n.t('weaponRogue0Text')), notes: (-> i18n.t('weaponRogue0Notes')), str: 0, value: 0
|
||||
1: text: (-> i18n.t('weaponRogue1Text')), notes: (-> i18n.t('weaponRogue1Notes', {str: 2})), str: 2, value: 20
|
||||
2: text: (-> i18n.t('weaponRogue2Text')), notes: (-> i18n.t('weaponRogue2Notes', {str: 3})), str: 3, value: 35
|
||||
3: text: (-> i18n.t('weaponRogue3Text')), notes: (-> i18n.t('weaponRogue3Notes', {str: 4})), str: 4, value: 50
|
||||
4: text: (-> i18n.t('weaponRogue4Text')), notes: (-> i18n.t('weaponRogue4Notes', {str: 6})), str: 6, value: 70
|
||||
5: text: (-> i18n.t('weaponRogue5Text')), notes: (-> i18n.t('weaponRogue5Notes', {str: 8})), str: 8, value: 90
|
||||
6: text: (-> i18n.t('weaponRogue6Text')), notes: (-> i18n.t('weaponRogue6Notes', {str: 10})), str: 10, value: 120, last: true
|
||||
wizard: {}
|
||||
#0: text: "No Shield", notes:'No shield.', def: 0, value:0, last: true
|
||||
healer:
|
||||
|
|
|
|||
Loading…
Reference in a new issue