-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathzh-TW.js
More file actions
2024 lines (2023 loc) · 106 KB
/
zh-TW.js
File metadata and controls
2024 lines (2023 loc) · 106 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: '重新加載schema',
button_button: '新增',
// 通用消息
message_loading: '正在加載',
message_network_connected: '網絡已恢復',
//頁面標題
page_title_overview: '概覽',
page_title_dashboard: '工作台',
page_title_connections: '連接管理',
page_title_connections_create: '創建連接',
page_title_connections_edit: '編輯連接',
page_title_data_pipeline: '數據管道',
page_title_advanced_features: '高級功能',
page_title_data_copy: '數據複製',
page_title_task_edit: '編輯任務',
page_title_task_details: '任務詳情',
page_title_task_stat: '任務統計',
page_title_run_monitor: '運行監控',
page_title_data_develop: '數據轉換',
page_title_data_verify: '數據校驗',
page_title_data_difference_details: '差異詳情',
page_title_data_verification_result: '校驗結果',
page_title_diff_verification_history: '差異校驗歷史',
page_title_diff_verification_details: '差異校驗詳情',
page_title_shared_mining: '共享挖掘',
page_title_heartbeat_table: '心跳任務',
page_title_shared_mining_details: '挖掘詳情',
page_title_function: '函數管理',
page_title_function_import: '導入函數',
page_title_function_create: '創建函數',
page_title_function_edit: '編輯函數',
page_title_function_details: '函數詳情',
page_title_shared_cache: '共享緩存',
page_title_shared_cache_create: '創建緩存',
page_title_shared_cache_edit: '編輯緩存',
page_title_data_discovery: '數據發現',
page_title_data_object: '數據對象',
page_title_data_catalogue: '數據目錄',
page_title_data_service: '數據服務',
page_title_data_server_list: '服務管理',
page_title_api_application: '應用管理',
page_title_api_client: '客戶端',
page_title_api_servers: '服務器',
page_title_api_audit: '服務審計',
page_title_api_audit_details: '審計詳情',
page_title_api_monitor: '服務監控',
page_title_system: '系統管理',
page_title_data_metadata: '元數據管理',
page_title_cluster: '集群管理',
page_title_user: '用戶管理',
page_title_role: '角色管理',
page_title_setting: '系統設置',
page_title_webhook_alerts: 'Webhook 告警',
page_title_license: 'License管理',
page_title_back_menu: '返回菜单',
page_title_custom_node: '自定義節點',
page_title_account: '個人設置',
page_title_external_storage: '外存管理',
page_title_verification_create: '新建校驗',
page_title_verification_edit: '編輯校驗',
page_title_verification_history: '校驗歷史',
page_title_data_console: '數據面板',
// -- 多表選擇器
component_table_selector_candidate_label: '待覆制表',
component_table_selector_checked_label: '已選擇表',
component_table_selector_error_not_exit: '表不存在',
component_table_selector_error: '所選表存在異常',
component_table_selector_autofix: '清除異常表',
component_table_selector_bulk_pick: '批量選表',
component_table_selector_not_checked: '您暫時沒有選擇表',
component_table_selector_tables_empty: '您暫時沒有表,請點擊右上角重新加載表',
component_table_selector_clipboard_placeholder:
'請輸入表名稱並以逗號分隔,例如:table_a,table_b',
// app
app_license_expire_warning: 'License剩餘 {0} 天到期',
// Agent
agent_check_error: 'Agent當前狀態異常無法創建連接,請檢查',
// 控制台
dashboard_status_paused: '已暫停',
dashboard_status_wait_run: '啟動中',
dashboard_all_total: '全部任務',
dashboard_copy_total: '複製任務',
dashboard_sync_total: '開發任務',
dashboard_valid_total: '校驗任務',
dashboard_current_all_total: '全部任務',
dashboard_current_copy_total: '複製任務',
dashboard_current_sync_total: '數據轉換任務',
dashboard_current_valid_total: '校驗任務',
dashboard_copy_overview_title: '複製任務概覽',
dashboard_copy_status_title: '複製任務狀態',
dashboard_sync_overview_title: '開發任務概覽',
dashboard_sync_status_title: '開發任務狀態',
dashboard_valid_title: '數據校驗概覽',
dashboard_transfer_overview: '傳輸總覽',
dashboard_server_title: '集群總覽',
dashboard_total_valid: '全部校驗任務',
dashboard_passed: '校驗一致',
dashboard_countDiff: 'Count不一致',
dashboard_valueDiff: '內容差異',
dashboard_initializing: '初始化中',
dashboard_initialized: '初始化完成',
dashboard_cdc: '增量中',
dashboard_Lag: '增量滯後',
dashboard_server: '服務器',
dashboard_management: '管理端',
dashboard_task_transfer: '任務傳輸',
dashboard_api_service: 'API服務',
dashboard_starting: '啟動中',
dashboard_running: '運行中',
dashboard_stopping: '關閉中',
dashboard_stopped: '已關閉',
dashboard_restarting: '重啟中',
dashboard_total_insert: '總插入',
dashboard_total_update: '總更新',
dashboard_total_delete: '總刪除',
dashboard_public_error: '錯誤',
dashboard_public_total: '總計',
dashboard_total: '開啟校驗任務數',
dashboard_diff: '校驗有差異的任務數',
dashboard_can: '支持校驗任務數',
dashboard_error: '校驗出錯的任務數',
dashboard_no_data_here: '這裡沒用數據哦~',
dashboard_no_statistics: '暫無{0}統計',
// 元數據管理
metadata_db: '所屬庫',
metadata_change_name: '改名',
metadata_name_placeholder: '請輸入表名/數據庫名',
metadata_meta_type_directory: '目錄',
metadata_meta_type_table: '數據表',
metadata_form_create: '創建模型',
metadata_form_database: '數據庫',
metadata_form_collection: '數據集',
metadata_form_mongo_view: 'Mongodb視圖',
metadata_detail_original_table_name: '原表名',
metadata_detail_original_database_name: '原庫名',
// api發布
modules_active: '已發布',
modules_pending: '未發布',
modules_create: '創建 API',
modules_import: '導入',
modules_api_test: 'API測試',
modules_publish_api: '發布 API',
modules_unpublish_api: '取消發布',
modules_dialog_import_title: '任務導入',
modules_dialog_condition: '條件',
modules_dialog_overwrite_data: '覆蓋已有數據',
modules_dialog_skip_data: '跳過已有數據',
modules_dialog_group: '分組',
modules_dialog_file: '文件',
modules_dialog_upload_files: '上傳文件',
modules_header_api_name: 'API名稱',
modules_header_dataSource: '數據源',
modules_header_tablename: '表名稱',
modules_header_status: '狀態',
modules_header_basePath: '基礎路徑',
modules_header_classifications: '分類',
modules_header_username: '創建者',
modules_status_deploying: '部署中',
modules_status_starting: '正在啟動',
modules_status_running: '運行中',
modules_status_restart: '更新中',
modules_status_deploy_fail: '發布API失敗',
modules_status_exit: '已退出',
modules_status_stop: '已停止',
modules_status_ready: '有效',
modules_status_invalid: '無效',
modules_allacancel: '批量取消',
modules_allarelease: '批量發布',
modules_releasefb: '你確定要批量發布以下API嗎?',
modules_releasecancel: '你確定要批量取消以下API嗎?',
modules_api_server_status: 'API 服務狀態',
modules_sure: '你確定要',
modules_cancel_failed: '取消發布API失敗',
modules_name_placeholder: '請輸入表名/數據庫名',
module_form_connection: '數據庫',
module_form_tablename: '表名稱',
module_form_default_Api: '默認CURD API',
module_form_customer_Api: '自定義API',
module_form_noPath: '請添加路徑',
module_form_prefix: '前綴',
module_form_basePath: '基礎路徑',
module_form_path: '路徑',
module_form_security: '權限設置',
module_form_permission: '權限',
module_form_choose: '選擇目錄',
module_form_document: 'API 文檔',
module_form_tags: '數據目錄',
module_form_preview: '數據預覽',
module_form_public_api: '公共的',
module_form_available_query_field: '可用查詢字段',
module_form_required_query_field: '必須的查詢條件',
module_form_validator_name:
'只能包含中文、字母、數字、下劃線和美元符號,並且數字不能開頭',
module_form_create_a_new_record: '創建新記錄',
module_form_get_record_by_id: '根據id獲取記錄',
module_form_update_record_by_id: '根據id更新記錄',
module_form_delete_record_by_id: '根據id刪除記錄',
module_form_get_record_list_by_page_and_limit: '分頁獲取記錄',
module_form_method: '方法',
module_form_fields: '字段',
module_form_datatype: '數據類型',
module_form_condition: '過濾條件',
module_form_get_api_uri_fail: '獲取 API Server Uri 失敗',
module_form_name_null: '名稱不能為空',
query_build_match_condition: '匹配條件',
query_build_any: '任意',
query_build_addGroup: '添加組',
query_build_removeGroup: '刪除組',
query_build_addCondition: '添加條件',
query_build_removeCondition: '刪除條件',
query_build_show_filter: '顯示過濾條件',
query_build_queryValue: '字段值',
query_build_add: '添加',
// 客戶端
application_header_id: '客戶端ID',
application_header_client_name: '客戶端名稱',
application_header_grant_type: '授權類型',
application_header_client_secret: '客戶端密鑰',
application_header_redirect_uri: '重定向URI',
application_header_scopes: '權限範圍',
application_generator: '生成',
application_show_menu: '顯示到菜單',
application_true: '是',
application_false: '否',
application_create: '創建客戶端',
application_client_id_placeholder: '可留空,系統將自動生成',
//api 监控
api_monitor_total_totalCount: 'API總數',
api_monitor_total_warningApiCount: 'API訪問總數',
api_monitor_total_warningVisitCount: 'API訪問告警總數',
api_monitor_total_visitTotalLine: 'API訪問總行數',
api_monitor_total_transmitTotal: 'API傳輸總量',
api_monitor_total_warningCount: 'API告警數',
api_monitor_total_successCount: 'API成功數',
api_monitor_total_columns_failed: '失敗率(%)',
api_monitor_total_FailRate: 'API失敗率TOP排序',
api_monitor_total_consumingTime: 'API響應時間TOP',
api_monitor_total_rTime: '最大響應時間',
api_monitor_total_clientName: '客戶端',
api_monitor_total_api_list: 'API列表',
api_monitor_total_api_list_name: 'API名稱',
api_monitor_total_api_list_status: 'API狀態',
api_monitor_total_api_list_visitLine: 'API訪問行數',
api_monitor_total_api_list_visitCount: 'API訪問次數',
api_monitor_total_api_list_transitQuantity: 'API訪問傳輸量',
api_monitor_total_api_list_status_active: '已發布',
api_monitor_total_api_list_status_pending: '待發布',
api_monitor_total_api_list_status_generating: '待生成',
api_monitor_detail_visitTotalCount: 'API訪問成功次數',
api_monitor_detail_visitQuantity: 'API傳輸量',
api_monitor_detail_timeConsuming: 'API訪問耗時',
api_monitor_detail_visitTotalLine: 'API訪問行數',
api_monitor_detail_speed: 'API傳輸速率',
api_monitor_detail_responseTime: 'API響應時間',
api_monitor_detail_monitoring_period: '監控週期',
api_monitor_detail_Monitoring_conditions: '監控條件',
// api服務器
api_server_user: '用戶',
api_server_create: '新建服務端',
api_server_create_server: '創建服務器',
api_server_process_id: 'API 服務器唯一標識',
api_server_client_name: ' API 服務器名稱',
api_server_client_uri: 'API 服務器訪問地址',
api_server_download_API_Server_config: '下載API配置文件',
api_server_no_available: '沒有可用API服務器',
// api瀏覽
dataExplorer_query: '查詢',
dataExplorer_document: 'API 文檔',
dataExplorer_query_time: '查詢使用',
dataExplorer_render_time: '渲染使用',
dataExplorer_tag_title: '設置標籤',
dataExplorer_show_column: '顯示列',
dataExplorer_new_document: '新增記錄',
dataExplorer_timeout: '超時時間',
dataExplorer_unauthenticated: '您無權訪問API。 ',
dataExplorer_message_timeout:
'連接API服務器超時,請檢查API服務器是否已啟動。 ',
dataExplorer_publish: '在API服務器上沒有找到 {id} 的API,請檢查是否已發布。 ',
dataExplorer_no_permissions: '您的令牌已過期,請刷新頁面重試。 ',
dataExplorer_datetype_without_timezone: '時間類型的時區(可選)',
dataExplorer_mysql_datetype_without_timezone: '影響的類型:DATETIME',
dataExplorer_export: '導出文件',
dataExplorer_add_favorite: '收藏',
dataExplorer_add_favorite_name: 'Favorite name',
dataExplorer_format: '格式化代碼',
dataExplorer_apiservr: 'api服務器',
dataExplorer_base_path: '基礎路徑',
// api審計
apiaudit_name: 'API名稱',
apiaudit_access_type: '訪問類型',
apiaudit_visitor: '客戶端名稱',
apiaudit_ip: '訪問人員IP',
apiaudit_interview_time: '訪問時間',
apiaudit_interview_time_start: '訪問開始時間',
apiaudit_interview_time_end: '訪問結束時間',
apiaudit_visit_result: '訪問結果',
apiaudit_reason_fail: '失敗原因',
apiaudit_log_info: '日誌詳情',
apiaudit_parameter: '參數',
apiaudit_link: '鏈接',
apiaudit_access_records: '訪問記錄數',
apiaudit_average_access_rate: 'API 平均訪問速率',
apiaudit_access_time: '訪問耗時',
apiaudit_average_response_time: '平均響應時長',
apiaudit_success: '成功',
apiaudit_placeholder: '請輸入名稱/ID',
apiaudit_client_name_placeholder: '請輸入客戶端名稱',
// 連接
connection_list_form_database_type: '數據庫類型',
connection_list_name: '連接名',
connection_reload_schema_confirm_title: '重新加載 schema',
connection_reload_schema_confirm_msg:
'如果此庫的schema過多,可能耗時較長,確定要刷新數據源的schema',
connection_reload_schema_fail: 'Schema 加載失敗',
// Dag
// 緩存節點提示
task_list_status_all: '全部狀態',
task_list_important_reminder: '重要提醒',
task_list_stop_confirm_message:
'初始化類型的任務暫停後如果再次啟動,任務會從頭開始同步,確定暫停?',
task_status_running: '已運行',
task_status_not_running: '未運行',
task_info_progress: '進行中',
// 函数管理
function_button_import_jar: '導入jar包',
function_details: '函數詳情',
function_tips_name_repeat: '函數名稱重複',
function_type_label: '函數類型',
function_type_option_custom: '自定義函數',
function_type_option_jar: '第三方jar包',
function_type_option_system: '系統函數',
function_name_label: '函數名稱',
function_name_placeholder: '請輸入函數名稱',
function_name_repeat: '函數名稱重復',
function_class_label: '類名',
function_file_label: 'jar文件',
function_button_file_upload: '點擊上傳',
function_file_upload_tips: '請上傳jar包文件',
function_file_upload_success: '上傳成功',
function_file_upload_fail: '上傳失敗',
function_parameters_describe_label: '參數說明',
function_parameters_describe_placeholder:
'支持輸入的參數類型以及返回參數類型的具體說明',
function_return_value_label: '返回值',
function_return_value_placeholder: '請輸入返回值',
function_describe_placeholder: '請輸入描述',
function_format: '命令格式',
function_format_placeholder: '请输入命令格式',
function_jar_file_label: 'jar文件',
function_package_name_label: '包名',
function_package_name_placeholder: '請輸入包名',
function_class_name_label: '類名',
function_method_name_label: '方法名',
function_script_label: '代碼詳情',
function_script_empty: '請輸入函數代碼',
function_script_missing_function_name: '缺少函數名',
function_script_missing_function_body: '缺少函數體',
function_script_format_error: '函數格式不正確',
function_script_only_one: '只允許創建一個函數',
function_import_list_title: '函數列表',
function_button_load_function: '加載函數',
function_message_load_function_fail: '加载函數失败',
function_dialog_setting_title: '函數设置',
function_message_function_empty: '請上傳jar包文件並加載函數',
function_message_delete_title: '刪除函數',
function_message_delete_content:
'刪除可能會導致已調用該函數的任務報錯,確定刪除該函數嗎?',
function_tips_max_size: '最大',
// 解決方案
solution_customer_job_logs: '客戶任務日誌',
solution_error_code: '錯誤碼',
solution_select_placeholder_type: '請選擇類型',
solution_search_result: '結果',
solution_search_solutions: '解決方案',
// 共享挖掘
shared_cdc_placeholder_task_name: '請輸入挖掘任務名搜索',
shared_cdc_placeholder_connection_name: '請輸入連接名稱搜索',
shared_cdc_name: '請輸入挖掘名稱',
shared_cdc_setting_select_mode: '存储模式',
shared_cdc_setting_select_mongodb_tip: '請輸入mongodb連接',
shared_cdc_setting_select_table_tip: '請輸入表名',
shared_cdc_setting_select_time_tip: '請選擇日誌保存時長',
shared_cdc_setting_message_edit_save: '保存成功,重啟任務後生效',
share_list_name: '挖掘名稱',
share_list_time_excavation: '挖掘所處時間點',
share_list_time: '挖掘延遲',
share_list_setting: '挖掘設置',
share_list_status: '狀態',
share_list_edit_title: '挖掘编辑',
share_list_edit_title_start_time: '挖掘開始時間',
share_form_setting_table_name: '存儲MongoDB表名',
share_form_setting_log_time: '日誌保存時長',
share_form_edit_name: '挖掘名稱',
share_form_edit_title: '是否放棄編輯該挖掘任務',
share_form_edit_text: '此操作不會保存已修改的內容',
share_detail_mining_info: '挖掘信息',
share_detail_name: '挖掘名稱',
share_detail_log_mining_time: '日誌挖掘時間',
share_detail_log_time: '日誌保存時長',
share_detail_call_task: '調用任務',
share_detail_source_time: '源庫時間點',
share_detail_sycn_time_point: '同步時間點',
share_detail_mining_status: '挖掘狀態',
share_detail_button_table_info: '表詳情',
share_detail_statistics_time: '統計時間',
share_detail_incremental_time: '所處的時間點',
// 设置
setting_email_template: '郵件模板',
setting_saveSuccess: '保存成功,一分鐘後生效',
setting_nameserver: '服務器名稱',
setting_Log: '日誌',
setting_SMTP: 'SMTP',
setting_Job: '任務',
setting_License: 'License控制',
setting_expiredate: '到期時間',
setting_import: '導入',
setting_apply: '申請 license',
setting_license_expire_date: 'License過期時間',
setting_Worker: '進程',
setting_Download: '下載',
setting_Log_level: '日誌等級',
setting_maxCpuUsage: '最大CPU使用率(取值範圍 0.1 ~ 1)',
setting_maxHeapMemoryUsage: '最大堆內存使用率(取值範圍 0.1 ~ 1)',
setting_switch_insert_mode_interval:
' 增量模式下切換到批量插入模式間隔時間(單位:秒)',
setting_Email_Communication_Protocol: ' 加密方式',
setting_SMTP_Server_Port: 'SMTP 服務端口',
setting_SMTP_Server_User: 'SMTP 服務賬號',
setting_SMTP_Server_password: 'SMTP 服務密碼',
setting_Email_Receivers: 'Email接收郵件地址',
setting_Email_Send_Address: 'Email發送郵件地址',
setting_SMTP_Server_Host: 'SMTP 服務Host',
setting_Send_Email_Title_Prefix: '發送Email標題的前綴(可選)',
setting_SMTP_Proxy_Host: 'SMTP 代理服務Host (可選)',
setting_SMTP_Proxy_Port: 'SMTP 代理服務端口 (可選)',
setting_Email_Template_Running: '任務啟動通知',
setting_Email_Template_Paused: '任務停止通知',
setting_Email_Template_Error: '任務出錯通知',
setting_Email_Template_Draft: '任務被編輯通知',
setting_Email_Template_CDC: '任務增量滯後通知',
setting_Email_Template_DDL: 'DDL錯誤通知',
setting_Clean_Message_Time: '清除消息時間',
setting_Keep_Alive_Message: '保持在線消息',
setting_Sample_Rate: '採樣率',
setting_task_load_threshold: '負載閾值(百分比)',
setting_task_load_statistics_time: '負載統計時間(分鐘)',
setting_ApiServer: 'API分發設置',
setting_Default_Limit: '默認查詢返回行數',
setting_Max_Limit: '最大查詢返回行數',
setting_Desensitize_API_request_parameters: 'API請求參數脫敏',
'setting_Timeout_period_for_API_access_to_the_database_(millisecond)': 'API訪問資料庫的超時時間(毫秒)',
setting_Send_batch_size: '打包數據條數',
setting_hint_Send_batch_size: '打包數據條數',
setting_Mongodb_target_create_date: '是否在目標端數據集添加創建時間',
setting_Mongodb_target_create_date_docs: '是否在目標端數據集添加創建時間',
setting_System: '系統資源監控',
setting_Collect_system_info_interval: '系統資源監控採集頻率(秒)',
setting_Interval_to_collect_system_info:
'系統資源信息(CPU,內存,硬盤使用率)監控採集頻率',
setting_Job_Sync_Mode: '任務同步模式',
setting_Worker_Threshold: '進程閾值',
setting_Worker_Heartbeat_Expire: '進程心跳過期時間(秒)',
setting_License_Key: '證書秘鑰',
setting_Enter_jobs_log_level__error_warn_info_debug_trace:
'輸入任務日誌等級: error/warn/info/debug/trace',
setting_Email_Receivers_Multiple_separated_by_semicolons:
'郵件接收者,可輸入多個,通過逗號分隔',
setting_Keep_recent_n_hours_message_before_the_last_processed_message_s_time_:
'保持最近n小時消息',
setting_Store_full_record_as_embedded_document_in_target_collection_for_update_operations:
'緩存一份當前整體數據,合併到目標數據集中',
setting_Store_before_field_as_embedded_document_in_target_collection_before_update_operation:
'緩存一份修改前的整體數據,合併到目標數據集中',
setting_Store_job_script_processor_log_to_cloud: '是否傳輸任務日誌到雲端',
setting_Validator_to_validate_data__s_sample_rate: '校驗數據採樣率',
setting_Process_message_mode__consistency_fast:
'消息處理模式 consistency/fast',
setting_Worker_can_execute_the_nums_of_Jobs: '進程可以執行多個任務',
setting_Worker_heartbeat_expire_time: '進程心跳過期時間',
setting_Users: ' 用戶',
setting_Show_Page: ' 顯示下載頁面',
setting_User_Registery: ' 用戶註冊管理',
setting_hint_Show_Page: '顯示下載頁面',
setting_hint_User_Registery:
'用戶註冊類型設置。值設為 "disabled":禁止註冊; 值設為 "self-signup" 啟用用戶自助註冊; 值設為 "manual-approval" 允用戶註冊,但需要管理員審批。 ',
setting_DR_Rehearsal: ' 災備演習',
setting_Mongod_path: ' Mongod 路徑',
setting_SSH_User: ' SSH 用戶名',
setting_SSH_Port: ' SSH 端口',
setting_hint_Mongod_path: ' Mongod 路徑',
setting_hint_SSH_User: ' SSH 用戶名, 用來連接Mongod的主機',
setting_hint_SSH_Port: ' SSH 端口,用來連接Mongod的主機',
setting_Enable_DR_Rehearsal: ' 允許災備演習',
setting_hint_Enable_DR_Rehearsal: ' 災備演習開關,true表示開,false 表示關',
setting_Download_Agent_Page: 'Agent 下載頁面',
setting_Background_Analytics: '後台分析',
setting_Data_quality_analysis_frequency: '數據質量分析間隔(秒)',
setting_Dashboard_data_analysis_frequency: '面板數據分析間隔(秒)',
setting_dashboard_Analysis_Interval: '面板數據分析間隔(秒)',
setting_quality_Analysis_Interval: '數據質量分析間隔(秒)',
setting_Log_filter_interval: '日誌過濾間隔(秒)',
setting_Filter_the_interval_between_duplicate_logs__seconds__:
'相同日誌在指定時間內只出現一次(1分鐘後生效)',
setting__DK36: '文件下載',
setting_File_Down_Base_Url: '地址',
setting_Set_the_average_number_of_events_per_second_to_allow:
'日誌設置每秒允許的事件平均數量',
setting_Log_Filter_Rate: '日誌輸出頻率(行/秒)',
setting_Connections: '連接設置',
setting_Mongodb_Load_Schema_Sample_Size: 'Mongodb加載模型採樣記錄數(行)',
setting_hint_Mongodb_Load_Schema_Sample_Size:
'當MongoDB連接加載模型時,會使用該配置進行採樣加載',
setting_Enable_API_Stats_Batch_Report: ' 啟用 API 統計',
setting_Header: ' UDP 頭信息',
setting_hint_Header: ' UDP 頭信息',
setting_Size_Of_Trigger_API_Stats_Report: ' API 請求緩存最大個數',
setting_hint_Size_Of_Trigger_API_Stats_Report:
' API 請求記錄數到達指定個數時批量發送到管理端',
setting_Time_Span_Of_Trigger_API_Stats_Report: ' API 請求匯報頻率(秒)',
setting_hint_Time_Span_Of_Trigger_API_Stats_Report:
' API 請求緩存到指定時間發送到管理端',
setting_save: ' 保存成功,一分鐘後生效',
setting_Logout_forward_to_this_url: ' 登出跳轉地址',
setting_Check_devices: ' 重要設備檢測',
setting_ops: ' 運維展示',
setting_server_oversee_url: ' 運維運控URL',
setting_system: ' 系統全局',
setting_licenseNoticeDays: ' license 到期提醒',
setting_license_alarm: ' license 到期提前提醒(天)',
setting_License_expiry_email_reminder_: 'license 到期提前幾天提醒設置',
setting_flow_engine_version: ' 流程引擎版本',
setting_tapdata_agent_version: `${import.meta.env.VUE_APP_PAGE_TITLE} agent版本`,
setting_doc_base_url: ' 幫助文檔URL',
setting_help: ' 幫助文檔',
setting_Ip_addresses: ' Ipv4地址(多個逗號分隔)',
setting_hint_Ip_addresses:
' 需要檢測的設備ipv4地址, 例如: 127.0.0.1, 192.168.0.1',
setting_PingTimeout: ' 檢測超時(毫秒)',
setting_hint_PingTimeout: ' 當超過該設置,認為設備無法連通',
setting_Job_field_replacement: ' 非法字符替換為',
setting_A_replacement_for_the_invalid_field_name:
' 一些數據庫對於字段名稱有特殊要求,系統將非法的字符在同步時自動做替換。 MongoDB[含有".", "$"作為開頭]',
setting_true__store_log_to_cloud__false__only_store_to_local_log_file_:
'true:將日誌存儲到雲,false:僅存儲到本地日誌文件。 ',
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_:
'當一個文檔可能在非常短的時間內頻繁更新(例如,在一秒鐘之內進行幾次更新)時,下游處理器接收到的更改流事件可能會返回與實際版本不一致的“ fullDocument”(與實際版本不一致) 該文件。為避免這種不一致,請啟用此選項以將完整文檔與更新操作一起存儲。這將以增加存儲空間和降低性能為代價。 ',
setting_the_before_field_contains_a_field_for_each_table_column_and_the_value_that_was_in_that_column_before_the_update_operation_:
'before字段包含每個表列的字段以及更新操作之前該列中的值。 ',
setting_Job_heart_timeout: '同步任務心跳超時(毫秒)',
setting_retry_interval_second: '重試間隔(秒)',
setting_max_retry_time_minute: '最大重試時間(分鐘)',
setting_job_cdc_share_mode: '增量同步任務共享模式',
setting_job_cdc_share_mode_doc:
'在增量同步階段,會根據日誌採集任務是否可用,自動採用共享模式。影響的數據庫:Oracle',
setting_job_cdc_share_only: '增量任務強制使用共享模式',
setting_job_cdc_share_only_doc:
'當增量同步任務共享模式開啟,並且無法找到一個可共享的日誌,將會停止任務',
setting_test_email_success: '測試郵件已發送,請登錄接收郵箱查收',
setting_test_ldap_success: '成功連接Ldap服務',
setting_test_email_countdown: '操作太頻繁了,請稍後重試',
setting_email_template_from: '發件人',
setting_email_template_to: '收件人',
setting_email_template_subject: '主題',
setting_job_cdc_record: ' 自動保存增量事件',
setting_job_cdc_record_doc: ' 自動保存增量事件',
setting_job_cdc_record_ttl: ' 增量事件保存時長(天)',
setting_job_cdc_record_ttl_doc: ' 增量事件保存時長(天)',
setting_lagTime: '增量滯後判定時間(秒)',
setting_connection_schema_update_hour: '數據源schema更新時間',
setting_connection_schema_update_interval: '數據源schema更新周期(天)',
setting_creatDuplicateSource: ' 允許創建重複數據源',
setting_requestFailed: '請求處理失敗',
setting_Mongodb_will_use_this_sample_size_when_load_schema:
'Mongodb will use this sample size when load schema 當MongoDB連接加載模型時,會使用該配置進行採樣加載',
setting_Switch_to_batch_insert_mode_interval__s__in_cdc_:
'切換到cdc中的批量插入模式間隔。 ',
setting_share_cdc: '共享增量',
setting_share_cdc_persistence_mode: '共享增量存儲模式',
setting_share_cdc_persistence_memory_size: '共享增量內存緩存行數',
setting_share_cdc_persistence_memory_size_doc:
'該配置控製共享增量事件,在內存緩存的行數',
setting_share_cdc_persistence_mode_doc:
'共享增量存儲模式。選項: InMemory, MongoDB, RocksDB',
setting_share_cdc_persistence_mongodb_uri_db: '存儲MongoDB的連接名稱',
setting_share_cdc_persistence_mongodb_uri_db_doc:
'該項配置只有模式選擇MongoDB時生效,輸入創建的MongoDB連接名稱即可',
setting_share_cdc_persistence_mongodb_collection: '存儲MongoDB的表名',
setting_share_cdc_persistence_mongodb_collection_doc:
'該項配置只有模式選擇MongoDB時生效,輸入存儲的表名',
setting_share_cdc_persistence_rocksdb_path: 'RocksDB存儲的本地路徑',
setting_share_cdc_persistence_rocksdb_path_doc:
'該項配置只有模式選擇RocksDB時生效,RocksDB存儲的本地路徑',
setting_task_log_file_save_time: '任務日誌留存時長(天)',
setting_task_log_file_save_size: '任務日誌留存大小(MB)',
setting_task_log_file_save_count: '任務日誌留存份數',
setting_agent_log_file_save_time: '引擎日誌留存時長(天)',
setting_agent_log_file_save_size: '引擎日誌留存大小(MB)',
setting_agent_log_file_save_count: '引擎日誌留存份数',
setting_INCREMENTAL_DELAY_LINE_DATA_COEFFICIENT: '增量延遲係數',
setting_Login: '登入設置',
setting_Login_Single_Session: '單次會話登入',
setting_Login_Single_Session_doc: '開啟後,同一賬號只允許單個會話登入',
setting_Login_Brief_Tips: '登錄簡要提示',
setting_Login_Brief_Tips_doc: '開啟後,登錄提示將簡化',
setting_LDAP: 'LDAP登入設置',
setting_Ldap_Login_Enable: '使用LDAP登入',
setting_Ldap_Server_Host: 'LDAP伺服器地址',
setting_Ldap_Server_Port: 'LDAP伺服器端口',
setting_Ldap_Base_DN: 'LDAP Base DN',
setting_Ldap_Bind_DN: 'LDAP帳號',
setting_Ldap_Bind_Password: 'LDAP密碼',
setting_Ldap_SSL_Enable: '啟用SSL',
setting_Ldap_Server_Host_doc:
'AD的域控制器地址,範例:ldap://ad.example.com 或 ldaps://ad.example.com',
setting_Ldap_Server_Port_doc:
'LDAP預設使用 389 端口,LDAPS(加密連接)使用 636 端口',
setting_Ldap_Base_DN_doc:
'LDAP查詢的起點,用于定義在AD中的搜索範圍,多個組用分號間隔,示例:cn=Users,dc=example,dc=com;cn=Test,dc=example,dc=com',
setting_Ldap_Bind_DN_doc:
'用於進行身份驗證的用戶完整Distinguished Name (DN),即登入AD伺服器的身份,範例:user@example.com',
setting_Ldap_Bind_Password_doc: '與Bind DN對應的用戶密碼,用於身份驗證',
user_list_user_name_email: '請輸入用戶名 / 郵箱',
user_list_change_time: ' 修改時間',
user_list_creat_user: '創建用戶',
user_list_edit_user: '編輯用戶',
user_list_user_name: '用戶名',
user_list_role: '關聯角色',
user_list_source: '來源',
user_list_status: '狀態',
user_list_activation: '激活',
user_list_freeze: '凍結',
user_list_check: '校驗',
user_list_bulk_activation: '批量激活',
user_list_bulk_freeze: '批量凍結',
user_list_bulk_check: '批量校驗',
user_list_del_user: '刪除用戶 {0} 後,此用戶將無法恢復',
user_list_activetion_user: `激活用戶 {0} 後,此用戶將可以使用 ${import.meta.env.VUE_APP_PAGE_TITLE} 系統`,
user_list_freeze_user: `凍結用戶 {0} 後,此用戶將不可以使用 ${import.meta.env.VUE_APP_PAGE_TITLE} 系統`,
user_list_check_user: '通過校驗用戶 {0} 的郵箱後,此用戶可以被激活',
user_list_activetion_success: '激活成功',
user_list_activetion_error: '激活失敗',
user_list_freeze_success: '凍結成功',
user_list_freeze_error: '凍結失敗',
user_list_check_success: '通過校驗',
user_list_check_error: '校驗失敗',
user_status_notVerified: '未驗證',
user_status_notActivated: '未激活',
user_status_activated: '已激活',
user_status_rejected: '已拒絕',
user_form_role: '關聯角色',
user_form_email: '郵箱',
user_form_email_must_valid: '請輸入有效郵箱地址',
user_form_password_null: '請輸入密碼, 長度為 5 ~ 32 個字符',
user_form_pass_hint: '密碼長度不能小於5大於32',
user_form_password_not_cn: '密碼僅允許英文、數字和英文標點符號',
user_form_activation_code: '訪問碼',
user_form_status: '狀態',
cluster_name: '監控名稱',
cluster_status: '狀態',
cluster_service_status: '服務狀態',
cluster_cpu_usage: 'CPU使用率',
cluster_heap_memory_usage: '堆內存使用率',
cluster_update: '更新',
cluster_running: '運行中',
cluster_stopped: '已停止',
cluster_sync_gover: '同步治理',
cluster_manage_sys: '管理後台',
instance_details_shujuyuanziyuan: '資料源資源下載',
instance_details_xianchengziyuanxia: '同步治理執行緒資源下載',
cluster_add_server_mon: '添加服務監控',
cluster_agentSetting: 'Agent 服務器設置',
cluster_server_name: '服務器名稱',
cluster_placeholder_mon_server: '請輸入監控的服務名稱',
cluster_placeholder_command: '請輸入命令',
cluster_ip_display: '網卡IP展示',
cluster_ip_tip: '切換網卡僅改變集群管理頁服務器下IP的展示,不影響任何功能',
cluster_confirm_text: '確認',
cluster_restart_server: '重啟服務',
cluster_unbind_server: '解綁服務',
cluster_start_server: '啟動服務',
cluster_startup_after_add: '請啟動後添加',
cluster_startup_after_delete: '請啟動後刪除',
cluster_del_message: '確定刪除服務器',
cluster_server_nickname: '服務器名稱',
cluster_command: '命令',
license_node_name: '節點名',
license_node_sid: '節點sid',
license_status: 'License狀態',
license_expire_date: 'License到期時間',
license_update_time: 'License更新時間',
license_renew_dialog: '更新License',
license_normal: '正常',
license_expiring: '即將到期',
license_expired: '已過期',
license_try_out: '試用',
license_copied_clipboard: '已復製到剪貼板',
license_select_node: '請先選擇節點',
license_renew_success: '更新成功, 頁面即將刷新',
// 自定义节点
custom_node_name: '節點名稱',
custom_node_name_placeholder: '請輸入節點名稱搜索',
notify_setting: '通知設置',
notify_system_notice: '系統通知',
notify_user_notice: '用戶通知',
notify_view_more: '查看全部',
notify_no_notice: '暫無通知',
notify_view_all_notify: '查看所有通知',
notify_user_all_notice: '全部通知',
notify_unread_notice: '未讀消息',
notify_mask_read: '標記本頁為已讀',
notify_mask_read_all: '標記全部為已讀',
notify_data_flow: '任務',
notify_sync: '數據開發',
notify_migration: '數據複製',
notify_notice_type: '消息類型',
notify_notice_level: '消息級別',
notify_manage_sever: '管理端',
notify_inspect: '校驗任務',
notify_ddl_deal: 'DDL處理',
notify_source_name: '源連接',
notify_database_name: '數據庫名',
notify_system: 'license到期時間',
notify_started: '已啟動',
notify_paused: '已暫停',
notify_edited: '被編輯',
notify_deleted: '被刪除',
notify_abnormally_stopped: '意外停止',
notify_stopped_by_error: '出錯停止',
notify_startup_failed: '啟動失敗',
notify_stop_failed: '停止失敗',
notify_encounter_error_skipped: '運行中跳過一個ERROR',
notify_cdc_lag: 'CDC滯後超時',
notify_manage_sever_restart_failed: '管理端服務重啟失敗',
notify_api_sever_restart_failed: 'API服務重啟失敗',
notify_sync_sever_restart_failed: '同步治理服務重啟失敗',
notify_connection_interrupted: '斷開連接',
notify_manage_sever_start_failed: '管理端服務啟動失敗',
notify_api_sever_start_failed: 'API服務啟動失敗',
notify_sync_sever_start_failed: '同步治理服務啟動失敗',
notify_manage_sever_stop_failed: '管理端服務停止失敗',
notify_api_sever_stop_failed: 'API服務停止失敗',
notify_sync_sever_stop_failed: '同步治理服務停止失敗',
notify_api_sever_abnormally_stopped: 'API服務意外停止',
notify_sync_sever_abnormally_stopped: '同步治理服務意外停止',
notify_manage_sever_abnormally_Stopped: '管理端服務意外停止',
notify_manage_sever_started_successfully: '管理端服務已啟動',
notify_api_sever_started_successfully: 'API服務已啟動',
notify_sync_sever_started_successfully: '同步治理服務已啟動',
notify_manage_sever_Stopped_successfully: '管理端服務已停止',
notify_api_sever_stopped_successfully: 'API服務已停止',
notify_sync_sever_stopped_successfully: '同步治理服務已停止',
notify_manage_sever_restarted_successfully: '管理端服務已重啟',
notify_api_sever_restarted_successfully: 'API服務已重啟',
notify_sync_sever_restarted_successfully: '同步治理服務已重啟',
notify_new_sever_created_successfully: '新服務監控被創建',
notify_new_sever_deleted_Successfully: '新服務監控被刪除',
notify_database_ddl_changed: '監測到數據庫DDL變化',
notify_inspect_verify_job_count: 'Count有差異',
notify_inspect_verify_job_value: '內容有差異',
notify_inspect_verify_job_delete: '被刪除',
notify_inspect_verify_job_error: '運行error',
notify_approaching: '剩餘 ',
notify_system_setting: '系統設置',
notify_tip:
'此處通知設置為系統全局通知的設置,任務的通知設置的其優先級高於此處的全局通知設置',
notify_job_operation_notice: '任務運行通知',
notify_email_notice: '郵件通知',
notify_job_started: '任務被啟動',
notify_noticeInterval: '發送間隔',
notify_operator: '操作人',
role_list_select_role_name: '請輸入角色名',
role_list_role_name: '角色名稱',
role_list_description: '角色描述',
role_list_associat_users: '關聯用戶',
role_list_create: '創建角色',
role_list_edit: '編輯角色',
role_list_default_role: '默認角色',
role_list_setting_permissions: '設置權限',
role_list_setting_api: '設置API訪問',
role_list_delete_remind: '確認刪除角色 {0}',
role_list_delete_success: '刪除角色成功',
role_list_setting_api_selected: '已選 {0} 個 API',
role_list_setting_api_empty_confirm: '確定要取消所有 API 的訪問設置嗎?',
role_list_setting_select_api: '請選擇 API',
role_form_yes: '是',
role_form_no: '否',
role_form_selectUser: '請選擇用戶名',
role_form_connected: '已關聯',
role_form_already_exists: '角色名稱重複',
role_null: '角色名稱不能為空',
role_form_description: '角色描述不能为空',
role_page_Dashboard_menu: '控制台',
role_page_datasource_menu: '連接管理',
role_page_Data_SYNC_menu: '數據複製 & 數據開發',
role_page_Data_verify_menu: '數據校驗',
role_page_log_collector_menu: '共享挖掘',
role_page_SYNC_Function_management_menu: '函數管理',
role_page_custom_node_menu: '自定義節點',
role_page_shared_cache_menu: '共享緩存',
role_page_data_search_menu: '數據搜索',
role_page_data_catalog_menu: '數據目錄',
role_page_data_quality_menu: '數據質量',
role_page_data_rules_menu: '數據規則',
role_page_time_to_live_menu: '數據生命週期',
role_page_data_lineage_menu: '數據地圖',
role_page_API_management_menu: 'API發布',
role_page_API_data_explorer_menu: 'API瀏覽',
role_page_API_doc_test_menu: 'API測試',
role_page_API_stats_menu: 'API統計',
role_page_API_clients_menu: 'API客戶端',
role_page_API_server_menu: 'API服務器',
role_page_data_collect_menu: '數據採集(舊版)',
role_page_schedule_jobs_menu: '調度任務',
role_page_Cluster_management_menu: '集群管理',
role_page_agents_menu: '進程管理',
role_page_user_management_menu: '用戶管理',
role_page_role_management_menu: '角色管理',
role_page_system_settings_menu: '系統設置',
role_page_dictionary_menu: '字典模板管理',
role_page_Topology_menu: '網絡拓撲',
role_page_servers_oversee_menu: '運維運控',
role_all_check: '全選',
role_module_meun_Dashboard: '瀏覽控制台',
role_module_meun_datasource: '連接管理',
role_module_meun_Data_SYNC: '數據複製 & 數據開發',
role_module_meun_SYNC_Function_management: '函數管理',
role_module_meun_Data_verify: '數據校驗',
role_module_meun_log_collector: '共享挖掘',
role_module_meun_custom_node: '自定義節點',
role_module_meun_shared_cache: '共享緩存',
role_module_meun_data_search: '數據搜索',
role_module_meun_data_government: '數據治理分類',
role_module_meun_data_catalog: '數據目錄',
role_module_meun_data_quality: '數據質量',
role_module_meun_data_rules: '數據規則',
role_module_meun_time_to_live: '數據生命週期',
role_module_meun_data_lineage: '數據地圖',
role_module_meun_API_management: 'API發布',
role_module_meun_API_data_explorer: 'API瀏覽',
role_module_meun_API_doc_test: 'API測試',
role_module_meun_API_stats: 'API統計',
role_module_meun_API_clients: 'API客戶端',
role_module_meun_API_server: 'API服務器',
role_module_meun_data_collect: '數據採集(舊版)',
role_module_meun_schedule_jobs: '調度任務',
role_module_meun_Cluster_management: '集群管理',
role_module_meun_agents: '進程管理',
role_module_meun_dictionary: '字典模板',
role_module_meun_user_management: '用戶管理',
role_module_meun_role_management: '角色管理',
role_module_meun_system_settings: '系統設置',
role_name_Dashboard: '瀏覽控制台',
role_name_system_notice: '消息通知',
role_name_notice_settings: '消息通知設置',
role_name_account_operation_history: '操作歷史',
role_name_datasource: '瀏覽連接管理',
role_name_datasource_category_management: '連接管理分類管理',
role_name_datasource_category_application: '連接管理分類應用',
role_name_datasource_creation: '連接管理創建',
role_name_datasource_delete: '連接管理刪除',
role_name_datasource_edition: '連接管理編輯',
role_name_data_transmission: '數據管道',
role_name_Data_SYNC: '瀏覽複製開發任務',
role_name_SYNC_category_management: '任務分類管理',
role_name_SYNC_category_application: '任務分類應用',
role_name_SYNC_job_delete: '刪除任務',
role_name_SYNC_job_edition: '編輯任務',
role_name_SYNC_job_operation: '任務操作',
role_name_SYNC_job_import: '任務導入',
role_name_SYNC_job_export: '任務導出',
role_name_SYNC_Function_management: '瀏覽函管理',
role_name_Data_verify: '瀏覽數據校驗',
role_name_verify_job_creation: '創建校驗任務',
role_name_verify_job_edition: '編輯執行校驗任務',
role_name_verify_job_delete: '刪除校驗任務',
role_name_verify_job_execution: '校驗任務運行',
role_name_log_collector: '浏览共享挖掘',
role_name_custom_node: '浏览自定义节点',
role_name_shared_cache: '浏览共享缓存',
role_name_data_search: '浏览数据搜索',
role_name_data_government: '數據治理',
role_name_data_catalog: '瀏覽數據目錄',
role_name_data_catalog_category_management: '數據目錄分類管理',
role_name_data_catalog_category_application: '數據目錄分類應用',
role_name_data_catalog_edition: '編輯元數據',
role_name_new_model_creation: '創建模型',
role_name_meta_data_deleting: '元數據刪除',
role_name_data_quality: '瀏覽數據質量',
role_name_data_quality_edition: '編輯數據質量',
role_name_data_rules: '瀏覽數據規則',
role_name_data_rule_management: '數據規則管理',
role_name_time_to_live: '瀏覽數據生命週期',
role_name_time_to_live_management: '數據生命週期管理',
role_name_data_lineage: '瀏覽數據地圖',
role_name_data_publish: '瀏覽數據發布',
role_name_API_management: '瀏覽API發布',
role_name_API_category_application: 'API分類應用',
role_name_API_category_management: 'API分類管理',
role_name_API_creation: 'API創建',
role_name_API_delete: 'API刪除',
role_name_API_edition: 'API編輯',
role_name_API_publish: '發布API',
role_name_API_import: 'API導入',
role_name_API_export: 'API導出',
role_name_API_data_explorer: '瀏覽API數據瀏覽',
role_name_API_data_explorer_export: '導出API數據',
role_name_API_data_explorer_deleting: '刪除API數據',
role_name_API_data_explorer_tagging: 'API數據加標籤',
role_name_API_data_time_zone_editing: '修改時區',
role_name_API_data_creation: '新增API數據',
role_name_API_data_download: '下載API數據',
role_name_API_doc_test: '瀏覽API文檔測試',
role_name_API_stats: '瀏覽API統計分析',
role_name_API_clients: '瀏覽API客戶端',
role_name_API_clients_amangement: 'API客戶端管理',
role_name_API_server: '瀏覽API服務器',
role_name_API_server_management: 'API服務器管理',
role_name_data_collect: '瀏覽數據採集舊版',
role_name_data_collect_all_data: '數據採集舊版',
role_name_system_management: '瀏覽系統管理',
role_name_schedule_jobs: '瀏覽調度任務',
role_name_schedule_jobs_management: '調度任務管理',
role_name_Cluster_management: '瀏覽集群管理',
role_name_Cluster_operation: '操作Agent服務',
role_name_status_log: '狀態日誌',
role_name_agents: '瀏覽進程管理',
role_name_user_management: '瀏覽用戶管理',
role_name_user_creation: '創建用戶',
role_name_user_edition: '編輯用戶',
role_name_user_delete: '刪除用戶',
role_name_user_category_management: '用戶分類管理',
role_name_user_category_application: '用戶分類應用',
role_name_role_management: '瀏覽角色管理',
role_name_role_creation: '創建角色',
role_name_role_edition: '編輯角色',
role_name_role_delete: '刪除角色',
role_name_system_settings: '瀏覽系統設置',
role_name_system_settings_modification: '修改設置',
role_name_create_new_table_in_SYNC: '任務中創建表',
role_name_servers_oversee: '瀏覽運維',
role_name_dictionary: '瀏覽字典模板管理',
role_name_Topology: '瀏覽網絡拓撲',
milestone_list_status_waiting: '待執行',
signin_code: '發送驗證碼',
signin_verify_code: '請輸入驗證碼',
signin_verify_email_invalid: '請輸入有效郵箱地址',
signin_verify_code_success: '驗證碼發送成功',
signin_email_require: '郵箱地址必填',
signin_verify_code_not_empty: '验证码必填',
signin_verify_code_not_incorrect: '验证码错误',
signin_verify_password_invalid: '驗證碼至少5個字符',
signin_verify_password_notCN: '密碼僅允許英文、數字和英文標點符號',
signin_not_mailbox: 'oops~此郵箱尚未註冊',
meta_table_default: '默認值',
meta_table_not_null: '非空',
new_advanced_mode: '標準模式',
new_more_features: '更多功能',
new_data_copy: '數據複製',
new_data_development: '數據開發',
new_data_copy_desc:
'對數據庫進行跨庫複製,適用於數據遷移,容災備份,系統多活等場景',
new_data_development_desc:
'抽取源端數據並加工計算轉換、例如行過濾、字段處理、多表合併等',
new_create_connection: '創建數據源',
new_create_api: '創建API',
new_create_connection_desc:
'數據源是創建傳輸任務的前提,任務重所有的數據庫和表數據節點都來自數據源',
new_create_api_desc:
'API即數據發布,可以根據現有collection或者通過同步任務創建新的collection對外發布的API',
object_list_name: '對象名稱',
object_list_classification: '對象分類',
object_list_type: '對像類型',
object_list_source_type: '來源類型',
object_list_source_information: '來源信息',
datadiscovery_catalogue_ziyuanbangding: '資源綁定',
datadiscovery_catalogue_lianjieduixiangming: '連接對象名',
datadiscovery_catalogue_ziyuanleixing: '資源類型',
datadiscovery_objectlist_duixiangminglaiyuan: '對象名稱/數據源',
datadiscovery_objectlist_laiyuanfenlei: '來源分類',
datadiscovery_previewdrawer_shujuxiang: '數據項',
datadiscovery_previewdrawer_yewumingcheng: '業務名稱',
datadiscovery_previewdrawer_lianjiemiaoshu: '連接描述',
datadiscovery_previewdrawer_shujuliang: '數據量',
datadiscovery_previewdrawer_biangengshijian: '變更時間',
datadiscovery_previewdrawer_guanliyuan: '管理員',
datadiscovery_previewdrawer_duixiangxiangqing: '對象詳情',
datadiscovery_previewdrawer_yewumiaoshu: '業務描述',
datadiscovery_previewdrawer_yewuleixing: '業務類型',
datadiscovery_previewdrawer_suoyin: '索引',
datadiscovery_previewdrawer_waijian: '外鍵',
datadiscovery_previewdrawer_zhujian: '主鍵',
// web-core
app_document: '幫助文檔',
app_qa: '客服',
app_account: '個人設置',
app_version: '系統版本',
app_home: '官網',
app_signOut: '登出',