@instructure/canvas-rce 5.13.1 → 5.13.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +1 -3
  3. package/es/bridge/Bridge.js +0 -4
  4. package/es/defaultTinymceConfig.js +1 -1
  5. package/es/getTranslations.js +5 -1
  6. package/es/index.js +2 -0
  7. package/es/rce/RCE.js +3 -1
  8. package/es/rce/RCEVariants.js +121 -0
  9. package/es/rce/RCEWrapper.js +96 -47
  10. package/es/rce/RCEWrapperProps.js +5 -2
  11. package/es/rce/StatusBar.js +67 -17
  12. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Footer.js +1 -0
  13. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Preview.js +1 -1
  14. package/es/rce/plugins/instructure_icon_maker/components/IconMakerTray.js +6 -1
  15. package/es/rce/plugins/instructure_rce_external_tools/RceToolWrapper.js +9 -9
  16. package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialog.js +25 -3
  17. package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialogModal.js +1 -1
  18. package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialogTray.js +1 -1
  19. package/es/rce/plugins/instructure_rce_external_tools/plugin.js +4 -1
  20. package/es/rce/plugins/shared/CanvasContentTray.js +6 -158
  21. package/es/rce/plugins/shared/Filter.js +0 -17
  22. package/es/rce/plugins/shared/FixedContentTray.js +7 -4
  23. package/es/rce/plugins/shared/ImageOptionsForm.js +3 -2
  24. package/es/rce/plugins/shared/Upload/CanvasContentPanel.js +160 -0
  25. package/es/rce/plugins/shared/Upload/ComputerPanel.js +1 -0
  26. package/es/rce/plugins/shared/Upload/PanelFilter.js +144 -0
  27. package/es/rce/plugins/shared/Upload/UploadFile.js +10 -2
  28. package/es/rce/plugins/shared/Upload/UploadFileModal.js +47 -11
  29. package/es/rce/plugins/shared/Upload/UsageRightsSelectBox.js +20 -20
  30. package/es/rce/plugins/shared/Upload/index.js +19 -0
  31. package/es/rce/plugins/shared/ai_tools/AIResponseModal.js +70 -0
  32. package/es/rce/plugins/shared/ai_tools/AIToolsTray.js +510 -0
  33. package/es/rce/plugins/shared/ai_tools/aiicons.js +59 -0
  34. package/es/rce/plugins/shared/ai_tools/index.js +20 -0
  35. package/es/rce/plugins/shared/canvasContentUtils.js +190 -0
  36. package/es/rce/plugins/shared/do-fetch-api-effect/defaultFetchOptions.js +31 -0
  37. package/es/rce/plugins/shared/do-fetch-api-effect/doFetchApi.js +85 -0
  38. package/es/rce/plugins/shared/do-fetch-api-effect/get-cookie.js +29 -0
  39. package/es/rce/plugins/shared/do-fetch-api-effect/index.js +22 -0
  40. package/es/rce/plugins/shared/do-fetch-api-effect/parse-link-header.js +116 -0
  41. package/es/rce/plugins/shared/do-fetch-api-effect/query-string-encoding.js +51 -0
  42. package/es/rce/plugins/shared/linkUtils.js +1 -1
  43. package/es/rce/plugins/shared/useFilterSettings.js +35 -0
  44. package/es/sidebar/actions/upload.js +5 -2
  45. package/es/translations/locales/ar.js +64 -1
  46. package/es/translations/locales/ca.js +65 -2
  47. package/es/translations/locales/cy.js +64 -1
  48. package/es/translations/locales/da-x-k12.js +65 -2
  49. package/es/translations/locales/da.js +65 -2
  50. package/es/translations/locales/de.js +65 -2
  51. package/es/translations/locales/el.js +9 -0
  52. package/es/translations/locales/en-AU-x-unimelb.js +65 -2
  53. package/es/translations/locales/en-GB-x-ukhe.js +65 -2
  54. package/es/translations/locales/en.js +65 -2
  55. package/es/translations/locales/en_AU.js +65 -2
  56. package/es/translations/locales/en_CA.js +65 -2
  57. package/es/translations/locales/en_CY.js +65 -2
  58. package/es/translations/locales/en_GB.js +65 -2
  59. package/es/translations/locales/es.js +64 -1
  60. package/es/translations/locales/es_ES.js +64 -1
  61. package/es/translations/locales/fa_IR.js +9 -0
  62. package/es/translations/locales/fi.js +64 -1
  63. package/es/translations/locales/fr.js +65 -2
  64. package/es/translations/locales/fr_CA.js +65 -2
  65. package/es/translations/locales/ga.js +116 -2
  66. package/es/translations/locales/he.js +9 -0
  67. package/es/translations/locales/hi.js +2543 -0
  68. package/es/translations/locales/ht.js +65 -2
  69. package/es/translations/locales/hu.js +440 -2
  70. package/es/translations/locales/hy.js +9 -0
  71. package/es/translations/locales/id.js +65 -2
  72. package/es/translations/locales/is.js +65 -2
  73. package/es/translations/locales/it.js +65 -2
  74. package/es/translations/locales/ja.js +65 -2
  75. package/es/translations/locales/ko.js +3 -0
  76. package/es/translations/locales/mi.js +65 -2
  77. package/es/translations/locales/ms.js +64 -1
  78. package/es/translations/locales/nb-x-k12.js +65 -2
  79. package/es/translations/locales/nb.js +65 -2
  80. package/es/translations/locales/nl.js +65 -2
  81. package/es/translations/locales/nn.js +156 -3
  82. package/es/translations/locales/pl.js +64 -1
  83. package/es/translations/locales/pt.js +64 -1
  84. package/es/translations/locales/pt_BR.js +65 -2
  85. package/es/translations/locales/ru.js +64 -1
  86. package/es/translations/locales/sl.js +65 -2
  87. package/es/translations/locales/sv-x-k12.js +65 -2
  88. package/es/translations/locales/sv.js +65 -2
  89. package/es/translations/locales/th.js +64 -1
  90. package/es/translations/locales/tr.js +9 -0
  91. package/es/translations/locales/uk_UA.js +9 -0
  92. package/es/translations/locales/vi.js +64 -1
  93. package/es/translations/locales/zh-Hans.js +64 -1
  94. package/es/translations/locales/zh-Hant.js +65 -2
  95. package/es/translations/locales/zh.js +64 -1
  96. package/es/translations/locales/zh_HK.js +65 -2
  97. package/es/translations/tinymce/ar_SA.js +4 -0
  98. package/es/translations/tinymce/bg_BG.js +4 -0
  99. package/es/translations/tinymce/ca.js +4 -0
  100. package/es/translations/tinymce/cs.js +4 -0
  101. package/es/translations/tinymce/cy.js +4 -0
  102. package/es/translations/tinymce/da.js +4 -0
  103. package/es/translations/tinymce/de.js +4 -0
  104. package/es/translations/tinymce/el.js +4 -0
  105. package/es/translations/tinymce/es.js +4 -0
  106. package/es/translations/tinymce/fa_IR.js +4 -0
  107. package/es/translations/tinymce/fr_FR.js +4 -0
  108. package/es/translations/tinymce/ga.js +4 -0
  109. package/es/translations/tinymce/he_IL.js +4 -0
  110. package/es/translations/tinymce/hu_HU.js +4 -0
  111. package/es/translations/tinymce/hy.js +4 -0
  112. package/es/translations/tinymce/id.js +4 -0
  113. package/es/translations/tinymce/it.js +4 -0
  114. package/es/translations/tinymce/ja.js +4 -0
  115. package/es/translations/tinymce/ko_KR.js +4 -0
  116. package/es/translations/tinymce/nb_NO.js +4 -0
  117. package/es/translations/tinymce/nl.js +4 -0
  118. package/es/translations/tinymce/pl.js +4 -0
  119. package/es/translations/tinymce/pt_BR.js +4 -0
  120. package/es/translations/tinymce/pt_PT.js +4 -0
  121. package/es/translations/tinymce/ro.js +4 -0
  122. package/es/translations/tinymce/ru.js +4 -0
  123. package/es/translations/tinymce/ru_RU.js +5 -1
  124. package/es/translations/tinymce/sl.js +4 -0
  125. package/es/translations/tinymce/sr.js +4 -0
  126. package/es/translations/tinymce/sv_SE.js +4 -0
  127. package/es/translations/tinymce/th.js +5 -1
  128. package/es/translations/tinymce/tr_TR.js +4 -0
  129. package/es/translations/tinymce/uk_UA.js +4 -0
  130. package/es/translations/tinymce/vi_VN.js +4 -0
  131. package/es/translations/tinymce/zh_CN.js +4 -0
  132. package/es/translations/tinymce/zh_TW.js +4 -0
  133. package/jest/jest-setup.js +1 -0
  134. package/package.json +1 -1
