summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2022-04-29 13:33:58 +0200
committerOskar Nyberg <oskar@mullvad.net>2022-04-29 13:34:06 +0200
commitdd0cd2b40fe736e137e5b370bee40c2b15a369f5 (patch)
tree2fe5d74c1063f768e5e813e3b6abf88a2042d182
parent2dd5d634cf5a82187668cda3c20c61218ab26f23 (diff)
downloadmullvadvpn-dd0cd2b40fe736e137e5b370bee40c2b15a369f5.tar.xz
mullvadvpn-dd0cd2b40fe736e137e5b370bee40c2b15a369f5.zip
Update too many devices message
-rw-r--r--gui/locales/messages.pot8
-rw-r--r--gui/src/renderer/components/TooManyDevices.tsx2
2 files changed, 5 insertions, 5 deletions
diff --git a/gui/locales/messages.pot b/gui/locales/messages.pot
index e61ed3eb0a..19d93bd497 100644
--- a/gui/locales/messages.pot
+++ b/gui/locales/messages.pot
@@ -534,6 +534,10 @@ msgctxt "device-management"
msgid "Log out anyway"
msgstr ""
+msgctxt "device-management"
+msgid "Please log out of at least one by removing it from the list below. You can find the corresponding device name under the device’s Account settings."
+msgstr ""
+
#. Page title informing user that enough devices has been removed to continue
#. login process.
msgctxt "device-management"
@@ -569,10 +573,6 @@ msgctxt "device-management"
msgid "You have removed this device. To connect again, you will need to log back in."
msgstr ""
-msgctxt "device-management"
-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 ""
-
#. The message displayed to the user in case of critical error in the GUI
#. Available placeholders:
#. %(email)s - support email
diff --git a/gui/src/renderer/components/TooManyDevices.tsx b/gui/src/renderer/components/TooManyDevices.tsx
index d1401ed33b..7cb67bf040 100644
--- a/gui/src/renderer/components/TooManyDevices.tsx
+++ b/gui/src/renderer/components/TooManyDevices.tsx
@@ -309,7 +309,7 @@ function getSubtitle(devices?: Array<IDevice>): string | undefined {
if (devices.length === 5) {
return messages.pgettext(
'device-management',
- '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.',
+ 'Please log out of at least one by removing it from the list below. You can find the corresponding device name under the device’s Account settings.',
);
} else {
return messages.pgettext(