@things-factory/auth-ui 10.1.16 → 10.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/dist-client/components/app-binding-detail.d.ts +46 -0
  2. package/dist-client/components/app-binding-detail.js +384 -0
  3. package/dist-client/components/app-binding-detail.js.map +1 -0
  4. package/dist-client/components/appliance-editor.d.ts +37 -0
  5. package/dist-client/components/appliance-editor.js +489 -0
  6. package/dist-client/components/appliance-editor.js.map +1 -0
  7. package/dist-client/components/application-editor.d.ts +31 -0
  8. package/dist-client/components/application-editor.js +491 -0
  9. package/dist-client/components/application-editor.js.map +1 -0
  10. package/dist-client/components/profile-component.js +28 -11
  11. package/dist-client/components/profile-component.js.map +1 -1
  12. package/dist-client/components/secret-field.d.ts +35 -0
  13. package/dist-client/components/secret-field.js +149 -0
  14. package/dist-client/components/secret-field.js.map +1 -0
  15. package/dist-client/constants/application-type-parity.test.js +62 -0
  16. package/dist-client/constants/application-type-parity.test.js.map +1 -0
  17. package/dist-client/constants/application.d.ts +17 -7
  18. package/dist-client/constants/application.js +18 -8
  19. package/dist-client/constants/application.js.map +1 -1
  20. package/dist-client/pages/app-binding/app-binding-list-query.test.js +46 -0
  21. package/dist-client/pages/app-binding/app-binding-list-query.test.js.map +1 -0
  22. package/dist-client/pages/app-binding/app-bindings.d.ts +65 -2
  23. package/dist-client/pages/app-binding/app-bindings.js +217 -117
  24. package/dist-client/pages/app-binding/app-bindings.js.map +1 -1
  25. package/dist-client/pages/appliance/appliance-list-query.test.d.ts +1 -0
  26. package/dist-client/pages/appliance/appliance-list-query.test.js +58 -0
  27. package/dist-client/pages/appliance/appliance-list-query.test.js.map +1 -0
  28. package/dist-client/pages/appliance/home.d.ts +63 -2
  29. package/dist-client/pages/appliance/home.js +219 -123
  30. package/dist-client/pages/appliance/home.js.map +1 -1
  31. package/dist-client/pages/application/applications.d.ts +63 -2
  32. package/dist-client/pages/application/applications.js +212 -129
  33. package/dist-client/pages/application/applications.js.map +1 -1
  34. package/dist-client/pages/auth-provider/auth-provider-management.d.ts +4 -2
  35. package/dist-client/pages/auth-provider/auth-provider-management.js +35 -6
  36. package/dist-client/pages/auth-provider/auth-provider-management.js.map +1 -1
  37. package/dist-client/pages/domain-owner/domain-owner-management.d.ts +2 -0
  38. package/dist-client/pages/domain-owner/domain-owner-management.js +34 -7
  39. package/dist-client/pages/domain-owner/domain-owner-management.js.map +1 -1
  40. package/dist-client/pages/secrets-are-not-printed.test.d.ts +1 -0
  41. package/dist-client/pages/secrets-are-not-printed.test.js +88 -0
  42. package/dist-client/pages/secrets-are-not-printed.test.js.map +1 -0
  43. package/dist-client/route.js +0 -15
  44. package/dist-client/route.js.map +1 -1
  45. package/dist-client/tsconfig.tsbuildinfo +1 -1
  46. package/dist-client/utils/application-status.d.ts +32 -0
  47. package/dist-client/utils/application-status.js +45 -0
  48. package/dist-client/utils/application-status.js.map +1 -0
  49. package/dist-client/utils/application-status.test.d.ts +1 -0
  50. package/dist-client/utils/application-status.test.js +45 -0
  51. package/dist-client/utils/application-status.test.js.map +1 -0
  52. package/dist-client/utils/form-values.d.ts +71 -0
  53. package/dist-client/utils/form-values.js +102 -0
  54. package/dist-client/utils/form-values.js.map +1 -0
  55. package/dist-client/utils/form-values.test.d.ts +1 -0
  56. package/dist-client/utils/form-values.test.js +120 -0
  57. package/dist-client/utils/form-values.test.js.map +1 -0
  58. package/dist-client/utils/list-result.d.ts +62 -0
  59. package/dist-client/utils/list-result.js +92 -0
  60. package/dist-client/utils/list-result.js.map +1 -0
  61. package/dist-client/utils/list-result.test.d.ts +1 -0
  62. package/dist-client/utils/list-result.test.js +160 -0
  63. package/dist-client/utils/list-result.test.js.map +1 -0
  64. package/dist-client/utils/secret-display.d.ts +51 -0
  65. package/dist-client/utils/secret-display.js +61 -0
  66. package/dist-client/utils/secret-display.js.map +1 -0
  67. package/dist-client/utils/secret-display.test.d.ts +1 -0
  68. package/dist-client/utils/secret-display.test.js +59 -0
  69. package/dist-client/utils/secret-display.test.js.map +1 -0
  70. package/dist-client/utils/webauthn-verification.d.ts +56 -0
  71. package/dist-client/utils/webauthn-verification.js +79 -0
  72. package/dist-client/utils/webauthn-verification.js.map +1 -0
  73. package/dist-client/utils/webauthn-verification.test.d.ts +1 -0
  74. package/dist-client/utils/webauthn-verification.test.js +79 -0
  75. package/dist-client/utils/webauthn-verification.test.js.map +1 -0
  76. package/dist-server/tsconfig.tsbuildinfo +1 -1
  77. package/package.json +3 -3
  78. package/things-factory.config.js +0 -5
  79. package/translations/en.json +56 -0
  80. package/translations/ja.json +57 -0
  81. package/translations/ko.json +56 -0
  82. package/translations/ms.json +57 -0
  83. package/translations/zh.json +57 -0
  84. package/dist-client/pages/app-binding/app-binding.d.ts +0 -1
  85. package/dist-client/pages/app-binding/app-binding.js +0 -371
  86. package/dist-client/pages/app-binding/app-binding.js.map +0 -1
  87. package/dist-client/pages/appliance/appliance.d.ts +0 -1
  88. package/dist-client/pages/appliance/appliance.js +0 -392
  89. package/dist-client/pages/appliance/appliance.js.map +0 -1
  90. package/dist-client/pages/appliance/register.js +0 -166
  91. package/dist-client/pages/appliance/register.js.map +0 -1
  92. package/dist-client/pages/application/application.d.ts +0 -1
  93. package/dist-client/pages/application/application.js +0 -377
  94. package/dist-client/pages/application/application.js.map +0 -1
  95. package/dist-client/pages/application/register.js +0 -192
  96. package/dist-client/pages/application/register.js.map +0 -1
  97. /package/dist-client/{pages/appliance/register.d.ts → constants/application-type-parity.test.d.ts} +0 -0
  98. /package/dist-client/pages/{application/register.d.ts → app-binding/app-binding-list-query.test.d.ts} +0 -0
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "button.activate": "アクティブ化",
3
3
  "button.cancel": "キャンセル",
