diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 715aa4a06d..5cd91e36e1 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -6816,5 +6816,13 @@ "WhatsNew__v5.31--2": { "message": "Shuffled around the spacing in the left pane header and search area and now there is so much room for activities!", "description": "Release notes for v5.31" + }, + "WhatsNew__v5.32--1": { + "message": "Easily track down that errant loud typist or heavy chewer in group calls - we've introduced a new animated speaking indicator!", + "description": "Release notes for v5.32" + }, + "WhatsNew__v5.32--2": { + "message": "The list of supported languages has expanded. We sincerely appreciate the volunteer translators whose efforts made this possible.", + "description": "Release notes for v5.32" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index 5821ca5a69..ebe1170cb5 100644 --- a/ts/components/WhatsNewModal.tsx +++ b/ts/components/WhatsNewModal.tsx @@ -30,9 +30,8 @@ const releaseNotes: ReleaseNotesType = { date: new Date(window.getBuildCreation?.() || Date.now()), version: window.getVersion?.(), features: [ - { key: 'WhatsNew__v5.31--1', components: undefined }, - { key: 'WhatsNew__v5.31--2', components: undefined }, - { key: 'WhatsNew__bugfixes', components: undefined }, + { key: 'WhatsNew__v5.32--1', components: undefined }, + { key: 'WhatsNew__v5.32--2', components: undefined }, ], };