Changed promo code text.

This commit is contained in:
NotGonnaGitUs 2015-05-08 10:33:26 +05:30
parent 78e8499c5f
commit ef0b96e5e4
2 changed files with 6 additions and 4 deletions

View file

@ -112,7 +112,9 @@
"benefits": "Benefits", "benefits": "Benefits",
"coupon": "Coupon", "coupon": "Coupon",
"couponPlaceholder": "Enter Coupon Code", "couponPlaceholder": "Enter Coupon Code",
"couponText": "We sometimes have events and give out coupon codes for special gear. (eg, those who stop by our Wondercon booth)", "couponText": "We sometimes have events and give out promo codes for special gear. (eg, those who stop by our Wondercon booth)",
"apply": "Apply", "apply": "Apply",
"resubscribe": "Resubscribe" "resubscribe": "Resubscribe",
"promoCode": "Promo Code",
"promoPlaceholder": "Enter Promotion Code"
} }

View file

@ -159,9 +159,9 @@ script(type='text/ng-template', id='partials/options.settings.coupon.html')
.container-fluid .container-fluid
.row .row
.col-md-6 .col-md-6
h2= env.t('coupon') h2= env.t('promoCode')
form.form-inline(role='form',ng-submit='enterCoupon(_couponCode)') form.form-inline(role='form',ng-submit='enterCoupon(_couponCode)')
input.form-control(type='text', ng-model='_couponCode', placeholder=env.t('couponPlaceholder')) input.form-control(type='text', ng-model='_couponCode', placeholder=env.t('promoPlaceholder'))
button.btn.btn-primary(type='submit')= env.t('submit') button.btn.btn-primary(type='submit')= env.t('submit')
div div
small= env.t('couponText') small= env.t('couponText')