4
+ "button.close": "閉じる",
4
5
  "button.confirm": "確認",
6
+ "button.copy": "コピー",
5
7
  "button.create": "作成",
6
8
  "button.create role": "create role",
7
9
  "button.deactivate": "非アクティブ化",
@@ -9,10 +11,16 @@
9
11
  "button.delete role": "ロール削除",
10
12
  "button.delete this appliance": "この機器を削除",
11
13
  "button.delete user": "ユーザー削除",
14
+ "button.detail": "詳細",
12
15
  "button.generate new access token": "新しいアクセス トークンを生成",
16
+ "button.generate new secret": "シークレットを新規発行",
13
17
  "button.go to home": "ホームへ移動",
18
+ "button.hide": "隠す",
14
19
  "button.logout": "ログアウト",
15
20
  "button.name it yourself": "name it yourself",
21
+ "button.register": "登録",
22
+ "button.renew access token": "アクセストークンを更新",
23
+ "button.reveal": "表示",
16
24
  "button.save": "保存",
17
25
  "button.security-key registration": "セキュリティキー登録",
18
26
  "button.show-all": "すべて表示",
@@ -20,6 +28,7 @@
20
28
  "button.submit": "送信",
21
29
  "button.terminate contract": "契約解除",
22
30
  "button.transfer owner": "管理者付与",
31
+ "button.update": "更新",
23
32
  "error.cannot_modify_system_subdomain": "'system'サブドメインは変更できません。",
24
33
  "error.domain not allowed": "このドメインは許可されていません.",
25
34
  "error.new-password-and-confirm-password-do-not-match": "新しいパスワードと確認パスワードが一致しません.",
@@ -31,15 +40,26 @@
31
40
  "error.user-locked": "アカウントがロックされました. メールで再アクティブ化してください.",
32
41
  "error.value is empty": "{value}の値が存在しません.",
33
42
  "error.x already exists in y": "{x}が既に{y}に存在します.",
43
+ "field.access token url": "access token url",
34
44
  "field.accessed-at": "ログイン日時",
45
+ "field.app key": "app key",
46
+ "field.application icon": "アイコン URL",
47
+ "field.application url": "URL",
35
48
  "field.attributes": "属性",
49
+ "field.auth url": "auth url",
50
+ "field.available scopes": "利用可能なスコープ",
51
+ "field.brand": "メーカー",
36
52
  "field.client-id": "クライアントID",
37
53
  "field.client-secret": "クライアントシークレット",
38
54
  "field.confirm password": "パスワード確認",
55
+ "field.contact email": "連絡先メール",
56
+ "field.description": "説明",
39
57
  "field.email": "メール",
40
58
  "field.forgot-password": "パスワードを忘れましたか?",
41
59
  "field.hidden": "隠し",
42
60
  "field.ip_address": "IPアドレス",
61
+ "field.model": "モデル",
62
+ "field.name": "名前",
43
63
  "field.netmask": "ネットマスク",
44
64
  "field.options": "オプション",
45
65
  "field.owner": "管理者",
@@ -47,8 +67,10 @@
47
67
  "field.parent-domain": "親ドメイン",
48
68
  "field.password": "パスワード",
49
69
  "field.private-key": "プライベートキー",
70
+ "field.redirect url": "リダイレクト URL",
50
71
  "field.required privilege": "必要な権限",
51
72
  "field.required role": "必要な役割",
73
+ "field.scope": "スコープ",
52
74
  "field.seat": "seat",
53
75
  "field.serial-no": "シリアル番号",
54
76
  "field.sign in": "ログイン",
@@ -60,11 +82,15 @@
60
82
  "field.target-domain": "ターゲットドメイン",
61
83
  "field.tenant-id": "テナントID",
62
84
  "field.token": "認証トークン",
85
+ "field.type": "種類",
86
+ "field.updated at": "更新日時",
63
87
  "field.usage": "使用箇所",
64
88
  "field.user-id or email": "ユーザーIDまたはメール",
65
89
  "field.user-type": "ユーザー タイプ",
66
90
  "field.username": "ユーザーID",
91
+ "field.webhook": "webhook",
67
92
  "label.access token": "アクセストークン",
