diff options
| author | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-04-03 21:35:52 +0200 |
|---|---|---|
| committer | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2025-05-28 13:25:24 +0200 |
| commit | bc8f945e8734522b1beb52930a3aba1f638a08ea (patch) | |
| tree | a2da4701d2e78f4dcb780c4e6e0cf891af3186f0 | |
| parent | 58a33b8dbec52c6972fe056a7764828aeee116df (diff) | |
| download | mullvadvpn-bc8f945e8734522b1beb52930a3aba1f638a08ea.tar.xz mullvadvpn-bc8f945e8734522b1beb52930a3aba1f638a08ea.zip | |
Add translators note
Also pass in h1 tag as a simple double quoted string
| -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"> |
