fix(i18n): use strings

This commit is contained in:
Matteo Pagliazzi 2014-05-12 17:15:38 +02:00
parent 4ac10585bb
commit 304beb6482
2 changed files with 2 additions and 2 deletions

View file

@ -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()

View file

@ -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