Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-10-19 11:50:10 +0300
committerJan-Christoph Borchardt <hey@jancborchardt.net>2016-10-19 11:50:20 +0300
commit89dd5103cfa8d14454bbaaef802b648ac0703744 (patch)
tree545cdb6516c4603449ab1394da9c91e2ef465551 /apps/systemtags/lib
parent5e48ce98c70fa511ea2c1caeb332594912c9d96a (diff)
change wording of system tags from un/assigned to more human added/removed
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/systemtags/lib')
-rw-r--r--apps/systemtags/lib/Activity/Extension.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/systemtags/lib/Activity/Extension.php b/apps/systemtags/lib/Activity/Extension.php
index 9fac2ddbc62..8937d916209 100644
--- a/apps/systemtags/lib/Activity/Extension.php
+++ b/apps/systemtags/lib/Activity/Extension.php
@@ -145,15 +145,15 @@ class Extension implements IExtension {
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('You added system tag %3$s', $params);
}
- return (string) $l->t('%1$s assigned system tag %3$s', $params);
+ return (string) $l->t('%1$s added 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('You removed system tag %3$s', $params);
}
- return (string) $l->t('%1$s unassigned system tag %3$s', $params);
+ return (string) $l->t('%1$s removed system tag %3$s', $params);
}
return false;
@@ -190,15 +190,15 @@ class Extension implements IExtension {
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('You added system tag %3$s to %2$s', $params);
}
- return (string) $l->t('%1$s assigned system tag %3$s to %2$s', $params);
+ return (string) $l->t('%1$s added 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('You removed system tag %3$s from %2$s', $params);
}
- return (string) $l->t('%1$s unassigned system tag %3$s from %2$s', $params);
+ return (string) $l->t('%1$s removed system tag %3$s from %2$s', $params);
}
return false;