mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-31 07:12:49 -04:00
Fix issue with i18n strings
This commit is contained in:
parent
2db37c7556
commit
48b58b5348
1 changed files with 6 additions and 3 deletions
|
@ -23,8 +23,11 @@ block content
|
|||
if playCount
|
||||
span.spl.spr - #{playCount.sessions}
|
||||
span(data-i18n="play.players") players
|
||||
if view.levelStatusMap[level.id]
|
||||
| -
|
||||
span(class="level-status-#{view.levelStatusMap[level.id]}", data-i18n="play.level_status_#{view.levelStatusMap[level.id]}") #{view.levelStatusMap[level.id]}
|
||||
if (view.levelStatusMap[level.id]=='complete')
|
||||
span.spl.spr -
|
||||
span(class="level-status-#{view.levelStatusMap[level.id]}", data-i18n="clans.complete_2") Complete
|
||||
else if (view.levelStatusMap[level.id]=='started')
|
||||
span.spl.spr -
|
||||
span(class="level-status-#{view.levelStatusMap[level.id]}", data-i18n="clans.started_2") Started
|
||||
.play-text-container
|
||||
.overlay-text.play-text(data-i18n="common.play") Play
|
||||
|
|
Loading…
Add table
Reference in a new issue