@instructure/canvas-rce 7.3.1 → 8.1.0

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 (155) hide show
  1. package/CHANGELOG.md +70 -0
  2. package/{es/rce/plugins/shared/ai_tools/index.js → __mocks__/@instructure/ui-media-player/_mockUiMediaPlayer.js} +4 -4
  3. package/__tests__/common/mimeClass.test.js +25 -1
  4. package/__tests__/rcs/api.test.js +280 -251
  5. package/es/canvasFileBrowser/FileBrowser.d.ts +2 -2
  6. package/es/canvasFileBrowser/FileBrowser.js +8 -7
  7. package/es/common/mimeClass.js +3 -1
  8. package/es/defaultTinymceConfig.js +47 -49
  9. package/es/enhance-user-content/enhance_user_content.js +6 -8
  10. package/es/enhance-user-content/index.d.ts +3 -1
  11. package/es/enhance-user-content/index.js +3 -1
  12. package/es/enhance-user-content/youtube_overlay.js +18 -0
  13. package/es/getThemeVars.d.ts +1 -1
  14. package/es/getThemeVars.js +23 -26
  15. package/es/rce/KeyboardShortcutModal.js +1 -1
  16. package/es/rce/RCE.d.ts +9 -0
  17. package/es/rce/RCE.js +4 -0
  18. package/es/rce/RCEGlobals.d.ts +2 -0
  19. package/es/rce/RCEGlobals.js +1 -0
  20. package/es/rce/RCEVariants.d.ts +1 -2
  21. package/es/rce/RCEVariants.js +1 -2
  22. package/es/rce/RCEWrapper.d.ts +6 -16
  23. package/es/rce/RCEWrapper.js +18 -87
  24. package/es/rce/RCEWrapper.utils.d.ts +1 -1
  25. package/es/rce/RCEWrapperProps.d.ts +2 -1
  26. package/es/rce/RCEWrapperProps.js +2 -1
  27. package/es/rce/StatusBar.d.ts +0 -1
  28. package/es/rce/StatusBar.js +3 -28
  29. package/es/rce/plugins/instructure_equation/EquationEditorModal/advancedOnlySyntax.d.ts +2 -1
  30. package/es/rce/plugins/instructure_equation/EquationEditorModal/advancedOnlySyntax.js +3 -1
  31. package/es/rce/plugins/instructure_equation/EquationEditorModal/index.d.ts +1 -0
  32. package/es/rce/plugins/instructure_equation/EquationEditorModal/index.js +12 -2
  33. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +2 -2
  34. package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +3 -3
  35. package/es/rce/plugins/instructure_icon_maker/svg/constants.d.ts +20 -5
  36. package/es/rce/plugins/instructure_icon_maker/svg/utils.d.ts +1 -1
  37. package/es/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +2 -2
  38. package/es/rce/plugins/instructure_image/ImageEmbedOptions.d.ts +0 -2
  39. package/es/rce/plugins/instructure_image/ImageEmbedOptions.js +2 -9
  40. package/es/rce/plugins/instructure_paste/plugin.js +18 -12
  41. package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialogModal.d.ts +1 -1
  42. package/es/rce/plugins/instructure_rce_external_tools/components/util/ToolLaunchIframe.d.ts +4 -0
  43. package/es/rce/plugins/instructure_rce_external_tools/components/util/ToolLaunchIframe.js +4 -0
  44. package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.d.ts +11 -2
  45. package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +92 -10
  46. package/es/rce/plugins/instructure_record/AudioOptionsTray/index.d.ts +13 -1
  47. package/es/rce/plugins/instructure_record/AudioOptionsTray/index.js +216 -24
  48. package/es/rce/plugins/instructure_record/MediaPanel/index.js +16 -5
  49. package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.d.ts +14 -13
  50. package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +110 -39
  51. package/es/rce/plugins/instructure_record/VideoOptionsTray/index.d.ts +11 -1
  52. package/es/rce/plugins/instructure_record/VideoOptionsTray/index.js +242 -67
  53. package/es/rce/plugins/instructure_record/clickCallback.js +19 -4
  54. package/es/rce/plugins/instructure_record/mediaTranslations.js +1 -1
  55. package/es/rce/plugins/instructure_record/playerLayoutOptions.d.ts +25 -0
  56. package/es/rce/plugins/instructure_record/playerLayoutOptions.js +91 -0
  57. package/es/rce/plugins/instructure_record/plugin.js +2 -5
  58. package/es/rce/plugins/instructure_record/utils.d.ts +3 -0
  59. package/es/rce/plugins/instructure_record/utils.js +31 -0
  60. package/es/rce/plugins/instructure_studio_media_options/plugin.js +82 -26
  61. package/es/rce/plugins/shared/ContentSelection.d.ts +6 -1
  62. package/es/rce/plugins/shared/ContentSelection.js +15 -6
  63. package/es/rce/plugins/shared/DimensionsInput/DimensionInput.js +1 -2
  64. package/es/rce/plugins/shared/DimensionsInput/index.js +11 -12
  65. package/es/rce/plugins/shared/DimensionsInput/useDimensionsState.d.ts +1 -1
  66. package/es/rce/plugins/shared/DimensionsInput/useDimensionsState.js +4 -3
  67. package/es/rce/plugins/shared/StudioLtiSupportUtils.d.ts +27 -6
  68. package/es/rce/plugins/shared/StudioLtiSupportUtils.js +82 -13
  69. package/es/rce/plugins/shared/Upload/UploadFile.js +1 -8
  70. package/es/rce/style.d.ts +2 -1
  71. package/es/rce/style.js +4 -2
  72. package/es/rcs/api.d.ts +5 -10
  73. package/es/rcs/api.js +15 -21
  74. package/es/rcs/fake.d.ts +1 -7
  75. package/es/rcs/fake.js +1 -47
  76. package/es/sidebar/actions/media.d.ts +19 -6
  77. package/es/sidebar/actions/media.js +17 -4
  78. package/es/sidebar/actions/upload.d.ts +3 -3
  79. package/es/sidebar/actions/upload.js +9 -9
  80. package/es/sidebar/containers/Sidebar.js +0 -2
  81. package/es/sidebar/containers/sidebarHandlers.d.ts +2 -4
  82. package/es/sidebar/containers/sidebarHandlers.js +2 -5
  83. package/es/sidebar/reducers/index.d.ts +0 -1
  84. package/es/sidebar/reducers/index.js +0 -2
  85. package/es/sidebar/store/initialState.d.ts +0 -1
  86. package/es/sidebar/store/initialState.js +0 -5
  87. package/es/translations/locales/ar.js +65 -80
  88. package/es/translations/locales/ca.js +65 -80
  89. package/es/translations/locales/cy.js +65 -80
  90. package/es/translations/locales/da-x-k12.js +65 -80
  91. package/es/translations/locales/da.js +65 -80
  92. package/es/translations/locales/de.js +65 -80
  93. package/es/translations/locales/el.js +0 -9
  94. package/es/translations/locales/en-AU-x-unimelb.js +65 -80
  95. package/es/translations/locales/en-GB-x-ukhe.js +65 -80
  96. package/es/translations/locales/en.js +61 -79
  97. package/es/translations/locales/en_AU.js +65 -80
  98. package/es/translations/locales/en_CA.js +65 -80
  99. package/es/translations/locales/en_CY.js +65 -80
  100. package/es/translations/locales/en_GB.js +65 -80
  101. package/es/translations/locales/es.js +65 -80
  102. package/es/translations/locales/es_ES.js +65 -80
  103. package/es/translations/locales/fa_IR.js +0 -9
  104. package/es/translations/locales/fi.js +65 -80
  105. package/es/translations/locales/fr.js +65 -80
  106. package/es/translations/locales/fr_CA.js +65 -80
  107. package/es/translations/locales/ga.js +65 -80
  108. package/es/translations/locales/he.js +0 -9
  109. package/es/translations/locales/hi.js +65 -80
  110. package/es/translations/locales/ht.js +65 -80
  111. package/es/translations/locales/hu.js +0 -36
  112. package/es/translations/locales/hy.js +0 -9
  113. package/es/translations/locales/id.js +65 -80
  114. package/es/translations/locales/is.js +65 -80
  115. package/es/translations/locales/it.js +65 -80
  116. package/es/translations/locales/ja.js +65 -80
  117. package/es/translations/locales/ko.js +2455 -133
  118. package/es/translations/locales/mi.js +65 -80
  119. package/es/translations/locales/ms.js +65 -80
  120. package/es/translations/locales/nb-x-k12.js +65 -80
  121. package/es/translations/locales/nb.js +65 -80
  122. package/es/translations/locales/nl.js +66 -81
  123. package/es/translations/locales/nn.js +0 -36
  124. package/es/translations/locales/pl.js +65 -80
  125. package/es/translations/locales/pt.js +65 -80
  126. package/es/translations/locales/pt_BR.js +65 -80
  127. package/es/translations/locales/ru.js +65 -80
  128. package/es/translations/locales/sl.js +65 -80
  129. package/es/translations/locales/sv-x-k12.js +65 -80
  130. package/es/translations/locales/sv.js +65 -80
  131. package/es/translations/locales/th.js +65 -80
  132. package/es/translations/locales/tr.js +1962 -18
  133. package/es/translations/locales/uk_UA.js +0 -9
  134. package/es/translations/locales/vi.js +65 -80
  135. package/es/translations/locales/zh-Hans.js +65 -80
  136. package/es/translations/locales/zh-Hant.js +65 -80
  137. package/es/translations/locales/zh.js +65 -80
  138. package/es/translations/locales/zh_HK.js +65 -80
  139. package/eslint.config.js +16 -147
  140. package/jest/jest-setup.js +1 -0
  141. package/jest.config.js +2 -0
  142. package/oxlint.json +84 -0
  143. package/package.json +87 -62
  144. package/tsconfig.json +3 -2
  145. package/es/rce/plugins/shared/ai_tools/AIResponseModal.d.ts +0 -10
  146. package/es/rce/plugins/shared/ai_tools/AIResponseModal.js +0 -67
  147. package/es/rce/plugins/shared/ai_tools/AIToolsTray.d.ts +0 -18
  148. package/es/rce/plugins/shared/ai_tools/AIToolsTray.js +0 -489
  149. package/es/rce/plugins/shared/ai_tools/aiicons.d.ts +0 -7
  150. package/es/rce/plugins/shared/ai_tools/aiicons.js +0 -60
  151. package/es/rce/plugins/shared/ai_tools/index.d.ts +0 -3
  152. package/es/sidebar/actions/flickr.d.ts +0 -20
  153. package/es/sidebar/actions/flickr.js +0 -60
  154. package/es/sidebar/reducers/flickr.d.ts +0 -1
  155. package/es/sidebar/reducers/flickr.js +0 -49
