diff --git a/app/components/GroupListItem.tsx b/app/components/GroupListItem.tsx index 5f5fa4c5d..f19a37360 100644 --- a/app/components/GroupListItem.tsx +++ b/app/components/GroupListItem.tsx @@ -47,7 +47,7 @@ function GroupListItem({ group, showFacepile, renderActions }: Props) { } title={{group.name}} - subtitle={t("{{ count }} members", { count: memberCount })} + subtitle={t("{{ count }} member", { count: memberCount })} actions={ {showFacepile && ( diff --git a/shared/i18n/locales/en_US/translation.json b/shared/i18n/locales/en_US/translation.json index 3a94a8e42..5c91bf72d 100644 --- a/shared/i18n/locales/en_US/translation.json +++ b/shared/i18n/locales/en_US/translation.json @@ -168,8 +168,8 @@ "You will receive an email when it's complete.": "You will receive an email when it's complete.", "A ZIP file containing the images, and documents in the Markdown format.": "A ZIP file containing the images, and documents in the Markdown format.", "A ZIP file containing the images, and documents as HTML files.": "A ZIP file containing the images, and documents as HTML files.", - "{{ count }} members": "{{ count }} members", - "{{ count }} members_plural": "{{ count }} members", + "{{ count }} member": "{{ count }} member", + "{{ count }} member_plural": "{{ count }} members", "Group members": "Group members", "Icon": "Icon", "Show menu": "Show menu",