You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

altmail.php 769B

12345678910111213141516
  1. <?php
  2. /** @var OC_Theme $theme */
  3. /** @var array $_ */
  4. print_unescaped($l->t("Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n", [$_['password']]));
  5. if (isset($_['expiration'])) {
  6. print_unescaped($l->t("The share will expire on %s.", [$_['expiration']]));
  7. print_unescaped("\n\n");
  8. }
  9. // TRANSLATORS term at the end of a mail
  10. p($l->t("Cheers!"));
  11. ?>
  12. --
  13. <?php p($theme->getName() . ' - ' . $theme->getSlogan()); ?>
  14. <?php print_unescaped("\n".$theme->getBaseUrl());