Skip to content

Commit 390e656

Browse files
committed
Merge branch 'develop'
2 parents 5816371 + 5e8890a commit 390e656

8 files changed

Lines changed: 505 additions & 523 deletions

File tree

assets/js/hubpricing.js

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,43 @@ class HubPricing {
66
this._data = data;
77
}
88

9-
loadPrice() {
9+
loadPrices() {
1010
$.ajax({
1111
url: PADDLE_PRICES_URL,
1212
dataType: 'jsonp',
1313
data: {
14-
product_ids: `${PADDLE_HUB_SELF_HOSTED_YEARLY_PLAN_ID},${PADDLE_HUB_MANAGED_YEARLY_PLAN_ID}`
14+
product_ids: `${PADDLE_HUB_SELF_HOSTED_YEARLY_PLAN_ID},${PADDLE_HUB_SELF_HOSTED_MONTHLY_PLAN_ID},${PADDLE_HUB_MANAGED_YEARLY_PLAN_ID},${PADDLE_HUB_MANAGED_MONTHLY_PLAN_ID}`
1515
},
1616
}).done(data => {
17-
this._data.selfHostedMonthlyPrice = {
18-
amount: data.response.products[0].subscription.price.net / 12,
19-
currency: data.response.products[0].currency
20-
};
21-
this._data.managedMonthlyPrice = {
22-
amount: data.response.products[1].subscription.price.net / 12,
23-
currency: data.response.products[1].currency
24-
};
17+
const priceMap = {};
18+
data.response.products.forEach(p => {
19+
priceMap[p.product_id] = {
20+
amount: p.subscription.price.net,
21+
currency: p.currency
22+
};
23+
});
24+
25+
this._assignPrice(priceMap, PADDLE_HUB_SELF_HOSTED_YEARLY_PLAN_ID, 'selfHostedYearlyPrice', 12);
26+
this._assignPrice(priceMap, PADDLE_HUB_SELF_HOSTED_MONTHLY_PLAN_ID, 'selfHostedMonthlyPrice', 1);
27+
this._assignPrice(priceMap, PADDLE_HUB_MANAGED_YEARLY_PLAN_ID, 'managedYearlyPrice', 12);
28+
this._assignPrice(priceMap, PADDLE_HUB_MANAGED_MONTHLY_PLAN_ID, 'managedMonthlyPrice', 1);
29+
30+
const mYearly = priceMap[PADDLE_HUB_MANAGED_YEARLY_PLAN_ID];
31+
const mMonthly = priceMap[PADDLE_HUB_MANAGED_MONTHLY_PLAN_ID];
32+
if (mYearly && mMonthly) {
33+
this._data.savingsPercent = Math.max(0, Math.round((1 - mYearly.amount / (mMonthly.amount * 12)) * 100));
34+
}
2535
});
2636
}
2737

38+
_assignPrice(priceMap, planId, dataKey, divisor) {
39+
const price = priceMap[planId];
40+
if (price) {
41+
this._data[dataKey] = {
42+
amount: price.amount / divisor,
43+
currency: price.currency
44+
};
45+
}
46+
}
47+
2848
}

content/guides/open-source.en.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ type: article
33
weight: 2
44

55
title: "Encrypt Cloud Storage: How Open Source Strengthens Security"
6-
description: "Trust, but verify: If you want to encrypt your cloud storage, open source encryption software offers you even more protection."
6+
description: "Trust, but verify: If you want to encrypt your cloud storage, open-source encryption software offers you even more protection."
77
aliases: ["/open-source", "/faq/security", "/faq/security/opensource", "/faq/security/audits"]
88

99
ctatitle: "You want to encrypt your cloud storage with Cryptomator?"
@@ -23,7 +23,7 @@ ogimage:
2323

2424
# Encrypt Your Data Securely in the Cloud: How You Can Further Increase Your Data Security Through Open Source
2525