93
+ "label.activated": "使用中",
68
94
  "label.activated-user": "正常",
69
95
  "label.admin-user": "管理者",
70
96
  "label.application": "応用プログラム",
@@ -82,6 +108,7 @@
82
108
  "label.description": "説明",
83
109
  "label.domain": "ドメイン",
84
110
  "label.domain-owner": "ドメインオーナー",
111
+ "label.draft": "下書き",
85
112
  "label.email": "メール",
86
113
  "label.inactive-user": "非アクティブ",
87
114
  "label.invite customer": "顧客社パートナー招待",
@@ -95,6 +122,7 @@
95
122
  "label.protected-request-ip": "安全なリクエスト IP",
96
123
  "label.protectedlist": "保護された IP リスト",
97
124
  "label.redirect_uri": "リダイレクトuri",
125
+ "label.refresh token": "リフレッシュトークン",
98
126
  "label.resend": "再送信",
99
127
  "label.role": "ロール",
100
128
  "label.search_domain": "ドメイン検索",
@@ -113,9 +141,14 @@
113
141
  "text.a blank seat opens nothing until you give it privileges": "A blank seat opens nothing until you give it privileges.",
114
142
  "text.a role of this name exists and will be added to": "A role of this name already exists. It will be used as it stands and these privileges added to it.",
115
143
  "text.already in this domain": "already here",
144
+ "text.an application signs in on its own behalf": "アプリケーションは自身のキーと権限でログインします",
116
145
  "text.appliance": "端末装置",
117
146
  "text.appliance credential": "端末装置の資格情報",
147
+ "text.appliances": "端末装置",
148
+ "text.application": "アプリケーション",
118
149
  "text.application management": "アプリケーション管理",
150
+ "text.applications": "アプリケーション",
151
+ "text.are you sure you want to delete x": "{x} を削除します。元に戻せません。",
119
152
  "text.are_you_sure_to_delete_x": "{x}を削除しますか?",
120
153
  "text.are_you_sure_to_terminate_contract": "パートナーシップを解約しますか?",
121
154
  "text.are_you_sure_to_transfer_owner": "管理者を変更しますか?",
@@ -124,12 +157,21 @@
124
157
  "text.attribute management": "エンティティ属性管理",
125
158
  "text.auth profile": "ユーザー プロファイル",
126
159
  "text.auth-provider management": "認証プロバイダー管理",
160
+ "text.binding": "連携",
161
+ "text.binding credential": "連携の認証情報",
162
+ "text.bound application": "連携済みアプリケーション",
163
+ "text.bound applications": "連携アプリケーション",
127
164
  "text.cannot_delete": "削除できません.",
128
165
  "text.change password": "パスワード変更",
129
166
  "text.click login history": "最近のログイン履歴を確認したい場合は、こちらをクリックしてください。",
130
167
  "text.completed": "完了しました.",
131
168
  "text.confirm password": "パスワード確認",
169
+ "text.copied": "コピーしました",
170
+ "text.copying needs a secure connection": "コピーは安全な接続でのみ可能です — 値を選択して手動でコピーしてください",
171
+ "text.could not be saved": "保存できませんでした — 理由は上の通知をご覧ください",
172
+ "text.could not register": "登録できませんでした — 理由は上の通知をご覧ください",
132
173
  "text.create role": "ロール作成",
174
+ "text.credentials": "認証情報",
133
175
  "text.current password": "現在パスワード",
134
176
  "text.delete account warning message": "このタスクはキャンセルできません. これにより, このユーザーに関する全ての情報が永久に削除されます.\n\n続行するには, このアカウントに関するメールとパスワードを入力してください.",
135
177
  "text.deleted_successfully": "削除に成功しました.",
@@ -138,10 +180,14 @@
138
180
  "text.domain management": "ドメイン管理",
139
181
  "text.domain_name_change_warning": "ドメイン名を変更しますか?(サブドメインは変更されず維持されます。)",
140
182
  "text.email is not matched": "メールが一致しません.",
183
+ "text.endpoints": "エンドポイント",
141
184
  "text.env-var-list-page": "環境変数リスト",
185
+ "text.expired": "期限切れ",
186
+ "text.expires at x": "{x} 失効",
142
187
  "text.inherited from x": "{x} から継承しています",
143
188
  "text.new password": "新しいパスワード",
144
189
  "text.no domain available": "使用できるドメインがありません.",
190
+ "text.not issued": "未発行",
145
191
  "text.opens nothing, receives approvals": "opens nothing — this seat receives approvals",
146
192
  "text.owner_transfer_completed": "owner変更を完了しました.",
147
193
  "text.password rule": "少なくとも15文字以上, あるいは数字と小文字を含めて8文字以上でなければなりません.",
@@ -150,6 +196,8 @@
150
196
  "text.please enter the email of the user you want to transfer owner": "管理者に変更するユーザーのメールを入力してください.",
151
197
  "text.please_fill_all_required_fields": "すべての必須フィールドに入力してください",
152
198
  "text.privilege no longer declared": "この権限を要求するコードはもうありません",
199
+ "text.register new appliance": "端末装置を登録",
200
+ "text.register new application": "アプリケーションの登録",
153
201
  "text.registered roles": "登録されたロールリスト",
154
202
  "text.remaining time": "{days}日 {hours}時間 {mins}分 {secs}秒 残っています",
155
203
  "text.role_management": "ロール管理",
@@ -162,12 +210,21 @@
162
210
  "text.struck through are not installed here": "Struck through are privileges this installation does not have.",