@@ -54,6 +54,12 @@ const locale = {
54
54
  "adjacent_links_with_the_same_url_should_be_a_singl_7a1f7f6c": {
55
55
  "message": "ลิงค์ที่ติดกันกับ URL เหมือน ๆ กันควรเป็นลิงค์แยกเดี่ยว"
56
56
  },
57
+ "ai_response_9624e8e8": {
58
+ "message": "การตอบกลับของ AI"
59
+ },
60
+ "ai_tools_fda01177": {
61
+ "message": "เครื่องมือ AI"
62
+ },
57
63
  "aleph_f4ffd155": {
58
64
  "message": "อาเลฟ"
59
65
  },
@@ -90,6 +96,9 @@ const locale = {
90
96
  "an_error_occurred_making_a_network_request_d1bda348": {
91
97
  "message": "เกิดข้อผิดพลาดขณะทำคำขอผ่านเครือข่าย"
92
98
  },
99
+ "an_error_occurred_processing_your_request_a3a38d84": {
100
+ "message": "เกิดข้อผิดพลาดในการประมวลผลคำขอของคุณ"
101
+ },
93
102
  "an_error_occurred_uploading_your_media_71f1444d": {
94
103
  "message": "เกิดข้อผิดพลาดขณะอัพโหลดสื่อของคุณ"
95
104
  },
@@ -333,6 +342,9 @@ const locale = {
333
342
  "complex_numbers_a543d004": {
334
343
  "message": "จำนวนเชิงซ้อน"
335
344
  },
345
+ "compose_44c904f4": {
346
+ "message": "เขียน"
347
+ },
336
348
  "computer_1d7dfa6f": {
337
349
  "message": "คอมพิวเตอร์"
338
350
  },
@@ -360,6 +372,9 @@ const locale = {
360
372
  "coproduct_e7838082": {
361
373
  "message": "Coproduct"
362
374
  },
375
+ "copy_9748f9f": {
376
+ "message": "คัดลอก"
377
+ },
363
378
  "copyright_holder_66ee111": {
364
379
  "message": "ผู้ถือลิขสิทธิ์:"
365
380
  },
@@ -528,6 +543,9 @@ const locale = {
528
543
  "disjoint_union_e74351a8": {
529
544
  "message": "ยูเนียนที่ไม่เกี่ยวพันกัน"
530
545
  },
546
+ "dislike_14befc48": {
547
+ "message": "ไม่ชอบ"
548
+ },
531
549
  "display_options_315aba85": {
532
550
  "message": "แสดงตัวเลือก"
533
551
  },
@@ -603,7 +621,7 @@ const locale = {
603
621
  "edit_link_7f53bebb": {
604
622
  "message": "แก้ไขลิงค์"
605
623
  },
606
- "editor_statusbar_26ac81fc": {
624
+ "editor_status_bar_653f44ee": {
607
625
  "message": "แถบสถานะโปรแกรมแก้ไข"
608
626
  },
609
627
  "element_starting_with_start_91bf4c3b": {
@@ -657,6 +675,9 @@ const locale = {
657
675
  "enter_search_text_26cb4459": {
658
676
  "message": "กรอกข้อความค้นหา"
659
677
  },
678
+ "enter_text_8b35c65b": {
679
+ "message": "กรอกข้อความ"
680
+ },
660
681
  "epsilon_54bb8afa": {
661
682
  "message": "เอปไซลอน"
662
683
  },
@@ -720,6 +741,9 @@ const locale = {
720
741
  "failed_getting_file_contents_e9ea19f4": {
721
742
  "message": "ไม่สามารถสืบค้นเนื้อหาของไฟล์"
722
743
  },
744
+ "failed_to_copy_response_d3def551": {
745
+ "message": "ไม่สามารถคัดลอกคำตอบได้"
746
+ },
723
747
  "failed_to_retrieve_content_from_external_tool_5899c213": {
724
748
  "message": "ไม่สามารถเรียกค้นเนื้อหาจากเครื่องมือภายนอก"
725
749
  },
@@ -897,6 +921,12 @@ const locale = {
897
921
  "height_69b03e15": {
898
922
  "message": "ความสูง"
899
923
  },
924
+ "hello_please_describe_the_modifications_you_would__49b19837": {
925
+ "message": "สวัสดี กรุณาระบุการปรับแต่งที่คุณต้องการดำเนินการสำหรับผลงานของคุณ"
926
+ },
927
+ "hello_please_describe_the_modifications_you_would__600dbbf0": {
928
+ "message": "สวัสดี กรุณาระบุการปรับแต่งที่คุณต้องการดำเนินการสำหรับรายการที่คุณเลือก"
929
+ },
900
930
  "hexagon_d8468e0d": {
901
931
  "message": "หกเหลี่ยม"
902
932
  },
@@ -924,6 +954,9 @@ const locale = {
924
954
  "i_hold_the_copyright_71ee91b1": {
925
955
  "message": "ฉันถือลิขสิทธิ์"
926
956
  },
957
+ "i_m_sorry_but_i_cannot_find_the_ai_s_answer_67569d19": {
958
+ "message": "ขออภัย แต่เราไม่พบคำตอบจาก AI"
959
+ },
927
960
  "icon_215a1dc6": {
928
961
  "message": "ไอคอน"
929
962
  },
@@ -1170,6 +1203,9 @@ const locale = {
1170
1203
  "links_to_an_external_site_de74145d": {
1171
1204
  "message": "ลิงค์ไปยังไซต์ภายนอก"
1172
1205
  },
1206
+ "lists_cd1336fc": {
1207
+ "message": "รายการ"
1208
+ },
1173
1209
  "lists_should_be_formatted_as_lists_f862de8d": {
1174
1210
  "message": "รายการควรกำหนดรูปแบบเป็นแสดงรายการ"
1175
1211
  },
@@ -1275,6 +1311,9 @@ const locale = {
1275
1311
  "miscellaneous_e9818229": {
1276
1312
  "message": "เบ็ดเตล็ด"
1277
1313
  },
1314
+ "modify_6b0b13e3": {
1315
+ "message": "แก้ไข"
1316
+ },
1278
1317
  "module_90d9fd32": {
1279
1318
  "message": "หน่วยการเรียน"
1280
1319
  },
@@ -1563,6 +1602,9 @@ const locale = {
1563
1602
  "please_allow_canvas_to_access_your_microphone_and__dc2c3079": {
1564
1603
  "message": "กรุณาให้อนุญาต Canvas ในการใช้งานไมโครโฟนและเว็บแคมของคุณ"
1565
1604
  },
1605
+ "please_decribe_what_you_would_like_to_compose_27a51be5": {
1606
+ "message": "กรุณาระบุรายละเอียดสิ่งที่คุณต้องการเขียน"
1607
+ },
1566
1608
  "plus_d43cd4ec": {
1567
1609
  "message": "บวก"
1568
1610
  },
@@ -1707,12 +1749,18 @@ const locale = {
1707
1749
  "resize_ec83d538": {
1708
1750
  "message": "ปรับขนาด"
1709
1751
  },
1752
+ "response_copied_to_clipboard_130d66cd": {
1753
+ "message": "คัดลอกคำตอบไปยังคลิปบอร์ดแล้ว"
1754
+ },
1710
1755
  "restore_auto_save_deccd84b": {
1711
1756
  "message": "กู้คืนที่บันทึกอัตโนมัติหรือไม่"
1712
1757
  },
1713
1758
  "result_index_of_max_7db5ad8b": {
1714
1759
  "message": "ผลลัพธ์ { index } จาก { max }"
1715
1760
  },
1761
+ "retry_ebd5f8ba": {
1762
+ "message": "ลองใหม่"
1763
+ },
1716
1764
  "reverse_turnstile_does_not_yield_7558be06": {
1717
1765
  "message": "Reverse Turnstile (มีเกิดผลลัพธ์)"
1718
1766
  },
@@ -1863,6 +1911,9 @@ const locale = {
1863
1911
  "shortcut_911d6255": {
1864
1912
  "message": "ชอร์ตคัท"
1865
1913
  },
1914
+ "show_all_967a90f0": {
1915
+ "message": "แสดงทั้งหมด"
1916
+ },
1866
1917
  "show_audio_options_b489926b": {
1867
1918
  "message": "แสดงตัวเลือกเสียง"
1868
1919
  },
@@ -1986,6 +2037,9 @@ const locale = {
1986
2037
  "submit_a3cc6859": {
1987
2038
  "message": "ส่ง"
1988
2039
  },
2040
+ "submitting_b90fac62": {
2041
+ "message": "กำลังจัดส่ง..."
2042
+ },
1989
2043
  "subscript_59744f96": {
1990
2044
  "message": "ตัวห้อย"
1991
2045
  },
@@ -2385,6 +2439,9 @@ const locale = {
2385
2439
  "view_word_and_character_counts_a743dd0c": {
2386
2440
  "message": "ดูจำนวนคำและอักขระ"
2387
2441
  },
2442
+ "waiting_for_response_1efd0c50": {
2443
+ "message": "กำลังรอการตอบกลับ"
2444
+ },
2388
2445
  "we_couldn_t_detect_a_working_microphone_connected__ceb71c40": {
2389
2446
  "message": "เราไม่พบไมโครโฟนที่ใช้การได้ที่เชื่อมต่อกับอุปกรณ์ของคุณ"
2390
2447
  },
@@ -2403,6 +2460,9 @@ const locale = {
2403
2460
  "webpages_should_only_have_a_single_h1_which_is_aut_dc99189e": {
2404
2461
  "message": "เว็บเพจควรมี H1 เดียวซึ่งจะใช้อัตโนมัติจาก Title ของเพจ หัวเรื่องแรกในเนื้อหาของคุณควรเป็น H2"
2405
2462
  },
2463
+ "what_would_you_like_to_do_6dc0d541": {
2464
+ "message": "คุณต้องการทำอะไร"
2465
+ },
2406
2466
  "when_markup_is_used_that_visually_formats_items_as_f941fc1b": {
2407
2467
  "message": "เมื่อมีการใช้มาร์กอัพที่กำหนดรูปแบบรายการเป็นแสดงรายการแต่ไม่ได้ระบุความสัมพันธ์ในรายการ ผู้ใช้อาจมีปัญหาในการสืบค้นข้อมูล"
2408
2468
  },
@@ -2433,6 +2493,9 @@ const locale = {
2433
2493
  "wreath_product_200b38ef": {
2434
2494
  "message": "Wreath Product"
2435
2495
  },
2496
+ "writing_assistant_a30ac16a": {
2497
+ "message": "ผู้ช่วยเขียนงาน"
2498
+ },
2436
2499
  "xi_149681d0": {
2437
2500
  "message": "Xi"
2438
2501
  },
@@ -180,6 +180,9 @@ const locale = {
180
180
  "content_type_2cf90d95": {
181
181
  "message": "İçerik Tipi"
182
182
  },
183
+ "copy_9748f9f": {
184
+ "message": "Kopyala"
185
+ },
183
186
  "copyright_holder_66ee111": {
184
187
  "message": "Telif Sahibi:"
185
188
  },
@@ -540,6 +543,9 @@ const locale = {
540
543
  "reset_95a81614": {
541
544
  "message": "Sıfırla"
542
545
  },
546
+ "retry_ebd5f8ba": {
547
+ "message": "Tekrar"
548
+ },
543
549
  "rich_content_editor_2708ef21": {
544
550
  "message": "Zengin İçerik Editörü"
545
551
  },
@@ -567,6 +573,9 @@ const locale = {
567
573
  "submit_a3cc6859": {
568
574
  "message": "Gönder"
569
575
  },
576
+ "submitting_b90fac62": {
577
+ "message": "Gönderiliyor..."
578
+ },
570
579
  "syllabus_f191f65b": {
571
580
  "message": "Ders Programı"
572
581
  },
@@ -135,6 +135,9 @@ const locale = {
135
135
  "content_type_2cf90d95": {
136
136
  "message": "Тип вмісту"
137
137
  },
138
+ "copy_9748f9f": {
139
+ "message": "Копіювати"
140
+ },
138
141
  "copyright_holder_66ee111": {
139
142
  "message": "Правовласник:"
140
143
  },
@@ -435,6 +438,9 @@ const locale = {
435
438
  "reset_95a81614": {
436
439
  "message": "Скинути"
437
440
  },
441
+ "retry_ebd5f8ba": {
442
+ "message": "Спробувати ще раз"
443
+ },
438
444
  "rich_content_editor_2708ef21": {
439
445
  "message": "Редактор збагаченого контенту"
440
446
  },
@@ -459,6 +465,9 @@ const locale = {
459
465
  "submit_a3cc6859": {
460
466
  "message": "Підтвердити"
461
467
  },
468
+ "submitting_b90fac62": {
469
+ "message": "Надсилання..."
470
+ },
462
471
  "syllabus_f191f65b": {
463
472
  "message": "Навчальний план"
464
473
  },
@@ -54,6 +54,12 @@ const locale = {
54
54
  "adjacent_links_with_the_same_url_should_be_a_singl_7a1f7f6c": {
55
55
  "message": "Liên kết liền kề có cùng URL phải là liên kết đơn."
56
56
  },
57
+ "ai_response_9624e8e8": {
58
+ "message": "Phản Hồi AI"
59
+ },
60
+ "ai_tools_fda01177": {
61
+ "message": "Công Cụ AI"
62
+ },
57
63
  "aleph_f4ffd155": {
58
64
  "message": "Aleph"
59
65
  },
@@ -90,6 +96,9 @@ const locale = {
90
96
  "an_error_occurred_making_a_network_request_d1bda348": {
91
97
  "message": "Đã xảy ra lỗi khi thực hiện yêu cầu mạng"
92
98
  },
99
+ "an_error_occurred_processing_your_request_a3a38d84": {
100
+ "message": "Đã xảy ra lỗi khi xử lý yêu cầu của bạn"
101
+ },
93
102
  "an_error_occurred_uploading_your_media_71f1444d": {
94
103
  "message": "Đã xảy ra lỗi khi tải lên nội dung phương tiện."
95
104
  },
@@ -333,6 +342,9 @@ const locale = {
333
342
  "complex_numbers_a543d004": {
334
343
  "message": "Số Phức"
335
344
  },
345
+ "compose_44c904f4": {
346
+ "message": "Soạn Thảo"
347
+ },
336
348
  "computer_1d7dfa6f": {
337
349
  "message": "Máy Tính"
338
350
  },
@@ -360,6 +372,9 @@ const locale = {
360
372
  "coproduct_e7838082": {
361
373
  "message": "Sản Phẩm Phụ"
362
374
  },
375
+ "copy_9748f9f": {
376
+ "message": "Sao chép"
377
+ },
363
378
  "copyright_holder_66ee111": {
364
379
  "message": "Bên Giữ Bản Quyền:"
365
380
  },
@@ -528,6 +543,9 @@ const locale = {
528
543
  "disjoint_union_e74351a8": {
529
544
  "message": "Liên Hợp Rời Rạc"
530
545
  },
546
+ "dislike_14befc48": {
547
+ "message": "Không thích"
548
+ },
531
549
  "display_options_315aba85": {
532
550
  "message": "Tùy Chọn Hiển Thị"
533
551
  },
@@ -603,7 +621,7 @@ const locale = {
603
621
  "edit_link_7f53bebb": {
604
622
  "message": "Chỉnh Sửa Liên Kết"
605
623
  },
606
- "editor_statusbar_26ac81fc": {
624
+ "editor_status_bar_653f44ee": {
607
625
  "message": "Thanh Trạng Thái Trình Chỉnh Sửa"
608
626
  },
609
627
  "element_starting_with_start_91bf4c3b": {
@@ -657,6 +675,9 @@ const locale = {
657
675
  "enter_search_text_26cb4459": {
658
676
  "message": "nhập văn bản tìm kiếm"
659
677
  },
678
+ "enter_text_8b35c65b": {
679
+ "message": "Nhập văn bản"
680
+ },
660
681
  "epsilon_54bb8afa": {
661
682
  "message": "Epsilon"
662
683
  },
@@ -720,6 +741,9 @@ const locale = {
720
741
  "failed_getting_file_contents_e9ea19f4": {
721
742
  "message": "Lấy nội dung tệp không thành công"
722
743
  },
744
+ "failed_to_copy_response_d3def551": {
745
+ "message": "Sao chép phản hồi không thành công"
746
+ },
723
747
  "failed_to_retrieve_content_from_external_tool_5899c213": {
724
748
  "message": "Không thể truy xuất nội dung từ công cụ ngoài"
725
749
  },
@@ -897,6 +921,12 @@ const locale = {
897
921
  "height_69b03e15": {
898
922
  "message": "Chiều Cao"
899
923
  },
924
+ "hello_please_describe_the_modifications_you_would__49b19837": {
925
+ "message": "Xin chào. Vui lòng mô tả những sửa đổi mà bạn muốn thực hiện cho bài soạn của mình."
926
+ },
927
+ "hello_please_describe_the_modifications_you_would__600dbbf0": {
928
+ "message": "Xin chào. Vui lòng mô tả những sửa đổi mà bạn muốn thực hiện cho lựa chọn của mình."
929
+ },
900
930
  "hexagon_d8468e0d": {
901
931
  "message": "Lục Giác"
902
932
  },
@@ -924,6 +954,9 @@ const locale = {
924
954
  "i_hold_the_copyright_71ee91b1": {
925
955
  "message": "Tôi là bên giữ bản quyền"
926
956
  },
957
+ "i_m_sorry_but_i_cannot_find_the_ai_s_answer_67569d19": {
958
+ "message": "Xin lỗi, nhưng tôi không thể tìm câu trả lời của AI"
959
+ },
927
960
  "icon_215a1dc6": {
928
961
  "message": "Biểu tượng"
929
962
  },
@@ -1170,6 +1203,9 @@ const locale = {
1170
1203
  "links_to_an_external_site_de74145d": {
1171
1204
  "message": "Liên kết đến một trang bên ngoài."
1172
1205
  },
1206
+ "lists_cd1336fc": {
1207
+ "message": "Danh Sách"
1208
+ },
1173
1209
  "lists_should_be_formatted_as_lists_f862de8d": {
1174
1210
  "message": "Các danh sách phải được định dạng dưới dạng danh sách."
1175
1211
  },
@@ -1275,6 +1311,9 @@ const locale = {
1275
1311
  "miscellaneous_e9818229": {
1276
1312
  "message": "Tổng Hợp"
1277
1313
  },
1314
+ "modify_6b0b13e3": {
1315
+ "message": "Chỉnh Sửa"
1316
+ },
1278
1317
  "module_90d9fd32": {
1279
1318
  "message": "Học Phần"
1280
1319
  },
@@ -1563,6 +1602,9 @@ const locale = {
1563
1602
  "please_allow_canvas_to_access_your_microphone_and__dc2c3079": {
1564
1603
  "message": "Vui lòng cho phép Canvas truy cập microphone và webcam của bạn."
1565
1604
  },
1605
+ "please_decribe_what_you_would_like_to_compose_27a51be5": {
1606
+ "message": "Vui lòng mô tả nội dung bạn muốn soạn."
1607
+ },
1566
1608
  "plus_d43cd4ec": {
1567
1609
  "message": "Cộng"
1568
1610
  },
@@ -1707,12 +1749,18 @@ const locale = {
1707
1749
  "resize_ec83d538": {
1708
1750
  "message": "Đổi Cỡ"
1709
1751
  },
1752
+ "response_copied_to_clipboard_130d66cd": {
1753
+ "message": "Đã sao chép phản hồi vào bộ nhớ tạm"
1754
+ },
1710
1755
  "restore_auto_save_deccd84b": {
1711
1756
  "message": "Khôi phục tự động lưu?"
1712
1757
  },
1713
1758
  "result_index_of_max_7db5ad8b": {
1714
1759
  "message": "Kết quả { index } / { max }."
1715
1760
  },
1761
+ "retry_ebd5f8ba": {
1762
+ "message": "Thử Lại"
1763
+ },
1716
1764
  "reverse_turnstile_does_not_yield_7558be06": {
1717
1765
  "message": "Cửa Quay Ngược (Không Cong)"
1718
1766
  },
@@ -1863,6 +1911,9 @@ const locale = {
1863
1911
  "shortcut_911d6255": {
1864
1912
  "message": "Lối Tắt"
1865
1913
  },
1914
+ "show_all_967a90f0": {
1915
+ "message": "Hiển thị tất cả"
1916
+ },
1866
1917
  "show_audio_options_b489926b": {
1867
1918
  "message": "Hiển thị tùy chọn âm thanh"
1868
1919
  },
@@ -1986,6 +2037,9 @@ const locale = {
1986
2037
  "submit_a3cc6859": {
1987
2038
  "message": "Nộp"
1988
2039
  },
2040
+ "submitting_b90fac62": {
2041
+ "message": "Đang nộp..."
2042
+ },
1989
2043
  "subscript_59744f96": {
1990
2044
  "message": "Thu Nhỏ Nằm Trên"
1991
2045
  },
@@ -2385,6 +2439,9 @@ const locale = {
2385
2439
  "view_word_and_character_counts_a743dd0c": {
2386
2440
  "message": "Xem số lượng từ và ký tự"
2387
2441
  },
2442
+ "waiting_for_response_1efd0c50": {
2443
+ "message": "Đang đợi phản hồi"
2444
+ },
2388
2445
  "we_couldn_t_detect_a_working_microphone_connected__ceb71c40": {
2389
2446
  "message": "Chúng tôi không phát hiện được microphone đang hoạt động được kết nối với thiết bị của bạn."
2390
2447
  },
@@ -2403,6 +2460,9 @@ const locale = {
2403
2460
  "webpages_should_only_have_a_single_h1_which_is_aut_dc99189e": {
2404
2461
  "message": "Các trang web chỉ nên có một H1 duy nhất, được sử dụng tự động bởi Tiêu Đề của trang. Đầu đề đầu tiên trong nội dung của bạn phải là H2."
2405
2462
  },
2463
+ "what_would_you_like_to_do_6dc0d541": {
2464
+ "message": "Bạn muốn làm gì?"
2465
+ },
2406
2466
  "when_markup_is_used_that_visually_formats_items_as_f941fc1b": {
2407
2467
  "message": "Khi sử dụng đánh dấu mà định dạng trực quan các mục dưới dạng danh sách nhưng không cho biết mối quan hệ danh sách, người dùng có thể gặp khó khăn trong việc điều hướng thông tin."
2408
2468
  },
@@ -2433,6 +2493,9 @@ const locale = {
2433
2493
  "wreath_product_200b38ef": {
2434
2494
  "message": "Sản Phẩm Vòng Hoa"
2435
2495
  },
2496
+ "writing_assistant_a30ac16a": {
2497
+ "message": "Trợ Lý Viết"
2498
+ },
2436
2499
  "xi_149681d0": {
2437
2500
  "message": "Xi"
2438
2501
  },
@@ -54,6 +54,12 @@ const locale = {
54
54
  "adjacent_links_with_the_same_url_should_be_a_singl_7a1f7f6c": {
55
55
  "message": "具有相同 URL 的相邻链接应该为一个单链接。"
56
56
  },
57
+ "ai_response_9624e8e8": {
58
+ "message": "AI 响应"
59
+ },
60
+ "ai_tools_fda01177": {
61
+ "message": "AI 工具"
62
+ },
57
63
  "aleph_f4ffd155": {
58
64
  "message": "Aleph"
59
65
  },
@@ -90,6 +96,9 @@ const locale = {
90
96
  "an_error_occurred_making_a_network_request_d1bda348": {
91
97
  "message": "发出网络请求时出错"
92
98
  },
99
+ "an_error_occurred_processing_your_request_a3a38d84": {
100
+ "message": "处理您的请求时出错"
101
+ },
93
102
  "an_error_occurred_uploading_your_media_71f1444d": {
94
103
  "message": "上传媒体时出错。"
95
104
  },
@@ -333,6 +342,9 @@ const locale = {
333
342
  "complex_numbers_a543d004": {
334
343
  "message": "复数"
335
344
  },
345
+ "compose_44c904f4": {
346
+ "message": "撰写"
347
+ },
336
348
  "computer_1d7dfa6f": {
337
349
  "message": "计算机"
338
350
  },
@@ -360,6 +372,9 @@ const locale = {
360
372
  "coproduct_e7838082": {
361
373
  "message": "余积"
362
374
  },
375
+ "copy_9748f9f": {
376
+ "message": "复制"
377
+ },
363
378
  "copyright_holder_66ee111": {
364
379
  "message": "版权持有者:"
365
380
  },
@@ -528,6 +543,9 @@ const locale = {
528
543
  "disjoint_union_e74351a8": {
529
544
  "message": "不交并"
530
545
  },
546
+ "dislike_14befc48": {
547
+ "message": "不喜欢"
548
+ },
531
549
  "display_options_315aba85": {
532
550
  "message": "显示选项"
533
551
  },
@@ -603,7 +621,7 @@ const locale = {
603
621
  "edit_link_7f53bebb": {
604
622
  "message": "编辑链接"
605
623
  },
606
- "editor_statusbar_26ac81fc": {
624
+ "editor_status_bar_653f44ee": {
607
625
  "message": "编辑器状态栏"
608
626
  },
609
627
  "element_starting_with_start_91bf4c3b": {
@@ -657,6 +675,9 @@ const locale = {
657
675
  "enter_search_text_26cb4459": {
658
676
  "message": "输入搜索文本"
659
677
  },
678
+ "enter_text_8b35c65b": {
679
+ "message": "输入文本"
680
+ },
660
681
  "epsilon_54bb8afa": {
661
682
  "message": "Epsilon"
662
683
  },
@@ -720,6 +741,9 @@ const locale = {
720
741
  "failed_getting_file_contents_e9ea19f4": {
721
742
  "message": "文件内容获取失败"
722
743
  },
744
+ "failed_to_copy_response_d3def551": {
745
+ "message": "无法复制响应"
746
+ },
723
747
  "failed_to_retrieve_content_from_external_tool_5899c213": {
724
748
  "message": "无法从外部工具检索内容"
725
749
  },
@@ -897,6 +921,12 @@ const locale = {
897
921
  "height_69b03e15": {
898
922
  "message": "高度"
899
923
  },
924
+ "hello_please_describe_the_modifications_you_would__49b19837": {
925
+ "message": "您好。请描述您要对您撰写的内容进行的修改。"
926
+ },
927
+ "hello_please_describe_the_modifications_you_would__600dbbf0": {
928
+ "message": "您好。请描述您要对您的选择进行的修改。"
929
+ },
900
930
  "hexagon_d8468e0d": {
901
931
  "message": "六边形"
902
932
  },
@@ -924,6 +954,9 @@ const locale = {
924
954
  "i_hold_the_copyright_71ee91b1": {
925
955
  "message": "我持有版权"
926
956
  },
957
+ "i_m_sorry_but_i_cannot_find_the_ai_s_answer_67569d19": {
958
+ "message": "抱歉,找不到 AI 回答"
959
+ },
927
960
  "icon_215a1dc6": {
928
961
  "message": "图标"
929
962
  },
@@ -1170,6 +1203,9 @@ const locale = {
1170
1203
  "links_to_an_external_site_de74145d": {
1171
1204
  "message": "链接到外部网站。"
1172
1205
  },
1206
+ "lists_cd1336fc": {
1207
+ "message": "列表"
1208
+ },
1173
1209
  "lists_should_be_formatted_as_lists_f862de8d": {
1174
1210
  "message": "列表应使用列表格式。"
1175
1211
  },
@@ -1275,6 +1311,9 @@ const locale = {
1275
1311
  "miscellaneous_e9818229": {
1276
1312
  "message": "其他"
1277
1313
  },
1314
+ "modify_6b0b13e3": {
1315
+ "message": "修改"
1316
+ },
1278
1317
  "module_90d9fd32": {
1279
1318
  "message": "单元"
1280
1319
  },
@@ -1563,6 +1602,9 @@ const locale = {
1563
1602
  "please_allow_canvas_to_access_your_microphone_and__dc2c3079": {
1564
1603
  "message": "请允许 Canvas 访问您的麦克风和网络摄像头。"
1565
1604
  },
1605
+ "please_decribe_what_you_would_like_to_compose_27a51be5": {
1606
+ "message": "请描述您要撰写的内容。"
1607
+ },
1566
1608
  "plus_d43cd4ec": {
1567
1609
  "message": "加号"
1568
1610
  },
@@ -1707,12 +1749,18 @@ const locale = {
1707
1749
  "resize_ec83d538": {
1708
1750
  "message": "调整大小"
1709
1751
  },
1752
+ "response_copied_to_clipboard_130d66cd": {
1753
+ "message": "响应已复制到剪贴板"
1754
+ },
1710
1755
  "restore_auto_save_deccd84b": {
1711
1756
  "message": "是否恢复自动保存?"
1712
1757
  },
1713
1758
  "result_index_of_max_7db5ad8b": {
1714
1759
  "message": "结果 { index }/{ max }。"
1715
1760
  },
1761
+ "retry_ebd5f8ba": {
1762
+ "message": "重试"
1763
+ },
1716
1764
  "reverse_turnstile_does_not_yield_7558be06": {
1717
1765
  "message": "反十字转门(不产生)"
1718
1766
  },
@@ -1863,6 +1911,9 @@ const locale = {
1863
1911
  "shortcut_911d6255": {
1864
1912
  "message": "快捷方式"
1865
1913
  },
1914
+ "show_all_967a90f0": {
1915
+ "message": "显示全部"
1916
+ },
1866
1917
  "show_audio_options_b489926b": {
1867
1918
  "message": "显示音频选项"
1868
1919
  },
@@ -1986,6 +2037,9 @@ const locale = {
1986
2037
  "submit_a3cc6859": {
1987
2038
  "message": "提交"
1988
2039
  },
2040
+ "submitting_b90fac62": {
2041
+ "message": "正在提交..."
2042
+ },
1989
2043
  "subscript_59744f96": {
1990
2044
  "message": "下标"
1991
2045
  },
@@ -2385,6 +2439,9 @@ const locale = {
2385
2439
  "view_word_and_character_counts_a743dd0c": {
2386
2440
  "message": "查看字数和字符数"
2387
2441
  },
2442
+ "waiting_for_response_1efd0c50": {
2443
+ "message": "正在等待响应"
2444
+ },
2388
2445
  "we_couldn_t_detect_a_working_microphone_connected__ceb71c40": {
2389
2446
  "message": "我们未发现正常工作的麦克风连接到设备。"
2390
2447
  },
@@ -2403,6 +2460,9 @@ const locale = {
2403
2460
  "webpages_should_only_have_a_single_h1_which_is_aut_dc99189e": {
2404
2461
  "message": "网页应仅具有一个H1,自动供页面标题使用。内容中的第一个标题应该是H2。"
2405
2462
  },
2463
+ "what_would_you_like_to_do_6dc0d541": {
2464
+ "message": "您想做什么?"
2465
+ },
2406
2466
  "when_markup_is_used_that_visually_formats_items_as_f941fc1b": {
2407
2467
  "message": "如果对使用列表格式显示的项目使用标记,但不指示列表关系,用户可能在浏览信息时会遇到困难。"
2408
2468
  },
@@ -2433,6 +2493,9 @@ const locale = {
2433
2493
  "wreath_product_200b38ef": {
2434
2494
  "message": "圈积"
2435
2495
  },
2496
+ "writing_assistant_a30ac16a": {
2497
+ "message": "写作助手"
2498
+ },
2436
2499
  "xi_149681d0": {
2437
2500
  "message": "Xi"
2438
2501
  },