26-
<p class="lead">Maybe you've been looking into encrypting your cloud storage for a while now, and you've come across "open source" solutions. Maybe you're wondering why open source is so important if you want to encrypt your files? Here we explain it to you.</p>
26+
<p class="lead">Maybe you've been looking into encrypting your cloud storage for a while now, and you've come across "open-source" solutions. Maybe you're wondering why open source is so important if you want to encrypt your files? Here we explain it to you.</p>
2727

2828
<img class="inline-block" src="/img/open-source/bartender-vs-stranger.png" srcset="/img/open-source/bartender-vs-stranger.png 1x, /img/open-source/bartender-vs-stranger@2x.png 2x" alt="The security-conscious customer opts for products whose composition and quality he can check. Non-verifiable alternatives seem shady." />
2929

@@ -74,13 +74,13 @@ And maybe the old saying comes to your mind: Trust, but verify.
7474

7575
## Trust, but Verify – Especially if You Want to Encrypt Sensitive Data in the Cloud {#trust-but-verify}
7676

77-
And it's exactly this advantage of verification that open source software offers you when you want to encrypt your cloud storage (such as Dropbox).
77+
And it's exactly this advantage of verification that open-source software offers you when you want to encrypt your cloud storage (such as Dropbox).
7878

7979
To come back to the example with the bar: In fact, it would even be possible for you to mix your own drink.
8080

8181
Because open source allows you to do just that: The instructions and all the ingredients are available. In addition, you even have the option of adapting and further improving the recipe if necessary.
8282

83-
## Exactly How Open Source Software Increases Your Data Security {#advantages}
83+
## Exactly How Open-Source Software Increases Your Data Security {#advantages}
8484

8585
At first glance, you don't "see" the aspects of open source in the software itself. This is because the advantages lie in the security-related criteria for the development of the software.
8686

@@ -156,9 +156,9 @@ At the same time, however, open source has many security-enhancing advantages:
156156
</div>
157157
</div>
158158

159-
## Encrypt Cloud Storage With Open Source Software: On the Safe Side With Cryptomator {#robust-crypto}
159+
## Encrypt Cloud Storage With Open-Source Software: On the Safe Side With Cryptomator {#robust-crypto}
160160

161-
Cryptomator is just such an open source encryption software. Thanks to its open source nature, maximum transparency is guaranteed. Thus, the security of your data is secured on many levels and constantly increased:
161+
Cryptomator is just such an open-source encryption software. Thanks to its open-source nature, maximum transparency is guaranteed. Thus, the security of your data is secured on many levels and constantly increased:
162162

163163
1. In addition to the actual code, quality metrics from automated tests as well as bug reports are publicly available.
164164
2. The code is constantly adapted to the latest standards.
@@ -172,6 +172,6 @@ All this leads to an outstanding robustness of the cryptographic implementation,
172172
173173
– {{< extlink "/audits/2017-11-27%20crypto%20cure53.pdf" "Audit by Cure53" >}}
174174

175-
**In other words: This robustness increases your data security many times over when you encrypt your files in the cloud with open source software.**
175+
**In other words: This robustness increases your data security many times over when you encrypt your files in the cloud with open-source software.**
176176

177177
With Cryptomator, we also put a focus on high user-friendliness. You can use [Dropbox](/guides/encrypt-dropbox/), Google Drive, OneDrive, etc. as usual and at the same time know that all your sensitive data is safe.

