diff --git a/_locales/en/messages.json b/_locales/en/messages.json index fc50aa0732..1df758d928 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -6461,7 +6461,11 @@ "description": "Release notes for v5.19" }, "WhatsNew__v5.19--3": { - "message": "Silence (and your preferences) is golden, so muted conversations will no longer display 'group call started' notifications!", + "message": "When a group call starts, you now get a notification. You'll never be late again, unless you want to be.", + "description": "Release notes for v5.19" + }, + "WhatsNew__v5.19--4": { + "message": "This feature goes out to everyone who reacts with 💅 more than 👍: you can now customize the emojis that appear by default when you want to react to a message.", "description": "Release notes for v5.19" } } diff --git a/ts/components/WhatsNew.tsx b/ts/components/WhatsNew.tsx index add1e226b8..f9a680c850 100644 --- a/ts/components/WhatsNew.tsx +++ b/ts/components/WhatsNew.tsx @@ -32,6 +32,7 @@ export const WhatsNew = ({ i18n }: PropsType): JSX.Element => { { key: 'WhatsNew__v5.19--1', components: undefined }, { key: 'WhatsNew__v5.19--2', components: undefined }, { key: 'WhatsNew__v5.19--3', components: undefined }, + { key: 'WhatsNew__v5.19--4', components: undefined }, ], }); };