diff --git a/src/lib/locales/en.json b/src/lib/locales/en.json index 9df5709..1daa36a 100644 --- a/src/lib/locales/en.json +++ b/src/lib/locales/en.json @@ -83,7 +83,8 @@ "Thunderbird": "
  1. Download and save the file postguard-tb-addon.xpi somewhere on your computer, where you can find it again easily.
  2. Within Thunderbird:

  3. Now, when you compose a new mail message, a new header is shown with a button to switch PostGuard on or off. When on, it will encrypt the message for all recipients. Each recipient needs to use the Yivi app to prove that (s)he really posesses the email address that you used.
", "Outlook": "
  1. Adding the add-on:

  2. Now, when you compose a new mail message, a new group is visible in the Message menu titled PostGuard Add-in. It contains only one button, called Send encrypted Email. When clicking, it will encrypt and send the message to all recipients. Each recipient needs to use the Yivi app to prove that (s)he really possesses the email address that you used. Also, a copy of the sent mail is stored in the folder PostGuard Sent Items as a draft email (currently, Microsoft only allows to create messages as a draft).
  3. After receiving a PostGuard encrypted email, the email can be decrypted by clicking on the Decrypt Email button within the PostGuard Add-in group under the Home menu.
", "instruction.header": "Install instructions", - "instruction.download": "Download for:" + "instruction.download": "Download for:", + "outlookWarning": "Heads up: some Outlook accounts (typically those provided by an organization) do not allow custom add-ins. If your account is one of them, the Custom Add-ins section described below will be missing from aka.ms/olksideload and PostGuard for Outlook cannot be installed. Please contact your administrator, or use PostGuard for Thunderbird or the web app instead." }, "fallback": { "extensionPrompt": "Want to decrypt emails directly in Thunderbird or Outlook?", diff --git a/src/lib/locales/nl.json b/src/lib/locales/nl.json index 4787cfa..4b0ffb5 100644 --- a/src/lib/locales/nl.json +++ b/src/lib/locales/nl.json @@ -83,7 +83,8 @@ "Thunderbird": "
  1. Download en bewaar het bestand postguard-tb-addon.xpi ergens op uw computer, waar je het gemakkelijk terug kunt vinden.
  2. Binnen Thunderbird:

  3. Als je nu een nieuw mailbericht opstelt, wordt er een nieuwe balk getoond met een knop om PostGuard aan of uit te zetten. Indien ingeschakeld, wordt het bericht voor alle ontvangers versleuteld. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt in het bezit is van het e-mailadres dat je hebt gebruikt.
", "Outlook": "
  1. De add-on toevoegen:

  2. Als je nu een nieuw e-mailbericht opstelt, is er een nieuwe groep zichtbaar in het menu Message met de naam PostGuard Add- in. Het bevat slechts één knop, genaamd Gecodeerde e-mail verzenden. Wanneer je erop klikt, wordt het bericht gecodeerd en naar alle ontvangers verzonden. Elke ontvanger moet de Yivi-app gebruiken om te bewijzen dat hij/zij echt over het door je gebruikte e-mailadres beschikt. Ook wordt een kopie van de verzonden e-mail opgeslagen in de map PostGuard Sent Items als concept-e-mail (momenteel staat Microsoft alleen toe om berichten als concept te maken).
  3. Na ontvangst van een met PostGuard versleutelde e-mail, kan de e-mail worden ontsleuteld door te klikken op de knop E-mail ontsleutelen in de groep PostGuard-Addon onder de Start-menu.
", "instruction.header": "Installatie instructies", - "instruction.download": "Downloaden voor:" + "instruction.download": "Downloaden voor:", + "outlookWarning": "Let op: sommige Outlook-accounts (meestal accounts van een organisatie) staan geen aangepaste add-ins toe. Als dat voor jouw account geldt, ontbreekt het onderdeel Aangepaste add-ins dat hieronder wordt beschreven op aka.ms/olksideload en kan PostGuard voor Outlook niet worden geïnstalleerd. Neem contact op met je beheerder, of gebruik in plaats daarvan PostGuard voor Thunderbird of de webversie." }, "fallback": { "extensionPrompt": "Wil je e-mails direct ontsleutelen in Thunderbird of Outlook?", diff --git a/src/routes/(marketing)/addons/+page.svelte b/src/routes/(marketing)/addons/+page.svelte index a0e3133..8b85995 100644 --- a/src/routes/(marketing)/addons/+page.svelte +++ b/src/routes/(marketing)/addons/+page.svelte @@ -118,6 +118,12 @@ {#if activeItem} {#key activeItem} + {#if activeItem === 'Outlook'} +
+ + {@html $_('addons.outlookWarning')} +
+ {/if}
{@html $_(`addons.${activeItem}`)} @@ -173,4 +179,14 @@ margin-top: 0; } } + + .callout { + border-left: 4px solid #c9941b; + background: #fff7e0; + padding: 0.75rem 1rem; + margin: 0.75rem 0 1rem; + border-radius: 4px; + font-size: 0.95em; + line-height: 1.4; + }