-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy pathen.ts
More file actions
4195 lines (4193 loc) · 224 KB
/
en.ts
File metadata and controls
4195 lines (4193 loc) · 224 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
import fit2cloudEnLocale from 'fit2cloud-ui-plus/src/locale/lang/en';
const message = {
commons: {
true: 'True',
false: 'False',
colon: ': ',
example: 'e.g., ',
fit2cloud: 'FIT2CLOUD',
lingxia: 'Lingxia',
button: {
run: 'Run',
prev: 'Previous',
next: 'Next',
create: 'Create',
add: 'Add',
save: 'Save',
set: 'Set',
sync: 'Sync',
delete: 'Delete',
edit: 'Edit',
enable: 'Enable',
disable: 'Disable',
confirm: 'Confirm',
cancel: 'Cancel',
reset: 'Reset',
setDefault: 'Restore Default',
restart: 'Restart',
conn: 'Connect',
disConn: 'Disconnect',
clean: 'Clean',
login: 'Login',
close: 'Close',
stop: 'Stop',
start: 'Start',
view: 'View',
watch: 'Watch',
handle: 'Trigger',
clone: 'Clone',
expand: 'Expand',
collapse: 'Collapse',
log: 'Logs',
back: 'Back',
backup: 'Backup',
recover: 'Recover',
retry: 'Retry',
upload: 'Upload',
download: 'Download',
init: 'Initialize',
verify: 'Verify',
saveAndEnable: 'Save and enable',
import: 'Import',
export: 'Export',
power: 'Permissions',
search: 'Search',
refresh: 'Refresh',
get: 'Get',
upgrade: 'Upgrade',
update: 'Update',
updateNow: 'Update Now',
ignore: 'Ignore upgrade',
copy: 'Copy',
random: 'Random',
install: 'Install',
uninstall: 'Uninstall',
fullscreen: 'Enter fullscreen',
quitFullscreen: 'Exit fullscreen',
showAll: 'Show All',
hideSome: 'Hide Some',
agree: 'Agree',
notAgree: 'Disagree',
preview: 'Preview',
open: 'Open',
notSave: "Don't Save",
createNewFolder: 'Create new folder',
createNewFile: 'Create new file',
helpDoc: 'Docs',
bind: 'Bind',
unbind: 'Unbind',
cover: 'Cover',
skip: 'Skip',
fix: 'Fix',
down: 'Stop',
up: 'Start',
sure: 'Confirm',
show: 'Show',
hide: 'Hide',
visit: 'Visit',
migrate: 'Migrate',
},
operate: {
start: 'Start',
stop: 'Stop',
restart: 'Restart',
reload: 'Reload',
rebuild: 'Rebuild',
sync: 'Sync',
up: 'Up',
down: 'Down',
delete: 'Delete',
},
search: {
timeStart: 'Start time',
timeEnd: 'End time',
timeRange: 'To',
dateStart: 'Start date',
dateEnd: 'End date',
date: 'Date',
},
table: {
all: 'All',
total: 'Total {0}',
name: 'Name',
type: 'Type',
status: 'Status',
statusSuccess: 'Success',
statusFailed: 'Failed',
statusWaiting: 'Waiting...',
records: 'Records',
group: 'Group',
default: 'Default',
createdAt: 'Created',
publishedAt: 'Published',
date: 'Date',
updatedAt: 'Updated',
operate: 'Actions',
message: 'Message',
description: 'Description',
interval: 'Interval',
user: 'Owner',
title: 'Title',
port: 'Port',
forward: 'Forward',
protocol: 'Protocol',
tableSetting: 'Table settings',
refreshRate: 'Refresh interval',
noRefresh: 'No refresh',
selectColumn: 'Select column',
local: 'Local',
serialNumber: 'No.',
manageGroup: 'Manage Groups',
backToList: 'Back to List',
keepEdit: 'Continue Editing',
},
loadingText: {
Upgrading: 'Upgrading system, please wait...',
Restarting: 'Restarting system, please wait...',
Recovering: 'Recovering from snapshot, please wait...',
Rollbacking: 'Rolling back snapshot, please wait...',
},
msg: {
noneData: 'No data available',
delete: 'This action cannot be undone. Continue?',
clean: 'This cleanup cannot be undone. Continue?',
closeDrawerHelper: 'Unsaved changes may be lost. Continue?',
deleteSuccess: 'Deleted successfully',
loginSuccess: 'Logged in successfully',
operationSuccess: 'Completed successfully',
copySuccess: 'Copied successfully',
notSupportOperation: 'This operation is not supported',
requestTimeout: 'Request timed out, try again later',
infoTitle: 'Notice',
notRecords: 'No run records for this task',
sureLogOut: 'Are you sure you want to log out?',
createSuccess: 'Created successfully',
updateSuccess: 'Updated successfully',
uploadSuccess: 'Uploaded successfully',
operateConfirm: 'To confirm, type: ',
inputOrSelect: 'Select or enter',
copyFailed: 'Failed to copy',
operatorHelper: 'Run "{1}" on "{0}". This cannot be undone. Continue?',
notFound: 'Sorry, the page you requested does not exist.',
unSupportType: 'Current file type is not supported.',
unSupportSize: 'Uploaded file exceeds {0}M. Confirm.',
fileExist: 'The file already exists in the current folder. Repeat uploading is not supported.',
fileNameErr: 'Filename must be 1-256 chars and only include letters, numbers, dots, dashes, or underscores',
confirmNoNull: 'Make sure the value {0} is not empty.',
errPort: 'Invalid port, please check',
remove: 'Remove',
backupHelper: 'The current operation will back up {0}. Proceed?',
recoverHelper: 'Restore from {0}. This is irreversible. Continue?',
backupSuccess: 'Backup successful',
restoreSuccess: 'Restore successful',
refreshSuccess: 'Refreshed successfully',
rootInfoErr: "It's already the root directory",
resetSuccess: 'Reset successful',
creatingInfo: 'Creating, no need for this operation',
installSuccess: 'Installed successfully',
uninstallSuccess: 'Uninstalled successfully',
offlineTips: 'Offline edition does not support this action',
errImportFormat: 'Import data or format is abnormal, check and try again!',
importHelper: 'If conflicts exist, imported data overwrites existing records.',
errImport: 'File content is abnormal:',
},
login: {
username: 'Username',
password: 'Password',
passkey: 'Passkey Login',
welcome: 'Welcome back. Sign in with your username and password.',
errorAuthInfo: 'Incorrect username or password, try again.',
errorMfaInfo: 'Invalid authentication info, try again.',
captchaHelper: 'Captcha',
errorCaptcha: 'Invalid captcha code',
notSafe: 'Access Denied',
safeEntrance1: 'Secure entry is enabled in this environment',
safeEntrance2: 'Run this command over SSH to view the panel entry: 1pctl user-info',
errIP1: 'IP allowlist is enabled in this environment',
errDomain1: 'Domain binding is enabled in this environment',
errHelper: 'To reset binding info, run this command over SSH: ',
codeInput: 'Enter the 6-digit MFA code',
mfaTitle: 'MFA Verification',
mfaCode: 'MFA verification code',
title: 'Linux Server Management Panel',
licenseHelper: '<Community License Agreement>',
errorAgree: 'Please accept the Community License Agreement',
logout: 'Logout',
agreeTitle: 'Agreement',
agreeContent:
'In order to better protect your legitimate rights and interests, please read and agree to the following agreement « <a href = "https://www.fit2cloud.com/legal/licenses.html" target = "_blank" > Community License Agreement </a> »',
passkeyFailed: 'Passkey sign-in failed, please try again',
passkeyNotSupported:
'Current browser or environment does not support passkeys, confirm you have bound a domain name and are accessing through HTTPS',
passkeyToPassword: 'Passkey not working? Use password instead',
},
rule: {
username: 'Enter a username',
password: 'Enter a password',
rePassword: 'Confirm password is inconsistent with the password.',
requiredInput: 'This field is required.',
requiredSelect: 'Select an item in the list',
illegalChar: 'Injection of characters & ; $ \' ` ( ) " > < | is currently not supported',
illegalInput: "This field mustn't contains illegal characters.",
commonName:
'This field must start with non-special characters and must consist of English, Chinese, numbers, ".", "-", and "_" characters with a length of 1-128.',
userName: 'This field must consist of English, Chinese, numbers and "_" characters with a length of 3-30.',
simpleName:
'This field mustn\'t start with underscore character and must consist of English, numbers, and "_" characters with a length of 3-30.',
simplePassword:
'This field mustn\'t start with underscore character and must consist of English, numbers, and "_" characters with a length of 1-30.',
dbName: 'This field mustn\'t start with underscore character and must consist of English, numbers, and "_" characters with a length of 1-64.',
imageName:
'This field must consist of English, numbers, ":", "@", "/", ".", "-", and "_" characters with a length of 1-256.',
volumeName:
'This field must consist of English, numbers, ".", "-", and "_" characters with a length of 2-30.',
supervisorName:
'This field must start with non-special characters and must consist of English, numbers, "-", and "_" characters with a length of 1-128.',
composeName:
'Supports non-special characters at the beginning, lowercase letters, numbers, - and _, length 1-256',
complexityPassword:
'This field must consist of English, numbers with a length of 8-30 and contain at least two special characters.',
commonPassword: 'This field length must be more than 6.',
linuxName:
'This field length must be between 1 and 128. The field mustn\'t contain these special characters: "{0}".',
email: 'This field must be a valid email address.',
number: 'This field must be a number.',
integer: 'This field must be a positive integer.',
ip: 'This field must be a valid IP address.',
host: 'This field must be a valid IP address or domain name.',
hostHelper: 'Support input of IP address or domain name',
port: 'This field must be a valid port number.',
selectHelper: 'Select the correct {0} file',
domain: 'This field must be like: example.com or example.com:8080.',
databaseName: 'This field must consist of English, numbers, and "_" characters with a length of 1-30.',
ipErr: 'This field must be a valid IP address.',
numberRange: 'This field must be a number between {0} and {1}.',
paramName:
'This field must consist of English, numbers, ".", "-", and "_" characters with a length of 2-30.',
paramComplexity:
'This field mustn\'t start and end with special characters and must consist of English, numbers, "{0}" characters with a length of 6-128.',
paramUrlAndPort: 'This field must be in the format of "http(s)://(domain name/ip):(port)".',
nginxDoc: 'This field must consist of English, numbers and "." characters.',
appName:
'This field musnt\'t start and end with "-" and "_" characters and must consist of English, numbers, "-", and "_" characters with a length of 2-30.',
containerName: 'Supports letters, numbers, -, _ and .; cannot start with - _ or .; length: 2-128',
mirror: 'The mirror acceleration address should start with http(s)://, support English letters (both uppercase and lowercase), numbers, . / and -, and should not contain blank lines.',
disableFunction: 'Only support letters ,underscores,and,',
leechExts: 'Only support letters, numbers and,',
paramSimple: 'Support lowercase letters and numbers, length 1-128',
filePermission: 'File Permission Error',
formatErr: 'Format error, please check and retry',
phpExtension: 'Only supports , _ lowercase English and numbers',
paramHttp: 'Must start with http:// or https://',
phone: 'The format of the phone number is incorrect',
authBasicPassword: 'Supports letters, numbers, and common special characters, length 1-72',
length128Err: 'Length cannot exceed 128 characters',
maxLength: 'Length cannot exceed {0} characters',
alias: 'Supports English, numbers, - and _, length 1-128, and cannot start or end with -_.',
},
res: {
paramError: 'Request failed. Try again later.',
forbidden: 'Current user has no permission',
serverError: 'Service error',
notFound: 'Resource does not exist',
commonError: 'Request failed',
},
service: {
serviceNotStarted: 'The {0} service is not started.',
},
status: {
running: 'Running',
done: 'Done',
scanFailed: 'Incomplete',
success: 'Success',
waiting: 'Waiting',
waitForUpgrade: 'Wait for Upgrade',
failed: 'Failed',
stopped: 'Stopped',
error: 'Error',
created: 'Created',
restarting: 'Restarting',
uploading: 'Uploading',
unhealthy: 'Unhealthy',
removing: 'Removing',
paused: 'Paused',
exited: 'Exited',
dead: 'Dead',
installing: 'Installing',
enabled: 'Enabled',
disabled: 'Disabled',
normal: 'Normal',
building: 'Building',
upgrading: 'Upgrading',
pending: 'Pending Edit',
rebuilding: 'Rebuilding',
deny: 'Denied',
accept: 'Accepted',
used: 'Used',
unused: 'Unused',
starting: 'Starting',
recreating: 'Recreating',
creating: 'Creating',
init: 'Waiting for application',
ready: 'Ready',
applying: 'Applying',
uninstalling: 'Uninstalling',
lost: 'Lost Contact',
bound: 'Bound',
unbind: 'Unbound',
exceptional: 'Exceptional',
free: 'Free',
enable: 'Enabled',
disable: 'Disabled',
deleted: 'Deleted',
downloading: 'Downloading',
packing: 'Packing',
sending: 'Sending',
healthy: 'Normal',
executing: 'Executing',
installerr: 'Installation failed',
applyerror: 'Apply failed',
systemrestart: 'Interrupted',
starterr: 'Startup failed',
uperr: 'Startup failed',
new: 'New',
conflict: 'Conflict',
duplicate: 'Duplicate',
unexecuted: 'Unexecuted',
},
units: {
second: ' second | second | seconds',
minute: 'minute | minute | minutes',
hour: 'hour | hour | hours',
day: 'day | day | days',
week: 'week | week | weeks',
month: 'month | month | months',
year: 'year | year | years',
time: 'rqm',
core: 'core | core | cores',
millisecond: 'millisecond | milliseconds',
secondUnit: 's',
minuteUnit: 'min',
hourUnit: 'h',
dayUnit: 'd',
semicolon: ';',
},
log: {
noLog: 'No logs available',
},
},
menu: {
home: 'Dashboard',
apps: 'App Store',
website: 'Website | WebSites',
project: 'Project | Projects',
config: 'Configuration | Configurations',
ssh: 'SSH Settings',
firewall: 'Firewall',
filter: 'Filter',
ssl: 'Certificate | Certificates',
database: 'Database | Databases',
aiTools: 'AI',
mcp: 'MCP',
container: 'Container | Containers',
cronjob: 'Cron Job | Cron Jobs',
system: 'System',
security: 'Security',
files: 'File Browser',
monitor: 'Monitoring',
terminal: 'Terminal | Terminals',
settings: 'Settings',
toolbox: 'Toolbox',
logs: 'Log | Logs',
runtime: 'Runtime | Runtimes',
processManage: 'Process | Processes',
process: 'Process | Processes',
network: 'Network | Networks',
supervisor: 'Supervisor',
tamper: 'Tamper-proof',
app: 'Application',
msgCenter: 'Tasks',
disk: 'Disk',
},
home: {
recommend: 'Recommended',
dir: 'Directory',
alias: 'Alias',
quickDir: 'Quick Access',
minQuickJump: 'Add at least one quick access entry',
maxQuickJump: 'You can add up to four quick access entries',
database: 'Database - All',
restart_1panel: 'Restart panel',
restart_system: 'Restart server',
operationSuccess: 'Completed successfully. Rebooting now, refresh the browser later.',
entranceHelper:
'Security entrance is not enabled. You can enable it in "Settings -> Security" to improve system security.',
appInstalled: 'Applications',
systemInfo: 'System information',
hostname: 'Hostname',
platformVersion: 'Operating system',
kernelVersion: 'Kernel',
kernelArch: 'Architecture',
network: 'Network',
io: 'Disk I/O',
ip: 'Local IP',
proxy: 'System proxy',
baseInfo: 'Basic info',
totalSend: 'Total sent',
totalRecv: 'Total received',
rwPerSecond: 'I/O operations',
ioDelay: 'I/O latency',
uptime: 'Uptime',
runningTime: 'Up since',
mem: 'System memory',
swapMem: 'Swap',
runSmoothly: 'Low load',
runNormal: 'Moderate load',
runSlowly: 'High load',
runJam: 'Heavy load',
core: 'Physical cores',
logicCore: 'Logical cores',
corePercent: 'Core Usage',
cpuFrequency: 'CPU Frequency',
cpuDetailedPercent: 'CPU usage details',
cpuUser: 'User',
cpuSystem: 'System',
cpuIdle: 'Idle',
cpuIrq: 'IRQ',
cpuSoftirq: 'Soft IRQ',
cpuSteal: 'Steal',
cpuTop: 'Top 5 Processes by CPU Usage',
memTop: 'Top 5 Processes by Memory Usage',
loadAverage: 'Load average in the last 1 minute | Load average in the last {n} minutes',
load: 'Load',
mount: 'Mount point',
fileSystem: 'File system',
total: 'Total',
used: 'Used',
cache: 'Cache',
free: 'Free',
shard: 'Sharded',
available: 'Available',
percent: 'Utilization',
goInstall: 'Go install',
networkCard: 'NIC',
disk: 'Disk',
memo: 'Memo',
memoPlaceholder: 'Click the edit button to enable editing.',
carouselSetting: 'Carousel settings',
tooltipSensitiveInfo: 'Show/Hide sensitive info',
},
tabs: {
more: 'More',
hide: 'Hide',
closeLeft: 'Close left',
closeRight: 'Close right',
closeCurrent: 'Close current',
closeOther: 'Close other',
closeAll: 'Close All',
},
header: {
logout: 'Logout',
},
database: {
manage: 'Manage Database',
deleteBackupHelper: 'Delete database backups simultaneously',
delete: 'Delete action cannot be undone, please input "',
deleteHelper: '" to delete this database',
noMysql: 'Database service (MySQL or MariaDB)',
noPostgresql: 'Database service PostgreSQL',
goUpgrade: 'Go to upgrade',
goInstall: 'Go to install',
isDelete: 'Deleted',
permission: 'Change permissions',
format: 'Charset',
collation: 'Collation',
collationHelper: 'If empty, use the default collation of the {0} character set',
permissionForIP: 'IP',
permissionAll: 'All (%)',
localhostHelper:
'Configuring database permissions as "localhost" for container deployment will prevent external access to the container. Please choose carefully!',
databaseConnInfo: 'Connection',
rootPassword: 'Root password',
serviceName: 'Service name',
serviceNameHelper: 'Access between containers in the same network.',
backupList: 'Backup',
loadBackup: 'Import',
localUpload: 'Local upload',
hostSelect: 'Server selection',
selectHelper: 'Are you sure you want to import backup file {0}?',
remoteAccess: 'Remote access',
remoteHelper: 'Use commas to separate multiple IPs, e.g. 172.16.10.111,172.16.10.112',
remoteConnHelper: 'Remote MySQL root login is risky. Proceed with caution.',
changePassword: 'Change password',
changeConnHelper: 'This will modify database {0}. Continue?',
changePasswordHelper:
'The database has been associated with an application. Changing the password will change the database password of the application at the same time. The change takes effect after the application restarts.',
recoverTimeoutHelper: '-1 means no timeout',
confChange: 'Configuration',
confNotFound:
'The configuration file could not be found. Please upgrade the application to the latest version in the app store and try again!',
portHelper:
'This port is the exposed port of the container. You need to save the modification separately and restart the container!',
loadFromRemote: 'Sync from server',
userBind: 'Bind user',
pgBindHelper:
'This operation is used to create a new user and bind it to the target database. Currently, selecting users already existing in the database is not supported.',
pgSuperUser: 'Superuser',
loadFromRemoteHelper: 'Sync database info from the server to 1Panel. Continue?',
passwordHelper: 'Not available, click to update',
remote: 'Remote',
remoteDB: 'Remote server | Remote servers',
createRemoteDB: 'Bind @.lower:database.remoteDB',
unBindRemoteDB: 'Unbind @.lower:database.remoteDB',
unBindForce: 'Force unbind',
unBindForceHelper: 'Ignore all errors during the unbinding process to ensure the final operation is successful',
unBindRemoteHelper:
'Unbinding the remote database will only remove the binding relationship and will not directly delete the remote database',
editRemoteDB: 'Edit remote server',
localDB: 'Local database',
address: 'Database address',
version: 'Database version',
userHelper: 'Use root or a user with root privileges to access the remote database.',
pgUserHelper: 'Use a database superuser account.',
ssl: 'Use SSL',
clientKey: 'Client private key',
clientCert: 'Client certificate',
caCert: 'CA certificate',
hasCA: 'Has CA certificate',
skipVerify: 'Skip certificate validation',
initialDB: 'Initial Database',
formatHelper:
'The current database character set is {0}, the character set inconsistency may cause recovery failure',
dropHelper: 'You can drag and drop the uploaded file here or',
clickHelper: 'click to upload',
supportUpType:
'Only supports sql, sql.gz, tar.gz, .zip file formats. The imported compressed file must contain only one .sql file or include test.sql',
currentStatus: 'Current status',
baseParam: 'Basic parameter',
performanceParam: 'Performance parameter',
runTime: 'Start time',
connections: 'Total connections',
bytesSent: 'Send bytes',
bytesReceived: 'Received bytes',
queryPerSecond: 'Query per second',
txPerSecond: 'Tx per second',
connInfo: 'Active/peak connections',
connInfoHelper: 'If the value is too large, increase "max_connections".',
threadCacheHit: 'Thread cache hit',
threadCacheHitHelper: 'If it is too low, increase "thread_cache_size".',
indexHit: 'Index hit',
indexHitHelper: 'If it is too low, increase "key_buffer_size".',
innodbIndexHit: 'Innodb index hit rate',
innodbIndexHitHelper: 'If it is too low, increase "innodb_buffer_pool_size".',
cacheHit: 'Query cache hit rate',
cacheHitHelper: 'If it is too low, increase "query_cache_size".',
tmpTableToDB: 'Temporary table to disk',
tmpTableToDBHelper: 'If it is too large, try increasing "tmp_table_size".',
openTables: 'Open tables',
openTablesHelper: 'The configuration value of "table_open_cache" must be greater than or equal to this value.',
selectFullJoin: 'Select full join',
selectFullJoinHelper: 'If this value is not 0, check table indexes.',
selectRangeCheck: 'The number of joins with no index',
selectRangeCheckHelper: 'If this value is not 0, check table indexes.',
sortMergePasses: 'Number of sorted merges',
sortMergePassesHelper: 'If the value is too large, increase "sort_buffer_size".',
tableLocksWaited: 'Lock table number',
tableLocksWaitedHelper: 'If the value is too large, consider increasing your database performance.',
performanceTuning: 'Performance tuning',
optimizationScheme: 'Optimization scheme',
keyBufferSizeHelper: 'Buffer size for index',
queryCacheSizeHelper: 'Query cache. If this function is disabled, set this parameter to 0.',
tmpTableSizeHelper: 'Temporary table cache size',
innodbBufferPoolSizeHelper: 'Innodb buffer size',
innodbLogBufferSizeHelper: 'Innodb log buffer size',
sortBufferSizeHelper: '* connections, buffer size per thread sort',
readBufferSizeHelper: '* connections, read buffer size',
readRndBufferSizeHelper: '* connections, random read buffer size',
joinBufferSizeHelper: '* connections, association table cache size',
threadStackelper: '* connections, stack size per thread',
binlogCacheSizeHelper: '* onnections, binary log cache size (multiples of 4096)',
threadCacheSizeHelper: 'Thread pool size',
tableOpenCacheHelper: 'Table cache',
maxConnectionsHelper: 'Max connections',
restart: 'Restart',
slowLog: 'Slow logs',
noData: 'No slow logs yet.',
isOn: 'On',
longQueryTime: 'threshold(s)',
thresholdRangeHelper: 'Enter the correct threshold (1 - 600).',
timeout: 'Timeout(s)',
timeoutHelper: 'Idle connection timeout period. 0 indicates that the connection is on continuously.',
maxclients: 'Max clients',
requirepassHelper:
'Leave this blank to indicate that no password has been set. Changes need to be saved separately and the container restarted!',
databases: 'Number of databases',
maxmemory: 'Maximum memory usage',
maxmemoryHelper: '0 indicates no restriction.',
tcpPort: 'Current listening port.',
uptimeInDays: 'Days in operation.',
connectedClients: 'Number of connected clients.',
usedMemory: 'Current memory usage of Redis.',
usedMemoryRss: 'Memory size requested from the operating system.',
usedMemoryPeak: 'Peak memory consumption of Redis.',
memFragmentationRatio: 'Memory fragmentation ratio.',
totalConnectionsReceived: 'Total number of clients connected since run.',
totalCommandsProcessed: 'The total number of commands executed since the run.',
instantaneousOpsPerSec: 'Number of commands executed by the server per second.',
keyspaceHits: 'The number of times a database key was successfully found.',
keyspaceMisses: 'Number of failed attempts to find the database key.',
hit: 'Find the database key hit ratio.',
latestForkUsec: 'The number of microseconds spent on the last fork() operation.',
redisCliHelper: '"redis-cli" not detected. Enable the service first.',
redisQuickCmd: 'Redis quick commands',
recoverHelper: 'This will overwrite data with [{0}]. Continue?',
submitIt: 'Overwrite the data',
baseConf: 'Basic',
allConf: 'All',
restartNow: 'Restart now',
restartNowHelper1:
'You need to restart the system after the configuration changes take effect. If your data needs to be persisted, perform the save operation first.',
restartNowHelper: 'This will take effect only after the system restarts.',
persistence: 'Persistence',
rdbHelper1: 'second(s), insert',
rdbHelper2: 'pieces of data',
rdbHelper3: 'Meeting any of the conditions will trigger RDB persistence.',
rdbInfo: 'Ensure that the value in the rule list ranges from 1 to 100000',
containerConn: 'Container connection',
copyConnURL: 'Copy connection URL',
connAddress: 'Address',
containerConnHelper:
'This connection address is used by applications running on the PHP execution environment/container installation.',
remoteConn: 'External connection',
remoteConnHelper2:
'This connnection address can be used by applications running on non-container or external applications.',
remoteConnHelper3:
'The default access address is the host IP. To modify it, go to the "Default Access Address" configuration item in the panel settings page.',
localIP: 'Local IP',
},
aiTools: {
agents: {
agents: 'Agents',
agent: 'Agent',
account: 'Model Account',
noAccountHint: 'Choose an existing model account or add a new one.',
accountCount: '{0} model accounts',
syncAgents: 'Sync related agents',
syncAgentsHelper: 'Update openclaw.json for agents using this model account',
openclawType: 'OpenClaw',
copawType: 'CoPaw',
appVersion: 'App Version',
webuiPort: 'WebUI Port',
bridgePort: 'Bridge Port',
provider: 'Provider',
apiKey: 'API Key',
baseUrl: 'Base URL',
token: 'Token',
manualModel: 'Manual input',
verified: 'Verified',
verifySkipped: 'Skipped',
configTitle: 'Configuration',
settingsTab: 'Settings',
browserTab: 'Browser',
otherTab: 'Other',
timeZone: 'Time Zone',
browserEnabled: 'Browser Enabled',
headless: 'Headless',
noSandbox: 'No Sandbox',
defaultProfile: 'Default Profile',
executablePath: 'Executable Path',
switchModelSuccess: 'Model switched successfully',
channelsTab: 'Channels',
feishu: 'Feishu',
dmPolicy: 'DM Policy',
groupPolicy: 'Group Policy',
policyPairing: 'Pairing',
policyOpen: 'Open',
policyDisabled: 'Disabled',
botName: 'Bot Name',
appId: 'App ID',
appSecret: 'App Secret',
saveAndRestartGateway: 'Save and restart gateway',
pairingCode: 'Pairing Code',
pairingCodePlaceholder: 'Enter pairing code',
approvePairing: 'Approve Pairing',
feishuRequired: 'Fill botName / appId / appSecret',
saveSuccess: 'Saved successfully',
pairingCodeRequired: 'Enter pairing code',
pairingApproveSuccess: 'Pairing approved successfully',
customProviderHelper: 'Custom model providers do not validate whether the account is available.',
feishuSaveSuccess: 'Saved to Feishu',
},
model: {
model: 'Models',
localModel: 'Local Models',
create: 'Add Model',
create_helper: 'Pull "{0}"',
ollama_doc: 'You can visit the Ollama official website to search and find more models.',
container_conn_helper: 'Use this address for inter-container access or connection',
ollama_sync: 'Syncing Ollama model found the following models do not exist, do you want to delete them?',
from_remote: 'This model was not downloaded via 1Panel, no related pull logs.',
no_logs: 'The pull logs for this model have been deleted and cannot be viewed.',
},
proxy: {
proxy: 'AI Proxy Enhancement',
proxyHelper1: 'Bind domain and enable HTTPS for enhanced transmission security',
proxyHelper2: 'Limit IP access to prevent exposure on the public internet',
proxyHelper3: 'Enable streaming',
proxyHelper4: 'Once created, you can view and manage it in the website list',
proxyHelper5:
'After enabling, you can disable external access to the port in the App Store - Installed - Ollama - Parameters to improve security.',
proxyHelper6: 'To disable proxy configuration, you can delete it from the website list.',
whiteListHelper: 'Restrict access to only IPs in the whitelist',
},
gpu: {
gpu: 'GPU Monitoring',
gpuHelper: 'The system did not detect NVIDIA-SMI or XPU-SMI commands. Please check and try again!',
process: 'Process Information',
processCount: 'Process Count',
type: 'Type',
typeG: 'Graphics',
typeC: 'Compute',
typeCG: 'Compute+Graphics',
processName: 'Process Name',
shr: 'Shared Memory',
temperatureHelper: 'High GPU temperature may cause GPU frequency reduction',
gpuUtil: 'GPU Utilization',
temperature: 'Temperature',
performanceState: 'Performance State',
powerUsage: 'Power Consumption',
memoryUsage: 'Memory Utilization',
fanSpeed: 'Fan Speed',
power: 'Power',
powerCurrent: 'Current Power',
powerLimit: 'Power Limit',
memory: 'Memory',
memoryUsed: 'Memory Used',
memoryTotal: 'Total Memory',
percent: 'Utilization',
base: 'Basic Information',
driverVersion: 'Driver Version',
cudaVersion: 'CUDA Version',
processMemoryUsage: 'Memory Usage',
performanceStateHelper: 'From P0 (maximum performance) to P12 (minimum performance)',
busID: 'Bus Address',
persistenceMode: 'Persistence Mode',
enabled: 'Enabled',
disabled: 'Disabled',
persistenceModeHelper:
'Persistence mode responds to tasks more quickly, but standby power consumption will increase accordingly',
displayActive: 'GPU Initialization',
displayActiveT: 'Yes',
displayActiveF: 'No',
ecc: 'Error Checking and Correcting Technology',
computeMode: 'Compute Mode',
default: 'Default',
exclusiveProcess: 'Exclusive Process',
exclusiveThread: 'Exclusive Thread',
prohibited: 'Prohibited',
defaultHelper: 'Default: Processes can execute concurrently',
exclusiveProcessHelper:
'Exclusive Process: Only one CUDA context can use the GPU, but it can be shared by multiple threads',
exclusiveThreadHelper: 'Exclusive Thread: Only one thread in a CUDA context can use the GPU',
prohibitedHelper: 'Prohibited: Concurrent process execution is not allowed',
migModeHelper: 'Used to create MIG instances, implementing physical GPU isolation at the user layer.',
migModeNA: 'Not Supported',
current: 'Real-time Monitoring',
history: 'Historical Records',
notSupport: 'The current version or driver does not support displaying this parameter.',
},
mcp: {
server: 'MCP Server',
baseUrl: 'External Access Path',
baseUrlHelper: 'For example: http://192.168.1.2:8000',
ssePath: 'SSE Path',
ssePathHelper: 'For example: /sse, note not to duplicate with other servers',
environment: 'Environment Variables',
envKey: 'Variable Name',
envValue: 'Variable Value',
externalUrl: 'External Connection Address',
operatorHelper: 'Will perform {1} operation on {0}, continue?',
domain: 'Default Access Address',
domainHelper: 'For example: 192.168.1.1 or example.com',
bindDomain: 'Bind Website',
commandPlaceHolder: 'Currently only supports npx and binary startup commands',
importMcpJson: 'Import MCP Server Configuration',
importMcpJsonError: 'mcpServers structure is incorrect',
bindDomainHelper:
'After binding the website, it will modify the access address of all installed MCP Servers and close external access to the ports',
outputTransport: 'Output Type',
streamableHttpPath: 'Streaming Path',
streamableHttpPathHelper: 'For example: /mcp, note that it should not overlap with other Servers',
npxHelper: 'Suitable for mcp started with npx or binary',
uvxHelper: 'Suitable for mcp started with uvx',
},
tensorRT: {
llm: 'TensorRT LLM',
modelDir: 'Model Directory',
commandHelper:
'If external access is needed, set the port in the command to be the same as the application port',
imageAlert:
'Due to the large image size, it is recommended to manually download the image to the server before installation',
modelSpeedup: 'Enable model acceleration',
modelType: 'Model type',
},
},
container: {
createByCommand: 'Create by command',
commandInput: 'Command input',
commandRule: 'Enter the correct docker run container creation command!',
commandHelper: 'This command will run on the server to create the container. Continue?',
updateHelper1: 'Detected that this container comes from the app store. Please note the following two points:',
updateHelper2:
'1. The current modifications will not be synchronized to the installed applications in the app store.',
updateHelper3:
'2. If you modify the application on the installed page, the currently edited content will become invalid.',
updateHelper4: 'Editing the container requires rebuilding, and any non-persistent data will be lost. Continue?',
containerList: 'Container list',
operatorHelper: 'Run {0} on the following container. Continue?',
operatorAppHelper: 'Run "{0}" on the following container(s). Running services may be affected. Continue?',
containerDeleteHelper:
"Detected that the container is from the App Store. Deleting the container will not completely remove it from 1Panel. To delete it completely, go to the App Store -> 'Installed' or 'Runtime Environment' menus. Continue?",
start: 'Start',
stop: 'Stop',
restart: 'Restart',
kill: 'Kill',
pause: 'Pause',
unpause: 'Resume',
rename: 'Rename',
remove: 'Remove',
removeAll: 'Remove all',
containerPrune: 'Prune',
containerPruneHelper1: 'This will delete all containers that are in stopped state.',
containerPruneHelper2:
'If the containers are from the app store, you need to go to "App Store -> Installed" and click the "Rebuild" button to reinstall them after performing the cleanup.',
containerPruneHelper3: 'This operation cannot be undone. Continue?',
imagePrune: 'Prune',
imagePruneSome: 'Clean unlabeled',
imagePruneSomeEmpty: 'No images with the "none" tag can be cleaned.',
imagePruneSomeHelper: 'Clean the images with the tag "none" that are not used by any containers.',
imagePruneAll: 'Clean unused',
imagePruneAllEmpty: 'No unused images can be cleaned.',
imagePruneAllHelper: 'Clean the images that are not used by any containers.',
networkPrune: 'Prune',
networkPruneHelper: 'This will remove all unused networks. Continue?',
volumePrune: 'Prune',
volumePruneHelper: 'This will remove all unused local volumes. Continue?',
cleanSuccess: 'Completed successfully, the number of this cleanup: {0}!',
cleanSuccessWithSpace:
'Completed successfully. The number of disks cleaned this time is {0}. The disk space freed is {1}!',
unExposedPort: 'The current port mapping address is 127.0.0.1, which cannot enable external access.',
upTime: 'Uptime',
fetch: 'Fetch',
lines: 'Lines',
linesHelper: 'Enter the correct number of logs to retrieve!',
downloadLinesHelper: 'Select or enter the number of log lines to download.',
lastDay: 'Last day',
last4Hour: 'Last 4 hours',
lastHour: 'Last hour',
last10Min: 'Last 10 minutes',
cleanLog: 'Clean log',
cleanLogscope: 'Cleanup Type',
downLogHelper1: 'This will download all logs from container {0}. Continue?',
downLogHelper2: 'This will download the latest {1} logs from container {0}. Continue?',
cleanLogHelper: 'This will require restarting the container and cannot be undone. Continue?',
newName: 'New name',
workingDir: 'Working Dir',
source: 'Resource usage',
cpuUsage: 'CPU usage',
cpuTotal: 'CPU total',
core: 'Core',
memUsage: 'Memory usage',
memTotal: 'Memory limit',
memCache: 'Memory cache',
loadSize: 'Get Container Size',
ip: 'IP address',
cpuShare: 'CPU shares',
cpuShareHelper:
'Container engine uses a base value of 1024 for CPU shares. You can increase it to give the container more CPU time.',
inputIpv4: 'Example: 192.168.1.1',
inputIpv6: 'Example: 2001:0db8:85a3:0000:0000:8a2e:0370:7334',
diskUsage: 'Disk Usage',
localVolume: 'Local Storage Volume',
buildCache: 'Build Cache',
usage: 'Used: {0}, Releasable: {1}',
clean: 'Release',
imageClean: 'Clean up images will delete all unused images. This operation cannot be rolled back. Continue?',
containerClean:
'Clean up containers will delete all stopped containers (including stopped apps from App Store). This operation cannot be rolled back. Continue?',
sizeRw: 'Layer Size',
sizeRwHelper: 'Size of the writable layer unique to the container',
sizeRootFs: 'Virtual Size',
sizeRootFsHelper: 'Total size of all image layers the container depends on + container layer',
containerFromAppHelper:
'Detected that this container originates from the app store. App operations may cause current edits to be invalidated.',
containerFromAppHelper1:
'Click the [Param] button in the installed applications list to enter the editing page and modify the container name.',
command: 'Command',
console: 'Container interaction',
tty: 'Allocate a pseudo-TTY (-t)',
openStdin: 'Keep STDIN open even if not attached (-i)',
custom: 'Custom',
emptyUser: 'When empty, you will log in as default',
privileged: 'Privileged',
privilegedHelper:
'Allow the container to perform certain privileged operations on the host, which may increase container risks. Use with caution!',
upgradeHelper: 'Repository Name/Image Name: Image Version',
upgradeWarning2:
'The upgrade operation requires rebuilding the container, any unpersisted data will be lost. Continue?',
oldImage: 'Current image',
sameImageContainer: 'Same-image containers',
sameImageHelper: 'Containers using the same image can be batch upgraded after selection',
targetImage: 'Target image',
imageLoadErr: 'No image name detected for the container',
appHelper: 'The container comes from the app store, and upgrading may make the service unavailable.',
resource: 'Resource',
input: 'Manually input',
forcePull: 'Always pull image ',
forcePullHelper: 'This will ignore existing images on the server and pull the latest image from the registry.',
server: 'Host',
serverExample: '80, 80-88, ip:80 or ip:80-88',
containerExample: '80 or 80-88',
exposePort: 'Expose port',
exposeAll: 'Expose all',
cmdHelper: 'Example: nginx -g "daemon off;"',
entrypointHelper: 'Example: docker-entrypoint.sh',
autoRemove: 'Auto remove',
cpuQuota: 'Number of CPU cores',
memoryLimit: 'Memory',
limitHelper: 'If set to 0, it means that there is no limitation. The maximum value is {0}',
macAddr: 'MAC Address',
mount: 'Mount',
volumeOption: 'Volume',
hostOption: 'Host',
serverPath: 'Server path',
containerDir: 'Container path',
volumeHelper: 'Ensure that the content of the storage volume is correct',
networkEmptyHelper: 'Please confirm the container network selection is correct',
modeRW: 'RW',
modeR: 'R',
sharedLabel: 'Propagation Mode',
private: 'Private',
privateHelper: 'Mount changes in the container and host do not affect each other',
rprivate: 'Recursive Private',
rprivateHelper: 'All mounts in the container are completely isolated from the host',
shared: 'Shared',
sharedHelper: 'Mount changes in the host and container are visible to each other',
rshared: 'Recursive Shared',
rsharedHelper: 'All mount changes in the host and container are visible to each other',
slave: 'Slave',
slaveHelper: 'The container can see host mount changes, but its own changes do not affect the host',
rslave: 'Recursive Slave',
rslaveHelper: 'All mounts in the container can see host changes, but do not affect the host',
mode: 'Mode',
env: 'Environments',
restartPolicy: 'Restart policy',
always: 'always',
unlessStopped: 'unless-stopped',
onFailure: 'on-failure (five times by default)',
no: 'never',
refreshTime: 'Refresh interval',
cache: 'Cache',
image: 'Image | Images',
imagePull: 'Pull',
imagePullHelper:
'Supports selecting multiple images to pull, press Enter after entering each image to continue',
imagePush: 'Push',
imagePushHelper:
'Detected that this image has multiple tags. Please confirm that the image name used for pushing is: {0}',
imageDelete: 'Image delete',
repoName: 'Container registry',