diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-11 11:48:23 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-11 11:48:23 +0100 |
commit | b33d8a3d60555de3e6e99a92eed3a303e55a3380 (patch) | |
tree | 6f2a2a9ddc1e5808499fd27b3b7b4d403fd8c8a6 | |
parent | acc9af8fc92ea315668e80617e5496e60a97d788 (diff) | |
parent | c5e279e416e62ddb65b6f53d520f17b211b5232d (diff) | |
download | nextcloud-server-b33d8a3d60555de3e6e99a92eed3a303e55a3380.tar.gz nextcloud-server-b33d8a3d60555de3e6e99a92eed3a303e55a3380.zip |
Merge pull request #12776 from owncloud/fix-go-ago
year go -> year ago
-rw-r--r-- | lib/private/datetimeformatter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/datetimeformatter.php b/lib/private/datetimeformatter.php index 127e694bd88..75e41259849 100644 --- a/lib/private/datetimeformatter.php +++ b/lib/private/datetimeformatter.php @@ -157,7 +157,7 @@ class DateTimeFormatter implements \OCP\IDateTimeFormatter { } else if ($dateInterval->y == 1) { return (string) $l->t('last year'); } - return (string) $l->n('%n year go', '%n years ago', $dateInterval->y); + return (string) $l->n('%n year ago', '%n years ago', $dateInterval->y); } /** |