-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy pathen.ts
More file actions
3445 lines (3389 loc) · 176 KB
/
en.ts
File metadata and controls
3445 lines (3389 loc) · 176 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',
example: 'e.g.:',
fit2cloud: 'FIT2CLOUD',
lingxia: 'Lingxia',
colon: ': ',
button: {
run: 'Run',
prev: 'Previous',
next: 'Next',
create: 'Create ',
add: 'Add ',
save: 'Save ',
set: 'Setting',
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: 'Handle',
expand: 'Expand',
collapse: 'Collapse',
log: 'Log',
back: 'Back',
backup: 'Backup',
recover: 'Recover',
retry: 'Retry',
upload: 'Upload',
download: 'Download',
init: 'Init',
verify: 'Verify',
saveAndEnable: 'Save and enable',
import: 'Import',
search: 'Search',
refresh: 'Refresh',
get: 'Get',
upgrade: 'Upgrade',
update: 'Update',
ignore: 'Ignore upgrade',
copy: 'Copy',
random: 'Random',
install: 'Install',
uninstall: 'Uninstall',
fullscreen: 'WebsiteFullscreen',
quitFullscreen: 'Quit WebsiteFullscreen',
showAll: 'Show All',
hideSome: 'Hide Some',
agree: 'Agree',
notAgree: 'Not Agree',
preview: 'Preview',
open: 'Open',
notSave: 'Not Save',
createNewFolder: 'Create new folder',
createNewFile: 'Create new file',
helpDoc: 'Help Document',
bind: 'Bind',
unbind: 'Unbind',
cover: 'cover',
skip: 'skip',
fix: 'Fix',
down: 'Stop',
up: 'Start',
},
operate: {
start: 'Start',
stop: 'Stop',
restart: 'Restart',
reload: 'Reload',
rebuild: 'Rebuild',
sync: 'Sync',
up: 'Up',
down: 'Down',
delete: 'Delete',
},
search: {
timeStart: 'Time start',
timeEnd: 'Time end',
timeRange: 'To',
dateStart: 'Date start',
dateEnd: 'Date end',
},
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: 'Creation Time',
publishedAt: 'Publish Time',
date: 'Date',
updatedAt: 'Update Time',
operate: 'Operations',
message: 'Message',
description: 'Description',
interval: 'Interval',
user: 'User',
title: 'Title',
port: 'Port',
forward: 'Forward',
protocol: 'Protocol',
tableSetting: 'Table setting',
refreshRate: 'Rate',
noRefresh: 'No Refresh',
selectColumn: 'Select column',
local: 'local',
serialNumber: 'Serial number',
},
loadingText: {
Upgrading: 'System upgrade, please wait...',
Restarting: 'System restart, please wait...',
Recovering: 'Recovering from snapshot, please wait...',
Rollbacking: 'Rollbacking from snapshot, please wait...',
},
msg: {
noneData: 'No data available',
delete: 'This operation delete cannot be rolled back. Do you want to continue?',
clean: 'This operation clean cannot be rolled back. Do you want to continue?',
closeDrawerHelper: 'The system may not save the changes you made. Do you want to continue?',
deleteSuccess: 'Delete Success',
loginSuccess: 'Login Success',
operationSuccess: 'Successful operation',
copySuccess: 'Copy Successful',
notSupportOperation: 'This operation is not supported',
requestTimeout: 'The request timed out, please try again later',
infoTitle: 'Hint',
notRecords: 'No execution record is generated for the current task',
sureLogOut: 'Are you sure you want to log out?',
createSuccess: 'Create Success',
updateSuccess: 'Update Success',
uploadSuccess: 'Update Success',
operateConfirm: 'If you are sure about the operation, please input it manually',
inputOrSelect: 'Please select or enter',
copyFailed: 'Copy failed',
operatorHelper: 'Would you like to continue performing {1} operation on {0}?',
notFound: 'Sorry, the page you requested does not exist.',
unSupportType: 'Current file type is not supported!',
unSupportSize: 'The uploaded file exceeds {0}M, please confirm!',
fileExist: 'The file already exists in the current folder. Repeat uploading is not supported!',
fileNameErr:
'You can upload only files whose name contains 1 to 256 characters, including English, Chinese, digits, or periods (.-_)',
confirmNoNull: 'Make sure the value {0} is not empty',
errPort: 'Incorrect port information, please confirm!',
remove: 'Remove',
backupHelper: 'The current operation will back up {0}. Do you want to proceed?',
recoverHelper: 'Restoring from {0} file. This operation is irreversible. Do you want to continue?',
refreshSuccess: 'Refresh successful',
rootInfoErr: "It's already the root directory",
resetSuccess: 'Reset successful',
creatingInfo: 'Creating, no need for this operation',
installSuccess: 'Install successful',
uninstallSuccess: 'Uninstall successful',
},
login: {
username: 'Username',
password: 'Password',
welcome: 'Welcome back, please enter your username and password to log in!',
errorAuthInfo: 'The user name or password you entered is incorrect, please re-enter!',
errorMfaInfo: 'Incorrect authentication information, please try again!',
captchaHelper: 'Captcha',
errorCaptcha: 'Captcha code error!',
notSafe: 'Access Denied',
safeEntrance1: 'The secure login has been enabled in the current environment',
safeEntrance2: 'Enter the following command on the SSH terminal to view the panel entry: 1pctl user-info',
errIP1: 'Authorized IP address access is enabled in the current environment',
errDomain1: 'Access domain name binding is enabled in the current environment',
errHelper: 'To reset the binding information, run the following command on the SSH terminal: ',
codeInput: 'Please enter the 6-digit verification code of the MFA validator',
mfaTitle: 'MFA Certification',
mfaCode: 'MFA verification code',
title: 'Linux Server Management Panel',
licenseHelper: '<Community License Agreement>',
errorAgree: 'Click to agree to the Community Software License',
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> »',
},
rule: {
username: 'Please enter a username',
password: 'Please enter a password',
rePassword: 'The passwords are inconsistent. Please check and re-enter the password',
requiredInput: 'Please enter the required fields',
requiredSelect: 'Please select the required fields',
illegalInput: 'There are illegal characters in the input box.',
commonName:
'Supports non-special characters starting with English, Chinese, numbers, .- and _, length 1-128',
userName: 'Supports starting with non-special characters, English, Chinese, numbers, and _, length 3-30',
simpleName: 'Supports non-underscore starting, English, numbers, _, length 3-30',
simplePassword: 'Supports non-underscore starting, English, numbers, _, length 1-30',
dbName: 'Supports non-special character starting, including English, Chinese, numbers, .-_, with a length of 1-64',
composeName:
'Supports non-special characters at the beginning, lowercase letters, numbers, - and _, length 1-256',
imageName: 'Supports starting with non-special characters, English, numbers, :@/.-_, length 1-256',
volumeName: 'Support English, numbers, .-_, length 2-30',
supervisorName: 'Supports non-special characters starting with English, numbers, - and _, length 1-128',
complexityPassword:
'Please enter a password combination with a length of 8-30 characters, including letters, numbers, and at least two special characters.',
commonPassword: 'Please enter a password with more than 6 characters',
linuxName: 'Length 1-128, the name cannot contain symbols such as {0}',
email: 'Email format error',
number: 'Please enter the correct number',
integer: 'Please enter the correct positive integer',
ip: 'Please enter the correct IP address',
host: 'Enter the correct IP address or domain name',
hostHelper: 'Support input of IP address or domain',
port: 'Please enter the correct port',
selectHelper: 'Please select the correct {0} file',
domain: 'domain name format error',
databaseName: 'Support English, numbers, _, length 1-30',
ipErr: 'IP [{0}] format error, please check',
numberRange: 'Number range: {0} - {1}',
paramName: 'Support English, numbers, .- and _, length 2-30',
paramComplexity:
'Support English, numbers, {0}, length 6-128,Special characters cannot be at the beginning and end',
paramUrlAndPort: 'The format is http(s)://(domain name/ip):(port)',
nginxDoc: 'Only supports English case, numbers, and .',
appName: 'Support English, numbers, - and _, length 2-30, and cannot start and end with -_',
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',
},
res: {
paramError: 'The request failed, please try again later!',
forbidden: 'The current user has no permission',
serverError: 'Service exception',
notFound: 'The resource does not exist',
commonError: 'The request failed',
},
service: {
serviceNotStarted: 'The {0} service is not currently started',
},
status: {
running: 'Running',
done: 'Done',
scanFailed: 'Incomplete',
success: 'Success',
waiting: 'Waiting',
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',
rebuilding: 'ReBuilding',
deny: 'Denied',
accept: 'Accepted',
used: 'Used',
unused: 'Unused',
starting: 'Starting',
recreating: 'Recreating',
creating: 'Creating',
init: 'Waiting for application',
ready: 'normal',
applying: 'Applying',
uninstalling: 'Uninstalling',
lost: 'Lost Contact',
bound: 'Bound',
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',
},
units: {
second: 'Second',
minute: 'Minute',
hour: 'Hour',
day: 'Day',
week: 'Week',
month: 'Month',
year: 'Year',
time: 'Time',
core: 'Core',
secondUnit: 's',
minuteUnit: 'min',
hourUnit: 'h',
dayUnit: 'd',
millisecond: 'ms',
},
},
menu: {
home: 'Overview',
apps: 'App Store',
website: 'Website',
project: 'Project',
config: 'Config',
ssh: 'SSH Setting',
firewall: 'Firewall',
ssl: 'Certificate',
database: 'Database',
aiTools: 'AI',
container: 'Container',
cronjob: 'Cronjob',
system: 'System',
security: 'Security',
files: 'File',
monitor: 'Monitor',
terminal: 'Terminal',
settings: 'Setting',
toolbox: 'Toolbox',
logs: 'Log',
runtime: 'Runtime',
processManage: 'Process',
process: 'Process',
network: 'Network',
supervisor: 'Supervisor',
tamper: 'Tamper-proof',
app: 'Application',
msgCenter: 'Task Center',
},
home: {
recommend: 'recommend',
dir: 'dir',
restart_1panel: 'Restart Panel',
restart_system: 'Restart Server',
operationSuccess: 'Operation succeeded, rebooting, please refresh the browser manually later!',
entranceHelper:
'Enabling a secure entrance can help improve system security. If necessary, go to the Control Panel settings, select Security, and enable the secure entrance.',
appInstalled: 'App',
systemInfo: 'System info',
hostname: 'Hostname',
platformVersion: 'Platform version',
kernelVersion: 'Kernel version',
kernelArch: 'Kernel arch',
network: 'Network',
io: 'Disk IO',
ip: 'Ip Addr',
proxy: 'System Proxy',
baseInfo: 'Base info',
totalSend: 'Total send',
totalRecv: 'Total recv',
rwPerSecond: 'IO times',
ioDelay: 'IO delay',
uptime: 'Up Time',
runningTime: 'Running Time',
mem: 'System',
swapMem: 'Swap Partition',
runSmoothly: 'Run smoothly',
runNormal: 'Run normal',
runSlowly: 'Run slowly',
runJam: 'Run Blockaged',
core: 'Physical core',
logicCore: 'Logic core',
loadAverage: 'Average load in the last {0} minutes',
load: 'Load',
mount: 'Mount point',
fileSystem: 'File system',
total: 'Total',
used: 'Used',
free: 'Free',
percent: 'Percent',
goInstall: 'Go install',
networkCard: 'NetworkCard',
disk: 'Disk',
},
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: 'Management',
deleteBackupHelper: 'Delete database backups simultaneously',
delete: 'Delete operation cannot be rolled back, please input "',
deleteHelper: '" to delete this database',
create: 'Create',
noMysql: 'Database service (MySQL or MariaDB)',
noPostgresql: 'Database service Postgresql',
goUpgrade: 'Go for upgrade',
goInstall: 'Go for install',
isDelete: 'Deleted',
permission: 'Permission',
permissionForIP: 'IP',
permissionAll: 'All of them(%)',
databaseConnInfo: 'Conn info',
rootPassword: 'Root password',
serviceName: 'Service Name',
serviceNameHelper: 'Access between containers in the same network.',
backupList: 'Backup',
loadBackup: 'Import',
remoteAccess: 'Remote Access',
remoteHelper: 'Multiple IP comma-delimited, example: 172.16.10.111, 172.16.10.112',
remoteConnHelper:
'Remote connection to mysql as user root may have security risks. Therefore, perform this operation with caution.',
changePassword: 'Password',
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.',
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: 'Super User',
loadFromRemoteHelper:
'This action will synchronize the database info on the server to 1Panel, do you want to continue?',
passwordHelper: 'Unable to retrieve, please modify',
remote: 'Remote',
remoteDB: 'Remote DB',
createRemoteDB: 'Create Remote Server',
unBindRemoteDB: 'Unbind remote server',
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 DB',
address: 'DB address',
version: 'DB version',
userHelper: 'The root user or a database user with root privileges can access the remote database.',
pgUserHelper: 'Database user with superuser privileges.',
ssl: 'Use SSL',
clientKey: 'Client Private Key',
clientCert: 'Client Certificate',
caCert: 'CA Certificate',
hasCA: 'Has CA Certificate',
skipVerify: 'Ignore Certificate Validity Check',
formatHelper:
'The current database character set is {0}, the character set inconsistency may cause recovery failure',
selectFile: 'Select file',
dropHelper: 'You can drag and drop the uploaded file here or',
clickHelper: 'click to upload',
supportUpType: 'Only sql, sql.gz, and tar.gz files are supported',
zipFormat: 'tar.gz compressed package structure: test.tar.gz compressed package must contain test.sql',
currentStatus: 'Current State',
baseParam: 'Basic parameter',
performanceParam: 'Performance parameter',
runTime: 'Startup 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: 'Querying the Cache Hit',
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 the value is not 0, check whether the index of the data table is correct',
selectRangeCheck: 'The number of joins with no index',
selectRangeCheckHelper: 'If the value is not 0, check whether the index of the data table is correct',
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: 'Slowlogs',
noData: 'No slow log yet...',
isOn: 'On',
longQueryTime: 'threshold(s)',
thresholdRangeHelper: 'Please enter the correct threshold (1 - 600).',
timeout: 'Timeout',
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 service not detected, please enable the service first!',
redisQuickCmd: 'Redis quick command',
recoverHelper: 'Data is about to be overwritten with [{0}]. Do you want to continue?',
submitIt: 'Overwrite the data',
baseConf: 'Basic configuration',
allConf: 'All configuration',
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: 'The modification takes effect only after the system restarts.',
persistence: 'Persistence',
rdbHelper1: 'In seconds, insert',
rdbHelper2: 'The data',
rdbHelper3: 'Meeting either condition triggers RDB persistence',
rdbInfo: 'Ensure that the value in the rule list ranges from 1 to 100000',
containerConn: 'Container Connection',
connAddress: 'Address',
containerConnHelper:
'This connection address is used by applications running on the PHP execution environment/container installation.',
remoteConn: 'External Connection',
remoteConnHelper2: 'Use this address for non-container or external connections',
localIP: 'Local IP',
},
aiTools: {
model: {
model: 'Model',
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 Monitor',
base: 'Basic Information',
gpuHelper: 'NVIDIA-SMI or XPU-SMI command not detected on the current system. Please check and try again!',
driverVersion: 'Driver Version',
cudaVersion: 'CUDA Version',
process: 'Process Information',
type: 'Type',
typeG: 'Graphics',
typeC: 'Compute',
typeCG: 'Compute + Graphics',
processName: 'Process Name',
processMemoryUsage: 'Memory Usage',
temperatureHelper: 'High GPU temperature can cause GPU frequency throttling',
performanceStateHelper: 'From P0 (maximum performance) to P12 (minimum performance)',
busID: 'Bus ID',
persistenceMode: 'Persistence Mode',
enabled: 'Enabled',
disabled: 'Disabled',
persistenceModeHelper:
'Persistence mode allows quicker task responses but increases standby power consumption.',
displayActive: 'Graphics Card Initialized',
displayActiveT: 'Yes',
displayActiveF: 'No',
ecc: 'Error Correction and Check 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 can be shared by multiple threads',
exclusiveThreadHelper: 'Exclusive Thread: Only one thread in a CUDA context can use the GPU',
prohibitedHelper: 'Prohibited: Processes are not allowed to execute simultaneously',
migModeHelper: 'Used to create MIG instances for physical isolation of the GPU at the user level.',
migModeNA: 'Not Supported',
},
},
container: {
create: 'Create',
createByCommand: 'Create by command',
commandInput: 'Command input',
commandRule: 'Please enter the correct docker run container creation command!',
commandHelper: 'This command will be executed on the server to create the container. Do you want to continue?',
edit: 'Edit container',
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. Do you want to continue?',
containerList: 'Container list',
operatorHelper: '{0} will be performed on the following container, Do you want to continue?',
operatorAppHelper:
'The {0} operation will be performed on the following containers,\n some of which are from the App Store. This operation may affect the normal use of the service. \nDo you want to continue?',
start: 'Start',
stop: 'Stop',
restart: 'Restart',
kill: 'Kill',
pause: 'Pause',
unpause: 'Unpause',
rename: 'Rename',
remove: 'Remove',
removeAll: 'Remove All',
containerPrune: 'Prune',
containerPruneHelper1: 'Cleaning containers will delete all containers that are in a stopped state.',
containerPruneHelper2:
'If the containers are from the app store, after performing the cleanup, you need to go to the [Installed] list in the [App Store] and click the [Rebuild] button to reinstall them.',
containerPruneHelper3: 'This operation cannot be rolled back. Do you want to continue?',
imagePrune: 'Prune',
imagePruneSome: 'Clean unlabeled',
imagePruneSomeEmpty: 'No image with the "none" tag is to be cleared',
imagePruneSomeHelper: 'Clean the images with the tag "none" that are not used by any containers.',
imagePruneAll: 'Clean unused',
imagePruneAllEmpty: 'No unused images to be cleared',
imagePruneAllHelper: 'Clean the images that are not used by any containers.',
networkPrune: 'Prune',
networkPruneHelper: 'Remove all unused networks. Do you want to continue?',
volumePrune: 'Prune',
volumePruneHelper: 'Remove all unused local volumes. Do you want to continue?',
cleanSuccess: 'The operation is successful, the number of this cleanup: {0}!',
cleanSuccessWithSpace:
'The operation is successful. The number of disks cleared 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: 'Please enter the correct number of logs to retrieve!',
lastDay: 'Last Day',
last4Hour: 'Last 4 Hours',
lastHour: 'Last Hour',
last10Min: 'Last 10 Minutes',
cleanLog: 'Clean log',
downLogHelper1: 'Are you sure you want to download all logs for container {0}?',
downLogHelper2: 'Are you sure you want to download the recent {1} logs for container {0}?',
cleanLogHelper:
'Clearing logs requires restarting the container, and this operation cannot be rolled back. Do you want to continue?',
newName: 'New name',
workingDir: 'Working Dir',
source: 'Resource Rate',
cpuUsage: 'CPU Usage',
cpuTotal: 'CPU Total',
core: 'Core',
memUsage: 'Memory Usage',
memTotal: 'Memory Limit',
memCache: 'Memory Cache',
ip: 'IP address',
cpuShare: 'CPU Share',
cpuShareHelper:
'The default CPU share for a container is 1024, which can be increased to give the container more CPU time.',
inputIpv4: 'Please enter the IPv4 address',
inputIpv6: 'Please enter the IPv6 address',
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: 'Console Interaction',
tty: 'TTY (-t)',
openStdin: 'OpenStdin (-i)',
custom: 'Custom',
emptyUser: 'When empty, you will log in as default',
privileged: 'Privileged',
privilegedHelper:
'Allows the container to perform certain privileged operations on the host, which may increase container risks. Use with caution!',
editComposeHelper:
'Note: The environment variables set will be written to the 1panel.env file by default.\nIf you want to use these parameters in the container, you also need to manually add an env_file reference in the compose file.',
upgradeHelper: 'Repository Name/Image Name: Image Version',
upgradeWarning2:
'The upgrade operation requires rebuilding the container, any unpersisted data will be lost. Do you wish to continue?',
oldImage: 'Current Image',
targetImage: 'Target Image',
imageLoadErr: 'No image name detected for the container',
appHelper: 'This container is sourced from the app store; upgrading might render the service unavailable',
resource: 'Resource',
input: 'Input',
forcePull: 'forced image pull ',
forcePullHelper: 'Ignore existing images on the server and pull again.',
server: 'Host',
serverExample: '80, 80-88, ip:80 or ip:80-88',
containerExample: '80 or 80-88',
exposePort: 'Expose port',
exposeAll: 'Expose all',
cmdHelper: 'e.g. nginx -g "daemon off;"',
entrypointHelper: 'e.g. docker-entrypoint.sh',
autoRemove: 'Auto remove',
cpuQuota: 'NacosCPU',
memoryLimit: 'Memory',
limitHelper: 'If you limit it to 0, then the limitation is turned off, and the maximum available 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',
modeRW: 'RW',
modeR: 'R',
mode: 'Mode',
env: 'Environment',
restartPolicy: 'Restart policy',
always: 'always',
unlessStopped: 'unless-stopped',
onFailure: 'on-failure(five times by default)',
no: 'never',
refreshTime: 'Refresh time',
cache: 'Cache',
image: 'Image',
imagePull: 'Pull',
imagePush: 'Push',
imageDelete: 'Image delete',
imageTagDeleteHelper: 'Remove other tags associated with this image ID',
repoName: 'Repo Name',
imageName: 'Image name',
pull: 'Pull',
path: 'Path',
importImage: 'Import',
build: 'Build',
imageBuild: 'Build',
pathSelect: 'Path',
label: 'Label',
imageTag: 'Image Tag',
push: 'Push',
fileName: 'FileName',
export: 'Export',
exportImage: 'Image export',
size: 'Size',
tag: 'Tag',
tagHelper: 'one in a row, for example, \nkey1=value1\nkey2=value2',
imageNameHelper: 'Image name and Tag, for example: nginx:latest',
cleanBuildCache: 'Clean Build Cache',
delBuildCacheHelper:
'Cleaning the build cache will delete all cached artifacts generated during builds. This action cannot be undone. Continue?',
urlWarning: 'The URL prefix does not need to include http:// or https://. Please modify.',
network: 'Network',
networkHelper:
'Deleting the 1panel-network container network will affect the normal use of some applications and runtime environments. Do you want to continue?',
createNetwork: 'Create',
networkName: 'Name',
driver: 'Driver',
option: 'Option',
attachable: 'Attachable',
subnet: 'Subnet',
scope: 'IP Scope',
gateway: 'Gateway',
auxAddress: 'Exclude IP',
volume: 'Volume',
volumeDir: 'Volume dir',
nfsEnable: 'Enable NFS storage',
nfsAddress: 'Address',
mountpoint: 'Mountpoint',
mountpointNFSHelper: 'e.g. /nfs, /nfs-share',
options: 'Options',
createVolume: 'Create',
repo: 'Repo',
createRepo: 'Add',
httpRepo: 'The http repository needs to restart the docker service to add credit',
delInsecure: 'Deletion of credit',
delInsecureHelper: 'docker service needs to be restarted to delete the credit. Do you want to delete it?',
downloadUrl: 'Download URL',
imageRepo: 'Image repo',
repoHelper: 'Does it include a mirror repository/organization/project?',
auth: 'Auth',
mirrorHelper:
'If there are multiple mirrors, newlines must be displayed, for example:\nhttp://xxxxxx.m.daocloud.io \nhttps://xxxxxx.mirror.aliyuncs.com',
registrieHelper:
'If multiple private repositories exist, newlines must be displayed, for example:\n172.16.10.111:8081 \n172.16.10.112:8081',
compose: 'Compose',
fromChangeHelper: 'Switching the source will clear the current edited content. Do you want to continue?',
composePathHelper: 'Config file save path: {0}',
composeHelper:
'The composition created through 1Panel editor or template will be saved in the {0}/docker/compose directory.',
deleteFile: 'Delete file',
deleteComposeHelper:
'Delete all files related to container compose, including configuration files and persistent files. Please proceed with caution!',
deleteCompose: '"Delete this composition"',
createCompose: 'Create',
composeDirectory: 'Compose Directory',
template: 'Template',
composeTemplate: 'Compose template',
createComposeTemplate: 'Create',
content: 'Content',
contentEmpty: 'Compose content cannot be empty, please enter and try again!',
containerNumber: 'Container number',
containerStatus: 'Container Status',
exited: 'Exited',
running: 'Running',
composeDetailHelper:
'The compose is created external to 1Panel. The start and stop operations are not supported.',
composeOperatorHelper: '{1} operation will be performed on {0}. Do you want to continue?',
composeDownHelper:
'This will stop and remove all containers and networks under the {0} compose. Do you want to continue?',
setting: 'Setting',
goSetting: 'Go to edit',
operatorStatusHelper: 'This action will {0} Docker service, do you want to continue?',
dockerStatus: 'Docker Service',
daemonJsonPathHelper: 'Ensure that the configuration path is the same as that specified in docker.service.',
mirrors: 'Registry mirrors',
mirrorsHelper:
'The acceleration URL is preferred to perform operations. If this parameter is set to empty, mirror acceleration is disabled.',
mirrorsHelper2: 'For details, see the official documents, ',
registries: 'Insecure registries',
ipv6Helper:
'When enabling IPv6, you need to add an IPv6 container network. Refer to the official documentation for specific configuration steps.',
ipv6CidrHelper: 'IPv6 address pool range for containers',
ipv6TablesHelper: 'Automatic configuration of Docker IPv6 for iptables rules',
experimentalHelper:
'Enabling ip6tables requires this configuration to be turned on; otherwise, ip6tables will be ignored',
cutLog: 'Log option',
cutLogHelper1: 'The current configuration will only affect newly created containers.',
cutLogHelper2: 'Existing containers need to be recreated for the configuration to take effect.',
cutLogHelper3:
'Please note that recreating containers may result in data loss. If your containers contain important data, make sure to backup before performing the rebuilding operation.',
maxSize: 'Max-Size',
maxFile: 'Max-File',
liveHelper:
'Allows the running container state to be preserved in case of unexpected shutdown or crash of the Docker daemon',
liveWithSwarmHelper: 'live-restore daemon configuration is incompatible with swarm mode.',
iptablesDisable: 'Close iptables',
iptablesHelper1: 'Automatic configuration of iptables rules for Docker.',
iptablesHelper2:
'Disabling iptables will result in the containers being unable to communicate with external networks.',
daemonJsonPath: 'Conf Path',
serviceUnavailable: 'Docker service is not started at present, please click',
startIn: ' to start',
sockPath: 'Socket Path',
sockPathHelper: 'Communication channel between Docker Daemon and the client',
sockPathHelper1: 'Default Path: /var/run/docker-x.sock',
sockPathMsg:
'Saving the Socket Path setting may result in Docker service being unavailable. Do you want to continue?',
sockPathErr: 'Please select or enter the correct Docker sock file path',
related: 'Related',
includeAppstore: 'Show app store container',
excludeAppstore: 'Hide App Store Container',
cleanDockerDiskZone: 'Clean up disk space used by Docker',
cleanImagesHelper: '( Clean up all images that are not used by any containers )',
cleanContainersHelper: '( Clean up all stopped containers )',
cleanVolumesHelper: '( Clean up all unused local volumes )',
makeImage: 'Create Image',
newImageName: 'New Image Name',
commitMessage: 'Commit Message',
author: 'Author',
ifPause: 'Pause Container During Creation',
ifMakeImageWithContainer: 'Create New Image from This Container?',
},
cronjob: {
create: 'Create Cronjob',
edit: 'Edit Cronjob',
changeStatus: 'Change status',
disableMsg:
'Stopping the scheduled task will result in the task no longer automatically executing. Do you want to continue?',
enableMsg:
'Enabling the scheduled task will allow the task to automatically execute on a regular basis. Do you want to continue?',
taskType: 'Type',
nextTime: 'Next 5 executions',
record: 'Records',
shell: 'Shell',
log: 'Backup Logs',
logHelper: 'Backup System Log',
ogHelper1: '1.1Panel System log ',
logHelper2: '2. SSH login log of the server ',
logHelper3: '3. All site logs ',
containerCheckBox: 'In container (no need to enter the container command)',
containerName: 'Container Name',
ntp: 'Time Synchronization',
ntp_helper: 'You can configure the NTP server on the Quick Setup page of the Toolbox.',
app: 'Backup App',
website: 'Backup Website',
rulesHelper:
'When there are multiple compression exclusion rules, they need to be displayed with line breaks. For example: \n*.log \n*.sql',
lastRecordTime: 'Last Execution',
all: 'All',
failedRecord: 'Failed Records',
successRecord: 'Successful Records',
database: 'Backup Database',
missBackupAccount: 'The backup account could not be found',
syncDate: 'Synchronization time ',
clean: 'Cache Clean',
curl: 'Access URL',
taskName: 'Name',
cronSpec: 'Lifecycle',
cronSpecHelper: 'Enter the correct execution period',
cleanHelper:
'This operation records all job execution records, backup files, and log files. Do you want to continue?',
backupContent: 'Backup Content',
directory: 'Backup Directory / File',
sourceDir: 'Backup Directory',
snapshot: 'System Snapshot',
allOptionHelper:
'The current task plan is to back up all [{0}]. Direct download is not supported at the moment. You can check the backup list of [{0}] menu.',
exclusionRules: 'Exclusive rule',
exclusionRulesHelper: 'The exclusion rules will apply to all compression operations of this backup.',
default_download_path: 'Default Download Link',
saveLocal: 'Retain local backups (the same as the number of cloud storage copies)',
url: 'URL Address',
targetHelper: 'Backup accounts are maintained in panel settings.',
retainCopies: 'Retain Copies',
retainCopiesHelper: 'Number of copies to retain for execution records and logs',
retainCopiesHelper1: 'Number of copies to retain for backup files',
retainCopiesUnit: ' copies (View)',
cronSpecRule: 'The execution period format in line {0} is incorrect. Please check and try again!',