Merge pull request #12776 from owncloud/fix-go-ago

year go -> year ago
This commit is contained in:
Jan-Christoph Borchardt 2014-12-11 11:48:23 +01:00
commit b33d8a3d60
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/**