-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathja.json
1631 lines (1631 loc) · 141 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
{
"add_your_first_writing_example_below": "以下、あなたのファーストライティングの例を追加してください。",
"add_your_second_writing_example_below": "あなたのセカンドライティングの例を以下に追加してください。",
"add_your_third_example_below": "以下、3つ目の事例を追加",
"4_9_out_of_5_stars_in_150_plus_Reviews": "150以上のレビューで5つ星のうち4.9を獲得",
"4_9_out_of_5_stars_in_350_plus_Reviews": "350以上のレビューで5つ星のうち4.9を獲得",
"5_more_features": "5+ その他の機能",
"12_more_features": "12+ その他の機能",
"14_Days_Free": "14日間無料",
"A man walks into a bar. Give me 5 versions of this joke.": "ある男がバーに入ってきた。このジョークの5つのバージョンを教えてください。",
"A_Few_details_about_you": "あなたに関するいくつかの詳細",
"A_man_walks_into_a_bar_Give_me_5_versions_of_this_joke": "ある男がバーに入ってきた。このジョークの5つのバージョンを教えてください。",
"A_password_reset_link_has_been_sent_to_your_email": "パスワードリセットリンクがあなたのEメールに送信されました!",
"academic": "アカデミック",
"Academic Life": "アカデミックライフ",
"Academic_Life": "アカデミックライフ",
"Account": "アカウント",
"Account_Settings": "アカウント設定",
"Adam_Keller": "アダム・ケラー",
"add_to_chrome": "Chromeに追加する",
"Add_to_Chrome_it's_free": "Chromeに追加する(無料)",
"add_to_chrome_its_free": "Chromeに追加する -- 無料です",
"add_to_edge": "エッジに追加",
"add_to_favorite": "お気に入りに追加する",
"Add_Your_First_Connection": "最初の接続を追加する",
"Add_ZenoChat_To": "ZenoChatを追加する",
"Add_ZenoChat_To_Chrome": "ZenoChatをChromeに追加する",
"Ads and Marketing": "広告・マーケティング",
"Ads Copy": "広告コピー",
"Ads Tagline": "広告のキャッチコピー",
"Ads_and_Marketing": "広告・マーケティング",
"agreementText": "text.cortexの<1>利用規約</1>と<3>プライバシーポリシー</3>に同意します。",
"AI_marketing_copy_generator_to_cut_70%of_the_time_you_spend_on_writing_copies.": "コピー作成にかける時間を70%削減するAIマーケティングコピージェネレーター。",
"AI_text_editor": "AIテキストエディタ",
"ai_writing_assistant_for_all_your_content": "すべてのコンテンツにAIライティングアシスタントが対応",
"AI_writing_assistant_helps_you_with_any_type_of_content_writing.": "AIライティングアシスタントが、あらゆるコンテンツライティングをサポートします。",
"All": "すべて",
"all_your_creation_happens_in_the_text_editors_and_creation_templates_accessible_from_the_create_button_or_the_creator_tab": "作成はすべて、作成ボタンや「クリエイター」タブからアクセスできるテキストエディタや作成テンプレートで行います。",
"all_your_documents_in_one_space_ready_to_share_with_your_team": "すべてのドキュメントを1つのスペースに。チームですぐに共有できます。",
"Already_have_an_account": "すでにアカウントをお持ちの方",
"analyzing": "分析する...",
"analyzing_your_sample_texts": "サンプルテキストを分析する...",
"and_enjoy_TextCortex_unlimited_altogether_for_free": "で、TextCortexを無料で使い放題にすることができます!",
"Answer_the_prompts_on_the_left": "左のプロンプトに答えると、AIコンテンツがここに表示されます。",
"Answer_the_prompts_on_the_left_to_see_your_AI_content_show_up_here": "左のプロンプトに答えると、AIコンテンツがここに表示されます。",
"Answer_the_prompts_on_the_left_to_see_your_AI_content_show_up_here.": "左のプロンプトに答えると、AIコンテンツがここに表示されます。",
"API_documentation": "APIドキュメント",
"API_Key": "APIキー",
"App and Sms Notifications": "アプリとSMSの通知",
"are_you_sure_you_want_to_delete_this_ai_persona": "本当にこのAIペルソナを削除していいのでしょうか?",
"are_you_sure_you_want_to_delete_this_document": "本当にこの文書を削除していいのですか?",
"Article for which the conclusion is to be written": "結論が書かれる記事",
"Audience for the email": "メールの対象者",
"Auto Complete": "オートコンプリート",
"Auto_Complete": "オートコンプリート",
"Auto-detect": "オートディテクト",
"Basic_Information": "基本情報",
"become_the": "になる。",
"Below_youll_find_a_summary_of_API_usage_for_your_organization": "以下では、お客様の組織におけるAPI利用状況の概要をご紹介します。",
"Billing_&_Invoice": "請求書・インボイス",
"Blog Body": "ブログボディ",
"Blog Ideas": "ブログアイデア",
"Blog Intros": "ブログイントロ",
"Blog Outline": "ブログ概要",
"Blog Outlines": "ブログのアウトライン",
"Blog Section": "ブログ部門",
"Blog Title": "ブログタイトル",
"Blog_Body": "ブログボディ",
"Blog_Outline": "ブログ概要",
"Blog_Section": "ブログ部門",
"Blog_Title": "ブログタイトル",
"Blog_Wizard": "ブログウィザード",
"Blog_writing": "ブログ執筆",
"Blogging": "ブログ",
"Blunt": "ブラント",
"Brand of the product": "製品のブランド",
"Browse_existing_or_create_new_documents.": "既存のドキュメントを閲覧したり、新規にドキュメントを作成することができます。",
"Build on top of the given sentence": "与えられた文の上に構築する",
"Build_a_knowledge_base_with_our_text_editor_to_train_Zeno_on_it": "当社のテキストエディタでナレッジベースを構築し、Zenoをトレーニングする。",
"Build_on_top_of_the_given_sentence": "与えられた文の上に構築する",
"Build_your_knowledge_base_by_connecting_anything_with_our_Webhook_Editor_to_train_Zeno_on_it": "Webhookエディターであらゆるものを接続し、Zenoをトレーニングすることで、ナレッジベースを構築することができます。",
"Build_your_knowledge_base_by_training_Zeno_on_a_list_of_websites": "Zenoをウェブサイトのリストでトレーニングすることで、知識ベースを構築することができます。",
"Build_your_list_of_knowledge_and_import_it_via_CSV_to_train_Zeno_on_it": "知識のリストを構築し、CSVでインポートしてZenoにトレーニングさせることができます。",
"Building_your_connectors": "コネクタを構築することで、Zeno AIがあなたの組織の情報を複製して利用できるようになります。",
"Built_your_knowledge_base_by_connecting_anything_with_our_Webhook_Editor_to_train_Zeno_on_it": "Webhookエディターであらゆるものを接続し、Zenoをトレーニングすることで、ナレッジベースを構築できます。",
"Built_your_knowledge_base_by_training_Zeno_on_a_list_of_websites": "Zenoをウェブサイトのリストでトレーニングすることで、知識ベースを構築しました。",
"Bullet Point Answers": "バレットポイントアンサー",
"Bullet To Email": "電子メールへの弾丸",
"bullet_list": "弾丸リスト",
"Bullet_To_Email": "電子メールへの弾丸",
"Business": "事業内容",
"buy_now": "今すぐ購入する",
"Call To Action": "コール・トゥ・アクション",
"Can you explain how to use pointers in C++?": "C++でポインタの使い方を説明してください。",
"Can you explain the concept of minimum viable product (MVP)?": "MVP(Minimum Viable Product)の概念について説明してください。",
"Can you explain the process of cellular respiration?": "細胞呼吸のプロセスを説明できますか?",
"Can you help me create an action plan to reach my goals?": "目標達成のためのアクションプランの作成に協力してもらえますか?",
"Can you provide some tips for improving my pronunciation?": "私の発音を改善するためのヒントを教えてください。",
"cancel": "キャンセル",
"Casual": "カジュアル",
"Category": "カテゴリー",
"Category of the product": "商品のカテゴリー",
"Change Tone": "トーン変更",
"Change_password": "パスワードの変更",
"Change_Tone": "トーン変更",
"changing_creativity": "クリエイティビティを変える",
"changing_fluency": "流暢さを変える",
"changing_tone": "トーンの変更",
"Check_my_facts": "私の事実を確認する",
"Check_out_our_Discord_community_channel_where_we_share_valuable_information_and_meet_like_minded_people": "Discordのコミュニティチャンネルでは、貴重な情報を共有したり、気の合う仲間と出会ったりしていますので、ぜひご覧ください!",
"checking_my_facts_for_you": "あなたのために、私の事実を確認する...",
"Cheerful": "チアフル",
"choose_a_template": "テンプレートを選択する",
"Choose_among_100+AI_templates_and_find_your_fit": "100種類以上のAIテンプレートの中から、自分に合ったものを選びましょう。",
"Choose_language": "言語を選択する",
"choose_your_plan_and_write_marketing_sales_and_website_copy_in_seconds": "プランを選んで、マーケティング、セールス、ウェブサイトのコピーを数秒で書くことができます。",
"Chrome_extension": "Chromeエクステンション",
"Code": "コード",
"code_block": "コードブロック",
"Cold Email": "コールドメール",
"Cold_Email": "コールドメール",
"Come up with 3 nutritious meals that can be prepared within half an hour or less.": "30分以内に調理できる栄養価の高い食事を3つ考えてみてください。",
"Come_up_with_3_nutritious_meals_that_can_be_prepared_within_half_an_hour_or_less": "30分以内に調理できる栄養価の高い食事を3つ考えてみてください。",
"Commence à écrire avec TextCortex...": "TextCortexで文章を書き始める...",
"Company Bios": "会社概要",
"Company Mission": "企業理念",
"Company Vision": "企業ビジョン",
"Company_Description": "会社概要",
"Company_Information": "会社情報",
"Company_Name": "会社名",
"compiling_results_for_you": "結果をまとめると...",
"complex_equations": "ふくざつほうていしき",
"compose_a_love_song_in_the_style_of_robert_frost": "ロバート・フロスト風のラブソングを作曲してください。",
"Concise": "コンサイス",
"Conclusion Writer": "コンクルージョンライター",
"Confirm_changes": "変更内容を確認する",
"Confluence": "コンフルエンス",
"Congrats_You_just_won": "おめでとうございます!あなたは今、当選しました",
"Congratulations_on_completing_the_onboarding_We_are_thrilled_to_have_you_as_a_member_of_our_community": "オンボーディングの完了、おめでとうございます。私たちは、あなたが私たちのコミュニティのメンバーとしていることに感激しています。🎉",
"Connect_different_knowledge_sources": "さまざまな知識ソースをつなげて、AIアシスタントを超スマートにする",
"Connect_different_knowledge_sources_to_make_your_AI_assistant_super_smart": "さまざまな知識ソースをつなげて、AIアシスタントを超スマートにする",
"Connect_your_Confluence_account_to_access_any_information_across_your_cloud_storage_through_Zeno": "Confluence アカウントを接続し、Zeno を通してクラウドストレージのあらゆる情報にアクセスできます。",
"Connect_your_Github_to_work_more_efficient_with_your_code_base_and_find_any_necessary_information_you_need_through_Zeno": "Githubと連携することで、より効率的にコードベースと連携し、必要な情報をZenoで見つけることができます。",
"Connect_your_Google_Drive_account_to_access_any_information_across_your_cloud_storage_through_Zeno": "Google Driveのアカウントを接続すると、Zenoを通じてクラウドストレージ全体のあらゆる情報にアクセスすることができます。",
"Connect_your_Onedrive_to_access_any_information_through_Zeno": "Onedriveを接続することで、Zenoを通じてあらゆる情報にアクセスすることができます。",
"Connect_your_Onedrive_to_access_any_information_through_Zeno_across_your_cloud_storage_in_seconds": "Onedriveを接続することで、数秒でクラウドストレージ全体のZenoを通じてあらゆる情報にアクセスできます。",
"Connect_your_SQL_Database": "SQLデータベースを接続し、Zenoを通して必要な情報にアクセスすることができます。",
"connection_is_still_under_constrction": "接続はまだ工事中です",
"contact_us": "ご連絡",
"Contact_us_to_upgrade_your_access_to_the_next_level": "アクセスアップのお問い合わせはこちら",
"Context of the email": "メールの文脈",
"Continue": "続き",
"convince_me_to_invest_in_a_sandcastle_hotel": "サンドキャッスルホテルに投資することを納得させる。",
"copy_and_send_your_invitation_link_to_a_friend_for_extra_daily_creations_each_accepted_invite_will_give_5_creations_per_day": "招待リンクをコピーして友達に送ると、1日1回クリエイションが追加されます!招待を受けると、1日に5つの作品を作ることができます。",
"copy_to_clipboard": "クリップボードにコピーする",
"Copywriter": "コピーライター",
"Correct_and_build_upon_messages": "メッセージの修正と積み重ね",
"Cost": "コスト",
"Create": "作成",
"Create an engaging LinkedIn post.": "魅力的なLinkedInの投稿を作成する。",
"Create an engaging Tweet.": "魅力的なTweetを作成する。",
"Create experience linkedin": "クリエイトエクスペリエンス・リンキン",
"Create_Account": "アカウント作成",
"Create_an_engaging_LinkedIn_post": "魅力的なLinkedInの投稿を作成する。",
"Create_an_engaging_Tweet": "魅力的なTweetを作成する。",
"Create_catchy&SEO-optimized_captions_for_your_youtube_videos": "Youtubeの動画にキャッチーでSEOに最適なキャプションを作成する。",
"Create_experience_linkedin": "クリエイトエクスペリエンス・リンキン",
"Create_high-quality_blog_posts_within_a_click_of_a_button.": "ボタンをクリックするだけで、高品質なブログ記事を作成することができます。",
"create_text": "テキストを作成する",
"Create_unique&engaging_content_for_your_Instagram_profile_within_seconds.": "あなたのInstagramプロフィールのためのユニークで魅力的なコンテンツを数秒以内に作成します。",
"Create_your_digital_twin_and_your_apprentice": "デジタルツインと弟子を作る",
"Create_your_own_AI_persona": "自分だけのAIペルソナを作る",
"Creates generic ad copy": "一般的な広告コピーを作成する",
"Creates_generic_ad_copy": "一般的な広告コピーを作成する",
"creating_your_customized_ai_persona": "カスタマイズしたAIペルソナを作成する...",
"creation_and_translation_in_10_languages": "10カ国以上の言語での作成と翻訳",
"creations": "クリエーション",
"Creative": "クリエイティブ",
"creativity": "クリエイティビティ",
"creativity_completed": "クリエイティビティを完成させた!",
"creator_suite_60_creation_templates": "クリエイター・スイート:60以上のクリエーションテンプレート",
"Cristine_Lee": "クリスティン・リー",
"CSV_Import": "CSVインポート",
"Cumulative": "累積",
"Curie, the scientist": "科学者キュリー",
"Customer Support Email": "カスタマーサポートメール",
"Customer_Support_Email": "カスタマーサポートメール",
"Customize_your_AI": "AIをカスタマイズする",
"Cyphas_Solutions_LTD": "サイファスソリューション株式会社",
"Daily": "デイリー",
"daily_creations_limit_reached": "デイリークリエイションの上限に到達",
"Daily_recurring_creations": "毎日繰り返されるクリエイション",
"Dashboard": "ダッシュボード",
"Date": "日付",
"Decisive": "決め手となる",
"deep_tech_entrepreneur_and_software_engineer_ceyhun_derinbogaz_is_a_tech_professional_author_and_co_founder_of_textcortex_ai_his_latest_venture_textcortex_ai_has_developed_an_ai_based_platform_that_can_help_companies_and_individuals_to_help_their_content_creation_using_nlg": "ディープテックの起業家でソフトウェアエンジニアのCeyhun Derinbogazは、技術専門家、作家、TextCortex AIの共同設立者です。彼の最新ベンチャーであるTextCortex AIは、企業や個人がNLGを使用してコンテンツ作成を支援できるAIベースのプラットフォームを開発しました。",
"default": "デフォルト",
"delete": "削除",
"Delete_Account": "アカウント削除",
"Delete_AI_Persona": "削除_AI_ペルソナ",
"delete_document": "ドキュメントを削除する",
"Description of the product or service": "製品またはサービスの説明",
"Description of the company": "会社概要",
"Description of the email": "メールの内容",
"Description of the notification": "通知内容",
"Description of the product or service": "製品またはサービスの説明",
"Description of the story": "ストーリーの説明",
"Detailed": "詳細",
"Detailed_usage_History": "詳細な使用履歴",
"Discord_Community": "ディスコード・コミュニティ",
"Do_not_use_me_for_biased_or_offensive_content": "偏った内容や攻撃的な内容に私を利用しないでください。",
"Do_you_have_a_question_for_generating_content_on_a_niche_subject_Looking_for_a_priority_hosting_solution_Or_are_you_looking_for_a_customization": "ニッチなテーマでコンテンツを生成するための質問をお持ちですか?優先的にホスティングするソリューションをお探しですか?または、カスタマイズをお探しですか?",
"Documentation": "ドキュメンテーション",
"Documents": "ドキュメント",
"Dont_have_an_account": "アカウントをお持ちでない方",
"download_the_chrome_extension_and_signup_to_text_cortex": "クローム拡張機能をダウンロードし、text.cortexにサインアップしてください。",
"Dramatic": "ドラマチック",
"Dropbox_Paper": "Dropbox Paper",
"Earn_Creations": "アーンクリエイト",
"earn_extra_creations_for_free": "無料で追加クリエイティブを獲得できる",
"Earn_free_creations_and_free_trials": "無料クリエーションと無料トライアルを獲得する",
"Earn_more": "より多く稼ぐ",
"Ecommerce": "電子商取引",
"edit": "編集部",
"Email": "電子メール",
"Email First Line": "メール1行目",
"Email Reply": "メール返信",
"Email Subject": "メール件名",
"Email Subject Lines": "メールの件名",
"Email Writing": "メールライティング",
"Email_address": "電子メールアドレス",
"Email_Address": "電子メールアドレス",
"Email_body": "メール本文",
"Email_First_Line": "メール1行目",
"Email_Reply": "メール返信",
"Email_Subject": "メール件名",
"Email_Writing": "メールライティング",
"Enable_web_search": "ウェブ検索を有効にする",
"Encouraging": "励みになる",
"Enigma, the prompt engineer": "エニグマ、プロンプトエンジニア",
"Enter_8_characters_or_more": "8文字以上入力する",
"Enterprise_Sales_Director": "エンタープライズセールスディレクター",
"Entrepreneur": "アントレプレナー",
"everything_in_free_plus": "すべて無料、プラス",
"everything_in_pro_plus": "PROの全てに加え",
"example_formula": "例 式",
"example_persona_john": "ペルソナの例ジョン",
"Excited": "エキサイティング",
"Expand": "拡大する",
"expanding": "拡大する",
"expansion_completed": "拡張工事完了",
"explain_what_you_want_to_do": "やりたいことを説明する",
"Knowledge_Connectors": "ナレッジコネクター",
"Explore_Knowledge_Connectors": "ナレッジコネクターを探る",
"Explore_Knowledge_Connectors_2": "ナレッジコネクターを探る",
"Extend a given sentence or paragraph": "与えられた文章や段落を拡張する",
"Faith_Wynn": "フェイス・ウイン",
"feature": "特徴",
"Feature To Benefit": "フィーチャー・トゥ・ベネフィット",
"Features of the product": "製品の特徴",
"Features of the product or service": "製品・サービスの特徴",
"fetching_your_templates": "テンプレートを取得する...",
"find_best_practices_in_our": "ベストプラクティスを見つけるには、私たちの",
"Find_more_help_on_best_practices_and_how_to_get_started_with_our_API_in_our_help_center": "ベストプラクティスとAPIを使い始める方法については、ヘルプセンターでご確認ください。",
"First_Name": "ファーストネーム",
"Fluency": "流暢さ",
"fluency_completed": "フルエンシーを完成させた!",
"For_each_active_user_referred_you_earn_10_extra_recurring_creations_per_day": "アクティブユーザーを1人紹介するごとに、1日あたり10回の追加報酬を得ることができます。",
"for_free_79_99": "を無料(79.99ドル)で提供します。",
"for_individuals_and_businesses_who_create_content_regularly": "定期的にコンテンツを作成する個人・法人向け。",
"for_power_users_who_work_with_content_all_day_every_day": "毎日、一日中コンテンツを扱うパワーユーザーのために。",
"Forgot_Password": "パスワードを忘れた方はこちら",
"Formal": "正式には",
"found_some_interesting_pages_analyzing": "興味深いページがありました。",
"Friendly": "親しみやすい",
"from_an_early_age_he_enjoyed_learning_the_subject_and_solving": ".幼い頃から、学ぶことを楽しみ、解くことを楽しんだ",
"Full_Name": "フルネーム",
"Funny": "ファニー",
"General": "一般",
"General Email": "一般メール",
"General_Email": "一般メール",
"Generate for Google Ads.": "Google Adsのために生成する。",
"Generate a blog outline.": "ブログのアウトラインを生成する。",
"Generate a blog section.": "ブログコーナーを生成する。",
"Generate a blog title.": "ブログタイトルを生成する。",
"Generate a conclusion for an article.": "記事の結論を生成する。",
"Generate a description for a Youtube video.": "Youtubeの動画の説明文を生成する。",
"Generate a for a Youtube video.": "Youtubeの動画用に生成する。",
"Generate a paragraph.": "段落を生成する。",
"Generate a Youtube title.": "Youtubeのタイトルを生成する。",
"Generate an ad copy.": "広告コピーを作成する。",
"Generate an ad tagline.": "広告のキャッチフレーズを生成する",
"Generate an email first line.": "メールの1行目を生成する。",
"Generate an email subject line.": "メールの件名を作成する。",
"Generate an Instagram caption.": "インスタグラムのキャプションを生成する。",
"Generate answers for bullet point questions.": "箇条書きの質問に対する回答を作成する。",
"Generate answers for questions.": "質問に対する回答を生成する。",
"Generate answers for Quora questions.": "Quoraの質問に対する回答を生成する。",
"Generate app and SMS notifications.": "アプリやSMSの通知を生成する。",
"Generate benefits for your product or service.": "商品・サービスのベネフィットを生み出す。",
"Generate bios for companies.": "企業の経歴を作成する。",
"Generate bios for people.": "人物の経歴を作成する。",
"Generate call to actions for your product or service.": "商品・サービスのコールトゥアクションを生成する。",
"Generate captions for a youtube video.": "Youtubeの動画にキャプションを生成する。",
"Generate descriptions for Google Ads.": "Google Ads用の説明文を作成する。",
"Generate Go": "ジェネレートゴー",
"Generate headlines for Linkedin Ads.": "Linkedin Ads用のヘッドラインを生成する。",
"Generate headlines for your landing page.": "ランディングページの見出しを生成する。",
"Generate hooks for Tiktok videos.": "Tiktok動画のフックを生成する。",
"Generate hooks for Youtube videos.": "Youtube動画のフックを生成する。",
"Generate ideas for a blog post.": "ブログ記事のアイデアを生み出す。",
"Generate intros for a blog post.": "ブログ記事のイントロを生成する。",
"Generate intros for Youtube videos.": "Youtube動画のイントロを生成する。",
"Generate Java": "Javaを生成する",
"Generate Javascript": "Javascriptを生成する",
"Generate meta tags for your content.": "コンテンツ用のメタタグを生成する。",
"Generate mission statements for companies.": "企業のミッションステートメントを作成する。",
"Generate outlines for a blog post.": "ブログ記事のアウトラインを作成する。",
"Generate outlines for Youtube videos.": "Youtube動画のアウトラインを生成する。",
"Generate PHP": "PHPを生成する",
"Generate pros and cons from a paragraph.": "段落から賛否両論を生成する。",
"Generate Python": "Pythonを生成する",
"Generate questions from a paragraph.": "パラグラフから質問を生成する。",
"Generate Regex": "Regex の生成",
"Generate scripts for Tiktok videos.": "Tiktokの動画用スクリプトを生成する。",
"Generate short press releases.": "短いプレスリリースを作成する。",
"Generate SQL": "SQLを生成する",
"Generate stories.": "ストーリーを生成する。",
"Generate subject lines for emails.": "メールの件名を生成する。",
"Generate titles for Google Ads.": "Google広告のタイトルを生成する。",
"Generate titles for Youtube videos.": "Youtube動画のタイトルを生成する。",
"Generate vision statements for companies.": "企業のビジョンステートメントを作成する。",
"Generate_a_blog_outline": "ブログのアウトラインを生成する。",
"Generate_a_blog_section": "ブログコーナーを生成する。",
"Generate_a_blog_title": "ブログタイトルを生成する。",
"Generate_a_description_for_a_Youtube_video": "Youtubeの動画の説明文を生成する。",
"Generate_an_API_key_to_start_using_the_TextCortex_Enterprise_API": "TextCortex Enterprise APIの利用を開始するためにAPIキーを生成します。",
"Generate_an_email_first_line": "メールの1行目を生成する。",
"Generate_an_email_subject_line": "メールの件名を作成する。",
"Generate_API_key": "APIキーを生成する",
"generate_blog_posts_product_descriptions_ad_copies_and_more": "ブログ記事、商品説明、広告コピーなどの生成",
"Generate_captions_for_a_youtube_video": "Youtubeの動画にキャプションを生成する。",
"generate_code": "コードを生成する",
"Generic Ad": "ジェネリック広告",
"Generic_Ad": "ジェネリック広告",
"Gentle": "優しい",
"get_5_daily_creations_for_each_platform_by_writing_a_review_and_then_uploading_a_screenshot_here": "レビューを書いてからここにスクリーンショットをアップロードすることで、各プラットフォームのクリエイションを毎日5つずつプレゼント。",
"get_5_extra_daily_creations_and_learn_how_to_use_ai_tools_to_your_advantage": "毎日5つの追加クリエイティブを手に入れ、AIツールの活用法を学ぶ",
"get_5_extra_daily_creations_by_finishing_our_cca": "(CCA)を終了することで、毎日5つの追加クリエイションを得ることができます。",
"get_5_extra_daily_creations_by_joining_our_discord_community_introduce_yourself_and_upload_a_screenshot": "Discordのコミュニティに参加し、#introduce-yourselfとスクリーンショットをアップロードすると、毎日5つの追加クリエーションがもらえます。",
"Get_14-days_Business_for_free": "14日間無料でご利用いただけます。",
"get_": "40%オフで購入することができます。",
"get_a_free_one_month_business_subscription_for_your_video_testimonial": "ビデオテスティモニアルの1ヶ月ビジネス購読を無料にします。",
"Get_a_trial_of_TextCortex_most_popular_plan_for_a_Review_on_G2": "TextCortexの最も人気のあるプランのトライアルをG2でのレビューで入手する。",
"Get_Business": "ゲットビジネス",
"Get_more_API_credits": "APIクレジットを増やす",
"Get_more_API_credits_and_continue_creating": "APIクレジットを増やして、創作活動を続けてください。",
"Get_Started_With_Personas": "ペルソナで始める",
"get_textcortex_unlimited_for_14_days_by_just_referring_your_friends": "お友達を紹介するだけで、TextCortexが14日間無制限で使えるようになります。",
"Get_unlimited": "無制限で入手可能",
"get_your_writing_style_results": "自分の書き方の結果を出す",
"Github": "Github",
"Give_Review": "レビューを書く",
"Go_to_dashboard": "ダッシュボードに移動する",
"go_unlimited": "ゴーアンリミテッド",
"go_unlimited_with_our_plans": "無制限で使えるプラン",
"Google Ad Descriptions": "Google広告の説明文",
"Google Ad Titles": "Google広告のタイトル",
"Google_Drive": "Googleドライブ",
"Google_Search": "Google検索",
"graduate_from_the_cortex_creator_academy": "コルテックスクリエイターアカデミー卒業",
"Great!": "素晴らしい!",
"Gul_D": "グル・D。",
"has_always_been_passionate_about": "は、常に情熱を注いできました。",
"he_loved_the_challenge_of_finding_solutions_to_difficult_problems_and_was_determined_to_become_an_expert_in_his_field_as_a": "彼は、困難な問題の解決策を見つけるという挑戦を愛し、その分野の専門家になることを決意していました。",
"he_loved_the_challenge_of_finding_solutions_to_difficult_problems_and_was_determined_to_become_an_expert_in_his_field_as_a-0": ".彼は、困難な問題の解決策を見つけるという挑戦を愛し、その分野のエキスパートになることを決意していました。",
"hello_there_i_am": "こんにちは、私は",
"Hello_there_I_am_Zeno_the_assistant": "こんにちは、アシスタントのゼノです。本日はどのようなご用件でしょうか?",
"Help_and_Support": "ヘルプ&サポート",
"Help_center": "ヘルプセンター",
"Hemingwai, the copywriter": "コピーライターのヘミングワイさん",
"Holy_cow_this_is_a_game_changer_I_write_incredible_amount_of_emails_targeting_CEOs_and_TextCortex_is_helping_me_so_much": "\"これは、ゲームチェンジャーです!私はCEOをターゲットに信じられないほどの量の電子メールを書いていますが、TextCortexはとても役に立っています\"",
"Hook for the video": "映像用フック",
"How can I best explain gaps in my employment history?": "職歴のギャップはどのように説明すればよいですか?",
"How can I improve my cold calling skills?": "コールドコールのスキルを向上させるにはどうしたらいいのでしょうか?",
"How can I maintain a positive mindset?": "ポジティブなマインドを維持するにはどうしたらいいのでしょうか?",
"How can I make a strong first impression during an interview?": "面接で強い第一印象を与えるにはどうしたらいいのでしょうか?",
"How can I set boundaries in my relationships without pushing people away?": "人を遠ざけることなく、人間関係に境界線を設けるにはどうしたらいいのでしょうか?",
"How do I create a product roadmap?": "製品ロードマップはどのように作成すればよいのでしょうか?",
"How do I deal with negative thoughts or self-talk?": "ネガティブな考えやセルフトークにどう対処すればいいのか?",
"How do I maintain a consistent brand voice throughout my copy?": "コピーを通して一貫したブランドボイスを維持するにはどうしたらよいでしょうか?",
"How do I resolve conflicts with my family members?": "家族との衝突を解決するには?",
"How do I say 'hello' in Spanish?": "スペイン語で「こんにちは」はどう言うのですか?",
"How do I write a compelling headline for my article?": "記事の見出しを魅力的に書くにはどうしたらいいのでしょうか?",
"How do I write a for loop in Python?": "Pythonでforループを書くにはどうしたらいいですか?",
"How do I write better prompts for GPT models?": "GPTモデルでより良いプロンプトを書くにはどうしたらいいでしょうか?",
"How does the greenhouse effect work?": "温室効果の仕組みは?",
"How should I handle salary negotiations during an interview?": "面接時の給与交渉はどのように対応すればよいのでしょうか?",
"how_can_i_help_you_today": "今日はどういったご用件でしょうか?",
"How_did_you_hear_about_TextCortex": "TextCortexをどのようにお知りになりましたか?",
"How_does_Web_Search_work?": "ウェブ検索はどのような仕組みになっているのですか?",
"Hyper_charge_your_writing_wherever_you_need_it_in_your_browser.": "ブラウザ上で必要な場所で、あなたの文章をハイパーチャージ。",
"if_you_keep_encountering_an_issue_please": "もし、問題が発生し続けるようであれば、お手数ですが",
"if_you_want_to_create_a_private_persona_that_is_only_available_for_your_use_please_upgrade_your_account": "自分だけが使えるプライベートなペルソナを作りたい場合は、アカウントをアップグレードしてください。",
"Import_Dropbox_Paper_documents_to_access_any_information_you_need_out_of_them_through_Zeno": "Dropbox Paperのドキュメントをインポートして、Zenoから必要な情報にアクセスすることができます。",
"Import_PDF_files_to_work_on_and_access_any_information_you_need_out_of_them_through_Zeno": "PDFファイルを読み込んで作業し、Zenoを通して必要な情報にアクセスすることができます。",
"Import_Word_files_to_get_any_information_you_need_out_of_them_through_Zeno": "Wordファイルをインポートして、Zenoを通して必要な情報を引き出すことができます。",
"Import_your_Notion_documents_to_access_any_information_you_need_out_of_them_through_Zeno": "Notionのドキュメントをインポートして、Zenoで必要な情報にアクセスすることができます。",
"Impressive_tool_Love_the_rewrite_feature_Easy_to_use_Great_support_from_the_team": "印象的なツールです!リライト機能が大好きです。使いやすい。チームからの素晴らしいサポート。チームTextCortexに感謝します!",
"improve_your_in_app_experience_and_integrate_the_ai_writing_power_into_every_text_box_of_your_browser_with_our_chrome_extension": "アプリ内体験を向上させ、クローム拡張機能でブラウザのすべてのテキストボックスにAIライティングパワーを統合します。",
"In_case_you_want_TextCortex_unlimited_visit_our": "TextCortexの無制限版をご希望の場合は、弊社までお問い合わせください。",
"in_our_reward_center": "私たちの報酬センターで",
"in_your_friend_circle": "ともだちづきあいのなかで",
"Ines, the interview coach": "インタビューコーチのイネスさん",
"Information about the company": "会社に関する情報",
"Information about the person": "本人に関する情報",
"Information to be included in the answer": "回答に含めるべき情報",
"Information to be included in the press release": "プレスリリースに記載する情報",
"Initially_I_thought_it_was_like_the_others_tested_Jasper_CopyAI_GaryAi_etc": "当初は、Jasper、CopyAI、GaryAiなど、他の人がテストしたようなものだと思っていました。しかし、Dominikが説明し、テストしている様子を見ると、そのアプローチがはるかに優れていることがよくわかります...",
"initially_i_thought_it_was_like_the_others_tested_jasper_copyai_garyai_etc_but_the_way_dominik_explained_it_and_testing_things_one_can_truly_see_the_approach_is_much_better": "当初は、Jasper、CopyAI、GaryAiなどの他のテストと同じだと考えていました。しかし、Dominikが説明し、テストしてみると、そのアプローチがはるかに優れていることがよくわかる...。",
"Instagram Caption": "インスタグラムのキャプション",
"Instagram_Caption": "インスタグラムのキャプション",
"Instagram_Descriptions": "インスタグラムの説明文",
"Install": "インストール",
"install_extension": "エクステンションのインストール",
"Install_Now": "今すぐインストール",
"Instruct CodeCortex to write Go code": "CodeCortexにGoのコードを書くように指示する。",
"Instruct CodeCortex to write Java code": "CodeCortexにJavaのコードを書くように指示する。",
"Instruct CodeCortex to write Javascript code": "CodeCortexにJavascriptのコードを記述するように指示する。",
"Instruct CodeCortex to write PHP code": "CodeCortexにPHPコードを記述するように指示する。",
"Instruct CodeCortex to write Python code": "CodeCortexにPythonのコードを書くように指示する。",
"Instruct CodeCortex to write Regex in Python": "PythonでRegexを書くためにCodeCortexを指示する。",
"Instruct CodeCortex to write SQL Queries": "CodeCortexにSQLクエリを記述するように指示する。",
"integrated_apps": "統合アプリ",
"Internet": "インターネット",
"introduce_yourself_in_discord": "Discordで自己紹介をする",
"Introduction for the blog": "ブログのための紹介",
"Introduction of the blog": "ブログの紹介",
"invite_friends": "友人を招待する",
"Invite_Friends": "友人を招待する",
"invite_friends_and_receive_10_extra_daily_creations_per_friend_actively_using_text_cortex_or_write_us_a_review_or_post_something_in_our_communities_each_action_will_give_you_extra_daily_creations_per_day": "友達を招待すると、text.cortexを積極的に使用している友達1人につき毎日10個の追加クリエーションを受け取ることができます!また、レビューを書いたり、コミュニティに何か投稿してください。それぞれのアクションで、1日あたりのデイリークリエイションが追加されます。",
"Invite_Friends_get_free_creations": "友達を招待して、無料でクリエイションを手に入れる",
"invite_friends_to_get_10_extra_daily_creations_and_create_high_quality_copies_together": "友達を誘って、毎日10枚追加して、一緒に高画質なコピーを作りましょう。",
"Invite_members": "会員を招待する",
"invite_more_friends_to_earn_extra_daily_creations": "より多くの友人を招待して、毎日のクリエーションを追加で獲得することができます。",
"Invite_sent_successfully_You_will_Earn_Creations_when_the_user_signs_up": "招待状が正常に送信されました!ユーザーがサインアップすると、クリエーションが獲得できます!",
"Is_there_a_way_to_rate_this_with_10-20-30_full_stars_I_cannot_believe_how_good_this_is_It_is_a_game_changer_for_my_work_environment": "\"10-20-30の満点星で評価する方法はないでしょうか?私はこれがどれほど優れているのか信じられません。私の仕事環境を一変させるものです。\"",
"Its_like_DeepL_but_for_writing_and_verbal_content_creation_Seamless_setup_intuitive_UI_and_high_quality_outputs_Love_it": "\"DeepL \"のようなものですが、文章や言葉のコンテンツ制作のためのものです!シームレスなセットアップ、直感的なUI、そして高品質なアウトプット。とても気に入っています!\"",
"Its_like_DeepL_but_for_writing_and_verbal_content_creation_Seamless_setup_intuitive_UI_and_high_quality_outputs_Love_it_2": "\"DeepL \"のようなものですが、文章や言葉のコンテンツ制作のためのものです!シームレスなセットアップ、直感的なUI、そして高品質なアウトプット。とても気に入っています!\"",
"Ive_been_stumped_trying_to_figure_out_writing_automated_email_sequences_I_am_dyslexic_and_I_hate_writing_TextCortex_is_a_life_saver_for_my_3_small_businesses": "\"私は、自動化された電子メールシーケンスを書くことを理解しようとして、つまずいたことがあります。私は失読症で、文章を書くのが嫌いなんです。TextCortexは、私の3つの小さなビジネスのためのライフセーバーです。\"",
"Javier_Chico": "ハビエル・チコ",
"Jeff_Barnette": "ジェフ・バーネット",
"Join_100.000s_of_marketers_students_professionals_creating_content_in_seconds": "10万人のマーケター、学生、プロフェッショナルが、数秒でコンテンツを作成するのに参加しています。",
"Join_Community": "コミュニティへの参加",
"Join_Community_of_Experts": "専門家のコミュニティに参加する",
"Join_Discord": "Discordに参加する",
"join_our_webinar_beginners_belt_copywriting_excellence": "ウェブセミナー「ビギナーズベルト~コピーライティングの極意~」にご参加ください。",
"Join_the_writing_revolution": "執筆革命に参加しよう。",
"join_webinar": "ウェビナーに参加する",
"Kai_K": "カイ・Kさん",
"Keyword for the email": "メールに使用するキーワード",
"Keywords for the blog": "ブログのキーワード",
"Keywords for the email": "メールに記載するキーワード",
"Keywords for the video": "映像のキーワード",
"Keywords for the video...": "映像のキーワード",
"Keywords to include in the blog post": "ブログ記事に含めるべきキーワード",
"Keywords to include in the paraphrase": "パラフレーズに含めるべきキーワード",
"Keywords to include in the post": "投稿に含めるべきキーワード",
"Keywords to include in the product": "製品に含めるべきキーワード",
"Keywords to include in the tweet": "ツイートに含めるべきキーワード",
"Landing Page Headlines": "ランディングページのヘッドライン",
"Language": "言語",
"large_heading": "大きなヘディング",
"Last_Name": "ラストネーム",
"later_on": "のちのち",
"Learn_how_you_can_make_the_most_of_custom_personas_for_different_situations": "状況に応じてカスタムペルソナを活用する方法をご紹介します。",
"Learn_more": "もっと詳しく",
"Learn_new_tips_and_tricks_to_from_industry_experts._Ask_questions_and_become_a_better_writer_together_with_the_TextCortex_Community.": "業界のエキスパートから新しいヒントやトリックを学ぶことができます。TextCortexコミュニティで質問して、より良いライターになりましょう。",
"Let's rewrite_your_text_together": "一緒に文章を書き換えてみましょう...。",
"Let's_rewrite_your_text_together": "一緒に文章を書き換えてみましょう...。",
"Let's_rewrite_your_text_together....": "一緒に文章を書き換えてみましょう...。",
"Let's_start_writing_here...": "ここから書き始めましょう...。",
"Lets_get_your_AI_talking_about_what_you_know": "AIが知っていることを話してもらおう。",
"lets_rewrite_your_text_start_by_writing_or_paste_something_here_and_click_on_the_rephrase_button": "あなたの文章を書き換えてみましょう。まずはここに何かを書くか貼り付けて、リフレーズボタンをクリックしてください。",
"Linkedin Ad Headlines": "Linkedin Ad Headlines",
"Linkedin Ads": "Linkedin Ads(リンクトイン広告",
"LinkedIn Post": "LinkedInポスト",
"Linkedin_Ads": "Linkedin Ads(リンクトイン広告",
"LinkedIn_Post": "LinkedInポスト",
"Linus, the programmer": "プログラマーであるライナス",
"Lisa, the language tandem partner": "語学タンデムパートナーのリサさん",
"loading_history": "読み込み履歴",
"Loading_your_content...": "コンテンツを読み込む...",
"Login": "ログイン",
"Login_To_Generate_Amazing_Text": "ログインして驚きのテキストを生成する",
"Login_with_Discord": "Discordでログインする",
"Login_with_Google": "Googleでログイン",
"Make_this_persona_public": "このペルソナを公開する",
"Marketing_Copies": "マーケティングコピー",
"Marketing_Manager": "マーケティングマネージャー",
"mathematics": "数学",
"mathematics_professor": "数学の教授。",
"May": "5月",
"Meta Tags": "メタタグ",
"Microsoft_OneDrive": "Microsoft OneDrive",
"Microsoft_Word": "マイクロソフトワード",
"Model": "モデル",
"Molly, the motivational coach": "モティベーションコーチのモリー",
"Money_back_guarantee_for_5_days": "5日間返金保証",
"month": "月",
"monthly": "月次",
"My_capabilities_you_need_to_be_aware_of_are": "意識してほしい私の能力は",
"My_limitations_you_need_to_be_aware_of_are": "意識してほしい私の限界は",
"Name": "名称",
"Name of the company": "会社名",
"Name of the person": "氏名(ふりがな",
"Name of the product": "製品名",
"Name of the product or service": "製品・サービスの名称",
"New_Chat": "新着チャット",
"New_Doc": "ニュードック",
"next": "次のページ",
"no": "ノー",
"no_chat_history": "チャット履歴が残らない",
"No_credit_card_required": "クレジットカードは不要です",
"No_I_dont_want_unlimited_for_free": "いや、無料で無制限はいらない。",
"No_professional_experiences_required": "職業経験不問",
"noreferrer_noopener": "noreferrer noopener",
"Normal": "ノーマル",
"notify_me_when_implemented": "実装されたらお知らせします",
"Notion": "ノーティオン",
"numbered_list": "番号付きリスト",
"One_AI_Tool_To_Write_All_Your_Content.": "すべてのコンテンツを1つのAIツールで書ける",
"oops_something_went_wrong_can_you_hit_create_again": "おっと!何かが間違っていました。もう一度、作成を押していただけますか?",
"Open": "オープン",
"Open_your_email": "メールを開く",
"Open_Zeno_Assistant": "ゼノアシスタントを開く",
"or": "または",
"or_simply_replay_this_tour_in_the_settings": "または、このツアーをセッティングで再生するだけです。",
"organise_and_save_your_work_in_documents_and_share_with_your_team_to_create_together": "作品を整理してドキュメントに保存し、チームで共有して一緒に制作することができます。",
"Original sentence": "原文ママ",
"Original sentence or paragraph": "オリジナルの文章または段落",
"Original text": "オリジナルテキスト",
"our_20_templates_guide_you_through_creation": "20種類以上のテンプレートで作成が可能",
"our_ai_co_creators_take_your_input_and_start_creating_from_your_statement_as_a_main_source_of_information_learn_more_on_how_our_ai_thinks_and_works_in_our_help_center": "私たちのAIコ・クリエーターは、あなたの意見を取り入れ、あなたの発言を主な情報源として制作を開始します。AIがどのように考え、どのように働くかについては、ヘルプセンターで詳しく説明しています。",
"our_ai_text_editor_and_our_20_creation_templates_are_ready_to_co_create_along_your_needs_if_you_need_something_specific_use_the_suggestion_form": "AIテキストエディタ」と20種類以上の作成テンプレートで、あなたのニーズに沿った共同制作が可能です。具体的なご要望がある場合は、提案フォームをご利用ください。",
"output_text_length": "出力テキスト長",
"Outreach_Emails": "アウトリーチメール",
"Paragraph from which the questions are to be extracted": "質問事項の抜粋元となるパラグラフ",
"Paragraph Writer": "パラグラフライター",
"Paraphrase": "パラフレーズ",
"Paraphrase product .": "パラフレーズ製品.",
"Paraphrase Product Descriptions": "商品説明のパラフレーズ",
"Paraphrase product descriptions.": "商品説明の言い換えをする",
"Paraphrase the given sentence with added keywords": "与えられた文章にキーワードを加えて言い換える",
"Paraphrase_the_given_sentence_with_added_keywords": "与えられた文章にキーワードを加えて言い換える",
"paraphrasing": "パラフレーズ",
"paraphrasing_completed": "パラフレーズ完成!",
"Passive To Active Voice": "受動態から能動態へ",
"Passive_To_Active_Voice": "受動態から能動態へ",
"Password": "パスワード",
"Paste received email here": "受信したメールをここに貼り付ける",
"paste_or_type_your_writing_example_here_and_keep_it_around_2000_3000_words": "ここに文章例を貼り付けるかタイプして、2000~3000字程度にまとめてください。",
"Pau_Gaillard_Lanao": "パウ・ガイヤール・ラナオ",
"PDF_Import": "PDFインポート",
"Person_you_are_trying_to_invite_has_already_registered": "招待しようとした人はすでに登録されています。",
"Persona": "ペルソナ",
"persona_background": "ペルソナの背景",
"persona_description": "ペルソナ説明",
"Persona_List": "ペルソナ_リスト",
"persona_name": "ペルソナ名",
"Personal Bios": "パーソナル・バイオグラフィー",
"Personal_Information": "個人情報",
"Phil, the product manager": "プロダクトマネージャーのフィル",
"please_accept_the_terms_and_conditions": "規約に同意してください",
"Please_choose_one_option": "1つだけお選びください",
"Please_enter_your_email_address_to_get_password_reset_instructions": "パスワードの再設定方法をご案内しますので、メールアドレスを入力してください。",
"Please_enter_your_full_name. First_and_last_names_should_be_separated_by_a_space": "フルネームを入力してください。姓と名はスペースで区切ってください。",
"Please_specify_your_problem": "あなたの問題を具体的に教えてください。",
"please_wait": "お待ちください...",
"prev": "プレヴ",
"Previous Invites": "前へ_招待状",
"Previous_Invites": "これまでの招待状",
"Pricing_plan": "料金プラン",
"Private_link": "プライベートリンク",
"pro": "プロ",
"Product Description": "製品概要",
"Product Description With Features": "製品概要 機能付き",
"Product for the caption": "キャプションに対応した製品",
"Product_Description": "製品概要",
"Product_Description_With_Features": "製品概要 機能付き",
"Product_Descriptions": "商品説明",
"Professional": "プロフェッショナル",
"Promotion for the product or service": "製品・サービスのプロモーション",
"Pros Cons From Paragraph": "パラグラフから見る長所短所",
"provide_a_background_for_your_persona_this_will_help_your_ai_to_impersonate_the_character_you_want_to_create": "ペルソナの背景を用意する。これは、AIがあなたが作りたいキャラクターになりきるための助けになります。",
"public_personas": "パブリックペルソナ",
"Purpose of the email": "メールの目的",
"Question Answer": "質問回答",
"Question for which the answer is to be written": "解答を書くべき問題",
"Questions From Paragraph": "パラグラフからの質問",
"Quora Answers": "クオラアンサー",
"quote": "引用元",
"Reading_Ease": "リーディングイーズ",
"Rebecca, the relationship coach": "リレーションシップコーチのレベッカさん",
"Recipient of the email": "メールの受信者",
"refer_friends_for_more_creations_and_premium_feature_unlocks": "友達を紹介すると、より多くの作品やプレミアム機能がアンロックされます!",
"refer_your_friends": "友達を紹介する",
"refer_your_friends_and_get_unlimited_for_free": "お友達を紹介すると、無料で無制限に利用できます。",
"Remaining_credits": "残存単位数",
"Remaining_Credits": "残存単位数",
"Remember_me": "リメンバーミー",
"remember_to_be_instructive": "教訓的であることを忘れない",
"Remember_what_you_said": "あなたが言ったことを思い出してください",
"remove_default_persona": "デフォルトのペルソナを削除する",
"Requests": "要望事項",
"Respectful": "尊敬に値する",
"Respond to customer support emails with the help of TextCortex": "TextCortexを活用したカスタマーサポートメールへの対応",
"Respond_to_customer_support_emails_with_the_help_of_TextCortex": "TextCortexを活用したカスタマーサポートメールへの対応",
"Retrieve_your_account": "自分のアカウントを検索する",
"review_us_on_g2_capterra_trustpilot_or_trustradius": "G2、Capterra、TrustPilot、TrustRadiusで弊社を評価してください。",
"Reward": "ご褒美",
"Reward_Center": "リワードセンター",
"Reward_Center_Quests": "リワードセンタークエスト",
"Rewrite": "リライト",
"Rewrite the given sentence in a different way while keeping the meaning same": "与えられた文章を、意味を変えずに別の表現に書き換える。",
"Rewrite the text to change its tone.": "本文を書き換えて、トーンを変える。",
"Rewrite the text to make it more active.": "よりアクティブになるように文章を書き換える。",
"Rewrite the text to make it more creative": "文章を書き換えて工夫する。",
"Rewrite the text to make it more creative.": "文章を書き換えて工夫する。",
"Rewrite the text to make it more fluent.": "より流暢な文章になるように書き換える。",
"Rewrite With Keywords": "キーワードでリライトする",
"Rewrite_the_given_sentence_in_a_different_way_while_keeping_the_meaning_same": "与えられた文章を、意味を変えずに別の表現に書き換える。",
"Rewrite_the_text_to_change_its_tone": "本文を書き換えて、トーンを変える。",
"Rewrite_the_text_to_make_it_more_active": "よりアクティブになるように文章を書き換える。",
"Rewrite_the_text_to_make_it_more_fluent": "より流暢な文章になるように書き換える。",
"Rewrite_With_Keywords": "キーワードでリライトする",
"Sally, the sales manager": "営業担当のサリーさん",
"Save": "セーブ",
"search": "検索",
"Search term": "検索語",
"Search term for the video": "映像の検索キーワード",
"search_templates": "検索テンプレート...",
"searching_the_web_for_finding_good_source_of_knowledge": "ウェブで検索して、良い知識のソースを見つける...",
"Section of the blog": "ブログのセクション",
"Select_a_template": "テンプレートを選択する",
"send_a_video": "動画を送信する",
"send_and_post_a_video_testimonial": "ビデオテスティモニアルの送信と投稿",
"Send_code_again": "再度コードを送信する",
"Send_Invite": "招待状を送る",
"Sender of the email": "メールの送信者",
"Sentence_Length": "センテンスの長さ",
"set_as_default": "デフォルトで設定する",
"Settings": "設定方法",
"share": "シェア",
"Shopify_Description": "Shopifyの説明",
"Short Press Release": "ショートプレスリリース",
"show_more": "もっと見る",
"Sign_in": "サインイン",
"Sign_in_now": "今すぐサインイン",
"Sign_in_to_start_generating_amazing_Content_If_you_do_not_have_an_account_you_can_register_at_the_button_below": "サインインして、素晴らしいContentの生成を開始します。アカウントをお持ちでない方は、下のボタンから登録できます。",
"Sign_up": "登録する",
"Sign_up_now": "今すぐ登録する",
"Sign_Up_To_Generate_Amazing_Text": "登録すると、驚くようなテキストが生成される",
"Sign_up_with_Discord": "Discordでサインアップする",
"Sign_up_with_Email": "Eメールで登録する",
"Sign_up_with_Google": "Googleで登録する",
"Simple": "シンプル",
"simplification_completed": "簡略化完了!",
"Simplify": "シンプリファイ",
"Simplify given text by breaking it down into shorter, more concise sentences that uses simpler words.": "与えられた文章を、より短い、より簡潔な文章に分解し、より簡単な単語を使用することで、簡略化する。",
"Simplify_given_text_by_breaking_it_down_into_shorter_more_concise_sentences_that_uses_simpler_words": "与えられた文章を、より短い、より簡潔な文章に分解し、より簡単な単語を使用することで、簡略化する。",
"simplifying": "簡略化",
"Small_Business_Owner": "スモールビジネスオーナー",
"small_heading": "スモールヘッディング",
"Something_went_wrong": "何かが間違っていた!",
"Sophos": "ソフォス",
"sort_by_a_z": "A-Zで並べる",
"SQL": "エスキュービズム",
"start_academy": "スタートアカデミー",
"start_creating": "作成開始",
"Start_creating_email_body": "メール本文の作成開始 ....",
"Start_creating_email_body....": "メール本文の作成開始 ....",
"Start_creating_product_descriptions_that_convert.": "コンバージョンにつながる商品説明文の作成に着手する。",
"Start_creating_subject_lines": "件名の作成を開始する・・・。",
"Start_creating_subject_lines....": "件名の作成を開始する・・・。",
"Start_creating_titles_that_attract_visitors.": "訪問者を惹きつけるタイトルの作成に着手する。",
"start_writing_from_scratch": "ゼロから書き始める",
"Start_writing_with_AI_today": "今日からAIを使ったライティングを始めよう",
"Start_writing_with_TextCortex": "TextCortexで書き始める...",
"Status": "ステータス",
"Stories": "ストーリー",
"Student": "スチューデント",
"Subject line of the email": "メールの件名",
"Subject_Line": "件名",
"Subscription_plan": "サブスクリプションプラン",
"Subscription_Plan": "サブスクリプションプラン",
"Suggest_A_Plugin": "プラグインを提案する",
"summarization_completed": "サマライズ完了しました!",
"Summarize": "まとめる",
"Summarize a passage into a few sentences.": "一節を数センテンスにまとめる。",
"Summarize_a_passage_into_a_few_sentences": "文章を数センテンスにまとめる。",
"summarizing": "まとめ",
"Summary of the email": "メールの概要",
"Summary of the email, a few bullet points": "メールの概要、数点の箇条書き",
"Target audience for the caption": "キャプションの対象者",
"Target audience for the email": "メールの対象者",
"Target audience for the video...": "映像のターゲット層...",
"Target keywords for the ad": "広告のターゲットとなるキーワード",
"Target keywords for the press release": "プレスリリースのターゲットキーワード",
"tell_me_what_you_want_to_do": "やりたいことを教えてください",
"Tell_us_about_yourself": "ご自身についてお聞かせください",
"Telling_us_about_yourself_improves_your_overall_experience_by_29": "自分のことを話すと、全体的な体験が29%向上します。",
"Templates": "テンプレート",
"terms_accepted": "タームズアセプタド",
"text_cortex_superpowers_on_over_1000_webpages_and_textboxes": "text.cortexは1000以上のウェブページとテキストボックスでスーパーパワーを発揮します。",
"Text_input": "テキスト入力",
"Text_Sample_#1": "テキストサンプル#1",
"Text_Sample_#2": "テキストサンプル#2",
"Text_Sample_#3": "テキストサンプル#3",
"Text_Samples": "テキストサンプル",
"textcortex_ai": "テキストコルテックスAI",
"TextCortex_Extension": "TextCortex エクステンション",
"TextCortex_helps_me_a_lot_with_my_school_projects_requiring_me_to_write_long_essays_I_can_easily_create_long-form_essay_bodies_from_my_bullet_point_ideas": "\"TextCortexは、長文のエッセイを書かなければならない学校のプロジェクトでとても役立っています。箇条書きのアイデアから長文のエッセイを簡単に作ることができるんです。\"",
"TextCortex_helps_you_create_concise&unique_emails_that_engages_with_readers.": "TextCortexは、読者を惹きつける、簡潔でユニークなメールの作成を支援します。",
"TextInput": "テキスト入力",
"The sentence or paragraph to complete": "完成させるべき文章または段落",
"the_creator_is_your_workspace": "クリエイターはあなたのワークスペース",
"The_sentence_or_paragraph_to_complete": "完成させるべき文章または段落",
"Theresa, the therapist": "セラピストのテレサさん",
"This_action_cannot_be_undone.": "この操作は元に戻せません。この操作により、あなたのアカウントは永久に削除されます。",
"this_field_is_used_for_giving_a_brief_description_about_your_persona_it_will_not_affect_the_text_generation": "このフィールドは、ペルソナに関する簡単な説明を与えるために使用されます。テキスト生成には影響しません。",
"This_is_a_required_field": "これは必須項目です",
"This_tool_is_amazing_and_makes_overcoming_writers_block_a_breeze": "このツールは素晴らしく、作家のブロックを克服するのは簡単です。(中略)この拡張機能は、あなたの作業時間とフラストレーションを軽減してくれるかもしれないので、試してみる価値があります。",
"Tiktok Video Hook": "Tiktokビデオフック",
"Tiktok Video Script": "Tiktokビデオスクリプト",
"title": "タイトル",
"Title of the blog": "ブログのタイトル",
"Title of the blog post": "ブログ記事のタイトル",
"Title of the video": "映像のタイトル",
"Title_Generator": "タイトルジェネレーター",
"to_rewrite_more_than_1000_words": "を1000字以上リライトする",
"Tokens_generated": "トークンの生成",
"Tone Changer": "トーンチェンジャー",
"Tone of the bio": "バイオのトーン",
"Tone of the hook": "フックの音色",
"Tone of the intro": "イントロのトーン",
"Tone of the outline": "アウトラインのトーン",
"Tone of the press release": "プレスリリースのトーン",
"Tone of the story": "ストーリーのトーン",
"Tone of the title": "タイトルのトーン",
"Tone to rewrite in": "でリライトするトーン",
"Tone_Change": "トーンチェンジ",
"tone_changed": "トーンチェンジしました!",
"Tone_Changer": "トーンチェンジャー",
"Topic of the blog": "ブログのトピック",
"Topic of the blog post": "ブログ記事のトピック",
"Topic of the paragraph": "パラグラフのトピック",
"Topic of the tweet": "ツイートに関する話題",
"Topic, target audience, etc. of the video": "映像のテーマ、対象者等",
"Total_words_created": "総作成語数",
"Trusted_by_100.000s_of_users_from": "の100,000人のユーザーから信頼されています。",
"try_these_example_prompts_below": "以下、プロンプトの例を挙げてみます。",
"Tweet Generator": "ツイートジェネレーター",
"Tweet_Generator": "ツイートジェネレーター",
"Type": "タイプ",
"unlimited_creations": "無限に広がるクリエイション",
"unlimited_creations_at": "で無制限に創作できる。",
"unlocks_global": "アンロック・グローバル",
"Untitled": "無題",
"up_to_200_word_creations_at_a_time": "一度に最大200個の単語を作成することができます。",
"up_to_300_words_creations_at_a_time": "一度に300文字までの創作が可能",
"Upgrade": "アップグレード",
"Upgrade_for_unlimited_creations_and_more_features": "アップグレードして、無制限のクリエーションとより多くの機能を手に入れましょう。",
"upgrade_now": "今すぐアップグレードする",
"Upgrade_to_customize_more": "アップグレードでさらにカスタマイズ",
"Upgrade_to_customize_more_AI_personas": "より多くのAIペルソナをカスタマイズするためのアップグレード",
"Upgrade_your_plan_invite_friends_and_install_our_chrome_extension_torewrite_your_content_and_level_up_your_writing": "プランをアップグレードし、友人を招待し、クローム拡張機能をインストールすることで、コンテンツをリライトし、ライティングをレベルアップさせることができます。",
"upload_a_persona_picture": "ペルソナ画像のアップロード",
"Upload_photo": "写真をアップロードする",
"Urgent": "緊急",
"Usage": "使用方法",
"usage_settings": "使用設定",
"users_on_free_plan_can_only_create_public_personas_public_personas_can_be_seen_and_used_by_other_members_of_the_textcortex_community": "無料プランのユーザーは、公開ペルソナのみ作成することができます。公開されたペルソナは、TextCortexコミュニティの他のメンバーが閲覧・利用することができます。",
"View_detailed_usage": "詳しい使い方を見る",
"view_plans": "プランを見る",
"Voice": "音声",
"Want_to_connect_and_build_your_knowledge_base_another_way_Let_us_know": "別の方法でナレッジベースを構築したいですか?私たちに教えてください!",
"Warm": "暖かい",
"Web_URL": "ウェブURL",
"webapp_ai_text_editor": "WebApp AIテキストエディタ",
"Webhook": "ウェブフック",
"Website": "ウェブサイト",
"Website Copy": "サイトコピー",
"Website_Copy": "サイトコピー",
"Welcome Credit": "ウェルカムクレジット",
"Welcome_aboard": "ようこそ、ご搭乗くださいました!",
"Welcome_to_TextCortex": "TextCortexへようこそ",
"What are some effective strategies for closing a sale?": "セールスを成立させるための効果的な戦略とは?",
"What are some effective strategies for prioritizing features?": "機能の優先順位付けに効果的な戦略は?",
"What are some strategies for dealing with difficult people in my life?": "私の人生において、困難な人々に対処するための戦略は何か?",
"What are some techniques for writing effective email marketing copy?": "効果的なメールマーケティングコピーを書くためのテクニックは?",
"What are some tips for building self-confidence?": "自分に自信を持つためのヒントを教えてください。",
"What are the benefits of mindfulness?": "マインドフルネスにはどのような効果があるのでしょうか?",
"What are the key components of a successful sales pitch?": "セールスピッチを成功させるための重要な要素とは?",
"What are the signs of burnout, and how can I prevent it?": "燃え尽き症候群の兆候と、それを防ぐにはどうしたらいいのでしょうか。",
"What is a good prompt for creating architectural images on stable diffusion model?": "安定した拡散モデルで建築のイメージを作るのに適したプロンプトは何ですか?",
"What is the difference between a class and an object in Java?": "Javaのクラスとオブジェクトの違いは何ですか?",
"What is the difference between mitosis and meiosis?": "有糸分裂と減数分裂はどう違うのですか?",
"What is the prompt for creating ultra-realistic images with DALL-E?": "DALL-Eで超リアルな映像を作るためのプロンプトとは?",
"What_problem_are_you_looking_to_solve": "どのような問題を解決したいのですか?",
"What_role_describes_you_the_best": "自分を一番よく表しているのはどんな役割ですか?",
"What's the best way to practice my conversation skills in a new language?": "新しい言語での会話力を鍛えるには、どんな方法があるのでしょうか?",
"where_do_you_want_to_use_this_persona": "このペルソナをどこで使いたいのか?",
"Witty": "ウィットに富んだ",
"words": "じ",
"Words_generated": "発生する単語",
"Would_you_like_to_try_TextCortex_unlimited_plan_for_14_days": "TextCortexの無制限プランを14日間お試しになりませんか?",
"Write a creative product ": "クリエイティブな製品を書く",
"Write a creative product description using the product features.": "製品の特徴を使って、クリエイティブな製品説明を書く。",
"Write a creative product description.": "クリエイティブな商品説明文を書く。",
"Write a pop song about leaving home for the sandy beaches.": "家を出て砂浜に行くというポップソングを作ろう。",
"Write great blog articles with the help of this tool": "このツールの助けを借りて、素晴らしいブログ記事を書こう",
"Write_a_creative_product_description": "クリエイティブな商品説明文を書く。",
"Write_a_creative_product_description_using_the_product_features": "製品の特徴を使って、クリエイティブな製品説明を書く。",
"write_a_few_words_to_remember_what_this_persona_is_about": "このペルソナがどんなものなのか、覚えておくために一言書いておきましょう。",
"write_a_function_to_multiply_two_numbers_and_print_the_result": "2つの数値を掛け合わせ、その結果を表示する関数を書く",
"Write_a_pop_song_about_leaving_home_for_the_sandy_beaches": "家を出て砂浜に行くというポップソングを作ろう。",
"write_a_review": "レビューを書く",
"write_a_romantic_letter_to_gertrude": "ガートルードへのロマンチックな手紙を書こう。",
"write_something_here": "ここに何か書いてください...。",
"Writer's_Intention": "作家の意地",
"Writing_Persona": "ライティングペルソナ",
"writing_tone": ".ライティングトーン",
"yearly": "年間",
"yes": "はあ",
"Yes_I_want_to_try_unlimited_for_free": "はい、アンリミテッドを無料で試したいです!",
"You_already_invited_this_user_before": "このユーザーは以前に招待したことがあります。",
"You_are_ready": "準備が整いましたね!",
"you_did_it": "やりましたね!",
"you_have_discovered_a": "を発見されたのですね。",
"Your instructions about how to respond to the email": "メールへの返信方法に関するご指示",
"your_ai_partner_is_ready_to_write_more": "あなたのAIパートナーは、続きを書く準備ができています。",
"Your_API_key": "お客様のAPIキー",
"Your_Customized_AI_Persona_Library": "カスタマイズされたAIペルソナライブラリー",
"your_invitation_link": "招待状リンク",
"Your_writing_assistant_saving_70_percent_of_your_time": "あなたの時間を70%節約するライティングアシスタント",
"youre_left_with_0_creations_for_today_youll_get_10_more_tomorrow": "今日のクリエイションは0個で終了です。明日は10個増えます",
"Youtube & Social Media": "Youtube・ソーシャルメディア",
"Youtube Captions": "Youtubeのキャプション",
"Youtube Description": "Youtubeの説明",
"Youtube Hooks": "Youtubeフック",
"Youtube Intros": "Youtubeイントロダクション",
"Youtube Outlines": "Youtubeのアウトライン",
"Youtube Title": "Youtubeタイトル",
"Youtube Title V2": "YoutubeタイトルV2",
"Youtube_&_Social_Media": "Youtube・ソーシャルメディア",
"Youtube_Captions": "Youtubeのキャプション",
"Youtube_Description": "Youtubeの説明",
"zeno_mode_personal_writing_assistant": "ゼノモード - パーソナルライティングアシスタント",
"Zeno_the_assistant": "ゼノ、アシスタント",
"Zeno, the assistant": "ゼノ、アシスタント",
"ZenoChat": "ゼノチャット",
"you_have_finished_your_creations_go_unlimited_to_continue_working_with_zeno": "クリエイションが終了しました。引き続きZenoで作業する場合は、無制限に移動してください。",
"January": "一月",
"February": "2月",
"March": "3月",
"April": "4月",
"June": "6月",
"July": "7月",
"August": "8月",
"September": "9月",
"October": "10月",
"November": "11月",
"December": "12月",
"previous_15_days": "これまでの15日間",
"Add Your Own Persona": "自分のペルソナを追加する",
"Web_Search_toggle": "ウェブ検索トグルは、インターネット上の最新の情報を提供するために設計されました。メッセージを入力すると、Zenoがインターネット上で検索し、情報を整理して、可能な限り最適な方法で表示します。そのため、トグルがオンになっているときは、多少の遅延が予想されます。(例:Zenoに \"World Cup 2022の優勝者は誰ですか?\"と尋ねてみてください。)",
"add_your_own_data": "独自のデータを追加する",
"Add Your Own Data": "独自のデータを追加する",
"Wikipedia": "ウィキペディア",
"any_discount_code": "割引コードはありますか?",
"copy_invitation_link": "招待状のリンクをコピーする",
"draft": "ドラフト",
"Learn how you can optimize your writing with TextCortex from our youtube channel.": "TextCortexを使ったライティングの最適化については、ユーチューブチャンネルでご紹介しています。",
"Share you best work to create a dedicated persona in voice, style and expression.": "声、スタイル、表現にこだわったペルソナを作るために、ベスト作品を共有する。",
"Connect your own knowledge bases to customize Zeno with information around your work.": "独自のナレッジベースを接続し、仕事に関する情報をZenoにカスタマイズすることができます。",
"Share your video testimonial on your favourite social network and get a free one month business subscription.": "お気に入りのSNSで体験談動画をシェアしていただくと、1ヶ月間のビジネス利用料を無料にします。",
"Write a kindhearted review on G2 about how we help you and get 14-days of Business and all our feature for free.": "G2で、私たちがどのようにお客様をサポートしたのか、心のこもったレビューを書いていただくと、14日間のビジネスと私たちのすべての機能を無料でご利用いただけます。",
"Write a kindhearted review on CWS how we help you and get 14-days of Business and all our feature for free.": "CWSがどのようにお客様をサポートしたか、心のこもったレビューを書いていただくと、14日間のビジネスと私たちのすべての機能を無料でご利用いただけます。",
"Send your invitation link to your friend for free daily creations. Each accepted invite will give you 5 daily creations.": "招待リンクをお友達に送ると、毎日無料でクリエイションが楽しめます。招待を受けるごとに、毎日5つの作品を作ることができます。",
"Gift your friends a trial of TextCortex and get something for yourself!": "お友達にTextCortexのトライアルをプレゼントして、自分にも何かプレゼントしましょう!",
"Get 5 extra daily creations by joining our Discord community, #introduce-yourself and upload a screenshot.": "Discordのコミュニティに参加し、#introduce-yourselfとスクリーンショットをアップロードすると、毎日5つの追加クリエーションがもらえます。",
"Get 5 daily creations for each platform by writing a review and then uploading a screenshot here.": "レビューを書いてからここにスクリーンショットをアップロードすることで、各プラットフォームのクリエイションを毎日5つずつプレゼント。",
"Become a AI Master. Get 2-weeks worth of learning in only 30 minutes!": "AIマスターになる。2週間分の学びをたった30分で手に入れよう!",
"Learn from youtube": "ユーチューブから学ぶ",
"Add to Browser": "ブラウザーに追加",
"Customize your AI": "AIをカスタマイズする",
"Customize your Knowledge": "ナレッジをカスタマイズする",
"Trial for Testimonial": "テスティモニアルの試用",
"Get Business Trial": "ビジネストライアルを受ける",
"Get free creations": "クリエイションを無料で手に入れる",
"Review for free creations": "フリークリエイションのためのレビュー",
"Visit the Academy": "アカデミー訪問",
"Join Community": "コミュニティへの参加",
"Tailoring the right wording...": "適切な表現に仕立てる...",
"Activating creative superpowers...": "クリエイティブなスーパーパワーを活性化する...",
"Finding the inner hemingw.ai...": "内なるhemingw.aiを見つける...。",
"Masterminding a plot...": "陰謀を企てる...",
"Releasing the inner Pulitzer...": "ピューリッツァーの内面を解放する...",
"Contributing to the encyclopedia...": "百科事典への寄稿...",
"Writing the next big hit on Netflix...": "Netflixで次の大ヒットを書く...。",
"Sharing apples with Agathe Christie for creative inspiration...": "アガサ・クリスティとリンゴを分け合い、創作のヒントを得る...。",
"Saving you 70% of your time...": "あなたの時間を70%節約...",
"Find best practices in our help center...": "ヘルプセンターでベストプラクティスを見つけることができます...",
"Invite your friends and earn free daily creations...": "友達を招待して、毎日無料でクリエイションを獲得することができます...",
"Give us a review and earn free daily creations...": "レビューを書いて、毎日無料のクリエーションを獲得しましょう...",
"Hyper charge any textbox with our chrome extension...": "クローム拡張機能で任意のテキストボックスをハイパー充電します。",
"Sharing apples with Agatha Christie for creative inspiration...": "アガサ・クリスティとリンゴを分け合い、創作のヒントを得る...。",
"Thinking about Tolkien’s polar bear appearances...": "トールキンのシロクマ登場に思いを馳せながら...。",
"Avoid writer’s block the un-Victor-Hugo-ian way": "ヴィクトル・フーゴ的な方法で作家のブロックを回避する",
"Admiring Theodore Geisel for coining the word nerd...": "オタクという言葉を作ったセオドア・ガイゼルに憧れて...。",
"Finishing Kafka’s work...": "カフカの作品を完成させる...。",
"Borrowing Joyce’s large blue pencils...": "ジョイスの大きな青鉛筆を借りて...。",
"Typing on McCarthy’s magic typewriter...": "マッカーシーの魔法のタイプライターでタイピング...。",
"Reading Tolstoy’s diary...": "トルストイの日記を読むと...。",
"Trying to text Harari...": "ハラリにメールを送ろうとすると...。",
"Gift your Friends": "友達へのプレゼント",
"Gift your friends a trial of TextCortex!": "お友達にTextCortexのトライアルをプレゼントする!",
"Template": "テンプレート",
"Id": "ID",
"Api_usage_history": "API利用履歴",
"hint_type_and_press_enter": "ヒント:入力した内容を<strong>Enter</strong>を押して送信します。",
"write_a_keyword_and_press_enter": "キーワードを書き込んでエンターキーを押す",
"Target audience for the ad": "広告のターゲット層",
"Target audience for the video": "映像の対象者",
"Category of the video": "映像のカテゴリー",
"Description of the video": "映像の説明",
"Youtube And Social Media": "Youtubeとソーシャルメディア",
"Instagram_Description": "Instagram_Description(インスタグラム・デスクリプション",
"Support_Emails": "サポート_Eメール",
"Logout": "ログアウト",
"pricing": "価格設定",
"create_more_with_friends_or_get_business": "友だちともっと作りたい、ビジネスをしたい",
"earn_10_extra_creations_per_day_per_referred_friend_use_without_payments_required": "紹介された友達1人につき1日10個の追加クリエーションが獲得できます。支払い不要で利用できます。",
"Subject of the email": "メールの件名",
"preferences": "プリファレンス",
"generation_language": "世代別言語",
"system_language": "システム言語",
"languages": "言語",
"summarizer": "サマライザー",
"persona_bio": "ペルソナバイオ",
"set_as_default_ai_persona": "デフォルトのAIペルソナとして設定",
"remove_default_ai_persona": "デフォルトのAIペルソナを削除する",
"Short - 100 words": "短文 - 100字",
"Medium - 200 words": "中文 - 200字",
"Long - 300 words": "長文 - 300字",
"unlocks_global_superpowers": "グローバルな<bold>スーパーパワー</bold>を解き放つ。",
"become_mvp_in_friend_circle": "フレンドサークルで<bold>MVP</bold>になる。",
"one_month_business_free": "1ヶ月の<bold>Business</bold>を無料で提供($79.99)",
"oops_this_is_a_long_document_name_please_press_enter_to_write_into_the_document": "おっと、これは長い文書名です、文書に書き込むにはエンターキーを押してください。",
"heading": "ヘディング",
"bulleted_list": "箇条書きリスト",
"enable_search": "イネーブルサーチ",
"Web Search Disabled": "ウェブ検索を無効にする",
"Add URLs": "URLの追加",
"Twitter": "ツイッター",
"Reddit": "レッドダート",
"Youtube": "ユーチューブ",
"Scholar": "スカラー",
"News": "ニュース",
"Your Knowledge Base": "あなたのナレッジベース",
"English": "イングリッシュ",
"Spanish": "スパニッシュ",
"French": "フレンチ",
"German": "ジャーマン",
"Korean": "コリアン",
"Portuguese": "ポルトガル語",
"Dutch": "オランダ語",
"Italian": "イタリアン",
"Chinese": "チャイニーズ",
"Turkish": "トルコ語",
"Norwegian": "ノルウェー人",
"Swedish": "スウェーデン語",
"Japanese": "やまと",
"Polish": "ポーリッシュ",
"Greek": "グリーク",
"Finnish": "フィンランド語",
"Hungarian": "ハンガリー語",
"Indonesian": "インドネシア語",
"Bulgarian": "ブルガリア語",
"Czech": "チェコ",
"Danish": "デンマーク語",
"Lithuanian": "リトアニア語",
"Latvian": "ラトビア語",
"Slovak": "スロバキア語",
"Slovene": "スロベニア語",
"Ukrainian": "ウクライナ語",
"Romanian": "ルーマニア語",
"Russian": "ロシアン",
"Preferences": "プリファレンス",