mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 11:17:32 +00:00
last active
This commit is contained in:
@@ -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."
|
||||
|
@@ -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."
|
||||
|
@@ -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."
|
||||
|
@@ -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."
|
||||
|
@@ -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ś."
|
||||
|
@@ -13,6 +13,7 @@
|
||||
"description": "Выберите аккаунт, который хотите удалить",
|
||||
"noResults": "Аккаунты не найдены",
|
||||
"clear": "Удалить",
|
||||
"verifiedAt": "Последняя активность: {time}",
|
||||
"success": {
|
||||
"title": "Выход выполнен успешно",
|
||||
"description": "Вы успешно вышли из системы."
|
||||
|
@@ -13,6 +13,7 @@
|
||||
"description": "选择您想注销的账户",
|
||||
"noResults": "未找到账户",
|
||||
"clear": "清除",
|
||||
"verifiedAt": "最后活动时间:{time}",
|
||||
"success": {
|
||||
"title": "注销成功",
|
||||
"description": "您已成功注销。"
|
||||
|
@@ -70,7 +70,10 @@ export function SessionClearItem({
|
||||
</span>
|
||||
{valid ? (
|
||||
<span className="text-xs opacity-80 text-ellipsis">
|
||||
{verifiedAt && moment(timestampDate(verifiedAt)).fromNow()}
|
||||
{verifiedAt &&
|
||||
t("verfiedAt", {
|
||||
time: moment(timestampDate(verifiedAt)).fromNow(),
|
||||
})}
|
||||
</span>
|
||||
) : (
|
||||
verifiedAt && (
|
||||
|
Reference in New Issue
Block a user