163
211
  "text.subdomain_change_critical_warning": "警告: サブドメインを変更すると、フルアクセスURL(/{type}/{subdomain}/...)が変更され、既存のブックマークや外部リンク、アクティブなセッションが無効化される可能性があります。慎重に確認して進めてください。",
164
212
  "text.synchronize": "同期",
213
+ "text.the appliance could not be loaded": "端末装置を読み込めませんでした",
214
+ "text.the application could not be loaded": "アプリケーションを読み込めませんでした",
215
+ "text.the binding could not be loaded": "連携を読み込めませんでした",
216
+ "text.the current access token stops working immediately": "現在のアクセストークンは直ちに無効になります。利用中の箇所に新しいトークンを渡す必要があります。",
217
+ "text.the current secret stops working immediately": "現在のシークレットは直ちに無効になります。利用中の箇所に新しいシークレットを渡す必要があります。",
218
+ "text.the list could not be loaded": "リストを読み込めませんでした",
165
219
  "text.this domain is top level and inherits from nowhere": "最上位ドメイン — 継承元がありません",
220
+ "text.this field is required": "必須項目です",
166
221
  "text.this plant may call the seat what it likes": "Call the seat whatever this plant calls it.",
167
222
  "text.token expiry time": "トークン有効期限",
168
223
  "text.updated_successfully": "正常にアップデートしました.",
169
224
  "text.user invitation prompt": "招待したいユーザーのユーザー名またはメールアドレスを入力してください。",
170
225
  "text.user management": "ユーザー管理",
226
+ "text.where an integration asks for an authorization code": "連携側が認可コードを要求するアドレス",
227
+ "text.where that code is exchanged for an access token": "そのコードをアクセストークンに交換するアドレス",
171
228
  "text.x modules y privileges": "{x} modules · {y} privileges",
172
229
  "text.x not here": "{x} not installed here",
173
230
  "text.x_cannot_delete": "{x}は削除できません.",
@@ -4,6 +4,7 @@
4
4
  "button.cancel": "취소",
5
5
  "button.close": "닫기",
6
6
  "button.confirm": "확인",
7
+ "button.copy": "복사",
7
8
  "button.create": "생성",
8
9
  "button.create role": "역할 만들기",
9
10
  "button.deactivate": "비활성화",
@@ -11,14 +12,20 @@
11
12
  "button.delete role": "역할 삭제",
12
13
  "button.delete this appliance": "단말장치 삭제",
13
14
  "button.delete user": "사용자 삭제",
15
+ "button.detail": "상세",
14
16
  "button.drop": "떼기",
15
17
  "button.edit privileges": "권한 편집",
16
18
  "button.generate new access token": "새토큰 생성",
19
+ "button.generate new secret": "secret 새로 발급",
17
20
  "button.go to home": "홈으로 이동",
21
+ "button.hide": "가리기",
18
22
  "button.logout": "로그아웃",
19
23
  "button.name it yourself": "직접 이름 짓기",
24
+ "button.register": "등록",
20
25
  "button.remove from domain": "도메인에서 제외",
21
26
  "button.remove owner": "소유자 해제",
27
+ "button.renew access token": "access token 갱신",
28
+ "button.reveal": "보기",
22
29
  "button.save": "저장",
23
30
  "button.security-key registration": "보안인증키 등록",
24
31
  "button.show-all": "전체 보기",
@@ -27,6 +34,7 @@
27
34
  "button.terminate contract": "계약 해지",
28
35
  "button.transfer owner": "관리자 부여",
29
36
  "button.unlock": "잠금 해제",
37
+ "button.update": "수정",
30
38
  "error.cannot_modify_system_subdomain": "'system' 서브도메인은 수정할 수 없습니다.",
31
39
  "error.domain not allowed": "'{subdomain}' 영역은 이 사용자에게 허가되지 않았습니다.",
32
40
  "error.new-password-and-confirm-password-do-not-match": "새 비밀번호와 확인 비밀번호가 일치하지 않습니다.",
@@ -38,11 +46,20 @@
38
46
  "error.user-locked": "계정이 잠겼습니다. 이메일을 통해 재활성화하세요.",
39
47
  "error.value is empty": "{value}의 값이 존재하지 않습니다.",
40
48
  "error.x already exists in y": "{x}이/가 이미 {y}에 존재합니다.",
49
+ "field.access token url": "access token url",
41
50
  "field.accessed-at": "로그인 일시",
51
+ "field.app key": "app key",
52
+ "field.application icon": "아이콘 주소",
53
+ "field.application url": "주소",
42
54
  "field.attributes": "속성",
55
+ "field.auth url": "auth url",
56
+ "field.available scopes": "허용 scope",
57
+ "field.brand": "제조사",
43
58
  "field.client-id": "client id",
44
59
  "field.client-secret": "client secret",
45
60
  "field.confirm password": "비밀번호 확인",
61
+ "field.contact email": "연락 이메일",
62
+ "field.description": "설명",
46
63
  "field.email": "이메일",
47
64
  "field.forgot-password": "암호가 기억나지 않나요?",
48
65
  "field.granted at": "부여 시각",
@@ -50,7 +67,9 @@
50
67
  "field.granted privileges": "할 수 있는 일",
51
68
  "field.hidden": "감추기",
52
69
  "field.ip_address": "IP 주소",
70
+ "field.model": "모델",
53
71
  "field.module": "모듈",
72
+ "field.name": "이름",
54
73
  "field.netmask": "네트워크 마스크",
55
74
  "field.options": "옵션",
56
75
  "field.owner": "소유자",
@@ -60,9 +79,11 @@
60
79
  "field.private-key": "private key",
61
80
  "field.reason": "사유",
