-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathdata.json
More file actions
1805 lines (1805 loc) · 91.4 KB
/
Copy pathdata.json
File metadata and controls
1805 lines (1805 loc) · 91.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"account": {
"Exit impersonation": "Exit impersonation",
"Logout": "Logout",
"My Account": "My Account",
"Sign Up": "Sign Up"
},
"adapter": {
"Duplicated policy rules": "Duplicated policy rules",
"Edit Adapter": "Edit Adapter",
"Failed to sync policies": "Failed to sync policies",
"New Adapter": "New Adapter",
"Policies": "Policies",
"Policies - Tooltip": "Casbin policy rules",
"Rule type": "Rule type",
"Sync policies successfully": "Sync policies successfully",
"Use same DB": "Use same DB",
"Use same DB - Tooltip": "Use the same DB as Casdoor"
},
"agent": {
"Edit Agent": "Edit Agent",
"New Agent": "New Agent"
},
"application": {
"Add Face ID": "Add Face ID",
"Add Face ID with Camera": "Add Face ID with Camera",
"Add Face ID with Image": "Add Face ID with Image",
"Always": "Always",
"Array": "Array",
"Authentication": "Authentication",
"Auto signin": "Auto signin",
"Auto signin - Tooltip": "When a logged-in session exists in Casdoor, it is automatically used for application-side login",
"Background URL": "Background URL",
"Background URL - Tooltip": "URL of the background image used in the login page",
"Background URL Mobile": "Background URL Mobile",
"Background URL Mobile - Tooltip": "URL of the background image used in the login page (mobile)",
"Backchannel logout URL": "Backchannel logout URL",
"Backchannel logout URL - Tooltip": "The endpoint where Casdoor sends an OIDC Back-Channel Logout token (a signed JWT) when the user logs out, so the application can terminate the corresponding session. Leave empty to disable back-channel logout for this application",
"Basic": "Basic",
"Big icon": "Big icon",
"Binding providers": "Binding providers",
"CSS style": "CSS style",
"Center": "Center",
"Client cert": "Client cert",
"Client cert - Tooltip": "Client certificate used for mutual TLS authentication between the client and server",
"Code resend timeout": "Code resend timeout",
"Code resend timeout - Tooltip": "Time period (in seconds) that users must wait before requesting another verification code. Set to 0 to use the global default (60 seconds)",
"Cookie expire": "Cookie expire",
"Cookie expire - Tooltip": "Session cookie expiration time; determines how long the user's session remains valid after login",
"Copy SAML metadata URL": "Copy SAML metadata URL",
"Copy prompt page URL": "Copy prompt page URL",
"Copy signin page URL": "Copy signin page URL",
"Copy signup page URL": "Copy signup page URL",
"Custom CSS": "Custom CSS",
"Custom CSS - Edit": "Custom CSS - Edit",
"Custom CSS - Tooltip": "CSS styling of the signup, signin and forget password forms (e.g. adding borders and shadows)",
"Custom CSS Mobile": "Custom CSS Mobile",
"Custom CSS Mobile - Edit": "Custom CSS Mobile - Edit",
"Custom CSS Mobile - Tooltip": "Registration, login, and password-reset form styles (border and shadow) for mobile",
"Default tag": "Default tag",
"Default tag - Tooltip": "Default tag - Tooltip",
"Disable SAML attributes": "Disable SAML attributes",
"Disable SAML attributes - Tooltip": "Whether to disable including attribute statements in SAML assertion responses",
"Disable signin": "Disable signin",
"Disable signin - Tooltip": "Disable user login operations",
"Dynamic": "Dynamic",
"Edit Application": "Edit Application",
"Enable Email linking": "Enable Email linking",
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
"Enable SAML C14N10": "Enable SAML C14N10",
"Enable SAML C14N10 - Tooltip": "Use C14N10 instead of C14N11 in SAML",
"Enable SAML POST binding": "Enable SAML POST binding",
"Enable SAML POST binding - Tooltip": "The HTTP POST binding uses input fields in a HTML form to send SAML messages, Enable when your SP use it",
"Enable SAML assertion signature": "Enable SAML assertion signature",
"Enable SAML assertion signature - Tooltip": "Whether to digitally sign the SAML assertion in addition to the SAML response",
"Enable SAML compression": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable exclusive signin": "Enable exclusive signin",
"Enable exclusive signin - Tooltip": "When exclusive signin enabled, user cannot have multiple active session",
"Enable guest signin": "Enable guest signin",
"Enable guest signin - Tooltip": "Allow users to sign in as a guest without creating or logging into an account",
"Enable side panel": "Enable side panel",
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register a new account",
"Existing Field": "Existing Field",
"Export JSON": "Export JSON",
"Failed signin frozen time": "Failed signin frozen time",
"Failed signin frozen time - Tooltip": "Waiting time after exceeding the number of failed login attempts. Users can only log in again after the waiting time expires. Default value is 15 minutes. The set value must be a positive integer",
"Failed signin limit": "Failed signin limit",
"Failed signin limit - Tooltip": "Maximum number of failed login attempts allowed in a short period. After exceeding the limit, login will be prohibited for a period of time. Default value is 5. The set value must be a positive integer",
"Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully",
"First, last": "First, last",
"Follow organization theme": "Follow organization theme",
"Footer HTML": "Footer HTML",
"Footer HTML - Edit": "Footer HTML - Edit",
"Footer HTML - Tooltip": "Custom the footer of your application",
"Forced redirect origin": "Forced redirect origin",
"Form position": "Form position",
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
"Grant types": "Grant types",
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
"Header HTML": "Header HTML",
"Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Horizontal": "Horizontal",
"Import JSON": "Import JSON",
"Import JSON - description": "Import application settings from a JSON file exported from another Casdoor application",
"Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input",
"Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name",
"Invitation code": "Invitation code",
"Left": "Left",
"Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully",
"MFA remember time": "MFA remember time",
"MFA remember time - Tooltip": "Configures the duration that a account is remembered as trusted after a successful MFA login",
"Menu mode": "Menu mode",
"Menu mode - Tooltip": "The display mode of the application navigation menu (e.g., inline, side panel, or top bar)",
"Multiple Choices": "Multiple Choices",
"New Application": "New Application",
"No verification": "No verification",
"Normal": "Normal",
"Only signup": "Only signup",
"Order": "Order",
"Order - Tooltip": "The smaller the value, the higher it ranks in the Apps page",
"Org choice mode": "Org choice mode",
"Org choice mode - Tooltip": "Method used to select the organization to log in",
"Other domains": "Other domains",
"Other domains - Tooltip": "Additional allowed domains for this application, used for cross-domain access control",
"Page HTML": "Page HTML",
"Page HTML - Edit": "Page HTML - Edit",
"Page HTML - Tooltip": "Custom HTML for the application's main page, allowing complete control over the page structure and content",
"Please enable \"Signin session\" first before enabling \"Auto signin\"": "Please enable \"Signin session\" first before enabling \"Auto signin\"",
"Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Providers": "Providers",
"Random": "Random",
"Real name": "Real name",
"Redirect URL": "Redirect URL",
"Redirect URL (Assertion Consumer Service POST Binding URL) - Tooltip": "Redirect URL (Assertion Consumer Service POST Binding URL)",
"Redirect URLs": "Redirect URLs",
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
"Refresh token expire": "Refresh token expire",
"Refresh token expire - Tooltip": "Refresh token expiration time",
"Reset to Empty": "Reset to Empty",
"Reverse Proxy": "Reverse Proxy",
"Right": "Right",
"Rule": "Rule",
"SAML C14N10 prefix": "SAML C14N10 prefix",
"SAML C14N10 prefix - Tooltip": "XML namespace prefix used in SAML C14N10 canonicalization (e.g., 'ds' for XML digital signatures)",
"SAML hash algorithm": "SAML hash algorithm",
"SAML hash algorithm - Tooltip": "Hash algorithm for SAML signature",
"SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "The metadata of SAML protocol",
"SAML reply URL": "SAML reply URL",
"SSL cert": "SSL cert",
"SSL cert - Tooltip": "SSL certificate for securing HTTPS connections to the application",
"Security": "Security",
"Select": "Select",
"Side panel HTML": "Side panel HTML",
"Side panel HTML - Edit": "Side panel HTML - Edit",
"Side panel HTML - Tooltip": "Customize the HTML code for the side panel of the login page",
"Sign Up Error": "Sign Up Error",
"Signin": "Signin",
"Signin (Default True)": "Signin (Default True)",
"Signin items": "Signin items",
"Signin items - Tooltip": "Items for users to fill in when signing up",
"Signin methods": "Signin methods",
"Signin methods - Tooltip": "Add allowed login methods for users. By default, all methods are available",
"Signin session": "Signin session",
"Signup items": "Signup items",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
"Single Choice": "Single Choice",
"Small icon": "Small icon",
"Static Value": "Static Value",
"String": "String",
"Tags - Tooltip": "Only users with the tag that is listed in the application tags can login",
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token cert": "Token cert",
"Token cert - Tooltip": "Certificate used for signing and verifying access tokens; must match the selected token signing method",
"Token expire": "Token expire",
"Token expire - Tooltip": "Access token expiration time",
"Token fields": "Token fields",
"Token fields - Tooltip": "The user fields included in the token",
"Token format": "Token format",
"Token format - Tooltip": "The format of access token",
"Token signing method": "Token signing method",
"Token signing method - Tooltip": "Signing method of JWT token, needs to be the same algorithm as the certificate",
"UI Customization": "UI Customization",
"Upstream host": "Upstream host",
"Upstream host - Tooltip": "The upstream backend host address when Casdoor is used in reverse proxy mode",
"Use Email as NameID": "Use Email as NameID",
"Use Email as NameID - Tooltip": "Use Email as NameID",
"Vertical": "Vertical",
"You are unexpected to see this prompt page": "You are unexpected to see this prompt page"
},
"cert": {
"Access secret": "Access secret",
"Account": "Account",
"Bit size": "Bit size",
"Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate",
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
"Copy certificate": "Copy certificate",
"Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm",
"Crypto algorithm - Tooltip": "Encryption algorithm used by the certificate",
"Domain expire": "Domain expire",
"Download certificate": "Download certificate",
"Download private key": "Download private key",
"Edit Cert": "Edit Cert",
"Expire in years": "Expire in years",
"Expire in years - Tooltip": "Validity period of the certificate, in years",
"New Cert": "New Cert",
"Private key": "Private key",
"Private key - Tooltip": "Private key corresponding to the public key certificate"
},
"code": {
"Code you received": "Code you received",
"Email code": "Email code",
"Empty code": "Empty code",
"Enter your code": "Enter your code",
"Get Code": "Get Code",
"Getting": "Getting",
"Phone code": "Phone code",
"Please input your phone verification code!": "Please input your phone verification code!",
"Please input your verification code!": "Please input your verification code!",
"Submit and complete": "Submit and complete"
},
"consent": {
"Are you sure you want to revoke scope": "Are you sure you want to revoke scope",
"Are you sure you want to revoke this consent?": "Are you sure you want to revoke this consent?",
"Authorization Request": "Authorization Request",
"By clicking Allow, you allow this app to use your information": "By clicking Allow, you allow this app to use your information",
"Consents": "Consents",
"Consents - Tooltip": "List of user consent records showing which applications have been granted access",
"Granted scopes": "Granted scopes",
"This application is requesting": "This application is requesting",
"This scope is not defined in the application": "This scope is not defined in the application",
"wants to access your account": "wants to access your account"
},
"coupon": {
"0 means unlimited": "0 means unlimited",
"Discount": "Discount",
"Discount - Tooltip": "The discount value: either a fixed currency amount or a percentage, depending on the discount type",
"Discount type": "Discount type",
"Discount type - Tooltip": "How the discount is calculated: Fixed (subtract a fixed amount) or Percentage (subtract a percentage of the total)",
"Edit Coupon": "Edit Coupon",
"Fixed": "Fixed",
"Max discount": "Max discount",
"Max discount - Tooltip": "Maximum discount cap when using percentage-based discounts (0 means no maximum limit)",
"Max usage per user": "Max usage per user",
"Max usage per user - Tooltip": "Maximum number of times a single user can redeem this coupon (0 means unlimited)",
"Min order amount": "Min order amount",
"Min order amount - Tooltip": "Minimum order amount required before this coupon can be applied (0 means no minimum)",
"New Coupon": "New Coupon",
"Percentage": "Percentage",
"Product specific": "Product specific",
"Products - Tooltip": "Products that this coupon is applicable to. Leave empty to allow the coupon for all products",
"Universal": "Universal",
"Usage": "Usage",
"User specific": "User specific"
},
"currency": {
"AUD": "AUD",
"BRL": "BRL",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"CZK": "CZK",
"DKK": "DKK",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"HUF": "HUF",
"INR": "INR",
"JPY": "JPY",
"KRW": "KRW",
"MXN": "MXN",
"MYR": "MYR",
"NOK": "NOK",
"PLN": "PLN",
"RUB": "RUB",
"SEK": "SEK",
"SGD": "SGD",
"THB": "THB",
"TRY": "TRY",
"TWD": "TWD",
"USD": "USD",
"ZAR": "ZAR"
},
"enforcer": {
"Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer"
},
"entry": {
"Audit stamp": "Audit stamp",
"Back to session": "Back to session",
"Call": "Call",
"Call / Result": "Call / Result",
"Command": "Command",
"Decision": "Decision",
"Device": "Device",
"Duration": "Duration",
"Edit Entry": "Edit Entry",
"Entry ID": "Entry ID",
"Executable": "Executable",
"Exit session graph fullscreen": "Exit session graph fullscreen",
"Failed to load session graph": "Failed to load session graph",
"Failed to parse trace message": "Failed to parse trace message",
"Finals": "Finals",
"Inode": "Inode",
"Links": "Links",
"Loaded size": "Loaded size",
"New Entry": "New Entry",
"No spans": "No spans",
"Open linked node": "Open linked node",
"Original Parent ID": "Original Parent ID",
"Parent Span ID": "Parent Span ID",
"Permission": "Permission",
"Permissive": "Permissive",
"Process ID": "Process ID",
"Query": "Query",
"Raw JSONL": "Raw JSONL",
"Raw span": "Raw span",
"Resource attributes": "Resource attributes",
"Resource schema URL": "Resource schema URL",
"Results": "Results",
"SELinux event": "SELinux event",
"Scope schema URL": "Scope schema URL",
"Service": "Service",
"Session graph": "Session graph",
"Session graph fullscreen": "Session graph fullscreen",
"Session graph node": "Session graph node",
"Source context": "Source context",
"Span ID": "Span ID",
"Span attributes": "Span attributes",
"Span detail": "Span detail",
"Summary": "Summary",
"Target": "Target",
"Target class": "Target class",
"Target context": "Target context",
"Tasks": "Tasks",
"Text": "Text",
"Tool Call ID": "Tool Call ID",
"Tool calls": "Tool calls",
"Trace ID": "Trace ID",
"Trace spans": "Trace spans",
"Transcript truncated": "Transcript truncated"
},
"forget": {
"Change Password": "Change Password",
"Choose email or phone": "Choose email or phone",
"Next Step": "Next Step",
"Please input your username!": "Please input your username!",
"Reset": "Reset",
"Reset password": "Reset password",
"Unknown forget type": "Unknown forget type",
"Verify": "Verify"
},
"form": {
"Edit Form": "Edit Form",
"Form items": "Form items",
"Form items - Tooltip": "Form items",
"New Form": "New Form",
"Width": "Width"
},
"general": {
"A normal user can only modify the permission submitted by itself": "A normal user can only modify the permission submitted by itself",
"API key": "API key",
"Access key": "Access key",
"Access key - Tooltip": "Access key for the service",
"Access token is empty": "Access token is empty",
"Action": "Action",
"Adapter": "Adapter",
"Adapter - Tooltip": "Table name of the policy store",
"Adapters": "Adapters",
"Add": "Add",
"Add custom item": "Add custom item",
"Admin": "Admin",
"Affiliation URL": "Affiliation URL",
"Affiliation URL - Tooltip": "The homepage URL for the affiliation",
"Agents": "Agents",
"All": "All",
"Application": "Application",
"Application - Tooltip": "Application",
"Applications": "Applications",
"Applications that require authentication": "Applications that require authentication",
"Apps": "Apps",
"Auditing": "Auditing",
"Authorization": "Authorization",
"Auto": "Auto",
"Avatar": "Avatar",
"Avatar - Tooltip": "Public avatar image for the user",
"Back": "Back",
"Back Home": "Back Home",
"Business": "Business",
"Cancel": "Cancel",
"Captcha": "Captcha",
"Cart": "Cart",
"Category": "Category",
"Category - Tooltip": "The category or classification that this item belongs to",
"Cert": "Cert",
"Cert - Tooltip": "The public key certificate that needs to be verified by the client SDK corresponding to this application",
"Certs": "Certs",
"Clear": "Clear",
"Click to Upload": "Click to Upload",
"Click to open tour": "Click to open tour",
"Client IP": "Client IP",
"Close": "Close",
"Columns": "Columns",
"Confirm": "Confirm",
"Copied to clipboard successfully": "Copied to clipboard successfully",
"Copy": "Copy",
"Coupons": "Coupons",
"Create time": "Create time",
"Created time": "Created time",
"Custom": "Custom",
"Custom scopes": "Custom scopes",
"Custom scopes - Tooltip": "Additional OAuth 2.0 scopes beyond the standard ones (openid, profile, email). Custom scopes allow requesting specific permissions or data access",
"Dashboard": "Dashboard",
"Data": "Data",
"Default": "Default",
"Default application": "Default application",
"Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
"Default password": "Default password",
"Default password - Tooltip": "When adding new user, if the user's password is not specified, the default password will be used as the user's password",
"Delete": "Delete",
"Description": "Description",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
"Detail": "Detail",
"Disable": "Disable",
"Disabled": "Disabled",
"Display name": "Display name",
"Display name - Tooltip": "A user-friendly, easily readable name displayed publicly in the UI",
"Down": "Down",
"Download template": "Download template",
"Duplicate": "Duplicate",
"Edit": "Edit",
"Email": "Email",
"Email - Tooltip": "Valid email address",
"Email only": "Email only",
"Email or Phone": "Email or Phone",
"Enable": "Enable",
"Enable dark logo": "Enable dark logo",
"Enable dark logo - Tooltip": "Enable dark logo",
"Enable tour": "Enable tour",
"Enable tour - Tooltip": "Display tour for users",
"Enabled": "Enabled",
"Enabled successfully": "Enabled successfully",
"Enforcers": "Enforcers",
"Entries": "Entries",
"Error": "Error",
"Expire time": "Expire time",
"Expire time - Tooltip": "The expiration timestamp after which this item becomes invalid",
"Failed to add": "Failed to add",
"Failed to cancel": "Failed to cancel",
"Failed to connect to server": "Failed to connect to server",
"Failed to copy": "Failed to copy",
"Failed to delete": "Failed to delete",
"Failed to enable": "Failed to enable",
"Failed to get": "Failed to get",
"Failed to load": "Failed to load",
"Failed to log out": "Failed to log out",
"Failed to remove": "Failed to remove",
"Failed to save": "Failed to save",
"Failed to send": "Failed to send",
"Failed to sync": "Failed to sync",
"Failed to unlink": "Failed to unlink",
"Failed to update": "Failed to update",
"Failed to upload": "Failed to upload",
"Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"Filter": "Filter",
"First name": "First name",
"First name - Tooltip": "The first name of user",
"Forced redirect origin - Tooltip": "Forced redirect origin",
"Forget URL": "Forget URL",
"Forget URL - Tooltip": "Custom URL for the \"Forget password\" page. If not set, the default Casdoor \"Forget password\" page will be used. When set, the \"Forget password\" link on the login page will redirect to this URL",
"Forms": "Forms",
"Found some texts still not translated? Please help us translate at": "Found some texts still not translated? Please help us translate at",
"GID number": "GID number",
"GID number - Tooltip": "The POSIX group ID published by the built-in LDAP server. Leave it as 0 to derive the number from the group name",
"General": "General",
"Generate": "Generate",
"Go to enable": "Go to enable",
"Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups",
"Groups - Tooltip": "Groups",
"Hide password": "Hide password",
"Home": "Home",
"Home - Tooltip": "Home page of the application",
"Host": "Host",
"ID": "ID",
"ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "List of allowed IP addresses or CIDR ranges; only requests from these IPs will be accepted",
"Identity": "Identity",
"Impersonate": "Impersonate",
"Invalid application": "Invalid application",
"Invitations": "Invitations",
"Is allowed": "Is allowed",
"Is enabled": "Is enabled",
"Is enabled - Tooltip": "Set whether it can use",
"Is shared": "Is shared",
"Is shared - Tooltip": "Share this application with other organizations",
"Keys": "Keys",
"LDAPs": "LDAPs",
"LDAPs - Tooltip": "LDAP servers",
"LLM AI": "LLM AI",
"Languages": "Languages",
"Languages - Tooltip": "Available languages",
"Last name": "Last name",
"Last name - Tooltip": "The last name of user",
"Later": "Later",
"Listening URL": "Listening URL",
"Listening URL - Tooltip": "The URL address on which the MCP server listens for incoming connections",
"Login page": "Login page",
"Logo": "Logo",
"Logo - Tooltip": "Icons that the application presents to the outside world",
"Logo dark": "Logo dark",
"Logo dark - Tooltip": "The logo used in dark theme",
"MCP Servers": "MCP Servers",
"MCP Store": "MCP Store",
"MFA items": "MFA items",
"MFA items - Tooltip": "MFA items",
"Master password": "Master password",
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
"Master verification code": "Master verification code",
"Master verification code - Tooltip": "When the master verification code is set, all email and SMS verification codes sent under this organization will use this fixed code. It's mainly used for automated testing and CI purposes and is generally not used in normal environments",
"Menu": "Menu",
"Method": "Method",
"Model": "Model",
"Model - Tooltip": "Casbin access control model",
"Models": "Models",
"More": "More",
"Name": "Name",
"Name - Tooltip": "Unique, string-based ID",
"Name format": "Name format",
"No data": "No data",
"No products available": "No products available",
"No sheets found in file": "No sheets found in file",
"No verification method": "No verification method",
"Non-LDAP": "Non-LDAP",
"None": "None",
"OAuth providers": "OAuth providers",
"OFF": "OFF",
"OK": "OK",
"ON": "ON",
"Only 1 MFA method can be required": "Only 1 MFA method can be required",
"Or": "Or",
"Orders": "Orders",
"Organization": "Organization",
"Organization - Tooltip": "Similar to concepts such as tenants or user pools, each user and application belongs to an organization",
"Organization is null": "Organization is null",
"Organizations": "Organizations",
"Owner": "Owner",
"Parent": "Parent",
"Password": "Password",
"Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Key used by the password obfuscator",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator used when the frontend sends passwords to the backend",
"Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type",
"Password type - Tooltip": "Storage format of passwords in the database",
"Path": "Path",
"Payment": "Payment",
"Payment - Tooltip": "Corresponding payment",
"Payments": "Payments",
"Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned by this user",
"Phone": "Phone",
"Phone - Tooltip": "Phone number",
"Phone only": "Phone only",
"Phone or Email": "Phone or Email",
"Place Order": "Place Order",
"Plain": "Plain",
"Plan": "Plan",
"Plan - Tooltip": "Plan in the subscription",
"Plans": "Plans",
"Plans - Tooltip": "Plans in the subscription",
"Please complete the captcha correctly": "Please complete the captcha correctly",
"Please input your search": "Please input your search",
"Please select at least 1 user first": "Please select at least 1 user first",
"Port": "Port",
"Preview": "Preview",
"Preview - Tooltip": "Preview the configured effects",
"Pricing": "Pricing",
"Pricing - Tooltip": "Corresponding pricing",
"Pricings": "Pricings",
"Product": "Product",
"Product Store": "Product Store",
"Products": "Products",
"Provider": "Provider",
"Provider - Tooltip": "Payment providers to be configured, including PayPal, Alipay, WeChat Pay, etc.",
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
"QR Code": "QR Code",
"QR code is too large": "QR code is too large",
"Records": "Records",
"Refresh": "Refresh",
"Request": "Request",
"Request URI": "Request URI",
"Reset to Default": "Reset to Default",
"Resources": "Resources",
"Restore": "Restore",
"Role": "Role",
"Role - Tooltip": "Corresponding role",
"Roles": "Roles",
"Roles - Tooltip": "Roles that the user belongs to",
"Root cert": "Root cert",
"Root cert - Tooltip": "Root certificate",
"Rules": "Rules",
"SAML attributes": "SAML attributes",
"SAML attributes - Tooltip": "SAML attributes returned when Casdoor is used as SAML IdP",
"SSH cert": "SSH cert",
"SSH type": "SSH type",
"SSH type - Tooltip": "The auth type of SSH connection",
"Save": "Save",
"Save & Exit": "Save & Exit",
"Scan": "Scan",
"Scopes": "Scopes",
"Scopes - Tooltip": "OAuth 2.0 scopes that define the permissions and level of access granted to the token",
"Search": "Search",
"Select all": "Select all",
"Selected": "Selected",
"Self": "Self",
"Send": "Send",
"Session ID": "Session ID",
"Sessions": "Sessions",
"Severity": "Severity",
"Shortcuts": "Shortcuts",
"Signin URL": "Signin URL",
"Signin URL - Tooltip": "Custom URL for the login page. If not set, the default Casdoor login page will be used. When set, the login links on various Casdoor pages will redirect to this URL",
"Signup URL": "Signup URL",
"Signup URL - Tooltip": "Custom URL for the registration page. If not set, the default Casdoor registration page will be used. When set, the registration links on various Casdoor pages will redirect to this URL",
"Signup application": "Signup application",
"Signup application - Tooltip": "Which application the user registered through when they signed up",
"Signup link": "Signup link",
"Sites": "Sites",
"Sorry, the page you visited does not exist.": "Sorry, the page you visited does not exist.",
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
"Sorry, you do not have permission to access this page or logged in status invalid.": "Sorry, you do not have permission to access this page or logged in status invalid.",
"State": "State",
"State - Tooltip": "State",
"Status": "Status",
"Subscriptions": "Subscriptions",
"Successfully added": "Successfully added",
"Successfully canceled": "Successfully canceled",
"Successfully copied": "Successfully copied",
"Successfully deleted": "Successfully deleted",
"Successfully executed": "Successfully executed",
"Successfully got": "Successfully got",
"Successfully modified": "Successfully modified",
"Successfully removed": "Successfully removed",
"Successfully revoked": "Successfully revoked",
"Successfully saved": "Successfully saved",
"Successfully sent": "Successfully sent",
"Successfully synced": "Successfully synced",
"Supported country codes": "Supported country codes",
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
"Sure to delete": "Sure to delete",
"Sure to disable": "Sure to disable",
"Sure to remove": "Sure to remove",
"Swagger": "Swagger",
"Sync": "Sync",
"Syncers": "Syncers",
"System Info": "System Info",
"Tab": "Tab",
"Tag": "Tag",
"The actions cannot be empty": "The actions cannot be empty",
"The resources cannot be empty": "The resources cannot be empty",
"The users and roles cannot be empty at the same time": "The users and roles cannot be empty at the same time",
"There was a problem signing you in..": "There was a problem signing you in..",
"This field is required": "This field is required",
"This is a read-only demo site!": "This is a read-only demo site!",
"Tickets": "Tickets",
"Timestamp": "Timestamp",
"Title": "Title",
"Title - Tooltip": "Browser page title",
"Token attributes": "Token attributes",
"Token attributes - Tooltip": "Token attributes",
"Tokens": "Tokens",
"Tool": "Tool",
"Tool - Tooltip": "The tool or utility associated with this configuration, such as an MCP tool or integration",
"Tour": "Tour",
"Transactions": "Transactions",
"True": "True",
"Type": "Type",
"Type - Tooltip": "The category or type that classifies this item's behavior or configuration",
"UID number": "UID number",
"UID number - Tooltip": "The POSIX user ID published by the built-in LDAP server. Leave it as 0 to derive the number from the username",
"URL": "URL",
"URL - Tooltip": "URL link",
"Unauthorized": "Unauthorized",
"Unknown application name": "Unknown application name",
"Unknown authentication type": "Unknown authentication type",
"Up": "Up",
"Update time": "Update time",
"Updated time": "Updated time",
"Upload (.xlsx)": "Upload (.xlsx)",
"Url": "Url",
"User": "User",
"User - Tooltip": "Make sure the username is correct",
"User Management": "User Management",
"User agent": "User agent",
"User already exists": "User already exists",
"User containers": "User pools",
"User type": "User type",
"User type - Tooltip": "Tags that the user belongs to, defaulting to \"normal-user\"",
"Users": "Users",
"Users - Tooltip": "Users",
"Users under all organizations": "Users under all organizations",
"Vendor": "Vendor",
"Verifications": "Verifications",
"View": "View",
"Webhook": "Webhook",
"Webhook Events": "Webhook Events",
"Webhooks": "Webhooks",
"Website": "Website",
"You can only select one physical group": "You can only select one physical group",
"You must select a picture first": "You must select a picture first",
"empty": "empty",
"remove": "remove",
"{total} in total": "{total} in total"
},
"group": {
"Edit Group": "Edit Group",
"New Group": "New Group",
"Parent group": "Parent group",
"Parent group - Tooltip": "Parent group of this group",
"Physical": "Physical",
"Show all": "Show all",
"Virtual": "Virtual",
"You need to delete all subgroups first. You can view the subgroups in the left group tree of the [Organizations] -> [Groups] page": "You need to delete all subgroups first. You can view the subgroups in the left group tree of the [Organizations] -> [Groups] page"
},
"home": {
"New users / 30 days": "New users / 30 days",
"New users / 7 days": "New users / 7 days",
"New users today": "New users today",
"Past 30 days": "Past 30 days",
"Total users": "Total users"
},
"invitation": {
"Code": "Code",
"Code - Tooltip": "Can be a single string as an invitation code, or a regular expression. All strings matching the regular expression are valid invitation codes",
"Default code": "Default code",
"Default code - Tooltip": "When the invitation code is a regular expression, please enter the invitation code that matches the regular expression rule as the default invitation code for the invitation link",
"Edit Invitation": "Edit Invitation",
"New Invitation": "New Invitation",
"Quota": "Quota",
"Quota - Tooltip": "The maximum number of users that can register using this invitation code",
"Used count": "Used count",
"Used count - Tooltip": "The number of times this invitation code has been used",
"You need to first specify a default application for organization: ": "You need to first specify a default application for organization: "
},
"key": {
"Access secret - Tooltip": "The secret key used to authenticate API requests; keep this value confidential",
"Edit Key": "Edit Key",
"Inactive": "Inactive",
"New Key": "New Key"
},
"ldap": {
"Admin - Tooltip": "CN or ID of the LDAP server administrator",
"Admin Password": "Admin Password",
"Admin Password - Tooltip": "LDAP server administrator password",
"Allow self-signed certificate": "Allow self-signed certificate",
"Allow self-signed certificate - Tooltip": "Allow use of self-signed certificates",
"Auto Sync": "Auto Sync",
"Auto Sync - Tooltip": "Auto-sync configuration, disabled when set to 0",
"Base DN": "Base DN",
"Base DN - Tooltip": "Base DN for LDAP searches",
"CN": "CN",
"Custom attributes": "Custom attributes",
"Custom attributes - Tooltip": "Custom LDAP attributes",
"Default group": "Default group",
"Default group - Tooltip": "Group to which users belong after synchronization",
"Edit LDAP": "Edit LDAP",
"Enable SSL": "Enable SSL",
"Enable SSL - Tooltip": "Whether to enable SSL",
"Enable groups": "Enable groups",
"Filter fields": "Filter fields",
"Filter fields - Tooltip": "Fields used to search for LDAP users when logging into Casdoor with LDAP credentials",
"Group ID": "Group ID",
"LDAP attribute name": "LDAP attribute name",
"Last Sync": "Last Sync",
"Only one physical group can be selected as default": "Only one physical group can be selected as default",
"Search Filter": "Search Filter",
"Search Filter - Tooltip": "LDAP search filter",
"Server": "Server",
"Server host": "Server host",
"Server host - Tooltip": "LDAP server address",
"Server name": "Server name",
"Server name - Tooltip": "LDAP server configuration display name",
"Server port": "Server port",
"Server port - Tooltip": "LDAP server port",
"The Auto Sync option will sync all users to specify organization": "The Auto Sync option will sync all users to specify organization",
"User property name": "User property name",
"synced": "synced",
"unsynced": "unsynced"
},
"login": {
"Approve and sign in": "Approve and sign in",
"Approve sign-in on this device": "Approve sign-in on this device",
"Auto sign in": "Auto sign in",
"Back button": "Back button",
"Click the button below to sign in with Telegram": "Click the button below to sign in with Telegram",
"Confirmation code": "Confirmation code",
"Continue with": "Continue with",
"Continue with your current account to approve this sign-in": "Continue with your current account to approve this sign-in",
"Device login": "Device login",
"Device login expired": "Device login expired",
"Device login is unavailable": "Device login is unavailable",
"Device login was canceled": "Device login was canceled",
"Email or phone": "Email or phone",
"Face ID": "Face ID",
"Face Recognition": "Face Recognition",
"Face recognition failed": "Face recognition failed",
"Failed to obtain MetaMask authorization": "Failed to obtain MetaMask authorization",
"Failed to obtain Web3-Onboard authorization": "Failed to obtain Web3-Onboard authorization",
"Forgot password?": "Forgot password?",
"Invalid Native SSO response": "Invalid Native SSO response",
"LDAP": "LDAP",
"LDAP username, Email or phone": "LDAP username, Email or phone",
"Loading": "Loading",
"Logging out...": "Logging out...",
"MetaMask plugin not detected": "MetaMask plugin not detected",
"Model loading failure": "Model loading failure",
"Native SSO": "Native SSO",
"Native SSO is ready": "Native SSO is ready",
"Native SSO was denied": "Native SSO was denied",
"No account?": "No account?",
"Or sign in with another account": "Or sign in with another account",
"Please ensure sufficient lighting and align your face in the center of the recognition box": "Please ensure sufficient lighting and align your face in the center of the recognition box",
"Please ensure that you have a camera device for facial recognition": "Please ensure that you have a camera device for facial recognition",
"Please input your Email or Phone!": "Please input your Email or Phone!",
"Please input your Email!": "Please input your Email!",
"Please input your LDAP username!": "Please input your LDAP username!",
"Please input your Phone!": "Please input your Phone!",
"Please input your RADIUS password!": "Please input your RADIUS password!",
"Please input your RADIUS username!": "Please input your RADIUS username!",
"Please input your code!": "Please input your code!",
"Please input your organization name!": "Please input your organization name!",
"Please input your password!": "Please input your password!",
"Please input your push notification receiver!": "Please input your push notification receiver!",
"Please load the webpage using HTTPS, otherwise the camera cannot be accessed": "Please load the webpage using HTTPS, otherwise the camera cannot be accessed",
"Please open the login page in an external browser to sign in with WeChat, or ask the administrator to configure a WeChat Official Account": "Please open the login page in an external browser to sign in with WeChat, or ask the administrator to configure a WeChat Official Account",
"Please provide permission to access the camera": "Please provide permission to access the camera",
"Please select an organization": "Please select an organization",
"Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.",
"Scan this QR code with a signed-in device to continue": "Scan this QR code with a signed-in device to continue",
"Select organization": "Select organization",
"Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID",
"Sign in with Telegram": "Sign in with Telegram",
"Sign in with WebAuthn": "Sign in with WebAuthn",
"Sign in with {type}": "Sign in with {type}",
"Signed in on this device with {app}": "Signed in on this device with {app}",
"Signin button": "Signin button",
"Signing in...": "Signing in...",
"Successfully logged in with WebAuthn credentials": "Successfully logged in with WebAuthn credentials",
"The camera is currently in use by another webpage": "The camera is currently in use by another webpage",
"The input is not valid Email or phone number!": "The input is not valid Email or phone number!",
"The input is not valid Email!": "The input is not valid Email!",
"The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access",
"Use other login methods": "Use other login methods",
"Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn",
"sign up now": "sign up now",
"username or Email": "username or Email",
"username or phone": "username or phone",
"username, Email or phone": "username, Email or phone"
},
"mfa": {
"Each time you sign in to your Account, you'll need your password and a authentication code": "Each time you sign in to your Account, you'll need your password and a authentication code",
"Enable multi-factor authentication": "Enable multi-factor authentication",
"Failed to initiate MFA": "Failed to initiate MFA",
"Have problems?": "Have problems?",
"Multi-factor authentication": "Multi-factor authentication",
"Multi-factor authentication - Tooltip ": "Multi-factor authentication settings",
"Multi-factor methods": "Multi-factor methods",
"Multi-factor recover": "Multi-factor recover",
"Multi-factor recover description": "If you cannot access your device, enter your multi-factor authentication recovery code to confirm your identity",
"Or copy the secret to your Authenticator App": "Or copy the secret to your Authenticator App",
"Please bind your email first, the system will automatically uses the mail for multi-factor authentication": "Please bind your email first, the system will automatically uses the mail for multi-factor authentication",
"Please bind your phone first, the system automatically uses the phone for multi-factor authentication": "Please bind your phone first, the system automatically uses the phone for multi-factor authentication",
"Please confirm the information below": "Please confirm the information below",
"Please save this recovery code. Once your device cannot provide an authentication code, you can reset mfa authentication by this recovery code": "Please save this recovery code. Once your device cannot provide an authentication code, you can reset mfa authentication by this recovery code",
"Protect your account with Multi-factor authentication": "Protect your account with Multi-factor authentication",
"Push notification receiver": "Push notification receiver",
"Recovery code": "Recovery code",
"Remember this account for {hour} hours": "Remember this account for {hour} hours",
"Scan the QR code with your Authenticator App": "Scan the QR code with your Authenticator App",
"Set preferred": "Set preferred",
"Setup": "Setup",
"To ensure the security of your account, it is recommended that you enable multi-factor authentication": "To ensure the security of your account, it is recommended that you enable multi-factor authentication",
"To ensure the security of your account, it is required to enable multi-factor authentication": "To ensure the security of your account, it is required to enable multi-factor authentication",
"Use Authenticator App": "Use Authenticator App",
"Use Email": "Use Email",
"Use Push Notification": "Use Push Notification",
"Use Radius": "Use Radius",
"Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code",
"Verify Code": "Verify Code",
"Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Get Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Get Code' to continue",
"You have enabled Multi-Factor Authentication, please enter the RADIUS password": "You have enabled Multi-Factor Authentication, please enter the RADIUS password",
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
"You have enabled Multi-Factor Authentication, please enter the verification code from push notification": "You have enabled Multi-Factor Authentication, please enter the verification code from push notification",
"Your email is": "Your email is",
"Your phone is": "Your phone is",
"preferred": "preferred"
},
"model": {
"Advanced Editor": "Advanced Editor",
"Basic Editor": "Basic Editor",
"Edit Model": "Edit Model",
"Model text": "Model text",
"Model text - Tooltip": "Casbin access control model, including built-in models like ACL, RBAC, ABAC, RESTful, etc. You can also create custom models. For more information, please visit the Casbin website",
"New Model": "New Model"
},
"order": {
"Cancel time": "Cancel time",
"Edit Order": "Edit Order",
"New Order": "New Order",
"Order not found": "Order not found",
"Pay": "Pay",
"Payment failed time": "Payment failed time",
"Payment time": "Payment time",
"Price": "Price",
"Return to Order List": "Return to Order List",
"Timeout time": "Timeout time",
"View Order": "View Order"
},
"organization": {
"Account items": "Account items",
"Account items - Tooltip": "Items in the Personal settings page",
"Account menu": "Account menu",
"Account menu - Tooltip": "Navigation menu items displayed in the user account dropdown",
"Admin navbar items": "Admin navbar items",
"Admin navbar items - Tooltip": "Custom navigation bar items shown to administrators in the admin panel",
"Balance credit": "Balance credit",
"Balance credit - Tooltip": "The credit balance of the organization used for billing or quota purposes",
"Balance currency": "Balance currency",
"Balance currency - Tooltip": "The currency unit used for the organization's account balance",
"Default token format": "Default token format",
"Default token format - Tooltip": "The token format used by newly created applications of this organization, existing applications are not affected",
"Edit Organization": "Edit Organization",
"Follow global theme": "Follow global theme",
"Has privilege consent": "Has privilege consent",
"Has privilege consent - Tooltip": "Prevent adding users for built-in organization if HasPrivilegeConsent is false",
"Has privilege consent warning": "Adding a new user to the 'built-in' organization is currently disabled. Please note: all users in the 'built-in' organization are global administrators in Casdoor. Refer to the docs: https://casdoor.org/docs/basic/core-concepts#how-does-casdoor-manage-itself. If you still wish to create a user for the 'built-in' organization, go to the organization's settings page and enable the 'Has privilege consent' option.",
"Init score": "Init score",
"Init score - Tooltip": "Initial score points awarded to users upon registration",
"Is profile public": "Is profile public",
"Is profile public - Tooltip": "After being closed, only global administrators or users in the same organization can access the user's profile page",
"Kerberos KDC host": "Kerberos KDC host",
"Kerberos KDC host - Tooltip": "The hostname of the Kerberos Key Distribution Center (e.g., kdc.example.com)",
"Kerberos keytab": "Kerberos keytab",
"Kerberos keytab - Tooltip": "The base64-encoded keytab file for the service principal",
"Kerberos realm": "Kerberos realm",
"Kerberos realm - Tooltip": "The Kerberos realm for IWA/SPNEGO authentication (e.g., EXAMPLE.COM)",
"Kerberos service name": "Kerberos service name",
"Kerberos service name - Tooltip": "The Kerberos service principal name (defaults to HTTP)",
"LDAP attributes": "LDAP attributes",
"LDAP attributes - Tooltip": "Mapping of LDAP directory attributes to Casdoor user fields for directory synchronization",
"Modify rule": "Modify rule",
"New Organization": "New Organization",
"Optional": "Optional",
"Org balance": "Org balance",
"Org balance - Tooltip": "The total account balance of the organization",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Number of days before password expires",
"Prompt": "Prompt",
"Record retention days": "Record retention days",
"Record retention days - Tooltip": "Number of days to keep the organization's records (audit logs) before they are automatically deleted by a daily cleanup job. Leave it empty or set it to 0 to keep the records forever",
"Required": "Required",
"Soft deletion": "Soft deletion",
"Soft deletion - Tooltip": "When enabled, deleting users will not completely remove them from the database. Instead, they will be marked as deleted",
"Tags": "Tags",
"Token retention days": "Token retention days",