diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/hooks/useTimeAgo.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hooks/useTimeAgo.ts b/src/lib/hooks/useTimeAgo.ts index 7995ac824..e9430ad47 100644 --- a/src/lib/hooks/useTimeAgo.ts +++ b/src/lib/hooks/useTimeAgo.ts @@ -180,7 +180,7 @@ export function formatDateDiff({ ? i18n._(plural(diff.value, {one: '# month', other: '# months'})) : i18n._( defineMessage({ - message: `${diff.value}mo`, + message: plural(diff.value, {one: '#mo', other: '#mo'}), comment: `How many months have passed, displayed in a narrow form`, }), ) |