mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-19 04:14:40 +00:00
add translations to subscription page
This commit is contained in:
parent
c31272a154
commit
026b4ed716
1 changed files with 4 additions and 4 deletions
|
|
@ -247,7 +247,7 @@ script(id='partials/options.settings.subscription.html',type='text/ng-template')
|
|||
.container-fluid(ng-init='_subscription={key:"basic_earned"}')
|
||||
.row
|
||||
.col-md-6
|
||||
h3 Benefits
|
||||
h3 {{env.t('benefits')}}
|
||||
+subPerks()
|
||||
|
||||
.col-md-6
|
||||
|
|
@ -270,13 +270,13 @@ script(id='partials/options.settings.subscription.html',type='text/ng-template')
|
|||
li Mystic Hourglasses: {{user.purchased.plan.consecutive.trinkets}}
|
||||
div(ng-if='!user.purchased.plan.customerId || (user.purchased.plan.customerId && user.purchased.plan.dateTerminated)')
|
||||
.form-group
|
||||
.radio(ng-repeat='block in Content.subscriptionBlocks | toArray | omit:"discount==true" | orderBy:"months"')
|
||||
.radio(ng-repeat='block in Content.subscriptionBlocks | toArray | omit: "discount==true" | orderBy:"months"')
|
||||
label
|
||||
input(type="radio", name="subRadio", ng-value="block.key", ng-model='_subscription.key')
|
||||
span(ng-show='block.original')
|
||||
| Recurring <span class='line-through'>${{block.original}}</span> <span class='label label-success'>${{block.price}}</span> each {{block.months}} Month(s)
|
||||
| <span class='label label-success line-through'>${{ block.original }}</span> {{env.t('subscriptionRateText', {price:block.price, months: block.months})}}
|
||||
span(ng-hide='block.original')
|
||||
| {{env.t('subscriptionRateText', {price:block.price, months: block.months})}}
|
||||
| {{env.t('subscriptionRateText', {price:block.price, months: block.months})}}
|
||||
|
||||
.form-inline
|
||||
.form-group
|
||||
|
|
|
|||
Loading…
Reference in a new issue