@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.
- package/CHANGELOG.md +70 -0
- package/{es/rce/plugins/shared/ai_tools/index.js → __mocks__/@instructure/ui-media-player/_mockUiMediaPlayer.js} +4 -4
- package/__tests__/common/mimeClass.test.js +25 -1
- package/__tests__/rcs/api.test.js +280 -251
- package/es/canvasFileBrowser/FileBrowser.d.ts +2 -2
- package/es/canvasFileBrowser/FileBrowser.js +8 -7
- package/es/common/mimeClass.js +3 -1
- package/es/defaultTinymceConfig.js +47 -49
- package/es/enhance-user-content/enhance_user_content.js +6 -8
- package/es/enhance-user-content/index.d.ts +3 -1
- package/es/enhance-user-content/index.js +3 -1
- package/es/enhance-user-content/youtube_overlay.js +18 -0
- package/es/getThemeVars.d.ts +1 -1
- package/es/getThemeVars.js +23 -26
- package/es/rce/KeyboardShortcutModal.js +1 -1
- package/es/rce/RCE.d.ts +9 -0
- package/es/rce/RCE.js +4 -0
- package/es/rce/RCEGlobals.d.ts +2 -0
- package/es/rce/RCEGlobals.js +1 -0
- package/es/rce/RCEVariants.d.ts +1 -2
- package/es/rce/RCEVariants.js +1 -2
- package/es/rce/RCEWrapper.d.ts +6 -16
- package/es/rce/RCEWrapper.js +18 -87
- package/es/rce/RCEWrapper.utils.d.ts +1 -1
- package/es/rce/RCEWrapperProps.d.ts +2 -1
- package/es/rce/RCEWrapperProps.js +2 -1
- package/es/rce/StatusBar.d.ts +0 -1
- package/es/rce/StatusBar.js +3 -28
- package/es/rce/plugins/instructure_equation/EquationEditorModal/advancedOnlySyntax.d.ts +2 -1
- package/es/rce/plugins/instructure_equation/EquationEditorModal/advancedOnlySyntax.js +3 -1
- package/es/rce/plugins/instructure_equation/EquationEditorModal/index.d.ts +1 -0
- package/es/rce/plugins/instructure_equation/EquationEditorModal/index.js +12 -2
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +2 -2
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +3 -3
- package/es/rce/plugins/instructure_icon_maker/svg/constants.d.ts +20 -5
- package/es/rce/plugins/instructure_icon_maker/svg/utils.d.ts +1 -1
- package/es/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +2 -2
- package/es/rce/plugins/instructure_image/ImageEmbedOptions.d.ts +0 -2
- package/es/rce/plugins/instructure_image/ImageEmbedOptions.js +2 -9
- package/es/rce/plugins/instructure_paste/plugin.js +18 -12
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialogModal.d.ts +1 -1
- package/es/rce/plugins/instructure_rce_external_tools/components/util/ToolLaunchIframe.d.ts +4 -0
- package/es/rce/plugins/instructure_rce_external_tools/components/util/ToolLaunchIframe.js +4 -0
- package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.d.ts +11 -2
- package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +92 -10
- package/es/rce/plugins/instructure_record/AudioOptionsTray/index.d.ts +13 -1
- package/es/rce/plugins/instructure_record/AudioOptionsTray/index.js +216 -24
- package/es/rce/plugins/instructure_record/MediaPanel/index.js +16 -5
- package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.d.ts +14 -13
- package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +110 -39
- package/es/rce/plugins/instructure_record/VideoOptionsTray/index.d.ts +11 -1
- package/es/rce/plugins/instructure_record/VideoOptionsTray/index.js +242 -67
- package/es/rce/plugins/instructure_record/clickCallback.js +19 -4
- package/es/rce/plugins/instructure_record/mediaTranslations.js +1 -1
- package/es/rce/plugins/instructure_record/playerLayoutOptions.d.ts +25 -0
- package/es/rce/plugins/instructure_record/playerLayoutOptions.js +91 -0
- package/es/rce/plugins/instructure_record/plugin.js +2 -5
- package/es/rce/plugins/instructure_record/utils.d.ts +3 -0
- package/es/rce/plugins/instructure_record/utils.js +31 -0
- package/es/rce/plugins/instructure_studio_media_options/plugin.js +82 -26
- package/es/rce/plugins/shared/ContentSelection.d.ts +6 -1
- package/es/rce/plugins/shared/ContentSelection.js +15 -6
- package/es/rce/plugins/shared/DimensionsInput/DimensionInput.js +1 -2
- package/es/rce/plugins/shared/DimensionsInput/index.js +11 -12
- package/es/rce/plugins/shared/DimensionsInput/useDimensionsState.d.ts +1 -1
- package/es/rce/plugins/shared/DimensionsInput/useDimensionsState.js +4 -3
- package/es/rce/plugins/shared/StudioLtiSupportUtils.d.ts +27 -6
- package/es/rce/plugins/shared/StudioLtiSupportUtils.js +82 -13
- package/es/rce/plugins/shared/Upload/UploadFile.js +1 -8
- package/es/rce/style.d.ts +2 -1
- package/es/rce/style.js +4 -2
- package/es/rcs/api.d.ts +5 -10
- package/es/rcs/api.js +15 -21
- package/es/rcs/fake.d.ts +1 -7
- package/es/rcs/fake.js +1 -47
- package/es/sidebar/actions/media.d.ts +19 -6
- package/es/sidebar/actions/media.js +17 -4
- package/es/sidebar/actions/upload.d.ts +3 -3
- package/es/sidebar/actions/upload.js +9 -9
- package/es/sidebar/containers/Sidebar.js +0 -2
- package/es/sidebar/containers/sidebarHandlers.d.ts +2 -4
- package/es/sidebar/containers/sidebarHandlers.js +2 -5
- package/es/sidebar/reducers/index.d.ts +0 -1
- package/es/sidebar/reducers/index.js +0 -2
- package/es/sidebar/store/initialState.d.ts +0 -1
- package/es/sidebar/store/initialState.js +0 -5
- package/es/translations/locales/ar.js +65 -80
- package/es/translations/locales/ca.js +65 -80
- package/es/translations/locales/cy.js +65 -80
- package/es/translations/locales/da-x-k12.js +65 -80
- package/es/translations/locales/da.js +65 -80
- package/es/translations/locales/de.js +65 -80
- package/es/translations/locales/el.js +0 -9
- package/es/translations/locales/en-AU-x-unimelb.js +65 -80
- package/es/translations/locales/en-GB-x-ukhe.js +65 -80
- package/es/translations/locales/en.js +61 -79
- package/es/translations/locales/en_AU.js +65 -80
- package/es/translations/locales/en_CA.js +65 -80
- package/es/translations/locales/en_CY.js +65 -80
- package/es/translations/locales/en_GB.js +65 -80
- package/es/translations/locales/es.js +65 -80
- package/es/translations/locales/es_ES.js +65 -80
- package/es/translations/locales/fa_IR.js +0 -9
- package/es/translations/locales/fi.js +65 -80
- package/es/translations/locales/fr.js +65 -80
- package/es/translations/locales/fr_CA.js +65 -80
- package/es/translations/locales/ga.js +65 -80
- package/es/translations/locales/he.js +0 -9
- package/es/translations/locales/hi.js +65 -80
- package/es/translations/locales/ht.js +65 -80
- package/es/translations/locales/hu.js +0 -36
- package/es/translations/locales/hy.js +0 -9
- package/es/translations/locales/id.js +65 -80
- package/es/translations/locales/is.js +65 -80
- package/es/translations/locales/it.js +65 -80
- package/es/translations/locales/ja.js +65 -80
- package/es/translations/locales/ko.js +2455 -133
- package/es/translations/locales/mi.js +65 -80
- package/es/translations/locales/ms.js +65 -80
- package/es/translations/locales/nb-x-k12.js +65 -80
- package/es/translations/locales/nb.js +65 -80
- package/es/translations/locales/nl.js +66 -81
- package/es/translations/locales/nn.js +0 -36
- package/es/translations/locales/pl.js +65 -80
- package/es/translations/locales/pt.js +65 -80
- package/es/translations/locales/pt_BR.js +65 -80
- package/es/translations/locales/ru.js +65 -80
- package/es/translations/locales/sl.js +65 -80
- package/es/translations/locales/sv-x-k12.js +65 -80
- package/es/translations/locales/sv.js +65 -80
- package/es/translations/locales/th.js +65 -80
- package/es/translations/locales/tr.js +1962 -18
- package/es/translations/locales/uk_UA.js +0 -9
- package/es/translations/locales/vi.js +65 -80
- package/es/translations/locales/zh-Hans.js +65 -80
- package/es/translations/locales/zh-Hant.js +65 -80
- package/es/translations/locales/zh.js +65 -80
- package/es/translations/locales/zh_HK.js +65 -80
- package/eslint.config.js +16 -147
- package/jest/jest-setup.js +1 -0
- package/jest.config.js +2 -0
- package/oxlint.json +84 -0
- package/package.json +87 -62
- package/tsconfig.json +3 -2
- package/es/rce/plugins/shared/ai_tools/AIResponseModal.d.ts +0 -10
- package/es/rce/plugins/shared/ai_tools/AIResponseModal.js +0 -67
- package/es/rce/plugins/shared/ai_tools/AIToolsTray.d.ts +0 -18
- package/es/rce/plugins/shared/ai_tools/AIToolsTray.js +0 -489
- package/es/rce/plugins/shared/ai_tools/aiicons.d.ts +0 -7
- package/es/rce/plugins/shared/ai_tools/aiicons.js +0 -60
- package/es/rce/plugins/shared/ai_tools/index.d.ts +0 -3
- package/es/sidebar/actions/flickr.d.ts +0 -20
- package/es/sidebar/actions/flickr.js +0 -60
- package/es/sidebar/reducers/flickr.d.ts +0 -1
- package/es/sidebar/reducers/flickr.js +0 -49
|
@@ -36,8 +36,8 @@ const locale = {
|
|
|
36
36
|
"add_alt_text_for_the_image_48cd88aa": {
|
|
37
37
|
"message": "Add alt text for the image"
|
|
38
38
|
},
|
|
39
|
-
"
|
|
40
|
-
"message": "Add another"
|
|
39
|
+
"add_another_closed_caption_or_subtitle_d3e06618": {
|
|
40
|
+
"message": "Add another closed caption or subtitle"
|
|
41
41
|
},
|
|
42
42
|
"add_cc_subtitles_55f0394e": {
|
|
43
43
|
"message": "Add CC/Subtitles"
|
|
@@ -60,12 +60,6 @@ const locale = {
|
|
|
60
60
|
"adjacent_links_with_the_same_url_should_be_a_singl_7a1f7f6c": {
|
|
61
61
|
"message": "Adjacent links with the same URL should be a single link."
|
|
62
62
|
},
|
|
63
|
-
"ai_response_9624e8e8": {
|
|
64
|
-
"message": "AI Response"
|
|
65
|
-
},
|
|
66
|
-
"ai_tools_fda01177": {
|
|
67
|
-
"message": "AI Tools"
|
|
68
|
-
},
|
|
69
63
|
"aleph_f4ffd155": {
|
|
70
64
|
"message": "Aleph"
|
|
71
65
|
},
|
|
@@ -81,6 +75,12 @@ const locale = {
|
|
|
81
75
|
"all_apps_a50dea49": {
|
|
82
76
|
"message": "All Apps"
|
|
83
77
|
},
|
|
78
|
+
"allow_media_download_16dcf2bd": {
|
|
79
|
+
"message": "Allow media download"
|
|
80
|
+
},
|
|
81
|
+
"allow_transcript_download_3fa239f0": {
|
|
82
|
+
"message": "Allow transcript download"
|
|
83
|
+
},
|
|
84
84
|
"alpha_15d59033": {
|
|
85
85
|
"message": "Alpha"
|
|
86
86
|
},
|
|
@@ -102,9 +102,6 @@ const locale = {
|
|
|
102
102
|
"an_error_occurred_making_a_network_request_d1bda348": {
|
|
103
103
|
"message": "An error occurred making a network request"
|
|
104
104
|
},
|
|
105
|
-
"an_error_occurred_processing_your_request_a3a38d84": {
|
|
106
|
-
"message": "An error occurred processing your request"
|
|
107
|
-
},
|
|
108
105
|
"an_error_occurred_uploading_your_media_71f1444d": {
|
|
109
106
|
"message": "An error occurred uploading your media."
|
|
110
107
|
},
|
|
@@ -243,6 +240,9 @@ const locale = {
|
|
|
243
240
|
"cap_product_3a5265a6": {
|
|
244
241
|
"message": "Cap Product"
|
|
245
242
|
},
|
|
243
|
+
"caption_manager_aae0906f": {
|
|
244
|
+
"message": "Caption Manager"
|
|
245
|
+
},
|
|
246
246
|
"center_align_e68d9997": {
|
|
247
247
|
"message": "Center Align"
|
|
248
248
|
},
|
|
@@ -264,6 +264,9 @@ const locale = {
|
|
|
264
264
|
"change_text_color_1aecb912": {
|
|
265
265
|
"message": "Change text color"
|
|
266
266
|
},
|
|
267
|
+
"changes_will_apply_after_you_save_this_page_fb324e9d": {
|
|
268
|
+
"message": "Changes will apply after you save this page."
|
|
269
|
+
},
|
|
267
270
|
"changes_you_made_may_not_be_saved_4e8db973": {
|
|
268
271
|
"message": "Changes you made may not be saved."
|
|
269
272
|
},
|
|
@@ -324,6 +327,9 @@ const locale = {
|
|
|
324
327
|
"close_d634289d": {
|
|
325
328
|
"message": "Close"
|
|
326
329
|
},
|
|
330
|
+
"close_keyboard_shortcuts_modal_291ce074": {
|
|
331
|
+
"message": "Close Keyboard Shortcuts Modal"
|
|
332
|
+
},
|
|
327
333
|
"closed_caption_file_must_be_less_than_maxkb_kb_5880f752": {
|
|
328
334
|
"message": "Closed caption file must be less than { maxKb } kb"
|
|
329
335
|
},
|
|
@@ -369,9 +375,6 @@ const locale = {
|
|
|
369
375
|
"complex_numbers_a543d004": {
|
|
370
376
|
"message": "Complex Numbers"
|
|
371
377
|
},
|
|
372
|
-
"compose_44c904f4": {
|
|
373
|
-
"message": "Compose"
|
|
374
|
-
},
|
|
375
378
|
"computer_1d7dfa6f": {
|
|
376
379
|
"message": "Computer"
|
|
377
380
|
},
|
|
@@ -402,9 +405,6 @@ const locale = {
|
|
|
402
405
|
"coproduct_e7838082": {
|
|
403
406
|
"message": "Coproduct"
|
|
404
407
|
},
|
|
405
|
-
"copy_9748f9f": {
|
|
406
|
-
"message": "Copy"
|
|
407
|
-
},
|
|
408
408
|
"copyright_holder_66ee111": {
|
|
409
409
|
"message": "Copyright Holder:"
|
|
410
410
|
},
|
|
@@ -474,8 +474,8 @@ const locale = {
|
|
|
474
474
|
"custom_6979cd81": {
|
|
475
475
|
"message": "Custom"
|
|
476
476
|
},
|
|
477
|
-
"
|
|
478
|
-
"message": "Custom
|
|
477
|
+
"custom_dimensions_96596dba": {
|
|
478
|
+
"message": "Custom Dimensions"
|
|
479
479
|
},
|
|
480
480
|
"cyan_c1d5f68a": {
|
|
481
481
|
"message": "Cyan"
|
|
@@ -531,9 +531,6 @@ const locale = {
|
|
|
531
531
|
"describe_the_type_ff448da5": {
|
|
532
532
|
"message": "(Describe the { TYPE })"
|
|
533
533
|
},
|
|
534
|
-
"describe_the_video_2fe8f46a": {
|
|
535
|
-
"message": "(Describe the video)"
|
|
536
|
-
},
|
|
537
534
|
"description_436c48d7": {
|
|
538
535
|
"message": "Description"
|
|
539
536
|
},
|
|
@@ -555,9 +552,6 @@ const locale = {
|
|
|
555
552
|
"dimension_type_f5fa9170": {
|
|
556
553
|
"message": "Dimension Type"
|
|
557
554
|
},
|
|
558
|
-
"dimensions_45ddb7b7": {
|
|
559
|
-
"message": "Dimensions"
|
|
560
|
-
},
|
|
561
555
|
"directionality_26ae9e08": {
|
|
562
556
|
"message": "Directionality"
|
|
563
557
|
},
|
|
@@ -579,9 +573,6 @@ const locale = {
|
|
|
579
573
|
"disjoint_union_e74351a8": {
|
|
580
574
|
"message": "Disjoint Union"
|
|
581
575
|
},
|
|
582
|
-
"dislike_14befc48": {
|
|
583
|
-
"message": "Dislike"
|
|
584
|
-
},
|
|
585
576
|
"display_options_315aba85": {
|
|
586
577
|
"message": "Display Options"
|
|
587
578
|
},
|
|
@@ -708,6 +699,9 @@ const locale = {
|
|
|
708
699
|
"english_icon_25bfe845": {
|
|
709
700
|
"message": "English Icon"
|
|
710
701
|
},
|
|
702
|
+
"enter_a_media_title_81b490ec": {
|
|
703
|
+
"message": "Enter a media title"
|
|
704
|
+
},
|
|
711
705
|
"enter_at_least_3_characters_to_search_4f037ee0": {
|
|
712
706
|
"message": "Enter at least 3 characters to search"
|
|
713
707
|
},
|
|
@@ -717,9 +711,6 @@ const locale = {
|
|
|
717
711
|
"enter_search_text_26cb4459": {
|
|
718
712
|
"message": "enter search text"
|
|
719
713
|
},
|
|
720
|
-
"enter_text_8b35c65b": {
|
|
721
|
-
"message": "Enter text"
|
|
722
|
-
},
|
|
723
714
|
"epsilon_54bb8afa": {
|
|
724
715
|
"message": "Epsilon"
|
|
725
716
|
},
|
|
@@ -771,6 +762,9 @@ const locale = {
|
|
|
771
762
|
"extra_large_b6cdf1ff": {
|
|
772
763
|
"message": "Extra Large"
|
|
773
764
|
},
|
|
765
|
+
"extra_large_width_x_height_px_915571fa": {
|
|
766
|
+
"message": "Extra Large ({ width } x { height }px)"
|
|
767
|
+
},
|
|
774
768
|
"extra_small_9ae33252": {
|
|
775
769
|
"message": "Extra Small"
|
|
776
770
|
},
|
|
@@ -786,9 +780,6 @@ const locale = {
|
|
|
786
780
|
"failed_getting_file_contents_e9ea19f4": {
|
|
787
781
|
"message": "Failed getting file contents"
|
|
788
782
|
},
|
|
789
|
-
"failed_to_copy_response_d3def551": {
|
|
790
|
-
"message": "Failed to copy response"
|
|
791
|
-
},
|
|
792
783
|
"failed_to_retrieve_content_from_external_tool_5899c213": {
|
|
793
784
|
"message": "Failed to retrieve content from external tool"
|
|
794
785
|
},
|
|
@@ -981,12 +972,6 @@ const locale = {
|
|
|
981
972
|
"height_69b03e15": {
|
|
982
973
|
"message": "Height"
|
|
983
974
|
},
|
|
984
|
-
"hello_please_describe_the_modifications_you_would__49b19837": {
|
|
985
|
-
"message": "Hello. Please describe the modifications you would like to make to your composition."
|
|
986
|
-
},
|
|
987
|
-
"hello_please_describe_the_modifications_you_would__600dbbf0": {
|
|
988
|
-
"message": "Hello. Please describe the modifications you would like to make to your selection."
|
|
989
|
-
},
|
|
990
975
|
"hexagon_d8468e0d": {
|
|
991
976
|
"message": "Hexagon"
|
|
992
977
|
},
|
|
@@ -1002,6 +987,9 @@ const locale = {
|
|
|
1002
987
|
"home_351838cd": {
|
|
1003
988
|
"message": "Home"
|
|
1004
989
|
},
|
|
990
|
+
"how_to_request_and_edit_captions_a49a9c6b": {
|
|
991
|
+
"message": "How to request and edit captions?"
|
|
992
|
+
},
|
|
1005
993
|
"html_code_editor_fd967a44": {
|
|
1006
994
|
"message": "html code editor"
|
|
1007
995
|
},
|
|
@@ -1014,9 +1002,6 @@ const locale = {
|
|
|
1014
1002
|
"i_hold_the_copyright_71ee91b1": {
|
|
1015
1003
|
"message": "I hold the copyright"
|
|
1016
1004
|
},
|
|
1017
|
-
"i_m_sorry_but_i_cannot_find_the_ai_s_answer_67569d19": {
|
|
1018
|
-
"message": "I''m sorry, but I cannot find the AI''s answer"
|
|
1019
|
-
},
|
|
1020
1005
|
"icon_215a1dc6": {
|
|
1021
1006
|
"message": "Icon"
|
|
1022
1007
|
},
|
|
@@ -1189,6 +1174,9 @@ const locale = {
|
|
|
1189
1174
|
"large_text_e7ba08cd": {
|
|
1190
1175
|
"message": "Large text"
|
|
1191
1176
|
},
|
|
1177
|
+
"large_width_x_height_px_c61c2fd": {
|
|
1178
|
+
"message": "Large ({ width } x { height }px)"
|
|
1179
|
+
},
|
|
1192
1180
|
"learn_ad3b3505": {
|
|
1193
1181
|
"message": "Learn"
|
|
1194
1182
|
},
|
|
@@ -1333,6 +1321,9 @@ const locale = {
|
|
|
1333
1321
|
"loading_preview_9f077aa1": {
|
|
1334
1322
|
"message": "Loading preview"
|
|
1335
1323
|
},
|
|
1324
|
+
"lock_speed_at_1x_57d4f815": {
|
|
1325
|
+
"message": "Lock speed at 1x"
|
|
1326
|
+
},
|
|
1336
1327
|
"locked_762f138b": {
|
|
1337
1328
|
"message": "Locked"
|
|
1338
1329
|
},
|
|
@@ -1366,12 +1357,18 @@ const locale = {
|
|
|
1366
1357
|
"media_file_is_processing_please_try_again_later_58a6d49": {
|
|
1367
1358
|
"message": "Media file is processing. Please try again later."
|
|
1368
1359
|
},
|
|
1360
|
+
"media_options_saved_560c4ec8": {
|
|
1361
|
+
"message": "Media options saved."
|
|
1362
|
+
},
|
|
1369
1363
|
"media_title_2112243b": {
|
|
1370
1364
|
"message": "Media Title"
|
|
1371
1365
|
},
|
|
1372
1366
|
"medium_5a8e9ead": {
|
|
1373
1367
|
"message": "Medium"
|
|
1374
1368
|
},
|
|
1369
|
+
"medium_width_x_height_px_b076f6b6": {
|
|
1370
|
+
"message": "Medium ({ width } x { height }px)"
|
|
1371
|
+
},
|
|
1375
1372
|
"merge_links_2478df96": {
|
|
1376
1373
|
"message": "Merge links"
|
|
1377
1374
|
},
|
|
@@ -1402,9 +1399,6 @@ const locale = {
|
|
|
1402
1399
|
"miscellaneous_e9818229": {
|
|
1403
1400
|
"message": "Miscellaneous"
|
|
1404
1401
|
},
|
|
1405
|
-
"modify_6b0b13e3": {
|
|
1406
|
-
"message": "Modify"
|
|
1407
|
-
},
|
|
1408
1402
|
"module_90d9fd32": {
|
|
1409
1403
|
"message": "Module"
|
|
1410
1404
|
},
|
|
@@ -1708,15 +1702,15 @@ const locale = {
|
|
|
1708
1702
|
"play_media_comment_by_name_from_createdat_c230123d": {
|
|
1709
1703
|
"message": "Play media comment by { name } from { createdAt }."
|
|
1710
1704
|
},
|
|
1705
|
+
"player_layout_14e09a29": {
|
|
1706
|
+
"message": "Player layout"
|
|
1707
|
+
},
|
|
1711
1708
|
"please_allow_canvas_to_access_your_microphone_and__dc2c3079": {
|
|
1712
1709
|
"message": "Please allow Canvas to access your microphone and webcam."
|
|
1713
1710
|
},
|
|
1714
1711
|
"please_choose_a_file_c2449cc": {
|
|
1715
1712
|
"message": "Please choose a file"
|
|
1716
1713
|
},
|
|
1717
|
-
"please_decribe_what_you_would_like_to_compose_27a51be5": {
|
|
1718
|
-
"message": "Please decribe what you would like to compose."
|
|
1719
|
-
},
|
|
1720
1714
|
"please_enter_a_file_name_f159edc1": {
|
|
1721
1715
|
"message": "Please enter a file name"
|
|
1722
1716
|
},
|
|
@@ -1852,9 +1846,6 @@ const locale = {
|
|
|
1852
1846
|
"remove_link_d1f2f4d0": {
|
|
1853
1847
|
"message": "Remove Link"
|
|
1854
1848
|
},
|
|
1855
|
-
"remove_studio_media_f913e502": {
|
|
1856
|
-
"message": "Remove Studio Media"
|
|
1857
|
-
},
|
|
1858
1849
|
"replace_all_d3d68b3": {
|
|
1859
1850
|
"message": "Replace All"
|
|
1860
1851
|
},
|
|
@@ -1882,18 +1873,12 @@ const locale = {
|
|
|
1882
1873
|
"resize_ec83d538": {
|
|
1883
1874
|
"message": "Resize"
|
|
1884
1875
|
},
|
|
1885
|
-
"response_copied_to_clipboard_130d66cd": {
|
|
1886
|
-
"message": "Response copied to clipboard"
|
|
1887
|
-
},
|
|
1888
1876
|
"restore_auto_save_deccd84b": {
|
|
1889
1877
|
"message": "Restore auto-save?"
|
|
1890
1878
|
},
|
|
1891
1879
|
"result_index_of_max_7db5ad8b": {
|
|
1892
1880
|
"message": "Result { index } of { max }."
|
|
1893
1881
|
},
|
|
1894
|
-
"retry_ebd5f8ba": {
|
|
1895
|
-
"message": "Retry"
|
|
1896
|
-
},
|
|
1897
1882
|
"reverse_turnstile_does_not_yield_7558be06": {
|
|
1898
1883
|
"message": "Reverse Turnstile (Does Not Yield)"
|
|
1899
1884
|
},
|
|
@@ -2044,23 +2029,17 @@ const locale = {
|
|
|
2044
2029
|
"shortcut_911d6255": {
|
|
2045
2030
|
"message": "Shortcut"
|
|
2046
2031
|
},
|
|
2047
|
-
"show_all_967a90f0": {
|
|
2048
|
-
"message": "Show all"
|
|
2049
|
-
},
|
|
2050
|
-
"show_audio_options_b489926b": {
|
|
2051
|
-
"message": "Show audio options"
|
|
2052
|
-
},
|
|
2053
2032
|
"show_image_options_1e2ecc6b": {
|
|
2054
2033
|
"message": "Show image options"
|
|
2055
2034
|
},
|
|
2056
2035
|
"show_link_options_545338fd": {
|
|
2057
2036
|
"message": "Show link options"
|
|
2058
2037
|
},
|
|
2059
|
-
"
|
|
2060
|
-
"message": "Show
|
|
2038
|
+
"show_rolling_transcript_c1481744": {
|
|
2039
|
+
"message": "Show rolling transcript"
|
|
2061
2040
|
},
|
|
2062
|
-
"
|
|
2063
|
-
"message": "Show
|
|
2041
|
+
"show_rolling_transcript_d353aca4": {
|
|
2042
|
+
"message": "Show Rolling Transcript"
|
|
2064
2043
|
},
|
|
2065
2044
|
"sighted_users_browse_web_pages_quickly_looking_for_1d4db0c1": {
|
|
2066
2045
|
"message": "Sighted users browse web pages quickly, looking for large or bolded headings. Screen reader users rely on headers for contextual understanding. Headers should use the proper structure."
|
|
@@ -2089,6 +2068,9 @@ const locale = {
|
|
|
2089
2068
|
"small_b070434a": {
|
|
2090
2069
|
"message": "Small"
|
|
2091
2070
|
},
|
|
2071
|
+
"small_width_x_height_px_359acd38": {
|
|
2072
|
+
"message": "Small ({ width } x { height }px)"
|
|
2073
|
+
},
|
|
2092
2074
|
"solid_circle_9f061dfc": {
|
|
2093
2075
|
"message": "Solid Circle"
|
|
2094
2076
|
},
|
|
@@ -2350,6 +2332,9 @@ const locale = {
|
|
|
2350
2332
|
"timebar_a4d18443": {
|
|
2351
2333
|
"message": "Timebar"
|
|
2352
2334
|
},
|
|
2335
|
+
"title_can_t_be_blank_eb4021d7": {
|
|
2336
|
+
"message": "Title can''t be blank"
|
|
2337
|
+
},
|
|
2353
2338
|
"title_ee03d132": {
|
|
2354
2339
|
"message": "Title"
|
|
2355
2340
|
},
|
|
@@ -2371,6 +2356,9 @@ const locale = {
|
|
|
2371
2356
|
"top_66e0adb6": {
|
|
2372
2357
|
"message": "Top"
|
|
2373
2358
|
},
|
|
2359
|
+
"transcript_panel_is_available_at_widths_above_720p_1cf94c0d": {
|
|
2360
|
+
"message": "Transcript panel is available at widths above 720px."
|
|
2361
|
+
},
|
|
2374
2362
|
"tray_839df38a": {
|
|
2375
2363
|
"message": "Tray"
|
|
2376
2364
|
},
|
|
@@ -2404,6 +2392,9 @@ const locale = {
|
|
|
2404
2392
|
"unpublished_dfd8801": {
|
|
2405
2393
|
"message": "unpublished"
|
|
2406
2394
|
},
|
|
2395
|
+
"unsaved_changes_will_be_lost_f977252a": {
|
|
2396
|
+
"message": "Unsaved changes will be lost."
|
|
2397
|
+
},
|
|
2407
2398
|
"untitled_16aa4f2b": {
|
|
2408
2399
|
"message": "Untitled"
|
|
2409
2400
|
},
|
|
@@ -2527,9 +2518,6 @@ const locale = {
|
|
|
2527
2518
|
"used_by_screen_readers_to_describe_the_content_of__b1e76d9e": {
|
|
2528
2519
|
"message": "Used by screen readers to describe the content of an image"
|
|
2529
2520
|
},
|
|
2530
|
-
"used_by_screen_readers_to_describe_the_video_37ebad25": {
|
|
2531
|
-
"message": "Used by screen readers to describe the video"
|
|
2532
|
-
},
|
|
2533
2521
|
"user_documents_c206e61f": {
|
|
2534
2522
|
"message": "User Documents"
|
|
2535
2523
|
},
|
|
@@ -2587,8 +2575,8 @@ const locale = {
|
|
|
2587
2575
|
"view_word_and_character_counts_a743dd0c": {
|
|
2588
2576
|
"message": "View word and character counts"
|
|
2589
2577
|
},
|
|
2590
|
-
"
|
|
2591
|
-
"message": "
|
|
2578
|
+
"viewer_restrictions_e14274c9": {
|
|
2579
|
+
"message": "Viewer Restrictions"
|
|
2592
2580
|
},
|
|
2593
2581
|
"we_couldn_t_detect_a_working_microphone_connected__ceb71c40": {
|
|
2594
2582
|
"message": "We couldn’t detect a working microphone connected to your device."
|
|
@@ -2608,9 +2596,6 @@ const locale = {
|
|
|
2608
2596
|
"webpages_should_only_have_a_single_h1_which_is_aut_dc99189e": {
|
|
2609
2597
|
"message": "Webpages should only have a single H1, which is automatically used by the page''s Title. The first heading in your content should be an H2."
|
|
2610
2598
|
},
|
|
2611
|
-
"what_would_you_like_to_do_6dc0d541": {
|
|
2612
|
-
"message": "What would you like to do?"
|
|
2613
|
-
},
|
|
2614
2599
|
"when_markup_is_used_that_visually_formats_items_as_f941fc1b": {
|
|
2615
2600
|
"message": "When markup is used that visually formats items as a list but does not indicate the list relationship, users may have difficulty in navigating the information."
|
|
2616
2601
|
},
|
|
@@ -2641,9 +2626,6 @@ const locale = {
|
|
|
2641
2626
|
"wreath_product_200b38ef": {
|
|
2642
2627
|
"message": "Wreath Product"
|
|
2643
2628
|
},
|
|
2644
|
-
"writing_assistant_a30ac16a": {
|
|
2645
|
-
"message": "Writing Assistant"
|
|
2646
|
-
},
|
|
2647
2629
|
"xi_149681d0": {
|
|
2648
2630
|
"message": "Xi"
|
|
2649
2631
|
},
|