diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-04-25 10:30:58 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-04-25 10:30:58 +0200 |
commit | d4c9566cd564d440f28e7fcc75bfe114a048b704 (patch) | |
tree | 8b96b679370af105ac9d3ec978391ab76662d697 /apps | |
parent | a4b1d9feee79218268abcb0c20ed16bec82c993c (diff) | |
download | nextcloud-server-d4c9566cd564d440f28e7fcc75bfe114a048b704.tar.gz nextcloud-server-d4c9566cd564d440f28e7fcc75bfe114a048b704.zip |
Translate the current user with "You ..."
Diffstat (limited to 'apps')
-rw-r--r-- | apps/systemtags/activity/extension.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/apps/systemtags/activity/extension.php b/apps/systemtags/activity/extension.php index 4a974611509..8c101a6f550 100644 --- a/apps/systemtags/activity/extension.php +++ b/apps/systemtags/activity/extension.php @@ -142,9 +142,15 @@ class Extension implements IExtension { switch ($text) { case self::ASSIGN_TAG: $params[2] = $this->convertParameterToTag($params[2], $l); + if ($this->actorIsCurrentUser($params[0])) { + return (string) $l->t('You assigned system tag %3$s', $params); + } return (string) $l->t('%1$s assigned system tag %3$s', $params); case self::UNASSIGN_TAG: $params[2] = $this->convertParameterToTag($params[2], $l); + if ($this->actorIsCurrentUser($params[0])) { + return (string) $l->t('You unassigned system tag %3$s', $params); + } return (string) $l->t('%1$s unassigned system tag %3$s', $params); } @@ -162,19 +168,34 @@ class Extension implements IExtension { switch ($text) { case self::CREATE_TAG: $params[1] = $this->convertParameterToTag($params[1], $l); + if ($this->actorIsCurrentUser($params[0])) { + return (string) $l->t('You created system tag %2$s', $params); + } return (string) $l->t('%1$s created system tag %2$s', $params); case self::DELETE_TAG: $params[1] = $this->convertParameterToTag($params[1], $l); + if ($this->actorIsCurrentUser($params[0])) { + return (string) $l->t('You deleted system tag %2$s', $params); + } return (string) $l->t('%1$s deleted system tag %2$s', $params); case self::UPDATE_TAG: $params[1] = $this->convertParameterToTag($params[1], $l); $params[2] = $this->convertParameterToTag($params[2], $l); + if ($this->actorIsCurrentUser($params[0])) { + return (string) $l->t('You updated system tag %3$s to %2$s', $params); + } return (string) $l->t('%1$s updated system tag %3$s to %2$s', $params); case self::ASSIGN_TAG: $params[2] = $this->convertParameterToTag($params[2], $l); + if ($this->actorIsCurrentUser($params[0])) { + return (string) $l->t('You assigned system tag %3$s to %2$s', $params); + } return (string) $l->t('%1$s assigned system tag %3$s to %2$s', $params); case self::UNASSIGN_TAG: $params[2] = $this->convertParameterToTag($params[2], $l); + if ($this->actorIsCurrentUser($params[0])) { + return (string) $l->t('You unassigned system tag %3$s from %2$s', $params); + } return (string) $l->t('%1$s unassigned system tag %3$s from %2$s', $params); } @@ -182,6 +203,20 @@ class Extension implements IExtension { } /** + * Check if the author is the current user + * + * @param string $user Parameter e.g. `<user display-name="admin">admin</user>` + * @return bool + */ + protected function actorIsCurrentUser($user) { + try { + return strip_tags($user) === $this->activityManager->getCurrentUserId(); + } catch (\UnexpectedValueException $e) { + return false; + } + } + + /** * The extension can define the type of parameters for translation * * Currently known types are: |