fix(i18n): missing strings

This commit is contained in:
Matteo Pagliazzi 2014-04-07 18:40:51 +02:00
parent d0f144077e
commit 99f50b0461
4 changed files with 7 additions and 8 deletions

View file

@ -81,7 +81,7 @@ mixin customizeProfile(mobile)
// Flower
li.customize-menu
menu(label="Flower")
menu(label=env.t('flower'))
button(class='head_0 customize-option', type='button', ng-click='set({"preferences.hair.flower":0})')
each num in [1,2,3,4,5,6]
button(class='hair_flower_#{num} customize-option', type='button', ng-click='set({"preferences.hair.flower":#{num}})')

View file

@ -4,8 +4,7 @@
h3.panel-title=env.t('challenges')
 
a.pull-right(target='_blank', href='https://trello.com/card/challenges-individual-party-guild-public/50e5d3684fe3a7266b0036d6/58')
small
="More info"
small=env.t('moreInfo')
.panel-body.modal-fixed-height(bindonce='group.challenges')
div(ng-if='group.challenges.length > 0')
table.table.table-striped

View file

@ -107,7 +107,7 @@ script(type='text/ng-template', id='partials/options.social.challenges.html')
input.form-control(type='text', minlength="3", maxlength="16", ng-model='newChallenge.shortName', placeholder=env.t('challengeTag'), required)
 
a.hint.vertical-20(target='_blank', href='http://habitrpg.wikia.com/wiki/Tags', popover=env.t('challengeTagPop'), popover-trigger='mouseenter', popover-placement='right')
="More info"
=env.t('moreInfo')
.form-group
textarea.form-control(cols='3', placeholder=env.t('challengeDescr'), ng-model='newChallenge.description')
@ -121,7 +121,7 @@ script(type='text/ng-template', id='partials/options.social.challenges.html')
span.input-suffix.Pet_Currency_Gem1x.inline-gems
 
span.hint.vertical-20(popover=env.t('prizePop'), popover-trigger='mouseenter', popover-placement='right')
="More info"
=env.t('moreInfo')
span(ng-show='newChallenge.group=="habitrpg"')
!=env.t('publicChallenges')

View file

@ -1,6 +1,6 @@
script(type='text/ng-template', id='modals/newStuff.html')
.modal-header
h4 New Stuff!
h4=env.t('newStuff')
.modal-body.new-stuff-modal.modal-fixed-height
table
tr
@ -723,5 +723,5 @@ script(type='text/ng-template', id='modals/newStuff.html')
a(href='https://trello.com/card/custom-day-start/50e5d3684fe3a7266b0036d6/15') Add custom day start
.modal-footer
button.btn.btn-default(ng-click='$close()') Cool
button.btn.btn-warning(ng-click='dismissAlert(); $close()') Dismiss This Alert
button.btn.btn-default(ng-click='$close()')=env.t('cool')
button.btn.btn-warning(ng-click='dismissAlert(); $close()')=env.t('dismissAlert')