From 6bb24944b275d1e668b9eb502e3ba3b422fb7f96 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 14 Aug 2025 10:03:41 -0500 Subject: [PATCH] Update MaxImages translation Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --- src/view/com/composer/SelectMediaButton.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/view/com/composer/SelectMediaButton.tsx b/src/view/com/composer/SelectMediaButton.tsx index f80a7d6e96..a2b867aca3 100644 --- a/src/view/com/composer/SelectMediaButton.tsx +++ b/src/view/com/composer/SelectMediaButton.tsx @@ -395,7 +395,13 @@ export function SelectMediaButton({ msg`Selecting multiple media types is not supported.`, ), [SelectedAssetError.MaxImages]: _( - msg`You can select up to ${MAX_IMAGES} total images.`, + msg({ + message: `You can select up to ${plural(MAX_IMAGES, { + other: '# images', + })} in total.`, + comment: `Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.`, + }), + ), ), [SelectedAssetError.MaxVideos]: _( msg`You can only select one video at a time.`,