s/IP/ip/; s/from/at/

This commit is contained in:
Matthew Hodgson 2021-03-08 16:44:14 +00:00
parent 7abc48a716
commit 1629b7e62a
3 changed files with 9 additions and 9 deletions

View file

@ -50,10 +50,10 @@ export const showToast = async (deviceId: string) => {
icon: "verification_warning",
props: {
description: _t(
"A new login is accessing your account: %(name)s (%(deviceID)s) from %(IP)s", {
"A new login is accessing your account: %(name)s (%(deviceID)s) at %(ip)s", {
name: device.display_name,
deviceID: deviceId,
IP: device.last_seen_ip,
ip: device.last_seen_ip,
},
),
acceptLabel: _t("Check your devices"),