diff --git a/apps/login/locales/de.json b/apps/login/locales/de.json index c2d0dff36a..6fde45ba69 100644 --- a/apps/login/locales/de.json +++ b/apps/login/locales/de.json @@ -13,6 +13,7 @@ "description": "Wählen Sie den Account aus, das Sie entfernen möchten", "noResults": "Keine Konten gefunden", "clear": "Entfernen", + "verifiedAt": "Zuletzt aktiv: {time}", "success": { "title": "Logout erfolgreich", "description": "Sie haben sich erfolgreich abgemeldet." diff --git a/apps/login/locales/en.json b/apps/login/locales/en.json index c130458088..a77782c3ac 100644 --- a/apps/login/locales/en.json +++ b/apps/login/locales/en.json @@ -13,6 +13,7 @@ "description": "Click an account to end the session", "noResults": "No accounts found", "clear": "Clear", + "verifiedAt": "Last active: {time}", "success": { "title": "Logout successful", "description": "You have successfully logged out." diff --git a/apps/login/locales/es.json b/apps/login/locales/es.json index fe2b8a5b8e..d35d2b1705 100644 --- a/apps/login/locales/es.json +++ b/apps/login/locales/es.json @@ -13,6 +13,7 @@ "description": "Selecciona la cuenta que deseas eliminar", "noResults": "No se encontraron cuentas", "clear": "Eliminar", + "verifiedAt": "Última actividad: {time}", "success": { "title": "Cierre de sesión exitoso", "description": "Has cerrado sesión correctamente." diff --git a/apps/login/locales/it.json b/apps/login/locales/it.json index ce46cb0273..7fabe0f8c6 100644 --- a/apps/login/locales/it.json +++ b/apps/login/locales/it.json @@ -13,6 +13,7 @@ "description": "Seleziona l'account che desideri uscire", "noResults": "Nessun account trovato", "clear": "Rimuovi", + "verifiedAt": "Ultima attività: {time}", "success": { "title": "Uscita riuscita", "description": "Hai effettuato l'uscita con successo." diff --git a/apps/login/locales/pl.json b/apps/login/locales/pl.json index 2490f5105a..3b74264a9c 100644 --- a/apps/login/locales/pl.json +++ b/apps/login/locales/pl.json @@ -13,6 +13,7 @@ "description": "Wybierz konto, które chcesz usunąć", "noResults": "Nie znaleziono kont", "clear": "Usuń", + "verifiedAt": "Ostatnia aktywność: {time}", "success": { "title": "Wylogowanie udane", "description": "Pomyślnie się wylogowałeś." diff --git a/apps/login/locales/ru.json b/apps/login/locales/ru.json index e4bff416a5..3c669e49db 100644 --- a/apps/login/locales/ru.json +++ b/apps/login/locales/ru.json @@ -13,6 +13,7 @@ "description": "Выберите аккаунт, который хотите удалить", "noResults": "Аккаунты не найдены", "clear": "Удалить", + "verifiedAt": "Последняя активность: {time}", "success": { "title": "Выход выполнен успешно", "description": "Вы успешно вышли из системы." diff --git a/apps/login/locales/zh.json b/apps/login/locales/zh.json index 6a1d39b8ab..2052567206 100644 --- a/apps/login/locales/zh.json +++ b/apps/login/locales/zh.json @@ -13,6 +13,7 @@ "description": "选择您想注销的账户", "noResults": "未找到账户", "clear": "清除", + "verifiedAt": "最后活动时间:{time}", "success": { "title": "注销成功", "description": "您已成功注销。" diff --git a/apps/login/src/components/session-clear-item.tsx b/apps/login/src/components/session-clear-item.tsx index fdfca4939d..8bff33fee9 100644 --- a/apps/login/src/components/session-clear-item.tsx +++ b/apps/login/src/components/session-clear-item.tsx @@ -70,7 +70,10 @@ export function SessionClearItem({ {valid ? ( - {verifiedAt && moment(timestampDate(verifiedAt)).fromNow()} + {verifiedAt && + t("verfiedAt", { + time: moment(timestampDate(verifiedAt)).fromNow(), + })} ) : ( verifiedAt && (