diff options
| -rw-r--r-- | desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-device.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-device.ts b/desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-device.ts index f5bd085d89..5acb10f6f5 100644 --- a/desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-device.ts +++ b/desktop/packages/mullvad-vpn/src/renderer/lib/notifications/new-device.ts @@ -20,9 +20,12 @@ export class NewDeviceNotificationProvider implements InAppNotificationProvider indicator: 'success', title: messages.pgettext('in-app-notifications', 'NEW DEVICE CREATED'), subtitle: sprintf( + // TRANSLATORS: Notification text when a new device has been created. + // TRANSLATORS: Available placeholders: + // TRANSLATORS: - %(deviceName)s: Name of created device. messages.pgettext( 'in-app-notifications', - 'Welcome, this device is now called <b>%(deviceName)s</b>. For more details see the info button in Account.', + 'This device is now named <em>%(deviceName)s</em>. See more under "Manage devices" in Account.', ), { deviceName: capitalizeEveryWord(this.context.deviceName) }, ), |
