-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcn.json
5706 lines (5706 loc) · 328 KB
/
cn.json
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
{
"There is no undo process for that. Please enter DELETE to Proceed?": "不存在撤销过程。 请输入 DELETE 以继续?",
"There is no undo process for that. Please enter DISABLE to Proceed?": "没有撤消过程。请输入 DISABLE 以继续?",
"best selling products.": "最畅销的产品",
"day": "日",
"features will not work.": "功能部件将无法工作。",
"highest price products.": "价格最高的产品。",
"hour": "小时",
"lowest price products.": "价格最低的产品。",
"minute": "分钟",
"newest products.": "最新的产品",
"oldest products.": "最古老的产品",
"products by product name ascending.": "产品名称升序。",
"products by product name descending.": "产品 ( 按产品名称降序 ) 。",
"within selected limits": "在所选限制内",
"(Facebook) Customer Feedback": "(Facebook) 客户反馈",
"(Facebook) Daily Notification Request": "(Facebook) 每日通知请求",
"(Facebook) Monthly Notification Request": "(Facebook) 每月通知请求",
"(Facebook) OTN Request": "(Facebook) OTN 请求",
"(Facebook) Send Notification Message": "(Facebook) 发送通知消息",
"(Facebook) Weekly Notification Request": "(Facebook) 每周通知请求",
"(WeChat) Article": "(微信)文章",
"(WeChat) Mini App Card": "(微信)小程序卡",
"(date) after": "(日期) 之后",
"(date) before": "(日期) 之前",
"(number) greater than or equal to": "(数字) 大于或等于",
"(number) greater than": "(数字) 大于",
"(number) less than or equal to": "(数字) 小于或等于",
"(number) less than": "(数字) 少于",
"(optional) Enter your text ...": "(可选) 输入文本 ...",
"----- Waiting for user response -----": "----- 等待用户响应 -----",
"0 means no limit": "0 表示无限制",
"3 or more of a": "3 个或更多个",
"==No Board==": "==没有板==",
"==No Template==": "==无模板==",
"=Custom Post Id=": "=定制发布标识=",
"A character except: a, b or c": "除 :a, b 或 c 以外的字符",
"A character in the range: a-z or A-Z": "范围内的字符 :a-z 或 A-Z",
"A character in the range: a-z": "范围内的字符 :a-z",
"A comma-separated list of tag names to assign to the uploaded asset for later group reference. For example: animal,dog": "以逗号分隔的标签名称列表,用于分配给上传的资产以供以后组参考。例如:动物、狗",
"A conversational SMS chatbot can be designed and built in minutes to help you do business better. Design and set up a chatbot without coding.": "可以在几分钟内设计和构建会话式 SMS 聊天机器人,以帮助您更好地开展企业。 设计和设置一个无编码的聊天机器人。",
"A pipe-separated list of custom metadata fields (by external_id) and the values to assign to each of them. For example: in_stock_id=50❘color_id=green": "以管道分隔的自定义元数据字段列表(按 external_id)以及要分配给每个字段的值。例如:in_stock_id=50❘color_id=green",
"A random row of the table will be returned if no filters added.": "如果未添加过滤器,那么将返回表的随机行。",
"A single Omni Channel bot with unified inbox for multiple channels.": "单个 Omni Channel bot ,具有多个渠道的统一收件箱。",
"A single character of: a, b or c": "A , b 或 c",
"A solid angular/rectangular chat icon": "实心角/矩形聊天图标",
"A solid round chat icon": "实心圆形聊天图标",
"A text description of the desired image, The maximum length is 1000 characters": "所需图像的文字描述,最大长度为1000个字符",
"AI & Automation": "人工智能与自动化",
"AI Agent": "人工智能代理",
"AI Agents": "人工智能代理",
"AI Prompt Provider": "AI 提示提供商",
"AI Prompt": "人工智能提示",
"AI Prompts are shared among all bots in the workspace": "AI 提示在工作区内的所有机器人之间共享",
"AI Prompts": "AI 提示",
"API Access": "API 访问",
"API Doc": "API 文档",
"API Domain": "API 域",
"API Key": "API 密钥",
"API Secret": "API 密钥",
"API URL": "API 网址",
"APPLIES TO": "应用于",
"ASMSC": "澳大利亚国立大学",
"AVAILABLE": "可用",
"Abandoned cart wait time": "被遗弃的购物车等待时间",
"About content types": "关于内容类型",
"About": "关于",
"Accepts comma-separated list of {field}:{direction} values.": "接受逗号分隔的 {field}:{direction} 值列表。",
"Access Token": "访问令牌",
"Access denied": "拒绝访问",
"Access hundreds of support articles providing step by step tutorial from bot building, design, and clever workarounds to dev support, account management, and more.": "通过从机器人构建,设计和巧妙的变通方法到 dev 支持,帐户管理等步骤,访问数以百计的支持文章。",
"Access via One Time Link": "通过一个时间链接访问",
"Access via Permanent Link": "通过永久链接访问",
"Access": "访问权",
"Account Id": "帐户ID",
"Account SID": "帐户 SID",
"Account Security Token": "账户安全令牌",
"Account Update": "帐户更新",
"Account disconnected": "帐户已断开连接",
"Account": "帐户",
"Action will stop processing here with above error message.": "操作将停止在此处处理以上错误消息。",
"Action": "行动",
"Actions": "行动",
"Activated": "已激活",
"Active Bot Users (last 30 days)": "活跃的机器人用户 ( 最近 30 天)",
"Active Bot Users": "活跃的机器人用户",
"Active automation failed": "激活自动化失败",
"Active automation successful": "激活自动化成功",
"Active bot automation successful": "主动机器人自动化成功",
"Active dates": "激活日期",
"Active page automation successful": "活跃页面自动化成功",
"Active": "活跃",
"Activity Logs": "活动日志",
"Ad Account Id": "广告帐户 ID",
"Ad Account Name": "广告帐户名称",
"Add AI Agent": "添加AI代理",
"Add AI Prompt": "添加AI提示",
"Add Addon": "添加插件",
"Add Admin": "添加管理员",
"Add Answer button to show header or footer": "\" 添加答案 \" 按钮以显示页眉或页脚",
"Add Answer": "添加答案",
"Add Attachment": "添加附件",
"Add Button": "添加按钮",
"Add Collaborator": "添加合作者",
"Add Column": "添加列",
"Add Comment": "添加评论",
"Add Condition Group": "添加条件组",
"Add Condition": "添加条件",
"Add Contact to Campaign": "将联系人添加到活动",
"Add Contact to Workflow": "将联系人添加到工作流",
"Add Credit": "添加信用",
"Add Current Facebook User to Custom Audience": "将当前 Facebook 用户添加到自定义受众",
"Add Custom Field": "添加自定义字段",
"Add Discount Code": "添加折扣代码",
"Add Email": "添加电子邮件",
"Add Field": "添加字段",
"Add Image": "添加图像",
"Add Item": "添加项目",
"Add Label": "添加标签",
"Add Labels": "添加标签",
"Add Menu Item": "添加菜单项",
"Add Message": "添加消息",
"Add Multiple Tags": "添加多个标签",
"Add New Action": "添加新操作",
"Add New Amazon Alexa Bot": "添加新 Amazon Alexa Bot",
"Add New Board": "添加新板",
"Add New Bot": "添加新 bot",
"Add New Broadcast": "添加新广播",
"Add New Category": "添加新类别",
"Add New ChatWoot Bot": "添加新的 ChatWoot 机器人",
"Add New Column": "添加新列",
"Add New Comment keyword": "添加新注释关键字",
"Add New Data Store": "添加新数据存储",
"Add New Event": "添加新事件",
"Add New Faq": "添加新法格",
"Add New Fb Ads": "添加新 fb 广告",
"Add New Fb Lead Form": "添加新的 Fb 潜在客户表单",
"Add New Feedback Topic": "添加新反馈主题",
"Add New Google Assistant Bot": "添加新 Google 助手Bot",
"Add New Inbound Webhook": "添加新入站 Webhook",
"Add New Intent": "添加新意图",
"Add New JivoChat Bot": "添加新的 JivoChat 机器人",
"Add New Keyword": "添加新关键字",
"Add New Language": "添加新语言",
"Add New Line Bot": "添加新行方",
"Add New Location": "添加新位置",
"Add New Microsoft Team Bot": "添加新的 Microsoft 团队Bot",
"Add New Product": "添加新产品",
"Add New Segment": "添加新细分",
"Add New Sequence": "添加新序列",
"Add New Shortcut": "添加新快捷方式",
"Add New Slack Channel": "添加新的Slack通道",
"Add New Source": "添加新源",
"Add New Step": "添加新步骤",
"Add New Tag": "添加新标签",
"Add New Telegram Bot": "添加新Telegram bot",
"Add New Template": "添加新模板",
"Add New Trigger": "添加新触发器",
"Add New Type": "添加新类型",
"Add New VK Bot": "添加新的 VK bot",
"Add New Vendor": "添加新供应商",
"Add New Viber Bot": "添加新的 Vber Bot",
"Add New WeChat Bot": "添加新的微信机器人",
"Add New Widget": "添加新窗口小部件",
"Add Option": "添加选项",
"Add Parameter": "添加参数",
"Add Phone Number failed!": "添加电话号码失败!",
"Add Phone Number": "添加电话号码",
"Add Points": "添加点",
"Add Product to Cart": "将产品添加到购物车",
"Add Product": "添加产品",
"Add Question": "添加问题",
"Add Report": "添加报告",
"Add Route": "添加检修路线",
"Add Section Title": "添加章节标题",
"Add Sheet By URL": "通过 URL 添加工作表",
"Add Sheet": "添加工作表",
"Add Skip Button": "添加跳过按钮",
"Add System Field": "添加系统字段",
"Add Tag to :num selected users": "将标签添加到 :num 个选定的用户",
"Add Tag": "添加标记",
"Add Tags to Contact": "为联系人添加标签",
"Add Tester": "添加测试员",
"Add Trigger": "添加触发器",
"Add User to Custom Audience By Email": "通过电子邮件将用户添加到自定义受众",
"Add User to Custom Audience By Phone": "通过电话将用户添加到自定义受众",
"Add Variant Text": "添加变体文本",
"Add Variant": "添加变体",
"Add Variation": "添加变体",
"Add Video Link": "添加视频链接",
"Add Whats New": "添加新内容",
"Add WhatsApp Number failed!": "添加 WhatsApp 编号失败!",
"Add WhatsApp Number": "添加 WhatsApp 编号",
"Add a description": "添加描述",
"Add a phone number": "添加电话号码",
"Add a record to": "将记录添加到",
"Add a record": "添加记录",
"Add a short line of text to the bottom of your message template.": "在消息模板的底部添加一小段文本。",
"Add a system email profile for clients": "为客户添加系统电子邮件配置文件",
"Add agent failed.": "添加代理程序失败。",
"Add agent successful.": "添加代理程序成功。",
"Add another condition": "添加其他条件",
"Add bot data failed.": "添加 bot 数据失败。",
"Add bot data successful.": "成功添加 bot 数据。",
"Add bot token failed.": "添加 bot 令牌失败。",
"Add bot token successful.": "添加 bot 令牌成功。",
"Add collaborator to :num selected users": "将协作者添加到:num 个选定用户",
"Add days": "添加天数",
"Add default value": "添加默认值",
"Add description": "添加描述",
"Add failed.": "添加失败。",
"Add field": "添加字段",
"Add filter for Bot Users": "为Bot用户添加过滤器",
"Add hot word": "添加热词",
"Add hours": "添加小时",
"Add keyword": "添加关键字",
"Add label to :num selected users": "将标签添加到 :num 个选定的用户",
"Add label": "添加标签",
"Add labels for :num selected flows": "为 :num 选定的流添加标签",
"Add labels": "添加标签",
"Add minutes": "添加分钟",
"Add months": "添加月份",
"Add new step": "添加新步骤",
"Add note to teammates": "给队友添加备注",
"Add option": "添加选项",
"Add or replace a record in": "添加或替换记录",
"Add products to collection": "将产品添加到集合",
"Add products to this collection one by one.": "将产品按一个添加到该集合中。",
"Add reply message": "添加应答消息",
"Add subscriber to MailChimp List": "将订户添加到 MailChimp 列表",
"Add subscriber to Zoho Contact": "将订户添加到 Zoho 联系人",
"Add successful.": "添加成功。",
"Add tag to uploaded users": "为上传的用户添加标签",
"Add tag": "添加标签",
"Add to blacklist": "添加到黑名单",
"Add to cart": "添加到购物车",
"Add value": "添加值",
"Add view": "添加视图",
"Add weeks": "添加周",
"Add years": "添加年份",
"Add your request": "添加请求",
"Add": "添加",
"Add/Replace a record": "添加/替换记录",
"Added At": "已添加于",
"Added": "已添加",
"Adding Phone Number": "添加电话号码",
"Adding phone number": "添加电话号码",
"Additional context text": "附加上下文文本",
"Addon Bot Users Price": "插件机器人用户价格",
"Addon Bot Users": "插件机器人用户",
"Addon Bots Price": "插件机器人价格",
"Addon Bots": "插件机器人",
"Addon Members Price": "插件会员价格",
"Addon Members": "插件成员",
"Addon Settings": "插件设置",
"Addon is not available on current plan": "当前计划不提供插件",
"Addon": "组件",
"Addons Credit Billing": "附加信用计费",
"Addons": "插件",
"Address is verified in GMB": "以 GMB 验证地址",
"Address": "地址",
"Adds a record in the data store.": "在数据存储中添加一条记录。",
"Adjust Points": "调整点",
"Admin": "管理",
"Admins": "管理员",
"Ads Clicked": "已点击的广告",
"Ads Payload": "广告有效内容",
"Ads Post Comment Reply": "广告发表评论回复",
"Ads Post List Comments": "广告发布列表评论",
"Advance": "进步",
"Advanced Actions": "高级操作",
"Advanced Settings": "高级设置",
"After": "之后",
"After the end of the day on the x days ago": "在 x 天前的一天结束后",
"Agency Api Key": "机构 API 密钥",
"Agency Domain": "代理域",
"Agency": "机构",
"Agent Analytics": "代理分析",
"Agent Assist": "代理协助",
"Agent Display Name": "代理程序显示名称",
"Agent Group Chat is a bot to allow the agents chat in group": "座席群组聊天是一个允许座席进行群组聊天的机器人",
"Agent Group Chat": "代理群聊",
"Agent Id": "代理人编号",
"Agent Name": "代理程序名称",
"Agent Office hours": "代理办公时间",
"Agent Performance": "代理绩效",
"Agent Prompt": "代理提示",
"Agent groups let you divide agents to groups based on skills, experience, level etc.": "代理组让您可以根据技能、经验、级别等将代理分组。",
"Agent": "代理人",
"Agents": "代理程序",
"Alignment": "对齐",
"Alipay": "支付宝",
"All Bot Content in": "所有机器人内容",
"All Bots": "所有机器人",
"All Facebook pages must be managed by the same Facebook user.": "所有 Facebook 页面都必须由同一 Facebook 用户管理。",
"All Posts": "所有帖子",
"All Required Params Present?": "是否存在所有必需参数 ?",
"All Tables": "所有桌子",
"All Users": "全部用户",
"All day": "一整天",
"All items in your selected bot will be replaced with template contents.": "所选机器人中的所有项都将替换为模板内容。",
"All items will be added in relevant sections. Sub flows will be placed in the new folder in Flows Section.": "所有项目都将添加到相关部分。 子流将放在 \" 流 \" 部分的新文件夹中。",
"All items": "所有项目",
"All of the data including the bots, flows, integrations under this workspace will be permanently deleted.": "此工作区下的所有数据(包括机器人、流程、集成)都将被永久删除。",
"All of the logs from this phone number will be deleted. Proceed?": "将删除此电话号码中的所有日志。 继续 ?",
"All other characters will be unchanged.": "所有其他字符将保持不变。",
"All products": "所有产品",
"All relevant data from the Secondary User will be transferred to Primary User.": "所有来自次要用户的相关数据将转移给主要用户。",
"All requests above this limit won’t be processed and this may affect your automation.": "超过此限制的所有请求都不会被处理,这可能会影响您的自动化。",
"All selected labels": "所有选定的标签",
"All sub flows": "所有子流",
"All suburbs": "所有郊区",
"All the intents can be used as Functions in action": "所有意图都可以用作操作中的函数",
"All": "全部",
"Allow Chat?": "允许交谈吗 ?",
"Allow DTMF Input": "允许 DTMF 输入",
"Allow Keyboard Input": "允许键盘输入",
"Allow Promotion Code": "允许促销代码",
"Allow Promotion Codes": "允许促销代码",
"Allow Screen Share?": "是否允许屏幕共享?",
"Allow Whiteboard?": "是否允许白板?",
"Allow": "允许",
"Allowed all day": "全天允许",
"Allowed hours": "允许的时间",
"Allowed option are": "允许的选项是",
"Allowed values": "允许值",
"Amazon Alexa Bots": "亚马逊 Alexa Bot",
"Amazon Alexa": "亚马逊亚历克斯",
"Amount": "款额",
"An optional folder name where the uploaded asset will be stored. The public ID contains the full path of the uploaded asset, including the folder name.": "存储上传资产的可选文件夹名称。公共 ID 包含上传资产的完整路径,包括文件夹名称。",
"Analytics": "分析",
"Answer Text": "回答文本",
"Answer Value": "答案值",
"Answer": "答案",
"Answered rate": "应答率",
"Any Bot User": "任何机器人用户",
"Any Node": "任意节点",
"Any digit": "任何数字",
"Any incoming messages to open the conversation if status is Done": "如果状态为“完成”,则接收任何打开对话的来电消息",
"Any incoming messages to open the conversation if status is Pending": "如果状态为“待处理”,则任何传入消息都会打开对话",
"Any message sent more than 24 hours after a subscriber’s last interaction": "订户上次交互后超过 24 小时发送的任何消息",
"Any non-digit": "任何非数字",
"Any non-whitespace character": "任何非空格字符",
"Any selected labels": "任何选定的标签",
"Any single character": "任何单个字符",
"Any time": "任何时间",
"Any whitespace character": "任何空格字符",
"Any word wrapped with": "任何单词都用",
"Api Domain": "API 域",
"Api Key in header": "头中的 API 密钥",
"Api Key in query": "查询中的 API 密钥",
"Api Scopes": "API 范围",
"Api Token Requests": "API 令牌请求",
"Api Token": "API 令牌",
"Api key updated!": "已更新 API 密钥 !",
"App Data": "应用程序数据",
"App Field must not be empty": "应用程序字段不能为空",
"App Fields": "应用程序字段",
"App Icon": "应用程序图标",
"App Id": "应用程序标识",
"App Name": "应用程序名称",
"App Overview": "应用程序概述",
"App Password": "应用程序密码",
"App Secret": "应用程序密钥",
"App data saved!": "已保存应用程序数据 !",
"App deleted": "应用程序已删除",
"App description": "应用程序描述",
"App is not installed": "未安装应用程序",
"App name": "应用程序名称",
"App not found": "未找到应用程序",
"App review cancelled": "应用程序复审已取消",
"App uninstalled!": "应用程序已卸载!",
"App updated!": "应用程序已更新 !",
"App": "应用",
"Append new row to bottom": "将新行追加到底部",
"Application Credentials": "应用程序凭证",
"Applies to": "适用于",
"Apply Change": "应用更改",
"Apply Discount Code": "应用折扣代码",
"Apply": "申请",
"Appointment Address": "预约地址",
"Appointment Status": "预约状态",
"Approved": "已核准",
"Archived": "存档",
"Are you sure to request the launch for this agent?": "确定要请求此代理程序启动吗 ?",
"Are you sure to request the launch for this location?": "确定要请求此位置的启动吗 ?",
"Are you sure to request the location verification?": "确定要请求位置验证吗 ?",
"Are you sure to request the unlaunch for this agent?": "是否确定请求未启动此代理程序 ?",
"Are you sure to request the unlaunch for this location?": "确定要请求此位置的未启动吗 ?",
"Are you sure want to continue?": "您确定要继续吗?",
"Are you sure want to discard all unpublished changes and return the content to the published flow? You cannot undo this.": "确定要废弃所有未发布的更改并将内容返回到发布的流吗 ? 您无法撤销此操作。",
"Are you sure you want to Disconnect Facebook Ads Account?": "您确定要断开 Facebook 广告帐户吗?",
"Are you sure you want to Disconnect Facebook Business Account?": "确定要断开 Facebook 企业账户的连接吗 ?",
"Are you sure you want to Disconnect Facebook Group Account?": "您确定要断开 Facebook 群组帐户吗?",
"Are you sure you want to Disconnect Google Account? If disconnected, the flows for below locations will not work.": "确定要断开 Google 帐户的连接吗 ? 如果断开连接,那么以下位置的流将无法工作。",
"Are you sure you want to cancel review the app": "是否确定要取消复审应用程序",
"Are you sure you want to cancel the broadcast": "您确定要取消广播",
"Are you sure you want to cancel the current subscription immediately": "您确定要立即取消当前订阅吗",
"Are you sure you want to change the mode?": "确定要更改方式吗 ?",
"Are you sure you want to convert this bot to omni-channel?": "确定要将此 bot 转换为 omni-channel 吗 ?",
"Are you sure you want to delete all languages for the template": "您确定要删除模板的所有语言吗",
"Are you sure you want to delete the Fb Ads": "确定要删除 Fb 标识",
"Are you sure you want to delete the Fb Lead Form": "您确定要删除 Facebook Lead Form 吗",
"Are you sure you want to delete the app": "确定要删除应用程序",
"Are you sure you want to delete the auth": "确定要删除认证",
"Are you sure you want to delete the broadcast": "确定要删除广播",
"Are you sure you want to delete the collection": "确定要删除集合",
"Are you sure you want to delete the comment keyword": "确定要删除注释关键字",
"Are you sure you want to delete the data store": "确定要删除数据存储器",
"Are you sure you want to delete the discount": "确定要删除折扣",
"Are you sure you want to delete the event": "您确定要删除该活动吗",
"Are you sure you want to delete the event logs": "您确定要删除事件日志吗",
"Are you sure you want to delete the faq": "确定要删除 faq",
"Are you sure you want to delete the inbound webhook": "确定要删除入站 Webhook",
"Are you sure you want to delete the intent": "您确定要删除意图吗",
"Are you sure you want to delete the keyword": "确定要删除关键字",
"Are you sure you want to delete the product": "确定要删除产品",
"Are you sure you want to delete the segment": "您确定要删除该细分吗",
"Are you sure you want to delete the sequence": "确定要删除序列",
"Are you sure you want to delete the shortcut": "确定要删除快捷方式",
"Are you sure you want to delete the source": "确定要删除源",
"Are you sure you want to delete the trigger": "是否确定要删除触发器",
"Are you sure you want to delete the widget": "是否确定要删除该窗口小部件",
"Are you sure you want to delete the": "您确定要删除",
"Are you sure you want to delete this workspace?": "您确定要删除此工作区吗?",
"Are you sure you want to delete": "确定要删除",
"Are you sure you want to deregister this number?": "您确实要注销该号码吗?",
"Are you sure you want to disconnect this account? If disconnected,": "确定要断开此帐户的连接吗 ? 如果断开连接,",
"Are you sure you want to disconnect this account? If disconnected, DialogFlow NLP features will not work.": "确定要断开此帐户的连接吗 ? 如果断开连接,那么 DialogFlow NLP 功能将无法工作。",
"Are you sure you want to disconnect this account?": "确定要断开此帐户的连接吗 ?",
"Are you sure you want to disconnect this bot? If removed, the bot linked to this account will not work.": "确定要断开该机器人的连接吗 ? 如果已删除,那么与此帐户链接的机器人将无法工作。",
"Are you sure you want to disconnect this business account? If removed, the flow linked to this account will not work.": "确定要取消关联此企业帐户吗?如果删除,链接到此帐户的流程将不起作用。",
"Are you sure you want to link this bot and remove all the bot users? Please enter LINK to proceed if you want to link bot and remove bot users.": "确定要链接此机器人并删除所有机器人用户吗 ? 如果要链接 bot 并删除 bot 用户,请输入 LINK 以继续操作。",
"Are you sure you want to link this channel and remove the bot users? Please enter LINK to proceed if you want to link channel and remove bot users.": "确定要链接此通道并删除 bot 用户吗 ? 如果要链接通道并删除 bot 用户,请输入 LINK 以继续操作。",
"Are you sure you want to logout the instance?": "您确定要退出该实例吗?",
"Are you sure you want to pause automation for this account? If paused, the flow linked to this account will not work.": "确定要为此帐户暂停自动化吗?如果暂停,链接到此帐户的流程将不起作用。",
"Are you sure you want to pause automation for this bot? If paused, the flow linked to this bot will not work.": "确定要暂停此机器人的自动化吗 ? 如果已暂停,那么与此 bot 链接的流将无法工作。",
"Are you sure you want to pause automation for this number? If paused, the flow linked to this number will not work.": "确定要暂停此编号的自动化吗 ? 如果已暂停,那么与此编号链接的流将无法工作。",
"Are you sure you want to pause automation for this page? If paused, the flow linked to this page will not work.": "确定要暂停此页面的自动化吗 ? 如果暂停,那么链接至此页面的流将无法工作。",
"Are you sure you want to pause automation for this workspace? If paused, the flow linked to this workspace will not work.": "确定要暂停此工作空间的自动化吗 ? 如果已暂停,那么链接至此工作空间的流将无法工作。",
"Are you sure you want to reboot the instance?": "确定要重新引导实例吗 ?",
"Are you sure you want to register this number?": "您确定要注册该号码吗?",
"Are you sure you want to remove this GMB Agent and bot? If removed, the flow linked to this bot will not work.": "确定要删除此 GMB 代理程序和 bot吗 ? 如果已删除,那么与此 bot 链接的流将无法工作。",
"Are you sure you want to remove this bot? If removed, the flow linked to this bot will not work.": "确定要删除此机器人吗 ? 如果已删除,那么与此 bot 链接的流将无法工作。",
"Are you sure you want to remove this number? If removed, the flow linked to this number will not work.": "确定要删除此编号吗 ? 如果已删除,那么与此编号链接的流将无法工作。",
"Are you sure you want to remove this page? If removed, the flow linked to this page will not work.": "确定要删除此页面吗 ? 如果已删除,那么链接至此页面的流将无法工作。",
"Are you sure you want to remove this slack workspace? If removed, the flow linked to this slack workspace will not work.": "确定要删除此Slack工作空间吗 ? 如果已删除,那么与此Slack工作空间链接的流将无法工作。",
"Are you sure you want to select this business": "您确定要选择此商家吗",
"Are you sure you want to send this message now": "您确定要立即发送此消息吗",
"Are you sure you want to unlink bot from this number?": "是否确定要从该编号中取消链接 bot ?",
"Are you sure you want to unlink this bot?": "确定要取消此机器人的链接吗 ?",
"Article": "文章",
"Artificial Intelligence": "人工智能",
"Arts": "艺术",
"Ascending": "升序",
"Ask Us": "问我们",
"Assets": "资产",
"Assign Method": "分配方法",
"Assign by status": "按状态分配",
"Assign to Agent Group": "分配给代理组",
"Assign to Agent": "分配给代理",
"Assign to agent for :num selected users": "分配给代理 :num 选定的用户",
"Assign to": "分配给",
"Assigned Agent": "指定代理人",
"Assigned User Id": "分配的用户 ID",
"Assigned agent in": "指定代理人于",
"Assigned agent is not online": "指定代理不在线",
"Assigned agent is online": "指定代理在线",
"Assigned agent not in": "指定代理人不在",
"Assigned conversations": "分配的对话",
"Assigned to agent": "已分配给代理",
"Assigned to me": "分配给我",
"Assigned to": "分配给",
"Assigned": "已分配",
"Assignee": "受让人",
"Assistant": "助手",
"Assistants Version": "助理版",
"Assistants": "助理",
"At least 1 targeted user to send the broadcast message.": "至少有 1 个目标用户发送广播消息。",
"At least one button required": "至少需要一个按钮",
"At the day of": "在",
"Attachment": "依恋",
"Attachments": "附件",
"Au Property Report": "澳洲房产报告",
"Audio Recording": "录音",
"Audio": "音频",
"Audit Log": "审计日志",
"Audit Logs": "审计日志",
"Auth Token": "认证令牌",
"Auth Type": "认证类型",
"Auth deleted": "已删除认证",
"Auth": "授权",
"Authenticated": "已认证",
"Author": "作者",
"Authorization": "授权",
"Authorize Url": "授权 URL",
"Authorize Website": "授权 Web 站点",
"Authorize Websites": "授权 Web 站点",
"Auto Arrange": "自动安排",
"Auto Intent Detect": "自动意图检测",
"Auto Opt-in Email": "自动选择电子邮件",
"Auto Opt-in SMS": "自动选择 - 在 SMS 中",
"Auto Refresh": "自动刷新",
"Auto Renew": "自动续订",
"Auto Slot Filling": "自动插槽填充",
"Auto Update Disabled": "自动更新已禁用",
"Auto Update Flows": "自动更新流程",
"Auto Update": "自动更新",
"Auto accept the call after message played": "留言播放后自动接听电话",
"Auto arrange steps": "自动安排步骤",
"Auto": "自动",
"Automated": "自动化",
"Automatic Tax": "自动税",
"Automatically Refresh Token": "自动刷新令牌",
"Automatically send the message to the bot users based on the configuration of Keywords, Triggers, Sequences and Comment Keywords": "根据关键字,触发器,序列和注释关键字的配置自动将消息发送给机器人用户",
"Automatically": "自动地",
"Automation": "自动化",
"Available Credit": "可用信用",
"Available Database Name": "可用的数据库名称",
"Available Points": "可用积分",
"Available app fields from Auth Inputs": "来自认证输入的可用应用程序字段",
"Available system fields": "可用系统字段",
"Available values": "可用值",
"Available values:": "可用值:",
"Available variable": "可用变量",
"Available": "可用的",
"Avatar is required": "Avatar 是必需的",
"Avatar": "头像",
"Average First Response Time": "平均首次响应时间",
"Average Order Value": "平均订单价值",
"Average Resolution Time": "平均解决时间",
"Average Resolve Time": "平均解决时间",
"Average Score": "平均分数",
"Average done conversation time in minutes": "平均完成对话时间(分钟)",
"Average first response time in minutes": "平均首次响应时间(分钟)",
"Avg Daily Active": "平均每日活跃",
"Avoid sending SMS messages outside of the telemarketing hours": "避免在电话营销时间以外发送短信",
"Back": "返回",
"Background Color - Form": "背景颜色 - 表格",
"Background Color - Main": "背景颜色 - 主要",
"Background Color": "背景色",
"Background Image": "背景图片",
"Backlog": "积压",
"Backup": "备份",
"Bank Information": "银行信息",
"Bank Transfer": "银行转帐",
"Banking & Financing": "银行和融资部",
"Based on Twilio pricing. Estimate only.": "基于 Twilio 定价。 仅估算。",
"Based on timezone": "根据时区",
"Based on user’s timezone if available": "基于用户的时区 ( 如果可用 )",
"Basic Actions": "基本动作",
"Basic Id": "基本标识",
"Basic": "基本的",
"Be default, the bot start flow is \"Main Flow\".": "默认情况下, bot 启动流是 \" Main Flow\"。",
"Be default, the bot will continue to the node where it requires SSO.": "默认情况下,机器人将继续到需要 SSO 的节点。",
"Bearing": "轴承",
"Beauty": "美妆",
"Because of that, you won’t be able to test different options,": "因为这样你就无法测试不同的选项了",
"Become private after first install": "首次安装后变为专用",
"Before the start of the day on the x days ago": "x 天前的当天开始前",
"Before you click the button to install the template, you can verify and check the template content and bot content.": "在点击按钮以安装模板之前,可以验证并检查模板内容和机器人内容。",
"Before": "在",
"Belorussian": "贝洛普鲁士",
"Best of completions": "最好的完成",
"Best selling": "最佳销售",
"Between 3 and 6 of a": "在 3 到 6 之间",
"Billing History": "帐单历史",
"Billing Menu": "计费菜单",
"Billing Portal": "计费门户",
"Billing Type": "计费类型",
"Billing Url": "开票 URL",
"Billing": "计费",
"Blacklists": "黑名单",
"Blank Template": "空白模板",
"Block a Contact": "阻止联系人",
"Blue": "蓝色的",
"Blutik": "布卢蒂克",
"Board deleted": "板已删除",
"Board": "木板",
"Boards": "董事会",
"Body Content": "正文内容",
"Body Text": "正文文本",
"Body text for the web page": "Web 页面的正文文本",
"Body text must not be empty": "正文不能为空",
"Body text": "正文",
"Body": "正文",
"Bot Automation": "机器人自动化",
"Bot Content": "Bot 内容",
"Bot Fields": "Bot 字段",
"Bot Name": "Bot 名称",
"Bot Phone": "机器人电话",
"Bot Start Flow": "Bot 启动流",
"Bot Template Installs": "Bot 模板安装",
"Bot Template Sales": "机器人模板销售",
"Bot Template can be installed for new bot or to replace the entire existing bot, including the sub flows, custom user fields, bot fields, tags and all other contents.": "可以为新 bot 安装 bot Template ,也可以替换整个现有 bot ,包括子流,定制用户字段, bot 字段,标记和所有其他内容。",
"Bot Template": "Bot 模板",
"Bot User Ns": "Bot 用户网络",
"Bot User": "Bot 用户",
"Bot Users Auto Cleanup": "Bot 用户自动清除",
"Bot Users Limit": "Bot 用户限制",
"Bot Users Replied": "机器人用户回复",
"Bot Users": "Bot 用户",
"Bot addon required": "需要机器人插件",
"Bot users to be imported": "要导入的 Bot 用户",
"Bot": "Bot",
"Bots by channel": "通道 ( 按通道 )",
"Bots": "机器人",
"Bottom Spacing": "底部间距",
"Brand Background Color": "品牌背景色",
"Brand Logo": "品牌徽标",
"Brand Name": "品牌名称",
"Brand Settings": "品牌设置",
"Brand Sub Title": "品牌子标题",
"Brand contact email. Recommend to share same domain as brand website.": "品牌联系电子邮件。 建议与品牌 Web 站点共享同一域。",
"Brand contact name.": "品牌联系人姓名。",
"Brand website URL": "品牌 Web 站点 URL",
"Broadcast Type": "广播类型",
"Broadcast cancelled": "广播已取消",
"Broadcast data saved!": "已保存广播数据 !",
"Broadcast deleted": "已删除广播",
"Broadcast name": "广播名",
"Broadcast": "播送",
"Broadcasts": "广播",
"Brown": "棕色的",
"Browse Data": "浏览数据",
"Browse": "浏览",
"Browser": "浏览器",
"Bucket Name": "桶名",
"Build a bot in 3 minutes": "在 3 分钟内构建机器人",
"Build your own function flow to send message and login button to require SSO.": "构建您自己的功能流以发送消息和登录按钮以要求 SSO。",
"Bulk Action": "批量操作",
"Bulk action completed": "批量操作已完成",
"Business Id": "商家 ID",
"Business Name": "公司名称",
"Business Website": "企业 Web 站点",
"Business hours": "营业时间",
"Business selected": "选择的业务",
"Business verification status": "业务验证状态",
"Business": "企业",
"Button Background Color": "按钮背景颜色",
"Button Border Color": "按钮边框颜色",
"Button Click Handler": "按钮点击处理程序",
"Button Font Color": "按钮字体颜色",
"Button Label": "按钮标签",
"Button Rounded Corner": "按钮圆角",
"Button Text Color": "按钮文字颜色",
"Button Text": "按钮文本",
"Button Title": "按钮标题",
"Button in Last Card": "最后卡中的按钮",
"Button text must not be empty": "按钮文字不能为空",
"Button": "钮",
"Buttons": "按钮",
"Buy New Number": "购买新号码",
"Buy": "买",
"Buyer": "买方",
"Buying Phone Number failed!": "购买电话号码失败!",
"By Agents": "代理人",
"By Default, you will be able to login via a subdomain.": "默认情况下,您将能够通过子域登录。",
"By clicking the \"Pay now\" button, means you accept the": "通过点击 \" 现付 \" 按钮,表示您接受",
"CA certificate": "CA证书",
"CANVAS": "帆布",
"CAUTION: Convert bot": "警告: 转换机器人",
"CAUTION: Delete workspace": "注意:删除工作区",
"CAUTION: Link bot": "警告: 链接 bot",
"CAUTION: Link channel": "警告: 链接通道",
"CAUTION: Unlink bot": "警告: 非链接机器人",
"CAUTION: Unlink channel": "警告: 取消链接通道",
"COMMENT": "评论",
"CRM V1 API": "客户关系管理 V1 API",
"CRM V2 API": "客户关系管理 V2 API",
"CRM V2 Webhook": "CRM V2 网络钩子",
"CRM": "客户关系管理系统",
"CTA Button Text": "CTA 按钮文本",
"Cache Response": "高速缓存响应",
"Calculate": "计算",
"Calendar Create Appointment": "日历创建约会",
"Calendar Create Block Slot": "日历创建块槽",
"Calendar Delete Event": "日历删除事件",
"Calendar File Generator": "日历文件生成器",
"Calendar Get Appointment": "日历 预约",
"Calendar Get Free Slots": "日历 获取免费插槽",
"Calendar Id": "日历 ID",
"Calendar Update Appointment": "日历更新预约",
"Calendar Update Block Slot": "日历更新块插槽",
"Calender": "压延机",
"Calendly - Booked": "日历 - 已预订",
"Calendly - Canceled": "日历 - 已取消",
"Calendly - Rescheduled": "日历 - 重新安排",
"Calendly Booking Url": "日历预订 URL",
"Calendly account disconnected": "Calendly 帐户已断开连接",
"Calendly": "日历",
"Call Logs": "调用日志",
"Call Number": "索书号",
"Call Whisper": "呼叫耳语",
"Caller Id": "来电显示",
"Caller Phone Number": "呼叫者电话号码",
"Campaign Id": "广告系列 ID",
"Can contain promotions and it will only send to users who interacted with your bot in the last 24 hours.": "可以包含促销,它将仅发送给过去 24 小时内与您的机器人交互的用户。",
"Can not add": "无法添加",
"Can not get QR code, try again later.": "无法获取 QR 代码,请稍后重试。",
"Cancel": "取消",
"Cancel Preview": "取消预览",
"Cancel Review app": "取消复审应用程序",
"Cancel Review": "取消复审",
"Cancel a run": "取消跑步",
"Cancel subscription": "取消订阅",
"Canceled": "已取消",
"Cancelled": "已取消",
"Cannot download the user data, please try again later.": "无法下载用户数据,请稍后重试。",
"Card": "卡片",
"Cards must have an image or video header, body text, and at least one button.": "卡片必须具有图像或视频标题、正文和至少一个按钮。",
"Cards": "牌",
"Cart is empty": "购物车是空的",
"Case Sensitive?": "区分大小写 ?",
"Cash on Delivery": "交付现金",
"Catalog Id": "目录标识",
"Catalog Message": "目录留言",
"Catalog Name": "目录名称",
"Catalog Product": "目录产品",
"Catalog": "目录",
"Categories": "类别",
"Category name": "分类名称",
"Category": "类别",
"Change Addon": "更改附加组件",
"Change Channel Id": "更改频道 ID",
"Change Plan": "更改计划",
"Change Template": "更改模板",
"Change Theme": "更改主题",
"Change Tone": "改变语气",
"Change addon completed.": "更改附加组件已完成。",
"Change completed.": "更改完成。",
"Change failed!": "更改失败!",
"Change logs chart": "变更日志图表",
"Change plan completed.": "更改计划已完成。",
"Change saved!": "更改已保存!",
"Change the From number with Alphanumeric Sender ID or Short Code if this feature is supported from the SMS provider based on selected phone number": "如果 SMS 提供商根据所选电话号码支持此功能,请使用字母数字发件人 ID 或短代码更改发件人号码",
"Change": "改变",
"Changed": "改变了",
"Changing plan will immediately deduct the credit based on the plan, please confirm you want to process.": "更改计划将立即扣除基于计划的信用,请确认您要处理。",
"Channel Access Token": "通道访问令牌",
"Channel Field Values": "通道字段值",
"Channel Fields": "通道字段",
"Channel Id": "通道标识",
"Channel Secret": "通道密钥",
"Channel Settings": "通道设置",
"Channel is": "通道为",
"Channel": "渠道",
"Character setting": "角色设定",
"Charge Amount": "费用金额",
"Charge amount will be always 0.00": "充值金额将始终为 0.00",
"Charge tax on this product": "此产品的费用税",
"Charge tax on this variant": "此变体的收费税",
"Chart Settings": "图表设置",
"Chart Type": "图表类型",
"Chart": "图表",
"Chat Button Preview": "交谈按钮预览",
"Chat Button": "交谈按钮",
"Chat Only Group": "仅限聊天组",
"Chat Widget Customization": "交谈窗口小部件定制",
"Chat Window Preview": "交谈窗口预览",
"Chat Window": "交谈窗口",
"Chat assigned to an agent": "分配给代理的聊天",
"Chat button": "交谈按钮",
"Chat": "聊天",
"ChatWoot Bots": "ChatWoot 机器人",
"ChatWoot": "ChatWoot",
"Check Agent Verification Status": "检查代理程序验证状态",
"Check Api Documentation": "检查 API 文档",
"Check Connection Status": "检查连接状态",
"Check Formatting options": "检查格式化选项",
"Check has label": "检查有标签",
"Check has tag": "检查有标签",
"Check if a record exists in": "检查记录是否存在",
"Check in use": "检查使用中",
"Check our documentation": "检查我们的文档",
"Check payment method": "检查付款方式",
"Check the existence of a record": "检查记录是否存在",
"Check the limitation of HTML style": "检查 HTML 样式的限制",
"Check the limitation of Markdown style": "检查 Markdown 样式的限制",
"Check the limitation of MarkdownV2 style": "检查 MarkdownV2 样式的限制",
"Check": "查",
"Checkout": "检出",
"Checks if a specific record exists in the data store.": "检查数据存储中是否存在特定记录。",
"Choice": "选择",
"Choose Agent": "选择代理",
"Choose Bot User": "选择机器人用户",
"Choose Country": "选择国家或地区",
"Choose Custom Field": "选择定制字段",
"Choose Custom User Field": "选择定制用户字段",
"Choose Field": "选择字段",
"Choose Gender": "选择性别",
"Choose JSON Field": "选择 JSON 字段",
"Choose Notification Topic": "选择通知主题",
"Choose Operator": "选择运算符",
"Choose Step": "选择步骤",
"Choose Sub Flow": "选择子流",
"Choose Sub flow or Node": "选择子流或节点",
"Choose Type": "选择类型",
"Choose board": "选择板",
"Choose collections": "选择集合",
"Choose currency": "选择货币",
"Choose custom field": "选择定制字段",
"Choose email node": "选择电子邮件节点",
"Choose existing tags or Type to add new tag": "选择现有标记或类型以添加新标记",
"Choose existing type or Type to add new type": "选择现有类型或类型以添加新类型",
"Choose existing vendor or Type to add new vendor": "选择现有供应商或类型以添加新供应商",
"Choose industry": "选择行业",
"Choose item": "选择项",
"Choose option": "选择选项",
"Choose payment method": "选择付款方式",
"Choose product type or type to add new": "选择产品类型或类型以添加新项",
"Choose sequence": "选择顺序",
"Choose tag": "选择标记",
"Choose tags or type to add new": "选择标记或类型以添加新的",
"Choose vendor or type to add new": "选择供应商或类型以添加新的",
"City": "城市",
"Clear All Custom User Field": "清除所有定制用户字段",
"Clear All Custom User Fields for :num selected users": "清除 :num 个选定用户的所有自定义用户字段",
"Clear All Custom User Fields": "清除所有定制用户字段",
"Clear Custom Field": "清除定制字段",
"Clear Custom User Field for :num selected users": "清除 :num 个选定用户的自定义用户字段",
"Clear Custom User Field": "清除定制用户字段",
"Clear Google Sheets row data.": "清除 Google Sheets 行数据。",
"Clear Multiple Custom Fields": "清除多个自定义字段",
"Clear Multiple Variable Value": "清除多个变量值",
"Clear Note": "清除注释",
"Clear Remembered Assistant History": "清除记住的助理历史记录",
"Clear Remembered Chat History": "清除记住的聊天记录",
"Clear Row": "清除行",
"Clear Rows from Google Sheet": "清除 Google 工作表中的行",
"Clear Variable Value": "清除变量值",
"Clear data": "清除数据",
"Clear form": "清除表格",
"Clear row from": "清除行来自",
"Clear": "清除",
"Cleared": "清除",
"Click \"Done\" button below after the payload is sent.": "在发送有效内容后,点击下面的 \"完成\" 按钮。",
"Click here to edit the flow name": "点击此处以编辑流名称",
"Click here to go back to the workspace dashboard": "点击此处以返回到工作空间仪表板",
"Click rate": "点击率",
"Click the shop you want to use. On the left-side panel,": "点击要使用的店铺。 在左侧面板上,",
"Click this button to add new step to your flow builder, you can also right click in flow builder to add new step.": "点击此按钮可向流构建器添加新步骤,您还可以右键点击流构建器以添加新步骤。",
"Click this button to auto arrange the flow builder based on the theme you selected. This will do magic for you.": "点击此按钮以根据所选主题自动安排流构建器。 这对你会有魔力",
"Click this button to resume automation.": "点击此按钮以恢复自动化。",
"Click this button to search any step within the current flow builder. This is very useful if you have many steps in the flow, you will get benefits if you give a unique name to your steps.": "点击此按钮可搜索当前流程构建器中的任何步骤。 如果您在流程中有许多步骤,这将非常有用,如果您为步骤指定一个唯一的名称,您将获得好处。",
"Click this button to zoom in the flow builder, also you can use mouse scroll to zoom in and out.": "点击此按钮以放大流构建器,也可以使用鼠标滚动来放大和缩小。",
"Click this button to zoom out the flow builder, also you can use mouse scroll to zoom in and out.": "点击此按钮以缩小流构建器,还可以使用鼠标滚动来放大和缩小。",
"Click to Test Request": "点击以测试请求",
"Click to Test": "点击以测试",
"Click to add action": "点击以添加操作",
"Click to add comment": "点击以添加注释",
"Click to add question": "点击以添加问题",
"Click to add text": "点击以添加文本",
"Click to add variation": "点击以添加变体",
"Click to copy": "点击以复制",
"Click to delete webhook": "点击删除网络钩子",
"Click to link bot to this channel": "点击以将 bot 链接至此通道",
"Click to link to this bot": "点击以链接到该机器人",
"Click to load image": "点击加载图片",
"Click to select Step": "点击以选择步骤",
"Click": "点击",
"Client Activity": "客户端活动",
"Client Id": "客户机标识",
"Client Secret": "客户机密钥",
"Clients": "客户",
"Close Popup Window": "关闭弹出窗口",
"Close": "关闭",
"Closed": "已关闭",
"Closing Note Category is Mandatory": "结束语类别为必填项",
"Closing Notes": "结束语",
"Clothing": "服装",
"Cloud API": "云API",
"Cloud Name": "云名称",
"Cloudinary": "多云的",
"Code": "守则",
"Collaborating": "合作",
"Collaborators": "合作者",
"Collect IP data": "收集知识产权数据",
"Collect post code": "收集后代码",
"Collection deleted": "已删除集合",
"Collection description": "集合描述",
"Collection name": "集合名称",
"Collection type": "集合类型",
"Collection": "收藏",
"Collections (Automated)": "集合 ( 自动化)",
"Collections (Manual)": "收款 ( 手动)",
"Collections": "收款",
"Color": "颜色",
"Colors Customization": "颜色定制",
"Column Names": "列名",
"Column name must not be empty": "列名不能为空",
"Columns to be imported": "要导入的列",
"Columns": "列",
"Comma Separated of Matched SKUs": "匹配的 SKU 的逗号分隔",
"Comma-separated list of fields you want returned": "要返回的以逗号分隔的字段列表",
"Command must be unique for all commands in the bot": "对于 bot 中的所有命令,命令必须唯一",
"Command must not be empty": "命令不能为空",
"Command": "命令",
"Comment Keyword": "评论关键字",
"Comment Keywords": "注释关键字",
"Comment Payload": "评论负载",
"Comment keyword deleted": "注释关键字已删除",
"Comment keywords": "注释关键字",
"Comment": "评论",
"Comments": "评论",
"Commerce Manager": "商业经理",
"Community Url": "社区 URL",
"Community": "社区",
"Compare at price": "价格比较",
"Compared to": "相比",
"Completed": "已完成",
"Condition": "条件",
"Conditions": "条件",
"Config": "配置",
"Confirm Import": "确认导入",
"Confirm": "确认",
"Confirmed Event Update": "已确认事件更新",
"Connect CRM Account": "连接 CRM 帐户",
"Connect Calendly Account": "连接 Calendly 帐户",
"Connect Drift Account": "连接漂移帐户",
"Connect Facebook Ads": "连接 Facebook 广告",
"Connect Facebook Business": "连接 Facebook 企业",
"Connect Facebook Group": "连接 Facebook 群组",
"Connect Facebook Page and Instagram": "连接 Facebook 页面和 Instagram",
"Connect Facebook Pages": "连接 Facebook 页面",
"Connect Google Dialogflow": "连接 Google Dialogflow",
"Connect Intercom Account": "连接对讲机帐户",
"Connect Intercom": "连接对讲机",
"Connect MailChimp Account": "连接 MailChimp 帐户",
"Connect Method": "连接方法",
"Connect Now": "立即连接",
"Connect Slack Account": "连接Slack帐户",
"Connect Slack Channel": "连接Slack通道",
"Connect Slack Channels": "连接Slack通道",
"Connect Stripe Account": "连接Stripe帐户",
"Connect Stripe in Integration to enable Stripe billing": "在集成中连接 Stripe 以启用 Stripe 计费",
"Connect WhatsApp Cloud": "连接 WhatsApp 云",
"Connect Zoho Account": "连接 Zoho 帐户",
"Connect to Calendly account failed.": "连接到 Calendly 帐户失败。",
"Connect to Drift account failed.": "连接到漂移帐户失败。",
"Connect to Google Account failed.": "连接到 Google 帐户失败。",
"Connect to Intercom account failed.": "连接到 Intercom 帐户失败。",
"Connect to MailChimp account failed.": "连接到 MailChimp 帐户失败。",
"Connect to Slack account failed.": "连接 Slack 帐户失败。",
"Connect to Stripe account failed.": "连接到 Stripe 帐户失败。",
"Connect to Zoho account failed.": "连接到 Zoho 帐户失败。",
"Connect to any app": "连接到任何应用程序",
"Connect to your google Dialogflow to enable Dialogflow NLP features in the flow.": "连接至 google Dialogflow ,以在流中启用 Dialogflow NLP 功能。",
"Connect to your google account to enable Dialogflow NLP features in the flow.": "连接到您的 google 帐户以在流中启用 Dialogflow NLP 功能。",
"Connect to your google account to enable send email from your Gmail account in the flow.": "连接到您的 google 帐户以启用从流中的 Gmail 帐户发送电子邮件。",
"Connect to your google account to enable ‘Google Spreadsheet’ features in flow.": "连接到您的 google 帐户以启用 \" Google Spreadsheet\" 功能。",
"Connect your apps and automate workflows. Easy automation for busy people.": "连接应用程序并自动执行工作流程。 为忙碌的人轻松实现自动化。",
"Connected Facebook Page is required.": "需要连接 Facebook 页面。",
"Connected Facebook Pages by you in other workspaces": "在其他工作空间中连接了 Facebook 页面",
"Connected Instagram Account is required.": "需要连接 Instagram 帐户。",
"Connected Line Account is required.": "需要连接行帐户。",
"Connected Stripe Account": "已连接的Stripe帐户",
"Connected Telegram bot is required.": "需要连接 Telegram bot 。",
"Connected Viber Account is required.": "需要连接维伯帐户。",
"Connected Web Account is required.": "需要连接的 Web 帐户。",
"Connected WhatsApp Number is required.": "需要连接的 WhatsApp 号。",
"Connecting all your favorite mini-apps with just a few clicks.": "将您喜爱的所有迷你应用连接起来,只需点击几次即可。",
"Constraints and limitations": "约束和限制",
"Constraints": "约束",
"Contact Email Address": "联系人电子邮件地址",
"Contact Email": "联系人电子邮件",
"Contact Id": "联系人 ID",
"Contact Name": "联系人姓名",
"Contact Person Name": "联系人姓名",
"Contact Phone Number": "联系电话号码",
"Contact Phone": "联系电话",
"Contact support to add addon": "联系支持人员添加插件",
"Contact support to increase the rate limit.": "请联系支持人员以提高速率限制。",
"Contains": "包含",
"Content Overview": "内容概述",
"Content Review": "内容复审",
"Content Type": "内容类型",
"Content typed “Default” or without a Content Type will NOT be delivered to subscribers": "内容类型为 \"Default\" 或不带内容类型的内容将不传递给订户",
"Content": "内容",
"Contents": "内容",
"Context Name": "上下文名称",
"Context": "上下文",
"Continue between": "继续之间",
"Continue selling when out of stock": "当库存不足时继续销售",
"Continue to Next step": "继续至下一步",
"Continue to next step when feedback received": "收到反馈时继续下一步",
"Continue to next step": "继续下一步",
"Continue to step after added to cart": "添加到购物车后继续步骤",
"Continue to step after option selected": "选择选项后继续执行",
"Continue to step after removed from cart": "从购物车中删除后继续步骤",
"Continue to step after this button is pressed": "按此按钮后继续步骤",
"Continue to step when appointment booked": "预约预约时继续步骤",
"Continue to step when payment succeeded": "支付成功时继续步骤",
"Continue viewing chat messages after status changed in live chat": "实时聊天状态改变后继续查看聊天消息",
"Control where Chat Plugin will be positioned on your website.": "控制 \" 交谈插件 \" 将定位在 Web 站点上的位置。",
"Conversation Mode": "对话模式",
"Conversation Session Timeout": "对话時間超時",
"Conversation Status is": "对话状态为",
"Conversation Status": "对话状态",
"Conversation closed": "对话已结束",