forked from baron/baron-sso
i18n 키 정리 및 캐시/산출물 정리
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -11,6 +11,7 @@
|
|||||||
*.log
|
*.log
|
||||||
*.out
|
*.out
|
||||||
*.exe
|
*.exe
|
||||||
|
.npm-cache/
|
||||||
reports
|
reports
|
||||||
reports/*
|
reports/*
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -258,6 +258,7 @@ error = "Error"
|
|||||||
loading = "Loading..."
|
loading = "Loading..."
|
||||||
no_description = "No Description."
|
no_description = "No Description."
|
||||||
saving = "Saving..."
|
saving = "Saving..."
|
||||||
|
requesting = "Requesting..."
|
||||||
unknown_error = "unknown error"
|
unknown_error = "unknown error"
|
||||||
|
|
||||||
[msg.dev]
|
[msg.dev]
|
||||||
@@ -1080,6 +1081,12 @@ scope_badge = "Scoped to /dev"
|
|||||||
clients = "Connected Application"
|
clients = "Connected Application"
|
||||||
logout = "Logout"
|
logout = "Logout"
|
||||||
|
|
||||||
|
[ui.dev.profile]
|
||||||
|
menu_aria = "Open account menu"
|
||||||
|
menu_title = "Account"
|
||||||
|
unknown_email = "unknown@example.com"
|
||||||
|
unknown_name = "Unknown User"
|
||||||
|
|
||||||
[ui.dev.clients]
|
[ui.dev.clients]
|
||||||
copy_client_id = "Copy client id"
|
copy_client_id = "Copy client id"
|
||||||
new = "Add Connected Application"
|
new = "Add Connected Application"
|
||||||
@@ -1276,6 +1283,8 @@ unknown = "Unknown"
|
|||||||
expired = "Session expired"
|
expired = "Session expired"
|
||||||
expiring = "Expiring soon: {{minutes}}m {{seconds}}s left"
|
expiring = "Expiring soon: {{minutes}}m {{seconds}}s left"
|
||||||
remaining = "Expires in: {{minutes}}m {{seconds}}s"
|
remaining = "Expires in: {{minutes}}m {{seconds}}s"
|
||||||
|
refresh = "Refresh session expiry"
|
||||||
|
refreshing = "Refreshing session expiry..."
|
||||||
|
|
||||||
[ui.userfront]
|
[ui.userfront]
|
||||||
app_title = "Baron SW Portal"
|
app_title = "Baron SW Portal"
|
||||||
|
|||||||
@@ -258,6 +258,7 @@ error = "오류가 발생했습니다."
|
|||||||
loading = "로딩 중..."
|
loading = "로딩 중..."
|
||||||
no_description = "설명이 없습니다."
|
no_description = "설명이 없습니다."
|
||||||
saving = "저장 중..."
|
saving = "저장 중..."
|
||||||
|
requesting = "요청 중..."
|
||||||
unknown_error = "unknown error"
|
unknown_error = "unknown error"
|
||||||
|
|
||||||
[msg.dev]
|
[msg.dev]
|
||||||
@@ -1080,6 +1081,12 @@ scope_badge = "Scoped to /dev"
|
|||||||
clients = "연동 앱"
|
clients = "연동 앱"
|
||||||
logout = "로그아웃"
|
logout = "로그아웃"
|
||||||
|
|
||||||
|
[ui.dev.profile]
|
||||||
|
menu_aria = "계정 메뉴 열기"
|
||||||
|
menu_title = "계정"
|
||||||
|
unknown_email = "unknown@example.com"
|
||||||
|
unknown_name = "Unknown User"
|
||||||
|
|
||||||
[ui.dev.clients]
|
[ui.dev.clients]
|
||||||
copy_client_id = "Copy client id"
|
copy_client_id = "Copy client id"
|
||||||
new = "연동 앱 추가"
|
new = "연동 앱 추가"
|
||||||
@@ -1276,6 +1283,8 @@ unknown = "확인 불가"
|
|||||||
expired = "세션 만료"
|
expired = "세션 만료"
|
||||||
expiring = "만료 임박: {{minutes}}분 {{seconds}}초 남음"
|
expiring = "만료 임박: {{minutes}}분 {{seconds}}초 남음"
|
||||||
remaining = "만료 예정: {{minutes}}분 {{seconds}}초 남음"
|
remaining = "만료 예정: {{minutes}}분 {{seconds}}초 남음"
|
||||||
|
refresh = "세션 만료 시간 갱신"
|
||||||
|
refreshing = "세션 만료 시간 갱신 중..."
|
||||||
|
|
||||||
[ui.userfront]
|
[ui.userfront]
|
||||||
app_title = "Baron SW 포탈"
|
app_title = "Baron SW 포탈"
|
||||||
|
|||||||
@@ -18,24 +18,6 @@ saman = ""
|
|||||||
[err.common]
|
[err.common]
|
||||||
unknown = ""
|
unknown = ""
|
||||||
|
|
||||||
[err.backend]
|
|
||||||
authorization_pending = ""
|
|
||||||
bad_request = ""
|
|
||||||
conflict = ""
|
|
||||||
expired_token = ""
|
|
||||||
forbidden = ""
|
|
||||||
internal_error = ""
|
|
||||||
invalid_code = ""
|
|
||||||
invalid_or_expired_code = ""
|
|
||||||
invalid_session = ""
|
|
||||||
invalid_session_reference = ""
|
|
||||||
not_found = ""
|
|
||||||
not_supported = ""
|
|
||||||
password_or_email_mismatch = ""
|
|
||||||
rate_limited = ""
|
|
||||||
service_unavailable = ""
|
|
||||||
slow_down = ""
|
|
||||||
|
|
||||||
[err.userfront]
|
[err.userfront]
|
||||||
|
|
||||||
[err.userfront.auth_proxy]
|
[err.userfront.auth_proxy]
|
||||||
@@ -220,18 +202,16 @@ count = ""
|
|||||||
[msg.common]
|
[msg.common]
|
||||||
loading = ""
|
loading = ""
|
||||||
saving = ""
|
saving = ""
|
||||||
|
requesting = ""
|
||||||
unknown_error = ""
|
unknown_error = ""
|
||||||
|
|
||||||
[msg.dev]
|
[msg.dev]
|
||||||
logout_confirm = ""
|
logout_confirm = ""
|
||||||
|
|
||||||
[msg.dev.clients]
|
[msg.dev.clients]
|
||||||
copy_client_id = ""
|
|
||||||
load_error = ""
|
load_error = ""
|
||||||
loading = ""
|
loading = ""
|
||||||
showing = ""
|
showing = ""
|
||||||
status_update_error = ""
|
|
||||||
status_updated = ""
|
|
||||||
deleted = ""
|
deleted = ""
|
||||||
delete_error = ""
|
delete_error = ""
|
||||||
delete_confirm = ""
|
delete_confirm = ""
|
||||||
@@ -430,7 +410,6 @@ token_missing = ""
|
|||||||
verification_failed = ""
|
verification_failed = ""
|
||||||
|
|
||||||
[msg.userfront.login.link]
|
[msg.userfront.login.link]
|
||||||
approved = ""
|
|
||||||
helper = ""
|
helper = ""
|
||||||
missing_login_id = ""
|
missing_login_id = ""
|
||||||
missing_phone = ""
|
missing_phone = ""
|
||||||
@@ -493,8 +472,6 @@ organization = ""
|
|||||||
security = ""
|
security = ""
|
||||||
|
|
||||||
[msg.userfront.qr]
|
[msg.userfront.qr]
|
||||||
approve_error = ""
|
|
||||||
approve_success = ""
|
|
||||||
camera_error = ""
|
camera_error = ""
|
||||||
permission_error = ""
|
permission_error = ""
|
||||||
permission_required = ""
|
permission_required = ""
|
||||||
@@ -915,6 +892,7 @@ create = ""
|
|||||||
delete = ""
|
delete = ""
|
||||||
details = ""
|
details = ""
|
||||||
edit = ""
|
edit = ""
|
||||||
|
view = ""
|
||||||
hyphen = ""
|
hyphen = ""
|
||||||
na = ""
|
na = ""
|
||||||
never = ""
|
never = ""
|
||||||
@@ -925,7 +903,6 @@ previous = ""
|
|||||||
qr = ""
|
qr = ""
|
||||||
read_only = ""
|
read_only = ""
|
||||||
refresh = ""
|
refresh = ""
|
||||||
requesting = ""
|
|
||||||
resend = ""
|
resend = ""
|
||||||
retry = ""
|
retry = ""
|
||||||
save = ""
|
save = ""
|
||||||
@@ -967,8 +944,13 @@ scope_badge = ""
|
|||||||
clients = ""
|
clients = ""
|
||||||
logout = ""
|
logout = ""
|
||||||
|
|
||||||
|
[ui.dev.profile]
|
||||||
|
menu_aria = ""
|
||||||
|
menu_title = ""
|
||||||
|
unknown_email = ""
|
||||||
|
unknown_name = ""
|
||||||
|
|
||||||
[ui.dev.clients]
|
[ui.dev.clients]
|
||||||
copy_client_id = ""
|
|
||||||
new = ""
|
new = ""
|
||||||
search_placeholder = ""
|
search_placeholder = ""
|
||||||
tenant_scoped = ""
|
tenant_scoped = ""
|
||||||
@@ -1055,10 +1037,6 @@ title_edit = ""
|
|||||||
[ui.dev.clients.general.breadcrumb]
|
[ui.dev.clients.general.breadcrumb]
|
||||||
section = ""
|
section = ""
|
||||||
|
|
||||||
[ui.dev.clients.general.footer]
|
|
||||||
client_id = ""
|
|
||||||
created_on = ""
|
|
||||||
|
|
||||||
[ui.dev.clients.general.identity]
|
[ui.dev.clients.general.identity]
|
||||||
description = ""
|
description = ""
|
||||||
description_placeholder = ""
|
description_placeholder = ""
|
||||||
@@ -1163,6 +1141,8 @@ unknown = ""
|
|||||||
expired = ""
|
expired = ""
|
||||||
expiring = ""
|
expiring = ""
|
||||||
remaining = ""
|
remaining = ""
|
||||||
|
refresh = ""
|
||||||
|
refreshing = ""
|
||||||
|
|
||||||
[ui.userfront]
|
[ui.userfront]
|
||||||
app_title = ""
|
app_title = ""
|
||||||
@@ -1239,12 +1219,9 @@ login_id = ""
|
|||||||
password = ""
|
password = ""
|
||||||
|
|
||||||
[ui.userfront.login.link]
|
[ui.userfront.login.link]
|
||||||
action_label = ""
|
|
||||||
code_only = ""
|
code_only = ""
|
||||||
page_title = ""
|
|
||||||
resend_with_time = ""
|
resend_with_time = ""
|
||||||
send = ""
|
send = ""
|
||||||
title = ""
|
|
||||||
|
|
||||||
[ui.userfront.login.qr]
|
[ui.userfront.login.qr]
|
||||||
expired = ""
|
expired = ""
|
||||||
@@ -1314,9 +1291,7 @@ organization = ""
|
|||||||
security = ""
|
security = ""
|
||||||
|
|
||||||
[ui.userfront.qr]
|
[ui.userfront.qr]
|
||||||
request_permission = ""
|
|
||||||
rescan = ""
|
rescan = ""
|
||||||
result_failure = ""
|
|
||||||
result_success = ""
|
result_success = ""
|
||||||
title = ""
|
title = ""
|
||||||
|
|
||||||
@@ -1393,8 +1368,6 @@ delete_confirm = ""
|
|||||||
delete_error = ""
|
delete_error = ""
|
||||||
delete_success = ""
|
delete_success = ""
|
||||||
empty = ""
|
empty = ""
|
||||||
import_error = ""
|
|
||||||
import_success = ""
|
|
||||||
loading = ""
|
loading = ""
|
||||||
|
|
||||||
[msg.admin.groups.members]
|
[msg.admin.groups.members]
|
||||||
@@ -1428,7 +1401,6 @@ no_description = ""
|
|||||||
|
|
||||||
[ui.admin.groups]
|
[ui.admin.groups]
|
||||||
add_unit = ""
|
add_unit = ""
|
||||||
import_csv = ""
|
|
||||||
|
|
||||||
[ui.admin.groups.create]
|
[ui.admin.groups.create]
|
||||||
description = ""
|
description = ""
|
||||||
@@ -1448,10 +1420,6 @@ parent_none = ""
|
|||||||
unit_level_label = ""
|
unit_level_label = ""
|
||||||
unit_level_placeholder = ""
|
unit_level_placeholder = ""
|
||||||
|
|
||||||
[ui.admin.groups.table]
|
|
||||||
created_at = ""
|
|
||||||
level = ""
|
|
||||||
|
|
||||||
[ui.admin.tenants.admins]
|
[ui.admin.tenants.admins]
|
||||||
add_button = ""
|
add_button = ""
|
||||||
already_admin = ""
|
already_admin = ""
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ t("ui.admin.nav.audit_logs");
|
|||||||
t("ui.admin.nav.auth_guard");
|
t("ui.admin.nav.auth_guard");
|
||||||
t("ui.admin.nav.logout");
|
t("ui.admin.nav.logout");
|
||||||
t("ui.admin.nav.relying_parties");
|
t("ui.admin.nav.relying_parties");
|
||||||
|
t("ui.dev.nav.clients");
|
||||||
|
|
||||||
// Common & Info
|
// Common & Info
|
||||||
t("err.common.unknown");
|
t("err.common.unknown");
|
||||||
|
|||||||
Reference in New Issue
Block a user