last active

This commit is contained in:
Max Peintner
2025-06-05 13:04:51 +02:00
parent 4ba49611ed
commit b776146b08
8 changed files with 11 additions and 1 deletions

View File

@@ -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."

View File

@@ -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."

View File

@@ -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."

View File

@@ -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."

View File

@@ -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ś."

View File

@@ -13,6 +13,7 @@
"description": "Выберите аккаунт, который хотите удалить",
"noResults": "Аккаунты не найдены",
"clear": "Удалить",
"verifiedAt": "Последняя активность: {time}",
"success": {
"title": "Выход выполнен успешно",
"description": "Вы успешно вышли из системы."

View File

@@ -13,6 +13,7 @@
"description": "选择您想注销的账户",
"noResults": "未找到账户",
"clear": "清除",
"verifiedAt": "最后活动时间:{time}",
"success": {
"title": "注销成功",
"description": "您已成功注销。"

View File

@@ -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 && (