62
81
  "field.reason (optional)": "사유 (선택)",
82
+ "field.redirect url": "리다이렉트 주소",
63
83
  "field.required privilege": "필수 권한",
64
84
  "field.required role": "필수 역할",
65
85
  "field.roles": "역할",
86
+ "field.scope": "범위",
66
87
  "field.seat": "자리",
67
88
  "field.serial-no": "일련번호",
68
89
  "field.sign in": "로그인",
@@ -75,12 +96,16 @@
75
96
  "field.target-domain": "타겟 도메인",
76
97
  "field.tenant-id": "tenant id",
77
98
  "field.token": "인증 토큰",
99
+ "field.type": "종류",
100
+ "field.updated at": "수정일시",
78
101
  "field.usage": "사용처",
79
102
  "field.user-id or email": "사용자 아이디 또는 이메일",
80
103
  "field.user-type": "사용자유형",
81
104
  "field.username": "사용자 아이디",
82
105
  "field.username or email": "사용자명 또는 이메일",
106
+ "field.webhook": "webhook",
83
107
  "label.access token": "액세스 토큰",
108
+ "label.activated": "사용 중",
84
109
  "label.activated-user": "정상",
85
110
  "label.add role": "역할 추가",
86
111
  "label.add to domain": "도메인에 넣기",
@@ -103,6 +128,7 @@
103
128
  "label.description": "설명",
104
129
  "label.domain": "도메인",
105
130
  "label.domain-owner": "도메인 관리자",
131
+ "label.draft": "초안",
106
132
  "label.email": "이메일",
107
133
  "label.execute": "실행",
108
134
  "label.inactive-user": "비활성",
@@ -120,6 +146,7 @@
120
146
  "label.protectedlist": "보호 IP 리스트",
121
147
  "label.read": "읽기",
122
148
  "label.redirect_uri": "리디렉션 uri",
149
+ "label.refresh token": "리프레시 토큰",
123
150
  "label.resend": "재전송",
124
151
  "label.role": "역할",
125
152
  "label.search_domain": "도메인 검색",
@@ -142,10 +169,15 @@
142
169
  "text.account will be created with the default password": "이 이메일로 가입한 계정이 없습니다. 기본 비밀번호로 계정을 만들어 넣습니다. 비밀번호는 직접 알려 주셔야 합니다.",
143
170
  "text.add_domain_owner_description": "도메인 멤버 중 한 명에게 소유자 권한을 부여합니다.",
144
171
  "text.already in this domain": "이미 있음",
172
+ "text.an application signs in on its own behalf": "응용프로그램은 자기 키와 자기 권한으로 스스로 로그인합니다",
145
173
  "text.and x more": "외 {x}개",
146
174
  "text.appliance": "단말장치",
147
175
  "text.appliance credential": "단말장치 자격증명",
176
+ "text.appliances": "단말장치",
177
+ "text.application": "응용프로그램",
148
178
  "text.application management": "응용프로그램 관리",
179
+ "text.applications": "응용프로그램",
180
+ "text.are you sure you want to delete x": "{x} 을(를) 삭제합니다. 되돌릴 수 없습니다.",
149
181
  "text.are_you_sure_to_delete_x": "{x}를 삭제하시겠습니까?",
150
182
  "text.are_you_sure_to_remove_domain_owner": "{x}을(를) 도메인 소유자에서 해제하시겠습니까?",
151
183
  "text.are_you_sure_to_terminate_contract": "파트너쉽을 해지하시겠습니까?",
@@ -155,13 +187,22 @@
155
187
  "text.attribute management": "엔티티 속성 관리",
156
188
  "text.auth profile": "사용자 프로파일",
157
189
  "text.auth-provider management": "인증 제공자 관리",
190
+ "text.binding": "연결",
191
+ "text.binding credential": "연결 인증정보",
192
+ "text.bound application": "연결된 응용프로그램",
193
+ "text.bound applications": "연결된 응용프로그램",
158
194
  "text.cannot be undone": "되돌릴 수 없는 조치",
159
195
  "text.cannot_delete": "삭제할 수 없습니다.",
160
196
  "text.change password": "비밀번호 변경",
161
197
  "text.click login history": "최근 로그인 이력을 보고 싶다면 여기를 클릭하세요.",
162
198
  "text.completed": "완료되었습니다.",
163
199
  "text.confirm password": "비밀번호 확인",
200
+ "text.copied": "복사했습니다",
201
+ "text.copying needs a secure connection": "복사는 보안 연결에서만 됩니다 — 값을 직접 선택해 복사하십시오",
202
+ "text.could not be saved": "저장하지 못했습니다 — 이유는 위 알림을 보십시오",
203
+ "text.could not register": "등록하지 못했습니다 — 이유는 위 알림을 보십시오",
164
204
  "text.create role": "역할 생성하기",
205
+ "text.credentials": "인증정보",
165
206
  "text.current password": "현재 비밀번호",
166
207
  "text.delete account warning message": "이 작업은 취소할 수 없습니다. 이것은 이 사용자에 대한 모든 정보를 영구적으로 삭제합니다.\n\n계속하시려면 이 계정에 대한 이메일과 비밀번호를 입력하세요.",
167
208
  "text.deleted_successfully": "성공적으로 삭제되었습니다.",
@@ -173,7 +214,10 @@
173
214
  "text.domain owners": "도메인 소유자",
174
215
  "text.domain_name_change_warning": "도메인 이름을 변경하시겠습니까? (서브도메인은 변경되지 않고 기존대로 유지됩니다.)",
175
216
  "text.email is not matched": "이메일이 일치하지 않습니다.",
