aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-14 22:14:33 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-11-14 22:14:33 +0100
commitf98f17c01ee23f4414d09ae671d91452ea2ce635 (patch)
tree17f96c2206ba44da9d96806239efac814874b9de /src
parentMerge pull request #263 from meetfranz/feature/mute-service (diff)
downloadferdium-app-f98f17c01ee23f4414d09ae671d91452ea2ce635.tar.gz
ferdium-app-f98f17c01ee23f4414d09ae671d91452ea2ce635.tar.zst
ferdium-app-f98f17c01ee23f4414d09ae671d91452ea2ce635.zip
Add missing EU tax info
Diffstat (limited to 'src')
-rw-r--r--src/components/ui/Subscription.js9
-rw-r--r--src/i18n/locales/en-US.json1
2 files changed, 10 insertions, 0 deletions
diff --git a/src/components/ui/Subscription.js b/src/components/ui/Subscription.js
index fe0925a26..35a1105d2 100644
--- a/src/components/ui/Subscription.js
+++ b/src/components/ui/Subscription.js
@@ -93,6 +93,10 @@ const messages = defineMessages({
93 id: 'subscription.mining.moreInformation', 93 id: 'subscription.mining.moreInformation',
94 defaultMessage: '!!!Get more information about this plan', 94 defaultMessage: '!!!Get more information about this plan',
95 }, 95 },
96 euTaxInfo: {
97 id: 'subscription.euTaxInfo',
98 defaultMessage: '!!!EU residents: local sales tax may apply',
99 },
96}); 100});
97 101
98@observer 102@observer
@@ -259,6 +263,11 @@ export default class SubscriptionForm extends Component {
259 onClick={() => handlePayment(this.form.$('paymentTier').value)} 263 onClick={() => handlePayment(this.form.$('paymentTier').value)}
260 /> 264 />
261 )} 265 )}
266 {this.form.$('paymentTier').value !== 'skip' && this.form.$('paymentTier').value !== 'mining' && (
267 <p className="legal">
268 {intl.formatMessage(messages.euTaxInfo)}
269 </p>
270 )}
262 </Loader> 271 </Loader>
263 ); 272 );
264 } 273 }
diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json
index fd8ba0fef..56daa9163 100644
--- a/src/i18n/locales/en-US.json
+++ b/src/i18n/locales/en-US.json
@@ -165,6 +165,7 @@
165 "subscription.mining.line2": "We will adapt the CPU usage based to your work behaviour to not drain your battery and slow you and your machine down.", 165 "subscription.mining.line2": "We will adapt the CPU usage based to your work behaviour to not drain your battery and slow you and your machine down.",
166 "subscription.mining.line3": "As long as the miner is active, you will have unlimited access to all the Franz Premium Supporter Features.", 166 "subscription.mining.line3": "As long as the miner is active, you will have unlimited access to all the Franz Premium Supporter Features.",
167 "subscription.mining.moreInformation": "Get more information about this plan.", 167 "subscription.mining.moreInformation": "Get more information about this plan.",
168 "subscription.euTaxInfo": "EU residents: local sales tax may apply",
168 "subscriptionPopup.buttonCancel": "Cancel", 169 "subscriptionPopup.buttonCancel": "Cancel",
169 "subscriptionPopup.buttonDone": "Done", 170 "subscriptionPopup.buttonDone": "Done",
170 "tabs.item.reload": "Reload", 171 "tabs.item.reload": "Reload",