summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-04-26 08:57:08 -0300
committerGitHub <noreply@github.com>2017-04-26 08:57:08 -0300
commitba43a093801b6aa07bf1c9269c656d86100e9b3a (patch)
treee66833bbbb98c439fce202a16408bf555509bf45 /apps/user_ldap
parent5b5c3a1773dab4960d41aafc4150859a308311b7 (diff)
parentec323cb687891cc877404f51b2ac19ae8f7bc151 (diff)
downloadnextcloud-server-ba43a093801b6aa07bf1c9269c656d86100e9b3a.tar.gz
nextcloud-server-ba43a093801b6aa07bf1c9269c656d86100e9b3a.zip
Merge pull request #4512 from nextcloud/fix-translations-2
Fix translations
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/Notification/Notifier.php14
-rw-r--r--apps/user_ldap/lib/User/User.php2
2 files changed, 14 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Notification/Notifier.php b/apps/user_ldap/lib/Notification/Notifier.php
index a6053cfcb19..0099d764f03 100644
--- a/apps/user_ldap/lib/Notification/Notifier.php
+++ b/apps/user_ldap/lib/Notification/Notifier.php
@@ -60,7 +60,19 @@ class Notifier implements INotifier {
switch ($notification->getSubject()) {
// Deal with known subjects
case 'pwd_exp_warn_days':
- $notification->setParsedSubject($l->t('Your password will expire within %s day(s).', $notification->getSubjectParameters()));
+ $params = $notification->getSubjectParameters();
+ $days = (int) $params[0];
+ if ($days === 2) {
+ $notification->setParsedSubject($l->t('Your password will expire tomorrow.', $days));
+ } else if ($days === 1) {
+ $notification->setParsedSubject($l->t('Your password will expire today.', $days));
+ } else {
+ $notification->setParsedSubject($l->n(
+ 'Your password will expire within %n day.',
+ 'Your password will expire within %n days.',
+ $days
+ ));
+ }
return $notification;
default:
diff --git a/apps/user_ldap/lib/User/User.php b/apps/user_ldap/lib/User/User.php
index a9e7eb6cc0c..5017f35ed0a 100644
--- a/apps/user_ldap/lib/User/User.php
+++ b/apps/user_ldap/lib/User/User.php
@@ -683,7 +683,7 @@ class User {
->setUser($uid)
->setDateTime($currentDateTime)
->setObject('pwd_exp_warn', $uid)
- ->setSubject('pwd_exp_warn_days', [strval(ceil($secondsToExpiry / 60 / 60 / 24))])
+ ->setSubject('pwd_exp_warn_days', [(int) ceil($secondsToExpiry / 60 / 60 / 24)])
;
$this->notificationManager->notify($notification);
}