Skip to content

Commit

Permalink
Merge branch 'fix-incorrect-strings'
Browse files Browse the repository at this point in the history
  • Loading branch information
raksooo committed Jan 31, 2024
2 parents b6e0569 + b478ad0 commit 0e9adc3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions gui/locales/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ msgid "Unable to start tunnel connection. Please send a problem report."
msgstr ""

msgctxt "notifications"
msgid "Unable to start tunnel connection. This could be caused by incompatibility with VMware, please troubleshoot."
msgid "Unable to start tunnel connection. This could be because of conflicts with VMware, please troubleshoot."
msgstr ""

msgctxt "notifications"
Expand Down Expand Up @@ -1326,7 +1326,7 @@ msgstr ""

#. Navigation button to the 'API access methods' view
msgctxt "settings-view"
msgid "API access methods"
msgid "API access"
msgstr ""

msgctxt "settings-view"
Expand Down Expand Up @@ -1561,23 +1561,23 @@ msgid "Try restarting your device."
msgstr ""

msgctxt "troubleshoot"
msgid "Try to reinstall VMware"
msgid "Try to reinstall VMware."
msgstr ""

msgctxt "troubleshoot"
msgid "Try to turn Wi-Fi Calling off in the FaceTime app settings and restart the Mac."
msgstr ""

msgctxt "troubleshoot"
msgid "Try to uninstall VMware"
msgid "Try to uninstall VMware."
msgstr ""

msgctxt "troubleshoot"
msgid "Unable to communicate with Mullvad kernel driver."
msgstr ""

msgctxt "troubleshoot"
msgid "Unable to start tunnel connection because of a failure when creating the tunnel device. This is often caused by an issue with the VMware Bridge Protocol."
msgid "Unable to start tunnel connection because of a failure when creating the tunnel device. This is often caused by conflicts with the VMware Bridge Protocol."
msgstr ""

msgctxt "troubleshoot"
Expand Down
2 changes: 1 addition & 1 deletion gui/src/renderer/components/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function ApiAccessMethodsButton() {
<Cell.Label>
{
// TRANSLATORS: Navigation button to the 'API access methods' view
messages.pgettext('settings-view', 'API access methods')
messages.pgettext('settings-view', 'API access')
}
</Cell.Label>
</Cell.CellNavigationButton>
Expand Down
8 changes: 4 additions & 4 deletions gui/src/shared/notifications/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function getMessage(errorState: ErrorState): string {
if (errorState.osError === 4319) {
return messages.pgettext(
'notifications',
'Unable to start tunnel connection. This could be caused by incompatibility with VMware, please troubleshoot.',
'Unable to start tunnel connection. This could be because of conflicts with VMware, please troubleshoot.',
);
}

Expand Down Expand Up @@ -287,11 +287,11 @@ function getActions(errorState: ErrorState): InAppNotificationAction | void {
troubleshoot: {
details: messages.pgettext(
'troubleshoot',
'Unable to start tunnel connection because of a failure when creating the tunnel device. This is often caused by an issue with the VMware Bridge Protocol.',
'Unable to start tunnel connection because of a failure when creating the tunnel device. This is often caused by conflicts with the VMware Bridge Protocol.',
),
steps: [
messages.pgettext('troubleshoot', 'Try to reinstall VMware'),
messages.pgettext('troubleshoot', 'Try to uninstall VMware'),
messages.pgettext('troubleshoot', 'Try to reinstall VMware.'),
messages.pgettext('troubleshoot', 'Try to uninstall VMware.'),
],
},
};
Expand Down

0 comments on commit 0e9adc3

Please sign in to comment.