@things-factory/auth-ui 10.1.17 → 10.1.20
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.
- package/dist-client/components/app-binding-detail.d.ts +46 -0
- package/dist-client/components/app-binding-detail.js +384 -0
- package/dist-client/components/app-binding-detail.js.map +1 -0
- package/dist-client/components/appliance-editor.d.ts +37 -0
- package/dist-client/components/appliance-editor.js +489 -0
- package/dist-client/components/appliance-editor.js.map +1 -0
- package/dist-client/components/application-editor.d.ts +31 -0
- package/dist-client/components/application-editor.js +491 -0
- package/dist-client/components/application-editor.js.map +1 -0
- package/dist-client/components/profile-component.js +28 -11
- package/dist-client/components/profile-component.js.map +1 -1
- package/dist-client/constants/application-type-parity.test.js +62 -0
- package/dist-client/constants/application-type-parity.test.js.map +1 -0
- package/dist-client/constants/application.d.ts +17 -7
- package/dist-client/constants/application.js +18 -8
- package/dist-client/constants/application.js.map +1 -1
- package/dist-client/pages/app-binding/app-bindings.d.ts +2 -0
- package/dist-client/pages/app-binding/app-bindings.js +19 -1
- package/dist-client/pages/app-binding/app-bindings.js.map +1 -1
- package/dist-client/pages/appliance/home.d.ts +2 -0
- package/dist-client/pages/appliance/home.js +21 -3
- package/dist-client/pages/appliance/home.js.map +1 -1
- package/dist-client/pages/application/applications.d.ts +2 -0
- package/dist-client/pages/application/applications.js +21 -3
- package/dist-client/pages/application/applications.js.map +1 -1
- package/dist-client/pages/secrets-are-not-printed.test.js +21 -3
- package/dist-client/pages/secrets-are-not-printed.test.js.map +1 -1
- package/dist-client/route.js +0 -15
- package/dist-client/route.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/utils/form-values.d.ts +29 -0
- package/dist-client/utils/form-values.js +45 -0
- package/dist-client/utils/form-values.js.map +1 -1
- package/dist-client/utils/form-values.test.js +59 -1
- package/dist-client/utils/form-values.test.js.map +1 -1
- package/dist-client/utils/webauthn-verification.d.ts +56 -0
- package/dist-client/utils/webauthn-verification.js +79 -0
- package/dist-client/utils/webauthn-verification.js.map +1 -0
- package/dist-client/utils/webauthn-verification.test.js +79 -0
- package/dist-client/utils/webauthn-verification.test.js.map +1 -0
- package/package.json +4 -4
- package/things-factory.config.js +0 -5
- package/translations/en.json +25 -0
- package/translations/ja.json +26 -0
- package/translations/ko.json +25 -0
- package/translations/ms.json +26 -0
- package/translations/zh.json +26 -0
- package/dist-client/pages/app-binding/app-binding.d.ts +0 -2
- package/dist-client/pages/app-binding/app-binding.js +0 -371
- package/dist-client/pages/app-binding/app-binding.js.map +0 -1
- package/dist-client/pages/appliance/appliance.d.ts +0 -2
- package/dist-client/pages/appliance/appliance.js +0 -390
- package/dist-client/pages/appliance/appliance.js.map +0 -1
- package/dist-client/pages/appliance/register.js +0 -166
- package/dist-client/pages/appliance/register.js.map +0 -1
- package/dist-client/pages/application/application.d.ts +0 -2
- package/dist-client/pages/application/application.js +0 -384
- package/dist-client/pages/application/application.js.map +0 -1
- package/dist-client/pages/application/register.js +0 -246
- package/dist-client/pages/application/register.js.map +0 -1
- /package/dist-client/{pages/appliance/register.d.ts → constants/application-type-parity.test.d.ts} +0 -0
- /package/dist-client/{pages/application/register.d.ts → utils/webauthn-verification.test.d.ts} +0 -0
package/translations/ja.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"button.activate": "アクティブ化",
|
|
3
3
|
"button.cancel": "キャンセル",
|
|
4
|
+
"button.close": "閉じる",
|
|
4
5
|
"button.confirm": "確認",
|
|
5
6
|
"button.copy": "コピー",
|
|
6
7
|
"button.create": "作成",
|
|
@@ -12,11 +13,13 @@
|
|
|
12
13
|
"button.delete user": "ユーザー削除",
|
|
13
14
|
"button.detail": "詳細",
|
|
14
15
|
"button.generate new access token": "新しいアクセス トークンを生成",
|
|
16
|
+
"button.generate new secret": "シークレットを新規発行",
|
|
15
17
|
"button.go to home": "ホームへ移動",
|
|
16
18
|
"button.hide": "隠す",
|
|
17
19
|
"button.logout": "ログアウト",
|
|
18
20
|
"button.name it yourself": "name it yourself",
|
|
19
21
|
"button.register": "登録",
|
|
22
|
+
"button.renew access token": "アクセストークンを更新",
|
|
20
23
|
"button.reveal": "表示",
|
|
21
24
|
"button.save": "保存",
|
|
22
25
|
"button.security-key registration": "セキュリティキー登録",
|
|
@@ -25,6 +28,7 @@
|
|
|
25
28
|
"button.submit": "送信",
|
|
26
29
|
"button.terminate contract": "契約解除",
|
|
27
30
|
"button.transfer owner": "管理者付与",
|
|
31
|
+
"button.update": "更新",
|
|
28
32
|
"error.cannot_modify_system_subdomain": "'system'サブドメインは変更できません。",
|
|
29
33
|
"error.domain not allowed": "このドメインは許可されていません.",
|
|
30
34
|
"error.new-password-and-confirm-password-do-not-match": "新しいパスワードと確認パスワードが一致しません.",
|
|
@@ -36,10 +40,14 @@
|
|
|
36
40
|
"error.user-locked": "アカウントがロックされました. メールで再アクティブ化してください.",
|
|
37
41
|
"error.value is empty": "{value}の値が存在しません.",
|
|
38
42
|
"error.x already exists in y": "{x}が既に{y}に存在します.",
|
|
43
|
+
"field.access token url": "access token url",
|
|
39
44
|
"field.accessed-at": "ログイン日時",
|
|
45
|
+
"field.app key": "app key",
|
|
40
46
|
"field.application icon": "アイコン URL",
|
|
41
47
|
"field.application url": "URL",
|
|
42
48
|
"field.attributes": "属性",
|
|
49
|
+
"field.auth url": "auth url",
|
|
50
|
+
"field.available scopes": "利用可能なスコープ",
|
|
43
51
|
"field.brand": "メーカー",
|
|
44
52
|
"field.client-id": "クライアントID",
|
|
45
53
|
"field.client-secret": "クライアントシークレット",
|
|
@@ -80,6 +88,7 @@
|
|
|
80
88
|
"field.user-id or email": "ユーザーIDまたはメール",
|
|
81
89
|
"field.user-type": "ユーザー タイプ",
|
|
82
90
|
"field.username": "ユーザーID",
|
|
91
|
+
"field.webhook": "webhook",
|
|
83
92
|
"label.access token": "アクセストークン",
|
|
84
93
|
"label.activated": "使用中",
|
|
85
94
|
"label.activated-user": "正常",
|
|
@@ -136,8 +145,10 @@
|
|
|
136
145
|
"text.appliance": "端末装置",
|
|
137
146
|
"text.appliance credential": "端末装置の資格情報",
|
|
138
147
|
"text.appliances": "端末装置",
|
|
148
|
+
"text.application": "アプリケーション",
|
|
139
149
|
"text.application management": "アプリケーション管理",
|
|
140
150
|
"text.applications": "アプリケーション",
|
|
151
|
+
"text.are you sure you want to delete x": "{x} を削除します。元に戻せません。",
|
|
141
152
|
"text.are_you_sure_to_delete_x": "{x}を削除しますか?",
|
|
142
153
|
"text.are_you_sure_to_terminate_contract": "パートナーシップを解約しますか?",
|
|
143
154
|
"text.are_you_sure_to_transfer_owner": "管理者を変更しますか?",
|
|
@@ -146,6 +157,9 @@
|
|
|
146
157
|
"text.attribute management": "エンティティ属性管理",
|
|
147
158
|
"text.auth profile": "ユーザー プロファイル",
|
|
148
159
|
"text.auth-provider management": "認証プロバイダー管理",
|
|
160
|
+
"text.binding": "連携",
|
|
161
|
+
"text.binding credential": "連携の認証情報",
|
|
162
|
+
"text.bound application": "連携済みアプリケーション",
|
|
149
163
|
"text.bound applications": "連携アプリケーション",
|
|
150
164
|
"text.cannot_delete": "削除できません.",
|
|
151
165
|
"text.change password": "パスワード変更",
|
|
@@ -154,8 +168,10 @@
|
|
|
154
168
|
"text.confirm password": "パスワード確認",
|
|
155
169
|
"text.copied": "コピーしました",
|
|
156
170
|
"text.copying needs a secure connection": "コピーは安全な接続でのみ可能です — 値を選択して手動でコピーしてください",
|
|
171
|
+
"text.could not be saved": "保存できませんでした — 理由は上の通知をご覧ください",
|
|
157
172
|
"text.could not register": "登録できませんでした — 理由は上の通知をご覧ください",
|
|
158
173
|
"text.create role": "ロール作成",
|
|
174
|
+
"text.credentials": "認証情報",
|
|
159
175
|
"text.current password": "現在パスワード",
|
|
160
176
|
"text.delete account warning message": "このタスクはキャンセルできません. これにより, このユーザーに関する全ての情報が永久に削除されます.\n\n続行するには, このアカウントに関するメールとパスワードを入力してください.",
|
|
161
177
|
"text.deleted_successfully": "削除に成功しました.",
|
|
@@ -164,7 +180,9 @@
|
|
|
164
180
|
"text.domain management": "ドメイン管理",
|
|
165
181
|
"text.domain_name_change_warning": "ドメイン名を変更しますか?(サブドメインは変更されず維持されます。)",
|
|
166
182
|
"text.email is not matched": "メールが一致しません.",
|
|
183
|
+
"text.endpoints": "エンドポイント",
|
|
167
184
|
"text.env-var-list-page": "環境変数リスト",
|
|
185
|
+
"text.expired": "期限切れ",
|
|
168
186
|
"text.expires at x": "{x} 失効",
|
|
169
187
|
"text.inherited from x": "{x} から継承しています",
|
|
170
188
|
"text.new password": "新しいパスワード",
|
|
@@ -178,6 +196,7 @@
|
|
|
178
196
|
"text.please enter the email of the user you want to transfer owner": "管理者に変更するユーザーのメールを入力してください.",
|
|
179
197
|
"text.please_fill_all_required_fields": "すべての必須フィールドに入力してください",
|
|
180
198
|
"text.privilege no longer declared": "この権限を要求するコードはもうありません",
|
|
199
|
+
"text.register new appliance": "端末装置を登録",
|
|
181
200
|
"text.register new application": "アプリケーションの登録",
|
|
182
201
|
"text.registered roles": "登録されたロールリスト",
|
|
183
202
|
"text.remaining time": "{days}日 {hours}時間 {mins}分 {secs}秒 残っています",
|
|
@@ -191,6 +210,11 @@
|
|
|
191
210
|
"text.struck through are not installed here": "Struck through are privileges this installation does not have.",
|
|
192
211
|
"text.subdomain_change_critical_warning": "警告: サブドメインを変更すると、フルアクセスURL(/{type}/{subdomain}/...)が変更され、既存のブックマークや外部リンク、アクティブなセッションが無効化される可能性があります。慎重に確認して進めてください。",
|
|
193
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": "現在のシークレットは直ちに無効になります。利用中の箇所に新しいシークレットを渡す必要があります。",
|
|
194
218
|
"text.the list could not be loaded": "リストを読み込めませんでした",
|
|
195
219
|
"text.this domain is top level and inherits from nowhere": "最上位ドメイン — 継承元がありません",
|
|
196
220
|
"text.this field is required": "必須項目です",
|
|
@@ -199,6 +223,8 @@
|
|
|
199
223
|
"text.updated_successfully": "正常にアップデートしました.",
|
|
200
224
|
"text.user invitation prompt": "招待したいユーザーのユーザー名またはメールアドレスを入力してください。",
|
|
201
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": "そのコードをアクセストークンに交換するアドレス",
|
|
202
228
|
"text.x modules y privileges": "{x} modules · {y} privileges",
|
|
203
229
|
"text.x not here": "{x} not installed here",
|
|
204
230
|
"text.x_cannot_delete": "{x}は削除できません.",
|
package/translations/ko.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"button.drop": "떼기",
|
|
17
17
|
"button.edit privileges": "권한 편집",
|
|
18
18
|
"button.generate new access token": "새토큰 생성",
|
|
19
|
+
"button.generate new secret": "secret 새로 발급",
|
|
19
20
|
"button.go to home": "홈으로 이동",
|
|
20
21
|
"button.hide": "가리기",
|
|
21
22
|
"button.logout": "로그아웃",
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
"button.register": "등록",
|
|
24
25
|
"button.remove from domain": "도메인에서 제외",
|
|
25
26
|
"button.remove owner": "소유자 해제",
|
|
27
|
+
"button.renew access token": "access token 갱신",
|
|
26
28
|
"button.reveal": "보기",
|
|
27
29
|
"button.save": "저장",
|
|
28
30
|
"button.security-key registration": "보안인증키 등록",
|
|
@@ -32,6 +34,7 @@
|
|
|
32
34
|
"button.terminate contract": "계약 해지",
|
|
33
35
|
"button.transfer owner": "관리자 부여",
|
|
34
36
|
"button.unlock": "잠금 해제",
|
|
37
|
+
"button.update": "수정",
|
|
35
38
|
"error.cannot_modify_system_subdomain": "'system' 서브도메인은 수정할 수 없습니다.",
|
|
36
39
|
"error.domain not allowed": "'{subdomain}' 영역은 이 사용자에게 허가되지 않았습니다.",
|
|
37
40
|
"error.new-password-and-confirm-password-do-not-match": "새 비밀번호와 확인 비밀번호가 일치하지 않습니다.",
|
|
@@ -43,10 +46,14 @@
|
|
|
43
46
|
"error.user-locked": "계정이 잠겼습니다. 이메일을 통해 재활성화하세요.",
|
|
44
47
|
"error.value is empty": "{value}의 값이 존재하지 않습니다.",
|
|
45
48
|
"error.x already exists in y": "{x}이/가 이미 {y}에 존재합니다.",
|
|
49
|
+
"field.access token url": "access token url",
|
|
46
50
|
"field.accessed-at": "로그인 일시",
|
|
51
|
+
"field.app key": "app key",
|
|
47
52
|
"field.application icon": "아이콘 주소",
|
|
48
53
|
"field.application url": "주소",
|
|
49
54
|
"field.attributes": "속성",
|
|
55
|
+
"field.auth url": "auth url",
|
|
56
|
+
"field.available scopes": "허용 scope",
|
|
50
57
|
"field.brand": "제조사",
|
|
51
58
|
"field.client-id": "client id",
|
|
52
59
|
"field.client-secret": "client secret",
|
|
@@ -96,6 +103,7 @@
|
|
|
96
103
|
"field.user-type": "사용자유형",
|
|
97
104
|
"field.username": "사용자 아이디",
|
|
98
105
|
"field.username or email": "사용자명 또는 이메일",
|
|
106
|
+
"field.webhook": "webhook",
|
|
99
107
|
"label.access token": "액세스 토큰",
|
|
100
108
|
"label.activated": "사용 중",
|
|
101
109
|
"label.activated-user": "정상",
|
|
@@ -166,8 +174,10 @@
|
|
|
166
174
|
"text.appliance": "단말장치",
|
|
167
175
|
"text.appliance credential": "단말장치 자격증명",
|
|
168
176
|
"text.appliances": "단말장치",
|
|
177
|
+
"text.application": "응용프로그램",
|
|
169
178
|
"text.application management": "응용프로그램 관리",
|
|
170
179
|
"text.applications": "응용프로그램",
|
|
180
|
+
"text.are you sure you want to delete x": "{x} 을(를) 삭제합니다. 되돌릴 수 없습니다.",
|
|
171
181
|
"text.are_you_sure_to_delete_x": "{x}를 삭제하시겠습니까?",
|
|
172
182
|
"text.are_you_sure_to_remove_domain_owner": "{x}을(를) 도메인 소유자에서 해제하시겠습니까?",
|
|
173
183
|
"text.are_you_sure_to_terminate_contract": "파트너쉽을 해지하시겠습니까?",
|
|
@@ -177,6 +187,9 @@
|
|
|
177
187
|
"text.attribute management": "엔티티 속성 관리",
|
|
178
188
|
"text.auth profile": "사용자 프로파일",
|
|
179
189
|
"text.auth-provider management": "인증 제공자 관리",
|
|
190
|
+
"text.binding": "연결",
|
|
191
|
+
"text.binding credential": "연결 인증정보",
|
|
192
|
+
"text.bound application": "연결된 응용프로그램",
|
|
180
193
|
"text.bound applications": "연결된 응용프로그램",
|
|
181
194
|
"text.cannot be undone": "되돌릴 수 없는 조치",
|
|
182
195
|
"text.cannot_delete": "삭제할 수 없습니다.",
|
|
@@ -186,8 +199,10 @@
|
|
|
186
199
|
"text.confirm password": "비밀번호 확인",
|
|
187
200
|
"text.copied": "복사했습니다",
|
|
188
201
|
"text.copying needs a secure connection": "복사는 보안 연결에서만 됩니다 — 값을 직접 선택해 복사하십시오",
|
|
202
|
+
"text.could not be saved": "저장하지 못했습니다 — 이유는 위 알림을 보십시오",
|
|
189
203
|
"text.could not register": "등록하지 못했습니다 — 이유는 위 알림을 보십시오",
|
|
190
204
|
"text.create role": "역할 생성하기",
|
|
205
|
+
"text.credentials": "인증정보",
|
|
191
206
|
"text.current password": "현재 비밀번호",
|
|
192
207
|
"text.delete account warning message": "이 작업은 취소할 수 없습니다. 이것은 이 사용자에 대한 모든 정보를 영구적으로 삭제합니다.\n\n계속하시려면 이 계정에 대한 이메일과 비밀번호를 입력하세요.",
|
|
193
208
|
"text.deleted_successfully": "성공적으로 삭제되었습니다.",
|
|
@@ -199,7 +214,9 @@
|
|
|
199
214
|
"text.domain owners": "도메인 소유자",
|
|
200
215
|
"text.domain_name_change_warning": "도메인 이름을 변경하시겠습니까? (서브도메인은 변경되지 않고 기존대로 유지됩니다.)",
|
|
201
216
|
"text.email is not matched": "이메일이 일치하지 않습니다.",
|
|
217
|
+
"text.endpoints": "endpoint",
|
|
202
218
|
"text.env-var-list-page": "환경 변수 리스트",
|
|
219
|
+
"text.expired": "만료됨",
|
|
203
220
|
"text.expires at x": "{x} 만료",
|
|
204
221
|
"text.failed": "실패",
|
|
205
222
|
"text.failed to fetch": "목록을 읽지 못했습니다",
|
|
@@ -237,6 +254,7 @@
|
|
|
237
254
|
"text.please try again": "잠시 후 다시 시도하십시오.",
|
|
238
255
|
"text.please_fill_all_required_fields": "모든 필수 항목을 작성해 주세요",
|
|
239
256
|
"text.privilege no longer declared": "이 권한을 요구하는 코드가 더 이상 없습니다",
|
|
257
|
+
"text.register new appliance": "단말장치 등록",
|
|
240
258
|
"text.register new application": "응용프로그램 등록",
|
|
241
259
|
"text.registered roles": "등록된 역할 리스트",
|
|
242
260
|
"text.remaining time": "{days}일 {hours}시간 {mins}분 {secs}초 남았습니다",
|
|
@@ -253,6 +271,11 @@
|
|
|
253
271
|
"text.struck through are not installed here": "줄이 그어진 것은 이 설치에 없는 권한입니다.",
|
|
254
272
|
"text.subdomain_change_critical_warning": "경고: 서브도메인을 변경하면 전체 접속 URL(/{type}/{subdomain}/...)이 변경되어 기존에 배포된 링크, 북마크 및 활성 사용자 세션이 무효화될 수 있습니다. 신중하게 확인 후 진행해 주세요.",
|
|
255
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 을 주어야 합니다.",
|
|
256
279
|
"text.the list could not be loaded": "목록을 불러오지 못했습니다",
|
|
257
280
|
"text.they lose access to this domain but keep the account": "이 도메인에서 더 이상 일할 수 없게 됩니다. 계정은 남아 있어서 나중에 다시 부를 수 있습니다.",
|
|
258
281
|
"text.this domain is top level and inherits from nowhere": "최상위 도메인 — 물려받는 곳이 없습니다",
|
|
@@ -264,6 +287,8 @@
|
|
|
264
287
|
"text.user invitation prompt": "초대하고자 하는 사용자아이디나 이메일을 입력하세요.",
|
|
265
288
|
"text.user management": "사용자 관리",
|
|
266
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 으로 바꾸는 주소",
|
|
267
292
|
"text.without a role they see nothing": "역할을 정하지 않으면 들어와도 볼 화면이 없습니다.",
|
|
268
293
|
"text.x is required": "{x}을(를) 입력해 주십시오.",
|
|
269
294
|
"text.x modules y privileges": "모듈 {x} · 권한 {y}",
|
package/translations/ms.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"button.activate": "aktifkan",
|
|
3
3
|
"button.cancel": "batalkan",
|
|
4
|
+
"button.close": "tutup",
|
|
4
5
|
"button.confirm": "sahkan",
|
|
5
6
|
"button.copy": "salin",
|
|
6
7
|
"button.create": "cipta",
|
|
@@ -12,11 +13,13 @@
|
|
|
12
13
|
"button.delete user": "padam pengguna",
|
|
13
14
|
"button.detail": "perincian",
|
|
14
15
|
"button.generate new access token": "Cipta akses token baru",
|
|
16
|
+
"button.generate new secret": "jana rahsia baharu",
|
|
15
17
|
"button.go to home": "ke halaman utama",
|
|
16
18
|
"button.hide": "sembunyi",
|
|
17
19
|
"button.logout": "logout",
|
|
18
20
|
"button.name it yourself": "name it yourself",
|
|
19
21
|
"button.register": "daftar",
|
|
22
|
+
"button.renew access token": "perbaharui token akses",
|
|
20
23
|
"button.reveal": "tunjuk",
|
|
21
24
|
"button.save": "simpan",
|
|
22
25
|
"button.security-key registration": "pendaftaran kunci keselamatan",
|
|
@@ -25,6 +28,7 @@
|
|
|
25
28
|
"button.submit": "hantar",
|
|
26
29
|
"button.terminate contract": "tamatkan",
|
|
27
30
|
"button.transfer owner": "pindah pemilik",
|
|
31
|
+
"button.update": "kemas kini",
|
|
28
32
|
"error.cannot_modify_system_subdomain": "subdomain 'system' tidak boleh diubah.",
|
|
29
33
|
"error.domain not allowed": "domain ini tidak dibenarkan untuk anda",
|
|
30
34
|
"error.new-password-and-confirm-password-do-not-match": "kata laluan baharu dan pengesahan berbeza",
|
|
@@ -36,10 +40,14 @@
|
|
|
36
40
|
"error.user-locked": "pengguna dikunci",
|
|
37
41
|
"error.value is empty": "{value} kosong",
|
|
38
42
|
"error.x already exists in y": "{x} telah wujud dalam {y}",
|
|
43
|
+
"field.access token url": "access token url",
|
|
39
44
|
"field.accessed-at": "diakses pada",
|
|
45
|
+
"field.app key": "app key",
|
|
40
46
|
"field.application icon": "ikon aplikasi",
|
|
41
47
|
"field.application url": "url aplikasi",
|
|
42
48
|
"field.attributes": "ciri-ciri",
|
|
49
|
+
"field.auth url": "auth url",
|
|
50
|
+
"field.available scopes": "skop yang tersedia",
|
|
43
51
|
"field.brand": "jenama",
|
|
44
52
|
"field.client-id": "ID klien",
|
|
45
53
|
"field.client-secret": "Rahsia klien",
|
|
@@ -80,6 +88,7 @@
|
|
|
80
88
|
"field.user-id or email": "ID pengguna atau e-mel",
|
|
81
89
|
"field.user-type": "jenis pengguna",
|
|
82
90
|
"field.username": "ID pengguna",
|
|
91
|
+
"field.webhook": "webhook",
|
|
83
92
|
"label.access token": "token akses",
|
|
84
93
|
"label.activated": "diaktifkan",
|
|
85
94
|
"label.activated-user": "diaktifkan",
|
|
@@ -136,8 +145,10 @@
|
|
|
136
145
|
"text.appliance": "perkakas terminal",
|
|
137
146
|
"text.appliance credential": "kelayakan peralatan terminal",
|
|
138
147
|
"text.appliances": "peranti",
|
|
148
|
+
"text.application": "aplikasi",
|
|
139
149
|
"text.application management": "pengurusan aplikasi",
|
|
140
150
|
"text.applications": "aplikasi",
|
|
151
|
+
"text.are you sure you want to delete x": "padam {x}? tindakan ini tidak boleh dibatalkan.",
|
|
141
152
|
"text.are_you_sure_to_delete_x": "adakah anda pasti untuk memadam {x}?",
|
|
142
153
|
"text.are_you_sure_to_terminate_contract": "adakah anda pasti untuk memadam kontrak?",
|
|
143
154
|
"text.are_you_sure_to_transfer_owner": "adakah anda pasti untuk menukar pemilik?",
|
|
@@ -146,6 +157,9 @@
|
|
|
146
157
|
"text.attribute management": "pengurusan atribut",
|
|
147
158
|
"text.auth profile": "profil pengguna",
|
|
148
159
|
"text.auth-provider management": "pengurusan pembekal pengesahan",
|
|
160
|
+
"text.binding": "ikatan",
|
|
161
|
+
"text.binding credential": "kelayakan ikatan",
|
|
162
|
+
"text.bound application": "aplikasi terikat",
|
|
149
163
|
"text.bound applications": "aplikasi terikat",
|
|
150
164
|
"text.cannot_delete": "tidak boleh dipadam",
|
|
151
165
|
"text.change password": "tukar kata laluan",
|
|
@@ -154,8 +168,10 @@
|
|
|
154
168
|
"text.confirm password": "sahkan kata laluan",
|
|
155
169
|
"text.copied": "disalin",
|
|
156
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",
|
|
157
172
|
"text.could not register": "tidak dapat mendaftar — lihat mesej di atas",
|
|
158
173
|
"text.create role": "bina peranan",
|
|
174
|
+
"text.credentials": "kelayakan",
|
|
159
175
|
"text.current password": "kata laluan terkini",
|
|
160
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.",
|
|
161
177
|
"text.deleted_successfully": "berjaya dihapuskan",
|
|
@@ -166,7 +182,9 @@
|
|
|
166
182
|
"text.domain sumber dan sasaran tidak boleh sama": "domain sumber dan sasaran tidak boleh sama",
|
|
167
183
|
"text.domain_name_change_warning": "adakah anda pasti mahu menukar nama domain? (subdomain akan kekal tidak berubah.)",
|
|
168
184
|
"text.email is not matched": "alamat email tidak sepadan",
|
|
185
|
+
"text.endpoints": "titik akhir",
|
|
169
186
|
"text.env-var-list-page": "senarai pengubahsuaian persekitaran",
|
|
187
|
+
"text.expired": "tamat tempoh",
|
|
170
188
|
"text.expires at x": "tamat {x}",
|
|
171
189
|
"text.inherited from x": "diwarisi daripada {x}",
|
|
172
190
|
"text.new password": "kata laluan baru",
|
|
@@ -179,6 +197,7 @@
|
|
|
179
197
|
"text.pick a seat to see what it opens": "Pick a seat to see what it opens.",
|
|
180
198
|
"text.please enter the email of the user you want to transfer owner": "sila masukkan e-mel pengguna yang anda hendak pindahkan pemilik",
|
|
181
199
|
"text.privilege no longer declared": "tiada kod yang memerlukan kebenaran ini lagi",
|
|
200
|
+
"text.register new appliance": "daftar peranti baharu",
|
|
182
201
|
"text.register new application": "daftar aplikasi baharu",
|
|
183
202
|
"text.registered roles": "peranan sudah didaftar",
|
|
184
203
|
"text.remaining time": "masa tinggal {days} hari {hours} jam {mins} minit {secs} saat",
|
|
@@ -192,6 +211,11 @@
|
|
|
192
211
|
"text.struck through are not installed here": "Struck through are privileges this installation does not have.",
|
|
193
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.",
|
|
194
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.",
|
|
195
219
|
"text.the list could not be loaded": "senarai tidak dapat dimuatkan",
|
|
196
220
|
"text.this domain is top level and inherits from nowhere": "domain teratas — tiada yang diwarisi",
|
|
197
221
|
"text.this field is required": "medan ini diperlukan",
|
|
@@ -200,6 +224,8 @@
|
|
|
200
224
|
"text.updated_successfully": "berjaya dikemaskini",
|
|
201
225
|
"text.user invitation prompt": "sila masukkan nama pengguna atau alamat e-mel pengguna yang ingin anda jemput.",
|
|
202
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",
|
|
203
229
|
"text.x modules y privileges": "{x} modules · {y} privileges",
|
|
204
230
|
"text.x not here": "{x} not installed here",
|
|
205
231
|
"text.x_cannot_delete": "{x} tidak boleh dipadam",
|
package/translations/zh.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"button.activate": "激活",
|
|
3
3
|
"button.cancel": "取消",
|
|
4
|
+
"button.close": "关闭",
|
|
4
5
|
"button.confirm": "确认",
|
|
5
6
|
"button.copy": "复制",
|
|
6
7
|
"button.create": "创建",
|
|
@@ -12,11 +13,13 @@
|
|
|
12
13
|
"button.delete user": "删除用户",
|
|
13
14
|
"button.detail": "详情",
|
|
14
15
|
"button.generate new access token": "生成新的访问令牌",
|
|
16
|
+
"button.generate new secret": "重新生成密钥",
|
|
15
17
|
"button.go to home": "首页",
|
|
16
18
|
"button.hide": "隐藏",
|
|
17
19
|
"button.logout": "退出",
|
|
18
20
|
"button.name it yourself": "name it yourself",
|
|
19
21
|
"button.register": "注册",
|
|
22
|
+
"button.renew access token": "更新访问令牌",
|
|
20
23
|
"button.reveal": "显示",
|
|
21
24
|
"button.save": "保存",
|
|
22
25
|
"button.security-key registration": "安全密钥注册",
|
|
@@ -25,6 +28,7 @@
|
|
|
25
28
|
"button.submit": "提交",
|
|
26
29
|
"button.terminate contract": "终止合同",
|
|
27
30
|
"button.transfer owner": "转让所有权",
|
|
31
|
+
"button.update": "更新",
|
|
28
32
|
"error.cannot_modify_system_subdomain": "无法修改'system'子域。",
|
|
29
33
|
"error.domain not allowed": "此域名对此用户不可用",
|
|
30
34
|
"error.new-password-and-confirm-password-do-not-match": "新密码与认证密码不同",
|
|
@@ -36,10 +40,14 @@
|
|
|
36
40
|
"error.user-locked": "用户帐户已锁定",
|
|
37
41
|
"error.value is empty": "{value}为空",
|
|
38
42
|
"error.x already exists in y": "{x}已存在于{y}",
|
|
43
|
+
"field.access token url": "access token url",
|
|
39
44
|
"field.accessed-at": "访问于",
|
|
45
|
+
"field.app key": "app key",
|
|
40
46
|
"field.application icon": "图标地址",
|
|
41
47
|
"field.application url": "应用地址",
|
|
42
48
|
"field.attributes": "属性",
|
|
49
|
+
"field.auth url": "auth url",
|
|
50
|
+
"field.available scopes": "可用范围",
|
|
43
51
|
"field.brand": "品牌",
|
|
44
52
|
"field.client-id": "客户端ID",
|
|
45
53
|
"field.client-secret": "客户端密钥",
|
|
@@ -80,6 +88,7 @@
|
|
|
80
88
|
"field.user-id or email": "用户名或电子邮件",
|
|
81
89
|
"field.user-type": "用户类型",
|
|
82
90
|
"field.username": "用户名",
|
|
91
|
+
"field.webhook": "webhook",
|
|
83
92
|
"label.access token": "访问令牌",
|
|
84
93
|
"label.activated": "已启用",
|
|
85
94
|
"label.activated-user": "用户已激活",
|
|
@@ -136,8 +145,10 @@
|
|
|
136
145
|
"text.appliance": "终端设备",
|
|
137
146
|
"text.appliance credential": "终端设备凭证",
|
|
138
147
|
"text.appliances": "终端设备",
|
|
148
|
+
"text.application": "应用程序",
|
|
139
149
|
"text.application management": "应用管理",
|
|
140
150
|
"text.applications": "应用程序",
|
|
151
|
+
"text.are you sure you want to delete x": "删除 {x}?此操作无法撤销。",
|
|
141
152
|
"text.are_you_sure_to_delete_x": "您确定是否删除{x}?",
|
|
142
153
|
"text.are_you_sure_to_terminate_contract": "您确定要终止合同吗?",
|
|
143
154
|
"text.are_you_sure_to_transfer_owner": "您确定要转移业主权限?",
|
|
@@ -146,6 +157,9 @@
|
|
|
146
157
|
"text.attribute management": "属性管理",
|
|
147
158
|
"text.auth profile": "账号管理",
|
|
148
159
|
"text.auth-provider management": "身份验证提供者管理",
|
|
160
|
+
"text.binding": "绑定",
|
|
161
|
+
"text.binding credential": "绑定凭据",
|
|
162
|
+
"text.bound application": "已绑定的应用程序",
|
|
149
163
|
"text.bound applications": "已绑定应用程序",
|
|
150
164
|
"text.cannot_delete": "无法删除",
|
|
151
165
|
"text.change password": "修改密码",
|
|
@@ -154,8 +168,10 @@
|
|
|
154
168
|
"text.confirm password": "认证密码",
|
|
155
169
|
"text.copied": "已复制",
|
|
156
170
|
"text.copying needs a secure connection": "复制需要安全连接 — 请手动选择并复制该值",
|
|
171
|
+
"text.could not be saved": "保存失败 — 原因请看上方提示",
|
|
157
172
|
"text.could not register": "注册失败 — 原因见上方提示",
|
|
158
173
|
"text.create role": "创建角色",
|
|
174
|
+
"text.credentials": "凭据",
|
|
159
175
|
"text.current password": "当前密码",
|
|
160
176
|
"text.delete account warning message": "这步骤将完全删除您的账号。\n\n请输入您的电子邮件和密码,确认删除步骤。",
|
|
161
177
|
"text.deleted_successfully": "删除成功",
|
|
@@ -165,7 +181,9 @@
|
|
|
165
181
|
"text.domain management": "域管理",
|
|
166
182
|
"text.domain_name_change_warning": "确定要更改域名吗?(子域名将保持不变。)",
|
|
167
183
|
"text.email is not matched": "电子邮件不匹配",
|
|
184
|
+
"text.endpoints": "端点",
|
|
168
185
|
"text.env-var-list-page": "环境变量列表",
|
|
186
|
+
"text.expired": "已过期",
|
|
169
187
|
"text.expires at x": "{x} 过期",
|
|
170
188
|
"text.inherited from x": "继承自 {x}",
|
|
171
189
|
"text.new password": "新密码",
|
|
@@ -179,6 +197,7 @@
|
|
|
179
197
|
"text.please enter the email of the user you want to transfer owner": "请录入所有权接收人的邮件。",
|
|
180
198
|
"text.please_fill_all_required_fields": "请填写所有必填字段",
|
|
181
199
|
"text.privilege no longer declared": "已没有代码需要此权限",
|
|
200
|
+
"text.register new appliance": "注册终端设备",
|
|
182
201
|
"text.register new application": "注册新应用程序",
|
|
183
202
|
"text.registered roles": "角色登记成功",
|
|
184
203
|
"text.remaining time": "剩余{days}天{hours}小时{mins}分钟{secs}秒",
|
|
@@ -192,6 +211,11 @@
|
|
|
192
211
|
"text.struck through are not installed here": "Struck through are privileges this installation does not have.",
|
|
193
212
|
"text.subdomain_change_critical_warning": "警告: 更改子域将更改完整的访问URL(/{type}/{subdomain}/...),并可能使现有的外部链接、书签和活动用户会话失效。请谨慎操作。",
|
|
194
213
|
"text.synchronize": "同步",
|
|
214
|
+
"text.the appliance could not be loaded": "无法读取终端设备",
|
|
215
|
+
"text.the application could not be loaded": "无法读取应用程序",
|
|
216
|
+
"text.the binding could not be loaded": "无法读取绑定",
|
|
217
|
+
"text.the current access token stops working immediately": "当前访问令牌将立即失效,使用它的地方需要换成新的令牌。",
|
|
218
|
+
"text.the current secret stops working immediately": "当前密钥将立即失效,使用它的地方需要换成新的密钥。",
|
|
195
219
|
"text.the list could not be loaded": "无法加载列表",
|
|
196
220
|
"text.this domain is top level and inherits from nowhere": "顶级域 — 没有可继承的来源",
|
|
197
221
|
"text.this field is required": "此项为必填",
|
|
@@ -200,6 +224,8 @@
|
|
|
200
224
|
"text.updated_successfully": "更新成功",
|
|
201
225
|
"text.user invitation prompt": "请输入您希望邀请的用户的用户名或电子邮件地址。",
|
|
202
226
|
"text.user management": "用户管理",
|
|
227
|
+
"text.where an integration asks for an authorization code": "集成方申请授权码的地址",
|
|
228
|
+
"text.where that code is exchanged for an access token": "用该授权码换取访问令牌的地址",
|
|
203
229
|
"text.x modules y privileges": "{x} modules · {y} privileges",
|
|
204
230
|
"text.x not here": "{x} not installed here",
|
|
205
231
|
"text.x_cannot_delete": "{x}无法删除",
|