Added additional env.t declarations for pm modal

This commit is contained in:
Blade Barringer
2014-11-23 21:33:14 -06:00
parent d8c30fc885
commit 7ea8ff70ae
+2 -2
View File
@@ -37,9 +37,9 @@ script(type='text/ng-template', id='modals/member.html')
script(type='text/ng-template', id='modals/private-message.html')
.modal-header
h4 Private message to {{profile.profile.name}}
h4=env.t('pmHeading', {name: "{{profile.profile.name}}"})
.modal-body
textarea.form-control(type='text',ng-model='_message')
.modal-footer
button.btn.btn-primary(ng-click='sendPrivateMessage(profile._id, _message)') Send
button.btn.btn-primary(ng-click='sendPrivateMessage(profile._id, _message)')=env.t("send")
button.btn.btn-default(ng-click='$close()')=env.t('cancel')