-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathja.json
5798 lines (5798 loc) · 421 KB
/
ja.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) 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) 記事",
"(WeChat) Mini App Card": "(WeChat) ミニアプリカード",
"(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=": "=カスタム投稿 ID=",
"A character except: a, b or c": "a、b、または c 以外の文字",
"A character in the range: a-z or A-Z": "範囲内の文字: az または AZ",
"A character in the range: a-z": "範囲内の文字: az",
"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.": "複数のチャネル用の統合された受信トレイを備えた単一のオムニ チャネル ボット。",
"A single character of: a, b or c": "a、b、または c の 1 文字",
"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 Actions": "AIアクション",
"AI Agent": "AIエージェント",
"AI Agents": "AIエージェント",
"AI Function Result": "AI機能の結果",
"AI Function": "AI機能",
"AI Functions": "AI機能",
"AI Hub": "AIハブ",
"AI Intent Recognition": "AI意図認識",
"AI Prompt Provider": "AIプロンプトプロバイダー",
"AI Prompt": "AIプロンプト",
"AI Prompts are shared among all bots in the workspace": "AIプロンプトはワークスペース内のすべてのボット間で共有されます",
"AI Prompts": "AIプロンプト",
"AI Task": "AIタスク",
"AI Tasks": "AIタスク",
"AI Usage Logs": "AI使用ログ",
"AI Usage": "AIの使用",
"API Access": "API アクセス",
"API Doc": "API ドキュメント",
"API Domain": "API ドメイン",
"API Key": "API キー",
"API Secret": "API シークレット",
"API URL": "API URL",
"APPLIES TO": "APPLIES TO",
"ASMSC": "アスムス",
"AVAILABLE": "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.": "ボットの構築、設計、巧妙な回避策から開発サポート、アカウント管理などに至るまで、段階的なチュートリアルを提供する何百ものサポート記事にアクセスしてください。",
"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 Function": "AI機能の追加",
"Add AI Prompt": "AIプロンプトを追加",
"Add AI Task": "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 ボットを追加",
"Add New Board": "新しいボードを追加",
"Add New 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": "新しい Facebook リードフォームを追加",
"Add New Feedback Topic": "新しいフィードバック トピックを追加",
"Add New Google Assistant Bot": "新しい Google アシスタント ボットを追加",
"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 チーム ボットを追加",
"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": "新しい電報ボットを追加",
"Add New Template": "新しいテンプレートを追加",
"Add New Trigger": "新しいトリガーを追加",
"Add New Type": "新しいタイプを追加",
"Add New VK Bot": "新しい VK ボットを追加",
"Add New Vendor": "新しいベンダーを追加",
"Add New Viber Bot": "新しい Viber ボットを追加",
"Add New WeChat Bot": "新しい WeChat ボットを追加",
"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 additional prompt to system prompt.": "システムプロンプトに追加のプロンプトを追加します。",
"Add agent failed.": "エージェントの追加に失敗しました。",
"Add agent successful.": "エージェントを追加しました。",
"Add another condition": "別の条件を追加",
"Add bot data failed.": "ボット データの追加に失敗しました。",
"Add bot data successful.": "ボット データを追加しました。",
"Add bot token failed.": "ボット トークンの追加に失敗しました。",
"Add bot token successful.": "ボット トークンを追加しました。",
"Add collaborator to :num selected users": "選択したユーザー数に共同編集者を追加",
"Add days": "日数を追加",
"Add default value": "デフォルト値を追加",
"Add description": "説明を追加",
"Add failed.": "追加に失敗しました。",
"Add field": "フィールドを追加",
"Add filter for Bot Users": "ボット ユーザーのフィルターを追加",
"Add hot word": "ホットワードを追加",
"Add hours": "営業時間を追加",
"Add keyword": "キーワードを追加",
"Add label to :num selected users": ":num 選択したユーザー数にラベルを追加",
"Add label": "ラベルを追加",
"Add labels for :num selected flows": "選択したフローのラベルを追加",
"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.": "このコレクションに製品を 1 つずつ追加します。",
"Add reply message": "返信メッセージを追加",
"Add subscriber to MailChimp List": "購読者を MailChimp リストに追加する",
"Add subscriber to Zoho Contact": "Zoho Contactにサブスクライバーを追加",
"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 Mode": "アドバンスモード",
"Advanced Settings": "高度な設定",
"After": "後",
"After the agent responds, it automatically provides 3 suggested questions that the user may ask based on the chat": "エージェントが応答すると、チャットに基づいてユーザーが尋ねそうな質問を3つ自動的に提案します。",
"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": "エージェント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.": "すべての項目は、関連するセクションに追加されます。サブフローは Flows セクションの新しいフォルダーに配置されます。",
"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": "Amazon Alexa ボット",
"Amazon Alexa": "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": "任意の 1 文字",
"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": "アプリ 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 assistant message to AI Agent Messages": "AIエージェントメッセージにアシスタントメッセージを追加する",
"Append new row to bottom": "新しい行を一番下に追加",
"Append user message to AI Agent Messages": "AIエージェントメッセージにユーザーメッセージを追加する",
"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?": "このボットをオムニチャネルに変換してもよろしいですか?",
"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": "Fbリードフォームを削除してもよろしいですか?",
"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": "よくある質問を削除してもよろしいですか",
"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.": "このボットをリンクして、すべてのボット ユーザーを削除してもよろしいですか?ボットをリンクしてボット ユーザーを削除する場合は、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.": "このチャンネルをリンクして、ボット ユーザーを削除してもよろしいですか?チャンネルをリンクしてボット ユーザーを削除する場合は、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.": "このボットの自動化を一時停止してもよろしいですか?一時停止すると、このボットにリンクされたフローは機能しなくなります。",
"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 エージェントとボットを削除してもよろしいですか?削除すると、このボットにリンクされたフローは機能しなくなります。",
"Are you sure you want to remove this bot? If removed, the flow linked to this bot will not work.": "このボットを削除してもよろしいですか?削除すると、このボットにリンクされたフローは機能しなくなります。",
"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?": "この番号からボットのリンクを解除してもよろしいですか?",
"Are you sure you want to unlink this bot?": "このボットのリンクを解除してもよろしいですか?",
"Arguments": "引数",
"Array": "配列",
"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": "少なくとも 1 つのボタンが必要です",
"At the day of": "の日に",
"Attachment": "アタッチメント",
"Attachments": "付属品",
"Au Property Report": "au物件レポート",
"Audio Recording": "オーディオ録音",
"Audio transcription": "音声文字起こし",
"Audio": "オーディオ",
"Audit Log": "監査ログ",
"Audit Logs": "監査ログ",
"Auth Token": "認証トークン",
"Auth Type": "認証タイプ",
"Auth deleted": "認証を削除しました",
"Auth": "認証",
"Authenticated": "認証済み",
"Author": "著者",
"Authorization": "認可",
"Authorize Url": "URL の承認",
"Authorize Website": "ウェブサイトの承認",
"Authorize Websites": "ウェブサイトの承認",
"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 suggestion": "自動提案",
"Auto suggestions are disabled when the advanced mode is enabled in primary AI Agent.": "プライマリ AI エージェントで詳細モードが有効になっている場合、自動提案は無効になります。",
"Auto topup is not available for this account.": "このアカウントでは自動トップアップは利用できません。",
"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 transcribes any audio input from the user into text.": "ユーザーからの音声入力を自動的にテキストに変換します。",
"Automatically": "自動的",
"Automation": "オートメーション",
"Available Credit": "利用可能なクレジット",
"Available Database Name": "利用可能なデータベース名",
"Available Points": "利用可能なポイント",
"Available app fields from Auth Inputs": "認証入力から利用可能なアプリ フィールド",
"Available only when set as Primary AI Agent.": "プライマリ AI エージェントとして設定されている場合にのみ使用できます。",
"Available system fields": "利用可能なシステム フィールド",
"Available values": "利用可能な値",
"Available values:": "利用可能な値:",
"Available variable": "利用可能な変数",
"Available": "利用可能",
"Avatar is required": "アバターが必要です",
"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": "1 日の平均アクティブ",
"Avoid sending SMS messages outside of the telemarketing hours": "テレマーケティングの営業時間外には SMS メッセージを送信しないでください。",
"Back": "戻る",
"Background Color - Form": "背景色 - フォーム",
"Background Color - Main": "背景色 - メイン",
"Background Color": "背景色",
"Background Image": "背景画像",
"Backlog": "やり残し",
"Backup": "バックアップ",
"Balanced": "バランスのとれた",
"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": "基本ID",
"Basic": "基本",
"Be default, the bot start flow is \"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": "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": "ウェブページの本文",
"Body text must not be empty": "本文を空にすることはできません",
"Body text": "本文",
"Body": "体",
"Bot Automation": "ボット自動化",
"Bot Content": "ボットのコンテンツ",
"Bot Fields": "ボット フィールド",
"Bot Name": "ボット名",
"Bot Phone": "ボットフォン",
"Bot Start Flow": "ボット開始フロー",
"Bot Template Installs": "ボット テンプレートのインストール",
"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 Template": "ボット テンプレート",
"Bot User Ns": "ボット ユーザー数",
"Bot User": "ボットユーザー",
"Bot Users Auto Cleanup": "ボット ユーザーの自動クリーンアップ",
"Bot Users Limit": "ボット ユーザーの制限",
"Bot Users Replied": "ボット ユーザーが返信しました",
"Bot Users": "ボット ユーザー",
"Bot addon required": "ボットアドオンが必要",
"Bot users to be imported": "インポートするボット ユーザー",
"Bot": "Bot",
"Bots by channel": "チャンネル別のボット",
"Bots": "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.": "ブランドの連絡先メール。ブランドのウェブサイトと同じドメインを共有することをお勧めします。",
"Brand contact name.": "ブランドの連絡先名。",
"Brand website URL": "ブランドサイト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": "ビジネスウェブサイト",
"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": "CANVAS",
"CAUTION: Convert bot": "注意: ボットの変換",
"CAUTION: Delete workspace": "注意: ワークスペースを削除する",
"CAUTION: Link bot": "注意: リンクボット",
"CAUTION: Link channel": "注意:リンクチャンネル",
"CAUTION: Unlink bot": "注意: ボットのリンクを解除する",
"CAUTION: Unlink channel": "注意: チャンネルのリンクを解除する",
"COMMENT": "COMMENT",
"CRM V1 API": "CRM V1 API",
"CRM V2 API": "CRM V2 API",
"CRM V2 Webhook": "CRM V2 Webhook",
"CRM": "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 - 再スケジュール",
"Calendly Booking Url": "Calendly 予約 URL",
"Calendly account disconnected": "アカウントが切断されました",
"Calendly": "Calendly",
"Call Logs": "コールログ",
"Call Number": "電話番号",
"Call Whisper": "コールウィスパー",
"Caller Id": "発信者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.": "カードには画像またはビデオのヘッダー、本文、および少なくとも 1 つのボタンが必要です。",
"Cards": "カード",
"Cart is empty": "カートは空です",
"Case Sensitive?": "大文字と小文字を区別?",
"Cash on Delivery": "代金引換",
"Catalog Id": "カタログ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": "チャネル 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 スプレッドシートの行データを消去します。",
"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.": "このボタンをクリックすると、選択したテーマに基づいて Flow Builder が自動的に配置されます。これはあなたに魔法をかけてくれます。",
"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.": "このボタンをクリックして Flow Builder をズームインします。また、マウスのスクロールを使用してズームインおよびズームアウトすることもできます。",
"Click this button to zoom out the flow builder, also you can use mouse scroll to zoom in and out.": "このボタンをクリックして Flow Builder をズームアウトします。また、マウスのスクロールを使用してズームインおよびズームアウトすることもできます。",
"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": "クリックして Webhook を削除します",
"Click to link bot to this channel": "クリックしてボットをこのチャネルにリンクします",
"Click to link to this bot": "クリックしてこのボットにリンクします",
"Click to load image": "クリックして画像を読み込む",
"Click to select Step": "クリックしてステップを選択します",
"Click": "クリック",
"Client Activity": "クライアントアクティビティ",
"Client Id": "クライアントID",
"Client Secret": "クライアント シークレット",
"Clients": "クライアント",
"Close Popup Window": "ポップアップ ウィンドウを閉じる",
"Close": "近い",
"Closed": "閉まっている",
"Closing Note Category is Mandatory": "締めくくりメモのカテゴリは必須です",
"Closing Notes": "終わりのメモ",
"Clothing": "衣類",
"Cloud API": "クラウドAPI",
"Cloud Name": "クラウド名",
"Cloudinary": "Cloudinary",
"Code": "コード",
"Collaborating": "コラボレーション",
"Collaborators": "協力者",
"Collect IP data": "IP データの収集",
"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": "コマンドは、ボットのすべてのコマンドに対して一意である必要があります",
"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 ダイアログフローを接続する",
"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": "ストライプ アカウントを接続",
"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.": "Drift アカウントへの接続に失敗しました。",
"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 スプレッドシート」機能を有効にします。",
"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.": "Connected Telegram ボットが必要です。",
"Connected Viber Account is required.": "接続された Viber アカウントが必要です。",
"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": "コンテンツの概要",