aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/Subscription.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-10-25 11:52:30 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-10-25 11:52:30 +0200
commitca74c830e3fda49ec8dffbc68af069621865e228 (patch)
tree4dbe6c763fea423dc743eb3220754cd2be8f003f /src/components/ui/Subscription.js
parentre-reset environment variables (diff)
parentMerge pull request #108 from meetfranz/develop (diff)
downloadferdium-app-ca74c830e3fda49ec8dffbc68af069621865e228.tar.gz
ferdium-app-ca74c830e3fda49ec8dffbc68af069621865e228.tar.zst
ferdium-app-ca74c830e3fda49ec8dffbc68af069621865e228.zip
Merge branch 'master' into chore/travis-setup
Diffstat (limited to 'src/components/ui/Subscription.js')
-rw-r--r--src/components/ui/Subscription.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ui/Subscription.js b/src/components/ui/Subscription.js
index ada5cc3e0..fe0925a26 100644
--- a/src/components/ui/Subscription.js
+++ b/src/components/ui/Subscription.js
@@ -79,7 +79,7 @@ const messages = defineMessages({
79 }, 79 },
80 miningDetail1: { 80 miningDetail1: {
81 id: 'subscription.mining.line1', 81 id: 'subscription.mining.line1',
82 defaultMessage: '!!!By enabling "Support with processing power", Franz will use about 20-50% of your CPU to mine cryptocurrency Monero which equals approximately $ 5/year.', 82 defaultMessage: '!!!By enabling "Support with processing power", Franz will use about 20-50% of your CPU to mine cryptocurrency Monero which equals approximately € 5/year.',
83 }, 83 },
84 miningDetail2: { 84 miningDetail2: {
85 id: 'subscription.mining.line2', 85 id: 'subscription.mining.line2',
@@ -136,12 +136,12 @@ export default class SubscriptionForm extends Component {
136 validate: [required], 136 validate: [required],
137 options: [{ 137 options: [{
138 value: 'month', 138 value: 'month',
139 label: `$ ${Object.hasOwnProperty.call(this.props.plan, 'month') 139 label: ` ${Object.hasOwnProperty.call(this.props.plan, 'month')
140 ? `${this.props.plan.month.price} / ${intl.formatMessage(messages.typeMonthly)}` 140 ? `${this.props.plan.month.price} / ${intl.formatMessage(messages.typeMonthly)}`
141 : 'monthly'}`, 141 : 'monthly'}`,
142 }, { 142 }, {
143 value: 'year', 143 value: 'year',
144 label: `$ ${Object.hasOwnProperty.call(this.props.plan, 'year') 144 label: ` ${Object.hasOwnProperty.call(this.props.plan, 'year')
145 ? `${this.props.plan.year.price} / ${intl.formatMessage(messages.typeYearly)}` 145 ? `${this.props.plan.year.price} / ${intl.formatMessage(messages.typeYearly)}`
146 : 'yearly'}`, 146 : 'yearly'}`,
147 }, { 147 }, {
@@ -155,7 +155,7 @@ export default class SubscriptionForm extends Component {
155 if (this.props.showSkipOption) { 155 if (this.props.showSkipOption) {
156 form.fields.paymentTier.options.unshift({ 156 form.fields.paymentTier.options.unshift({
157 value: 'skip', 157 value: 'skip',
158 label: `$ 0 / ${intl.formatMessage(messages.typeFree)}`, 158 label: ` 0 / ${intl.formatMessage(messages.typeFree)}`,
159 }); 159 });
160 } 160 }
161 161