Fix grouped reaction notification text

This commit is contained in:
Essem 2024-08-22 12:22:36 -05:00 committed by Jeremy Kescher
parent 1c0c393a19
commit c00f37f87b
No known key found for this signature in database
GPG key ID: 80A419A7A613DFA4
2 changed files with 22 additions and 7 deletions

View file

@ -6,13 +6,27 @@ import type { NotificationGroupReaction } from 'flavours/glitch/models/notificat
import type { LabelRenderer } from './notification_group_with_status';
import { NotificationGroupWithStatus } from './notification_group_with_status';
const labelRenderer: LabelRenderer = (values) => (
<FormattedMessage
id='notification.reaction'
defaultMessage='{name} reacted to your status'
values={values}
/>
);
const labelRenderer: LabelRenderer = (displayedName, total) => {
if (total === 1)
return (
<FormattedMessage
id='notification.reaction'
defaultMessage='{name} reacted to your status'
values={{ name: displayedName }}
/>
);
return (
<FormattedMessage
id='notification.reaction.name_and_others'
defaultMessage='{name} and {count, plural, one {# other} other {# others}} reacted to your post'
values={{
name: displayedName,
count: total - 1,
}}
/>
);
};
export const NotificationReaction: React.FC<{
notification: NotificationGroupReaction;

View file

@ -56,6 +56,7 @@
"navigation_bar.misc": "Misc",
"notification.markForDeletion": "Mark for deletion",
"notification.reaction": "{name} reacted to your post",
"notification.reaction.name_and_others": "{name} and {count, plural, one {# other} other {# others}} reacted to your post",
"notification_purge.btn_all": "Select\nall",
"notification_purge.btn_apply": "Clear\nselected",
"notification_purge.btn_invert": "Invert\nselection",