From 8651f31ebb7cf9c6a0949503f2c2c5755328ce46 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 29 Aug 2024 19:22:53 -0500 Subject: Localize dates, counts (#5027) * refactor: consistent localized formatting * refactor: localized date time * refactor: localize relative time with strings * chore: fix typo from copy-paste * Clean up useTimeAgo * Remove old ago * Const * Reuse * Prettier --------- Co-authored-by: Mary --- src/view/com/util/post-ctrls/RepostButton.web.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/view/com/util/post-ctrls/RepostButton.web.tsx') diff --git a/src/view/com/util/post-ctrls/RepostButton.web.tsx b/src/view/com/util/post-ctrls/RepostButton.web.tsx index 9a8776b9c..111b41dd7 100644 --- a/src/view/com/util/post-ctrls/RepostButton.web.tsx +++ b/src/view/com/util/post-ctrls/RepostButton.web.tsx @@ -128,6 +128,7 @@ const RepostInner = ({ repostCount?: number big?: boolean }) => { + const {i18n} = useLingui() return ( @@ -140,7 +141,7 @@ const RepostInner = ({ isReposted && [a.font_bold], a.user_select_none, ]}> - {formatCount(repostCount)} + {formatCount(i18n, repostCount)} ) : undefined} -- cgit 1.4.1