217
+ "text.endpoints": "endpoint",
176
218
  "text.env-var-list-page": "환경 변수 리스트",
219
+ "text.expired": "만료됨",
220
+ "text.expires at x": "{x} 만료",
177
221
  "text.failed": "실패",
178
222
  "text.failed to fetch": "목록을 읽지 못했습니다",
179
223
  "text.filter by module name": "모듈 이름으로 걸러 보기",
@@ -194,6 +238,7 @@
194
238
  "text.no role yet": "아직 정의된 역할이 없습니다",
195
239
  "text.none on": "없음",
196
240
  "text.not declared for this module": "이 모듈에는 그 권한이 선언되어 있지 않습니다.",
241
+ "text.not issued": "발급되지 않음",
197
242
  "text.nothing is on for this role yet": "이 역할은 아직 아무것도 열지 않습니다. 아래에서 할 수 있는 일을 더해 주십시오.",
198
243
  "text.nothing matches x": "\"{x}\"이 들어가는 모듈 이름이 없습니다.",
199
244
  "text.opens nothing, receives approvals": "여는 것은 없고 결재만 받는 자리입니다",
@@ -209,6 +254,8 @@
209
254
  "text.please try again": "잠시 후 다시 시도하십시오.",
210
255
  "text.please_fill_all_required_fields": "모든 필수 항목을 작성해 주세요",
211
256
  "text.privilege no longer declared": "이 권한을 요구하는 코드가 더 이상 없습니다",
257
+ "text.register new appliance": "단말장치 등록",
258
+ "text.register new application": "응용프로그램 등록",
212
259
  "text.registered roles": "등록된 역할 리스트",
213
260
  "text.remaining time": "{days}일 {hours}시간 {mins}분 {secs}초 남았습니다",
214
261
  "text.remove the role from x people first": "이 역할을 지우려면 먼저 가지고 있는 {x}명에게서 떼어 주십시오.",
@@ -224,8 +271,15 @@
224
271
  "text.struck through are not installed here": "줄이 그어진 것은 이 설치에 없는 권한입니다.",
225
272
  "text.subdomain_change_critical_warning": "경고: 서브도메인을 변경하면 전체 접속 URL(/{type}/{subdomain}/...)이 변경되어 기존에 배포된 링크, 북마크 및 활성 사용자 세션이 무효화될 수 있습니다. 신중하게 확인 후 진행해 주세요.",
226
273
  "text.synchronize": "동기화",
274
+ "text.the appliance could not be loaded": "단말장치를 읽지 못했습니다",
275
+ "text.the application could not be loaded": "응용프로그램을 읽지 못했습니다",
276
+ "text.the binding could not be loaded": "연결을 읽지 못했습니다",
277
+ "text.the current access token stops working immediately": "지금 쓰는 access token 이 즉시 동작을 멈춥니다. 그것을 쓰던 곳에 새 token 을 주어야 합니다.",
278
+ "text.the current secret stops working immediately": "지금 쓰는 secret 이 즉시 동작을 멈춥니다. 그것을 쓰던 곳에 새 secret 을 주어야 합니다.",
279
+ "text.the list could not be loaded": "목록을 불러오지 못했습니다",
227
280
  "text.they lose access to this domain but keep the account": "이 도메인에서 더 이상 일할 수 없게 됩니다. 계정은 남아 있어서 나중에 다시 부를 수 있습니다.",
228
281
  "text.this domain is top level and inherits from nowhere": "최상위 도메인 — 물려받는 곳이 없습니다",
282
+ "text.this field is required": "필수 항목입니다",
229
283
  "text.this plant may call the seat what it likes": "이 공장에서 부르는 이름으로 바꿔도 됩니다.",
230
284
  "text.token expiry time": "토큰 만료 시점",
231
285
  "text.unlocks in x minutes": "{x}분 뒤 잠금 해제",
@@ -233,6 +287,8 @@
233
287
  "text.user invitation prompt": "초대하고자 하는 사용자아이디나 이메일을 입력하세요.",
234
288
  "text.user management": "사용자 관리",
235
289
  "text.view only": "상속 역할 — 보기만",
290
+ "text.where an integration asks for an authorization code": "연동하는 쪽이 authorization code 를 요청하는 주소",
291
+ "text.where that code is exchanged for an access token": "그 code 를 access token 으로 바꾸는 주소",
236
292
  "text.without a role they see nothing": "역할을 정하지 않으면 들어와도 볼 화면이 없습니다.",
237
293
  "text.x is required": "{x}을(를) 입력해 주십시오.",
238
294
  "text.x modules y privileges": "모듈 {x} · 권한 {y}",
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "button.activate": "aktifkan",
3
3
  "button.cancel": "batalkan",
4
+ "button.close": "tutup",
4
5
  "button.confirm": "sahkan",
6
+ "button.copy": "salin",
5
7
  "button.create": "cipta",
6
8
  "button.create role": "create role",
7
9
  "button.deactivate": "deaktifkan",
@@ -9,10 +11,16 @@
9
11
  "button.delete role": "padam peranan",
10
12
  "button.delete this appliance": "padamkan peralatan ini",
11
13
  "button.delete user": "padam pengguna",
14
+ "button.detail": "perincian",
12
15
  "button.generate new access token": "Cipta akses token baru",
16
+ "button.generate new secret": "jana rahsia baharu",
13
17
  "button.go to home": "ke halaman utama",
18
+ "button.hide": "sembunyi",
14
19
  "button.logout": "logout",
15
20
  "button.name it yourself": "name it yourself",
21
+ "button.register": "daftar",
22
+ "button.renew access token": "perbaharui token akses",
23
+ "button.reveal": "tunjuk",
16
24
  "button.save": "simpan",
