Skip to content

Commit 216c328

Browse files
committed
Move license quantity explanation to FAQ
1 parent 07cce81 commit 216c328

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

data/de/pricing_individuals_faq.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
Answer: "Unsere Lizenzierungsstrategie unterscheidet sich von Plattform zu Plattform aufgrund von Einschränkungen durch die Richtlinien von App Store / Google Play und technischen Unterschieden zwischen den Betriebssystemen."
55
- Question: "Benötige ich ein Supporter-Zertifikat, um Cryptomator für Desktop zu verwenden?"
66
Answer: "Alle Funktionen und Verschlüsselungsfunktionen sind für die Nutzung auf dem Desktop absolut kostenlos. Durch den Erwerb eines Supporter-Zertifikats kannst du den Dunkel-Modus für Desktop-Anwendungen freischalten und die Entwicklung von Cryptomator beschleunigen. Bitte beachte, dass ein Supporter-Zertifikat kein Lizenzschlüssel ist, mit dem die mobilen Apps freigeschaltet werden können."
7+
- Question: "Was bedeutet Anzahl der Lizenzen für ein Supporter-Zertifikat?"
8+
Answer: "Eine Lizenz gilt für eine Person und kann auf mehreren Computern verwendet werden."
79
- Question: "Wie kann ich Cryptomator für Android kaufen?"
810
Answer: "Es handelt sich um einen einmaligen Kauf über Google Play oder als APK-Download von unserer Website oder über F-Droid. Wenn du die App nicht über Google Play kaufst, erhältst du nur einen Lizenzschlüssel für Android. Du kannst die Anwendung vor dem Kauf nicht kostenlos testen, hast aber ein 14-tägiges Widerrufsrecht."
911
- Question: "Wie kann ich Cryptomator für iOS kaufen?"

data/en/pricing_individuals_faq.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
Answer: "Our licensing strategy differs across platforms because of constraints imposed by App Store / Google Play policies, and technical differences across operating systems."
55
- Question: "Do I need a supporter certificate to use Cryptomator on Desktop?"
66
Answer: "All functional and encryption features are absolutely free to use on the desktop. By obtaining a supporter certificate, you can unlock the dark mode on desktop apps and also help accelerate Cryptomator's development. Please note, a supporter certificate is not a license key that can be used to unlock mobile apps."
7+
- Question: "What does number of licenses mean for a supporter certificate?"
8+
Answer: "One license is valid for one user and can be used on multiple computers."
79
- Question: "How can I purchase Cryptomator on Android?"
810
Answer: "It is a one-time purchase through Google Play or as an APK download from our website or through F-Droid. If you buy the app without going through Google Play, you will receive an Android-only license key. You cannot test the app before purchasing it, but you have a right of withdrawal within 14 days."
911
- Question: "How can I purchase Cryptomator on iOS?"

i18n/de.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -991,8 +991,6 @@
991991

992992
- id: supporter_cert_funder_quantity
993993
translation: "Anzahl Lizenzen"
994-
- id: supporter_cert_funder_quantity_help
995-
translation: "Eine Lizenz gilt für einen Nutzer und kann auf mehreren Computern verwendet werden."
996994
- id: supporter_cert_funder_price
997995
translation: "Preis pro Lizenz"
998996
- id: supporter_cert_funder_price_help

i18n/en.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -991,8 +991,6 @@
991991

992992
- id: supporter_cert_funder_quantity
993993
translation: "Number of Licenses"
994-
- id: supporter_cert_funder_quantity_help
995-
translation: "One license is valid for one user and can be used on multiple computers."
996994
- id: supporter_cert_funder_price
997995
translation: "Price per License"
998996
- id: supporter_cert_funder_price_help

layouts/partials/supporter-cert-funder.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div x-data="{checkoutData: {prices: PADDLE_DESKTOP_PRICE_IDS.map(priceId => { return {priceId: priceId} }), discountedPrice: null, selectedPriceIndex: 1, quantity: 1, email: '', errorMessage: '', success: false, inProgress: false, licenseKey: null, acceptNewsletter: false, captcha: null}, acceptTerms: false, desktopLicense: null, captchaState: null}" x-init="desktopLicense = new DesktopLicense($refs.funderForm, checkoutData); desktopLicense.loadPrice()">
22
<form x-show="!checkoutData.success" x-ref="funderForm" @submit.prevent="checkoutData.acceptNewsletter && subscribeToNewsletter(checkoutData.email, 'cryptomator', checkoutData.captcha); desktopLicense.checkout(checkoutData.prices[checkoutData.selectedPriceIndex].priceId, '{{ .Site.Language.Lang }}'); $refs.captcha.reset()">
33
<div class="flex flex-wrap md:flex-nowrap">
4-
<fieldset class="w-full mb-4 md:w-1/2 md:pr-3">
4+
<fieldset class="w-full mb-4 md:w-2/3 md:pr-3">
55
<legend class="label-uppercase mb-2">{{ i18n "supporter_cert_funder_price" }}</legend>
66
<div class="grid grid-cols-3 gap-2 mb-2">
77
<template x-for="(price, index) in checkoutData.prices">
@@ -14,10 +14,9 @@
1414
</div>
1515
<p class="text-xs text-gray-600">{{ i18n "supporter_cert_funder_price_help" }}</p>
1616
</fieldset>
17-
<div class="w-full mb-4 md:w-1/2 md:pl-3">
17+
<div class="w-full mb-4 md:w-1/3 md:pl-3">
1818
<label class="label-uppercase mb-2">{{ i18n "supporter_cert_funder_quantity" }}</label>
1919
<input x-model="checkoutData.quantity" x-ref="quantity" @blur="$refs.quantity.classList.add('show-invalid')" type="number" min="1" max="1000" step="1" class="input-box w-full mb-2" placeholder="min. 1" required/>
20-
<p class="text-xs text-gray-600">{{ i18n "supporter_cert_funder_quantity_help" }}</p>
2120
</div>
2221
</div>
2322
<div class="mb-4">

0 commit comments

Comments
 (0)