()
| 36 | } |
| 37 | |
| 38 | translateName () { |
| 39 | if (/year_subscription/.test(this.get('name'))) { |
| 40 | return i18n.t('subscribe.year_subscription') |
| 41 | } |
| 42 | if (/lifetime_subscription/.test(this.get('name'))) { |
| 43 | return i18n.t('subscribe.lifetime') |
| 44 | } |
| 45 | return this.get('name') |
| 46 | } |
| 47 | |
| 48 | purchase (token, options) { |
| 49 | if (options == null) { options = {} } |