-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathen.js
More file actions
2149 lines (2148 loc) · 113 KB
/
en.js
File metadata and controls
2149 lines (2148 loc) · 113 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
export default {
// 通用按钮
button_reload: 'Reload',
button_button: 'Add',
// 通用消息
message_loading: 'Loading',
message_network_connected: 'Network is restored',
//页面标题
page_title_overview: 'Overview',
page_title_dashboard: 'Dashboard',
page_title_connections: 'Connections',
page_title_connections_create: 'Create a connection',
page_title_connections_edit: 'Edit connection',
page_title_data_pipeline: 'Data Pipelines',
page_title_advanced_features: 'Advanced',
page_title_data_copy: 'Data Replication',
page_title_task_edit: 'Edit task',
page_title_task_details: 'Task details',
page_title_task_stat: 'Task statistics',
page_title_run_monitor: 'Run Monitoring',
page_title_data_develop: 'Data Transformation',
page_title_data_verify: 'Data Validation',
page_title_data_difference_details: 'Difference Details',
page_title_data_verification_result: 'Verification Result',
page_title_diff_verification_history: 'Diff verification history',
page_title_diff_verification_details: 'Diff verification details',
page_title_shared_mining: 'CDC Log Cache',
page_title_heartbeat_table: 'Heartbeat Task',
page_title_shared_mining_details: 'Mining details',
page_title_function: 'Function List',
page_title_function_import: 'Import function',
page_title_function_create: 'Create function',
page_title_function_edit: 'Edit function',
page_title_function_details: 'Function details',
page_title_shared_cache: 'Live Cache',
page_title_shared_cache_create: 'Create cache',
page_title_shared_cache_edit: 'Edit cache',
page_title_data_discovery: 'Data Discovery',
page_title_data_object: 'Data Object',
page_title_data_catalogue: 'Data Catalog',
page_title_data_service: 'Data Services',
page_title_data_server_list: 'API List',
page_title_api_application: 'Application List',
page_title_api_client: 'API Clients',
page_title_api_servers: 'API Servers',
page_title_api_audit: 'API Audit',
page_title_api_audit_details: 'Details',
page_title_api_monitor: 'API Status',
page_title_system: 'System',
page_title_data_metadata: 'Metadata',
page_title_cluster: 'Cluster',
page_title_user: 'Users',
page_title_role: 'Roles',
page_title_setting: 'System settings',
page_title_webhook_alerts: 'Webhook Alerts',
page_title_license: 'License',
page_title_back_menu: 'Back',
page_title_custom_node: 'Custom Processors',
page_title_account: 'Personal settings',
page_title_external_storage: 'External Storage',
page_title_verification_create: 'New Validation',
page_title_verification_edit: 'Edit Verification',
page_title_verification_history: 'Verification History',
page_title_data_console: 'Data Console',
// -- 多表选择器
component_table_selector_candidate_label: 'To be selected',
component_table_selector_checked_label: 'Selected ',
component_table_selector_error_not_exit: 'Table does not exist',
component_table_selector_error: 'Selected tables has exceptions',
component_table_selector_autofix: 'Clear exception tables',
component_table_selector_bulk_pick: 'Bulk pick',
component_table_selector_not_checked: 'You have not selected a table',
component_table_selector_tables_empty:
'You do not have a table at the moment, please click on the upper right corner to reload the table',
component_table_selector_clipboard_placeholder:
'Please enter table names separated by commas, for example: table_a, table_b',
// app
app_license_expire_warning: 'License expires in {0} days remaining',
// Agent
agent_check_error:
"Agent's current state is abnormal and cannot create a connection, please check",
// console
dashboard_status_paused: 'Paused',
dashboard_status_wait_run: 'Scheduled',
dashboard_all_total: 'All tasks',
dashboard_copy_total: 'Replication Task',
dashboard_sync_total: 'Transformation Task',
dashboard_valid_total: 'Validation Task',
dashboard_current_all_total: 'Grand total of all tasks',
dashboard_current_copy_total: 'Total number of replication tasks',
dashboard_current_sync_total: 'Total number of transformation tasks',
dashboard_current_valid_total: 'Total number of validation tasks',
dashboard_copy_overview_title: 'Replication task overview',
dashboard_copy_status_title: 'Replication task status',
dashboard_sync_overview_title: 'Transformation task overview',
dashboard_sync_status_title: 'Transformation task status',
dashboard_valid_title: 'Data validation overview',
dashboard_transfer_overview: 'Transfer overview',
dashboard_server_title: 'Cluster overview',
dashboard_total_valid: 'All verification tasks',
dashboard_passed: 'Consistent verification',
dashboard_countDiff: 'Count inconsistent',
dashboard_valueDiff: 'Content Difference',
dashboard_initializing: 'Initializing',
dashboard_initialized: 'Initialization complete',
dashboard_cdc: 'Increasing',
dashboard_Lag: 'Incremental lag',
dashboard_server: 'Server',
dashboard_management: 'Management side',
dashboard_task_transfer: 'Task transfer',
dashboard_api_service: 'API service',
dashboard_starting: 'Starting',
dashboard_running: 'Running',
dashboard_stopping: 'Closing',
dashboard_stopped: 'Closed',
dashboard_restarting: 'Restarting',
dashboard_total_insert: 'Total insert',
dashboard_total_update: 'Total update',
dashboard_total_delete: 'Total delete',
dashboard_public_error: 'Error',
dashboard_public_total: 'Total',
dashboard_total: 'Number of verification tasks enabled',
dashboard_diff: 'Check the number of tasks with differences',
dashboard_can: 'Number of verification tasks supported',
dashboard_error: 'Number of tasks with errors in verification',
dashboard_no_data_here: 'There is no data here~',
dashboard_no_statistics: 'No {0} statistics yet',
// 元数据管理
metadata_db: 'Owned library',
metadata_change_name: 'Rename',
metadata_name_placeholder: 'Please enter the table name/database name',
metadata_meta_type_directory: 'Directory',
metadata_meta_type_table: 'Data table',
metadata_form_create: 'Create model',
metadata_form_database: 'Database',
metadata_form_collection: 'Dataset',
metadata_form_mongo_view: 'Mongodb view',
metadata_detail_original_table_name: 'Original table name',
metadata_detail_original_database_name: 'Original database name',
// api release api发布
modules_active: 'Released',
modules_pending: 'Unpublished',
modules_create: 'Create API',
modules_import: 'import',
modules_api_test: 'API test',
modules_publish_api: 'Publish API',
modules_unpublish_api: 'Unpublish',
modules_dialog_import_title: 'Task import',
modules_dialog_condition: 'Condition',
modules_dialog_overwrite_data: 'Overwrite existing data',
modules_dialog_skip_data: 'Skip existing data',
modules_dialog_group: 'Group',
modules_dialog_file: 'File',
modules_dialog_upload_files: 'Upload files',
modules_header_api_name: 'API name',
modules_header_dataSource: 'Data Source',
modules_header_tablename: 'table name',
modules_header_status: 'Status',
modules_header_basePath: 'Base Path',
modules_header_classifications: 'Classification',
modules_header_username: 'creator',
modules_status_deploying: 'Deploying',
modules_status_starting: 'Starting',
modules_status_running: 'Running',
modules_status_restart: 'Update in progress',
modules_status_deploy_fail: 'Publishing API failed',
modules_status_exit: 'Exited',
modules_status_stop: 'Stopped',
modules_status_ready: 'valid',
modules_status_invalid: 'invalid',
modules_allacancel: 'Batch cancel',
modules_allarelease: 'Batch release',
modules_releasefb:
'Are you sure you want to release the following APIs in batches?',
modules_releasecancel:
'Are you sure you want to cancel the following APIs in batches?',
modules_api_server_status: 'API Service Status',
modules_sure: 'Are you sure you want',
modules_cancel_failed: 'Unpublished API failed',
modules_name_placeholder: 'Please enter the table name/database name',
module_form_connection: 'Database',
module_form_tablename: 'table name',
module_form_default_Api: 'Default CURD API',
module_form_customer_Api: 'Custom API',
module_form_noPath: 'Please add a path',
module_form_prefix: 'Prefix',
module_form_basePath: 'Base Path',
module_form_path: 'Path',
module_form_security: 'Permission Settings',
module_form_permission: 'Permission',
module_form_choose: 'Choose directory',
module_form_document: 'API document',
module_form_tags: 'Data Directory',
module_form_preview: 'Data Preview',
module_form_public_api: 'Public',
module_form_available_query_field: 'Available query field',
module_form_required_query_field: 'Required query conditions',
module_form_validator_name:
'Can only contain letters, numbers, underscores and dollar signs, and numbers cannot start with',
module_form_create_a_new_record: 'Create a new record',
module_form_get_record_by_id: 'Get records based on id',
module_form_update_record_by_id: 'Update record according to id',
module_form_delete_record_by_id: 'Delete records based on id',
module_form_get_record_list_by_page_and_limit: 'Get records by page',
module_form_method: 'Method',
module_form_fields: 'Fields',
module_form_datatype: 'Data Type',
module_form_condition: 'Filter condition',
module_form_get_api_uri_fail: 'Failed to get API Server Uri',
module_form_name_null: 'The name cannot be empty',
query_build_match_condition: 'Match condition',
query_build_any: 'any',
query_build_addGroup: 'Add group',
query_build_removeGroup: 'Remove group',
query_build_addCondition: 'Add Condition',
query_build_removeCondition: 'Remove Condition',
query_build_show_filter: 'Show filter conditions',
query_build_queryValue: 'Field value',
query_build_add: 'Add',
// client 客户端
application_header_id: 'Client ID',
application_header_client_name: 'Client name',
application_header_grant_type: 'Grant Type',
application_header_client_secret: 'Client Secret',
application_header_redirect_uri: 'Redirect URI',
application_header_scopes: 'Permission scope',
application_generator: 'Generate',
application_show_menu: 'Show to the menu',
application_true: 'Yes',
application_false: 'No',
application_create: 'Create a client',
application_client_id_placeholder: 'Can be left empty, system will auto-generate',
//api 监控
api_monitor_total_totalCount: 'Total number of APIs',
api_monitor_total_warningApiCount: 'Total API Access',
api_monitor_total_warningVisitCount: 'Total API Access Warning',
api_monitor_total_visitTotalLine: 'The total number of API access lines',
api_monitor_total_transmitTotal: 'API transmission total',
api_monitor_total_warningCount: 'API warning count',
api_monitor_total_successCount: 'API Successful count',
api_monitor_total_columns_failed: 'Failure rate (%)',
api_monitor_total_FailRate: 'API failure rate TOP sort',
api_monitor_total_consumingTime: 'API response time TOP sort',
api_monitor_total_rTime: 'Maximum Response time',
api_monitor_total_clientName: 'client',
api_monitor_total_api_list: 'API list',
api_monitor_total_api_list_name: 'API name',
api_monitor_total_api_list_status: 'API status',
api_monitor_total_api_list_visitLine: 'Number of API access lines',
api_monitor_total_api_list_visitCount: 'Number of API visits',
api_monitor_total_api_list_transitQuantity: 'API access transfer volume',
api_monitor_total_api_list_status_active: 'Active',
api_monitor_total_api_list_status_pending: 'Pending',
api_monitor_total_api_list_status_generating: 'Generating',
api_monitor_detail_visitTotalCount: 'Number of Successful API visits',
api_monitor_detail_visitQuantity: 'API transfer amount',
api_monitor_detail_timeConsuming: 'API access time',
api_monitor_detail_visitTotalLine: 'Number of API access lines',
api_monitor_detail_speed: 'API transfer rate',
api_monitor_detail_responseTime: 'API response time',
api_monitor_detail_monitoring_period: 'Monitoring period',
api_monitor_detail_Monitoring_conditions: 'Monitoring conditions',
// api server api浏览
api_server_user: 'User',
api_server_create: 'New server',
api_server_create_server: 'Create API',
api_server_process_id: 'API server unique ID',
api_server_client_name: 'API server name',
api_server_client_uri: 'API server access address',
api_server_download_API_Server_config: 'Download API configuration file',
api_server_no_available: 'No API server available',
// api browse api浏览
dataExplorer_query: 'Query',
dataExplorer_document: 'API Document',
dataExplorer_query_time: 'Query usage',
dataExplorer_render_time: 'Rendering use',
dataExplorer_tag_title: 'Set tag',
dataExplorer_show_column: 'Show column',
dataExplorer_new_document: 'New record',
dataExplorer_timeout: 'Timeout time',
dataExplorer_unauthenticated:
'You do not have permission to access the API. ',
dataExplorer_message_timeout:
'The connection to the API server has timed out, please check whether the API server has been started. ',
dataExplorer_publish:
'The API of {id} was not found on the API server. Please check if it has been published. ',
dataExplorer_no_permissions:
'Your token has expired, please refresh the page and try again. ',
dataExplorer_datetype_without_timezone: 'Time zone of time type (optional)',
dataExplorer_mysql_datetype_without_timezone: 'Type of impact: DATETIME',
dataExplorer_export: 'Export file',
dataExplorer_add_favorite: 'Favorites',
dataExplorer_add_favorite_name: 'Favorite name',
dataExplorer_format: 'Format code',
dataExplorer_apiservr: 'Api server',
dataExplorer_base_path: 'Base path',
// server audit 服务审计
apiaudit_name: 'API name',
apiaudit_access_type: 'Access Type',
apiaudit_visitor: 'Client Name',
apiaudit_ip: 'Visitor IP',
apiaudit_interview_time: 'Access Time',
apiaudit_interview_time_start: 'Access start time',
apiaudit_interview_time_end: 'Access end time',
apiaudit_visit_result: 'Result',
apiaudit_reason_fail: 'Failure reason',
apiaudit_log_info: 'Log details',
apiaudit_parameter: 'parameter',
apiaudit_link: 'Link',
apiaudit_access_records: 'Number of access records',
apiaudit_average_access_rate: 'API average access rate',
apiaudit_access_time: 'Access time',
apiaudit_average_response_time: 'Average response time',
apiaudit_success: 'success',
apiaudit_placeholder: 'Please enter name/ID',
apiaudit_client_name_placeholder: 'Please enter client name',
// 连接
connection_list_form_database_type: 'Database type',
connection_list_name: 'Connection name',
connection_form_agent_msg:
"Agent's current state is abnormal and cannot create a connection, please check",
connection_reload_schema_confirm_title: 'Reload schema',
connection_reload_schema_confirm_msg:
'If there are too many schemas in this library, it may take a long time. Make sure to refresh the schema of the data source',
connection_reload_schema_fail: 'Schema load failed',
//Dag
//Task edit缓存节点提示
task_list_status_all: 'All status',
task_list_important_reminder: 'Important reminder',
task_list_stop_confirm_message:
'Pausing job while it is in the full sync stage may cause it to run from the beginning, are you sure you want to pause?',
task_status_running: 'Running',
task_status_not_running: 'Not running',
task_info_progress: 'Running',
//字段映射
migrate_select_connection_tip:
"If you haven't added a data source, please click the Add Data Source button to add it. In order to facilitate your testing, we recommend that the number of data sources should be at least 2",
// Function management
function_button_import_jar: 'Import',
function_details: 'Function details',
function_tips_name_repeat: 'Method name repeat',
function_type_label: 'Function type',
function_type_option_custom: 'Custom function',
function_type_option_jar: 'Third-party jar package',
function_type_option_system: 'System function',
function_name_label: 'Function name',
function_name_placeholder: 'Please enter the function name',
function_name_repeat: 'Function name repeat',
function_class_label: 'Class name',
function_file_label: 'jar file',
function_button_file_upload: 'Click to upload',
function_file_upload_tips: 'Please upload the jar package file',
function_file_upload_success: 'Upload successful',
function_file_upload_fail: 'Upload failed',
function_parameters_describe_label: 'Parameter description',
function_parameters_describe_placeholder:
'Support input parameter types and specific description of return parameter types',
function_return_value_label: 'Return value',
function_return_value_placeholder: 'Please enter the return value',
function_describe_placeholder: 'Please enter a description',
function_format: 'Format',
function_format_placeholder: 'Please enter a format',
function_jar_file_label: 'Jar file name',
function_package_name_label: 'Package name',
function_package_name_placeholder: 'Please enter a package name',
function_class_name_label: 'Class name',
function_method_name_label: 'Method name',
function_script_label: 'Code details',
function_script_empty: 'Please enter the function code',
function_script_missing_function_name: 'Missing function name',
function_script_missing_function_body: 'Missing function body',
function_script_format_error: 'The function format is incorrect',
function_script_only_one: 'Only one function is allowed to be created',
function_import_list_title: 'Function list',
function_button_load_function: 'Load function',
function_message_load_function_fail: 'Load function fail',
function_dialog_setting_title: 'Function setting',
function_message_function_empty:
'Please upload the jar file and load the function',
function_message_delete_title: 'Delete function',
function_message_delete_content:
'Deletion may cause the task that has called this function to report an error. Are you sure to delete this function? ',
function_tips_max_size: 'Max size ',
// solution解决方案
solution_customer_job_logs: 'Customer job logs',
solution_error_code: 'Error code',
solution_select_placeholder_type: 'Please select the type',
solution_search_result: 'Result',
solution_search_solutions: 'Solution',
// 共享挖掘
shared_cdc_placeholder_task_name:
'Please enter the mining task name to search',
shared_cdc_placeholder_connection_name:
'Please enter the connection name to search',
shared_cdc_name: 'Please enter the task name ',
shared_cdc_setting_select_mode: 'Storage mode',
shared_cdc_setting_select_mongodb_tip: 'Please enter mongodb connection',
shared_cdc_setting_select_table_tip: 'Please enter the table name',
shared_cdc_setting_select_time_tip: 'Please select the log saving time',
shared_cdc_setting_message_edit_save:
'Save successfully, it will take effect after restarting the task',
share_list_name: 'Mining name',
share_list_time_excavation: 'Excavation time point',
share_list_setting: 'Mining settings',
share_list_status: 'Status',
share_list_time: 'Mining Delay',
share_list_edit_title: 'Mining Edit',
share_list_edit_title_start_time: 'Mining Start Time',
share_form_setting_table_name: 'Store MongoDB table name',
share_form_setting_log_time: 'Log save time',
share_form_edit_name: 'Mining name',
share_form_edit_title: 'Whether to give up editing this mining task',
share_form_edit_text: 'This operation will not save the modified content',
share_detail_mining_info: 'Mining information',
share_detail_name: 'Mining name',
share_detail_log_mining_time: 'Log mining time',
share_detail_log_time: 'log storage time',
share_detail_call_task: 'Call task',
share_detail_source_time: 'Source library time point',
share_detail_sycn_time_point: 'Sync time point',
share_detail_mining_status: 'Mining status',
share_detail_button_table_info: 'Table details',
share_detail_statistics_time: 'Statistics time',
share_detail_incremental_time: 'The time point',
// 设置
setting_email_template: 'Email Template',
setting_saveSuccess: 'Save successfully, take effect in one minute',
setting_nameserver: 'Server Name',
setting_Log: 'Log Management',
setting_SMTP: 'SMTP Settings',
setting_Job: 'Task Management',
setting_License: 'License Management',
setting_expiredate: 'Expiration Date',
setting_import: 'Import',
setting_apply: 'Apply for license',
setting_license_expire_date: 'License expiration time',
setting_Worker: 'Process',
setting_Download: 'Download',
setting_Log_level: 'Log level',
setting_maxCpuUsage: 'Maximum CPU usage (value range 0.1 ~ 1)',
setting_maxHeapMemoryUsage: 'Maximum heap memory usage (value range 0.1 ~ 1)',
setting_switch_insert_mode_interval:
'Interval time for switching to batch insert mode in incremental mode (unit: second)',
setting_Email_Communication_Protocol: 'Encryption Method',
setting_SMTP_Server_Port: 'SMTP service port',
setting_SMTP_Server_User: 'SMTP service account',
setting_SMTP_Server_password: 'SMTP service password',
setting_Email_Receivers: 'Email receiving email address',
setting_Email_Send_Address: 'Email sending email address',
setting_SMTP_Server_Host: 'SMTP Service Host',
setting_Send_Email_Title_Prefix: 'Send Email title prefix (optional)',
setting_SMTP_Proxy_Host: 'SMTP proxy service host (optional)',
setting_SMTP_Proxy_Port: 'SMTP proxy service port (optional)',
setting_Email_Template_Running: 'Task start notification',
setting_Email_Template_Paused: 'Task Paused Notification',
setting_Email_Template_Error: 'Task error notification',
setting_Email_Template_Draft: 'Notification of task being edited',
setting_Email_Template_CDC: 'Task Replication Delay Notification',
setting_Email_Template_DDL: 'DDL error notification',
setting_Clean_Message_Time: 'Clear message time',
setting_Keep_Alive_Message: 'Keep online message',
setting_Sample_Rate: 'Sampling rate',
setting_task_load_threshold: 'Task load threshold (percentage)',
setting_task_load_statistics_time: 'Task load statistics time (minute)',
setting_ApiServer: 'API Distribution Settings',
setting_Default_Limit: 'The number of rows returned by the default query',
setting_Max_Limit: 'Maximum number of rows returned by the query',
setting_Desensitize_API_request_parameters: 'Desensitize API request parameters',
'setting_Timeout_period_for_API_access_to_the_database_(millisecond)': 'The timeout period for API access to the database (millisecond)',
setting_Send_batch_size: 'Number of packed data',
setting_hint_Send_batch_size: 'Number of packed data',
setting_Mongodb_target_create_date:
'Whether to add the creation time to the target data set',
setting_Mongodb_target_create_date_docs:
'Whether to add the creation time to the target data set',
setting_System: 'System Resource Monitoring',
setting_Collect_system_info_interval:
'System resource monitoring collection frequency (seconds)',
setting_Interval_to_collect_system_info:
'System resource information (CPU, memory, hard disk usage) monitoring collection frequency',
setting_Job_Sync_Mode: 'Task synchronization mode',
setting_Worker_Threshold: 'Process Threshold',
setting_Worker_Heartbeat_Expire: 'Process heartbeat period time (seconds)',
setting_License_Key: 'Certificate Key',
setting_Enter_jobs_log_level__error_warn_info_debug_trace:
'Enter task log level: error/warn/info/debug/trace',
setting_Email_Receivers_Multiple_separated_by_semicolons:
'Mail recipients, you can enter multiple, separated by commas',
setting_Keep_recent_n_hours_message_before_the_last_processed_message_s_time_:
'Keep the last n hours news',
setting_Store_full_record_as_embedded_document_in_target_collection_for_update_operations:
'Cache a copy of the current overall data and merge it into the target data set',
setting_Store_before_field_as_embedded_document_in_target_collection_before_update_operation:
'Cache a copy of the overall data before modification and merge it into the target data set',
setting_Store_job_script_processor_log_to_cloud:
'Whether to transfer task logs to the cloud',
setting_Validator_to_validate_data__s_sample_rate:
'Validation data sampling rate',
setting_retry_interval_second: 'Retry Interval(Second)',
setting_max_retry_time_minute: 'Maximum Retry Time(Minute)',
setting_Process_message_mode__consistency_fast:
'Message processing mode consistency/fast',
setting_Worker_can_execute_the_nums_of_Jobs:
'The process can perform multiple tasks',
setting_Worker_heartbeat_expire_time: 'Process heartbeat period time',
setting_Users: 'User',
setting_Show_Page: 'Show download page',
setting_User_Registery: 'User registration management',
setting_hint_Show_Page: 'Show download page',
setting_hint_User_Registery:
'User registration type settings. The value is set to "disabled": registration is prohibited; the value is set to "self-signup" to enable user self-registration; the value is set to "manual-approval" to allow user registration, but requires administrator approval. ',
setting_DR_Rehearsal: 'Disaster Recovery Drill',
setting_Mongod_path: 'Mongod path',
setting_SSH_User: 'SSH username',
setting_SSH_Port: 'SSH Port',
setting_hint_Mongod_path: 'Mongod path',
setting_hint_SSH_User: 'SSH username, used to connect to the host of Mongod',
setting_hint_SSH_Port: 'SSH port, used to connect to the host of Mongod',
setting_Enable_DR_Rehearsal: 'Allow disaster recovery exercises',
setting_hint_Enable_DR_Rehearsal:
'Disaster recovery rehearsal switch, true means on, false means off',
setting_Download_Agent_Page: 'Agent Download Page',
setting_Background_Analytics: 'Background Analysis',
setting_Data_quality_analysis_frequency:
'Data quality analysis interval (seconds)',
setting_Dashboard_data_analysis_frequency:
'Panel data analysis interval (seconds)',
setting_dashboard_Analysis_Interval: 'Panel data analysis interval (seconds)',
setting_quality_Analysis_Interval: 'Data quality analysis interval (seconds)',
setting_Log_filter_interval: 'Log filtering interval (seconds)',
setting_Filter_the_interval_between_duplicate_logs__seconds__:
'The same log appears only once within a specified time (valid after 1 minute)',
setting__DK36: 'File download',
setting_File_Down_Base_Url: 'Address',
setting_Set_the_average_number_of_events_per_second_to_allow:
'Log settings allow the average number of events per second',
setting_Log_Filter_Rate: 'Log output frequency (line/sec)',
setting_Connections: 'Connection Settings',
setting_Mongodb_Load_Schema_Sample_Size:
'Mongodb load model sample records (rows)',
setting_hint_Mongodb_Load_Schema_Sample_Size:
'When MongoDB connects to load the model, this configuration will be used for sampling and loading',
setting_Enable_API_Stats_Batch_Report: 'Enable API Statistics',
setting_Header: 'UDP header information',
setting_hint_Header: 'UDP header information',
setting_Size_Of_Trigger_API_Stats_Report:
'Maximum number of API request cache',
setting_hint_Size_Of_Trigger_API_Stats_Report:
'When the number of API request records reaches the specified number, batches are sent to the management end',
setting_Time_Span_Of_Trigger_API_Stats_Report:
'API request report frequency (seconds)',
setting_hint_Time_Span_Of_Trigger_API_Stats_Report:
'The API request is cached and sent to the management end at the specified time',
setting_save: 'Save successfully, take effect in one minute',
setting_Logout_forward_to_this_url: 'Logout forwarding address',
setting_Check_devices: 'Important device detection',
setting_ops: 'Operations & Maintenance',
setting_server_oversee_url: 'O&M Control URL',
setting_system: 'System Global Settings',
setting_licenseNoticeDays: 'license expiration reminder',
setting_license_alarm: 'License expiry advance reminder (days)',
setting_License_expiry_email_reminder_:
'License expiry advance reminder settings (days)',
setting_flow_engine_version: 'Flow engine version',
setting_tapdata_agent_version: `${import.meta.env.VUE_APP_PAGE_TITLE} agent version`,
setting_doc_base_url: 'Help document URL',
setting_help: 'Help document',
setting_Ip_addresses: 'Ipv4 addresses (separated by multiple commas)',
setting_hint_Ip_addresses:
'The ipv4 address of the device to be detected, for example: 127.0.0.1, 192.168.0.1',
setting_PingTimeout: 'Detection timeout (milliseconds)',
setting_hint_PingTimeout:
'When this setting is exceeded, it is considered that the device cannot be connected',
setting_Job_field_replacement: 'Illegal characters replaced with',
setting_A_replacement_for_the_invalid_field_name:
'Some databases have special requirements for field names, System will automatically replace illegal characters during synchronization. MongoDB[Contains ".", "$" as the beginning]',
setting_true__store_log_to_cloud__false__only_store_to_local_log_file_:
'true: store log to cloud, false: only store to local log file.',
setting_When_one_document_may_be_updated_frequently_within_very_short_period_a_few_updates_within_one_second__for_instance___the_change_stream_event_received_by_downstream_processor_may_return_the__fullDocument__that_is_inconsistent_with_the_actual_version_when_the_update_was_applied_to_that_document__To_avoid_this_inconsistency__enable_this_option_to_store_the_full_document_along_with_the_update_operation__This_will_at_the_expense_of_additional_storage_and_degraded_performance_:
'When a document may be frequently updated in a very short time (for example, several updates within a second), the change stream event received by the downstream processor may return "fullDocument" that is inconsistent with the actual version ( Inconsistent with the actual version) the file. To avoid this inconsistency, please enable this option to store the complete document with the update operation. This will be at the expense of increased storage space and reduced performance. ',
setting_the_before_field_contains_a_field_for_each_table_column_and_the_value_that_was_in_that_column_before_the_update_operation_:
'the before field contains a field for each table column and the value that was in that column before the update operation.',
setting_Job_heart_timeout:
'Synchronization task heartbeat timeout (milliseconds)',
setting_job_cdc_share_mode: 'Incremental synchronization task sharing mode',
setting_job_cdc_share_mode_doc:
'In the incremental synchronization phase, the sharing mode will be automatically adopted according to whether the log collection task is available. Affected database: Oracle',
setting_job_cdc_share_only: 'Incremental tasks are forced to use shared mode',
setting_job_cdc_share_only_doc:
'When the incremental synchronization task sharing mode is turned on and a sharable log cannot be found, the task will be stopped',
setting_test_email_success:
'The test email has been sent, please log in to the receiving mailbox to check it',
setting_test_ldap_success: 'Connected to Ldap service successfully',
setting_test_email_countdown:
'The operation is too frequent, please try again later',
setting_email_template_from: 'From',
setting_email_template_to: 'Recipient',
setting_email_template_subject: 'Subject',
setting_job_cdc_record: 'Automatically save incremental events',
setting_job_cdc_record_doc: 'Automatically save incremental events',
setting_job_cdc_record_ttl: 'Incremental event save time (days)',
setting_job_cdc_record_ttl_doc: 'Incremental event save time (days)',
setting_lagTime: 'incremental lag decision time (seconds)',
setting_connection_schema_update_hour: 'Data source schema update time',
setting_connection_schema_update_interval:
'Data source schema update interval (days)',
setting_creatDuplicateSource: 'Allow the creation of duplicate data sources',
setting_requestFailed: 'Request processing failed',
setting_Mongodb_will_use_this_sample_size_when_load_schema:
'Mongodb will use this sample size when load schema When MongoDB connects to load the model, this configuration will be used for sample loading',
setting_Switch_to_batch_insert_mode_interval__s__in_cdc_:
'Switch to batch insert mode interval in cdc. ',
setting_share_cdc: 'Share cdc',
setting_share_cdc_persistence_mode: 'Share cdc persistence mode',
setting_share_cdc_persistence_memory_size:
'Shared incremental memory cache line count',
setting_share_cdc_persistence_memory_size_doc:
'This configuration controls the number of lines in the memory cache for shared incremental events',
setting_share_cdc_persistence_mode_doc:
'Share cdc persistence mode.Options: InMemory, MongoDB, RocksDB',
setting_share_cdc_persistence_mongodb_uri_db:
'Stores the connection name of the MongoDB',
setting_share_cdc_persistence_mongodb_uri_db_doc:
'This configuration takes effect only when MongoDB is selected as the mode. Enter the created MongoDB connection name.',
setting_share_cdc_persistence_mongodb_collection:
'The name of the collection where MongoDB is stored',
setting_share_cdc_persistence_mongodb_collection_doc:
'This configuration takes effect only when MongoDB is selected as the mode, enter the stored collection name',
setting_share_cdc_persistence_rocksdb_path:
'The local path to the RocksDB store',
setting_share_cdc_persistence_rocksdb_path_doc:
'This configuration takes effect only when RocksDB is selected as the mode, and the local path stored by RocksDB',
setting_task_log_file_save_time: 'Task log retention time (days)',
setting_task_log_file_save_size: 'Task log retention size (MB)',
setting_task_log_file_save_count: 'Task log retention total count',
setting_agent_log_file_save_time: 'Agent log retention time (days)',
setting_agent_log_file_save_size: 'Agent log retention size (MB)',
setting_agent_log_file_save_count: 'Agent log retention total count',
setting_INCREMENTAL_DELAY_LINE_DATA_COEFFICIENT:
'Incremental delay line data coefficient',
setting_Login: 'Login Settings',
setting_Login_Single_Session: 'Single session login',
setting_Login_Single_Session_doc:
'Once enabled, only a single session of login is allowed for the same account',
setting_Login_Brief_Tips: 'Login brief tips',
setting_Login_Brief_Tips_doc:
'Once enabled, the login prompt will be simplified',
setting_LDAP: 'LDAP Authentication',
setting_Ldap_Login_Enable: 'Use LDAP Login',
setting_Ldap_Server_Host: 'LDAP Server Address',
setting_Ldap_Server_Port: 'LDAP Server Port',
setting_Ldap_Base_DN: 'LDAP Base DN',
setting_Ldap_Bind_DN: 'LDAP Account',
setting_Ldap_Bind_Password: 'LDAP Password',
setting_Ldap_SSL_Enable: 'Enable SSL',
setting_Ldap_Server_Host_doc:
'The domain controller address of AD, e.g., ldap://ad.example.com or ldaps://ad.example.com',
setting_Ldap_Server_Port_doc:
'LDAP typically uses port 389, while LDAPS (secure connection) uses port 636',
setting_Ldap_Base_DN_doc:
'The starting point of an LDAP query, used to define the search scope in AD, with multiple groups separated by semicolons. Example: cn=Users, dc=example,dc=com;cn=Test,dc=example,dc=com',
setting_Ldap_Bind_DN_doc:
'The full Distinguished Name (DN) of the user for authentication, i.e., the identity used to log in to the AD server, e.g., user@example.com',
setting_Ldap_Bind_Password_doc:
'The password corresponding to the Bind DN, used for authentication',
user_list_user_name_email: 'Please enter username/email',
user_list_change_time: 'Modification time',
user_list_creat_user: 'Create user',
user_list_edit_user: 'Edit user',
user_list_user_name: 'username',
user_list_role: 'Associated role',
user_list_source: 'source',
user_list_status: 'Status',
user_list_activation: 'Activation',
user_list_freeze: 'Freeze',
user_list_check: 'check',
user_list_bulk_activation: 'Bulk activation',
user_list_bulk_freeze: 'Bulk freeze',
user_list_bulk_check: 'Bulk check',
user_list_del_user: 'After deleting user {0}, this user cannot be recovered',
user_list_activetion_user: `After activating user {0}, this user will be able to use the ${import.meta.env.VUE_APP_PAGE_TITLE} system`,
user_list_freeze_user: `After freezing user {0}, this user will not be able to use the ${import.meta.env.VUE_APP_PAGE_TITLE} system`,
user_list_check_user:
'After checking the mailbox of user {0}, this user can be activated',
user_list_activetion_success: 'Activation successful',
user_list_freeze_success: 'Freeze successful',
user_list_freeze_error: 'Freeze failed',
user_list_check_success: 'Pass the check',
user_list_check_error: 'Check failed',
user_status_notVerified: 'Not Verified',
user_status_notActivated: 'Not activated',
user_status_activated: 'activated',
user_status_rejected: 'rejected',
user_form_role: 'Associated role',
user_form_email: 'email',
user_form_email_must_valid: 'Please enter a valid email address',
user_form_password_null:
'Please enter a password, the length is 5 ~ 32 characters',
user_form_pass_hint:
'The length of the password cannot be less than 5 and greater than 32',
user_form_password_not_cn:
'Password only allows English, numbers and English punctuation',
user_form_activation_code: 'Access code',
user_form_status: 'Status',
cluster_name: 'Monitoring name',
cluster_status: 'Status',
cluster_service_status: 'Service',
cluster_cpu_usage: 'CPU usage',
cluster_heap_memory_usage: 'Heap memory usage',
cluster_update: 'Update',
cluster_running: 'running',
cluster_stopped: 'stopped',
cluster_sync_gover: 'Flow Engine',
cluster_manage_sys: 'Backend Admin',
cluster_add_server_mon: 'Add service monitoring',
cluster_agentSetting: 'Agent server settings',
cluster_server_name: 'server name',
cluster_placeholder_mon_server: 'Please enter the monitored service name',
cluster_placeholder_command: 'Please enter the command',
cluster_ip_display: 'Network card IP display',
cluster_ip_tip:
'Switching the network card only changes the display of IP under the server on the cluster management page, and does not affect any functions',
cluster_confirm_text: 'Confirm',
cluster_restart_server: 'Restart Service',
cluster_unbind_server: 'Unbind Server',
cluster_start_server: 'Start Service',
cluster_startup_after_add: 'Please add after startup',
cluster_startup_after_delete: 'Please delete after startup',
cluster_del_message: 'OK to delete the server',
cluster_server_nickname: 'server name',
cluster_command: 'command',
instance_details_shujuyuanziyuan: 'Data Source Resource Download',
instance_details_xianchengziyuanxia: 'Flow Engine Thread Resource Download',
license_node_name: 'Node name',
license_node_sid: 'node sid',
license_status: 'License status',
license_expire_date: 'License expiration time',
license_update_time: 'License update time',
license_renew_dialog: 'Renew License',
license_normal: 'normal',
license_expiring: 'Expiring soon',
license_expired: 'Expired',
license_try_out: 'trial',
license_copied_clipboard: 'Copied to clipboard',
license_select_node: 'Please select the node first',
license_renew_success: 'Update succeeded, page will refresh',
// 自定义节点
custom_node_name: 'Node Name',
custom_node_name_placeholder: 'Please enter the node name to search',
notify_setting: 'Notification Settings',
notify_system_notice: 'System',
notify_user_notice: 'User',
notify_view_more: 'View all',
notify_no_notice: 'No notification',
notify_view_all_notify: 'View all',
notify_user_all_notice: 'All',
notify_unread_notice: 'Unread message',
notify_mask_read: 'Mark this page as read',
notify_mask_read_all: 'Mark all read',
notify_data_flow: 'task',
notify_sync: 'Data development',
notify_migration: 'Data copy',
notify_notice_type: 'Message Type',
notify_notice_level: 'Message level',
notify_manage_sever: 'Management side',
notify_inspect: 'Verify Task',
notify_ddl_deal: 'DDL processing',
notify_source_name: 'source connection',
notify_database_name: 'Database name',
notify_system: 'license expiration time',
notify_started: 'Started',
notify_paused: 'Paused',
notify_edited: 'edited',
notify_deleted: 'Deleted',
notify_abnormally_stopped: 'Stopped Unexpectedly',
notify_stopped_by_error: 'Error stop',
notify_startup_failed: 'Startup failed',
notify_stop_failed: 'Stop failed',
notify_encounter_error_skipped: 'An ERROR was skipped during operation',
notify_cdc_lag: 'CDC lag timeout',
notify_manage_sever_restart_failed: 'Management server restart failed',
notify_api_sever_restart_failed: 'API service restart failed',
notify_sync_sever_restart_failed:
'The synchronization management service failed to restart',
notify_connection_interrupted: 'Disconnected',
notify_manage_sever_start_failed:
'The management server service failed to start',
notify_api_sever_start_failed: 'The API service failed to start',
notify_sync_sever_start_failed:
'The synchronization management service failed to start',
notify_manage_sever_stop_failed: 'The management server failed to stop',
notify_api_sever_stop_failed: 'The API service failed to stop',
notify_sync_sever_stop_failed:
'The synchronization management service failed to stop',
notify_api_sever_abnormally_stopped: 'The API service stopped unexpectedly',
notify_sync_sever_abnormally_stopped:
'Flow Engine service unexpectedly stopped',
notify_manage_sever_abnormally_Stopped:
'The service on the management side stopped unexpectedly',
notify_manage_sever_started_successfully:
'The management service has been started',
notify_api_sever_started_successfully: 'API service has been started',
notify_sync_sever_started_successfully:
'The synchronization management service has been started',
notify_manage_sever_Stopped_successfully:
'The management service has been stopped',
notify_api_sever_stopped_successfully: 'API service has been stopped',
notify_sync_sever_stopped_successfully:
'The synchronization management service has been stopped',
notify_manage_sever_restarted_successfully:
'The management service has been restarted',
notify_api_sever_restarted_successfully: 'The API service has been restarted',
notify_sync_sever_restarted_successfully:
'The synchronization management service has been restarted',
notify_new_sever_created_successfully: 'New service monitoring was created',
notify_new_sever_deleted_Successfully: 'New service monitoring was deleted',
notify_database_ddl_changed: 'Monitored database DDL changes',
notify_inspect_verify_job_count: 'Count is different',
notify_inspect_verify_job_value: 'Content is different',
notify_inspect_verify_job_delete: 'Deleted',
notify_inspect_verify_job_error: 'Running error',
notify_approaching: 'Remaining',
notify_system_setting: 'System settings',
notify_tip:
'This setting configures system-wide notifications. Notification settings at the task level take precedence over this global notification setting.',
notify_job_operation_notice: 'Task operation notification',
notify_email_notice: 'Email notification',
notify_job_started: 'The job was started',
notify_noticeInterval: 'Send interval',
notify_operator: 'Operator',
role_list_select_role_name: 'Please enter the role name',
role_list_role_name: 'role name',
role_list_description: 'role description',
role_list_associat_users: 'associat users',
role_list_create: 'Create roles',
role_list_edit: 'Edit roles',
role_list_default_role: 'Default role',
role_list_setting_permissions: 'Set Permissions',
role_list_setting_api: 'Set API access',
role_list_delete_remind: 'Confirm to delete role {0}',
role_list_delete_success: 'Delete the role successfully',
role_list_setting_api_selected: 'Selected {0} APIs',
role_list_setting_api_empty_confirm: 'Are you sure you want to cancel all API access settings?',
role_list_setting_select_api: 'Please select API',
role_form_yes: 'Yes',
role_form_no: 'No',
role_form_selectUser: 'Please select a user name',
role_form_connected: 'connected',
role_form_already_exists: 'The role name is repeated',
role_null: 'The role name cannot be empty',
role_form_description: 'The role description cannot be empty',
role_page_Dashboard_menu: 'Console',
role_page_datasource_menu: 'Connection management',
role_page_Data_SYNC_menu: 'Data Replication & Data Development',
role_page_Data_verify_menu: 'Data verification',
role_page_log_collector_menu: 'Shared mining',
role_page_SYNC_Function_management_menu: 'Function management',
role_page_custom_node_menu: 'Custom Node',
role_page_shared_cache_menu: 'Shared cache',
role_page_data_search_menu: 'Data search',
role_page_data_catalog_menu: 'Data catalog',
role_page_data_quality_menu: 'Data Quality',
role_page_data_rules_menu: 'Data rules',
role_page_time_to_live_menu: 'Data life cycle',
role_page_data_lineage_menu: 'Data Map',
role_page_API_management_menu: 'API release',
role_page_API_data_explorer_menu: 'API browse',
role_page_API_doc_test_menu: 'API test',
role_page_API_stats_menu: 'API statistics',
role_page_API_clients_menu: 'API clients',
role_page_API_server_menu: 'API server',
role_page_data_collect_menu: 'Data collection (old version)',
role_page_schedule_jobs_menu: 'Scheduled tasks',
role_page_Cluster_management_menu: 'Cluster management',
role_page_agents_menu: 'Process management',
role_page_user_management_menu: 'User management',
role_page_role_management_menu: 'Role management',
role_page_system_settings_menu: 'System settings',
role_page_dictionary_menu: 'Dictionary template management',
role_page_Topology_menu: 'Network topology',
role_page_servers_oversee_menu: 'Operation and maintenance operation control',
role_all_check: 'Check all',
role_module_meun_Dashboard: 'Browse console',
role_module_meun_datasource: 'Connection management',
role_module_meun_Data_SYNC: 'Data Replication & Data Development',
role_module_meun_SYNC_Function_management: 'Function management',
role_module_meun_Data_verify: 'Data verification',
role_module_meun_log_collector: 'Shared mining',
role_module_meun_custom_node: 'custom node',
role_module_meun_shared_cache: 'Shared cache',
role_module_meun_data_search: 'Data search',
role_module_meun_data_government: 'Data governance classification',
role_module_meun_data_catalog: 'Data catalog',
role_module_meun_data_quality: 'Data quality',
role_module_meun_data_rules: 'Data rules',
role_module_meun_time_to_live: 'Data life cycle',
role_module_meun_data_lineage: 'Data Map',
role_module_meun_API_management: 'API release',
role_module_meun_API_data_explorer: 'API browse',
role_module_meun_API_doc_test: 'API test',
role_module_meun_API_stats: 'API statistics',
role_module_meun_API_clients: 'API Client',
role_module_meun_API_server: 'API Server',
role_module_meun_data_collect: 'Data collection (old version)',
role_module_meun_schedule_jobs: 'Scheduled tasks',
role_module_meun_Cluster_management: 'Cluster management',
role_module_meun_agents: 'Process management',
role_module_meun_dictionary: 'dictionary template',
role_module_meun_user_management: 'User management',
role_module_meun_role_management: 'role management',
role_module_meun_system_settings: 'System settings',
role_name_Dashboard: 'Browse console',
role_name_system_notice: 'Message notification',
role_name_notice_settings: 'Message notification settings',
role_name_account_operation_history: 'operation history',
role_name_datasource: 'Browse connection management',
role_name_datasource_category_management:
'Connection management category management',
role_name_datasource_category_application:
'Connection management category application',
role_name_datasource_creation: 'Connection management creation',
role_name_datasource_delete: 'Connection management delete',
role_name_datasource_edition: 'Connection management editor',
role_name_data_transmission: 'Data pipeline',
role_name_Data_SYNC: 'Browse replication and transformation tasks',
role_name_SYNC_category_management: 'Task classification management',
role_name_SYNC_category_application: 'Task classification application',
role_name_SYNC_job_delete: 'Delete job',
role_name_SYNC_job_edition: 'Edit job',
role_name_SYNC_job_operation: 'Task operation',
role_name_SYNC_job_import: 'Task import',
role_name_SYNC_job_export: 'Task export',
role_name_SYNC_Function_management: 'Browse letter management',
role_name_Data_verify: 'Browse data verification',
role_name_verify_job_creation: 'Create verification task',
role_name_verify_job_edition: 'Edit and execute verification tasks',
role_name_verify_job_delete: 'Delete verification job',
role_name_verify_job_execution: 'Verify job execution',
role_name_log_collector: 'Browse shared mining',
role_name_custom_node: 'Browse custom node',
role_name_shared_cache: 'Browse shared cache',
role_name_data_search: 'Browse data search',
role_name_data_government: 'Data governance',
role_name_data_catalog: 'Browse data catalog',
role_name_data_catalog_category_management:
'Data catalog classification management',
role_name_data_catalog_category_application:
'Data catalog classification application',
role_name_data_catalog_edition: 'Edit metadata',
role_name_new_model_creation: 'Create model',
role_name_meta_data_deleting: 'Metadata deletion',
role_name_data_quality: 'Browse data quality',
role_name_data_quality_edition: 'Edit data quality',
role_name_data_rules: 'Browse data rules',
role_name_data_rule_management: 'Data rule management',
role_name_time_to_live: 'Browse data life cycle',
role_name_time_to_live_management: 'Data Lifecycle Management',
role_name_data_lineage: 'Browse data map',
role_name_data_publish: 'Browse data publishing',
role_name_API_management: 'Browse API release',
role_name_API_category_application: 'API category application',
role_name_API_category_management: 'API category management',
role_name_API_creation: 'API creation',
role_name_API_delete: 'API delete',
role_name_API_edition: 'API editor',
role_name_API_publish: 'Publish API',
role_name_API_import: 'API import',
role_name_API_export: 'API export',
role_name_API_data_explorer: 'Browse API data browser',
role_name_API_data_explorer_export: 'Export API data',
role_name_API_data_explorer_deleting: 'Deleting API data',
role_name_API_data_explorer_tagging: 'API data tagging',
role_name_API_data_time_zone_editing: 'Edit time zone',
role_name_API_data_creation: 'Add API data',
role_name_API_data_download: 'Download API data',
role_name_API_doc_test: 'Browse API documentation test',
role_name_API_stats: 'Browse API statistical analysis',
role_name_API_clients: 'Browse API Clients',
role_name_API_clients_amanement: 'API client management',
role_name_API_server: 'Browse API server',
role_name_API_server_management: 'API server management',
role_name_data_collect: 'Browse the old version of data collection',
role_name_data_collect_all_data: 'Data collection old version',
role_name_system_management: 'Browse system management',
role_name_schedule_jobs: 'Browse Scheduled Jobs',
role_name_schedule_jobs_management: 'Scheduled task management',
role_name_Cluster_management: 'Browse cluster management',
role_name_Cluster_operation: 'Operation Agent service',
role_name_status_log: 'Status log',
role_name_agents: 'Browse process management',
role_name_user_management: 'Browse user management',
role_name_user_creation: 'Create user',
role_name_user_edition: 'Edit user',
role_name_user_delete: 'Delete user',
role_name_user_category_management: 'User category management',
role_name_user_category_application: 'User classification application',
role_name_role_management: 'Browse role management',
role_name_role_creation: 'Create role',
role_name_role_edition: 'Edit role',
role_name_role_delete: 'Delete role',