diff options
| author | David Göransson <david.goransson@mullvad.net> | 2025-01-09 10:55:29 +0100 |
|---|---|---|
| committer | David Göransson <david.goransson@mullvad.net> | 2025-01-09 10:55:29 +0100 |
| commit | af606551507a95671264979c8a5ca537b33e8a3c (patch) | |
| tree | 4cf45c753e523389bca114f24fbefe576cc53427 /desktop | |
| parent | dce74bb3a8c983cfc55f46f989e93f762b772e36 (diff) | |
| parent | 412040218f3d965aca121a47bd5ca954dd9916e5 (diff) | |
| download | mullvadvpn-af606551507a95671264979c8a5ca537b33e8a3c.tar.xz mullvadvpn-af606551507a95671264979c8a5ca537b33e8a3c.zip | |
Merge branch 'update-changelog-presentation-droid-1634'
Diffstat (limited to 'desktop')
4 files changed, 10 insertions, 13 deletions
diff --git a/desktop/packages/mullvad-vpn/locales/messages.pot b/desktop/packages/mullvad-vpn/locales/messages.pot index 2a50198bf0..0801445c51 100644 --- a/desktop/packages/mullvad-vpn/locales/messages.pot +++ b/desktop/packages/mullvad-vpn/locales/messages.pot @@ -621,7 +621,7 @@ msgid "No updates or changes were made in this release for this platform." msgstr "" msgctxt "changelog-view" -msgid "What's new" +msgid "What’s new" msgstr "" #. The selected location label displayed on the main view, when a user selected a specific host to connect to. @@ -911,7 +911,7 @@ msgid "BLOCKING INTERNET" msgstr "" msgctxt "in-app-notifications" -msgid "Click here to see what's new." +msgid "Click here to see what’s new." msgstr "" #. The in-app banner displayed to the user when the app update is available. @@ -1574,7 +1574,7 @@ msgid "VPN settings" msgstr "" msgctxt "settings-view" -msgid "What's new" +msgid "What’s new" msgstr "" msgctxt "split-tunneling-view" @@ -2364,12 +2364,6 @@ msgstr "" msgid "Blocking..." msgstr "" -msgid "Changelog" -msgstr "" - -msgid "Changes in this version:" -msgstr "" - msgid "Changes to DNS related settings might not go into effect immediately due to cached results." msgstr "" @@ -2553,6 +2547,9 @@ msgstr "" msgid "New list" msgstr "" +msgid "No changelog was added for this version" +msgstr "" + msgid "No custom lists available" msgstr "" diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/views/app-info/components/ChangelogListItem.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/views/app-info/components/ChangelogListItem.tsx index c05b0286b6..9c861008d1 100644 --- a/desktop/packages/mullvad-vpn/src/renderer/components/views/app-info/components/ChangelogListItem.tsx +++ b/desktop/packages/mullvad-vpn/src/renderer/components/views/app-info/components/ChangelogListItem.tsx @@ -11,7 +11,7 @@ export function ChangelogListItem() { return ( <Cell.CellNavigationButton onClick={navigate}> - <Cell.Label>{messages.pgettext('settings-view', "What's new")}</Cell.Label> + <Cell.Label>{messages.pgettext('settings-view', 'What’s new')}</Cell.Label> </Cell.CellNavigationButton> ); } 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 6bfe45b7a9..4a93908e65 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 @@ -51,13 +51,13 @@ export const ChangelogView = () => { <NavigationContainer> <NavigationBar> <NavigationItems> - <TitleBarItem>{messages.pgettext('changelog-view', "What's new")}</TitleBarItem> + <TitleBarItem>{messages.pgettext('changelog-view', 'What’s new')}</TitleBarItem> </NavigationItems> </NavigationBar> <NavigationScrollbars> <SettingsHeader> - <TitleBig as={'h1'}>{messages.pgettext('changelog-view', "What's new")}</TitleBig> + <TitleBig as={'h1'}>{messages.pgettext('changelog-view', 'What’s new')}</TitleBig> </SettingsHeader> <Flex $flexDirection="column" $gap={Spacings.spacing3}> <Container size="4"> diff --git a/desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-version.ts b/desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-version.ts index 73ccf61525..49be1a2718 100644 --- a/desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-version.ts +++ b/desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-version.ts @@ -22,7 +22,7 @@ export class NewVersionNotificationProvider implements InAppNotificationProvider public getInAppNotification(): InAppNotification { const title = messages.pgettext('in-app-notifications', 'NEW VERSION INSTALLED'); - const subtitle = messages.pgettext('in-app-notifications', "Click here to see what's new."); + const subtitle = messages.pgettext('in-app-notifications', 'Click here to see what’s new.'); return { indicator: 'success', action: { type: 'close', close: this.context.close }, |
