mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-15 16:32:16 +00:00
Merge branch 'hairlessbear-level_100_attribute_message' into develop
This commit is contained in:
commit
da20a493c6
2 changed files with 6 additions and 3 deletions
|
|
@ -70,6 +70,7 @@
|
|||
"allocatePerPop": "Add a point to Perception",
|
||||
"allocateInt": "Points allocated to Intelligence:",
|
||||
"allocateIntPop": "Add a point to Intelligence",
|
||||
"noMoreAllocate": "Now that you've hit level 100, you won't gain any more Attribute Points. You can continue leveling up, or start a new adventure at level 1 by using the <a href='http://habitrpg.wikia.com/wiki/Orb_of_Rebirth' target='_blank'>Orb of Rebirth</a>, available for free in the Market.",
|
||||
"stats": "Stats",
|
||||
"strength": "Strength",
|
||||
"strengthText": "Strength increases the chance of random \"critical hits\" and the Gold, Experience, and drop chance boost from them. It also helps deal damage to boss monsters.",
|
||||
|
|
|
|||
|
|
@ -172,9 +172,11 @@ mixin profileStats
|
|||
table.table.table-striped
|
||||
tr
|
||||
td
|
||||
strong.inline
|
||||
|{{user.stats.points}}
|
||||
strong.hint(popover-trigger='mouseenter', popover-placement='right', popover=env.t('levelPopover'))=env.t('unallocated')
|
||||
p(ng-if='::user.stats.lvl >= 100')!=env.t('noMoreAllocate')
|
||||
p(ng-if='user.stats.points || user.stats.lvl < 100')
|
||||
strong.inline
|
||||
|{{user.stats.points}}
|
||||
strong.hint(popover-trigger='mouseenter', popover-placement='right', popover=env.t('levelPopover'))=env.t('unallocated')
|
||||
td
|
||||
tr
|
||||
td(colspan=2)
|
||||
|
|
|
|||
Loading…
Reference in a new issue