content/hub-managed-terms.de.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Gegenstand des Vertrags ist die entgeltliche und zeitlich auf die Dauer des Vert
142142
Unabhängig des Widerrufsrechts ([§ 15](#withdrawal)) steht dem Kunden, d.h. sowohl dem Verbraucher wie auch Unternehmer, das Recht zu, die Software 30 Tage kostenfrei und für beide Seiten unverbindlich zu nutzen (nachfolgend „Testphase“). In der Testphase hat der Kunde insbesondere keinen Anspruch auf uneingeschränkten Funktionsumfang der Software oder Störungsbehebung sowie Vertragsstrafe nach [§ 6](#sla).
143143

144144
## §13 Vergütungs- und Zahlungsbedingungen {#fees}
145-
13.1 Die Preise für die Software und Services kann der Kunde auf der Website ([https://cryptomator.org/de/pricing/#for-teams](https://cryptomator.org/de/pricing/#for-teams)) einsehen. Soweit nicht anders vereinbart (Individualvereinbarung, Rabatt-Aktion o.ä.) hat der Kunde – nach Ablauf der Testphase ([§ 12](#trial)) – monatlich ein Entgelt in Höhe von 12 EUR pro aktiven Nutzer an den Provider zu zahlen.
145+
13.1 Die Preise für die Software und Services kann der Kunde auf der Website ([https://cryptomator.org/de/pricing/](https://cryptomator.org/de/pricing/)) einsehen. Soweit nicht anders vereinbart (Individualvereinbarung, Rabatt-Aktion o.ä.) hat der Kunde – nach Ablauf der Testphase ([§ 12](#trial)) – monatlich ein Entgelt in Höhe von 12 EUR pro aktiven Nutzer an den Provider zu zahlen.
146146

147147
13.2 Vom Provider nach [§ 6 (7)](#sla) verwirkte Vertragsstrafen werden automatisch monatlich mit dem zu zahlenden Entgelt verrechnet.
148148

content/hub-managed-terms.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ The subject of the agreement is the provision of "Cryptomator Hub" (hereinafter
146146
Irrespective of the right of withdrawal ([§ 16](#withdrawal)), the Customer, i.e. both the consumer and the entrepreneur, shall be entitled to use the software for 30 days free of charge and without obligation for both parties (hereinafter "test phase"). During the Test Phase, the Customer shall in particular have no claim to unrestricted functional scope of the Software or troubleshooting as well as contractual penalty pursuant to [§ 6](#sla).
147147

148148
## §13 Remuneration and Payment Conditions {#fees}
149-
13.1 The Customer can view the prices for the software and services on the website ([https://cryptomator.org/pricing/#for-teams](https://cryptomator.org/pricing/#for-teams)). Unless otherwise agreed (individual agreement, discount campaign or similar), the Customer shall - after expiry of the test phase ([§ 12](#trial)) - pay a monthly fee of EUR 12 per active user to the Provider.
149+
13.1 The Customer can view the prices for the software and services on the website ([https://cryptomator.org/pricing/](https://cryptomator.org/pricing/)). Unless otherwise agreed (individual agreement, discount campaign or similar), the Customer shall - after expiry of the test phase ([§ 12](#trial)) - pay a monthly fee of EUR 12 per active user to the Provider.
150150

151151
13.2 Contractual penalties forfeited by the Provider pursuant to [§ 6 (7)](#sla) shall be automatically offset against the payable fee on a monthly basis.
152152

i18n/de.yaml

Lines changed: 55 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -863,10 +863,12 @@
863863
# Pricing
864864
- id: pricing_title
865865
translation: "Finde die passende Option für dich"
866-
- id: pricing_individuals
867-
translation: "Für Einzelnutzer"
868-
- id: pricing_teams
869-
translation: "Für Teams"
866+
- id: pricing_billing_monthly
867+
translation: "Monatlich"
868+
- id: pricing_billing_yearly
869+
translation: "Jährlich"
870+
- id: pricing_billing_save
871+
translation: "Spare"
870872
- id: pricing_vat_excluded
871873
translation: "zzgl. USt."
872874
- id: pricing_vat_included
@@ -876,52 +878,41 @@
876878
- id: hub_different_recurring_description
877879
translation: "nach dem ersten Jahr"
878880

879-
- id: pricing_desktop_price_description
880-
translation: "Donationware"
881-
- id: pricing_desktop_cta_1
882-
translation: "Jetzt herunterladen"
883-
- id: pricing_desktop_cta_2
884-
translation: "Unterstütze uns"
885-
- id: pricing_desktop_benefit_1
886-
translation: "Kompatibel mit jedem Cloud-Speicher mit Dateisystem-Synchronisierung, z.B. Dropbox, Google Drive, OneDrive, Nextcloud uvm."
887-
- id: pricing_desktop_benefit_2
888-
translation: "Clientseitige Verschlüsselung für Privatsphäre"
889-
- id: pricing_desktop_benefit_3
890-
translation: "Zugriff über virtuelles Laufwerk"
891-
- id: pricing_desktop_benefit_4
892-
translation: "Keine Accounts, keine Datenweitergabe"
893-
894881
- id: pricing_android_price
895882
translation: "29,99 €"
896-
- id: pricing_android_price_description
897-
translation: "Lebenslange Lizenz"
898-
- id: pricing_android_cta
899-
translation: "Jetzt herunterladen"
900-
- id: pricing_android_benefit_1
901-
translation: "Kompatibel mit Dropbox, Google Drive, OneDrive, pCloud, WebDAV- und S3-basiertem Cloud-Speicher"
902-
- id: pricing_android_benefit_2
903-
translation: "Mobiler Zugriff auf verschlüsselte Dateien"
904-
- id: pricing_android_benefit_3
905-
translation: "Tresore mit biometrischer Auth entsperren"
906-
- id: pricing_android_benefit_4
907-
translation: "Keine Accounts, keine Datenweitergabe"
908-
909-
- id: pricing_ios_free_description
910-
translation: "Lesezugriff"
911883
- id: pricing_ios_price
912884
translation: "29,99 €"
913-
- id: pricing_ios_price_description
914-
translation: "Lebenslange Lizenz"
915-
- id: pricing_ios_cta
885+
886+
- id: pricing_individual_title
887+
translation: "Individuell"
888+
- id: pricing_individual_subtitle
889+
translation: "Verschlüssele deine persönlichen Cloud-Dateien. Open Source und für immer kostenlos."
890+
- id: pricing_individual_price_description
891+
translation: "für den persönlichen Gebrauch"
892+
- id: pricing_individual_cta
916893
translation: "Jetzt herunterladen"
917-
- id: pricing_ios_benefit_1
918-
translation: "Kompatibel mit iCloud Drive, Dropbox, Google Drive, OneDrive, pCloud, Box, WebDAV- und S3-basiertem Cloud-Speicher"
919-
- id: pricing_ios_benefit_2
920-
translation: "Vollständig in die Dateien-App integriert"
921-
- id: pricing_ios_benefit_3
922-
translation: "Tresore mit Face ID / Touch ID entsperren"
923-
- id: pricing_ios_benefit_4
924-
translation: "Keine Accounts, keine Datenweitergabe"
894+
- id: pricing_individual_benefit_1
895+
translation: "Unbegrenzte Tresore"
896+
- id: pricing_individual_benefit_2
897+
translation: "Kompatibel mit jedem Cloud-Speicher"
898+
- id: pricing_individual_benefit_2_tooltip
899+
translation: "Unterstützte Dienste variieren je nach Plattform. <a href='https://docs.cryptomator.org/misc/supported-cloud-services/' target='_blank' rel='noopener' class='text-link'>Mehr erfahren</a>"
900+
- id: pricing_individual_benefit_3
901+
translation: "Voller Zugriff über Desktop-App"
902+
- id: pricing_individual_benefit_4
903+
translation: "Community-Support"
904+
- id: pricing_individual_mobile_upgrades_title
905+
translation: "Optionale Upgrades"
906+
- id: pricing_individual_upgrade_dark_mode
907+
translation: "Dark Mode auf dem Desktop"
908+
- id: pricing_supporter_cert_price
909+
translation: "ab 29,99 €"
910+
- id: pricing_individual_mobile_android
911+
translation: "Voller Zugriff auf Android"
912+
- id: pricing_individual_mobile_ios
913+
translation: "Voller Zugriff auf iOS"
914+
- id: pricing_individual_upgrades_note
915+
translation: "Separate Einmalkäufe je Plattform. Preise können je nach Region variieren."
925916

926917
- id: pricing_hub_self_hosted_title
927918
translation: "Self-Hosted"
@@ -935,33 +926,25 @@
935926

936927
- id: pricing_hub_community_title
937928
translation: "Community"
938-
- id: pricing_hub_community_price_description
939-
translation: "zum Loslegen"
929+
- id: pricing_hub_community_subtitle
930+
translation: "Kostenlos und Open Source für kleine Teams. Auf eigener Infrastruktur deployen mit voller Kontrolle über die Daten."
940931
- id: pricing_hub_community_benefit_1
941-
translation: "Unbegrenzte Tresore"
932+
translation: "Inklusive 5 Sitze"
942933
- id: pricing_hub_community_benefit_2
943-
translation: "5 Sitze"
944-
- id: pricing_hub_community_benefit_3
945-
translation: "Voller Zugriff über Desktop-App"
946-
- id: pricing_hub_community_benefit_4
947-
translation: "Lesender Zugriff über Mobile-Apps"
948-
- id: pricing_hub_community_benefit_4_tooltip
949-
translation: "Wenn du die Vollversion der mobilen App freigeschaltet hast, erhältst du vollen Zugriff."
950-
- id: pricing_hub_community_benefit_5
951-
translation: "Community-Support"
934+
translation: "Nur Self-Hosted"
952935

953936
- id: pricing_hub_standard_title
954937
translation: "Standard"
938+
- id: pricing_hub_standard_subtitle
939+
translation: "Für Teams, die skalierbare und sichere Dateiverschlüsselung benötigen."
955940
- id: pricing_hub_standard_price_description
956941
translation: "pro Sitz, pro Monat"
957942
- id: pricing_hub_standard_benefit_1
958-
translation: "Alles in Community"
943+
translation: "Alle Cryptomator-Features, plus:"
959944
- id: pricing_hub_standard_benefit_2
960-
translation: "Ab 3 Sitze"
945+
translation: "Benutzer- und Gruppenverwaltung"
961946
- id: pricing_hub_standard_benefit_3
962947
translation: "Voller Zugriff über Mobile-Apps"
963-
- id: pricing_hub_standard_benefit_3_tooltip
964-
translation: "Du erhältst vollen Zugriff, ohne die Vollversion der mobilen App freischalten zu müssen."
965948
- id: pricing_hub_standard_benefit_4
966949
translation: "Audit-Logs"
967950
- id: pricing_hub_standard_benefit_5
@@ -973,6 +956,8 @@
973956

974957
- id: pricing_hub_enterprise_title
975958
translation: "Enterprise"
959+
- id: pricing_hub_enterprise_subtitle
960+
translation: "Für großflächige Deployments mit Premium-Support."
976961
- id: pricing_hub_enterprise_price
977962
translation: "Individuell"
978963
- id: pricing_hub_enterprise_price_description
@@ -982,10 +967,12 @@
982967
- id: pricing_hub_enterprise_benefit_1
983968
translation: "Alles in Standard"
984969
- id: pricing_hub_enterprise_benefit_2
985-
translation: "Beratung und Unterstützung durch Experten"
970+
translation: "Notfallzugriff"
986971
- id: pricing_hub_enterprise_benefit_3
987-
translation: "Dedizierter Kundenbetreuer"
972+
translation: "Beratung und Unterstützung durch Experten"
988973
- id: pricing_hub_enterprise_benefit_4
974+
translation: "Dedizierter Kundenbetreuer"
975+
- id: pricing_hub_enterprise_benefit_5
989976
translation: "Vorrangiger E-Mail-Support"
990977

991978
- id: pricing_support_us_title
@@ -997,6 +984,11 @@
997984
- id: pricing_support_us_sponsor_button
998985
translation: "Werde Sponsor"
999986

987+
- id: pricing_faq_individual_badge
988+
translation: "Für Einzelnutzer"
989+
- id: pricing_faq_teams_badge
990+
translation: "Für Teams"
991+
1000992
# Supporter Certificate
1001993
- id: supporter_cert_common_email
1002994
translation: "E-Mail"

0 commit comments

Comments
 (0)