17
25
  "button.security-key registration": "pendaftaran kunci keselamatan",
18
26
  "button.show-all": "Tunjukkan semua",
@@ -20,6 +28,7 @@
20
28
  "button.submit": "hantar",
21
29
  "button.terminate contract": "tamatkan",
22
30
  "button.transfer owner": "pindah pemilik",
31
+ "button.update": "kemas kini",
23
32
  "error.cannot_modify_system_subdomain": "subdomain 'system' tidak boleh diubah.",
24
33
  "error.domain not allowed": "domain ini tidak dibenarkan untuk anda",
25
34
  "error.new-password-and-confirm-password-do-not-match": "kata laluan baharu dan pengesahan berbeza",
@@ -31,15 +40,26 @@
31
40
  "error.user-locked": "pengguna dikunci",
32
41
  "error.value is empty": "{value} kosong",
33
42
  "error.x already exists in y": "{x} telah wujud dalam {y}",
43
+ "field.access token url": "access token url",
34
44
  "field.accessed-at": "diakses pada",
45
+ "field.app key": "app key",
46
+ "field.application icon": "ikon aplikasi",
47
+ "field.application url": "url aplikasi",
35
48
  "field.attributes": "ciri-ciri",
49
+ "field.auth url": "auth url",
50
+ "field.available scopes": "skop yang tersedia",
51
+ "field.brand": "jenama",
36
52
  "field.client-id": "ID klien",
37
53
  "field.client-secret": "Rahsia klien",
38
54
  "field.confirm password": "sahkan kata laluan",
55
+ "field.contact email": "emel untuk dihubungi",
56
+ "field.description": "penerangan",
39
57
  "field.email": "e-mel",
40
58
  "field.forgot-password": "terlupa kata laluan",
41
59
  "field.hidden": "tersembunyi",
42
60
  "field.ip_address": "alamat IP",
61
+ "field.model": "model",
62
+ "field.name": "nama",
43
63
  "field.netmask": "netmask",
44
64
  "field.options": "pilihan",
45
65
  "field.owner": "pemilik",
@@ -47,8 +67,10 @@
47
67
  "field.parent-domain": "domain induk",
48
68
  "field.password": "kata laluan",
49
69
  "field.private-key": "Kunci peribadi",
70
+ "field.redirect url": "url ubah hala",
50
71
  "field.required privilege": "keperluan keistimewaan",
51
72
  "field.required role": "peranan diperlukan",
73
+ "field.scope": "skop",
52
74
  "field.seat": "seat",
53
75
  "field.serial-no": "nombor siri",
54
76
  "field.sign in": "log masuk",
@@ -60,11 +82,15 @@
60
82
  "field.target-domain": "domain sasaran",
61
83
  "field.tenant-id": "ID penyewa",
62
84
  "field.token": "token",
85
+ "field.type": "jenis",
86
+ "field.updated at": "dikemas kini",
63
87
  "field.usage": "Penggunaan",
64
88
  "field.user-id or email": "ID pengguna atau e-mel",
65
89
  "field.user-type": "jenis pengguna",
66
90
  "field.username": "ID pengguna",
91
+ "field.webhook": "webhook",
67
92
  "label.access token": "token akses",
93
+ "label.activated": "diaktifkan",
68
94
  "label.activated-user": "diaktifkan",
69
95
  "label.admin-user": "admin",
70
96
  "label.application": "aplikasi",
@@ -82,6 +108,7 @@
82
108
  "label.description": "penerangan",
83
109
  "label.domain": "domain",
84
110
  "label.domain-owner": "pemilik domain",
111
+ "label.draft": "draf",
85
112
  "label.email": "emel",
86
113
  "label.inactive-user": "tidak aktif",
87
114
  "label.invite customer": "jemput pelanggan",
@@ -95,6 +122,7 @@
95
122
  "label.protected-request-ip": "IP permintaan yang selamat",
96
123
  "label.protectedlist": "senarai IP yang dilindungi",
97
124
  "label.redirect_uri": "redirect uri",
125
+ "label.refresh token": "token segar semula",
98
126
  "label.resend": "hantar semula",
99
127
  "label.role": "peranan",
100
128
  "label.search_domain": "cari domain",
@@ -113,9 +141,14 @@
113
141
  "text.a blank seat opens nothing until you give it privileges": "A blank seat opens nothing until you give it privileges.",
114
142
  "text.a role of this name exists and will be added to": "A role of this name already exists. It will be used as it stands and these privileges added to it.",
115
143
  "text.already in this domain": "already here",
144
+ "text.an application signs in on its own behalf": "aplikasi log masuk bagi pihaknya sendiri, dengan kunci dan keizinannya sendiri",
116
145
  "text.appliance": "perkakas terminal",
117
146
  "text.appliance credential": "kelayakan peralatan terminal",
147
+ "text.appliances": "peranti",
148
+ "text.application": "aplikasi",
118
149
  "text.application management": "pengurusan aplikasi",
150
+ "text.applications": "aplikasi",
151
+ "text.are you sure you want to delete x": "padam {x}? tindakan ini tidak boleh dibatalkan.",
119
152
  "text.are_you_sure_to_delete_x": "adakah anda pasti untuk memadam {x}?",
120
153
  "text.are_you_sure_to_terminate_contract": "adakah anda pasti untuk memadam kontrak?",
121
154
  "text.are_you_sure_to_transfer_owner": "adakah anda pasti untuk menukar pemilik?",
@@ -124,12 +157,21 @@
124
157
  "text.attribute management": "pengurusan atribut",
