mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 08:21:07 +00:00
fix(i18n): use strings
This commit is contained in:
parent
4ac10585bb
commit
304beb6482
2 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@ script(type='text/ng-template', id='modals/member.html')
|
|||
|
|
||||
| {{timestamp(profile.auth.timestamps.loggedin)}} -
|
||||
h3=env.t('stats')
|
||||
.label.label-info {{ {warrior:'Warrior',wizard:'Mage',healer:'Healer',rogue:'Rogue'}[profile.stats.class] }}
|
||||
.label.label-info {{ {warrior:env.t("warrior"), wizard:env.t("mage"), rogue:env.t("rogue"), healer:env.t("healer")}[profile.stats.class] }}
|
||||
include ../profiles/stats
|
||||
.col-md-6
|
||||
+herobox()
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ div(ng-if='profile.achievements.quests || user._id == profile._id')
|
|||
h5=env.t('completedQuests')
|
||||
table.table.table-striped
|
||||
tr(ng-repeat='(k,v) in profile.achievements.quests')
|
||||
td {{Content.quests[k].text}}
|
||||
td {{Content.quests[k].text()}}
|
||||
td x{{v}}
|
||||
hr
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue