diff --git a/packages/client/src/components/panels/UserSessionsPanel/LastSessionBlock.js b/packages/client/src/components/panels/UserSessionsPanel/LastSessionBlock.js index 62faf4e132..1b72464e1f 100644 --- a/packages/client/src/components/panels/UserSessionsPanel/LastSessionBlock.js +++ b/packages/client/src/components/panels/UserSessionsPanel/LastSessionBlock.js @@ -74,7 +74,7 @@ const LastSessionBlock = (props) => {
{t("Common:Active")} - {sessionStatus} + {t(`Common:${sessionStatus}`)}
diff --git a/packages/client/src/pages/PortalSettings/categories/security/sessions/SessionsTable/TableView/SessionsTableRow.js b/packages/client/src/pages/PortalSettings/categories/security/sessions/SessionsTable/TableView/SessionsTableRow.js index d8d559983d..6b3f642488 100644 --- a/packages/client/src/pages/PortalSettings/categories/security/sessions/SessionsTable/TableView/SessionsTableRow.js +++ b/packages/client/src/pages/PortalSettings/categories/security/sessions/SessionsTable/TableView/SessionsTableRow.js @@ -304,7 +304,7 @@ const SessionsTableRow = (props) => { - {fromDateAgo} + {t(`Common:${fromDateAgo}`)} diff --git a/public/locales/en/Common.json b/public/locales/en/Common.json index abc07df257..0bc0869d28 100644 --- a/public/locales/en/Common.json +++ b/public/locales/en/Common.json @@ -281,6 +281,7 @@ "orContinueWith": "or continue with", "OtherLabel": "Other", "OtherOperations": "Other operations", + "online": "Online", "Owner": "Owner", "PageOfTotalPage": "{{page}} of {{totalPage}}", "Pages": "Pages", diff --git a/public/locales/ru/Common.json b/public/locales/ru/Common.json index 8a0ed3cca2..09033e0b06 100644 --- a/public/locales/ru/Common.json +++ b/public/locales/ru/Common.json @@ -276,6 +276,7 @@ "orContinueWith": "или продолжить с", "OtherLabel": "Другое", "OtherOperations": "Другие операции", + "online": "Онлайн", "Owner": "Владелец", "PageOfTotalPage": "{{page}} из {{totalPage}}", "Pages": "Страницы",