summaryrefslogtreecommitdiffhomepage
path: root/gui/src/shared/notifications/inconsistent-version.ts
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2020-11-11 18:04:15 +0100
committerOskar Nyberg <oskar@mullvad.net>2020-11-13 19:53:59 +0100
commit90db7b7922192cc96eae37caa1f20e2fefe6bc15 (patch)
treefa371841095d5ff8f3f0a25908d436f514d2b50c /gui/src/shared/notifications/inconsistent-version.ts
parent52499b482483ba1dac7fc8d756f2bf671362b178 (diff)
downloadmullvadvpn-90db7b7922192cc96eae37caa1f20e2fefe6bc15.tar.xz
mullvadvpn-90db7b7922192cc96eae37caa1f20e2fefe6bc15.zip
Update notification messages
Diffstat (limited to 'gui/src/shared/notifications/inconsistent-version.ts')
-rw-r--r--gui/src/shared/notifications/inconsistent-version.ts12
1 files changed, 3 insertions, 9 deletions
diff --git a/gui/src/shared/notifications/inconsistent-version.ts b/gui/src/shared/notifications/inconsistent-version.ts
index 94c33bd925..e6118c883e 100644
--- a/gui/src/shared/notifications/inconsistent-version.ts
+++ b/gui/src/shared/notifications/inconsistent-version.ts
@@ -18,10 +18,7 @@ export class InconsistentVersionNotificationProvider
public getSystemNotification(): SystemNotification {
return {
- message: messages.pgettext(
- 'notifications',
- 'Inconsistent internal version information, please restart the app',
- ),
+ message: messages.pgettext('notifications', 'App is out of sync. Please quit and restart.'),
critical: true,
presentOnce: { value: true, name: this.constructor.name },
suppressInDevelopment: true,
@@ -31,11 +28,8 @@ export class InconsistentVersionNotificationProvider
public getInAppNotification(): InAppNotification {
return {
indicator: 'error',
- title: messages.pgettext('in-app-notifications', 'INCONSISTENT VERSION'),
- subtitle: messages.pgettext(
- 'in-app-notifications',
- 'Inconsistent internal version information, please restart the app',
- ),
+ title: messages.pgettext('in-app-notifications', 'APP IS OUT OF SYNC'),
+ subtitle: messages.pgettext('in-app-notifications', 'Please quit and restart the app.'),
};
}
}