mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add plural formatting for months in narrow form (#7744)

authored by

surfdude29 and committed by
GitHub
bf4d3e89 1fd3af3c

+1 -1
+1 -1
src/lib/hooks/useTimeAgo.ts
··· 180 180 ? i18n._(plural(diff.value, {one: '# month', other: '# months'})) 181 181 : i18n._( 182 182 defineMessage({ 183 - message: `${diff.value}mo`, 183 + message: plural(diff.value, {one: '#mo', other: '#mo'}), 184 184 comment: `How many months have passed, displayed in a narrow form`, 185 185 }), 186 186 )