@instructure/canvas-rce 7.3.0 → 8.0.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 +79 -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/doc_previews.js +5 -0
- 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/instructure_helper.js +1 -0
- 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/AlertMessageArea.d.ts +2 -2
- package/es/rce/AlertMessageArea.js +3 -3
- package/es/rce/KeyboardShortcutModal.js +2 -2
- 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 +16 -26
- package/es/rce/RCEWrapper.js +227 -271
- 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/ExternalToolSelectionDialog/ExternalToolSelectionDialog.d.ts +1 -1
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolSelectionDialog/ExternalToolSelectionDialog.js +25 -25
- 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 -24
- package/es/rce/plugins/instructure_wordcount/components/WordCountModal.js +1 -0
- 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 -5
- package/es/rce/plugins/shared/StudioLtiSupportUtils.js +94 -9
- 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 +77 -77
- package/es/translations/locales/ca.js +77 -77
- package/es/translations/locales/cy.js +77 -77
- package/es/translations/locales/da-x-k12.js +77 -77
- package/es/translations/locales/da.js +77 -77
- package/es/translations/locales/de.js +77 -77
- package/es/translations/locales/el.js +0 -9
- package/es/translations/locales/en-AU-x-unimelb.js +77 -77
- package/es/translations/locales/en-GB-x-ukhe.js +77 -77
- package/es/translations/locales/en.js +67 -79
- package/es/translations/locales/en_AU.js +77 -77
- package/es/translations/locales/en_CA.js +77 -77
- package/es/translations/locales/en_CY.js +77 -77
- package/es/translations/locales/en_GB.js +77 -77
- package/es/translations/locales/es.js +77 -77
- package/es/translations/locales/es_ES.js +77 -77
- package/es/translations/locales/fa_IR.js +0 -9
- package/es/translations/locales/fi.js +77 -77
- package/es/translations/locales/fr.js +77 -77
- package/es/translations/locales/fr_CA.js +77 -77
- package/es/translations/locales/ga.js +77 -77
- package/es/translations/locales/he.js +0 -9
- package/es/translations/locales/hi.js +77 -77
- package/es/translations/locales/ht.js +77 -77
- package/es/translations/locales/hu.js +0 -36
- package/es/translations/locales/hy.js +0 -9
- package/es/translations/locales/id.js +77 -77
- package/es/translations/locales/is.js +77 -77
- package/es/translations/locales/it.js +77 -77
- package/es/translations/locales/ja.js +77 -77
- package/es/translations/locales/ko.js +2455 -133
- package/es/translations/locales/mi.js +77 -77
- package/es/translations/locales/ms.js +77 -77
- package/es/translations/locales/nb-x-k12.js +77 -77
- package/es/translations/locales/nb.js +77 -77
- package/es/translations/locales/nl.js +78 -78
- package/es/translations/locales/nn.js +0 -36
- package/es/translations/locales/pl.js +77 -77
- package/es/translations/locales/pt.js +77 -77
- package/es/translations/locales/pt_BR.js +77 -77
- package/es/translations/locales/ru.js +77 -77
- package/es/translations/locales/sl.js +77 -77
- package/es/translations/locales/sv-x-k12.js +77 -77
- package/es/translations/locales/sv.js +77 -77
- package/es/translations/locales/th.js +77 -77
- package/es/translations/locales/tr.js +1962 -18
- package/es/translations/locales/uk_UA.js +0 -9
- package/es/translations/locales/vi.js +77 -77
- package/es/translations/locales/zh-Hans.js +77 -77
- package/es/translations/locales/zh-Hant.js +77 -77
- package/es/translations/locales/zh.js +77 -77
- package/es/translations/locales/zh_HK.js +77 -77
- 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 +86 -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,15 +780,18 @@ 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
|
},
|
|
795
786
|
"file_name_8fd421ff": {
|
|
796
787
|
"message": "File name"
|
|
797
788
|
},
|
|
789
|
+
"file_preview_21667a6e": {
|
|
790
|
+
"message": "File preview"
|
|
791
|
+
},
|
|
792
|
+
"file_preview_for_filename_ab314195": {
|
|
793
|
+
"message": "File preview for { fileName }"
|
|
794
|
+
},
|
|
798
795
|
"file_storage_quota_exceeded_b7846cd1": {
|
|
799
796
|
"message": "File storage quota exceeded"
|
|
800
797
|
},
|
|
@@ -975,12 +972,6 @@ const locale = {
|
|
|
975
972
|
"height_69b03e15": {
|
|
976
973
|
"message": "Height"
|
|
977
974
|
},
|
|
978
|
-
"hello_please_describe_the_modifications_you_would__49b19837": {
|
|
979
|
-
"message": "Hello. Please describe the modifications you would like to make to your composition."
|
|
980
|
-
},
|
|
981
|
-
"hello_please_describe_the_modifications_you_would__600dbbf0": {
|
|
982
|
-
"message": "Hello. Please describe the modifications you would like to make to your selection."
|
|
983
|
-
},
|
|
984
975
|
"hexagon_d8468e0d": {
|
|
985
976
|
"message": "Hexagon"
|
|
986
977
|
},
|
|
@@ -996,6 +987,9 @@ const locale = {
|
|
|
996
987
|
"home_351838cd": {
|
|
997
988
|
"message": "Home"
|
|
998
989
|
},
|
|
990
|
+
"how_to_request_and_edit_captions_a49a9c6b": {
|
|
991
|
+
"message": "How to request and edit captions?"
|
|
992
|
+
},
|
|
999
993
|
"html_code_editor_fd967a44": {
|
|
1000
994
|
"message": "html code editor"
|
|
1001
995
|
},
|
|
@@ -1008,9 +1002,6 @@ const locale = {
|
|
|
1008
1002
|
"i_hold_the_copyright_71ee91b1": {
|
|
1009
1003
|
"message": "I hold the copyright"
|
|
1010
1004
|
},
|
|
1011
|
-
"i_m_sorry_but_i_cannot_find_the_ai_s_answer_67569d19": {
|
|
1012
|
-
"message": "I''m sorry, but I cannot find the AI''s answer"
|
|
1013
|
-
},
|
|
1014
1005
|
"icon_215a1dc6": {
|
|
1015
1006
|
"message": "Icon"
|
|
1016
1007
|
},
|
|
@@ -1183,6 +1174,9 @@ const locale = {
|
|
|
1183
1174
|
"large_text_e7ba08cd": {
|
|
1184
1175
|
"message": "Large text"
|
|
1185
1176
|
},
|
|
1177
|
+
"large_width_x_height_px_c61c2fd": {
|
|
1178
|
+
"message": "Large ({ width } x { height }px)"
|
|
1179
|
+
},
|
|
1186
1180
|
"learn_ad3b3505": {
|
|
1187
1181
|
"message": "Learn"
|
|
1188
1182
|
},
|
|
@@ -1327,6 +1321,9 @@ const locale = {
|
|
|
1327
1321
|
"loading_preview_9f077aa1": {
|
|
1328
1322
|
"message": "Loading preview"
|
|
1329
1323
|
},
|
|
1324
|
+
"lock_speed_at_1x_57d4f815": {
|
|
1325
|
+
"message": "Lock speed at 1x"
|
|
1326
|
+
},
|
|
1330
1327
|
"locked_762f138b": {
|
|
1331
1328
|
"message": "Locked"
|
|
1332
1329
|
},
|
|
@@ -1360,12 +1357,18 @@ const locale = {
|
|
|
1360
1357
|
"media_file_is_processing_please_try_again_later_58a6d49": {
|
|
1361
1358
|
"message": "Media file is processing. Please try again later."
|
|
1362
1359
|
},
|
|
1360
|
+
"media_options_saved_560c4ec8": {
|
|
1361
|
+
"message": "Media options saved."
|
|
1362
|
+
},
|
|
1363
1363
|
"media_title_2112243b": {
|
|
1364
1364
|
"message": "Media Title"
|
|
1365
1365
|
},
|
|
1366
1366
|
"medium_5a8e9ead": {
|
|
1367
1367
|
"message": "Medium"
|
|
1368
1368
|
},
|
|
1369
|
+
"medium_width_x_height_px_b076f6b6": {
|
|
1370
|
+
"message": "Medium ({ width } x { height }px)"
|
|
1371
|
+
},
|
|
1369
1372
|
"merge_links_2478df96": {
|
|
1370
1373
|
"message": "Merge links"
|
|
1371
1374
|
},
|
|
@@ -1396,9 +1399,6 @@ const locale = {
|
|
|
1396
1399
|
"miscellaneous_e9818229": {
|
|
1397
1400
|
"message": "Miscellaneous"
|
|
1398
1401
|
},
|
|
1399
|
-
"modify_6b0b13e3": {
|
|
1400
|
-
"message": "Modify"
|
|
1401
|
-
},
|
|
1402
1402
|
"module_90d9fd32": {
|
|
1403
1403
|
"message": "Module"
|
|
1404
1404
|
},
|
|
@@ -1702,15 +1702,15 @@ const locale = {
|
|
|
1702
1702
|
"play_media_comment_by_name_from_createdat_c230123d": {
|
|
1703
1703
|
"message": "Play media comment by { name } from { createdAt }."
|
|
1704
1704
|
},
|
|
1705
|
+
"player_layout_14e09a29": {
|
|
1706
|
+
"message": "Player layout"
|
|
1707
|
+
},
|
|
1705
1708
|
"please_allow_canvas_to_access_your_microphone_and__dc2c3079": {
|
|
1706
1709
|
"message": "Please allow Canvas to access your microphone and webcam."
|
|
1707
1710
|
},
|
|
1708
1711
|
"please_choose_a_file_c2449cc": {
|
|
1709
1712
|
"message": "Please choose a file"
|
|
1710
1713
|
},
|
|
1711
|
-
"please_decribe_what_you_would_like_to_compose_27a51be5": {
|
|
1712
|
-
"message": "Please decribe what you would like to compose."
|
|
1713
|
-
},
|
|
1714
1714
|
"please_enter_a_file_name_f159edc1": {
|
|
1715
1715
|
"message": "Please enter a file name"
|
|
1716
1716
|
},
|
|
@@ -1846,9 +1846,6 @@ const locale = {
|
|
|
1846
1846
|
"remove_link_d1f2f4d0": {
|
|
1847
1847
|
"message": "Remove Link"
|
|
1848
1848
|
},
|
|
1849
|
-
"remove_studio_media_f913e502": {
|
|
1850
|
-
"message": "Remove Studio Media"
|
|
1851
|
-
},
|
|
1852
1849
|
"replace_all_d3d68b3": {
|
|
1853
1850
|
"message": "Replace All"
|
|
1854
1851
|
},
|
|
@@ -1876,18 +1873,12 @@ const locale = {
|
|
|
1876
1873
|
"resize_ec83d538": {
|
|
1877
1874
|
"message": "Resize"
|
|
1878
1875
|
},
|
|
1879
|
-
"response_copied_to_clipboard_130d66cd": {
|
|
1880
|
-
"message": "Response copied to clipboard"
|
|
1881
|
-
},
|
|
1882
1876
|
"restore_auto_save_deccd84b": {
|
|
1883
1877
|
"message": "Restore auto-save?"
|
|
1884
1878
|
},
|
|
1885
1879
|
"result_index_of_max_7db5ad8b": {
|
|
1886
1880
|
"message": "Result { index } of { max }."
|
|
1887
1881
|
},
|
|
1888
|
-
"retry_ebd5f8ba": {
|
|
1889
|
-
"message": "Retry"
|
|
1890
|
-
},
|
|
1891
1882
|
"reverse_turnstile_does_not_yield_7558be06": {
|
|
1892
1883
|
"message": "Reverse Turnstile (Does Not Yield)"
|
|
1893
1884
|
},
|
|
@@ -2038,23 +2029,17 @@ const locale = {
|
|
|
2038
2029
|
"shortcut_911d6255": {
|
|
2039
2030
|
"message": "Shortcut"
|
|
2040
2031
|
},
|
|
2041
|
-
"show_all_967a90f0": {
|
|
2042
|
-
"message": "Show all"
|
|
2043
|
-
},
|
|
2044
|
-
"show_audio_options_b489926b": {
|
|
2045
|
-
"message": "Show audio options"
|
|
2046
|
-
},
|
|
2047
2032
|
"show_image_options_1e2ecc6b": {
|
|
2048
2033
|
"message": "Show image options"
|
|
2049
2034
|
},
|
|
2050
2035
|
"show_link_options_545338fd": {
|
|
2051
2036
|
"message": "Show link options"
|
|
2052
2037
|
},
|
|
2053
|
-
"
|
|
2054
|
-
"message": "Show
|
|
2038
|
+
"show_rolling_transcript_c1481744": {
|
|
2039
|
+
"message": "Show rolling transcript"
|
|
2055
2040
|
},
|
|
2056
|
-
"
|
|
2057
|
-
"message": "Show
|
|
2041
|
+
"show_rolling_transcript_d353aca4": {
|
|
2042
|
+
"message": "Show Rolling Transcript"
|
|
2058
2043
|
},
|
|
2059
2044
|
"sighted_users_browse_web_pages_quickly_looking_for_1d4db0c1": {
|
|
2060
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."
|
|
@@ -2083,6 +2068,9 @@ const locale = {
|
|
|
2083
2068
|
"small_b070434a": {
|
|
2084
2069
|
"message": "Small"
|
|
2085
2070
|
},
|
|
2071
|
+
"small_width_x_height_px_359acd38": {
|
|
2072
|
+
"message": "Small ({ width } x { height }px)"
|
|
2073
|
+
},
|
|
2086
2074
|
"solid_circle_9f061dfc": {
|
|
2087
2075
|
"message": "Solid Circle"
|
|
2088
2076
|
},
|
|
@@ -2344,6 +2332,9 @@ const locale = {
|
|
|
2344
2332
|
"timebar_a4d18443": {
|
|
2345
2333
|
"message": "Timebar"
|
|
2346
2334
|
},
|
|
2335
|
+
"title_can_t_be_blank_eb4021d7": {
|
|
2336
|
+
"message": "Title can''t be blank"
|
|
2337
|
+
},
|
|
2347
2338
|
"title_ee03d132": {
|
|
2348
2339
|
"message": "Title"
|
|
2349
2340
|
},
|
|
@@ -2365,6 +2356,9 @@ const locale = {
|
|
|
2365
2356
|
"top_66e0adb6": {
|
|
2366
2357
|
"message": "Top"
|
|
2367
2358
|
},
|
|
2359
|
+
"transcript_panel_is_available_at_widths_above_720p_1cf94c0d": {
|
|
2360
|
+
"message": "Transcript panel is available at widths above 720px."
|
|
2361
|
+
},
|
|
2368
2362
|
"tray_839df38a": {
|
|
2369
2363
|
"message": "Tray"
|
|
2370
2364
|
},
|
|
@@ -2398,6 +2392,9 @@ const locale = {
|
|
|
2398
2392
|
"unpublished_dfd8801": {
|
|
2399
2393
|
"message": "unpublished"
|
|
2400
2394
|
},
|
|
2395
|
+
"unsaved_changes_will_be_lost_f977252a": {
|
|
2396
|
+
"message": "Unsaved changes will be lost."
|
|
2397
|
+
},
|
|
2401
2398
|
"untitled_16aa4f2b": {
|
|
2402
2399
|
"message": "Untitled"
|
|
2403
2400
|
},
|
|
@@ -2521,9 +2518,6 @@ const locale = {
|
|
|
2521
2518
|
"used_by_screen_readers_to_describe_the_content_of__b1e76d9e": {
|
|
2522
2519
|
"message": "Used by screen readers to describe the content of an image"
|
|
2523
2520
|
},
|
|
2524
|
-
"used_by_screen_readers_to_describe_the_video_37ebad25": {
|
|
2525
|
-
"message": "Used by screen readers to describe the video"
|
|
2526
|
-
},
|
|
2527
2521
|
"user_documents_c206e61f": {
|
|
2528
2522
|
"message": "User Documents"
|
|
2529
2523
|
},
|
|
@@ -2581,8 +2575,8 @@ const locale = {
|
|
|
2581
2575
|
"view_word_and_character_counts_a743dd0c": {
|
|
2582
2576
|
"message": "View word and character counts"
|
|
2583
2577
|
},
|
|
2584
|
-
"
|
|
2585
|
-
"message": "
|
|
2578
|
+
"viewer_restrictions_e14274c9": {
|
|
2579
|
+
"message": "Viewer Restrictions"
|
|
2586
2580
|
},
|
|
2587
2581
|
"we_couldn_t_detect_a_working_microphone_connected__ceb71c40": {
|
|
2588
2582
|
"message": "We couldn’t detect a working microphone connected to your device."
|
|
@@ -2602,9 +2596,6 @@ const locale = {
|
|
|
2602
2596
|
"webpages_should_only_have_a_single_h1_which_is_aut_dc99189e": {
|
|
2603
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."
|
|
2604
2598
|
},
|
|
2605
|
-
"what_would_you_like_to_do_6dc0d541": {
|
|
2606
|
-
"message": "What would you like to do?"
|
|
2607
|
-
},
|
|
2608
2599
|
"when_markup_is_used_that_visually_formats_items_as_f941fc1b": {
|
|
2609
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."
|
|
2610
2601
|
},
|
|
@@ -2635,9 +2626,6 @@ const locale = {
|
|
|
2635
2626
|
"wreath_product_200b38ef": {
|
|
2636
2627
|
"message": "Wreath Product"
|
|
2637
2628
|
},
|
|
2638
|
-
"writing_assistant_a30ac16a": {
|
|
2639
|
-
"message": "Writing Assistant"
|
|
2640
|
-
},
|
|
2641
2629
|
"xi_149681d0": {
|
|
2642
2630
|
"message": "Xi"
|
|
2643
2631
|
},
|