2022-09-14 18:32:22 -04:00
|
|
|
<DButton
|
2022-10-03 16:14:32 +03:00
|
|
|
@action={{action "planClick"}}
|
2023-05-02 09:24:28 -05:00
|
|
|
class={{concat-class "btn-discourse-subscriptions-subscribe" selectedClass}}
|
2022-10-03 16:14:32 +03:00
|
|
|
>
|
|
|
|
<span class="interval">
|
2022-09-14 18:32:22 -04:00
|
|
|
{{#if this.recurringPlan}}
|
2022-06-11 06:54:30 -04:00
|
|
|
{{i18n
|
|
|
|
(concat
|
|
|
|
"discourse_subscriptions.plans.interval.adverb."
|
2022-09-14 18:32:22 -04:00
|
|
|
this.plan.recurring.interval
|
2022-06-11 06:54:30 -04:00
|
|
|
)
|
|
|
|
}}
|
2020-07-22 11:06:34 -05:00
|
|
|
{{else}}
|
|
|
|
{{i18n "discourse_subscriptions.one_time_payment"}}
|
|
|
|
{{/if}}
|
2022-10-03 16:14:32 +03:00
|
|
|
</span>
|
2022-06-11 06:54:30 -04:00
|
|
|
|
2020-07-22 11:06:34 -05:00
|
|
|
<span class="amount">
|
2022-09-14 18:32:22 -04:00
|
|
|
{{format-currency this.plan.currency this.plan.amountDollars}}
|
2020-07-22 11:06:34 -05:00
|
|
|
</span>
|
2023-01-04 12:39:58 +00:00
|
|
|
</DButton>
|