diff --git a/locales/en.toml b/locales/en.toml index 9f07f641..aa9be933 100644 --- a/locales/en.toml +++ b/locales/en.toml @@ -2055,6 +2055,7 @@ dev_console = "Dev Console" [ui.userfront.audit] [ui.userfront.audit.table] +action = "Action" app = "App" auth_method = "Auth Method" date = "Date" @@ -2278,3 +2279,11 @@ verify = "Verification" [ui.userfront.signup.success] action = "Go to sign-in" + + +[ui.userfront.audit.filter] +title = "Manage My Activity" +toggle_label = "Show active sessions only" + +[msg.userfront.audit.filter] +description = "Toggle to view only active sessions." \ No newline at end of file diff --git a/locales/ko.toml b/locales/ko.toml index 9a3aa1c8..0c4c27a1 100644 --- a/locales/ko.toml +++ b/locales/ko.toml @@ -2449,6 +2449,7 @@ dev_console = "Dev Console" [ui.userfront.audit] [ui.userfront.audit.table] +action = "관리" app = "애플리케이션" auth_method = "인증수단" date = "접속일자" @@ -2671,3 +2672,11 @@ verify = "본인인증" [ui.userfront.signup.success] action = "로그인하기" + + +[ui.userfront.audit.filter] +title = "내 활동 관리" +toggle_label = "활성 세션만 보기" + +[msg.userfront.audit.filter] +description = "활성화된 세션만 보려면 토글을 켜주세요." \ No newline at end of file diff --git a/locales/template.toml b/locales/template.toml index ff8d60a1..d34c647e 100644 --- a/locales/template.toml +++ b/locales/template.toml @@ -2327,6 +2327,7 @@ dev_console = "" [ui.userfront.audit] [ui.userfront.audit.table] +action = "" app = "" auth_method = "" date = "" @@ -2549,3 +2550,11 @@ verify = "" [ui.userfront.signup.success] action = "" + + +[ui.userfront.audit.filter] +title = "" +toggle_label = "" + +[msg.userfront.audit.filter] +description = "" \ No newline at end of file diff --git a/userfront/assets/translations/en.toml b/userfront/assets/translations/en.toml index 9791416c..33df87a6 100644 --- a/userfront/assets/translations/en.toml +++ b/userfront/assets/translations/en.toml @@ -665,3 +665,7 @@ verify = "Verification" [ui.userfront.signup.success] action = "Go to sign-in" + + +[msg.userfront.audit.filter] +description = "Toggle to view only active sessions." \ No newline at end of file diff --git a/userfront/assets/translations/ko.toml b/userfront/assets/translations/ko.toml index 247f2bfd..da621486 100644 --- a/userfront/assets/translations/ko.toml +++ b/userfront/assets/translations/ko.toml @@ -867,3 +867,7 @@ verify = "본인인증" [ui.userfront.signup.success] action = "로그인하기" + + +[msg.userfront.audit.filter] +description = "활성화된 세션만 보려면 토글을 켜주세요." \ No newline at end of file diff --git a/userfront/assets/translations/template.toml b/userfront/assets/translations/template.toml index d51aa5c6..d5c036db 100644 --- a/userfront/assets/translations/template.toml +++ b/userfront/assets/translations/template.toml @@ -842,3 +842,7 @@ verify = "" [ui.userfront.signup.success] action = "" + + +[msg.userfront.audit.filter] +description = "" \ No newline at end of file diff --git a/userfront/lib/i18n_data.dart b/userfront/lib/i18n_data.dart index db6b951a..b1a416c3 100644 --- a/userfront/lib/i18n_data.dart +++ b/userfront/lib/i18n_data.dart @@ -416,6 +416,7 @@ const Map koStrings = { "msg.userfront.audit.date": "접속일자: {{value}}", "msg.userfront.audit.device": "접속환경: {{value}}", "msg.userfront.audit.end": "더 이상 항목이 없습니다.", + "msg.userfront.audit.filter.description": "활성화된 세션만 보려면 토글을 켜주세요.", "msg.userfront.audit.ip": "접속 IP: {{value}}", "msg.userfront.audit.load_more_error": "더 불러오지 못했습니다.", "msg.userfront.audit.result": "인증결과: {{value}}", @@ -1691,6 +1692,9 @@ const Map koStrings = { "ui.userfront.app_label.baron": "Baron 로그인", "ui.userfront.app_label.dev_console": "Dev Console", "ui.userfront.app_title": "Baron SW 포탈", + "ui.userfront.audit.filter.title": "내 활동 관리", + "ui.userfront.audit.filter.toggle_label": "활성 세션만 보기", + "ui.userfront.audit.table.action": "관리", "ui.userfront.audit.table.app": "애플리케이션", "ui.userfront.audit.table.auth_method": "인증수단", "ui.userfront.audit.table.date": "접속일자", @@ -2315,6 +2319,8 @@ const Map enStrings = { "msg.userfront.audit.date": "Date: {{value}}", "msg.userfront.audit.device": "Device: {{value}}", "msg.userfront.audit.end": "No more items to show.", + "msg.userfront.audit.filter.description": + "Toggle to view only active sessions.", "msg.userfront.audit.ip": "IP address: {{value}}", "msg.userfront.audit.load_more_error": "Could not load more history.", "msg.userfront.audit.result": "Result: {{value}}", @@ -3694,6 +3700,9 @@ const Map enStrings = { "ui.userfront.app_label.baron": "Baron", "ui.userfront.app_label.dev_console": "Dev Console", "ui.userfront.app_title": "Baron SW Portal", + "ui.userfront.audit.filter.title": "Manage My Activity", + "ui.userfront.audit.filter.toggle_label": "Show active sessions only", + "ui.userfront.audit.table.action": "Action", "ui.userfront.audit.table.app": "App", "ui.userfront.audit.table.auth_method": "Auth Method", "ui.userfront.audit.table.date": "Date",