Skip to content

Commit

Permalink
Use curly apostrophes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa committed Jan 8, 2025
1 parent 7136037 commit b123ec8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
12 changes: 3 additions & 9 deletions desktop/packages/mullvad-vpn/locales/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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 "Whats new"
msgstr ""

#. The selected location label displayed on the main view, when a user selected a specific host to connect to.
Expand Down Expand Up @@ -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 whats new."
msgstr ""

#. The in-app banner displayed to the user when the app update is available.
Expand Down Expand Up @@ -1574,7 +1574,7 @@ msgid "VPN settings"
msgstr ""

msgctxt "settings-view"
msgid "What's new"
msgid "Whats new"
msgstr ""

msgctxt "split-tunneling-view"
Expand Down Expand Up @@ -2370,9 +2370,6 @@ msgstr ""
msgid "Clear input"
msgstr ""

msgid "Click here to see what’s new."
msgstr ""

msgid "Collapse"
msgstr ""

Expand Down Expand Up @@ -2763,9 +2760,6 @@ msgstr ""
msgid "We were unable to start the payment process, please try again later."
msgstr ""

msgid "What’s new"
msgstr ""

msgid "WireGuard MTU"
msgstr ""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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', "Whats new")}</Cell.Label>

Check failure on line 14 in desktop/packages/mullvad-vpn/src/renderer/components/views/app-info/components/ChangelogListItem.tsx

View workflow job for this annotation

GitHub Actions / check-frontend (ubuntu-latest)

Replace `"What’s·new"` with `'What’s·new'`

Check failure on line 14 in desktop/packages/mullvad-vpn/src/renderer/components/views/app-info/components/ChangelogListItem.tsx

View workflow job for this annotation

GitHub Actions / check-frontend (ubuntu-latest)

Strings must use singlequote
</Cell.CellNavigationButton>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ export const ChangelogView = () => {
<NavigationContainer>
<NavigationBar>
<NavigationItems>
<TitleBarItem>{messages.pgettext('changelog-view', "What's new")}</TitleBarItem>
<TitleBarItem>{messages.pgettext('changelog-view', "Whats new")}</TitleBarItem>

Check failure on line 54 in desktop/packages/mullvad-vpn/src/renderer/components/views/changelog/ChangelogView.tsx

View workflow job for this annotation

GitHub Actions / check-frontend (ubuntu-latest)

Replace `"What’s·new"` with `'What’s·new'`

Check failure on line 54 in desktop/packages/mullvad-vpn/src/renderer/components/views/changelog/ChangelogView.tsx

View workflow job for this annotation

GitHub Actions / check-frontend (ubuntu-latest)

Strings must use singlequote
</NavigationItems>
</NavigationBar>

<NavigationScrollbars>
<SettingsHeader>
<TitleBig as={'h1'}>{messages.pgettext('changelog-view', "What's new")}</TitleBig>
<TitleBig as={'h1'}>{messages.pgettext('changelog-view', "Whats new")}</TitleBig>

Check failure on line 60 in desktop/packages/mullvad-vpn/src/renderer/components/views/changelog/ChangelogView.tsx

View workflow job for this annotation

GitHub Actions / check-frontend (ubuntu-latest)

Replace `"What’s·new"` with `'What’s·new'`

Check failure on line 60 in desktop/packages/mullvad-vpn/src/renderer/components/views/changelog/ChangelogView.tsx

View workflow job for this annotation

GitHub Actions / check-frontend (ubuntu-latest)

Strings must use singlequote
</SettingsHeader>
<Flex $flexDirection="column" $gap={Spacings.spacing3}>
<Container size="4">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 whats new.");

Check failure on line 25 in desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-version.ts

View workflow job for this annotation

GitHub Actions / check-frontend (ubuntu-latest)

Replace `"Click·here·to·see·what’s·new."` with `'Click·here·to·see·what’s·new.'`

Check failure on line 25 in desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-version.ts

View workflow job for this annotation

GitHub Actions / check-frontend (ubuntu-latest)

Strings must use singlequote
return {
indicator: 'success',
action: { type: 'close', close: this.context.close },
Expand Down

0 comments on commit b123ec8

Please sign in to comment.