From ef0b96e5e408428732383b34c812de2c39fc44b2 Mon Sep 17 00:00:00 2001 From: NotGonnaGitUs Date: Fri, 8 May 2015 10:33:26 +0530 Subject: [PATCH] Changed promo code text. --- common/locales/en/settings.json | 6 ++++-- website/views/options/settings.jade | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/common/locales/en/settings.json b/common/locales/en/settings.json index f77b4ef75d..3b773f4b06 100644 --- a/common/locales/en/settings.json +++ b/common/locales/en/settings.json @@ -112,7 +112,9 @@ "benefits": "Benefits", "coupon": "Coupon", "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", - "resubscribe": "Resubscribe" + "resubscribe": "Resubscribe", + "promoCode": "Promo Code", + "promoPlaceholder": "Enter Promotion Code" } diff --git a/website/views/options/settings.jade b/website/views/options/settings.jade index 002702cec3..24f314ec2c 100644 --- a/website/views/options/settings.jade +++ b/website/views/options/settings.jade @@ -159,9 +159,9 @@ script(type='text/ng-template', id='partials/options.settings.coupon.html') .container-fluid .row .col-md-6 - h2= env.t('coupon') + h2= env.t('promoCode') 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') div small= env.t('couponText')