summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHank <hank@mullvad.net>2022-10-04 14:27:29 +0200
committerHank <hank@mullvad.net>2022-10-05 15:58:19 +0200
commitaca318d9da575d4692ff70924f2723738d26faa9 (patch)
tree6867d44946782b566d8dd155bb4ca097c4e6cfcf
parent41135d85e19345dc012c694414cc3673b9a2f0ef (diff)
downloadmullvadvpn-aca318d9da575d4692ff70924f2723738d26faa9.tar.xz
mullvadvpn-aca318d9da575d4692ff70924f2723738d26faa9.zip
Change straight apostrophes to curly apostrophes
-rw-r--r--android/app/src/main/res/values/strings.xml8
-rw-r--r--gui/locales/messages.pot8
-rw-r--r--gui/src/renderer/components/ExpiredAccountAddTime.tsx2
-rw-r--r--gui/src/renderer/components/Login.tsx2
-rw-r--r--gui/src/renderer/components/ProblemReport.tsx2
5 files changed, 11 insertions, 11 deletions
diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml
index 85305809d3..1611bc56b4 100644
--- a/android/app/src/main/res/values/strings.xml
+++ b/android/app/src/main/res/values/strings.xml
@@ -21,13 +21,13 @@
<string name="logged_in_description">Valid account number</string>
<string name="login_fail_title">Login failed</string>
<string name="login_fail_description">Invalid account number</string>
- <string name="dont_have_an_account">Don\'t have an account number?</string>
+ <string name="dont_have_an_account">Don’t have an account number?</string>
<string name="create_account">Create account</string>
<string name="creating_new_account">Creating account...</string>
<string name="failed_to_create_account">Failed to create account</string>
<string name="account_created">Account created</string>
<string name="congrats">Congrats!</string>
- <string name="here_is_your_account_number">Here\'s your account number. Save it!</string>
+ <string name="here_is_your_account_number">Here’s your account number. Save it!</string>
<string name="pay_to_start_using">To start using the app, you first need to add time to your
account.</string>
<string name="buy_credit">Buy credit</string>
@@ -71,7 +71,7 @@
<string name="wireguard_mtu">WireGuard MTU</string>
<string name="wireguard_mtu_footer">Set WireGuard MTU value. Valid range: %1$d - %2$d.</string>
<string name="hint_default">Default</string>
- <string name="problem_report_description">To help you more effectively, your app\'s log file
+ <string name="problem_report_description">To help you more effectively, your app’s log file
will be attached to this message. Your data will remain secure and private, as it is anonymised
before being sent over an encrypted channel.</string>
<string name="user_email_hint">Your email (optional)</string>
@@ -184,7 +184,7 @@
<string name="max_devices_resolved_title">Super!</string>
<string name="max_devices_warning_description">You have too many active devices. Please log out
of at least one by removing it from the list below. You can find the corresponding nickname
- under the device\'s Account settings.</string>
+ under the device’s Account settings.</string>
<string name="max_devices_resolved_description">You can now continue logging in on this
device.</string>
<string name="max_devices_confirm_removal_description">
diff --git a/gui/locales/messages.pot b/gui/locales/messages.pot
index 514cc8c377..fc7a28a20d 100644
--- a/gui/locales/messages.pot
+++ b/gui/locales/messages.pot
@@ -403,7 +403,7 @@ msgid "You need to disable \"Lockdown mode\" in order to access the Internet to
msgstr ""
msgctxt "connect-view"
-msgid "You're all set!"
+msgid "You’re all set!"
msgstr ""
#. The hostname line displayed below the country on the main screen
@@ -629,7 +629,7 @@ msgid "Creating account..."
msgstr ""
msgctxt "login-view"
-msgid "Don't have an account number?"
+msgid "Don’t have an account number?"
msgstr ""
msgctxt "login-view"
@@ -1175,7 +1175,7 @@ msgid "This option is unavailable while using a beta version."
msgstr ""
msgctxt "support-view"
-msgid "To help you more effectively, your app's log file will be attached to this message. Your data will remain secure and private, as it is anonymised before being sent over an encrypted channel."
+msgid "To help you more effectively, your app’s log file will be attached to this message. Your data will remain secure and private, as it is anonymised before being sent over an encrypted channel."
msgstr ""
msgctxt "support-view"
@@ -1725,7 +1725,7 @@ msgstr ""
msgid "You are running an unsupported app version. Please upgrade to %s now to ensure your security"
msgstr ""
-msgid "You have too many active devices. Please log out of at least one by removing it from the list below. You can find the corresponding nickname under the device's Account settings."
+msgid "You have too many active devices. Please log out of at least one by removing it from the list below. You can find the corresponding nickname under the device’s Account settings."
msgstr ""
msgid "Account credit expires in a day"
diff --git a/gui/src/renderer/components/ExpiredAccountAddTime.tsx b/gui/src/renderer/components/ExpiredAccountAddTime.tsx
index 75363c4d79..14a2de74c4 100644
--- a/gui/src/renderer/components/ExpiredAccountAddTime.tsx
+++ b/gui/src/renderer/components/ExpiredAccountAddTime.tsx
@@ -209,7 +209,7 @@ export function SetupFinished() {
<StyledCustomScrollbars fillContainer>
<StyledContainer>
<StyledBody>
- <StyledTitle>{messages.pgettext('connect-view', "You're all set!")}</StyledTitle>
+ <StyledTitle>{messages.pgettext('connect-view', 'You’re all set!')}</StyledTitle>
<StyledLabel>
{messages.pgettext(
'connect-view',
diff --git a/gui/src/renderer/components/Login.tsx b/gui/src/renderer/components/Login.tsx
index 9a16b68680..0b30b1c167 100644
--- a/gui/src/renderer/components/Login.tsx
+++ b/gui/src/renderer/components/Login.tsx
@@ -332,7 +332,7 @@ export default class Login extends React.Component<IProps, IState> {
return (
<>
<StyledLoginFooterPrompt>
- {messages.pgettext('login-view', "Don't have an account number?")}
+ {messages.pgettext('login-view', 'Don’t have an account number?')}
</StyledLoginFooterPrompt>
<AppButton.BlueButton
onClick={this.props.createNewAccount}
diff --git a/gui/src/renderer/components/ProblemReport.tsx b/gui/src/renderer/components/ProblemReport.tsx
index f7f5e4cd5a..c2e501e109 100644
--- a/gui/src/renderer/components/ProblemReport.tsx
+++ b/gui/src/renderer/components/ProblemReport.tsx
@@ -141,7 +141,7 @@ export default class ProblemReport extends React.Component<
<HeaderSubTitle>
{messages.pgettext(
'support-view',
- "To help you more effectively, your app's log file will be attached to this message. Your data will remain secure and private, as it is anonymised before being sent over an encrypted channel.",
+ 'To help you more effectively, your app’s log file will be attached to this message. Your data will remain secure and private, as it is anonymised before being sent over an encrypted channel.',
)}
</HeaderSubTitle>
)}