@@ -36,9 +36,6 @@ const locale = {
36
36
  "add_alt_text_for_the_image_48cd88aa": {
37
37
  "message": "Ajoute lòt tèks pou imaj la"
38
38
  },
39
- "add_another_f4e50d57": {
40
- "message": "Ajoute yon lòt"
41
- },
42
39
  "add_cc_subtitles_55f0394e": {
43
40
  "message": "Ajoute CC/Soutit"
44
41
  },
@@ -60,12 +57,6 @@ const locale = {
60
57
  "adjacent_links_with_the_same_url_should_be_a_singl_7a1f7f6c": {
61
58
  "message": "Lyen Adjasan ak menm URL yo dwe yon lyen inik."
62
59
  },
63
- "ai_response_9624e8e8": {
64
- "message": "Repons AI"
65
- },
66
- "ai_tools_fda01177": {
67
- "message": "Zouti AI"
68
- },
69
60
  "aleph_f4ffd155": {
70
61
  "message": "Aleph"
71
62
  },
@@ -81,6 +72,12 @@ const locale = {
81
72
  "all_apps_a50dea49": {
82
73
  "message": "Tout App yo"
83
74
  },
75
+ "allow_media_download_16dcf2bd": {
76
+ "message": "Pèmèt telechajman medya"
77
+ },
78
+ "allow_transcript_download_3fa239f0": {
79
+ "message": "Pèmèt telechajman transkripsyon"
80
+ },
84
81
  "alpha_15d59033": {
85
82
  "message": "Αlpha"
86
83
  },
@@ -102,9 +99,6 @@ const locale = {
102
99
  "an_error_occurred_making_a_network_request_d1bda348": {
103
100
  "message": "Gen yon erè ki fèt pandan demann rezo a"
104
101
  },
105
- "an_error_occurred_processing_your_request_a3a38d84": {
106
- "message": "Gen yon erè ki fèt nan tretman demann ou an"
107
- },
108
102
  "an_error_occurred_uploading_your_media_71f1444d": {
109
103
  "message": "Gen yon erè ki pase pandan chajman medya ou a."
110
104
  },
@@ -243,6 +237,9 @@ const locale = {
243
237
  "cap_product_3a5265a6": {
244
238
  "message": "Kaskèt Pwodui"
245
239
  },
240
+ "caption_manager_aae0906f": {
241
+ "message": "Jesyonè Soutit"
242
+ },
246
243
  "center_align_e68d9997": {
247
244
  "message": "Aliyen nan Sant"
248
245
  },
@@ -264,6 +261,9 @@ const locale = {
264
261
  "change_text_color_1aecb912": {
265
262
  "message": "Chanje koulè tèks"
266
263
  },
264
+ "changes_will_apply_after_you_save_this_page_fb324e9d": {
265
+ "message": "Chanjman yo ap aplike apre ou sovgade paj sa a."
266
+ },
267
267
  "changes_you_made_may_not_be_saved_4e8db973": {
268
268
  "message": "Chanjman ou fè yo gendwa pa anrejistre."
269
269
  },
@@ -324,6 +324,9 @@ const locale = {
324
324
  "close_d634289d": {
325
325
  "message": "Fèmen"
326
326
  },
327
+ "close_keyboard_shortcuts_modal_291ce074": {
328
+ "message": "Fèmen Modal Rakousi Klavye a"
329
+ },
327
330
  "closed_caption_file_must_be_less_than_maxkb_kb_5880f752": {
328
331
  "message": "Fichye soutit la dwe mwens pase { maxKb } kb"
329
332
  },
@@ -369,9 +372,6 @@ const locale = {
369
372
  "complex_numbers_a543d004": {
370
373
  "message": "Nonm Konplèks"
371
374
  },
372
- "compose_44c904f4": {
373
- "message": "Konpoze"
374
- },
375
375
  "computer_1d7dfa6f": {
376
376
  "message": "Òdinatè"
377
377
  },
@@ -402,9 +402,6 @@ const locale = {
402
402
  "coproduct_e7838082": {
403
403
  "message": "Kopwodui"
404
404
  },
405
- "copy_9748f9f": {
406
- "message": "Kopye"
407
- },
408
405
  "copyright_holder_66ee111": {
409
406
  "message": "Titilè Dwa Otè:"
410
407
  },
@@ -474,8 +471,8 @@ const locale = {
474
471
  "custom_6979cd81": {
475
472
  "message": "Pèsonalize"
476
473
  },
477
- "custom_width_and_height_pixels_946eea7c": {
478
- "message": "Lajè ak wotè pèsonalize (Piksèl)"
474
+ "custom_dimensions_96596dba": {
475
+ "message": "Dimansyon Pèsonalize"
479
476
  },
480
477
  "cyan_c1d5f68a": {
481
478
  "message": "Blesyèl"
@@ -531,9 +528,6 @@ const locale = {
531
528
  "describe_the_type_ff448da5": {
532
529
  "message": "(Dekri { TYPE })"
533
530
  },
534
- "describe_the_video_2fe8f46a": {
535
- "message": "(Dekri videyo a)"
536
- },
537
531
  "description_436c48d7": {
538
532
  "message": "Deskripsyon"
539
533
  },
@@ -555,9 +549,6 @@ const locale = {
555
549
  "dimension_type_f5fa9170": {
556
550
  "message": "Tip Dimansyon"
557
551
  },
558
- "dimensions_45ddb7b7": {
559
- "message": "Dimansyon"
560
- },
561
552
  "directionality_26ae9e08": {
562
553
  "message": "Direksyonalite"
563
554
  },
@@ -579,9 +570,6 @@ const locale = {
579
570
  "disjoint_union_e74351a8": {
580
571
  "message": "Inyon Disosye"
581
572
  },
582
- "dislike_14befc48": {
583
- "message": "Pa renmen"
584
- },
585
573
  "display_options_315aba85": {
586
574
  "message": "Opsyon Afichaj"
587
575
  },
@@ -708,6 +696,9 @@ const locale = {
708
696
  "english_icon_25bfe845": {
709
697
  "message": "Ikòn Anglè"
710
698
  },
699
+ "enter_a_media_title_81b490ec": {
700
+ "message": "Antre tit yon medya"
701
+ },
711
702
  "enter_at_least_3_characters_to_search_4f037ee0": {
712
703
  "message": "Antre omwen 3 karaktè pou ka chèche"
713
704
  },
@@ -717,9 +708,6 @@ const locale = {
717
708
  "enter_search_text_26cb4459": {
718
709
  "message": "Antre tèks rechèch la"
719
710
  },
720
- "enter_text_8b35c65b": {
721
- "message": "Antre tèks"
722
- },
723
711
  "epsilon_54bb8afa": {
724
712
  "message": "Epsilon"
725
713
  },
@@ -771,6 +759,9 @@ const locale = {
771
759
  "extra_large_b6cdf1ff": {
772
760
  "message": "Ekxtra Laj"
773
761
  },
762
+ "extra_large_width_x_height_px_915571fa": {
763
+ "message": "Extra Laj ({ width } x { height }px)"
764
+ },
774
765
  "extra_small_9ae33252": {
775
766
  "message": "Piti Anpil"
776
767
  },
@@ -786,15 +777,18 @@ const locale = {
786
777
  "failed_getting_file_contents_e9ea19f4": {
787
778
  "message": "Echèk rekiperasyon kontni fichye yo"
788
779
  },
789
- "failed_to_copy_response_d3def551": {
790
- "message": "Echwe pou kopye repons"
791
- },
792
780
  "failed_to_retrieve_content_from_external_tool_5899c213": {
793
781
  "message": "Echwe pou rekipere kontni nan zouti ekstèn nan"
794
782
  },
795
783
  "file_name_8fd421ff": {
796
784
  "message": "Non fichye"
797
785
  },
786
+ "file_preview_21667a6e": {
787
+ "message": "Apèsi fichye"
788
+ },
789
+ "file_preview_for_filename_ab314195": {
790
+ "message": "Apèsi fichye pou { fileName }"
791
+ },
798
792
  "file_storage_quota_exceeded_b7846cd1": {
799
793
  "message": "Quota estokaj fichye a depase"
800
794
  },
@@ -975,12 +969,6 @@ const locale = {
975
969
  "height_69b03e15": {
976
970
  "message": "Wotè"
977
971
  },
978
- "hello_please_describe_the_modifications_you_would__49b19837": {
979
- "message": "Bonjou. Tanpri, dekri chanjman ou ta renmen fè nan konpozisyon ou an."
980
- },
981
- "hello_please_describe_the_modifications_you_would__600dbbf0": {
982
- "message": "Bonjou. Tanpri, dekri chanjman ou ta renmen fè nan seleksyon ou an."
983
- },
984
972
  "hexagon_d8468e0d": {
985
973
  "message": "Egzagòn"
986
974
  },
@@ -996,6 +984,9 @@ const locale = {
996
984
  "home_351838cd": {
997
985
  "message": "Akèy"
998
986
  },
987
+ "how_to_request_and_edit_captions_a49a9c6b": {
988
+ "message": "Kijan pou mande ak modifye soutit yo?"
989
+ },
999
990
  "html_code_editor_fd967a44": {
1000
991
  "message": "editè kòd html"
1001
992
  },
@@ -1008,9 +999,6 @@ const locale = {
1008
999
  "i_hold_the_copyright_71ee91b1": {
1009
1000
  "message": "Mwen gen dwa dotè a"
1010
1001
  },
1011
- "i_m_sorry_but_i_cannot_find_the_ai_s_answer_67569d19": {
1012
- "message": "Dezole, mwen paka jwenn reponn AI a"
1013
- },
1014
1002
  "icon_215a1dc6": {
1015
1003
  "message": "Ikòn"
1016
1004
  },
@@ -1182,6 +1170,9 @@ const locale = {
1182
1170
  "large_text_e7ba08cd": {
1183
1171
  "message": "Tèks Laj"
1184
1172
  },
1173
+ "large_width_x_height_px_c61c2fd": {
1174
+ "message": "Laj ({ width } x { height }px)"
1175
+ },
1185
1176
  "learn_ad3b3505": {
1186
1177
  "message": "Aprann"
1187
1178
  },
@@ -1326,6 +1317,9 @@ const locale = {
1326
1317
  "loading_preview_9f077aa1": {
1327
1318
  "message": "Chajman apèsi"
1328
1319
  },
1320
+ "lock_speed_at_1x_57d4f815": {
1321
+ "message": "Fikse vitès la ak 1x"
1322
+ },
1329
1323
  "locked_762f138b": {
1330
1324
  "message": "Bloke"
1331
1325
  },
@@ -1359,12 +1353,18 @@ const locale = {
1359
1353
  "media_file_is_processing_please_try_again_later_58a6d49": {
1360
1354
  "message": "Fichye miltimedya an tretman. Tanpri eseye ankò."
1361
1355
  },
1356
+ "media_options_saved_560c4ec8": {
1357
+ "message": "Opsyon medya yo anrejistre."
1358
+ },
1362
1359
  "media_title_2112243b": {
1363
1360
  "message": "Tit Medya"
1364
1361
  },
1365
1362
  "medium_5a8e9ead": {
1366
1363
  "message": "Mwayen"
1367
1364
  },
1365
+ "medium_width_x_height_px_b076f6b6": {
1366
+ "message": "Mwayen ({ width } x { height }px)"
1367
+ },
1368
1368
  "merge_links_2478df96": {
1369
1369
  "message": "Fizyone lyen"
1370
1370
  },
@@ -1395,9 +1395,6 @@ const locale = {
1395
1395
  "miscellaneous_e9818229": {
1396
1396
  "message": "Divès"
1397
1397
  },
1398
- "modify_6b0b13e3": {
1399
- "message": "Modifye"
1400
- },
1401
1398
  "module_90d9fd32": {
1402
1399
  "message": "Modil"
1403
1400
  },
@@ -1701,15 +1698,15 @@ const locale = {
1701
1698
  "play_media_comment_by_name_from_createdat_c230123d": {
1702
1699
  "message": "Jwe kòmantè medya pa { name } de { createdAt }."
1703
1700
  },
1701
+ "player_layout_14e09a29": {
1702
+ "message": "Aranjman jwè yo"
1703
+ },
1704
1704
  "please_allow_canvas_to_access_your_microphone_and__dc2c3079": {
1705
1705
  "message": "Tanpri pèmèt Canvas gen aksè a mikwofòn e kamera ou a."
1706
1706
  },
1707
1707
  "please_choose_a_file_c2449cc": {
1708
1708
  "message": "Chwazi yon fichye, tanpri"
1709
1709
  },
1710
- "please_decribe_what_you_would_like_to_compose_27a51be5": {
1711
- "message": "Tanpri dekri kisa w ta renmen konpoze."
1712
- },
1713
1710
  "please_enter_a_file_name_f159edc1": {
1714
1711
  "message": "Tanpri antre yon non fichye."
1715
1712
  },
@@ -1845,9 +1842,6 @@ const locale = {
1845
1842
  "remove_link_d1f2f4d0": {
1846
1843
  "message": "Elimine Lyen"
1847
1844
  },
1848
- "remove_studio_media_f913e502": {
1849
- "message": "Elimine Medya Studio"
1850
- },
1851
1845
  "replace_all_d3d68b3": {
1852
1846
  "message": "Ranplase Tout"
1853
1847
  },
@@ -1875,18 +1869,12 @@ const locale = {
1875
1869
  "resize_ec83d538": {
1876
1870
  "message": "Redimansyone"
1877
1871
  },
1878
- "response_copied_to_clipboard_130d66cd": {
1879
- "message": "Repons kopye nan près papye"
1880
- },
1881
1872
  "restore_auto_save_deccd84b": {
1882
1873
  "message": "Restore anrejistreman otomatik?"
1883
1874
  },
1884
1875
  "result_index_of_max_7db5ad8b": {
1885
1876
  "message": "Rezilta { index } sou { max }."
1886
1877
  },
1887
- "retry_ebd5f8ba": {
1888
- "message": "Re eseye"
1889
- },
1890
1878
  "reverse_turnstile_does_not_yield_7558be06": {
1891
1879
  "message": "Tounikè Envèse (pa sede)"
1892
1880
  },
@@ -2037,23 +2025,17 @@ const locale = {
2037
2025
  "shortcut_911d6255": {
2038
2026
  "message": "Rakousi"
2039
2027
  },
2040
- "show_all_967a90f0": {
2041
- "message": "Afiche tout"
2042
- },
2043
- "show_audio_options_b489926b": {
2044
- "message": "Afiche opsyon odyo"
2045
- },
2046
2028
  "show_image_options_1e2ecc6b": {
2047
2029
  "message": "Afiche opsyon imaj"
2048
2030
  },
2049
2031
  "show_link_options_545338fd": {
2050
2032
  "message": "Afiche opsyon lyen"
2051
2033
  },
2052
- "show_studio_media_options_a0c748c6": {
2053
- "message": "Afiche opsyon estidyo medya a"
2034
+ "show_rolling_transcript_c1481744": {
2035
+ "message": "Montre transkripsyon k ap woule"
2054
2036
  },
2055
- "show_video_options_6ed3721a": {
2056
- "message": "Afiche opsyon videyo"
2037
+ "show_rolling_transcript_d353aca4": {
2038
+ "message": "Montre Transkripsyon k ap Woule"
2057
2039
  },
2058
2040
  "sighted_users_browse_web_pages_quickly_looking_for_1d4db0c1": {
2059
2041
  "message": "Itilizatè prevwayan yo navige sou paj wèb yo byen vit, pou yo ka chèche antèt ki gwo oswa an gra. Itilizatè lektè ekran yo konte sou antèt yo pou konpreyansyon kontekstyèl. Antèt yo dwe itilize estrikti ki apwopriye."
@@ -2082,6 +2064,9 @@ const locale = {
2082
2064
  "small_b070434a": {
2083
2065
  "message": "Piti"
2084
2066
  },
2067
+ "small_width_x_height_px_359acd38": {
2068
+ "message": "Piti ({ width } x { height }px)"
2069
+ },
2085
2070
  "solid_circle_9f061dfc": {
2086
2071
  "message": "Sèk Solid"
2087
2072
  },
@@ -2343,6 +2328,9 @@ const locale = {
2343
2328
  "timebar_a4d18443": {
2344
2329
  "message": "Ba a lè"
2345
2330
  },
2331
+ "title_can_t_be_blank_eb4021d7": {
2332
+ "message": "Tit la pa ka vid"
2333
+ },
2346
2334
  "title_ee03d132": {
2347
2335
  "message": "Tit"
2348
2336
  },
@@ -2364,6 +2352,9 @@ const locale = {
2364
2352
  "top_66e0adb6": {
2365
2353
  "message": "Anlè"
2366
2354
  },
2355
+ "transcript_panel_is_available_at_widths_above_720p_1cf94c0d": {
2356
+ "message": "Panèl transkripsyon an disponib nan lajè ki depase 720px."
2357
+ },
2367
2358
  "tray_839df38a": {
2368
2359
  "message": "Plato"
2369
2360
  },
@@ -2397,6 +2388,9 @@ const locale = {
2397
2388
  "unpublished_dfd8801": {
2398
2389
  "message": "pa pibliye"
2399
2390
  },
2391
+ "unsaved_changes_will_be_lost_f977252a": {
2392
+ "message": "W ap pèdi tout chanjman ki pa sovgade yo."
2393
+ },
2400
2394
  "untitled_16aa4f2b": {
2401
2395
  "message": "San tit"
2402
2396
  },
@@ -2520,9 +2514,6 @@ const locale = {
2520
2514
  "used_by_screen_readers_to_describe_the_content_of__b1e76d9e": {
2521
2515
  "message": "Itilize pa lektè ekran yo pou dekri kontni yon imaj"
2522
2516
  },
2523
- "used_by_screen_readers_to_describe_the_video_37ebad25": {
2524
- "message": "Itilize pa lektè ekran pou dekri videyo a"
2525
- },
2526
2517
  "user_documents_c206e61f": {
2527
2518
  "message": "Dokiman Itilizatè"
2528
2519
  },
@@ -2580,8 +2571,8 @@ const locale = {
2580
2571
  "view_word_and_character_counts_a743dd0c": {
2581
2572
  "message": "Afiche kantite mo ak karaktè"
2582
2573
  },
2583
- "waiting_for_response_1efd0c50": {
2584
- "message": "Ap tann repons"
2574
+ "viewer_restrictions_e14274c9": {
2575
+ "message": "Restriksyon Afichaj"
2585
2576
  },
2586
2577
  "we_couldn_t_detect_a_working_microphone_connected__ceb71c40": {
2587
2578
  "message": "Nou pa detekte yon mikwo ki an fonksyon sou aparèy ou a."
@@ -2601,9 +2592,6 @@ const locale = {
2601
2592
  "webpages_should_only_have_a_single_h1_which_is_aut_dc99189e": {
2602
2593
  "message": "Paj wèb yo dwe gen yon sèl H1 Tit paj la ap itilize otomatikman. Premye antèt nan kontni w lan ta dwe yon H2."
2603
2594
  },
2604
- "what_would_you_like_to_do_6dc0d541": {
2605
- "message": "Kisa w ta renmen fè?"
2606
- },
2607
2595
  "when_markup_is_used_that_visually_formats_items_as_f941fc1b": {
2608
2596
  "message": "Lè yo itilize balizaj pou yo ka fòmate eleman yo vizyèlman tankou lis men ki pa di relasyon lis la, itilizatè yo ka rankontre difikilte pou navige nan enfómasyon yo."
2609
2597
  },
@@ -2634,9 +2622,6 @@ const locale = {
2634
2622
  "wreath_product_200b38ef": {
2635
2623
  "message": "Pwodui Kouwòn"
2636
2624
  },
2637
- "writing_assistant_a30ac16a": {
2638
- "message": "Asistan Redaksyon"
2639
- },
2640
2625
  "xi_149681d0": {
2641
2626
  "message": "Xi"
2642
2627
  },
@@ -37,9 +37,6 @@ const locale = {
37
37
  "add_alt_text_for_the_image_48cd88aa": {
38
38
  "message": "Adjon hozzá alternatív szöveget a képhez"
39
39
  },
40
- "add_another_f4e50d57": {
41
- "message": "Másik hozzáadása"
42
- },
43
40
  "add_cc_subtitles_55f0394e": {
44
41
  "message": "Felirat hozzáadása"
45
42
  },
@@ -331,9 +328,6 @@ const locale = {
331
328
  "complex_numbers_a543d004": {
332
329
  "message": "Komplex számok"
333
330
  },
334
- "compose_44c904f4": {
335
- "message": "Összeállítani"
336
- },
337
331
  "computer_1d7dfa6f": {
338
332
  "message": "Számítógép"
339
333
  },
@@ -361,9 +355,6 @@ const locale = {
361
355
  "coproduct_e7838082": {
362
356
  "message": "Társtermék"
363
357
  },
364
- "copy_9748f9f": {
365
- "message": "Másolás"
366
- },
367
358
  "copyright_holder_66ee111": {
368
359
  "message": "Jog tulajdonosa:"
369
360
  },
@@ -433,9 +424,6 @@ const locale = {
433
424
  "custom_6979cd81": {
434
425
  "message": "Egyéni"
435
426
  },
436
- "custom_width_and_height_pixels_946eea7c": {
437
- "message": "Egyéni szélesség és magasság (képpont)"
438
- },
439
427
  "cyan_c1d5f68a": {
440
428
  "message": "Cián"
441
429
  },
@@ -484,9 +472,6 @@ const locale = {
484
472
  "describe_the_icon_f6a18823": {
485
473
  "message": "(Írja le az ikont)"
486
474
  },
487
- "describe_the_video_2fe8f46a": {
488
- "message": "(A videó leírása)"
489
- },
490
475
  "description_436c48d7": {
491
476
  "message": "Leírás"
492
477
  },
@@ -508,9 +493,6 @@ const locale = {
508
493
  "dimension_type_f5fa9170": {
509
494
  "message": "Méret típusa"
510
495
  },
511
- "dimensions_45ddb7b7": {
512
- "message": "Méretek"
513
- },
514
496
  "directionality_26ae9e08": {
515
497
  "message": "Irányítottság"
516
498
  },
@@ -1693,9 +1675,6 @@ const locale = {
1693
1675
  "result_index_of_max_7db5ad8b": {
1694
1676
  "message": "Eredmény: { index } / { max }."
1695
1677
  },
1696
- "retry_ebd5f8ba": {
1697
- "message": "Újra"
1698
- },
1699
1678
  "reverse_turnstile_does_not_yield_7558be06": {
1700
1679
  "message": "Reverse Turnstile (Does Not Yield)"
1701
1680
  },
@@ -1846,24 +1825,12 @@ const locale = {
1846
1825
  "shortcut_911d6255": {
1847
1826
  "message": "Parancsikon"
1848
1827
  },
1849
- "show_all_967a90f0": {
1850
- "message": "Mindent megmutat"
1851
- },
1852
- "show_audio_options_b489926b": {
1853
- "message": "Hangbeállítások megjelenítése"
1854
- },
1855
1828
  "show_image_options_1e2ecc6b": {
1856
1829
  "message": "Képbeállítások mutatása"
1857
1830
  },
1858
1831
  "show_link_options_545338fd": {
1859
1832
  "message": "Linkbeállítások mutatása"
1860
1833
  },
1861
- "show_studio_media_options_a0c748c6": {
1862
- "message": "A Studio médiabeállításainak megjelenítése"
1863
- },
1864
- "show_video_options_6ed3721a": {
1865
- "message": "Videóbeállítások mutatása"
1866
- },
1867
1834
  "sighted_users_browse_web_pages_quickly_looking_for_1d4db0c1": {
1868
1835
  "message": "A látó felhasználók gyorsan böngésznek a weboldalakon, nagy vagy félkövér fejléceket keresve. A képernyőolvasó felhasználói a fejlécekre hagyatkoznak a kontextus megértéséhez. A fejléceknek a megfelelő szerkezetet kell használniuk."
1869
1836
  },
@@ -2305,9 +2272,6 @@ const locale = {
2305
2272
  "used_by_screen_readers_to_describe_the_content_of__b1e76d9e": {
2306
2273
  "message": "Képernyőolvasók által egy kép tartalmának leírásához használt szöveg"
2307
2274
  },
2308
- "used_by_screen_readers_to_describe_the_video_37ebad25": {
2309
- "message": "Képernyőolvasók által a videó leírásához használt szöveg"
2310
- },
2311
2275
  "user_documents_c206e61f": {
2312
2276
  "message": "A felhasználó dokumentumai"
2313
2277
  },
@@ -97,9 +97,6 @@ const locale = {
97
97
  "content_type_2cf90d95": {
98
98
  "message": "Բովանդակության տեսակ"
99
99
  },
100
- "copy_9748f9f": {
101
- "message": "Պատճենել"
102
- },
103
100
  "copyright_holder_66ee111": {
104
101
  "message": "Հեղինակային իրավունք ունեցող անձը՝"
105
102
  },
@@ -136,9 +133,6 @@ const locale = {
136
133
  "details_98a31b68": {
137
134
  "message": "Մանրամասներ"
138
135
  },
139
- "dimensions_45ddb7b7": {
140
- "message": "Չափերը"
141
- },
142
136
  "discussion_6719c51d": {
143
137
  "message": "Քննարկում"
144
138
  },
@@ -382,9 +376,6 @@ const locale = {
382
376
  "reset_95a81614": {
383
377
  "message": "Սկզբնական Վիճակին Բերել"
384
378
  },
385
- "retry_ebd5f8ba": {
386
- "message": "Փորձել կրկին"
387
- },
388
379
  "rich_content_editor_2708ef21": {
389
380
  "message": "Ֆորմատավորված տեքստի խմբագիր"
390
381
  },