diff options
| -rw-r--r-- | desktop/packages/mullvad-vpn/src/renderer/components/views/changelog/ChangelogView.tsx | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/views/changelog/ChangelogView.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/views/changelog/ChangelogView.tsx index 32bf4e7a9e..31a65eb396 100644 --- a/desktop/packages/mullvad-vpn/src/renderer/components/views/changelog/ChangelogView.tsx +++ b/desktop/packages/mullvad-vpn/src/renderer/components/views/changelog/ChangelogView.tsx @@ -28,12 +28,24 @@ export const ChangelogView = () => { <Layout> <SettingsContainer> <NavigationContainer> - <AppNavigationHeader title={messages.pgettext('changelog-view', 'What’s new')} /> + <AppNavigationHeader + title={ + // TRANSLATORS: Heading for the view of the changes and updates in the + // TRANSLATORS: current version compared to the old version. + messages.pgettext('changelog-view', 'What’s new') + } + /> <NavigationScrollbars> <Flex $flexDirection="column" $gap="large"> <Container size="4"> - <TitleBig as={'h1'}>{messages.pgettext('changelog-view', 'What’s new')}</TitleBig> + <TitleBig as="h1"> + { + // TRANSLATORS: Heading for the view of the changes and updates in the + // TRANSLATORS: current version compared to the old version. + messages.pgettext('changelog-view', 'What’s new') + } + </TitleBig> </Container> <Flex $flexDirection="column" $gap="small"> <Container size="4"> |