125
158
  "text.auth profile": "profil pengguna",
126
159
  "text.auth-provider management": "pengurusan pembekal pengesahan",
160
+ "text.binding": "ikatan",
161
+ "text.binding credential": "kelayakan ikatan",
162
+ "text.bound application": "aplikasi terikat",
163
+ "text.bound applications": "aplikasi terikat",
127
164
  "text.cannot_delete": "tidak boleh dipadam",
128
165
  "text.change password": "tukar kata laluan",
129
166
  "text.click login history": "Jika anda ingin melihat sejarah log masuk terkini anda, klik di sini.",
130
167
  "text.completed": "selesai",
131
168
  "text.confirm password": "sahkan kata laluan",
169
+ "text.copied": "disalin",
170
+ "text.copying needs a secure connection": "salinan memerlukan sambungan selamat — pilih nilai dan salin secara manual",
171
+ "text.could not be saved": "tidak dapat disimpan — lihat mesej di atas untuk sebabnya",
172
+ "text.could not register": "tidak dapat mendaftar — lihat mesej di atas",
132
173
  "text.create role": "bina peranan",
174
+ "text.credentials": "kelayakan",
133
175
  "text.current password": "kata laluan terkini",
134
176
  "text.delete account warning message": "langkah hapuskan akaun tidak boleh diundur.\n\nsila masukkan emel dan kata laluan akaun anda untuk mengesahkan penghapusan akaun.",
135
177
  "text.deleted_successfully": "berjaya dihapuskan",
@@ -140,10 +182,14 @@
140
182
  "text.domain sumber dan sasaran tidak boleh sama": "domain sumber dan sasaran tidak boleh sama",
141
183
  "text.domain_name_change_warning": "adakah anda pasti mahu menukar nama domain? (subdomain akan kekal tidak berubah.)",
142
184
  "text.email is not matched": "alamat email tidak sepadan",
185
+ "text.endpoints": "titik akhir",
143
186
  "text.env-var-list-page": "senarai pengubahsuaian persekitaran",
187
+ "text.expired": "tamat tempoh",
188
+ "text.expires at x": "tamat {x}",
144
189
  "text.inherited from x": "diwarisi daripada {x}",
145
190
  "text.new password": "kata laluan baru",
146
191
  "text.no domain available": "maaf, tiada domain untuk dipilih",
192
+ "text.not issued": "belum dikeluarkan",
147
193
  "text.opens nothing, receives approvals": "opens nothing — this seat receives approvals",
148
194
  "text.owner_transfer_completed": "pindah pemilik selesai",
149
195
  "text.password rule": "sila pastikan kemasukan kata laluan adalah 15 huruf ATAU 8 huruf termasuk nombor dengan huruf kecil.",
@@ -151,6 +197,8 @@
151
197
  "text.pick a seat to see what it opens": "Pick a seat to see what it opens.",
152
198
  "text.please enter the email of the user you want to transfer owner": "sila masukkan e-mel pengguna yang anda hendak pindahkan pemilik",
153
199
  "text.privilege no longer declared": "tiada kod yang memerlukan kebenaran ini lagi",
200
+ "text.register new appliance": "daftar peranti baharu",
201
+ "text.register new application": "daftar aplikasi baharu",
154
202
  "text.registered roles": "peranan sudah didaftar",
155
203
  "text.remaining time": "masa tinggal {days} hari {hours} jam {mins} minit {secs} saat",
156
204
  "text.role_management": "pengurusan peranan",
@@ -163,12 +211,21 @@
163
211
  "text.struck through are not installed here": "Struck through are privileges this installation does not have.",
164
212
  "text.subdomain_change_critical_warning": "amaran: menukar subdomain akan mengubah URL capaian penuh (/{type}/{subdomain}/...) dan mungkin membatalkan pautan luaran, penanda buku dan sesi pengguna aktif sedia ada. sila teruskan dengan berhati-hati.",
165
213
  "text.synchronize": "menyamakan",
214
+ "text.the appliance could not be loaded": "peranti tidak dapat dimuatkan",
215
+ "text.the application could not be loaded": "aplikasi tidak dapat dimuatkan",
216
+ "text.the binding could not be loaded": "ikatan tidak dapat dimuatkan",
217
+ "text.the current access token stops working immediately": "token akses semasa berhenti berfungsi serta-merta, dan apa-apa yang menggunakannya perlu diberi yang baharu.",
218
+ "text.the current secret stops working immediately": "rahsia semasa berhenti berfungsi serta-merta, dan apa-apa yang menggunakannya perlu diberi yang baharu.",
219
+ "text.the list could not be loaded": "senarai tidak dapat dimuatkan",
166
220
  "text.this domain is top level and inherits from nowhere": "domain teratas — tiada yang diwarisi",
221
+ "text.this field is required": "medan ini diperlukan",
167
222
  "text.this plant may call the seat what it likes": "Call the seat whatever this plant calls it.",
168
223
  "text.token expiry time": "masa tamat token",
169
224
  "text.updated_successfully": "berjaya dikemaskini",
170
225
  "text.user invitation prompt": "sila masukkan nama pengguna atau alamat e-mel pengguna yang ingin anda jemput.",
171
226
  "text.user management": "pengurusan pengguna",
227
+ "text.where an integration asks for an authorization code": "tempat integrasi meminta kod kebenaran",
228
+ "text.where that code is exchanged for an access token": "tempat kod itu ditukar dengan token akses",
172
229
  "text.x modules y privileges": "{x} modules · {y} privileges",
173
230
  "text.x not here": "{x} not installed here",
174
231
  "text.x_cannot_delete": "{x} tidak boleh dipadam",